/* =========================================================
   Cross Roads Summer · "The Summer That Changes Everything"
   An interactive conversion journey
   Design system + layout
   ========================================================= */

:root {
  /* Palette: forest greens + warm orange accent + cream */
  --green-900: #1d3b2a;
  --green-700: #2f5e3f;
  --green-600: #3a7350;
  --green-500: #4c8c63;
  --green-100: #e4efe7;
  --orange-500: #a74510;
  --orange-600: #8a390d;
  --gold: #ffc77d;
  --gold-soft: #ffd9a8;
  --sky: #6fb6c9;
  --cream: #fbf8f1;
  --cream-200: #f3ecdd;
  --ink: #21271f;
  --ink-soft: #4a5347;
  --white: #ffffff;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(29, 59, 42, 0.08);
  --shadow: 0 14px 38px rgba(29, 59, 42, 0.14);
  --shadow-lg: 0 28px 60px rgba(29, 59, 42, 0.22);

  --font-head: "Rubik", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --section-pad: clamp(3.5rem, 8vw, 7rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  color: var(--green-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-inline: auto; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.9rem; }
.section { position: relative; padding-block: var(--section-pad); }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 0.6rem;
}
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; margin-inline: auto; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--green-900); color: #fff; padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 0%;
  z-index: 250; background: linear-gradient(90deg, var(--orange-500), var(--gold));
  box-shadow: 0 0 10px rgba(167,69,16,0.4);
  transition: width 0.08s linear;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid transparent; border-radius: 999px;
  padding: 0.7rem 1.35rem; min-height: 44px;
  cursor: pointer; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--orange-500); }
.btn-primary:hover { background: var(--orange-600); }
.btn-ghost { --btn-bg: var(--white); --btn-fg: var(--green-900); border-color: var(--green-100); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); box-shadow: none; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 0.95rem 1.8rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; min-height: 38px; font-size: 0.92rem; }
.btn-block { width: 100%; }

:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

/* ---------- Wave dividers ---------- */
.wave-divider { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; pointer-events: none; z-index: 1; }
.wave-divider svg { width: 100%; height: clamp(70px, 10vw, 150px); display: block; }
.wave-divider path { fill: var(--cream); }
.wave-top { top: -1px; bottom: auto; transform: rotate(180deg); }
/* Match each wave to the color of the section it flows into */
.section-experience > .wave-divider:not(.wave-top) path,
.section-voices > .wave-top path { fill: var(--cream-200); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(29,59,42,0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--green-900); }
.brand:hover { text-decoration: none; }
.brand-logo { height: clamp(34px, 5vw, 44px); width: auto; }
.brand-badge {
  font-family: var(--font-head); font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: var(--orange-500); padding: 0.25rem 0.5rem; border-radius: 999px; white-space: nowrap;
}

.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.6rem; padding: 0; }
.nav-menu a { font-family: var(--font-head); font-weight: 600; color: var(--green-900); font-size: 0.98rem; }
.nav-menu a.btn { color: #fff; }
.nav-menu a:not(.btn):hover { color: var(--orange-600); text-decoration: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--green-900); border-radius: 3px; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   JOURNEY PROGRESS RAIL (desktop side dots)
   ========================================================= */
.journey-rail {
  position: fixed; top: 50%; left: 18px; transform: translateY(-50%);
  z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.journey-rail.is-ready { opacity: 1; pointer-events: auto; }
.journey-rail ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; position: relative; }
.journey-rail ul::before {
  content: ""; position: absolute; left: 5px; top: 4px; bottom: 4px; width: 2px;
  background: rgba(29,59,42,0.16); border-radius: 2px;
}
.journey-rail a { position: relative; display: block; }
.journey-rail .dot {
  display: block; width: 12px; height: 12px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--green-500);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  position: relative; z-index: 1;
}
.journey-rail a:hover .dot { transform: scale(1.25); }
.journey-rail a.is-active .dot {
  background: var(--orange-500); border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(167,69,16,0.18);
}
.journey-rail a::after {
  content: attr(data-label);
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%) translateX(-6px);
  background: var(--green-900); color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 0.72rem; padding: 0.25rem 0.6rem; border-radius: 999px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease;
}
.journey-rail a:hover::after, .journey-rail a.is-active::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 1240px) { .journey-rail { display: none; } }

