/* ═══════════════════════════════════════════════════════════════════
   REAL MARIN SOCCER CLINIC — styles.css
   Design: Dark stadium / athletic — Navy #06090f · Gold #c8a032
   Fonts: Oswald (headings, condensed athletic) · DM Sans (body)
═══════════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  /* ── Light theme (clean / sunlit) — navy + gold accents on cream ── */
  --bg:         #f6f3eb;   /* cream page background */
  --bg-2:       #fffdf8;   /* paper / raised surfaces */
  --bg-3:       #ece6d9;   /* deeper paper-muted surface */
  --gold:       #a87f1e;   /* gold tuned darker for contrast on light */
  --gold-light: #c79a2c;
  --gold-ink:   #6f5512;   /* dark gold — readable on light/cream backgrounds (AA) */
  --gold-dim:   rgba(184,146,42,0.12);
  --gold-border:rgba(184,146,42,0.42);
  --white:      #0f2238;   /* primary text (navy) — semantic foreground */
  --muted:      #56657a;   /* secondary text */
  /* Dark accent bands (hero, marquee, CTA, footer, who) */
  --navy:       #0f2238;
  --navy-soft:  #1a3550;
  --text-on-dark: #f6f3eb;
  --text-on-dark-muted: rgba(246,243,235,0.78);
  --green:      #1a4731;
  --green-2:    #22603f;
  --error:      #d23b3b;
  --success:    #1e9e54;
  --radius:     8px;
  /* Condensed fallbacks so the title stays narrow even if the web font
     hasn't loaded yet — prevents flash-of-wide-text overflow on mobile. */
  --font-display: 'Oswald', 'Arial Narrow', 'Roboto Condensed', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --wrap:       min(1100px, 92vw);
  --transition: 0.22s ease;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* Hard guard: nothing can create a horizontal scrollbar on any device */
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.02;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.ui-icon {
  display: block;
  color: var(--gold);
  flex-shrink: 0;
}
.ui-icon--sm { opacity: 0.9; }
img {
  display: block;
  max-width: 100%;
  height: auto;
}
/* Full-bleed photo frames (hero / location / CTA band) */
.media-cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.media-cover img,
.hero-photo-bg img,
.location-photo__img,
.cta-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
address { font-style: normal; }

/* ── Skip link ──────────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  background: var(--gold); color: #000;
  padding: 0.5rem 1rem; border-radius: var(--radius); font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── Utility ────────────────────────────────────────────────────── */
.wrap { width: var(--wrap); margin-inline: auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.section-kicker {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 0.75rem;
}


/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-reveal="left"] { transform: translateX(-28px); }
.reveal[data-reveal="right"] { transform: translateX(28px); }
.reveal[data-reveal="left"].visible,
.reveal[data-reveal="right"].visible { transform: translateX(0); }
.reveal[data-reveal="scale"] { transform: scale(0.94); }
.reveal[data-reveal="scale"].visible { transform: scale(1); }

/* ── Header / Nav ───────────────────────────────────────────────── */
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: var(--wrap);
  margin-inline: auto;
  padding: 0.6rem 0;
}
.brand:hover { color: var(--white); opacity: 0.88; }
/* Official crest in nav (assets/crest.png) */
.brand__logo-img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
/* Wordmark (text only — no logo image) */
.brand__text-fallback {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.brand__text-fallback span:first-child {
  color: inherit;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.05;
}
.brand__text-fallback span:last-child {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--navy); background: rgba(255,255,255,0.06); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); color: #000; }
.nav-ig { display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-ig svg { flex-shrink: 0; }

/* Desktop "Training" dropdown (details/summary, mirrors .nav-toggle pattern) */
.nav-drop { position: relative; }
.nav-drop summary {
  list-style: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-drop summary::-webkit-details-marker { display: none; }
.nav-drop summary::after { content: '▾'; margin-left: 0.35em; font-size: 0.75em; }
.nav-drop summary:hover,
.nav-drop[open] summary { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-drop__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 13rem;
  background: #0c1626;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  z-index: 50;
}
.nav-drop__panel a {
  color: rgba(246, 243, 235, 0.82);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-drop__panel a:hover { color: var(--gold-light, #d4ad3f); background: rgba(255,255,255,0.06); }
.has-hero-photo .site-header:not(.site-header--scrolled) .nav-drop summary { color: rgba(15, 34, 56, 0.88); }
.has-hero-photo .site-header:not(.site-header--scrolled) .nav-drop summary:hover { color: var(--navy); }

/* Mobile toggle */
.nav-toggle { display: none; }
.nav-toggle summary { list-style: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle summary::-webkit-details-marker { display: none; }
.nav-toggle__bars { display: flex; flex-direction: column; gap: 5px; }
.nav-toggle__bars span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.2s; }
.nav-panel {
  /* Full-viewport overlay. Keep z-index ABOVE page content (hero/flyers
     create stacking via transform/.reveal). Header must not be position:static
     or its z-index is ignored and this panel paints under siblings. */
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  background: #0b1726;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-toggle[open] .nav-panel { display: flex; }
/* When the menu is open, lift the hamburger above the panel so it can close it,
   and make its bars light so they read on the navy panel. */
.nav-toggle[open] summary { position: relative; z-index: 10001; }
.nav-toggle[open] .nav-toggle__bars span { background: #f6f3eb; }
/* Turn the bars into an X while open (clear close affordance) */
.nav-toggle[open] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[open] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[open] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Lock page scroll while mobile menu is open */
body:has(.nav-toggle[open]) {
  overflow: hidden;
  touch-action: none;
}
.nav-panel a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #f6f3eb;              /* cream — readable on the navy panel */
  letter-spacing: 0.04em;
}
.nav-panel a:hover { color: var(--gold-light, #d4ad3f); }
.nav-panel a.nav-panel__cta {
  background: var(--gold);
  color: #0b1726;
  font-weight: 900;
  padding: 0.7rem 2.4rem;
  border-radius: 999px;
}




.hero-circle {
  position: absolute;
  top: 50%; left: 50%;
  width: 220px; height: 220px;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
}






.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.hero-title span {
  display: block;
  color: var(--gold);
  font-style: italic;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-tagline em { color: var(--gold); font-style: normal; }


/* ── SECTIONS GENERAL ───────────────────────────────────────────── */
section { padding: 5rem 0; }
section + section { border-top: 1px solid rgba(15,34,56,0.06); }

/* ── PROGRAM PILLARS ─────────────────────────────────────────────── */
.pillars-head { margin-bottom: 3rem; }









/* ── SCHEDULE ────────────────────────────────────────────────────── */
.schedule-section { background: var(--bg); }
.schedule-head { margin-bottom: 3rem; }

/* Choose Your Training — clickable navy-rail cards (fluid mobile-first) */
.fit-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 2vw, 0.9rem);
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
}
.fit-card {
  --fit-rail: clamp(96px, 32vw, 148px);
  --fit-icon: clamp(72px, 26vw, 118px);
  display: grid;
  grid-template-columns: var(--fit-rail) minmax(0, 1fr) clamp(20px, 6vw, 28px);
  align-items: center;
  gap: 0 clamp(0.28rem, 1.6vw, 0.55rem);
  min-height: max(88px, calc(var(--fit-icon) + 0.5rem));
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 clamp(0.45rem, 2vw, 0.85rem) 0 0;
  background: var(--bg-2);
  border: 1.5px solid var(--gold);
  border-radius: clamp(10px, 2.5vw, 14px);
  box-shadow: 0 8px 22px rgba(15, 34, 56, 0.07);
  text-decoration: none;
  color: var(--navy);
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(168, 127, 30, 0.18);
  touch-action: manipulation;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.fit-card:link,
.fit-card:visited {
  color: var(--navy);
  text-decoration: none;
}
/* Hover/focus only after reveal, so transform doesn't fight .reveal */
.fit-card.visible:hover,
.fit-card.visible:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 34, 56, 0.13);
  border-color: var(--gold-light);
  background: #fffef9;
}
.fit-card.visible:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(15, 34, 56, 0.1);
}
.fit-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.fit-card__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  background: var(--navy);
  color: var(--gold-light);
  clip-path: polygon(0 0, 94% 0, 80% 100%, 0 100%);
  padding: 0.2rem clamp(0.85rem, 3.5vw, 1.5rem) 0.2rem 0.12rem;
  pointer-events: none;
  min-width: 0;
  transition: background-color 0.18s ease;
}
.fit-card.visible:hover .fit-card__rail,
.fit-card.visible:focus-visible .fit-card__rail {
  background: #0c1c30;
  color: var(--gold);
}
.fit-card__icon {
  width: var(--fit-icon);
  height: var(--fit-icon);
  max-width: 100%;
  max-height: 92%;
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  flex-shrink: 1;
}
.fit-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  padding: clamp(0.55rem, 2.2vw, 0.9rem) 0;
  pointer-events: none;
}
/* Choose Your Training — same Oswald as brand (REAL MARIN) */
.schedule-section .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.schedule-section .schedule-head {
  margin-bottom: clamp(1.5rem, 5vw, 3rem);
  max-width: 100%;
}
.schedule-section .section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 9.5vw, 3.9rem);
  line-height: 0.95;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.schedule-section .section-kicker {
  font-size: clamp(0.95rem, 3.4vw, 1.05rem);
  max-width: 36rem;
}
.fit-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 4.8vw, 1.45rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.fit-card__meta {
  display: block;
  margin-top: 0.08rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.7rem, 3vw, 0.92rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
}
.fit-card__sub {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 3.2vw, 0.92rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--muted);
}
.fit-card__chev {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  pointer-events: none;
  transition: transform 0.18s ease, color 0.18s ease;
}
.fit-card__chev svg {
  width: clamp(14px, 4vw, 18px);
  height: clamp(14px, 4vw, 18px);
}
.fit-card.visible:hover .fit-card__chev,
.fit-card.visible:focus-visible .fit-card__chev {
  transform: translateX(3px);
  color: var(--gold-light);
}
#private-training,
#partner-training,
#small-group-training,
#team-training,
#special-events {
  scroll-margin-top: 1.25rem;
}

