/* =============================================================
   THE FRENCH SKOOL — tfs.css
   Deep navy · Cream · Gold · Cormorant Garant + DM Sans
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garant:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

/* =====================================================
   TOKENS
   ===================================================== */
:root {
  --navy:      #0d1f35;
  --navy-l:    #162d4a;
  --navy-ll:   #1e3d60;
  --cream:     #f7f2e8;
  --cream-d:   #ede7d9;
  --cream-dd:  #e0d9c8;
  --gold:      #c9943a;
  --gold-l:    #e0b05a;
  --gold-pale: #f5e6c8;
  --ink:       #0d1f35;
  --muted:     #6b7a8d;
  --faint:     #b8c4d0;

  --serif: 'Cormorant Garant', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --max:   1080px;
  --r:     12px;
  --t:     .2s;
  --ease:  cubic-bezier(.2,.8,.2,1);
}

/* =====================================================
   RESET
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* =====================================================
   GRAIN + ATMOSPHERE
   ===================================================== */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='280' height='280' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .24;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* =====================================================
   LAYOUT
   ===================================================== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: var(--navy);
  padding: 7px 0;
  position: sticky;
  top: 0;
  z-index: 200;
}
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  gap: 20px;
}
.top-bar-left {
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.top-bar-right {
  display: flex; gap: 18px; align-items: center;
}
.top-bar-right a {
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.32);
  transition: color var(--t);
}
.top-bar-right a:hover { color: var(--gold-l); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  background: rgba(247,242,232,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(13,31,53,.1);
  padding: 12px 0;
  position: sticky;
  top: 31px;
  z-index: 100;
  transition: box-shadow var(--t), border-color var(--t);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(13,31,53,.1);
  border-bottom-color: rgba(13,31,53,.15);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--serif);
  font-size: 18px; font-weight: 600;
  color: var(--navy); letter-spacing: -.01em;
}
.logo-name span { color: var(--gold); }
.logo-sub {
  font-size: 9px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); margin-top: 2px;
}

/* Nav */
.nav { display: flex; gap: 2px; align-items: center; }
.nav a {
  font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
  padding: 7px 13px; border-radius: 999px;
  transition: color var(--t), background var(--t);
}
.nav a:hover  { color: var(--navy); background: var(--cream-d); }
.nav a.active { color: var(--cream); background: var(--navy); }
.nav a.teach  {
  color: var(--gold);
  border: 1px solid rgba(201,148,58,.3);
}
.nav a.teach:hover { background: var(--gold-pale); }

.btn-nav {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--navy); color: var(--cream);
  padding: 10px 18px; border-radius: 10px;
  white-space: nowrap;
  transition: background var(--t), transform var(--t);
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--navy-ll); transform: translateY(-1px); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: var(--gold); color: var(--navy);
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 10px;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,148,58,.4);
}

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: var(--navy); color: var(--cream);
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 10px;
  transition: background var(--t), transform var(--t);
}
.btn-navy:hover { background: var(--navy-ll); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent; color: var(--navy);
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid rgba(13,31,53,.25); border-radius: 10px;
  transition: border-color var(--t), color var(--t);
}
.btn-outline:hover { border-color: var(--navy); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: transparent; color: rgba(255,255,255,.65);
  font-family: var(--sans);
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,.2); border-radius: 10px;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-l); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--navy);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 75% at 12% 65%, rgba(201,148,58,.13) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 88% 18%, rgba(201,148,58,.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "\00AB";
  position: absolute;
  top: -40px; right: 40px;
  font-family: var(--serif);
  font-size: 440px; font-weight: 300;
  color: rgba(201,148,58,.04);
  line-height: 1; pointer-events: none; user-select: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px; align-items: end;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--gold); display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -.02em; color: #fff;
  margin-bottom: 8px;
}
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--gold-l); display: block;
}
.hero h1 strong { font-weight: 600; }

.hero-french {
  font-family: var(--serif);
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,.28);
  margin-bottom: 26px; letter-spacing: .04em;
}
.hero-french-trans {
  font-family: var(--sans);
  font-size: 12px; font-style: normal;
  color: rgba(255,255,255,.18);
  display: block; margin-top: 4px;
  letter-spacing: .04em;
}

.hero-sub {
  font-size: 17px; color: rgba(255,255,255,.52);
  max-width: 50ch; line-height: 1.72; margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.hero-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px; border-radius: 999px;
}