/* =========================================================
   CHAPTER 1 · HERO
   ========================================================= */
.hero { position: relative; color: #fff; padding-block: clamp(4.5rem, 12vw, 9rem) clamp(6rem, 11vw, 9rem); overflow: hidden; isolation: isolate; min-height: 92vh; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(100deg, rgba(20, 43, 30, 0.94) 0%, rgba(23, 48, 33, 0.78) 40%, rgba(29, 59, 42, 0.42) 100%),
    url("images/hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.4;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1.5px, transparent 1.6px);
  background-size: 26px 26px;
}
.hero-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero-particles .particle {
  position: absolute; bottom: -10px; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 199, 125, 0.7); opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-105vh) scale(0.5); opacity: 0; }
}
.hero-inner { max-width: 840px; position: relative; }
.hero .eyebrow { color: var(--gold-soft); }
.hero h1 { color: #fff; }
.hero .accent { color: var(--gold); }
.rotator { display: inline-block; min-height: 1.1em; transition: opacity 0.4s ease, transform 0.4s ease; }
.rotator.is-swapping { opacity: 0; transform: translateY(10px); }
.hero-sub { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: rgba(255,255,255,0.92); margin-top: 1.2rem; max-width: 60ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.9rem; }
.center-cta { justify-content: center; }
.hero-stats { list-style: none; display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 3rem); padding: 0; margin-top: 2.6rem; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: #fff; }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; }

.scroll-cue {
  position: absolute; bottom: clamp(1.4rem, 4vw, 2.4rem); left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.85); font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem;
}
.scroll-cue:hover { text-decoration: none; color: #fff; }
.scroll-cue-arrow { width: 22px; height: 22px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); animation: bob 1.6s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(45deg); } 50% { transform: translateY(6px) rotate(45deg); } }

/* =========================================================
   CHAPTER 2 · THE QUESTION
   ========================================================= */