/* Narrow phones (iPhone SE / 320–359) */
@media (max-width: 359px) {
  .fit-card {
    --fit-rail: 88px;
    --fit-icon: 68px;
    min-height: 84px;
  }
  .fit-card__title { font-size: 1.02rem; letter-spacing: 0.02em; }
  .fit-card__sub { font-size: 0.78rem; }
  .schedule-section .section-title { font-size: clamp(1.85rem, 11vw, 2.35rem); }
}

/* Standard phones (360–389) */
@media (min-width: 360px) and (max-width: 389px) {
  .fit-card {
    --fit-rail: 102px;
    --fit-icon: 82px;
  }
}

/* Large phones (390–479) — iPhone 14/15 class */
@media (min-width: 390px) and (max-width: 479px) {
  .fit-card {
    --fit-rail: 118px;
    --fit-icon: 96px;
  }
}

/* Phablet / small tablet */
@media (min-width: 480px) and (max-width: 719px) {
  .fit-card {
    --fit-rail: 132px;
    --fit-icon: 108px;
    min-height: 112px;
  }
}

/* Prefer reduced motion: no lift jump */
@media (prefers-reduced-motion: reduce) {
  .fit-card.visible:hover,
  .fit-card.visible:focus-visible,
  .fit-card.visible:active {
    transform: none;
  }
  .fit-card.visible:hover .fit-card__chev,
  .fit-card.visible:focus-visible .fit-card__chev {
    transform: none;
  }
}

/* Touch devices: keep press feedback, skip hover lift flicker */
@media (hover: none) {
  .fit-card.visible:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(15, 34, 56, 0.07);
    background: var(--bg-2);
  }
  .fit-card.visible:active {
    background: #fffef9;
    box-shadow: 0 6px 16px rgba(15, 34, 56, 0.1);
  }
}




















/* ── PRICING ─────────────────────────────────────────────────────── */
.pricing-section { background: var(--bg-2); }
.price-card {
  background: var(--bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.price-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200,160,50,0.06) 0%, var(--bg) 60%);
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.price-card__emoji { font-size: 1em; margin-right: 0.4rem; }
.price-card__desc {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 1.35rem;
}
.price-card__best {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold-border);
}
.price-card__best strong { color: var(--gold-ink); font-weight: 700; }


/* ── COACH ADILSON section ──────────────────────────────────────── */
.coachpro-section {
  background: linear-gradient(180deg, #0b1726 0%, #0f2238 100%);
  color: var(--bg-2);
  padding: clamp(3rem, 8vw, 5rem) 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
/* Coach section — photo + embedded information graphic (exact client design).
   (Old recreated-text coach styles removed — the section now uses two images.) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.coachpro-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}
.coachpro-photo2 {
  margin: 0;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--gold-border);
  background: #0a1422;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}
.coachpro-photo2 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coachpro-info-link {
  display: block;
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.coachpro-info-link:hover { transform: translateY(-3px); }
.coachpro-info {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1.5px solid var(--gold-border);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}
.coachpro-info-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font: 700 0.72rem/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy, #0f2238);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  pointer-events: none;
}












.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.price-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a032' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ── LOCATION ────────────────────────────────────────────────────── */
.location-section { background: var(--bg); }
.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.location-address {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}




/* Location photo — real turf (16:9) */
.location-photo {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  /* El asset está en torno a 16:9. 16/10 forzaba un crop más raro. */
  aspect-ratio: 16 / 9;
  border: 1px solid var(--gold-border);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  background: var(--bg-3);
}
.location-photo__img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.location-photo:hover .location-photo__img {
  transform: scale(1.03);
}



























form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 1.75rem;
}
form legend {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-border);
  width: 100%;
}
form label {
  display: block;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.35rem;
  margin-top: 1rem;
}
form label:first-of-type { margin-top: 0; }
form label span[aria-label="required"] { color: var(--gold); margin-left: 2px; }
form input,
form select,
form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid rgba(15,34,56,0.18);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: var(--font-body);
  /* 16px min: prevents iOS Safari auto-zoom on focus */
  font-size: 1rem;
  /* vertical padding keeps the field ≥44px tall (touch target) */
  padding: 0.7rem 0.9rem;
  min-height: 44px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200,160,50,0.12);
}
form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238492a6' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
form select option { background: var(--bg-2); color: var(--navy); }
form textarea { min-height: 80px; resize: vertical; }
.form-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(200,160,50,0.05);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.form-checkbox-wrap input[type="checkbox"] {
  /* Restore the native checkbox — the global "form input { appearance:none }"
     was stripping the box so the check never showed (looked unselectable). */
  -webkit-appearance: checkbox;
  appearance: auto;
  width: 22px;
  height: 22px;
  min-height: 0; /* opt out of the 44px field min-height */
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  flex-shrink: 0;
  accent-color: var(--gold);
  margin-top: 1px;
  cursor: pointer;
}
.form-checkbox-wrap label {
  cursor: pointer;
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
}
.form-checkbox-wrap label a { color: var(--gold); }
.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}
.form-error {
  color: var(--error);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}
.success-panel {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}
.success-panel a { color: var(--gold); }
.success-panel.visible { display: block; }

/* ── CONTACT SECTION ─────────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-decoration: none;
  min-width: 0;
}
.contact-icon {
  width: clamp(48px, 13vw, 56px);
  height: clamp(48px, 13vw, 56px);
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { stroke: currentColor; }
.contact-row__text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-row__text strong {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(1.15rem, 4vw, 1.5rem);
  line-height: 1.1;
}
.contact-row__text small { color: var(--muted); font-size: 0.9rem; }
.contact-row__text strong.contact-row__email {
  font-size: clamp(0.95rem, 3.4vw, 1.25rem);
  word-break: break-word;
}
.contact-row:hover .contact-row__text strong { color: var(--gold); }
.contact-row:hover .contact-icon { background: var(--gold); color: var(--navy); }
.contact-row--phone { cursor: default; }
.contact-row--phone:hover .contact-row__text strong { color: var(--navy); }
.contact-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.55rem;
  width: 100%;
  max-width: 22rem;
}
.contact-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1 1 calc(50% - 0.3rem);
  min-height: 48px;
  min-width: 7rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid var(--gold);
  background: var(--bg-2);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 34, 56, 0.06);
  -webkit-tap-highlight-color: rgba(168, 127, 30, 0.2);
  touch-action: manipulation;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-phone-btn__ico {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}
.contact-phone-btn:hover,
.contact-phone-btn:focus-visible {
  background: var(--gold-dim);
  color: var(--navy);
  outline: none;
}
.contact-phone-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(168, 127, 30, 0.35);
}
.contact-phone-btn:active {
  transform: scale(0.97);
}
.contact-phone-btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c1c30;
  box-shadow: 0 6px 16px rgba(168, 127, 30, 0.28);
}
.contact-phone-btn--primary:hover,
.contact-phone-btn--primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0c1c30;
}
@media (prefers-reduced-motion: reduce) {
  .contact-phone-btn,
  .contact-phone-btn:active { transition: none; transform: none; }
}
.contact-note {
  margin-top: 2.25rem;
  padding: clamp(1.25rem, 4vw, 1.75rem);
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: 14px;
  max-width: 620px;
}
.contact-note__people { margin: 0 0 0.6rem; color: var(--navy); font-size: clamp(0.95rem, 2.6vw, 1.05rem); }
.contact-note__people strong { color: var(--navy); font-weight: 700; }
.contact-note__people span { color: var(--gold); font-weight: 700; }
.contact-note__sub { margin: 0; color: var(--muted); font-size: clamp(0.92rem, 2.5vw, 1rem); line-height: 1.5; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--muted); font-size: 0.8rem; }

/* ═══════════════════════
   PAY PAGE
═══════════════════════ */
.pay-hero {
  position: relative;
  background: var(--bg-2);
  border-bottom: 1px solid var(--gold-border);
  padding: 4rem 0 3rem;
}
.pay-hero__inner { position: relative; z-index: 2; }
.pay-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}
.pay-hero__back:hover { color: var(--gold); }
.pay-hero__back svg { stroke: currentColor; }
.pay-hero__badge {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.pay-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pay-hero__sub {
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 1.25rem;
}
.pay-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.83rem;
  color: var(--muted);
}