/* Portrait */
.hero-portrait { align-self: end; position: relative; }
.hero-portrait-frame {
  border-radius: 20px 20px 0 0;
  overflow: hidden; aspect-ratio: 3/4;
  background: var(--navy-ll); position: relative;
}
.hero-portrait-frame::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent); z-index: 2;
}
.hero-portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(13,31,53,.88) 100%);
}
.hero-portrait-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 22px 28px; z-index: 3;
}
.hero-portrait-name {
  font-family: var(--serif);
  font-size: 24px; font-weight: 600;
  color: #fff; margin-bottom: 5px;
}
.hero-portrait-cred {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.hero-portrait-cred::before {
  content: "✦"; color: var(--gold); font-size: 8px;
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip { background: var(--gold); }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 22px 28px;
  border-right: 1px solid rgba(13,31,53,.12);
  text-align: center;
  position: relative; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: rgba(13,31,53,.1);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-number {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
  color: var(--navy); line-height: 1;
  letter-spacing: -.02em; margin-bottom: 5px;
}
.stat-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(13,31,53,.5);
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section { padding: 80px 0; }
.section-alt { background: var(--cream-d); border-top: 1px solid rgba(13,31,53,.06); border-bottom: 1px solid rgba(13,31,53,.06); }
.section-dark { background: var(--navy); }
.section-navy-l { background: var(--navy-l); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; display: block; width: 22px; height: 1px; flex-shrink: 0; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow.navy { color: var(--navy); }
.eyebrow.navy::before { background: var(--navy); }
.eyebrow.cream { color: rgba(255,255,255,.4); }
.eyebrow.cream::before { background: rgba(255,255,255,.25); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 56px); font-weight: 300;
  line-height: 1.06; letter-spacing: -.02em; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title strong { font-weight: 600; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold-l); }
.section-title.light strong { color: #fff; }

.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 60ch; line-height: 1.72;
}
.section-sub.light { color: rgba(255,255,255,.45); }

/* =====================================================
   GOLDY SECTION
   ===================================================== */
.goldy-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 68px; align-items: center;
}
.goldy-img-wrap { position: relative; }
.goldy-img-frame {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; background: var(--navy-l);
  box-shadow: 0 24px 64px rgba(13,31,53,.2);
}
.goldy-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.goldy-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold); border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 8px 32px rgba(201,148,58,.4);
}
.goldy-accent-num {
  font-family: var(--serif);
  font-size: 38px; font-weight: 700;
  color: var(--navy); line-height: 1; letter-spacing: -.02em;
}
.goldy-accent-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(13,31,53,.5); margin-top: 4px;
}

.cred-list {
  display: flex; flex-direction: column; gap: 12px;
  margin: 28px 0 36px;
}
.cred-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--cream-d); border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: transform var(--t), box-shadow var(--t);
}
.cred-item:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(13,31,53,.08);
}
.cred-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cred-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.cred-body  { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* =====================================================
   COURSE CARDS
   ===================================================== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.course-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 28px;
  position: relative; overflow: hidden;
  transition: transform var(--t), border-color var(--t);
}
.course-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,148,58,.3);
}
.course-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.course-level {
  font-family: var(--serif);
  font-size: 56px; font-weight: 300;
  color: rgba(201,148,58,.18); line-height: 1;
  letter-spacing: -.03em; margin-bottom: 10px;
}
.course-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: #fff; margin-bottom: 8px;
}
.course-body {
  font-size: 13px; color: rgba(255,255,255,.42);
  line-height: 1.6; margin-bottom: 18px;
}
.course-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.course-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,148,58,.1);
  border: 1px solid rgba(201,148,58,.2);
  padding: 3px 9px; border-radius: 999px;
}

.path-strip {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 32px; padding: 18px 24px;
  background: rgba(201,148,58,.07);
  border: 1px solid rgba(201,148,58,.16);
  border-radius: 14px;
}
.path-step {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.55); letter-spacing: .04em;
}
.path-arrow { color: var(--gold); opacity: .5; font-size: 15px; }
.path-step.end { color: var(--gold-l); }

/* =====================================================
   TEACH BAND
   ===================================================== */
.teach-band {
  background: linear-gradient(135deg, var(--navy-l) 0%, var(--navy) 65%);
  border-radius: 24px; padding: 52px 56px;
  position: relative; overflow: hidden;
  margin-top: 52px;
  box-shadow: 0 24px 64px rgba(13,31,53,.15);
}
.teach-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 92% 50%, rgba(201,148,58,.1) 0%, transparent 60%);
}
.teach-band::after {
  content: "Enseignez";
  position: absolute; right: -10px; top: -20px;
  font-family: var(--serif);
  font-size: 160px; font-weight: 300;
  color: rgba(255,255,255,.022); letter-spacing: -.04em;
  white-space: nowrap; pointer-events: none;
}
.teach-band-inner {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
  position: relative; z-index: 1;
}
.teach-band-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 300;
  color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.teach-band-title em { font-style: italic; color: var(--gold-l); }