.section-question { background: var(--cream); }
.q-rotate { color: var(--orange-600); display: inline-block; transition: opacity 0.4s ease, transform 0.4s ease; }
.q-rotate.is-swapping { opacity: 0; transform: translateY(8px); }
.section-question h2 { margin-bottom: 1.2rem; }
.tension-grid {
  display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap;
  gap: 1rem; margin: clamp(2rem, 5vw, 3rem) auto 1.5rem; max-width: 720px;
}
.tension-card {
  flex: 1 1 240px; background: #fff; border-radius: var(--radius);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(29,59,42,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem; text-align: center;
}
.tension-card p { font-family: var(--font-head); font-weight: 600; color: var(--green-900); }
.tension-card--good { background: linear-gradient(150deg, var(--green-600), var(--green-900)); border: 0; }
.tension-card--good p { color: #fff; }
.tension-icon { font-size: 2.2rem; }
.tension-arrow { display: flex; align-items: center; font-size: 1.6rem; color: var(--orange-500); font-weight: 700; }
.question-close { font-family: var(--font-head); font-weight: 600; color: var(--green-700); margin-top: 0.5rem; }

/* =========================================================
   CHAPTER 3 · THE EXPERIENCE (day at camp)
   ========================================================= */
.section-experience {
  background-color: var(--green-900);
  background-image:
    linear-gradient(to bottom, var(--cream) 0, rgba(251, 248, 241, 0) clamp(80px, 11vw, 160px)),
    linear-gradient(to top, var(--cream-200) 0, rgba(243, 236, 221, 0) clamp(80px, 11vw, 160px));
  color: #fff;
}
.section-experience h2, .section-experience h3 { color: #fff; }
.section-experience .section-lead { color: rgba(255,255,255,0.85); }
.section-experience .eyebrow { color: var(--gold); }

.day-experience {
  max-width: 920px; margin: 0 auto;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: clamp(1rem, 3vw, 1.8rem); overflow: hidden;
}
.day-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-bottom: 1.4rem; }
.day-tab {
  display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8); border-radius: 14px; padding: 0.7rem 0.4rem;
  cursor: pointer; font-family: var(--font-head); transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.day-tab:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.day-tab.is-active { background: var(--orange-500); color: #fff; border-color: var(--orange-500); box-shadow: var(--shadow); }
.day-tab-time { font-size: 0.78rem; font-weight: 600; opacity: 0.85; }
.day-tab-label { font-size: 0.98rem; font-weight: 700; }

.day-panels { position: relative; }
.day-panel { animation: panelIn 0.45s ease; }
.day-panel[hidden] { display: none; }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.day-emoji { font-size: 2.6rem; display: block; margin-bottom: 0.5rem; }
.day-panel h3 { margin-bottom: 0.6rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.day-panel p { color: rgba(255,255,255,0.86); max-width: 60ch; }
.day-list { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.day-list li { position: relative; padding-left: 1.6rem; color: rgba(255,255,255,0.92); }
.day-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 800; }

/* See it / video wall */
.see-it { margin-top: clamp(2.5rem, 6vw, 4rem); }
.see-it h3 { margin-bottom: 1.4rem; }
.video-wall {
  list-style: none; padding: 0; margin: 0 auto 1.8rem;
  display: grid; gap: clamp(0.9rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.video-card {
  position: relative; border: 0; padding: 0; cursor: pointer; background: var(--green-700);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease; text-align: left;
}
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.video-thumb { position: relative; aspect-ratio: 16 / 9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29,59,42,0.75), transparent 55%);
}
.video-card .play-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 56px; height: 56px; border-radius: 50%; z-index: 2;
  display: grid; place-items: center; color: #fff;
  background: rgba(167,69,16,0.92); box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.video-card:hover .play-icon { transform: translate(-50%,-50%) scale(1.1); }
.video-title {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0.8rem 0.9rem; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
}

/* =========================================================
   CHAPTER 4 · THE CHANGE (transformation + stats)
   ========================================================= */
.section-change { background: var(--cream-200); }

.transform { max-width: 820px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); }
.transform-stage {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); min-height: 300px; user-select: none;
}
.transform-after, .transform-before {
  position: absolute; inset: 0; padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; justify-content: center;
}
.transform-after {
  background: linear-gradient(150deg, var(--green-600), var(--green-900)); color: #fff;
}
.transform-before {
  background: linear-gradient(150deg, #6b6f68, #3f433d); color: #fff;
  width: 50%; border-right: 3px solid var(--gold);
  overflow: hidden;
}
.transform-tag {
  display: inline-block; align-self: flex-start; font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem;
  background: rgba(255,255,255,0.16); padding: 0.3rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
}
.transform-after .transform-tag { background: rgba(255,199,125,0.25); color: var(--gold); }
.transform ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.transform li { position: relative; padding-left: 1.5rem; font-family: var(--font-head); font-weight: 600; font-size: clamp(0.98rem, 1.6vw, 1.12rem); white-space: nowrap; }
.transform-after li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.transform-before li::before { content: "\2014"; position: absolute; left: 0; opacity: 0.7; }
.transform-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 44px; transform: translateX(-50%);
  background: transparent; border: 0; cursor: ew-resize; z-index: 3; display: grid; place-items: center;
}
.transform-handle::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; transform: translateX(-50%); background: var(--gold); }
.transform-handle-grip {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--green-900);
  display: grid; place-items: center; font-size: 1.2rem; font-weight: 800; box-shadow: var(--shadow);
  position: relative; z-index: 1;
}
.transform-hint { margin-top: 0.9rem; }