/* Process steps */
.pay-process { padding: 2rem 0; background: var(--bg); border-bottom: 1px solid rgba(255,255,255,0.06); }
.pay-process__steps {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  width: var(--wrap);
  margin-inline: auto;
  flex-wrap: wrap;
}
.pay-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}
.pay-process__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}
.pay-process__step--done .pay-process__num { background: rgba(34,197,94,0.15); border-color: rgba(34,197,94,0.5); color: var(--success); }
.pay-process__step--active .pay-process__num { background: var(--gold); border-color: var(--gold); color: #000; }
.pay-process__label { font-size: 0.78rem; color: var(--muted); font-weight: 500; text-align: center; }
.pay-process__connector { flex: 1; height: 2px; background: rgba(255,255,255,0.06); max-width: 80px; }

/* Amount selector */
.pay-amount-selector { padding: 2.5rem 0; background: var(--bg-2); border-bottom: 1px solid rgba(255,255,255,0.06); }

.pay-amount-selector__label { font-weight: 600; color: var(--white); margin-bottom: 1rem; }
.pay-amount-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.pay-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--bg);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  min-width: 160px;
}
.pay-chip:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.pay-chip__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.pay-chip__desc {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.pay-amount-selector__note {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pay-amount-selector__note svg { stroke: var(--muted); flex-shrink: 0; }

/* Pay cards */
.pay-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.pay-section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.pay-section-sub { color: var(--muted); font-size: 0.9rem; }
.pay-method-card {
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.pay-method-card:hover { border-color: rgba(200,160,50,0.5); }
.pay-method-card__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.pay-method-card__brand--zelle { background: #6d1ed4; }
.pay-method-card__brand--venmo { background: #3d95ce; }
.pay-method-card__body { padding: 1.5rem; }
.pay-method-card__field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}
.pay-method-card__field:last-child { border-bottom: none; }
.pay-method-card__field-label { font-size: 0.82rem; color: var(--muted); }
.pay-method-card__field-value { font-weight: 600; color: var(--white); font-size: 0.95rem; }
.pay-selected-amount { color: var(--gold); font-size: 1.1rem; }
.pay-method-card__actions {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pay-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.pay-copy-btn:hover { background: var(--gold); color: #000; }
.pay-copy-btn svg { stroke: currentColor; }
.pay-venmo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(61,149,206,0.15);
  border: 1px solid rgba(61,149,206,0.3);
  color: #7ec3e8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  transition: background var(--transition);
}
.pay-venmo-btn:hover { background: rgba(61,149,206,0.3); color: #fff; }
.pay-method-card__hint { font-size: 0.78rem; color: var(--muted); }
.pay-memo-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.pay-memo-tip strong { color: var(--white); }
.pay-memo-tip__icon { font-size: 1.2rem; flex-shrink: 0; }
.pay-receipt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.pay-receipt__step {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.pay-receipt__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.pay-receipt__body { color: var(--muted); font-size: 0.88rem; max-width: 360px; }
.pay-receipt .pay-receipt__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: #000;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition), transform 0.15s;
}
.pay-receipt__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.pay-receipt__cta-icon { font-size: 1.5rem; }

.pay-receipt__cta-text strong { display: block; font-weight: 700; font-size: 0.95rem; }
.pay-receipt__cta-text small { font-size: 0.78rem; opacity: 0.7; }
.pay-footnote { color: var(--muted); font-size: 0.88rem; }
.pay-footnote a { color: var(--gold); }

/* ═══════════════════════
   WAIVER PAGE
═══════════════════════ */
.waiver-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--gold-border);
  padding: 4rem 0 3rem;
}
.waiver-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.waiver-hero__sub { color: var(--muted); max-width: 520px; }

.waiver-section { padding: 3rem 0; }
.waiver-body {
  max-width: 720px;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
}
.waiver-body h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.waiver-body h2:first-child { margin-top: 0; }
.waiver-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.waiver-body ul {
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.waiver-body ul li { margin-bottom: 0.25rem; }
.waiver-body strong { color: var(--white); }

/* Waiver form layout + shared field label (replaces repeated inline styles) */
.waiver-row { margin-top: 1.25rem; }
.waiver-row--lg { margin-top: 1.5rem; }
.waiver-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .waiver-two-col { grid-template-columns: 1fr; }
}
.waiver-label {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.4rem;
}
.waiver-signature-form {
  max-width: 720px;
  background: var(--bg-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
}
.waiver-signature-form h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-border);
}




.waiver-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  margin-top: 1rem;
}
.waiver-print-btn:hover { background: var(--gold); color: #000; }

/* ── Signature pad (drawn signature) ────────────────────────────── */
.sig-clear {
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font: 600 0.78rem/1 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.sig-clear:hover { background: var(--gold); color: #000; }
.sig-pad-wrap { position: relative; }
.sig-pad {
  display: block;
  width: 100%;
  height: 170px;
  background: #fffdf8;
  border: 1.5px solid var(--gold-border);
  border-radius: 12px;
  touch-action: none;          /* let the canvas capture finger drags */
  cursor: crosshair;
}
.sig-pad-baseline {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 26px;
  color: rgba(15, 34, 56, 0.32);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

/* ── Photo / Video permission (Yes / No) ────────────────────────── */
.photo-perm { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.photo-perm label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1 1 0;
  min-width: 140px;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gold-border);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-2);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.photo-perm label:hover { border-color: var(--gold); }
.photo-perm input[type="radio"] {
  -webkit-appearance: radio;
  appearance: auto;
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
}
.photo-perm input[type="radio"]:checked + span { color: var(--gold); }

/* ── Contact slab (shared) ──────────────────────────────────────── */
.contact-slab {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-border);
  padding: 3rem 0;
}
.contact-slab .wrap > h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  
  .location-card { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pay-methods-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  

  .pay-receipt { flex-direction: column; }
  .pay-chip { min-width: 130px; }
  .waiver-body, .waiver-signature-form { padding: 1.5rem; }
  
  /* hero--photo: see HERO — PHOTO block at end of file */
}

@media (max-width: 480px) {
  
  
  .pay-process__steps { gap: 0; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROFESSIONAL UPGRADE ADDITIONS
═══════════════════════════════════════════════════════════════════ */

/* ── Hero: ready for a real background photo ─────────────────────
   When Bruno adds a photo, just set --hero-img in the HTML style attr.
   Example: <section class="hero" style="--hero-img:url('assets/hero.jpg')">
────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  --hero-img: none;
}
.hero:not(.hero--photo)::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    var(--hero-img, none) center/cover no-repeat,
    linear-gradient(160deg, rgba(6,9,15,0.88) 0%, rgba(6,9,15,0.72) 40%, rgba(6,9,15,0.80) 100%);
  z-index: 1;
  pointer-events: none;
}
/* When a real photo is provided, the overlay darkens it and the content stays on top (z-index:2) */
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  padding: 6rem 0 5rem;
}
/* Hero entrance animation */
/* ── MARQUEE / CREDIBILITY STRIP ─────────────────────────────────
   A scrolling strip of key facts right after the hero.
   More engaging than a static banner.
────────────────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000;
  padding: 0 2.3rem;
}
.marquee-diamond {
  color: rgba(0,0,0,0.45);
  font-size: 0.65rem;
  line-height: 1;
}

/* ── TRUST / WHY REAL MARIN SECTION ─────────────────────────────
   Reason to believe — builds confidence for California parents.
────────────────────────────────────────────────────────────────── */
.trust-head { margin-bottom: 3rem; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}















/* ── CTA MID-PAGE BAND ───────────────────────────────────────────
   Breaks the page flow and captures attention before the fold.
────────────────────────────────────────────────────────────────── */
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.26;
  filter: saturate(0.8) brightness(0.7);
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band__inner {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
}
.cta-band .cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #050811;
}
.cta-band .cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #050811;
}






















@media (max-width: 760px) {
  .coaches-grid { grid-template-columns: 1fr; }
}





/* ── PULSE ANIMATION (for register CTA) ──────────────────────────
   Subtle attention-getter on the main CTA.
────────────────────────────────────────────────────────────────── */
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,160,50,0.0); }
  50%      { box-shadow: 0 0 0 10px rgba(200,160,50,0.0); }
}
.cta--pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.cta--pulse:hover { animation: none; }





