.teach-band-body {
  font-size: 15px; color: rgba(255,255,255,.45);
  max-width: 54ch; line-height: 1.7; margin-bottom: 22px;
}
.teach-perks { display: flex; gap: 20px; flex-wrap: wrap; }
.teach-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.teach-perk::before { content: "✦"; color: var(--gold); font-size: 9px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 40px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(13,31,53,.07);
  border-radius: 18px; padding: 28px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,31,53,.1);
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 72px; font-weight: 300;
  color: var(--gold); opacity: .2;
  position: absolute; top: 10px; left: 18px;
  line-height: 1; pointer-events: none;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 17px; font-style: italic; font-weight: 300;
  color: var(--navy); line-height: 1.65;
  margin-bottom: 18px; padding-top: 22px;
}
.testimonial-name {
  font-size: 13px; font-weight: 700;
  color: var(--navy); letter-spacing: .04em;
}
.testimonial-detail {
  font-size: 12px; color: var(--muted); margin-top: 2px;
}
.testimonial-outcome {
  display: inline-block; margin-top: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-pale);
  padding: 3px 10px; border-radius: 999px;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { margin-top: 36px; }
.faq-item {
  border-bottom: 1px solid rgba(13,31,53,.08);
  padding: 0;
}
.faq-item:first-child { border-top: 1px solid rgba(13,31,53,.08); }
.faq-q {
  font-family: var(--serif);
  font-size: 20px; font-weight: 400;
  color: var(--navy); padding: 20px 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
}
.faq-q::after {
  content: "+"; font-family: var(--sans);
  font-size: 22px; font-weight: 300;
  color: var(--gold); flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--muted);
  line-height: 1.72; max-height: 0;
  overflow: hidden; transition: max-height .3s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* =====================================================
   TEACH PAGE
   ===================================================== */
.teach-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.teach-step {
  background: var(--cream-d);
  border-radius: 18px; padding: 28px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(13,31,53,.07);
  transition: transform var(--t);
}
.teach-step:hover { transform: translateY(-3px); }
.teach-step-num {
  font-family: var(--serif);
  font-size: 64px; font-weight: 300;
  color: rgba(201,148,58,.15); line-height: 1;
  letter-spacing: -.03em; margin-bottom: 8px;
}
.teach-step-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.teach-step-body {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

.teach-apply-form {
  background: var(--navy);
  border-radius: 24px; padding: 48px 52px;
  position: relative;
}
.teach-apply-form::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(201,148,58,.1) 0%, transparent 60%);pointer-events: none;
}
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; position: relative; z-index: 1;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--sans); font-size: 14px;
  color: #fff; outline: none;
  transition: border-color .15s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--navy); color: #fff; }
.form-textarea { resize: vertical; min-height: 100px; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 40px;
}
.contact-card {
  background: var(--cream-d);
  border: 1px solid rgba(13,31,53,.08);
  border-radius: 18px; padding: 28px;
  transition: transform var(--t);
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card-icon { font-size: 30px; margin-bottom: 14px; }
.contact-card-title {
  font-family: var(--serif);
  font-size: 20px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.contact-card-body { font-size: 14px; color: var(--muted); line-height: 1.65; }
.contact-card a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,148,58,.3);
  transition: border-color var(--t);
}
.contact-card a:hover { border-bottom-color: var(--gold); }

/* =====================================================
   BLOG / WRITING
   ===================================================== */