/* Impact stats */
.impact-stats {
  list-style: none; padding: 0; margin: 0 auto;
  display: grid; gap: clamp(1rem, 2.5vw, 1.6rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.impact-stat {
  background: #fff; border-radius: var(--radius-lg); padding: 1.8rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(29,59,42,0.06);
}
.impact-stat strong {
  display: block; font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--orange-500); line-height: 1; margin-bottom: 0.5rem;
}
.impact-stat span { color: var(--ink-soft); font-size: 0.95rem; }
.impact-note { margin-top: 1.4rem; }

/* =========================================================
   CHAPTER 5 · VOICES (carousel)
   ========================================================= */
.section-voices {
  background-color: var(--green-700);
  background-image:
    linear-gradient(to bottom, var(--cream-200) 0, rgba(243, 236, 221, 0) clamp(80px, 11vw, 160px)),
    linear-gradient(to top, var(--cream) 0, rgba(251, 248, 241, 0) clamp(80px, 11vw, 160px));
  color: #fff;
}
.section-voices h2 { color: #fff; }
.section-voices .eyebrow { color: var(--gold); }

.carousel { position: relative; max-width: 760px; margin: 0 auto; }
.carousel-track { position: relative; min-height: 230px; }
.quote {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  text-align: center; opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.quote.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.quote p {
  font-family: var(--font-head); font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  line-height: 1.4; color: #fff; margin-bottom: 1.1rem;
}
.quote cite { font-style: normal; color: var(--gold); font-family: var(--font-head); font-weight: 600; letter-spacing: 0.02em; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.6rem; }
.carousel-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08); color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dots button {
  width: 11px; height: 11px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.35); transition: background 0.2s ease, transform 0.2s ease; padding: 0;
}
.carousel-dots button.is-active { background: var(--gold); transform: scale(1.2); }

/* =========================================================
   CHAPTER 6 · STAFF GALLERY
   ========================================================= */
.section-staff { background: var(--cream); }
.staff-grid {
  list-style: none; padding: 0;
  display: grid; gap: clamp(0.8rem, 2vw, 1.4rem);
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  margin-bottom: 1.8rem;
}
.staff-card { display: flex; flex-direction: column; }
.staff-photo {
  position: relative; padding: 0; border: 0; cursor: pointer; background: var(--green-100);
  aspect-ratio: 1 / 1; width: 100%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.staff-photo:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.staff-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.staff-photo:hover img { transform: scale(1.06); }
.staff-photo img.img-missing { visibility: hidden; }
.staff-photo img.img-missing + .staff-overlay { opacity: 1; background: linear-gradient(150deg, var(--green-500), var(--green-700)); }
.staff-photo .staff-overlay::before { content: "Photo coming soon"; }
.staff-photo img:not(.img-missing) + .staff-overlay::before { content: ""; }
.staff-overlay {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: linear-gradient(to top, rgba(29,59,42,0.55), transparent 60%);
  opacity: 0; transition: opacity 0.2s ease;
}
.staff-photo:hover .staff-overlay, .staff-photo:focus-visible .staff-overlay { opacity: 1; }
/* Name/location are baked into the photo graphics, so the text labels are
   visually hidden but kept in the DOM for screen readers and the lightbox caption. */
.staff-meta {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.staff-name { font-family: var(--font-head); font-weight: 700; color: var(--green-900); }
.staff-role { font-size: 0.85rem; color: var(--ink-soft); }

/* =========================================================
   CHAPTER 7 · SESSION FINDER
   ========================================================= */
.section-finder {
  background-color: var(--green-100);
  background-image:
    linear-gradient(to bottom, var(--cream) 0, rgba(251, 248, 241, 0) clamp(80px, 11vw, 160px)),
    linear-gradient(to top, var(--cream) 0, rgba(251, 248, 241, 0) clamp(80px, 11vw, 160px));
}
.finder { max-width: 820px; margin: 0 auto; }
.finder-step { border: 0; padding: 0; margin: 0 0 1.6rem; }
.finder-step legend {
  font-family: var(--font-head); font-weight: 700; color: var(--green-900);
  font-size: 1.1rem; margin-bottom: 1rem; padding: 0;
}
.finder-options { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }
.finder-option {
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  background: #fff; color: var(--green-900); border: 2px solid rgba(29,59,42,0.12);
  border-radius: 999px; padding: 0.7rem 1.25rem; cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.finder-option:hover { transform: translateY(-2px); border-color: var(--green-500); }
.finder-option[aria-checked="true"] { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.finder-placeholder { margin-top: 1.5rem; font-family: var(--font-head); }
.finder-result { margin-top: 1.6rem; animation: panelIn 0.45s ease; }
.finder-result[hidden] { display: none; }
.finder-result-card {
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow); border: 1px solid rgba(29,59,42,0.06); text-align: center;
}
.finder-result-card h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 0.6rem; }
.finder-result-card > p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto; }
.finder-meta {
  list-style: none; padding: 0; margin: 1.3rem auto; display: flex; flex-wrap: wrap;
  gap: 0.6rem; justify-content: center;
}
.finder-meta li {
  background: var(--green-100); color: var(--green-700); font-family: var(--font-head);
  font-weight: 600; font-size: 0.88rem; padding: 0.4rem 0.9rem; border-radius: 999px;
}
.finder-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 0.5rem; }

/* =========================================================
   CHAPTER 8 · NO BARRIERS (discounts + form)
   ========================================================= */
.section-barriers { background: var(--cream); }
.discount-grid {
  list-style: none; padding: 0; margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
  display: grid; gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.discount-card {
  background: #fff; border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(29,59,42,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.discount-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.discount-badge {
  display: inline-grid; place-items: center; min-width: 64px; height: 64px; padding: 0 0.6rem;
  border-radius: 18px; background: var(--green-100); color: var(--green-700);
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; margin-bottom: 1rem;
}
.discount-card h3 { margin-bottom: 0.5rem; }
.discount-feature {
  grid-column: 1 / -1; text-align: center;
  background: linear-gradient(150deg, var(--green-700), var(--green-900)); color: #fff;
}
.discount-feature h3 { color: #fff; }
.discount-feature .discount-badge { background: rgba(255,255,255,0.16); }
.discount-feature p { color: rgba(255,255,255,0.9); max-width: 60ch; margin-inline: auto; }
.big-statement {
  font-family: var(--font-head); font-weight: 800; color: #fff !important;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.25; margin-bottom: 0.8rem;
}
.big-statement em { color: var(--gold); font-style: normal; }

/* ---------- Affordability form ---------- */
.afford-form-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem);
  background: #fff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 3rem);
  box-shadow: var(--shadow); align-items: start;
}
.afford-intro h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 0.7rem; }
.afford-intro p { color: var(--ink-soft); margin-bottom: 0.8rem; }
.afford-form { display: flex; flex-direction: column; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.afford-form label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--green-900); }
.req { color: var(--orange-600); }
.afford-form input, .afford-form select, .afford-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.7rem 0.85rem; border: 1.5px solid #d8ddd2; border-radius: 12px;
  background: var(--cream); width: 100%; transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.afford-form textarea { resize: vertical; }