/* ── IMPROVED HERO LINE ANIMATION ─────────────────────────────── */
@keyframes fieldLineGrow {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
.footer-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 3rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-contact-block {
  text-align: right;
}
.footer-contact-block p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.footer-contact-block a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer-contact-block a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact-block { text-align: left; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   FLYER-MATCHING REDESIGN OVERRIDES
   Replaces hero, logo, and adds "Who It's For" section
═══════════════════════════════════════════════════════════════════ */

/* ── Logo in nav ─────────────────────────────────────────────────
   Brand uses real logo image. Falls back to text if not loaded.
────────────────────────────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1.1;
  padding: 0.2rem 0;
}
/* ── "WHO IT'S FOR" SECTION ──────────────────────────────────────
   Dark navy banner section — directly from the flyer design.
────────────────────────────────────────────────────────────────── */







/* ── IMPROVED CTA BUTTONS ────────────────────────────────────────
   Override the previous .cta colors to be sharper.
────────────────────────────────────────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.9rem 2.25rem;
  background: var(--gold);
  color: #050811;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s;
  border-color: var(--gold);
}
.cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #050811;
  transform: translateY(-1px);
}
.cta:active { transform: translateY(0); }
/* Text uses --gold-ink (6.35:1 on cream), not --gold (3.31:1, fails AA).
   Border stays --gold — 3:1+ is enough for a non-text UI component. */
.cta--secondary {
  background: transparent;
  color: var(--gold-ink);
  border-color: var(--gold);
}
.cta--secondary:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-ink); }

/* ── HERO SCROLL INDICATOR ───────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero-scroll__arrow {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}
@keyframes scrollBounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}






/* ═══════════════════════════════════════════════════════════════════
   ROYAL NAVY + GOLD — flyer-faithful ornamental layer (IMAGEN NUEVA)
   Hero title · gold frames · pillar icon strip · 4-up pricing
═══════════════════════════════════════════════════════════════════ */

/* ── EYEBROW — gold diamond + rule ornament (flyer dividers) ─────── */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  margin-bottom: 0.5rem;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '◆';
  font-size: 0.55em;
  line-height: 1;
  opacity: 0.95;
}
.eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* ── GOLD FRAME — double-line ornamental border ─────────────────── */
.gold-frame {
  position: relative;
  border: 1px solid var(--gold);
}
.gold-frame::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200, 160, 50, 0.30);
  pointer-events: none;
  z-index: 1;
}











/* ── PRICING — four flyer plans, framed + badged ─────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 720px;
  margin-inline: auto;
}
.pricing-grid .price-card {
  display: flex;
  flex-direction: column;
  padding: 1.7rem 1.5rem;
}
.price-card__type {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0c1c30;
  font-weight: 700;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.price-card__type::before {
  content: '◆';
  font-size: 0.6em;
  color: #0c1c30;
}
.pricing-grid .price-card__name { font-size: 1.3rem; }

.pricing-grid .price-card .cta {
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}
/* Very small phones: stack the deal box under the program details */
@media (max-width: 430px) {
  .pricing-grid .price-card { grid-template-columns: 1fr; gap: 1rem; }
}
/* Training options grid (5 cards, no deal box): widen to 2 columns on tablet+ */
#training .pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
}
#training .pricing-grid .price-card { display: block; }
@media (max-width: 720px) {
  #training .pricing-grid { grid-template-columns: 1fr; }
}

/* Special Events — evergreen card (matches flyer mock) */
#training .pricing-grid .price-card--events {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
  max-width: 28rem;
  margin-inline: auto;
  width: 100%;
}
.events-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.events-head__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}
.events-head__text { min-width: 0; }
.price-card--events .price-card__name {
  margin-bottom: 0.35rem;
  line-height: 1.05;
}
.events-head__rule {
  display: block;
  width: 2.75rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.price-card--events .price-card__desc {
  margin-bottom: 1.15rem;
}
.price-card--events .price-features {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gold);
}
.price-card--events .price-features li {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.price-card--events .price-features li::before {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2238' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 62%;
  background-position: center;
  background-repeat: no-repeat;
}
.price-card--events .cta {
  margin-top: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION POLISH — "Why choose us" plaques + CTA banner
   Elevates the flat dark sections to championship-program quality.
═══════════════════════════════════════════════════════════════════ */

/* ── TRUST CARDS — gold-medallion credential plaques ─────────────── */
.trust-section { background: var(--bg); padding: clamp(4rem, 8vw, 6.5rem) 0; }

.trust-card {
  position: relative;
  padding: 2.5rem 2rem 2.25rem;
  background: radial-gradient(130% 100% at 0% 0%, rgba(200, 160, 50, 0.07), transparent 55%),
    linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s, box-shadow 0.45s;
}
/* Gold accent bar draws in across the top on hover */
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(15,34,56,0.12);
}
.trust-card:hover::before { transform: scaleX(1); }

/* Substantial gold medallion (matches the pillar icon rings) */
.trust-card__icon {
  width: 62px;
  height: 62px;
  background: radial-gradient(circle at 50% 38%, rgba(200, 160, 50, 0.24), var(--gold-dim));
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 0 4px rgba(200, 160, 50, 0.08), 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.trust-card:hover .trust-card__icon { transform: translateY(-2px) scale(1.05); }
.trust-card__icon .ui-icon { width: 28px; height: 28px; }

/* Jersey-style outlined index number */
.trust-card__number {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.9;
  color: rgba(200, 160, 50, 0.07);
  position: absolute;
  top: 1.4rem;
  right: 1.5rem;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  -webkit-text-stroke: 1px rgba(200, 160, 50, 0.20);
}

/* Title with a gold underline tick */
.trust-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.9rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.trust-card__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 34px; height: 2px;
  background: var(--gold);
}
.trust-card__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ── CTA BANNER — framed honor-board panel over the field photo ──── */
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(75% 120% at 82% 8%, rgba(200, 160, 50, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(8, 16, 28, 0.84), rgba(8, 16, 28, 0.92));
  pointer-events: none;
}

/* The inner content becomes a gold-framed panel */
.cta-band__inner.gold-frame {
  border-color: var(--gold);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.5rem, 4vw, 3rem);
  background: rgba(10, 20, 34, 0.55);
}
.cta-band__inner.gold-frame::after {
  inset: 7px;
  border-color: rgba(200, 160, 50, 0.38);
}

/* Eyebrow flanked by gold rules, centered */
.cta-band__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-band__eyebrow::before,
.cta-band__eyebrow::after {
  content: '';
  width: clamp(20px, 6vw, 46px);
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

@media (max-width: 560px) {
  .trust-card { padding: 2rem 1.5rem; }
  .trust-card__number { font-size: 2.8rem; }
}

/* Secondary CTA inside the dark navy band → light/gold text */
.cta-band .cta--secondary {
  background: transparent;
  border-color: rgba(246, 243, 235, 0.45);
  color: var(--gold-light);
}
.cta-band .cta--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold-light);
}


/* ═══════════════════════════════════════════════════════════════════
   REGISTRATION WIZARD — register.html (multi-step)
═══════════════════════════════════════════════════════════════════ */

/* Hero */
.reg-hero__inner { position: relative; }
.reg-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.reg-hero__back:hover { color: var(--gold); }
.reg-hero__back svg { stroke: currentColor; }
.reg-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.reg-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.reg-hero__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 60ch;
}

/* Section + container */
.reg-section { background: var(--bg-2); padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(4rem, 8vw, 6rem); }
.reg-wrap { width: min(640px, 92vw); margin-inline: auto; }

