/* ============================================
   CANADIAN LANGUAGES — v1
   Design system: Land, Classroom, Craft
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Palette — warm, grounded, educational */
  --paper:      #FAF6EE;   /* base background, warm cream */
  --paper-2:    #F2EBDC;   /* slightly deeper cream */
  --sand:       #E8DDC6;   /* subtle section differentiator */
  --ink:        #1C2B24;   /* primary text — deep forest */
  --ink-2:      #3D4A43;   /* secondary text */
  --ink-3:      #6B6860;   /* tertiary text */

  /* Accents */
  --clay:       #B8542E;   /* primary accent — burnt ochre / earth */
  --clay-deep:  #8E3A1B;   /* hover state */
  --forest:     #1E4D56;   /* trust blue-green — for teacher CTAs */
  --forest-deep:#143842;
  --wheat:      #E8D5A4;   /* highlight / subtle backgrounds */
  --wheat-soft: #F5EBCC;

  /* Functional */
  --line:       #D4C8B0;   /* borders */
  --line-soft:  #E5DDCB;
  --shadow:     0 1px 2px rgba(28,43,36,0.04), 0 8px 24px rgba(28,43,36,0.06);

  /* Type scale */
  --ff-serif:   "Fraunces", Georgia, "Times New Roman", serif;
  --ff-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ff-mono:    "Montserrat", -apple-system, sans-serif; /* labels, nav, buttons — ties to brand */
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--clay); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--clay-deep); }
button { cursor: pointer; border: 0; background: transparent; font-family: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--ff-serif); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- LAYOUT ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ---------- UTILITIES ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clay);
}
.lede { font-size: 19px; line-height: 1.6; color: var(--ink-2); font-weight: 400; }

/* ============================================
   NAV
   ============================================ */
