/* ================================================================
   IN FORM SOCCER — Redesign v2 · Dark-dominant
   Monochrome (black / deep grey) + red CTA accent, brand photo forward
   ================================================================ */

@font-face {
  font-family: "InFormTitles";
  src: url("Brand/Titles%20Font.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core palette — pure monochrome */
  --black:      #000000;
  --ink:        #0a0a0a;   /* near-black section bg */
  --ink-2:      #141414;   /* dark cards on dark */
  --ink-3:      #1f1f1f;   /* elevated cards / hover */
  --line-dark:  #2e2e2e;
  --mute:       #6b6b6b;   /* secondary text */
  --mute-2:     #8a8a8a;
  --mute-3:     #b8b8b8;   /* on-dark secondary */
  --line:       #e6e6e6;   /* light borders */
  --paper:      #f4f4f4;   /* light section bg */
  --paper-2:    #fafafa;
  --white:      #ffffff;

  /* Single accent — red CTA */
  --red:        #D52B1E;
  --red-hover:  #b01f14;
  --red-dark:   #8f1810;
  --gold:       #E5B83C;   /* used once for star ratings only */

  /* Radius */
  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.05);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sh-md: 0 10px 30px rgba(0,0,0,0.10);
  --sh-lg: 0 24px 60px rgba(0,0,0,0.22);
  --sh-red: 0 8px 24px rgba(213,43,30,0.35);

  /* Layout */
  --maxw:      1240px;
  --maxw-nar:  960px;
  --gutter:    24px;
  --sec-y:     96px;

  /* Type */
  --font-display: "InFormTitles", "Helvetica Neue", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body:    "Helvetica Neue", "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Easing */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Reserve space so sticky bottom bar never covers final content */
  padding-bottom: 72px;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  font-weight: 900;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); font-weight: 800; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; font-weight: 800; letter-spacing: -.005em; }

p  { margin: 0 0 1em; }

::selection { background: var(--red); color: #fff; }

/* ================================================================
   LAYOUT HELPERS
   ================================================================ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--maxw-nar); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--sec-y) 0; }
.section--tight { padding: 56px 0; }

/* Dark-dominant: the "paper" section modifiers are now dark surfaces.
   The site alternates ink-2 / ink for texture. A true-light island is
   available via .section--snow for forms or tables that need contrast. */
.section--paper   { background: var(--ink-2); color: var(--mute-3); }
.section--paper-2 { background: var(--ink);   color: var(--mute-3); }
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4,
.section--paper-2 h1, .section--paper-2 h2, .section--paper-2 h3, .section--paper-2 h4 { color: var(--white); }
.section--paper .section-head p,
.section--paper-2 .section-head p { color: var(--mute-3); }
.section--paper .eyebrow,
.section--paper-2 .eyebrow { color: var(--red); }

.section--ink   { background: var(--ink);   color: var(--mute-3); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--white); }
.section--black { background: var(--black); color: var(--mute-3); }
.section--black h1, .section--black h2, .section--black h3, .section--black h4 { color: var(--white); }

.section--snow  { background: var(--paper); color: var(--ink); }
.section--snow h1, .section--snow h2, .section--snow h3, .section--snow h4 { color: var(--ink); }