/* Step indicator */
.reg-steps {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.reg-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.reg-step__dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--muted);
  background: var(--bg);
  border: 2px solid var(--gold-border);
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s;
}
.reg-step__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.35s;
}
.reg-step.is-done .reg-step__dot {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
.reg-step.is-active .reg-step__dot {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c1c30;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(200, 160, 50, 0.3);
}
.reg-step.is-active .reg-step__label,
.reg-step.is-done .reg-step__label { color: var(--white); }

/* Progress bar */
.reg-progress {
  height: 5px;
  border-radius: 999px;
  background: rgba(200, 160, 50, 0.12);
  overflow: hidden;
  margin-bottom: 2.25rem;
}
.reg-progress__bar {
  height: 100%;
  width: 33.333%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Form panels */
.reg-form {
  background: var(--bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.reg-panel { margin-bottom: 0; }
.reg-panel.is-active { animation: regFade 0.4s ease both; }
@keyframes regFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.reg-panel__step {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.reg-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.reg-panel__hint {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

/* Step navigation buttons */
.reg-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.reg-nav--single { justify-content: flex-end; }
.reg-nav .cta { flex: 0 0 auto; }
.reg-nav .reg-back { min-width: 96px; }

.reg-foot-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}
.reg-foot-note a { color: var(--gold); font-weight: 600; }

/* Success */
.reg-success {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.reg-success strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.reg-success p { color: var(--muted); max-width: 46ch; margin-inline: auto; }
.reg-success__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  margin-bottom: 1rem;
}

@media (max-width: 420px) {
  .reg-step__label { font-size: 0.68rem; }
  .reg-step__dot { width: 34px; height: 34px; font-size: 0.95rem; }
  .reg-nav .reg-back { min-width: 0; }
}







/* ═══════════════════════════════════════════════════════════════════
   LIGHT THEME — clean/sunlit body + dark navy accent bands
   Layout unchanged; this block only repaints colors.
═══════════════════════════════════════════════════════════════════ */

/* ── HEADER: default (light pages) ──────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
  border-bottom-color: rgba(15, 34, 56, 0.10);
  box-shadow: 0 4px 22px rgba(15, 34, 56, 0.05);
}
.brand, .brand__text-fallback span:first-child { color: var(--navy); }

/* ── HEADER over the dark photo hero (index) ────────────────────── */
/* Keep sticky + z-index (not static): backdrop-filter traps position:fixed
   menu children inside the header; if header is static, z-index is ignored
   and hero/coach flyers paint ON TOP of the open menu. */
.has-hero-photo .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 253, 248, 0.98);
  border-bottom-color: rgba(15, 34, 56, 0.10);
  box-shadow: 0 4px 22px rgba(15, 34, 56, 0.05);
  transition: background-color .45s cubic-bezier(.22,1,.36,1), border-color .45s, box-shadow .45s;
}
.has-hero-photo .site-header:has(.nav-toggle[open]) {
  z-index: 10000;
}
.has-hero-photo .site-header::before { display: none; }
.has-hero-photo .site-header--scrolled {
  background-color: rgba(255, 253, 248, 0.97);
  border-bottom-color: rgba(15, 34, 56, 0.08);
  box-shadow: 0 4px 28px rgba(15, 34, 56, 0.08);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.has-hero-photo .site-header--scrolled::before { opacity: 0; }
.has-hero-photo .site-header:not(.site-header--scrolled) .brand,
.has-hero-photo .site-header:not(.site-header--scrolled) .brand__line--main {
  color: var(--navy);
  text-shadow: 0 0 16px rgba(246, 243, 235, 0.8), 0 0 6px rgba(246, 243, 235, 0.6);
}
.has-hero-photo .site-header:not(.site-header--scrolled) .brand__line--sub { color: var(--gold); }
.has-hero-photo .site-header:not(.site-header--scrolled) .nav-links a:not(.nav-cta) { color: rgba(15, 34, 56, 0.88); }
.has-hero-photo .site-header:not(.site-header--scrolled) .nav-links a:not(.nav-cta):hover { color: var(--navy); }
.has-hero-photo .site-header:not(.site-header--scrolled) .nav-toggle:not([open]) .nav-toggle__bars span { background: var(--navy); }
.hero-scroll, .hero-scroll span { color: var(--text-on-dark-muted); }

/* ── MARQUEE (gold band): dark text for contrast ────────────────── */
.marquee-item, .marquee-diamond { color: var(--navy); }
.marquee-sep {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgba(15,34,56,0.3);
  border-radius: 50%;
  vertical-align: middle;
  flex-shrink: 0;
}

form input::placeholder, form textarea::placeholder { color: rgba(86,101,122,0.7); }

.trust-card, .price-card, .location-card, .reg-form { box-shadow: 0 8px 24px rgba(15,34,56,0.06); }
.price-card--featured.gold-frame { box-shadow: 0 0 0 1px var(--gold), 0 18px 40px rgba(15,34,56,0.13); }

/* ── CTA BAND: stays dark (photo + scrim) ───────────────────────── */
.cta-band {
  position: relative;
  padding: clamp(4rem, 9vw, 6rem) 0;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.cta-band__sub {
  font-size: 1rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-inline: auto;
}

.who-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--gold-light);
}

/* ── FOOTER: navy ───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--gold-border);
  padding: 2rem 0;
  border-top-color: var(--navy-soft);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  margin-bottom: 0.35rem;
}
.footer-brand-tagline, .footer-copy,
.footer-contact-block p, .footer-contact-block small { color: var(--text-on-dark-muted); }
.footer-links a, .footer-contact-block a { color: var(--text-on-dark); }
.footer-links a:hover, .footer-contact-block a:hover { color: var(--gold-light); }

/* ── Register wizard hero / page heroes: light ──────────────────── */
.reg-hero {
  background: radial-gradient(80% 130% at 85% 0%, rgba(184,146,42,0.10), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--gold-border);
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  border-bottom-color: rgba(15,34,56,0.08);
}

.location-photo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.25rem 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-on-dark);
  background: linear-gradient(to top, rgba(6,9,15,0.92), transparent);
  pointer-events: none;
}











/* Crest in nav: a touch more drop-shadow when sitting over the dark hero scrim */
.has-hero-photo .site-header:not(.site-header--scrolled) .brand__logo-img {
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5));
}

/* ── FLYER-FAITHFUL NAV WORDMARK ─────────────────────────────────
   Matches the printed flyer: bigger crest, REAL MARIN + SOCCER CLINIC
   stacked, with a ★ Brazil-flag-diamond ★ rule between gold lines. */
.has-hero-photo .site-header .brand {
  gap: 0.85rem;
  align-items: center;
}
.has-hero-photo .site-header .brand__logo-img {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
}
.has-hero-photo .site-header .brand__text-fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1;
}
.brand__text-fallback .brand__line {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand__text-fallback span.brand__line--main {
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.brand__text-fallback span.brand__line--sub {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 0.24rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.brand__rule {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}
.brand__rule-line {
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}
.brand__rule-star {
  color: var(--gold);
  font-size: 0.65rem;
  line-height: 1;
}
.brand__rule-flag {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

/* Compact nav wordmark on smaller phones */
@media (max-width: 420px) {
  .has-hero-photo .site-header .brand__logo-img { width: 64px; height: 64px; }
  .brand__text-fallback span.brand__line--main { font-size: 1.35rem; }
  .brand__text-fallback span.brand__line--sub { font-size: 0.86rem; }
  .brand__rule-line { width: 16px; }
}


/* ═══════════════════════════════════════════════════════════════════
   HERO — PHOTO (index) — single source of truth
═══════════════════════════════════════════════════════════════════ */
.hero--photo .hero-circle,
.hero--photo .hero-scroll {
  display: none;
}

.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero--photo .hero-photo-bg img {
  object-position: center 22%;
  filter: brightness(1.18) saturate(1.08) contrast(0.96);
}
.hero--photo .hero-photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Only a soft light fade at the very top (so the nav reads). The photo
     stays fully visible everywhere else, like the reference. */
  background: linear-gradient(180deg,
    rgba(248, 246, 240, 0.55) 0%,
    rgba(248, 246, 240, 0.12) 16%,
    transparent 30%
  );
}
.hero-photo-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero--photo .hero-photo-scrim {
  /* White glow ONLY behind the text (left side + upper area). The photo
     stays fully visible on the right (hills) and bottom (field) — exactly
     like the reference flyer. Two layers: horizontal-left + soft top. */
  background:
    linear-gradient(100deg,
      rgba(249, 247, 242, 0.95) 0%,
      rgba(249, 247, 242, 0.85) 30%,
      rgba(249, 247, 242, 0.45) 52%,
      rgba(249, 247, 242, 0.08) 72%,
      transparent 86%),
    linear-gradient(180deg,
      rgba(249, 247, 242, 0.55) 0%,
      rgba(249, 247, 242, 0.18) 40%,
      transparent 62%);
}

.hero--photo .hero-inner--photo {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.5rem, 8vh, 5rem);
}
.hero-content--photo,
.hero-block,
.hero-block > * {
  min-width: 0;
  max-width: 100%;
}
.hero--photo .hero-block--intro {
  text-align: left;
}

.hero--photo .hero-title {
  text-align: left;
  /* Sized to the longer word ("Development") so it never breaks mid-word */
  font-size: clamp(2.9rem, 14vw, 6.2rem);
  /* Oswald is true condensed — slight open tracking keeps jersey letters readable */
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-weight: 700;
  color: var(--navy);
  overflow-wrap: break-word;
  max-width: 100%;
  margin-bottom: 0;
  text-shadow:
    0 0 34px rgba(246, 243, 235, 0.9),
    0 0 14px rgba(246, 243, 235, 0.8),
    0 2px 0 rgba(246, 243, 235, 0.55);
}
.hero--photo .hero-block--intro > .hero-note {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.88rem, 2.8vw, 1rem);
  color: var(--navy);
  letter-spacing: 0.01em;
  text-align: left;
  margin: 0 0 0.85rem;
  text-shadow:
    0 0 18px rgba(246, 243, 235, 0.85),
    0 0 6px rgba(246, 243, 235, 0.7);
}

/* Diamond rule under the title — flush left: ◆ between short gold lines */
.hero--photo .hero-diamond {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  margin: 1rem 0 0.7rem;
  max-width: 18rem;
  color: var(--hero-gold);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 10px rgba(246, 243, 235, 0.6));
}
/* Short fixed line before ◆, longer fading line after — editorial flyer look */
.hero--photo .hero-diamond::before {
  content: '';
  height: 2px;
  width: 28px;
  flex: 0 0 auto;
  background: var(--hero-gold);
  opacity: 1;
  box-shadow: 0 0 8px rgba(246, 243, 235, 0.5);
}
.hero--photo .hero-diamond::after {
  content: '';
  height: 2px;
  flex: 1 1 auto;
  max-width: 120px;
  opacity: 1;
  box-shadow: 0 0 8px rgba(246, 243, 235, 0.5);
  background: linear-gradient(90deg, var(--hero-gold), transparent);
}