#mainNav {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--line-soft);
  transition: padding .25s ease, box-shadow .25s ease;
  padding: 18px 0;
}
#mainNav.scrolled { padding: 12px 0; box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(28,43,36,0.06); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo span { color: var(--clay); }
.logo:hover { color: var(--ink); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--ff-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a.cta {
  background: var(--forest);
  color: var(--paper);
  padding: 10px 18px;
  border-radius: 999px;
  letter-spacing: 1px;
  font-size: 12px;
}
.nav-links a.cta:hover { background: var(--forest-deep); color: var(--paper); }
.nav-toggle {
  display: none;
  width: 32px; height: 26px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--ink); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 64px 28px 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(184, 84, 46, 0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(30, 77, 86, 0.06), transparent 70%),
    var(--paper);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
.hero-title {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}
.hero-lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 24px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .22s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--forest);
  color: var(--paper);
}
.btn-primary:hover { background: var(--forest-deep); color: var(--paper); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(30,77,86,0.22); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn-clay {
  background: var(--clay);
  color: var(--paper);
}
.btn-clay:hover { background: var(--clay-deep); color: var(--paper); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-num {
  font-family: var(--ff-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Hero right — lesson card mock */
.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-0.4deg);
  display: block;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.hero-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.hero-card:hover {
  transform: rotate(0) translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(28, 43, 36, 0.18);
}
.hero-card--link:hover .hc-open-hint {
  background: var(--clay-deep);
}
.hero-card--link:hover .hc-open-hint::after { transform: translateX(3px); }
.hc-open-hint {
  position: absolute;
  bottom: 16px;
  right: 20px;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 4px 12px rgba(184, 84, 46, 0.3);
}
.hc-head {
  padding: 14px 20px;
  background: var(--wheat-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hc-crumb {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clay-deep);
}
.hc-grade {
  font-size: 11px;
  font-weight: 700;
  color: var(--forest);
  background: rgba(30,77,86,0.1);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.hc-body { padding: 18px 22px 6px; }
.hc-body h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 4px;
}
.hc-body p {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.hc-video {
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(184,84,46,0.2), rgba(30,77,86,0.3)),
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 58px; height: 58px;
  background: rgba(250,246,238,0.95);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.play-btn::after {
  content: '';
  position: absolute;
  left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 16px solid var(--clay);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.hc-resources {
  padding: 12px 22px 52px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--line-soft);
  margin-top: 14px;
}
.pill {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink-2);
}
.pill.clay { background: rgba(184,84,46,0.12); color: var(--clay-deep); }
.pill.forest { background: rgba(30,77,86,0.12); color: var(--forest); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-2); }
.section-dark {
  background: #15201B;
  color: var(--paper);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }
.section-head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 10px 0 18px;
}
.section-lede {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 620px;
}
.section-head.centered .section-lede { margin: 0 auto; }

/* ============================================
   WHAT YOU GET — 3 columns
   ============================================ */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.module {
  padding: 32px 28px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  transition: border-color .25s ease, transform .25s ease;
}
.module:hover { border-color: var(--clay); transform: translateY(-2px); }
.module-ico {
  width: 52px; height: 52px;
  background: var(--wheat-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--clay);
  margin-bottom: 18px;
}
.module h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.module p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============================================
   LANGUAGE DETAIL — pilot card
   ============================================ */
.pilot-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pilot-head {
  display: block;
  padding: 44px 56px 36px;
  background: linear-gradient(135deg, var(--wheat-soft), var(--paper));
  border-bottom: 1px solid var(--line-soft);
}
.pilot-info { max-width: 880px; }
.pilot-info .pilot-blurb { max-width: 820px; }
.pilot-facts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 6px 0 22px;
  max-width: 820px;
}
.pilot-facts-inline li {
  background: rgba(250, 246, 238, 0.8);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 5px 14px 5px 10px;
  font-size: 13px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pilot-facts-inline li span {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--clay);
  background: var(--wheat-soft);
  padding: 2px 7px;
  border-radius: 999px;
}
.pilot-info .status-tag {
  display: inline-block;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pilot-name {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.pilot-region {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.pilot-blurb {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 480px;
}
.pilot-teacher {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  max-width: 440px;
  margin-bottom: 24px;
}
.pilot-teacher-avatar {
  width: 40px; height: 40px;
  background: var(--forest);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-weight: 600;
}
.pilot-teacher-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.pilot-teacher-role {
  font-size: 12px;
  color: var(--ink-3);
}
.pilot-visual {
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, rgba(28,43,36,0.02), rgba(184,84,46,0.08)),
    repeating-linear-gradient(45deg, rgba(184,84,46,0.05), rgba(184,84,46,0.05) 2px, transparent 2px, transparent 14px),
    var(--wheat-soft);
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 28px;
}
.pilot-visual-cap {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  max-width: 260px;
  line-height: 1.4;
}
.pilot-fact {
  width: 100%;
  align-self: center;
  background: rgba(250, 246, 238, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pilot-fact-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.pilot-fact-row:last-child { border-bottom: none; }
.pilot-fact-k {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--clay);
}
.pilot-fact-v {
  font-family: var(--ff-serif);
  font-size: 15px;
  line-height: 1.35;
  color: var(--ink);
}

/* Units */
.units {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
}
.unit {
  padding: 32px 32px;
  border-right: 1px solid var(--line-soft);
  position: relative;
  transition: background .25s ease;
}
.unit:last-child { border-right: none; }
.unit:hover { background: var(--wheat-soft); }
.unit.active { background: var(--wheat-soft); }
.unit-label {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}
.unit h4 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.unit-grade {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.unit-teacher { font-size: 13px; color: var(--ink-2); margin-bottom: 14px; }
.unit-state {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
}
.unit-state.open { color: var(--clay); }
.unit-link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 1px;
}
.unit-link:hover { color: var(--clay); border-color: var(--clay); }

/* Languages roster */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.roster-card {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  transition: all .25s ease;
}
.roster-card:hover { border-color: var(--clay); }
.roster-card h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 10px 0 4px;
}
.roster-region {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.roster-note {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.roster-state {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 10px;
  background: var(--sand);
  border-radius: 999px;
  display: inline-block;
}

/* ============================================
   HOW IT WORKS — 3 steps
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--clay);
  opacity: 0.3;
  position: absolute;
  top: -8px;
  left: -8px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 10px;
  padding-top: 20px;
  position: relative;
}
.step p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ============================================
   FOR TEACHERS TEASER (dark band)
   ============================================ */
.teacher-band {
  background: var(--forest-deep);
  color: var(--paper);
}
.teacher-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.teacher-band h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--paper);
}
.teacher-band p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.82);
  margin-bottom: 12px;
}
.curriculum-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 246, 238, 0.15);
}
.curriculum-list li {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  color: rgba(250, 246, 238, 0.82);
}
.curriculum-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wheat);
  font-weight: 700;
}

/* ============================================
   FILMS BAND
   ============================================ */
.films-band {
  background: var(--ink);
  color: var(--paper);
}
.films-band .eyebrow { color: var(--wheat); }
.films-band .section-title { color: var(--paper); }
.films-band .section-lede { color: rgba(250,246,238,0.8); }