.text-center { text-align: center; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}
.section--ink .eyebrow,
.section--black .eyebrow { color: #fff; opacity: .9; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head p { color: var(--mute); font-size: 1.08rem; }
.section--ink .section-head p,
.section--black .section-head p { color: var(--mute-3); }

.divider-red { width: 56px; height: 4px; background: var(--red); border: 0; margin: 18px auto 22px; border-radius: 2px; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--lg  { padding: 17px 34px; font-size: 1rem; }
.btn--sm  { padding: 10px 18px; font-size: .82rem; }
.btn--block { display: flex; width: 100%; }

.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: var(--sh-red);
}
.btn--red:hover { background: var(--red-hover); border-color: var(--red-hover); color: #fff; transform: translateY(-2px); }

.btn--black {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--black:hover { background: var(--black); color: #fff; transform: translateY(-2px); }

.btn--white {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--white:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }

.btn--link {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border: 0;
  text-transform: none;
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.btn--link:hover { color: var(--red); }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar {
  background: var(--black);
  color: #fff;
  font-size: .82rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar a { color: #fff; letter-spacing: .02em; }
.topbar a:hover { color: var(--red); }
.topbar .sep { opacity: .3; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-xs);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 44px; height: 44px;
  background: var(--black);
  color: #fff;
  border-radius: var(--r-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 1.05rem;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: -3px; right: -3px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 2px;
}
.brand-name { line-height: 1.05; }
.brand-tag {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-weight: 700;
  font-size: .94rem;
  padding: 8px 0;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: var(--red); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-weight: 800;
  color: var(--ink);
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 9px 12px;
  border-radius: var(--r-sm);
  font-size: 1.1rem;
}

/* Mobile nav */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: #fff;
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line);
    gap: 4px;
    box-shadow: var(--sh-md);
  }
  .nav.open .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
}

/* ================================================================
   HERO (Goalie-School-inspired light hero)
   ================================================================ */
.hero {
  padding: 72px 0 88px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, var(--paper) 0%, #fff 100%);
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-kicker .dot {
  width: 8px; height: 8px; background: var(--red); border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(213,43,30,0.15);
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--mute);
  max-width: 540px;
  margin-bottom: 30px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num .red { color: var(--red); }
.hero-stat-label {
  font-size: .78rem;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

/* CSS-only illustrated hero placeholder */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--ink-2) 0%, var(--black) 100%);
  box-shadow: var(--sh-lg);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 75%, rgba(213,43,30,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 2px, transparent 3px) 0 0/40px 40px,
    radial-gradient(circle at 70% 70%, #fff 2px, transparent 3px) 0 0/40px 40px,
    linear-gradient(135deg, var(--ink-3), var(--ink-2));
  opacity: .35;
}
.hero-visual-badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  z-index: 3;
}
.hero-visual-label {
  position: absolute;
  inset: auto 0 22px 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 3;
}
.hero-visual-stripe {
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  font-weight: 900;
  letter-spacing: .3em;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: right;
  opacity: .92;
}
.hero-visual-stripe span { display: block; }
.hero-visual-stripe span:nth-child(1) { color: #fff; font-size: 1.1rem; }
.hero-visual-stripe span:nth-child(2) { color: var(--red); font-size: 1.5rem; }
.hero-visual-stripe span:nth-child(3) { color: rgba(255,255,255,.5); font-size: .78rem; margin-top: 8px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--paper);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px 36px;
}
.trust-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}
.trust-bar-item .check {
  width: 22px; height: 22px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
}

/* ================================================================
   AUDIENCE / AGE TILES
   ================================================================ */
.audience-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  transition: all .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .25s var(--ease);
}
.audience-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.audience-card:hover::before { transform: scaleY(1); }
.audience-age {
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.audience-desc {
  color: var(--mute);
  font-size: .94rem;
  line-height: 1.45;
}

/* ================================================================
   PROGRAM CARDS (Goalie-School-style pricing tiers)
   ================================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.program-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 34px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s var(--ease);
}
.program-card:hover {
  border-color: var(--ink);
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}
.program-card--featured {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: var(--sh-lg);
}
.program-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.program-card--featured h3 { color: #fff; }
.program-card--featured .program-price { color: #fff; }
.program-card--featured .program-price small { color: var(--mute-3); }
.program-card--featured .program-features li { color: var(--mute-3); border-color: var(--line-dark); }
.program-card--featured .program-tag { background: var(--red); color: #fff; }

.program-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.program-tag {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-xs);
  margin-bottom: 12px;
  width: fit-content;
}
.program-card h3 { margin-bottom: 10px; }
.program-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
  margin: 4px 0 20px;
}
.program-price small {
  font-size: .92rem;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0;
}
.program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.program-features li {
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .94rem;
  position: relative;
  line-height: 1.4;
}
.program-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}
.program-features li:last-child { border-bottom: 0; }

/* ================================================================
   WHY US (dark credibility grid)
   ================================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 30px 24px;
  transition: all .25s var(--ease);
}
.value-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  background: var(--ink-3);
}
.value-icon {
  width: 48px; height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 18px;
}
.value-card h3 { color: #fff; margin-bottom: 8px; }
.value-card p { color: var(--mute-3); font-size: .95rem; margin: 0; }

/* ================================================================
   BIG STATS STRIP (Joner-style)
   ================================================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-top: 48px;
}
.stats-strip > div {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.stats-strip > div:last-child { border-right: 0; }
.stats-num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 6px;
}
.stats-num .red { color: var(--red); }
.stats-label {
  color: var(--mute-3);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

/* ================================================================
   COACH SPOTLIGHT
   ================================================================ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.coach-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .25s var(--ease);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 340px;
}
.coach-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.coach-photo {
  background: linear-gradient(160deg, var(--ink-2) 0%, var(--black) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 20px 12px;
  overflow: hidden;
}
.coach-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 68%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.14) 0 22%, transparent 22.5%),
    radial-gradient(ellipse 70% 50% at 50% 92%, rgba(255,255,255,0.10) 0 70%, transparent 71%);
}
.coach-photo::after {
  content: "";
  position: absolute;
  top: 16px; right: 16px;
  width: 8px; height: 40px;
  background: var(--red);
  border-radius: 2px;
}
.coach-photo-jersey {
  position: absolute;
  bottom: 12px;
  font-size: .68rem;
  letter-spacing: .2em;
}
.coach-body { padding: 28px 28px 24px; }
.coach-name { margin: 0 0 4px; }
.coach-title {
  color: var(--red);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.coach-bio { color: var(--mute); font-size: .98rem; margin-bottom: 16px; }
.coach-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.coach-creds li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: var(--r-xs);
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
}

/* ================================================================
   STEPS / HOW IT WORKS
   ================================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px 28px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--mute); margin: 0; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -4px; right: 20px;
  font-size: 6rem;
  line-height: 1;
  color: var(--red);
  opacity: .15;
  font-family: Georgia, serif;
  font-weight: 700;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-quote {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
}
.testimonial-name { font-weight: 800; margin: 0 0 2px; font-size: .94rem; color: var(--ink); }
.testimonial-meta { font-size: .82rem; color: var(--mute); margin: 0; }

/* ================================================================
   FAQ
   ================================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  padding: 22px 40px 22px 0;
  font-weight: 800;
  font-size: 1.04rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s;
}
.faq-item[open] summary::after {
  content: "–";
  background: var(--red);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item summary:hover { color: var(--red); }
.faq-answer {
  padding: 0 40px 24px 0;
  color: var(--mute);
  line-height: 1.65;
}
.faq-answer a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: var(--black);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0; right: -100px; bottom: 0;
  width: 300px;
  background: var(--red);
  transform: skewX(-18deg);
  opacity: .9;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: var(--mute-3); font-size: 1.08rem; margin-bottom: 28px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   CAMPS / URGENCY BANNER
   ================================================================ */
.urgency-banner {
  background: var(--red);
  color: #fff;
  padding: 16px 0;
  text-align: center;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .03em;
}
.urgency-banner .container {
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
}
.urgency-banner .btn { padding: 8px 16px; font-size: .78rem; }

.camp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: var(--r-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: all .25s var(--ease);
}
.camp-card:hover {
  border-color: var(--ink);
  border-left-color: var(--red);
  box-shadow: var(--sh-md);
  transform: translateX(4px);
}
.camp-date {
  text-align: center;
  background: var(--paper);
  padding: 16px 10px;
  border-radius: var(--r-sm);
}
.camp-date-day { font-size: 2rem; font-weight: 900; color: var(--ink); line-height: 1; }
.camp-date-month {
  font-size: .72rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 4px;
}
.camp-info h3 { margin-bottom: 6px; }
.camp-meta {
  display: flex;
  gap: 16px;
  color: var(--mute);
  font-size: .88rem;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.camp-meta span { display: inline-flex; align-items: center; gap: 4px; }
.camp-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
}
.camp-spots {
  font-size: .78rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 4px;
}

/* ================================================================
   CONTACT / FORM
   ================================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px;
}
.form-row {
  margin-bottom: 18px;
  display: grid;
  gap: 18px;
}
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(213,43,30,0.15);
}
.form textarea { min-height: 120px; resize: vertical; }

.info-block {
  background: var(--black);
  color: #fff;
  border-radius: var(--r-md);
  padding: 32px;
}
.info-block h3 { color: #fff; margin-bottom: 16px; }
.info-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.info-item:last-child { border-bottom: 0; }
.info-icon {
  width: 38px; height: 38px;
  background: var(--red);
  border-radius: var(--r-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
}
.info-item-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--mute-3); font-weight: 700; margin-bottom: 2px; }
.info-item-value { color: #fff; font-weight: 700; }
.info-item-value a { color: #fff; }
.info-item-value a:hover { color: var(--red); }

/* ================================================================
   PAGE HERO (interior pages)
   ================================================================ */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -60px; bottom: -60px;
  width: 260px; height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.08) 2px, transparent 3px) 0 0/40px 40px;
  opacity: .3;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -50px; top: -50px;
  width: 200px; height: 200px;
  background: var(--red);
  transform: rotate(45deg);
  opacity: .12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--red); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: var(--mute-3); font-size: 1.1rem; max-width: 660px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex;
  gap: 8px;
  font-size: .82rem;
  color: var(--mute-3);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--mute-3); }
