@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ============================================================
   JOSS COACHING — Design tokens
   Premium personal-transformation brand, not a bodybuilding site.
   Light-first palette, dark sections used sparingly for drama.
   Red is an accent only — never a dominant background.
   ============================================================ */
:root {
  --cream:        #F7F4EE;
  --cream-alt:    #EFE9DF;
  --off-white:    #FCFBF8;
  --ink:          #17150F;
  --ink-soft:     #55503F;
  --ink-faint:    #8A8371;
  --charcoal:     #15130F;
  --charcoal-alt: #1E1B15;
  --paper:        #F7F4EE;
  --red:          #B5292C;
  --red-soft:     rgba(181, 41, 44, 0.08);
  --tan:          #D7B7AE;
  --line:         rgba(23, 21, 15, 0.1);
  --line-dark:    rgba(247, 244, 238, 0.14);
  --success:      #4E7A54;

  --font-display: 'Anton', 'Oswald', Impact, sans-serif;
  --font-body: 'Manrope', 'Inter', -apple-system, sans-serif;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8.5rem;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.75rem, 1.5rem + 1.2vw, 2.375rem);
  --text-2xl: clamp(2.25rem, 1.7rem + 2.4vw, 3.75rem);
  --text-3xl: clamp(2.75rem, 1.9rem + 4vw, 5.5rem);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1180px;
  --container-narrow: 820px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 200ms;
  --dur-base: 420ms;
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }
svg { display: block; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: var(--text-base);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-md); }

section { position: relative; }
.section-dark { background: var(--charcoal); color: var(--off-white); }
.section-light { background: var(--cream); color: var(--ink); }
.section-alt { background: var(--cream-alt); color: var(--ink); }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, .display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.02;
  font-weight: 400;
}
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

.accent { color: var(--red); }
.section-dark .accent, .hero .accent { color: #E0605F; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-size: var(--text-xs);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-md);
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); display: inline-block; }
.section-dark .eyebrow { color: #E0605F; }
.section-dark .eyebrow::before { background: #E0605F; }

.lede { font-size: var(--text-lg); color: var(--ink-soft); max-width: 46ch; font-weight: 400; }
.section-dark .lede { color: rgba(247,244,238,0.72); }

.section-head { max-width: 720px; margin-bottom: var(--space-xl); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  padding: 1.1rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  min-height: 44px;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.btn-primary {
  background: var(--red);
  color: var(--off-white);
  border-color: var(--red);
  box-shadow: 0 10px 26px -10px rgba(181, 41, 44, 0.5);
}
.btn-primary:hover { background: #952022; border-color: #952022; transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(181, 41, 44, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 21, 15, 0.25);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(23, 21, 15, 0.04); transform: translateY(-2px); }
.section-dark .btn-ghost, .hero .btn-ghost { color: var(--off-white); border-color: rgba(247,244,238,0.3); }
.section-dark .btn-ghost:hover, .hero .btn-ghost:hover { border-color: var(--off-white); background: rgba(247,244,238,0.08); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.75rem 1.4rem; font-size: 0.8rem; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-md) 0;
  transition: padding var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: var(--space-xs) 0;
  background: rgba(247, 244, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--off-white);
  transition: color var(--dur-base) var(--ease-out);
}
.nav.is-scrolled .logo { color: var(--ink); }
.logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

.nav-links { display: flex; align-items: center; gap: var(--space-lg); }
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(247,244,238,0.82);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
  padding: 4px 0;
}
.nav.is-scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--off-white); }
.nav.is-scrolled .nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red);
  transition: width var(--dur-fast) var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta .btn-primary { padding: 0.7rem 1.4rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--off-white); transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out); }
.nav.is-scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; background: var(--charcoal); z-index: 99;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--space-lg);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base) var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.9rem; text-transform: uppercase; color: var(--off-white); }
.mobile-menu a:hover { color: #E0605F; }

/* ============ STICKY MOBILE CTA ============ */
.mobile-sticky-cta {
  position: fixed; left: var(--space-sm); right: var(--space-sm); bottom: var(--space-sm);
  z-index: 90; display: none;
  transform: translateY(120%);
  transition: transform var(--dur-base) var(--ease-out);
}
.mobile-sticky-cta.is-visible { transform: translateY(0); }
.mobile-sticky-cta .btn { width: 100%; box-shadow: 0 12px 30px -6px rgba(0,0,0,0.35); }

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6.5rem;
  padding-bottom: var(--space-2xl);
  background: var(--charcoal);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; width: 900px; height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181,41,44,0.16) 0%, transparent 70%);
  top: -350px; right: -300px; z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--space-2xl); align-items: center; }