/* Tagline below the diamond — navy, tight tracking, cream halo */
.hero--photo .hero-tagline--ornate {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 4vw, 1.5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  margin-top: 0;
  margin-bottom: 1.6rem;
  text-shadow:
    0 0 20px rgba(246, 243, 235, 0.9),
    0 0 8px rgba(246, 243, 235, 0.8);
}

/* Eyebrow row: gold pill + location label */
.hero-pill__icon { stroke: currentColor; flex-shrink: 0; width: 22px; height: 22px; }

.hero-location__dot {
  color: var(--gold);
  font-size: 0.55em;
  line-height: 1;
}

/* Info card — navy, gold border, three rows with circle icons */
.hero-card__row + .hero-card__row { border-top: none; }
.hero-card__icon svg { stroke: currentColor; width: 22px; height: 22px; }

/* Hero buttons — full-width, icon + label */
.hero--photo .hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.15rem;
}
.cta--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1.15rem 1.5rem;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.15rem;
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.cta--hero .cta__icon { width: 22px; height: 22px; }
.cta--hero-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(184, 146, 42, 0.45);
}
.cta--hero-primary:hover {
  background: var(--gold-light, #d4ad3f);
  border-color: var(--gold-light, #d4ad3f);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(184, 146, 42, 0.5);
  color: var(--navy);
}
.cta--hero-outline {
  background: rgba(8, 18, 32, 0.82);
  color: var(--gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}
.cta--hero-outline:hover {
  background: rgba(8, 18, 32, 0.95);
  transform: translateY(-2px);
  color: var(--gold-light, #d4ad3f);
}
.cta__icon { stroke: currentColor; flex-shrink: 0; }

/* Note: navy text on the light background — high contrast on near-white */
.hero--photo .hero-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 1.25rem;
  color: var(--navy, #0f2238);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  max-width: 38rem;
  text-shadow: 0 0 14px rgba(248, 246, 240, 0.9), 0 0 6px rgba(248, 246, 240, 0.8);
}
.hero--photo .hero-note__icon { color: var(--hero-gold, #e3a72b); }
.hero-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-note__icon svg { stroke: currentColor; }

/* Bottom band: "Train with purpose. Play with pride." */
.hero-bottom-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(15, 34, 56, 0.95), var(--navy));
  border-top: 1.5px solid var(--gold);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  text-align: center;
}
.hero-bottom-band__text { color: var(--text-on-dark); }

/* Tablet+: pill row stays inline, buttons go side-by-side */
/* Mobile fine-tuning */
@media (max-width: 460px) {
  .hero-eyebrow-row { gap: 0.5rem 0.7rem; }
  .hero-pill { padding: 0.42rem 0.95rem; font-size: 0.9rem; letter-spacing: 0.1em; }
  .hero-bottom-band {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    gap: 0.7rem;
    padding: 0.8rem 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — VIVID GOLD ACCENTS (match the flyer's bright gold, not the
   muted #a87f1e brand token). Scoped to the hero only.
   Appended last so it wins over earlier hero rules of equal specificity.
═══════════════════════════════════════════════════════════════════ */
.hero--photo {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  align-items: flex-start;
  --hero-gold: #e3a72b;
}

/* Desktop: hero content can breathe / CTAs side-by-side */
@media (min-width: 900px) {
  .hero--photo .hero-inner--photo {
    padding-top: clamp(2.5rem, 5vh, 4rem);
    padding-bottom: clamp(4.5rem, 9vh, 6rem);
  }
  .hero--photo .hero-title {
    font-size: clamp(4.2rem, 7vw, 6.2rem);
  }
  .hero--photo .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
  }
  .hero--photo .cta--hero {
    width: auto;
    min-width: 16rem;
  }
  .hero--photo .hero-photo-scrim {
    /* Keep photo vivid on the wide right side on desktop */
    background:
      linear-gradient(100deg,
        rgba(249, 247, 242, 0.96) 0%,
        rgba(249, 247, 242, 0.82) 28%,
        rgba(249, 247, 242, 0.35) 48%,
        rgba(249, 247, 242, 0.06) 68%,
        transparent 82%),
      linear-gradient(180deg,
        rgba(249, 247, 242, 0.4) 0%,
        transparent 55%);
  }
}

/* Pill — brighter border + text */
.hero--photo .hero-pill {
  color: var(--hero-gold);
  border-color: var(--hero-gold);
}
.hero--photo .hero-location__dot { color: var(--hero-gold); }

/* Info-card circle icons — the ones the user flagged as too weak */
.hero--photo .hero-card { border-color: var(--hero-gold); }
.hero--photo .hero-card__icon {
  border-color: var(--hero-gold);
  color: var(--hero-gold);
  background: rgba(227, 167, 43, 0.14);
}

/* Primary button — brighter gold fill */
.hero--photo .cta--hero-primary {
  background: var(--hero-gold);
  border-color: var(--hero-gold);
  box-shadow: 0 14px 32px rgba(227, 167, 43, 0.5);
}
.hero--photo .cta--hero-primary:hover {
  background: var(--hero-gold-bright);
  border-color: var(--hero-gold-bright);
}
/* Outline (Pay) button — brighter gold text + border */
.hero--photo .cta--hero-outline {
  color: var(--hero-gold);
  border-color: var(--hero-gold);
}
.hero--photo .cta--hero-outline:hover { color: var(--hero-gold-bright); }

/* Note info icon — brighter */
/* Bottom band gems + rule */
.hero-bottom-band__gem {
  color: var(--hero-gold, #e3a72b);
  font-size: 0.7em;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO — TARGET LAYOUT (matches approved design, mobile AND desktop)
   Solid header above the photo (not floating over it), left-aligned
   pill + headline block, 3 value-prop cards in a row, one full-width CTA.
═══════════════════════════════════════════════════════════════════ */
/* Text colors: the existing :not(.site-header--scrolled) rules already
   set navy/gold here (higher specificity) — nothing more to override,
   they read fine on the solid cream background too. */

.hero--photo .hero-inner { padding-top: clamp(2rem, 5vw, 3.5rem); }

/* Eyebrow: one left-aligned pill, flush with the title below it. Marin
   County moved into the value-prop row below, so the separate location
   badge is redundant here. */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1.25rem;
  justify-content: flex-start;
}
.hero-location {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(246, 243, 235, 0.85),
    0 0 8px rgba(246, 243, 235, 0.75);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.15rem;
  border: 2px solid var(--gold);
  border-radius: 999px;
  background: rgba(249, 247, 242, 0.95);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(15, 34, 56, 0.18);
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: left;
}
/* Value-prop row: three separate cards instead of one stacked list */
.hero-card {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: none;
  border: none;
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  gap: 0.6rem;
  max-width: 40rem;
  margin-inline: auto;
}
.hero-card__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  padding: 1.1rem 0.4rem;
  color: var(--text-on-dark);
  font-weight: 600;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  background: linear-gradient(180deg, rgba(15, 34, 56, 0.96), rgba(11, 24, 40, 0.96));
  border: 2px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 34, 56, 0.28);
}
.hero-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  flex-shrink: 0;
  background: rgba(184, 146, 42, 0.10);
}
.hero-card__text {
  min-width: 0;
  flex: 1 1 auto;
  word-break: normal;
  overflow-wrap: anywhere;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.65rem;
}
.hero-card__text::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 2px;
  background: var(--gold);
}

/* One CTA. Instagram stays reachable via the menu, contact section and
   footer, so the second hero button is redundant here. */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-ctas .cta--hero-outline { display: none; }
.hero-ctas .cta--hero-primary { width: 100%; max-width: 26rem; justify-content: center; }

/* Desktop: same layout, roomier proportions */
@media (min-width: 640px) {
  .hero-card { max-width: 46rem; gap: 1rem; }
  .hero-card__row { padding: 1.5rem 1rem; }
  .hero-card__icon { width: 52px; height: 52px; }
  .hero-card__text { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   PROGRAM PILLARS — gold medallion layout (matches the reference)
   4 columns: medallion + title + gold rule + description, on cream.
   Drop a generated PNG into .pillar-med__badge to replace the placeholder.
═══════════════════════════════════════════════════════════════════ */
.pillars-section { background: var(--bg); overflow: hidden; }
.pillars-section > .wrap { position: relative; z-index: 1; }

.pillar-medallions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}
.pillar-med {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem clamp(0.9rem, 2.5vw, 1.6rem);
  position: relative;
  min-width: 0;
}
/* Thin gold divider between columns (desktop only) */
@media (min-width: 861px) {
  .pillar-med + .pillar-med::before {
    content: '';
    position: absolute;
    left: 0; top: 6%; bottom: 6%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(184,146,42,0.40), transparent);
  }
}

/* Medallion: navy interior + 3D-ish gold ring (placeholder).
   When a real <img> is dropped in, the CSS ring is removed automatically. */
.pillar-med__badge {
  width: clamp(104px, 27vw, 152px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
  background: radial-gradient(circle at 50% 36%, #173354 0%, #0c1c30 72%);
  box-shadow:
    0 0 0 3px #6f5414,
    0 0 0 7px #cba12f,
    0 0 0 10px #8a6a1e,
    0 12px 28px rgba(15, 34, 56, 0.28);
}

/* Real generated medallion image (full circle) — overrides the placeholder ring */
.pillar-med__img {
  width: clamp(104px, 27vw, 152px);
  height: clamp(104px, 27vw, 152px);
  object-fit: contain;
  display: block;
}
.pillar-med__badge:has(.pillar-med__img) {
  background: none;
  box-shadow: 0 12px 28px rgba(15, 34, 56, 0.22);
  width: auto;
  aspect-ratio: auto;
}

.pillar-med__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.42rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-wrap: balance;
}
.pillar-med__rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: clamp(0.7rem, 2vw, 0.95rem) auto;
  position: relative;
}
.pillar-med__rule::before,
.pillar-med__rule::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}
.pillar-med__rule::before { left: -10px; }
.pillar-med__rule::after { right: -10px; }
.pillar-med__desc {
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  color: var(--muted);
  line-height: 1.5;
  max-width: 24ch;
  margin: 0 auto;
}

/* Tablet / mobile: 2 columns, comfortable spacing (user views on mobile) */
@media (max-width: 860px) {
  .pillar-medallions {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.25rem, 7vw, 3rem) 0;
  }
}
@media (max-width: 380px) {
  .pillar-med { padding: 0.5rem 0.5rem; }
  .pillar-med__desc { font-size: 0.9rem; }
}

/* Closing strip: 4 badges + tagline, below the pillar medallions */
.pillars-close {
  margin-top: clamp(2rem, 5vw, 3rem);
  background: var(--navy);
  border-top: 4px solid var(--gold);
  border-radius: 14px;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.75rem);
  text-align: center;
}
.pillars-close__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
}
.pillars-close__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}
.pillars-close__tagline {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  font-size: clamp(1.05rem, 3vw, 1.35rem);
}
.pillars-close__tagline em { color: var(--gold); font-style: normal; }