.breadcrumb a:hover { color: #fff; }

/* ================================================================
   STICKY BOTTOM BOOKING BAR (aggressive conversion UI)
   ================================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--black);
  color: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 -6px 24px rgba(0,0,0,.18);
}
.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px var(--gutter);
}
.sticky-cta-copy {
  display: flex; flex-direction: column; line-height: 1.2;
}
.sticky-cta-copy strong { font-size: 1rem; color: #fff; letter-spacing: .01em; }
.sticky-cta-copy span { font-size: .8rem; color: var(--mute-3); }

/* Floating phone button */
.float-call {
  position: fixed;
  left: 18px; bottom: 88px;
  z-index: 61;
  width: 56px; height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: var(--sh-red);
  transition: all .2s var(--ease);
}
.float-call:hover {
  background: var(--red-hover);
  color: #fff;
  transform: scale(1.08);
}
.float-call::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid var(--red);
  border-radius: 50%;
  opacity: .5;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { transform: scale(.9); opacity: .6; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(.9); opacity: 0; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black);
  color: var(--mute-3);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -.01em;
}
.footer-about { font-size: .92rem; color: var(--mute-3); margin-bottom: 18px; max-width: 380px; }
.footer h4 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; font-size: .92rem; }
.footer ul a { color: var(--mute-3); }
.footer ul a:hover { color: var(--red); }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  color: var(--mute-3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  transition: all .2s var(--ease);
}
.social-row a:hover { border-color: var(--red); color: #fff; background: var(--red); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .82rem;
  color: var(--mute-2);
  flex-wrap: wrap;
}

/* ================================================================
   EDIT PLACEHOLDERS (yellow tags so you can find everything to replace)
   ================================================================ */
.edit-note {
  display: inline-block;
  background: #ffe066;
  color: #7a5d00;
  font-weight: 900;
  font-size: .62rem;
  letter-spacing: .1em;
  padding: 2px 6px;
  border-radius: 3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .program-card--featured { transform: none; }
  .program-card--featured:hover { transform: translateY(-4px); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-row { grid-template-columns: repeat(2, 1fr); }
  .coaches-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 5/4; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip > div { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  :root { --sec-y: 72px; }
}
@media (max-width: 640px) {
  body { padding-bottom: 110px; }
  :root { --sec-y: 56px; --gutter: 18px; }
  .topbar { font-size: .74rem; padding: 7px 0; }
  .topbar-left { gap: 12px; }
  .topbar-right { display: none; }
  .nav { height: 64px; }
  .nav.open .nav-links { top: 64px; }
  .brand-mark { width: 38px; height: 38px; font-size: .9rem; }
  .brand-name { font-size: .95rem; }
  .brand-tag { display: none; }
  .hero { padding: 48px 0 56px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: .68rem; }
  .trust-bar-inner { justify-content: flex-start; }
  .value-grid { grid-template-columns: 1fr; }
  .audience-row { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .camp-card { grid-template-columns: 1fr; text-align: left; }
  .camp-card .btn { width: 100%; }
  .form-row--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .sticky-cta .container { padding: 10px var(--gutter); }
  .sticky-cta-copy span { display: none; }
  .float-call { bottom: 78px; width: 52px; height: 52px; font-size: 1.2rem; }
  .coach-card { grid-template-columns: 1fr; min-height: auto; }
  .coach-photo { aspect-ratio: 16/9; }
  .split { grid-template-columns: 1fr; }
  .split-media { aspect-ratio: 16/10; min-height: auto; }
  .big-stats { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-2 { grid-template-columns: 1fr; }
  .footer-col { text-align: left; }
}

/* ================================================================
   LOGO IMAGE (brand) — swap the IN mark for the real logo
   ================================================================ */
.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 18px;
  /* The logo is black on transparent; footer is black, so invert to white. */
  filter: invert(1) brightness(1.1);
}

/* ================================================================
   HERO & COACH PHOTOS
   ================================================================ */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--ink-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: var(--r-xs);
  z-index: 2;
}

/* Coach photo — replace the jersey placeholder with real img */
.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coach-photo.has-img::before,
.coach-photo.has-img::after { display: none; }
.coach-photo.has-img .coach-photo-jersey { display: none; }

/* Generic photo block for section splits */
.photo-block {
  aspect-ratio: 4/3;
  background: var(--ink-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative;
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   SPLIT LAYOUT (story/feature 2-column with media)
   ================================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--sh-md);
  position: relative;
  color: var(--mute-2);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .88rem;
  min-height: 280px;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================================================================
   BREADCRUMBS (plural alias — same look as .breadcrumb)
   ================================================================ */
.breadcrumbs {
  font-size: .82rem;
  color: var(--mute-3);
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--mute-3); }
.breadcrumbs a:hover { color: #fff; }

/* ================================================================
   SCHEDULE TABLE (program roadmaps, daily schedules)
   ================================================================ */
.schedule {
  width: 100%;
  border-collapse: collapse;
  background: var(--ink-2);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  color: var(--mute-3);
  margin: 0 auto;
  max-width: 1040px;
}
.schedule thead th {
  background: var(--black);
  color: #fff;
  text-align: left;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-dark);
}
.schedule tbody td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-dark);
  font-size: .96rem;
  vertical-align: top;
}
.schedule tbody tr:last-child td { border-bottom: 0; }
.schedule tbody tr:hover { background: var(--ink-3); }
.week-num {
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--red);
  letter-spacing: .02em;
  white-space: nowrap;
}
/* Light variant, for cases where schedule sits on a light section */
.section--snow .schedule,
.section:not(.section--ink):not(.section--black):not(.section--paper):not(.section--paper-2) .schedule {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--line);
}
.section--snow .schedule thead th,
.section:not(.section--ink):not(.section--black):not(.section--paper):not(.section--paper-2) .schedule thead th {
  background: var(--ink);
  color: #fff;
}
.section--snow .schedule tbody td,
.section:not(.section--ink):not(.section--black):not(.section--paper):not(.section--paper-2) .schedule tbody td {
  border-bottom-color: var(--line);
}
.section--snow .schedule tbody tr:hover,
.section:not(.section--ink):not(.section--black):not(.section--paper):not(.section--paper-2) .schedule tbody tr:hover {
  background: var(--paper);
}

/* ================================================================
   BIG STATS (landing-style hero numbers)
   ================================================================ */