.post-row {
  display: grid; grid-template-columns: 80px 1fr 24px;
  gap: 20px; align-items: start;
  padding: 22px 0; border-bottom: 1px solid rgba(13,31,53,.08);
  text-decoration: none; color: inherit;
  transition: transform .15s;
}
.post-row:first-child { border-top: 1px solid rgba(13,31,53,.08); }
.post-row:hover { transform: translateX(4px); }
.post-date { font-size: 12px; font-weight: 600; color: var(--faint); text-transform: uppercase; letter-spacing: .1em; padding-top: 4px; white-space: nowrap; }
.post-title { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.25; margin-bottom: 5px; }
.post-excerpt { font-size: 13px; color: var(--muted); }
.post-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); background: var(--gold-pale); padding: 2px 8px; border-radius: 999px; margin-right: 6px; }
.post-arrow { color: var(--gold); font-size: 16px; padding-top: 4px; transition: transform .15s; }
.post-row:hover .post-arrow { transform: translate(3px,-2px); }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: var(--navy); padding: 56px 0 28px; }
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; margin-bottom: 44px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1) opacity(0.7); }
.footer-logo-text { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #fff; }
.footer-logo-text span { color: var(--gold-l); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.65; max-width: 34ch; margin-bottom: 20px; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.3); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-contact a:hover { color: var(--gold-l); }
.footer-col-title { font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.42); transition: color .15s; }
.footer-links a:hover { color: var(--gold-l); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; color: rgba(255,255,255,.2); }
.footer-bottom em { font-style: italic; }
.footer-bottom a { color: rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-bottom a:hover { color: var(--gold-l); }

/* =====================================================
   REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .22s; }
.d4 { transition-delay: .30s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .hero-grid, .goldy-grid { grid-template-columns: 1fr; }
  .hero::after { display: none; }
  .hero-portrait { max-width: 340px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: 1fr; }
  .teach-steps { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .teach-band-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .teach-apply-form { padding: 32px 24px; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .section { padding: 56px 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .site-header .header-inner { flex-wrap: wrap; }
  .nav { width: 100%; justify-content: space-between; }
  .nav a { font-size: 10px; padding: 6px 8px; }
  .hero { padding: 52px 0 0; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost, .btn-navy, .btn-outline { width: 100%; justify-content: center; }
  .post-row { grid-template-columns: 1fr 20px; }
  .post-date { display: none; }
}
/* =====================================================
   NAV DROPDOWN + MEGA MENU
   ===================================================== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
  padding: 7px 13px; border-radius: 999px;
  cursor: pointer;
  transition: color var(--t), background var(--t);
  user-select: none;
}
.nav-dropdown:hover > .nav-dropdown-trigger {
  color: var(--navy);
  background: var(--cream-d);
}
.nav-caret {
  font-size: 8px; opacity: .5;
  transition: transform .2s;
  line-height: 1;
}
.nav-dropdown:hover .nav-caret {
  transform: rotate(180deg);
  opacity: .8;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--cream);
  border: 1px solid rgba(13,31,53,.1);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(13,31,53,.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s, visibility .18s, transform .18s;
  z-index: 300;
}
.nav-dropdown:hover > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(13,31,53,.06);
  transition: background .12s, color .12s;
}
.nav-dropdown-menu a:last-child {
  border-bottom: none;
}
.nav-dropdown-menu a:hover {
  background: var(--cream-d);
  color: var(--gold);
}

/* Mega menu (two-column) */
.nav-dropdown-menu.nav-mega {
  display: flex;
  min-width: 480px;
  padding: 16px 0;
  gap: 0;
}
.nav-dropdown-menu.nav-mega .nav-mega-col {
  flex: 1;
  min-width: 0;
  padding: 0 8px;
}
.nav-dropdown-menu.nav-mega .nav-mega-col:first-child {
  border-right: 1px solid rgba(13,31,53,.08);
}
.nav-dropdown-menu.nav-mega .nav-mega-col:only-child {
  border-right: none;
}
.nav-mega-col-full {
  flex: 1;
  min-width: 260px;
}
.nav-mega-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 16px 10px;
  opacity: .7;
}
.nav-dropdown-menu.nav-mega a {
  padding: 7px 16px;
  font-size: 13.5px;
  border-bottom: none;
  border-radius: 6px;
  margin: 0 4px;
  white-space: normal;
}
.nav-dropdown-menu.nav-mega a:hover {
  background: var(--cream-d);
  color: var(--gold);
}
a.nav-mega-all {
  font-weight: 600;
  font-size: 12px !important;
  letter-spacing: .04em;
  color: var(--gold) !important;
  margin-top: 4px;
  padding-top: 10px !important;
  border-top: 1px solid rgba(13,31,53,.08) !important;
  border-radius: 0 !important;
}
a.nav-mega-featured {
  font-weight: 600;
  color: var(--navy) !important;
  border-bottom: 1px solid rgba(13,31,53,.06) !important;
  border-radius: 0 !important;
  margin-bottom: 2px;
  padding-bottom: 10px !important;
}
@media (max-width: 640px) {
  .nav-dropdown-menu { min-width: 180px; }
  .nav-dropdown-menu.nav-mega { flex-direction: column; min-width: 260px; }
  .nav-dropdown-menu.nav-mega .nav-mega-col:first-child { border-right: none; border-bottom: 1px solid rgba(13,31,53,.08); padding-bottom: 8px; margin-bottom: 8px; }
}