.hero-eyebrow { color: rgba(247,244,238,0.6); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: var(--text-xs); margin-bottom: var(--space-md); display: flex; align-items: center; gap: var(--space-2xs); }
.hero-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--red); }
.hero h1 { font-size: var(--text-3xl); margin-bottom: var(--space-md); color: var(--off-white); }
.hero .lede { color: rgba(247,244,238,0.72); margin-bottom: var(--space-lg); font-size: var(--text-lg); }
.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-bottom: var(--space-lg); }
.hero-tags { display: flex; gap: var(--space-sm); flex-wrap: wrap; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247,244,238,0.5); font-weight: 700; }
.hero-tags span:not(:last-child)::after { content: '•'; margin-left: var(--space-sm); color: var(--red); }

.hero-photo { position: relative; }
.hero-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-left: auto;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.hero-photo-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%;
  filter: saturate(0.82) contrast(1.06) brightness(0.98);
}
.hero-photo-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(21,19,15,0) 45%, rgba(21,19,15,0.55) 100%);
}
.hero-photo-badge {
  position: absolute; bottom: var(--space-md); left: var(--space-md); right: var(--space-md); z-index: 2;
  background: rgba(21,19,15,0.55); backdrop-filter: blur(10px);
  border: 1px solid rgba(247,244,238,0.15);
  border-radius: var(--radius-md); padding: var(--space-sm) var(--space-md);
  display: flex; align-items: center; gap: 10px;
}
.hero-photo-badge svg { color: #E0605F; flex-shrink: 0; }
.hero-photo-badge span { font-family: var(--font-display); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.02em; }

/* ============ IDENTIFICATION ============ */
.identification { padding: var(--space-3xl) 0; }
.identification .container-narrow { text-align: center; }
.identification p.body-text { font-size: var(--text-lg); color: var(--ink-soft); margin-bottom: var(--space-md); }
.identification .punch { font-size: var(--text-xl); margin-top: var(--space-lg); color: var(--ink); }

/* ============ REAL PROBLEM (dark) ============ */
.problem { padding: var(--space-3xl) 0; }
.problem-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-2xl); align-items: start; }
.problem-list { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin: var(--space-lg) 0; }
.problem-chip {
  font-size: var(--text-sm); font-weight: 600; padding: 0.6rem 1.1rem;
  border-radius: var(--radius-pill); border: 1px solid rgba(247,244,238,0.18);
  color: rgba(247,244,238,0.85);
}
.problem-body p { font-size: var(--text-lg); color: rgba(247,244,238,0.78); margin-bottom: var(--space-md); }
.problem-punch { font-size: var(--text-xl); color: var(--off-white); margin-top: var(--space-md); }

/* ============ METHOD (5 pillars) ============ */
.method { padding: var(--space-3xl) 0; }
.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); }
.pillar {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px rgba(23,21,15,0.25); border-color: rgba(181,41,44,0.3); }
.pillar-num { font-family: var(--font-display); font-size: 0.85rem; color: var(--red); letter-spacing: 0.08em; margin-bottom: var(--space-md); }
.pillar-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--red-soft); border: 1px solid rgba(181,41,44,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: var(--space-md);
}
.pillar h3 { font-size: 1.15rem; margin-bottom: var(--space-sm); }
.pillar p { color: var(--ink-soft); font-size: var(--text-sm); }

/* ============ RESULTS ============ */
.results { padding: var(--space-3xl) 0; }
.result-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
.result-photo { position: relative; aspect-ratio: 4/5; }
.result-photo img { width: 100%; height: 100%; object-fit: cover; }
.result-photo-empty {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--cream-alt); color: var(--ink-faint); font-size: var(--text-sm); text-align: center; padding: var(--space-lg);
}
.result-content { padding: var(--space-xl); display: flex; flex-direction: column; justify-content: center; }
.result-number { font-family: var(--font-display); font-size: clamp(3.5rem, 3rem + 4vw, 6.5rem); line-height: 0.9; color: var(--red); }
.result-duration { font-family: var(--font-display); font-size: var(--text-lg); text-transform: uppercase; color: var(--ink); margin-bottom: var(--space-md); }
.result-content p { color: var(--ink-soft); margin-bottom: var(--space-md); max-width: 42ch; }
.result-tags { display: flex; gap: var(--space-2xs); flex-wrap: wrap; }
.result-tag { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); background: var(--red-soft); color: var(--red); }
.results-note { text-align: center; color: var(--ink-faint); font-size: var(--text-sm); margin-top: var(--space-lg); }