.big-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.big-stat {
  text-align: center;
  padding: 36px 18px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.big-stat:hover {
  transform: translateY(-3px);
  border-color: var(--red);
}
.big-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.big-stat-label {
  color: var(--mute-3);
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

/* ================================================================
   PRICE BLOCK (program pages sidecar)
   ================================================================ */
.price-block {
  background: var(--ink);
  color: var(--mute-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--sh-md);
}
.price-block h3 { color: #fff; margin-bottom: 6px; font-size: 1.1rem; }
.price-big {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 10px 0 18px;
  letter-spacing: -.02em;
}
.price-big small {
  font-size: .9rem;
  color: var(--mute-3);
  font-weight: 700;
  letter-spacing: .02em;
}
.price-block p { color: var(--mute-3); font-size: .92rem; margin-bottom: 18px; }

/* ================================================================
   CHECKLIST (what's included)
   ================================================================ */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.checklist li {
  position: relative;
  padding: 10px 0 10px 38px;
  color: inherit;
  font-size: 1rem;
  border-bottom: 1px solid var(--line-dark);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.section--snow .checklist li { border-bottom-color: var(--line); }
@media (max-width: 720px) {
  .checklist { grid-template-columns: 1fr; }
}

/* ================================================================
   FEATURE GRID (2-up feature blocks)
   ================================================================ */
.feature-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.feature-item {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 32px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.feature-item:hover { border-color: var(--red); transform: translateY(-3px); }
.feature-item h3 { color: #fff; margin-bottom: 10px; }
.feature-item p { color: var(--mute-3); margin: 0; }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ================================================================
   TESTIMONIAL — FEATURED VARIANT
   ================================================================ */
.testimonial--featured {
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--red);
  padding: 48px 42px;
  position: relative;
  max-width: 920px;
  margin: 0 auto 48px;
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.testimonial--featured::before {
  content: "\201C";
  font-family: Georgia, serif;
  position: absolute;
  top: 12px; left: 20px;
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: .35;
}
.testimonial--featured .testimonial-quote { color: #fff; font-size: 1.25rem; line-height: 1.5; }
.testimonial--featured .testimonial-name { color: #fff; font-size: 1.02rem; }
.testimonial--featured .testimonial-meta { color: var(--mute-3); }

/* ================================================================
   FOOTER COLUMN (alias/extra styling for footer-col)
   ================================================================ */
.footer-col h4 { color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 8px; font-size: .92rem; color: var(--mute-3); }
.footer-col ul a { color: var(--mute-3); }
.footer-col ul a:hover { color: var(--red); }

/* ================================================================
   VIDEO CARD (testimonials videos)
   ================================================================ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}
.video-card {
  background: var(--ink-2);
  border-radius: var(--r-md);
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  color: var(--mute-3);
  font-size: .9rem;
  text-align: center;
  border: 1px solid var(--line-dark);
  transition: border-color .2s var(--ease);
}
.video-card:hover { border-color: var(--red); }
@media (max-width: 900px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   AUDIENCE ROW — small variant for 2-col "who it's for"
   (reuses .audience-row with modifier handled inline)
   ================================================================ */

/* Also darken the existing audience-card background slightly so it pops
   on ink sections */
.section--paper .audience-card,
.section--paper-2 .audience-card,
.section--ink .audience-card,
.section--black .audience-card {
  background: var(--ink-3);
  border-color: var(--line-dark);
  color: var(--mute-3);
}
.section--paper .audience-card .audience-desc,
.section--paper-2 .audience-card .audience-desc,
.section--ink .audience-card .audience-desc,
.section--black .audience-card .audience-desc { color: var(--mute-3); }

/* Value cards on dark sections need explicit dark styling */
.section--paper .value-card,
.section--paper-2 .value-card {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  padding: 28px 24px;
  border-radius: var(--r-md);
}
.section--paper .value-card h3,
.section--paper-2 .value-card h3 { color: #fff; }
.section--paper .value-card p,
.section--paper-2 .value-card p { color: var(--mute-3); }

/* ================================================================
   ICON SYSTEM — inline SVG, stroke-based
   Pair with sprite defined in <svg class="i-sprite">...</svg>
   Usage: <svg class="icon"><use href="#i-phone"/></svg>
   ================================================================ */
.i-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1.1em;
  height: 1.1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -.15em;
  flex-shrink: 0;
}
.icon--lg { width: 1.5em; height: 1.5em; }
.icon--xl { width: 2rem; height: 2rem; stroke-width: 1.75; }

/* Replace emoji-based .feature-icon circle with SVG-friendly variant */
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 14px rgba(213,43,30,0.3);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-icon .icon { width: 26px; height: 26px; stroke-width: 2; }
.feature-item:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 22px rgba(213,43,30,0.5);
}

/* Social icon buttons in topbar/footer */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: .7;
  transition: all .2s var(--ease);
}
.social-icon .icon { width: 14px; height: 14px; }
.social-icon:hover { opacity: 1; color: var(--red); border-color: var(--red); transform: translateY(-2px); }

/* Topbar / nav inline icons */
.topbar-left .icon,
.topbar-right .icon { width: 14px; height: 14px; vertical-align: -.12em; margin-right: 4px; }
.nav-phone .icon { width: 16px; height: 16px; color: var(--red); }

/* ================================================================
   ANIMATIONS — keyframes + reveal system
   Driven by IntersectionObserver in scripts.js. Elements with
   .reveal start hidden and transition in when .is-visible is added.
   Respects prefers-reduced-motion.
   ================================================================ */

/* Base reveal — fade + slide up */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variant: slide from left */
.reveal--left { transform: translateX(-48px); }
.reveal--left.is-visible { transform: translateX(0); }

/* Variant: slide from right */
.reveal--right { transform: translateX(48px); }
.reveal--right.is-visible { transform: translateX(0); }

/* Variant: scale in */
.reveal--scale { transform: scale(.92); }
.reveal--scale.is-visible { transform: scale(1); }

/* Variant: blur reveal (for hero type) */
.reveal--blur { filter: blur(8px); }
.reveal--blur.is-visible { filter: blur(0); }

/* Staggered children inside a .reveal-stagger parent — children delay by index */
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: .56s; }
.reveal-stagger.is-visible > *:nth-child(9) { transition-delay: .64s; }
.reveal-stagger.is-visible > *:nth-child(10) { transition-delay: .72s; }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

/* Hero entrance cascade — runs on page load, no observer needed */
.hero h1, .hero .hero-kicker, .hero-sub, .hero-ctas, .hero-stats, .hero-visual,
.page-hero h1, .page-hero .eyebrow, .page-hero p, .page-hero .breadcrumb {
  animation: heroRise .9s var(--ease) both;
}
.hero .hero-kicker,
.page-hero .breadcrumb { animation-delay: .05s; }
.hero h1,
.page-hero h1 { animation-delay: .18s; }
.hero-sub,
.page-hero p { animation-delay: .32s; }
.hero-ctas { animation-delay: .46s; }
.hero-stats { animation-delay: .6s; }
.hero-visual { animation: heroSlideIn 1.1s var(--ease) both; animation-delay: .28s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateX(48px) scale(.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Continuous subtle glow on primary CTA */
.btn--red {
  position: relative;
  overflow: hidden;
}
.btn--red::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.35) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.btn--red:hover::after { transform: translateX(100%); }

/* Button press */
.btn:active { transform: translateY(0) scale(.98) !important; }

/* Photo hover zoom wrapper */
.photo-zoom {
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
}
.photo-zoom img {
  transition: transform 1.2s var(--ease), filter .6s var(--ease);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-zoom:hover img { transform: scale(1.06); }

/* Parallax-lite: drifts a few px as user scrolls (JS-driven) */
.parallax { transform: translate3d(0, var(--p-y, 0), 0); will-change: transform; }

/* Divider animate-in */
.divider-red {
  transform-origin: center;
  transform: scaleX(0);
  transition: transform .7s var(--ease) .2s;
}
.reveal.is-visible .divider-red,
.is-visible .divider-red { transform: scaleX(1); }

/* Counter pulse when reaching target */
[data-count] { display: inline-block; transition: transform .3s var(--ease); }
[data-count].counted { animation: countPulse .5s var(--ease); }
@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Audience/program card entrance tilt on hover */
.audience-card,
.program-card,
.pkg-card {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
}

/* Floating phone button gentle pulse */
.float-call {
  animation: floatPulse 2.5s var(--ease) infinite;
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(213,43,30,0.35); }
  50%      { box-shadow: 0 8px 24px rgba(213,43,30,0.35), 0 0 0 12px rgba(213,43,30,0.0); }
}
.float-call:hover { animation-play-state: paused; transform: scale(1.08); }

/* Sticky CTA slide-up on first appearance */
.sticky-cta { animation: slideUpCta .5s var(--ease) .8s both; }
@keyframes slideUpCta {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .hero h1, .hero .hero-kicker, .hero-sub, .hero-ctas, .hero-stats, .hero-visual,
  .page-hero h1, .page-hero .eyebrow, .page-hero p, .page-hero .breadcrumb,
  .divider-red, .sticky-cta, .float-call, .btn--red::after, .photo-zoom img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ================================================================
   MOBILE SPACING FIXES — pass over 375-430px viewport
   ================================================================ */
@media (max-width: 720px) {
  :root { --sec-y: 56px; --gutter: 18px; }

  body { padding-bottom: 80px; font-size: 16px; }

  h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem); line-height: 1.08; }
  h2 { font-size: clamp(1.55rem, 5.5vw, 2rem); line-height: 1.12; }
  h3 { font-size: 1.12rem; }

  /* Topbar: trim down, hide phone (it's already in the sticky CTA) */
  .topbar { font-size: .75rem; padding: 7px 0; }
  .topbar .container { gap: 10px; justify-content: center; }
  .topbar-left { gap: 10px; justify-content: center; width: 100%; }
  .topbar-left .sep,
  .topbar-left a[href^="tel:"] { display: none; }
  .topbar-right { gap: 10px; justify-content: center; width: 100%; }

  /* Header nav: tighter */
  .nav { height: 64px; gap: 8px; }
  .brand-logo { max-height: 38px; }
  .nav-cta { gap: 6px; }
  .nav-cta .btn { padding: 9px 14px; font-size: .78rem; }

  /* Hero tightening */
  .hero { padding: 44px 0 52px; }
  .hero::before { display: none; }
  .hero-grid { gap: 32px; grid-template-columns: 1fr; }
  .hero-kicker { font-size: .64rem; padding: 6px 11px; margin-bottom: 16px; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.9rem); margin-bottom: 14px; }
  .hero-sub { font-size: 1rem; margin-bottom: 22px; }
  .hero-ctas { gap: 10px; margin-bottom: 28px; }
  .hero-ctas .btn { flex: 1; min-width: 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 20px; }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-label { font-size: .64rem; letter-spacing: .05em; }

  /* Page hero */
  .page-hero { padding: 40px 0 48px; }
  .page-hero .breadcrumb { font-size: .75rem; margin-bottom: 14px; }
  .page-hero h1 { margin-bottom: 14px; }
  .page-hero p { font-size: 1rem; }

  /* Section heads */
  .section-head { margin-bottom: 32px; }
  .section-head p { font-size: 1rem; }

  /* Buttons full-width-friendly but not forced */
  .btn--lg { padding: 14px 22px; font-size: .9rem; }
  .btn { padding: 12px 18px; font-size: .85rem; }

  /* Grids collapse */
  .audience-row,
  .program-grid,
  .pkg-grid,
  .feature-grid-2,
  .stats-strip,
  .footer-grid,
  .split,
  .coaches-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* Stats strip: 2-column on mobile for density */
  .stats-strip { grid-template-columns: 1fr 1fr !important; gap: 14px; }
  .stats-strip .stat-num { font-size: 2rem; }
  .stats-strip .stat-label { font-size: .72rem; }

  /* Hero visual — shrink when stacked */
  .hero-visual { aspect-ratio: 4 / 3; max-height: 360px; }
  .hero-visual-stripe { font-size: .9rem; right: 18px; }
  .hero-visual-stripe span:nth-child(2) { font-size: 1.2rem; }

  /* Splits: photo above text, both full-width */
  .split { gap: 24px; }
  .split img { width: 100%; height: auto; }

  /* Feature items — less padding */
  .feature-item { padding: 24px 20px; }
  .feature-icon { width: 48px; height: 48px; margin-bottom: 14px; }

  /* Schedule tables: horizontal scroll container */
  .schedule-wrap,
  .section .schedule { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .schedule {
    min-width: 560px;
    font-size: .88rem;
  }
  .schedule th, .schedule td { padding: 12px 10px; }

  /* Checklist single column */
  .checklist { grid-template-columns: 1fr; gap: 0; }
  .checklist li { padding: 10px 0 10px 34px; font-size: .95rem; }

  /* Price block compact */
  .price-block { padding: 24px 20px; }
  .price-big { font-size: 2.4rem; }

  /* Sticky CTA — stacked, full width */
  .sticky-cta .container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px var(--gutter);
  }
  .sticky-cta-copy { text-align: center; }
  .sticky-cta-copy strong { display: block; font-size: .9rem; }
  .sticky-cta-copy span { font-size: .76rem; }
  .sticky-cta .btn { width: 100%; padding: 12px 18px; font-size: .85rem; }

  /* Float-call bottom offset so it doesn't overlap sticky CTA */
  .float-call { bottom: 90px; right: 14px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .testimonial { padding: 22px 20px; }
  .testimonial-quote { font-size: .95rem; }
  .testimonial--featured { padding: 32px 22px; margin-bottom: 28px; }
  .testimonial--featured .testimonial-quote { font-size: 1.05rem; }

  /* Footer */
  .footer { padding: 44px 0 24px; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; font-size: .8rem; }

  /* Video grid */
  .video-grid { grid-template-columns: 1fr !important; }

  /* CTA band */
  .cta-band { padding: 56px 0; }
  .cta-band-actions { flex-direction: column; gap: 10px; }
  .cta-band-actions .btn { width: 100%; }

  /* Sections with background-attachment fixed don't work on iOS */
  .hero,
  .page-hero,
  .cta-band { background-attachment: scroll !important; }
}

/* ================================================================
   PHOTO STRIP — horizontal row of images
   ================================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.photo-strip .photo-zoom {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-sm);
}
@media (max-width: 900px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .photo-strip { grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-strip .photo-zoom { aspect-ratio: 1 / 1; }
}

/* ================================================================
   COACH PHOTO — upgraded to support real photos via photo-zoom
   ================================================================ */
.coach-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink-2);
  position: relative;
}
.coach-photo.photo-zoom { border-radius: var(--r-md); }
.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-photo-jersey {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--mute-2);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

/* ================================================================
   HEADER SCROLL STATE — light shadow when scrolled
   ================================================================ */
.header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}
.header { transition: box-shadow .25s var(--ease); }

/* ================================================================
   TESTIMONIAL STAR SVGs (replaced text stars)
   ================================================================ */
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}
.testimonial-stars .icon { width: 16px; height: 16px; }

/* Feature-icon override for step cards */
.step .feature-icon {
  width: 56px; height: 56px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.step:hover .feature-icon {
  background: var(--red);
  transform: scale(1.1) rotate(-5deg);
}
.step .feature-icon .icon { width: 24px; height: 24px; }

/* Very small phones */
@media (max-width: 380px) {
  .nav-cta .btn { padding: 8px 11px; font-size: .72rem; }
  .brand-logo { max-height: 32px; }
  .topbar { font-size: .7rem; }
  .topbar-left > span:first-child { font-size: .7rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .hero-stat:last-child { grid-column: 1 / -1; text-align: center; }
}

/* ================================================================
   DARK-ONLY PALETTE + GOLD ACCENT OVERRIDE
   Appended last so it wins the cascade over earlier rules.
   Philosophy:
   - Page surfaces default to ink (near-black). Variation comes from
     alternating ink / ink-2 / ink-3 — never white.
   - Red is swapped to Pitch Gold #E8B84A. Since gold is bright, button
     labels use dark text (--ink) instead of white.
   - .section--snow is the single explicit light island if you ever
     need one (forms, dense tables). Otherwise everything stays dark.
   ================================================================ */

:root {
  --red:        #E8B84A;   /* Warm gold */
  --red-hover:  #D3A42F;
  --red-dark:   #B38A1E;
  --gold:       #E8B84A;
  --sh-red:     0 8px 24px rgba(232,184,74,0.35);
}

/* ---- Body: dark surface with light text ---- */
body {
  background: var(--ink);
  color: var(--mute-3);
}
h1, h2, h3, h4, h5 { color: #fff; }
a { color: #fff; }
a:hover { color: var(--red); }
p { color: var(--mute-3); }

/* ---- Header: black bar, white type, gold hover ---- */
.header {
  background: var(--black);
  border-bottom: 1px solid var(--line-dark);
}
.header.is-scrolled {
  box-shadow: 0 6px 28px rgba(0,0,0,0.7);
  border-bottom-color: transparent;
}
.brand { color: #fff; }
.brand:hover { color: #fff; }
.nav-links a { color: #fff; }
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-phone { color: #fff; }
.nav-phone .icon { color: var(--red); }
.nav-toggle {
  color: #fff;
  border-color: var(--line-dark);
  background: transparent;
}
.nav-toggle:hover { background: var(--ink-2); }

/* Mobile open menu now on dark */
@media (max-width: 960px) {
  .nav.open .nav-links {
    background: var(--ink);
    border-bottom-color: var(--line-dark);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6);
  }
  .nav.open .nav-links a { border-bottom-color: var(--line-dark); color: #fff; }
}

/* ---- Hero: dark gradient, gold accents ---- */
.hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(232,184,74,0.10) 0%, transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(232,184,74,0.06) 0%, transparent 45%),
    var(--ink);
  color: var(--mute-3);
}
.hero::before {
  background: linear-gradient(135deg, var(--ink-2) 0%, transparent 100%);
  opacity: .6;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--red); }
.hero-sub { color: var(--mute-3); }
.hero-kicker { background: var(--red); color: var(--ink); }
.hero-kicker .dot {
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(10,10,10,0.35);
}
.hero-stats { border-top-color: var(--line-dark); }
.hero-stat-num { color: #fff; }
.hero-stat-num .red { color: var(--red); }
.hero-stat-label { color: var(--mute-3); }
.hero-photo-badge {
  background: var(--red);
  color: var(--ink);
}

/* Hero visual placeholder block */
.hero-visual { background: linear-gradient(155deg, var(--ink-3) 0%, var(--ink-2) 100%); }
.hero-visual::before {
  background:
    radial-gradient(circle at 30% 75%, rgba(232,184,74,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}
.hero-visual-badge { background: var(--red); color: var(--ink); }
.hero-visual-stripe span:nth-child(2) { color: var(--red); }

/* Page hero (inner pages) — already dark, re-tint radials to gold */
.page-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(232,184,74,0.12) 0%, transparent 45%),
    radial-gradient(circle at 78% 78%, rgba(232,184,74,0.08) 0%, transparent 45%),
    var(--ink);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: var(--mute-3); }
.page-hero .breadcrumb a { color: var(--mute-3); }
.page-hero .breadcrumb a:hover { color: var(--red); }

/* ---- Trust bar: dark strip with gold checks ---- */
.trust-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-bar-item { color: #fff; }
.trust-bar-item .check {
  background: var(--red);
  color: var(--ink);
}

/* ---- Default sections inherit body dark.
        Add a subtle alternating feel using nth-of-type on un-modified sections. ---- */
.section { color: var(--mute-3); }
.section h1, .section h2, .section h3, .section h4 { color: #fff; }
.section p { color: var(--mute-3); }
.section .eyebrow { color: var(--red); }
.section-head p { color: var(--mute-3); }

/* .section--paper was ink-2 — keep; .section--paper-2 was ink — keep.
   Those already read as dark variants. */
.section--paper   { background: var(--ink-2); color: var(--mute-3); }
.section--paper-2 { background: var(--ink);   color: var(--mute-3); }

/* Single explicit light island kept for rare use */
.section--snow { background: var(--paper); color: var(--ink); }
.section--snow h1, .section--snow h2, .section--snow h3, .section--snow h4 { color: var(--ink); }
.section--snow p { color: var(--mute); }
.section--snow .eyebrow { color: var(--red-dark); }

/* ---- Cards: all variants dark ---- */
.audience-card,
.program-card,
.pkg-card,
.value-card,
.feature-item,
.coach-card,
.testimonial,
.faq-item,
.price-block {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--mute-3);
}
.audience-card .audience-age,
.program-card h3,
.pkg-card h3,
.value-card h3,
.feature-item h3,
.coach-card h3, .coach-name,
.testimonial-name,
.faq-item summary { color: #fff; }
.audience-card .audience-desc,
.program-card p, .program-card li,
.pkg-card p, .pkg-card li,
.value-card p,
.feature-item p,
.coach-bio,
.testimonial-quote,
.testimonial-meta,
.faq-answer { color: var(--mute-3); }
.coach-title { color: var(--red); }
.coach-creds li { color: var(--mute-3); border-bottom-color: var(--line-dark); }

.audience-card:hover { border-color: var(--red); background: var(--ink-3); }
.program-card--featured { background: var(--ink-3); border-color: var(--red); }
.program-badge { background: var(--red); color: var(--ink); }
.program-tag { color: var(--red); }
.program-price { color: #fff; }
.program-price small { color: var(--mute-3); }

/* Price block on program pages */
.price-block { background: var(--ink-3); border-color: var(--line-dark); }
.price-block .eyebrow { color: var(--red); }
.price-big { color: #fff; }
.price-big small { color: var(--mute-3); }
.price-block p { color: var(--mute-3); }

/* Stats strip: dark bg with gold numbers */
.stats-strip { border-top-color: var(--line-dark); }
.stats-num { color: #fff; }
.stats-num .red { color: var(--red); }
.stats-label { color: var(--mute-3); }

/* How-it-works steps on dark */
.step h3 { color: #fff; }
.step p { color: var(--mute-3); }
.step .feature-icon {
  background: var(--ink-3);
  color: var(--red);
  border: 1px solid var(--line-dark);
}
.step:hover .feature-icon {
  background: var(--red);
  color: var(--ink);
  border-color: var(--red);
}
.step .feature-icon .icon { color: inherit; stroke: currentColor; }

/* ---- Buttons: gold CTAs use dark text ---- */
.btn--red {
  background: var(--red);
  color: var(--ink);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(232,184,74,0.25);
}
.btn--red:hover {
  background: var(--red-hover);
  color: var(--ink);
  border-color: var(--red-hover);
}
.btn--red::after {
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.3) 50%, transparent 65%);
}

/* Secondary button — was black text on dark, invert to gold outline */
.btn--black {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--black:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn--ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--white { background: var(--red); color: var(--ink); border-color: var(--red); }
.btn--white:hover { background: var(--red-hover); color: var(--ink); border-color: var(--red-hover); }

.btn--link { color: #fff; }
.btn--link:hover { color: var(--red); }

/* ---- Feature-icon circles (gold with dark glyph) ---- */
.feature-icon {
  background: var(--red);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(232,184,74,0.3);
}
.feature-icon .icon { color: var(--ink); stroke: var(--ink); }
.feature-item:hover .feature-icon {
  box-shadow: 0 8px 22px rgba(232,184,74,0.5);
}

/* ---- Checklist: gold check circle with dark mark ---- */
.checklist li {
  border-bottom-color: var(--line-dark);
  color: var(--mute-3);
}
.checklist li::before {
  background: var(--red);
  color: var(--ink);
}
.checklist li strong { color: #fff; }

/* ---- Schedule table: dark ---- */
.schedule {
  background: var(--ink-2);
  color: var(--mute-3);
  border-color: var(--line-dark);
}
.schedule th {
  background: var(--ink-3);
  color: #fff;
  border-bottom-color: var(--line-dark);
}
.schedule td {
  border-bottom-color: var(--line-dark);
}
.schedule .week-num,
.schedule td strong { color: #fff; }

/* ---- FAQ on dark ---- */
.faq-item {
  background: var(--ink-2);
  border-color: var(--line-dark);
}
.faq-item[open] { border-color: var(--red); }
.faq-item summary { color: #fff; }
.faq-item summary::after { color: var(--red); }
.faq-item .faq-answer { color: var(--mute-3); }
.faq-item a { color: var(--red); }

/* ---- Testimonials ---- */
.testimonial-stars { color: var(--gold); }
.testimonial-avatar {
  background: var(--red);
  color: var(--ink);
}
.testimonial--featured {
  background: var(--ink-3);
  color: #fff;
  border-color: var(--red);
}
.testimonial--featured::before { color: var(--red); }

/* ---- Forms (contact page) ---- */
.form input,
.form select,
.form textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select, textarea {
  background: var(--ink-2);
  color: #fff;
  border-color: var(--line-dark);
}
.form input::placeholder,
.form textarea::placeholder,
input::placeholder,
textarea::placeholder { color: var(--mute-2); }
.form label { color: #fff; }
.form input:focus, .form select:focus, .form textarea:focus,
input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,184,74,0.25);
  outline: none;
}

/* ---- CTA band (final section before footer) ---- */
.cta-band {
  background:
    radial-gradient(circle at 80% 20%, rgba(232,184,74,0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--ink) 0%, var(--black) 100%);
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--mute-3); }

/* ---- Sticky CTA / floating phone ---- */
.sticky-cta {
  background: var(--black);
  border-top-color: var(--line-dark);
  color: #fff;
}
.sticky-cta-copy strong { color: #fff; }
.sticky-cta-copy span { color: var(--mute-3); }

.float-call {
  background: var(--red);
  color: var(--ink);
}
.float-call:hover { color: var(--ink); }

/* Re-tint float-call pulse to gold */
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(232,184,74,0.35); }
  50%      { box-shadow: 0 8px 24px rgba(232,184,74,0.35), 0 0 0 12px rgba(232,184,74,0); }
}

/* ---- Divider (gold bar) ---- */
.divider-red { background: var(--red); }

/* ---- Video card on dark (already dark; tweak hover) ---- */
.video-card:hover { border-color: var(--red); }
.video-card h3 { color: #fff; }

/* ---- Photo-strip + photo-zoom keep their dark-friendly behaviour ---- */
.photo-zoom { background: var(--ink-2); }

/* ---- Brand mark (homepage top-left logo fallback) ---- */
.brand-mark { background: var(--red); color: var(--ink); }
.brand-mark::after { background: var(--ink); }
.brand-tag { color: var(--mute-3); }

/* ---- Social row / social icons on dark ---- */
.social-row a,
.social-icon { color: #fff; }
.social-icon { border-color: rgba(255,255,255,0.3); }
.social-icon:hover { color: var(--red); border-color: var(--red); }

/* ---- Edit-note: tone it down on dark ---- */
.edit-note {
  background: rgba(232,184,74,0.18);
  color: var(--red);
  border: 1px dashed var(--red);
}

/* ---- Footer — keep dark, ensure text contrast ---- */
.footer { background: var(--black); color: var(--mute-3); }
.footer-brand { color: #fff; }
.footer-about { color: var(--mute-3); }
.footer-col h4 { color: #fff; }
.footer-col ul li,
.footer-col ul a { color: var(--mute-3); }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom { color: var(--mute-2); border-top-color: var(--line-dark); }

/* ---- Selection: gold highlight ---- */
::selection { background: var(--red); color: var(--ink); }

/* Last mile: text on section--paper was already light, now confirm eyebrow is gold */
.section--paper .eyebrow,
.section--paper-2 .eyebrow { color: var(--red); }

/* ---- Surfaces that slipped past — more specific selectors ---- */

/* Step cards (How It Works) — were white, now dark */
.step {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--mute-3);
}
.step:hover { background: var(--ink-3); border-color: var(--red); }
.step::before { color: var(--red); opacity: .2; }

/* Contact form container */
.form {
  background: var(--ink-2);
  border-color: var(--line-dark);
}

/* Program tag pill — was light paper, now gold outline */
.program-tag {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
}

/* Program price — was near-black, now white */
.program-price { color: #fff; }
.program-price small { color: var(--mute-3); }
.program-features li { color: var(--mute-3); border-bottom-color: var(--line-dark); }
.program-card { box-shadow: none; }
.program-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.4); transform: translateY(-4px); }

/* Schedule table — override the stubborn "light section" selector */
.section--snow .schedule { background: var(--paper); color: var(--ink); border-color: var(--line); }
.section--snow .schedule th { background: var(--paper-2); color: var(--ink); }
.section:not(.section--snow) .schedule,
body .schedule {
  background: var(--ink-2);
  color: var(--mute-3);
  border: 1px solid var(--line-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.section:not(.section--snow) .schedule th,
body .schedule th {
  background: var(--ink-3);
  color: #fff;
  border-bottom-color: var(--line-dark);
}
.section:not(.section--snow) .schedule td,
body .schedule td {
  border-bottom-color: var(--line-dark);
  color: var(--mute-3);
}
.section:not(.section--snow) .schedule .week-num,
body .schedule .week-num { color: #fff; }

/* Any lingering light value-icon etc. — force dark */
.value-icon,
.audience-icon {
  background: var(--ink-3);
  color: var(--red);
  border: 1px solid var(--line-dark);
}

/* Hero photo (real image on homepage) — stays on its own; no override needed */

/* Breadcrumb separator color */
.breadcrumb span { color: var(--mute-2); }

/* Hero-photo badge */
.hero-photo-badge { background: var(--red); color: var(--ink); }

/* ---- Camp cards (camps.html) — the last white holdout ---- */
.camp-card {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--mute-3);
}
.camp-card h3, .camp-card .camp-title { color: #fff; }
.camp-card p, .camp-card li { color: var(--mute-3); }
.camp-card:hover { border-color: var(--red); background: var(--ink-3); }
.camp-date {
  background: var(--ink-3);
  color: var(--red);
  border: 1px solid var(--line-dark);
}
.camp-date strong,
.camp-date .camp-date-num { color: #fff; }
.camp-price { color: #fff; }
.camp-price small { color: var(--mute-3); }

/* ---- IMAGE DIMMING + ANIMATION ----
   Photos had too much luminance against the near-black surfaces. Apply a
   gentle brightness dip + slight desaturation, add an optional subtle
   vignette via box-shadow inset on the zoom wrapper. Also add a slow
   ken-burns drift so hero/feature photos subtly breathe.
*/
.photo-zoom {
  background: var(--black);
  position: relative;
}
.photo-zoom img {
  filter: brightness(0.78) saturate(0.95) contrast(1.02);
  transition: transform 1.5s var(--ease), filter .6s var(--ease);
}
.photo-zoom::after {
  /* subtle inner shadow for depth */
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.35);
  pointer-events: none;
  border-radius: inherit;
}
.photo-zoom:hover img {
  filter: brightness(0.92) saturate(1.05) contrast(1.02);
  transform: scale(1.07);
}

/* Ken-burns slow zoom/drift on hero & photo-strip images */
.hero-photo img,
.photo-strip .photo-zoom img,
.split-media img {
  animation: kenBurns 18s ease-in-out infinite alternate;
  filter: brightness(0.72) saturate(0.95) contrast(1.02);
}
.hero-photo:hover img,
.photo-strip .photo-zoom:hover img {
  filter: brightness(0.88) saturate(1.05) contrast(1.02);
}

/* Stagger starting positions so the strip doesn't animate in lockstep */
.photo-strip .photo-zoom:nth-child(1) img { animation-delay: -2s; }
.photo-strip .photo-zoom:nth-child(2) img { animation-delay: -7s; }
.photo-strip .photo-zoom:nth-child(3) img { animation-delay: -12s; }
.photo-strip .photo-zoom:nth-child(4) img { animation-delay: -4s; }

@keyframes kenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  50%  { transform: scale(1.08) translate(-1.2%, 1%); }
  100% { transform: scale(1.03) translate(1%, -0.8%); }
}

/* Coach photos: slower, less motion — they should feel like portraits */
.coach-photo img {
  animation: kenBurnsSlow 28s ease-in-out infinite alternate;
  filter: brightness(0.82) saturate(1) contrast(1.02);
}
@keyframes kenBurnsSlow {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.09); }
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero-photo img,
  .photo-strip .photo-zoom img,
  .split-media img,
  .coach-photo img {
    animation: none !important;
  }
}

/* Hero-photo card: darker frame, subtle inner glow */
.hero-photo {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo-badge { z-index: 2; }

/* Split-media (alternating photo/text blocks) — same treatment */
.split-media {
  background: var(--ink-2);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

/* Coach photo frame on dark */
.coach-photo {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
}

/* Add a subtle moving shine on hero photo on hover */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(232,184,74,0.08) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 1.4s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.hero-photo:hover::before { transform: translateX(100%); }