/* ═══════════════════════════════════════════════════════════════════
   WHO IT'S FOR — generated navy panel (border + player silhouette baked
   into assets/who-bg.png). Text is live HTML scaled with cqw so it sits
   identically at any width. Centered card on desktop (not stretched).
═══════════════════════════════════════════════════════════════════ */
.who-frame {
  position: relative;
  width: min(92vw, 560px);
  margin-inline: auto;
  aspect-ratio: 1023 / 1537;
  background: url("../assets/who-bg.png") center / 100% 100% no-repeat;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;       /* center content vertically in the panel */
  /* padding scales with the card width (matches the image's inner margin) */
  padding: 13cqw 9cqw;
  box-sizing: border-box;
  border: none;
  border-radius: 18px;
}
.who-frame::after { display: none; }  /* .who-frame no longer carries .gold-frame in HTML — kept as a defensive no-op */

/* Header: people badge + vertical rule + eyebrow/title */
.who-head {
  display: flex;
  align-items: center;
  gap: 4.5cqw;
  margin-bottom: 8cqw;
}
.who-badge {
  flex-shrink: 0;
  width: 17cqw;
  height: 17cqw;
  border: 0.7cqw solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.who-badge .ui-icon { color: var(--gold); width: 9cqw; height: 9cqw; }
.who-head__rule {
  width: 0.6cqw;
  align-self: stretch;
  background: var(--gold);
  border-radius: 2px;
  margin: 1cqw 0;
}
.who-head__text { min-width: 0; }
.who-eyebrow {
  font-family: var(--font-display);
  font-size: 4cqw;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5cqw;
}
.who-frame .who-title {
  font-family: var(--font-display);
  font-size: 8.7cqw;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

/* Checklist */
.who-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7cqw;
  justify-content: flex-start;
}
.who-item {
  display: flex;
  align-items: center;
  gap: 4cqw;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-on-dark);
}
.who-check {
  width: 11cqw;
  height: 11cqw;
  background: none;
  border-radius: 50%;
  display: grid;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 900;
  border: 0.7cqw solid var(--gold);
  place-items: center;
}
.who-check svg { width: 5.5cqw; height: 5.5cqw; stroke: var(--gold); }
.who-item__rule {
  flex-shrink: 0;
  width: 0.5cqw;
  height: 9cqw;
  background: rgba(227, 167, 43, 0.6);
  border-radius: 2px;
}
.who-item__text {
  font-size: 4.9cqw;
  line-height: 1.25;
  color: var(--text-on-dark);
  font-weight: 400;
}
.who-item__text strong { color: var(--gold); font-weight: 700; }

/* On wide desktop, keep the card from getting too tall: cap its width a
   bit smaller so the portrait panel stays a tidy centered feature. */
@media (min-width: 1024px) {
  .who-frame { width: 560px; }
}

/* Closing statement band, below the who-frame card */
.who-close {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  width: min(92vw, 560px);
  margin-inline: auto;
  background: var(--navy);
  border-top: 4px solid var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
}
.who-close__ico {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid; place-items: center;
}
.who-close__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-on-dark);
}
.who-close__text strong { color: var(--gold); font-weight: 700; }
@media (max-width: 480px) {
  .who-close { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   MIDDLE & HIGH SCHOOL — white quick-facts info card
   Clean rows: gold circle icon + content.
═══════════════════════════════════════════════════════════════════ */
.who-section {
  background: var(--bg);
  padding: clamp(2rem, 6vw, 4rem) 0;
  border-top: none;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.info-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-2);            /* near-white paper */
  border: 1px solid rgba(15, 34, 56, 0.08);
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(15, 34, 56, 0.10);
  padding: clamp(0.5rem, 2vw, 1.25rem) clamp(1.1rem, 4vw, 2.5rem);
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3.5vw, 1.6rem);
  padding: clamp(1.25rem, 3.5vw, 1.75rem) 0;
}
.info-row + .info-row { border-top: 1px solid rgba(15, 34, 56, 0.09); }
.info-row__icon {
  flex-shrink: 0;
  width: clamp(48px, 13vw, 60px);
  height: clamp(48px, 13vw, 60px);
  border-radius: 50%;
  background: rgba(184, 146, 42, 0.12);
  color: var(--gold);
  display: grid;
  place-items: center;
}
.info-row__icon svg { width: 55%; height: 55%; stroke: currentColor; }
.info-row__body { min-width: 0; flex: 1; padding-top: 0.15rem; }
.info-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--navy);
  line-height: 1.05;
  margin: 0;
}
.info-row__sub {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  line-height: 1.5;
}












/* ═══════════════════════════════════════════════════════════════════
   MEET THE COACHES — two staff cards (reference design)
═══════════════════════════════════════════════════════════════════ */
.coach-section { background: var(--bg); padding: 5rem 0; }
.coaches-head { margin-bottom: clamp(2rem, 5vw, 3rem); text-align: center; }
.coaches-crown {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.1rem; color: var(--gold);
}
.coaches-crown__line { height: 2px; width: min(90px, 16vw); background: linear-gradient(90deg, transparent, var(--gold)); }
.coaches-crown__line:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.coaches-crown svg { color: var(--gold); fill: currentColor; }

.coaches-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: 2.5rem;
  flex-direction: column;
}

.coach2 {
  position: relative;
  display: flex;
  gap: clamp(1rem, 3.5vw, 2.25rem);
  background: var(--bg-2);
  border: 1.5px solid var(--gold-border);
  border-bottom: 4px solid var(--navy);
  border-radius: 18px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  box-shadow: 0 16px 40px rgba(15, 34, 56, 0.08);
}
/* Left rail: medallion + capability tags */
.coach2__left {
  flex: 0 0 auto;
  width: clamp(116px, 32vw, 210px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  min-width: 0;
}
.coach2__badge {
  position: relative;
  width: clamp(78px, 23vw, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #173354, #0c1c30 72%);
  border: 3px solid var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(15, 34, 56, 0.28);
  margin-top: 0.6rem;
}
.coach2__badge span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.7rem, 7vw, 2.9rem);
  color: var(--gold-light);
  line-height: 1;
}
.coach2__crown {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  color: var(--gold); fill: currentColor;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.25));
}
.coach2__tags { list-style: none; margin: 0; padding: 0; width: 100%; display: flex; flex-direction: column; }
.coach2__tags li {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(0.7rem, 2vw, 0.82rem);
  color: var(--navy);
  line-height: 1.1;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(15, 34, 56, 0.10);
}
.coach2__tags li:last-child { border-bottom: none; }
.coach2__tag-ico { color: var(--gold); flex-shrink: 0; display: inline-flex; }
.coach2__tag-ico svg { stroke: currentColor; }
/* Right: pill + name + role + divider + desc */
.coach2__main { flex: 1; min-width: 0; }
.coach2__pill {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  padding: 0.38rem 1rem;
  border-radius: 999px;
}
.coach2__name {
  font-family: var(--font-display);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.5rem, 5.5vw, 2.2rem);
  color: var(--navy);
  line-height: 1;
  margin: 0.65rem 0 0.45rem;
}
.coach2__role {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  font-size: clamp(0.8rem, 2.3vw, 0.98rem);
  line-height: 1.2;
  margin: 0;
}
.coach2__role svg { stroke: currentColor; flex-shrink: 0; }
.coach2__divider { display: block; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1rem 0; }
.coach2__desc { color: var(--muted); line-height: 1.6; font-size: clamp(0.95rem, 2.5vw, 1.05rem); margin: 0; }