/* ============ STORY / TIMELINE (dark) ============ */
.story { padding: var(--space-3xl) 0; }
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(180deg, rgba(247,244,238,0.02), rgba(247,244,238,0.22) 10%, rgba(247,244,238,0.22) 90%, rgba(247,244,238,0.02));
}
.timeline-item { position: relative; padding-left: 76px; padding-bottom: var(--space-2xl); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute; left: 0; top: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--charcoal-alt); border: 1px solid rgba(247,244,238,0.2);
  display: flex; align-items: center; justify-content: center; color: #E0605F;
}
.timeline-item.is-peak .timeline-marker { border-color: var(--red); background: rgba(181,41,44,0.15); }
.timeline-big { font-family: var(--font-display); font-size: clamp(2.5rem, 2rem + 3vw, 4rem); line-height: 0.95; margin-bottom: var(--space-2xs); color: var(--off-white); }
.timeline-item.is-peak .timeline-big { color: #E0605F; }
.timeline-label { font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,244,238,0.5); margin-bottom: var(--space-sm); }
.timeline-item p { color: rgba(247,244,238,0.72); max-width: 52ch; }
.timeline-photo { margin-top: var(--space-md); border-radius: var(--radius-md); overflow: hidden; max-width: 220px; aspect-ratio: 3/4; }
.timeline-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; display: block; filter: grayscale(0.35) contrast(1.05); }
.story-final { max-width: 640px; margin: var(--space-2xl) auto 0; text-align: center; }
.story-final p { font-size: var(--text-xl); font-family: var(--font-display); text-transform: none; letter-spacing: 0; line-height: 1.3; color: var(--off-white); }
.story-final .accent { color: #E0605F; }

/* ============ ACCOMPANIMENT ============ */
.program { padding: var(--space-3xl) 0; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.program-card { padding: var(--space-lg); border-radius: var(--radius-md); background: var(--off-white); border: 1px solid var(--line); }
.program-icon {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--cream-alt); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); margin-bottom: var(--space-md);
}
.program-card h3 { font-size: 1.05rem; margin-bottom: var(--space-xs); text-transform: none; font-family: var(--font-body); font-weight: 800; letter-spacing: 0; }
.program-card p { color: var(--ink-soft); font-size: var(--text-sm); }

/* ============ WHO ============ */
.who { padding: var(--space-3xl) 0; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.who-card { padding: var(--space-lg); border-radius: var(--radius-md); }
.who-card.yes { background: var(--off-white); border: 1px solid var(--line); }
.who-card.no { background: transparent; border: 1px dashed var(--line); }
.who-card h3 { font-size: 1.2rem; margin-bottom: var(--space-md); }
.who-card.no h3 { color: var(--ink-faint); }
.who-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.who-list li { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); }
.who-card.yes li { color: var(--ink-soft); }
.who-card.no li { color: var(--ink-faint); }
.who-list svg { flex-shrink: 0; margin-top: 2px; }
.who-card.yes svg { color: var(--red); }
.who-card.no svg { color: var(--ink-faint); }
.who-note { text-align: center; max-width: 640px; margin: var(--space-xl) auto 0; font-size: var(--text-lg); font-family: var(--font-display); text-transform: none; letter-spacing: 0; line-height: 1.35; }

/* ============ FINAL CTA (dark) ============ */
.final-cta { padding: var(--space-3xl) 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(181,41,44,0.16) 0%, transparent 70%);
  bottom: -350px; left: -250px; z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: var(--text-2xl); margin-bottom: var(--space-md); }
.final-cta .lede { margin: 0 auto var(--space-lg); text-align: center; }
.final-cta-note { color: rgba(247,244,238,0.6); font-size: var(--text-sm); margin-top: var(--space-md); max-width: 46ch; margin-left: auto; margin-right: auto; }