.afford-form input:focus, .afford-form select:focus, .afford-form textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(76,140,99,0.18);
}
.afford-form .hint { font-size: 0.82rem; color: var(--ink-soft); }
.afford-form .error { font-size: 0.82rem; color: #c0392b; min-height: 0; }
.afford-form input[aria-invalid="true"], .afford-form select[aria-invalid="true"] { border-color: #c0392b; }
.form-status { font-family: var(--font-head); font-weight: 600; text-align: center; }
.form-status.success { color: var(--green-600); }
.form-status.error { color: #c0392b; }

/* =========================================================
   CHAPTER 9 · BEGIN (final CTA)
   ========================================================= */
.section-begin {
  background-color: var(--orange-500);
  background-image:
    linear-gradient(to bottom, var(--cream) 0, rgba(251, 248, 241, 0) clamp(90px, 12vw, 180px)),
    linear-gradient(150deg, var(--orange-500), var(--orange-600));
  color: #fff;
  position: relative; overflow: hidden;
}
.section-begin h2 { color: #fff; }
.section-begin .eyebrow { color: var(--gold-soft); }
.section-begin .section-lead { color: rgba(255,255,255,0.94); }
.confetti-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.section-begin .container { position: relative; z-index: 1; }
.begin-reassure { margin-top: 1.4rem; color: rgba(255,255,255,0.9); }
.begin-reassure a { color: #fff; text-decoration: underline; }

/* =========================================================
   STICKY CONVERSION BAR
   ========================================================= */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--green-900); color: #fff; box-shadow: 0 -8px 30px rgba(0,0,0,0.18);
  transform: translateY(110%); transition: transform 0.35s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.8rem; }
.sticky-cta-text { font-family: var(--font-head); font-size: 0.98rem; }
.sticky-cta-text strong { color: var(--gold); }
.sticky-cta-text span { color: rgba(255,255,255,0.82); }
.sticky-cta .btn { white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
  .sticky-cta-text span { display: none; }
  .sticky-cta-text { font-size: 0.9rem; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--green-900); color: rgba(255,255,255,0.85); padding-top: clamp(2.8rem, 6vw, 4.5rem); padding-bottom: 4.5rem; }
.footer-inner { display: grid; gap: 2rem; grid-template-columns: 1.6fr 1fr 1fr 1fr; padding-bottom: 2.4rem; }
.footer-logo { width: 92px; height: auto; }
.footer-brand p { margin-top: 0.9rem; max-width: 40ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 0.7rem; }
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 1.4rem; }
.footer-bottom .muted { color: rgba(255,255,255,0.6); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(15, 25, 18, 0.88); padding: 1.2rem; animation: fade 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content { width: min(960px, 100%); }
.lightbox-content img { width: 100%; height: auto; border-radius: var(--radius); max-height: 82vh; object-fit: contain; }
.video-frame { position: relative; aspect-ratio: 16 / 9; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox-caption { color: #fff; text-align: center; margin-top: 0.9rem; font-family: var(--font-head); }
.lightbox-caption span { display: block; color: rgba(255,255,255,0.7); font-weight: 400; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.2rem; z-index: 1;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.16); color: #fff; font-size: 2rem; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,0.28); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .afford-form-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.3rem;
    background: var(--cream); border-bottom: 1px solid rgba(29,59,42,0.1);
    padding: 0.8rem 1.2rem 1.2rem; box-shadow: var(--shadow);
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu li { width: 100%; }
  .nav-menu a:not(.btn) { display: block; padding: 0.6rem 0.2rem; }
  .nav-menu .btn { width: 100%; margin-top: 0.4rem; }

  .hero-bg {
    background-image:
      linear-gradient(170deg, rgba(20, 43, 30, 0.86) 0%, rgba(23, 48, 33, 0.74) 55%, rgba(29, 59, 42, 0.6) 100%),
      url("images/hero.png");
    background-position: center top;
  }
  .day-tabs { grid-template-columns: repeat(2, 1fr); }
  .tension-arrow { transform: rotate(90deg); }
}

@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-cta .btn, .section-begin .btn { width: 100%; }
  .staff-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .transform li { white-space: normal; }
}

/* ---------- Motion / contrast preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; }
  .hero-particles { display: none; }
}

@media print {
  .site-header, .hero-cta, .nav, .journey-rail, .sticky-cta, .scroll-cue, .lightbox, .section-begin .btn, .scroll-progress { display: none !important; }
  body { color: #000; background: #fff; }
}
