:root {
  --ink: #141414;
  --paper: #f4f3f1;
  --muted: #6d6863;
  --accent: #a63a31;
  --accent-dark: #6f211c;
  --line: #ddd7d0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  min-height: 72px;
  padding: 0 48px;
  background: rgba(244, 243, 241, 0.96);
  border-bottom: 7px solid var(--accent);
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 20px;
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 26px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}

.main-nav a,
.social-links a,
.site-footer a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.social-links a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  min-height: calc(100vh - 72px);
  background: #111;
}

.hero-image {
  min-height: 560px;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)), url("assets/hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 10vw;
  color: white;
  background: #151515;
}

.hero-title h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 400;
  line-height: 1.15;
}

.hero-title p {
  margin: 24px 0 0;
  color: #d8d2cb;
  font-size: 18px;
}

.page-hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.72)),
    url("assets/hero.jpg") center / cover;
}

.page-hero .section-inner {
  padding: 118px 0 104px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 84px);
  font-weight: 400;
  line-height: 1.1;
}

.kicker {
  margin: 0 0 14px;
  color: #d8d2cb;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-inner {
  width: min(1080px, calc(100% - 44px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-inner.narrow {
  width: min(820px, calc(100% - 44px));
}

h2 {
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

p {
  margin: 0 0 18px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 18px;
  padding: 10px 26px;
  color: white;
  background: var(--accent);
  border: 1px solid var(--accent-dark);
  border-radius: 2px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.button-link:hover {
  background: var(--accent-dark);
}

.gallery-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
}

.gallery-band img {
  width: 100%;
  height: min(54vw, 620px);
  object-fit: cover;
}

.quote-section {
  color: white;
  background: var(--accent);
}

blockquote {
  margin: 0 auto 24px;
  max-width: 760px;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}

.quote-section h2 {
  color: white;
}

.video-section {
  background: #181818;
  color: white;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 42px;
  align-items: center;
}

.video-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  color: white;
  text-decoration: none;
  background: #000;
}

.video-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.72;
}

.video-card span {
  position: absolute;
  left: 24px;
  bottom: 22px;
  padding: 10px 16px;
  background: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.video-list {
  color: #ddd6cf;
  font-size: 18px;
}

.language-section {
  background: #fff;
}

.language-section.pale {
  background: #eee9e3;
}

.goals-section {
  background: var(--paper);
}

.post-preview {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
}

.post-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-date {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

h3 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 48px;
  color: #ddd;
  background: #111;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 22px;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .gallery-band,
  .video-grid,
  .post-preview {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 58vh;
  }

  .hero-title {
    padding: 44px 28px 56px;
  }

  .section-inner {
    padding: 68px 0;
  }

  h2 {
    font-size: 32px;
  }

  blockquote {
    font-size: 20px;
  }

  .gallery-band img {
    height: 72vw;
    min-height: 300px;
  }

  .post-preview {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
    padding: 28px 22px;
  }
}