/* ============ APPLICATION FORM ============ */
.apply { padding: var(--space-3xl) 0; }
.apply-shell { max-width: 640px; margin: 0 auto; background: var(--off-white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--space-xl); }
.apply-progress { display: flex; gap: 6px; margin-bottom: var(--space-lg); }
.apply-progress-step { flex: 1; height: 4px; border-radius: 2px; background: var(--line); overflow: hidden; }
.apply-progress-step .fill { height: 100%; width: 0%; background: var(--red); transition: width var(--dur-base) var(--ease-out); }
.apply-progress-step.is-done .fill { width: 100%; }
.apply-progress-step.is-current .fill { width: 100%; }
.apply-step-label { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: var(--space-lg); }

.form-step { display: none; flex-direction: column; gap: var(--space-md); }
.form-step.is-active { display: flex; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: var(--text-sm); font-weight: 700; color: var(--ink); }
.field .field-help { font-weight: 500; color: var(--ink-faint); font-size: var(--text-xs); }
.field input, .field textarea, .field select {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.9rem 1rem; color: var(--ink); font-family: var(--font-body); font-size: var(--text-base);
  min-height: 44px; transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); background: var(--off-white); }
.field textarea { resize: vertical; min-height: 100px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex; align-items: center; gap: 10px; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.radio-option:hover { border-color: rgba(181,41,44,0.4); }
.radio-option input { min-height: auto; width: auto; accent-color: var(--red); }
.radio-option:has(input:checked) { border-color: var(--red); background: var(--red-soft); }

.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: var(--space-lg); gap: var(--space-sm); }
.form-status { font-size: var(--text-sm); font-weight: 700; min-height: 1.2em; margin-top: var(--space-sm); }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--red); }
.apply-success { text-align: center; padding: var(--space-lg) 0; }
.apply-success svg { color: var(--success); margin: 0 auto var(--space-md); }
.apply-success h3 { text-transform: none; font-family: var(--font-body); font-weight: 800; font-size: 1.3rem; margin-bottom: var(--space-sm); }
.apply-success p { color: var(--ink-soft); max-width: 42ch; margin: 0 auto; }

/* ============ FAQ ============ */
.faq { padding: var(--space-3xl) 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--off-white); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-md);
  padding: var(--space-md) var(--space-lg); text-align: left; background: none; border: none;
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-base); color: var(--ink);
  min-height: 44px;
}
.faq-question .plus { flex-shrink: 0; transition: transform var(--dur-base) var(--ease-out); color: var(--red); }
.faq-item.is-open .faq-question .plus { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--dur-base) var(--ease-out); }
.faq-answer-inner { padding: 0 var(--space-lg) var(--space-lg); color: var(--ink-soft); }

/* ============ FOOTER ============ */
.footer { padding: var(--space-xl) 0 var(--space-lg); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--space-md); flex-wrap: wrap; padding-bottom: var(--space-lg); margin-bottom: var(--space-lg); border-bottom: 1px solid var(--line-dark); }
.footer-tagline { color: rgba(247,244,238,0.55); font-size: var(--text-sm); margin-top: var(--space-2xs); }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(247,244,238,0.18); display: flex; align-items: center; justify-content: center; transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out); color: var(--off-white); }
.footer-social a:hover { border-color: var(--red); background: rgba(181,41,44,0.12); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); flex-wrap: wrap; }
.footer-bottom p, .footer-legal a { color: rgba(247,244,238,0.45); font-size: var(--text-xs); }
.footer-legal { display: flex; gap: var(--space-md); }
.footer-legal a:hover { color: rgba(247,244,238,0.8); }

/* ============ REVEAL (JS controlled) ============ */
.reveal { opacity: 0; transform: translateY(28px); }

/* ============ SKIP LINK ============ */
.skip-link:focus { left: var(--space-sm) !important; top: var(--space-sm) !important; border-radius: 6px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-card { max-width: 380px; margin: 0 auto; }
  .problem-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .result-card { grid-template-columns: 1fr; }
  .result-photo { aspect-ratio: 16/10; }
  .program-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 6rem; min-height: auto; padding-bottom: var(--space-2xl); }
  .hero h1 { font-size: clamp(2.4rem, 2rem + 6vw, 3.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-photo-card { max-width: 100%; aspect-ratio: 4/4.4; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .apply-shell { padding: var(--space-lg) var(--space-md); }
  .form-nav { flex-direction: column-reverse; align-items: stretch; }
  .form-nav .btn { width: 100%; }
  .timeline::before { left: 21px; }
  .timeline-item { padding-left: 60px; }
  .timeline-marker { width: 44px; height: 44px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-sticky-cta { display: block; }
}