/* Fixed parallax-style banner between the section title and the video grid */
.filmmaker-banner {
  width: 100%;
  min-height: 62vh;
  margin: 48px 0 8px;
  background-image:
    linear-gradient(to bottom, rgba(28,43,36,0.18), rgba(28,43,36,0.42)),
    url('assets/wahbi-filming.jpg');
  background-size: cover;
  background-position: center 38%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(250,246,238,0.05);
}
@media (max-width: 900px) {
  .filmmaker-banner {
    min-height: 58vw;
    background-attachment: scroll;
    background-position: center center;
    margin: 36px 0 4px;
  }
}
.films-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.film-card {
  background: rgba(250,246,238,0.04);
  border: 1px solid rgba(250,246,238,0.08);
  border-radius: 6px;
  overflow: hidden;
}
.video-wrap {
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.film-meta { padding: 24px 28px; }
.film-meta h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--paper);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.film-sub {
  font-size: 13px;
  color: rgba(250,246,238,0.65);
  margin-bottom: 18px;
}
.award-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(250,246,238,0.08);
}
.chip {
  font-family: var(--ff-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  background: rgba(184, 84, 46, 0.15);
  color: var(--wheat);
  border-radius: 999px;
}
.films-link {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wheat);
  border-bottom: 1px solid var(--wheat);
  padding-bottom: 2px;
}
.films-link:hover { color: var(--paper); border-color: var(--paper); }

/* ============================================
   FOUNDER
   ============================================ */
.founder-block {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 64px;
  align-items: start;
}
.founder-photo {
  aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, transparent, rgba(28,43,36,0.08)),
    repeating-linear-gradient(45deg, rgba(184,84,46,0.04), rgba(184,84,46,0.04) 2px, transparent 2px, transparent 18px),
    var(--wheat-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--ink-3);
}
.founder-text h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(36px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 28px;
}
.founder-text p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
  color: var(--ink-2);
}
.pull-quote {
  margin: 36px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--clay);
  background: var(--wheat-soft);
  font-family: var(--ff-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clay-deep);
  font-style: normal;
  text-transform: uppercase;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0;
}
.cred {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 20px 22px;
  border-radius: 6px;
}
.cred h4 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.cred ul li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  padding: 3px 0;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.press-row a, .press-row span {
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--ink-2);
}
.press-row a:hover { border-color: var(--clay); color: var(--clay); }
.endorsement {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 6px;
  font-family: var(--ff-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-2);
}
.endorsement cite {
  display: block;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink-3);
  font-style: normal;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-grid--solo {
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}
.contact-grid--solo .contact-info {
  display: grid;
  grid-template-columns: 2.1fr 1fr 1.35fr 1.35fr;
  gap: 20px;
}
.contact-grid--solo .ci-block {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 18px 20px 20px;
  min-width: 0;
}
.contact-grid--solo .ci-block h4 { margin-bottom: 8px; }
.contact-grid--solo .ci-block p {
  font-size: 14.5px;
  margin: 2px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-grid--solo .ci-block .ci-sub { font-size: 13px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-block h4 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}
.ci-block p { font-size: 16px; color: var(--ink); margin: 2px 0; }
.ci-block .ci-sub { font-size: 14px; color: var(--ink-3); }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(184, 84, 46, 0.15);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #12201A;
  color: rgba(250, 246, 238, 0.85);
  padding: 64px 0 26px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 246, 238, 0.08);
}
.footer-brand h4 {
  font-family: var(--ff-serif);
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 10px;
}
.footer-brand h4 span { color: var(--clay); }
.footer-brand p { font-size: 14px; color: rgba(250,246,238,0.7); max-width: 280px; line-height: 1.6; }
.footer-col h5 {
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wheat);
  margin-bottom: 14px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: rgba(250, 246, 238, 0.75);
  margin-bottom: 8px;
}
.footer-col a:hover { color: var(--wheat); }
.copyright {
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(250,246,238,0.45);
  padding-top: 26px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pilot-head { grid-template-columns: 1fr; gap: 32px; padding: 40px 36px; }
  .teacher-band-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-block { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo { position: static; aspect-ratio: 4/3; max-width: 500px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid--solo .contact-info { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .films-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 18px; }

  .hero { padding: 56px 28px 64px; }
  .section { padding: 64px 0; }
  .modules, .steps, .roster-grid, .units, .credentials-grid, .curriculum-list {
    grid-template-columns: 1fr;
  }
  .roster-grid { grid-template-columns: 1fr 1fr; }
  .unit { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .pilot-head { padding: 32px 24px; }
  .contact-form { padding: 26px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