/* Bottom motto */
.coaches-tagline { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: clamp(2rem, 5vw, 3rem); color: var(--gold); }
.coaches-tagline__line { height: 1px; width: min(70px, 14vw); background: var(--gold-border); }
.coaches-tagline svg { color: var(--gold); }
.coaches-motto {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--navy);
  font-size: clamp(0.85rem, 2.6vw, 1.1rem);
  margin: 0.7rem 0 0;
}
.coaches-motto span { color: var(--gold); }

/* Very small screens: stack so the tags don't crush the text */
@media (max-width: 460px) {
  .coach2 { flex-direction: column; align-items: center; text-align: center; }
  .coach2__left { width: 100%; flex-direction: column; }
  .coach2__tags { max-width: 320px; }
  .coach2__tags li { justify-content: flex-start; }
  .coach2__main { width: 100%; max-width: 420px; }
  .coach2__role { justify-content: center; }
  .coach2__divider { margin-inline: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESERVE YOUR SPOT — "How it works" 4-step infographic (reference)
═══════════════════════════════════════════════════════════════════ */
.reserve-section { background: var(--bg); padding: clamp(2.5rem, 7vw, 4.5rem) 0 0; }
.reserve-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem, 5vw, 3rem); }
.reserve-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--navy);
  font-size: clamp(0.85rem, 2.4vw, 1rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
}
.reserve-eyebrow svg { stroke: var(--gold); flex-shrink: 0; }
.reserve-eyebrow strong { color: var(--gold); font-weight: 800; }
.reserve-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 0.95;
  color: var(--navy); margin: 0;
}
.reserve-rule { display: block; width: 90px; height: 3px; background: var(--gold); margin: 1.1rem auto 1.3rem; border-radius: 2px; }
.reserve-sub {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 0 1.6rem;
}
.reserve-banner {
  display: inline-block;
  background: var(--navy);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  font-size: clamp(0.92rem, 2.6vw, 1.15rem);
  padding: 0.55rem 1.8rem;
  border-radius: 8px;
}

/* Steps */
.reserve-steps {
  list-style: none; margin: 0 auto; padding: 0;
  max-width: 620px;
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}
.reserve-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 3.5vw, 1.6rem);
  position: relative;
}
.reserve-step__mark { position: relative; flex-shrink: 0; }
/* Dashed connector between circles */
.reserve-step:not(:last-child) .reserve-step__mark::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  top: calc(100% + 4px);
  width: 0; height: calc(100% - 8px);
  border-left: 2px dashed rgba(184, 146, 42, 0.5);
  min-height: clamp(1.5rem, 4vw, 2.25rem);
}
.reserve-step__icon {
  display: grid; place-items: center;
  width: clamp(60px, 16vw, 78px);
  height: clamp(60px, 16vw, 78px);
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 10px 24px rgba(15, 34, 56, 0.22);
}
.reserve-step__icon svg { stroke: currentColor; width: 46%; height: 46%; }
.reserve-step__num {
  position: absolute;
  top: -6px; right: -8px;
  width: clamp(26px, 7vw, 32px);
  height: clamp(26px, 7vw, 32px);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(0.85rem, 2.4vw, 1rem);
}
.reserve-step__body { padding-top: 0.35rem; min-width: 0; }
.reserve-step__title {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  font-size: clamp(1.1rem, 3.4vw, 1.4rem);
  color: var(--navy);
  margin: 0 0 0.35rem; line-height: 1.05;
}
.reserve-step__desc {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.55; margin: 0;
}
.reserve-step__desc a { color: var(--gold); font-weight: 600; }

/* Start Registration CTA */
.reserve-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: fit-content;
  margin: clamp(2rem, 5vw, 2.75rem) auto 0;
  font-size: 1.05rem;
}
.reserve-cta svg { stroke: currentColor; }

/* Contact box */
.reserve-contact {
  max-width: 720px;
  margin: clamp(2rem, 5vw, 2.75rem) auto 0;
  border: 1.5px solid var(--gold-border);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--bg-2);
}
.reserve-contact__head {
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--navy);
  font-size: clamp(0.95rem, 2.6vw, 1.15rem);
  margin: 0 0 1.4rem;
}
.reserve-contact__line { height: 1px; flex: 1; max-width: 60px; background: var(--gold-border); }
.reserve-contact__row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.25rem 2.5rem;
}
.reserve-contact__item {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; min-width: 0;
}
.reserve-contact__item--phone { align-items: flex-start; }
.reserve-contact__ico {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
}
.reserve-contact__ico svg { stroke: currentColor; }
.reserve-contact__txt { display: flex; flex-direction: column; min-width: 0; }
.reserve-contact__txt strong { color: var(--navy); font-weight: 700; font-size: 1.05rem; }
.reserve-contact__txt small { color: var(--muted); font-size: 0.85rem; word-break: break-word; }

/* Bottom band */
.reserve-band {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--navy);
  border-top: 4px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 3vw, 1.6rem);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1rem, 4vw, 2rem);
  text-align: left;
}
.reserve-band__ico {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
}
.reserve-band__ico svg { stroke: currentColor; }
.reserve-band__text {
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-on-dark);
  font-size: clamp(0.95rem, 2.8vw, 1.3rem);
  line-height: 1.25; margin: 0;
}
.reserve-band__text span { color: var(--gold); display: block; }

@media (max-width: 480px) {
  .reserve-contact__row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reserve-band { flex-direction: column; text-align: center; }
}

/* Coach badge center icon (replaces personal initials — neutral) */
.coach2__badge-ico { width: 46%; height: 46%; color: var(--gold-light); stroke: currentColor; }

/* Location — private (exact venue shared after registration) */
.location-private {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-border);
  border-radius: 14px;
}
.location-private__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid; place-items: center;
}
.location-private__icon svg { stroke: currentColor; }
.location-private p { margin: 0; color: var(--muted); font-size: clamp(0.92rem, 2.5vw, 1rem); line-height: 1.55; }
.location-private strong { color: var(--navy); }





.footer-social {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.4rem;
  color: rgba(246, 243, 235, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social svg { stroke: var(--gold); }
.footer-social:hover { color: var(--gold); }

/* Waiver — download PDF button */
.waiver-pdf-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.3rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.92rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.waiver-pdf-btn svg { stroke: currentColor; }
.waiver-pdf-btn:hover { background: var(--gold-light, #d4ad3f); transform: translateY(-1px); color: var(--navy); }

/* WHO IT'S FOR — section wrapper for the navy benefits panel */
.whofor-section {
  background: var(--bg);
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
}

/* PROMO BANNER — Summer Clinic 2026 image band between sections */
.banner-section { background: var(--bg); padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(2rem, 6vw, 3.25rem); }
.promo-banner-link {
  display: block;
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  cursor: zoom-in;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promo-banner-link:hover { transform: translateY(-3px); }
.promo-banner-link:hover .promo-banner { box-shadow: 0 22px 52px rgba(15, 34, 56, 0.26); }
.promo-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1.5px solid var(--gold-border);
  box-shadow: 0 18px 44px rgba(15, 34, 56, 0.18);
}
.promo-banner-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font: 700 0.72rem/1 var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-2, #fffdf8);
  background: rgba(15, 34, 56, 0.82);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY + PRINT — kept last so these rules win the cascade
   at equal specificity (no !important needed).
═══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .marquee-track, .hero-scroll, .hero-photo-bg img, .location-photo__img {
    animation: none;
    transition: none;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .cta, nav, .nav-links,
  .waiver-print-btn, .sig-clear, .form-actions,
  #waiver_error, .success-panel, .success-panel.visible,
  .contact-slab, .pay-hero__back, .waiver-pdf-btn, .eyebrow,
  .sig-pad-baseline { display: none; }
  body { background: #fff; color: #000; }
  .waiver-body, .waiver-signature-form { border: 1px solid #ccc; }
  .waiver-body p, .waiver-body ul { color: #333; }
  .waiver-signature-form h2, .waiver-body h2 { color: #000; }
  /* Show the filled values clearly on the printed copy (ID selector
     outranks the base "form input" styles) */
  #waiver-form input, #waiver-form select, #waiver-form textarea {
    border: none;
    border-bottom: 1px solid #999;
    border-radius: 0;
    color: #000;
    background: #fff;
  }
  .sig-pad { border: 1px solid #999; height: 150px; }
  /* The form must stay visible after submit so the signed copy prints fully */
  #waiver-form { display: block; pointer-events: none; }
}
