/* ============================================================
   FRANKLIN GYM — styles
   Palette from the gym: matte black · Franklin gold · TITLE red · hex-LED white
   Type: Big Shoulders Display (display, fight-poster condensed) · Schibsted Grotesk (text/UI)
   Signature: the honeycomb LED ceiling above the ring — hex grid textures + gold rule lines
   ============================================================ */
:root {
  --black: #070707;
  --bg: #0a0a0a;
  --bg-2: #0f0f0f;
  --card: #141414;
  --card-2: #1a1a1a;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --gold: #c9a84c;
  --gold-2: #daa520;
  --gold-3: #9e832e;
  --gold-soft: rgba(201, 168, 76, .14);
  --red: #c8102e;
  --red-2: #e0233f;
  --led: #eef3ff;
  --white: #ffffff;
  --text: #f2f0eb;
  --text-2: #b8b4ac;
  --muted: #7d7972;

  --display: 'Big Shoulders Display', 'Oswald', Impact, 'Arial Narrow', sans-serif;
  --sans: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(20px, 4vw, 60px);
  --radius: 6px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .8);
  --hex: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='1.2'%3E%3Cpath d='M28 1 55 16.5v31L28 63 1 47.5v-31z'/%3E%3Cpath d='M28 49.5 55 65v31L28 111 1 96V65z'/%3E%3C/g%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; background: var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.wrap { width: min(var(--wrap), 100% - 2 * var(--gutter)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Type */
h1, h2, h3, h4, .display { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: .005em; line-height: .9; margin: 0; color: var(--white); }
h1 { font-size: clamp(64px, 10vw, 168px); font-weight: 900; }
h2 { font-size: clamp(46px, 6.4vw, 104px); }
h3 { font-size: clamp(28px, 3vw, 44px); }
h4 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 700; letter-spacing: .02em; }
.display { font-size: clamp(50px, 6.6vw, 110px); font-weight: 900; }
.gold { color: var(--gold); }
.red { color: var(--red-2); }
.lead { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; color: var(--text-2); max-width: 58ch; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; font: 700 12px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.eyebrow.plain::before { display: none; }
p { margin: 0 0 1em; }
em { font-style: italic; }
strong { font-weight: 700; color: var(--white); }
.num { font-family: var(--display); font-weight: 900; color: var(--gold); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 26px; border-radius: 3px; font: 800 13.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; border: 1.5px solid transparent; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; white-space: nowrap; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #0a0a0a; border-color: var(--gold); box-shadow: 0 10px 30px -12px rgba(201, 168, 76, .7); }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn-white { background: var(--white); color: #0a0a0a; }
.btn-white:hover { background: var(--led); }
.btn-ghost { background: rgba(10, 10, 10, .35); color: var(--white); border-color: rgba(255, 255, 255, .45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: rgba(201, 168, 76, .6); }
.btn-outline-gold:hover { background: var(--gold-soft); border-color: var(--gold); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-2); border-color: var(--red-2); }
.btn-nav { padding: 12px 18px; font-size: 12px; }
.btn-lg { padding: 20px 34px; font-size: 15px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; font: 700 13px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.link-arrow::after { content: "→"; transition: transform .25s ease; }
.link-arrow:hover::after { transform: translateX(5px); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s cubic-bezier(.2,.7,.2,1), transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Section rhythm */
.section { padding: clamp(84px, 10vw, 150px) 0; position: relative; }
.section-head { max-width: 900px; margin-bottom: clamp(40px, 5vw, 70px); }
.section-head .lead { margin-top: 20px; }
.hexbg { background-image: var(--hex); background-size: 56px 97px; }
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: .5; }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; z-index: 100; background: var(--black); display: grid; place-items: center; transition: opacity .7s ease, visibility .7s; --p: 0; }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; width: min(300px, 70vw); }
.loader-logo { width: 150px; margin: 0 auto 28px; }
.loader-bar { height: 2px; background: rgba(255, 255, 255, .1); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: calc(var(--p) * 100%); background: var(--gold); transition: width .3s ease; }
.loader-note { margin: 16px 0 0; font: 700 11px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--gold); }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center; gap: 28px; padding: 18px var(--gutter); transition: background .35s ease, box-shadow .35s ease, padding .35s ease; }
.nav.scrolled { background: rgba(10, 10, 10, .82); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2); box-shadow: 0 1px 0 rgba(255, 255, 255, .08); padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand .brand-word { height: 18px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a { font: 600 13px/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--text); position: relative; padding: 6px 0; opacity: .9; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-tel { font: 700 13px/1 var(--sans); letter-spacing: .04em; color: var(--gold); white-space: nowrap; }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 3px; border: 1.5px solid rgba(255, 255, 255, .3); background: rgba(10, 10, 10, .5); cursor: pointer; position: relative; }
.nav-toggle span { position: absolute; left: 12px; right: 12px; height: 1.5px; background: var(--white); transition: transform .3s ease, top .3s ease; top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: var(--black); background-image: var(--hex); background-size: 56px 97px; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 96px var(--gutter) 40px; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .35s ease, visibility .35s, transform .35s ease; overflow-y: auto; }
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu > a:not(.btn) { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(34px, 8.5vw, 52px); line-height: 1.05; color: var(--white); padding: 8px 0; border-bottom: 1px solid var(--line); }
.mobile-menu > a:not(.btn):hover { color: var(--gold); }
.mobile-menu .btn { align-self: flex-start; margin-top: 22px; }
.mm-foot { margin-top: auto; color: var(--muted); font-size: 14px; padding-top: 24px; }
.mm-foot a { color: var(--gold); }

/* ---------- Scrub sections ---------- */
.scrub { position: relative; height: 520vh; }
.scrub.gym { height: 470vh; }
.scrub.gloves { height: 460vh; }
.stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: #0b0c0e; }
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage .poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 1; transition: opacity .4s ease; }
.scrub.has-frame .poster { opacity: 0; }
.stage-shade { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 7, 7, .72) 0%, rgba(7, 7, 7, .38) 28%, rgba(7, 7, 7, 0) 56%),
              linear-gradient(0deg, rgba(7, 7, 7, .8) 0%, rgba(7, 7, 7, .25) 30%, rgba(7, 7, 7, 0) 50%),
              linear-gradient(180deg, rgba(7, 7, 7, .55) 0%, rgba(7, 7, 7, 0) 22%); }
.stage-shade.shade-right { background: linear-gradient(270deg, rgba(7, 7, 7, .72) 0%, rgba(7, 7, 7, .38) 28%, rgba(7, 7, 7, 0) 56%),
              linear-gradient(0deg, rgba(7, 7, 7, .8) 0%, rgba(7, 7, 7, .25) 30%, rgba(7, 7, 7, 0) 50%),
              linear-gradient(180deg, rgba(7, 7, 7, .5) 0%, rgba(7, 7, 7, 0) 22%); }
.stage-shade.shade-both { background: linear-gradient(90deg, rgba(7, 7, 7, .82) 0%, rgba(7, 7, 7, .42) 28%, rgba(7, 7, 7, 0) 52%),
              linear-gradient(270deg, rgba(7, 7, 7, .82) 0%, rgba(7, 7, 7, .42) 28%, rgba(7, 7, 7, 0) 52%),
              linear-gradient(0deg, rgba(7, 7, 7, .85) 0%, rgba(7, 7, 7, .3) 32%, rgba(7, 7, 7, 0) 52%),
              linear-gradient(180deg, rgba(7, 7, 7, .5) 0%, rgba(7, 7, 7, 0) 22%); }
.reveal-line { position: absolute; opacity: 0; will-change: opacity, transform; max-width: min(560px, 38vw); }
.reveal-line.ml { left: var(--gutter); top: 50%; transform: translateY(-50%); }
.reveal-line.mr { right: var(--gutter); top: 50%; transform: translateY(-50%); text-align: right; }
.reveal-line.mr .cta-row { justify-content: flex-end; }
.reveal-line.center { left: 50%; top: 50%; transform: translate(-50%, -50%) !important; text-align: center; width: min(900px, 88vw); max-width: none; margin-left: 0; }
.reveal-line.center.low { top: auto; bottom: 10vh; transform: translateX(-50%) !important; }
.reveal-line .lead { color: rgba(242, 240, 235, .9); margin-top: 18px; }
.reveal-line .eyebrow { margin-bottom: 14px; }
.reveal-line .display { text-shadow: 0 6px 40px rgba(0, 0, 0, .55); }

/* Hero — poster layout: title bottom-left over the dark floor, ring stays clear */
.hero .stage-shade { background: linear-gradient(0deg, rgba(7, 7, 7, .92) 0%, rgba(7, 7, 7, .55) 26%, rgba(7, 7, 7, 0) 52%),
                                 linear-gradient(180deg, rgba(7, 7, 7, .55) 0%, rgba(7, 7, 7, 0) 20%),
                                 linear-gradient(90deg, rgba(7, 7, 7, .35) 0%, rgba(7, 7, 7, 0) 40%); }
.hero-title { left: var(--gutter); bottom: 10vh; max-width: min(1080px, 78vw); }
.hero-title .eyebrow { margin-bottom: 20px; }
.hero-title h1 { font-size: clamp(56px, 7.4vw, 124px); line-height: .86; }
.hero-title h1 .gold { display: block; }
.hero-title .lead { margin: 22px 0 26px; max-width: 54ch; color: rgba(242, 240, 235, .88); font-size: clamp(16px, 1.25vw, 19px); }
.hero-side { right: var(--gutter); bottom: 12vh; text-align: right; max-width: 260px; }
.hero-side .stat { display: block; font-family: var(--display); font-weight: 900; font-size: clamp(30px, 3.2vw, 48px); color: var(--white); line-height: 1; }
.hero-side .stat small { display: block; font: 700 11px/1.3 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.hero-side .stat + .stat { margin-top: 20px; }
.hero-mid { left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; max-width: none; padding: 60px var(--gutter); background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(7, 7, 7, .62), rgba(7, 7, 7, 0) 70%); }
.hero-mid .display, .hero-end .display { text-shadow: 0 4px 30px rgba(0, 0, 0, .75), 0 1px 2px rgba(0, 0, 0, .6); }
.hero-mid .display { font-size: clamp(54px, 8.5vw, 150px); }
.hero-mid .mid-note { font-size: clamp(16px, 1.3vw, 20px); color: rgba(242, 240, 235, .9); max-width: 46ch; margin: 18px auto 0; }
.hero-end { left: var(--gutter); bottom: 12vh; max-width: min(720px, 70vw); }
.hero-end .display { font-size: clamp(46px, 6.5vw, 108px); }
.hero-end .mid-note { margin: 16px 0 24px; color: rgba(242, 240, 235, .88); max-width: 50ch; }
.hero-badge { position: absolute; top: clamp(84px, 12vh, 130px); right: var(--gutter); display: flex; flex-direction: column; align-items: flex-end; gap: 6px; text-align: right; padding: 14px 16px; background: rgba(7, 7, 7, .55); border: 1px solid rgba(201, 168, 76, .35); border-radius: 3px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.hero-badge .free { font-family: var(--display); font-weight: 900; font-size: clamp(22px, 2.2vw, 34px); color: var(--gold); line-height: 1; letter-spacing: .02em; text-transform: uppercase; }
.hero-badge small { font: 700 10.5px/1.3 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); font: 700 10.5px/1 var(--sans); letter-spacing: .28em; text-transform: uppercase; color: var(--text-2); display: flex; flex-direction: column; align-items: center; gap: 10px; transition: opacity .4s; }
.scroll-hint span { width: 1.5px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255, 255, 255, .1); }
.progress-fill { height: 100%; width: 0; background: var(--gold); }

/* Gym clip overlays */
.gym .display, .gloves .display { font-size: clamp(46px, 6.2vw, 104px); }
.gym .reveal-line .lead, .gloves .reveal-line .lead { max-width: 46ch; }
.spec-list { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.spec-list li { display: flex; align-items: baseline; gap: 12px; font-size: 16px; color: rgba(242, 240, 235, .92); }
.spec-list li::before { content: ""; width: 8px; height: 8px; background: var(--gold); flex: none; transform: rotate(45deg); }
.mr .spec-list li { flex-direction: row-reverse; }
.steps-inline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 26px auto 26px; max-width: 940px; text-align: left; padding: 22px 24px; background: rgba(7, 7, 7, .5); border: 1px solid rgba(255, 255, 255, .1); border-radius: 4px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.steps-inline div { border-top: 1px solid rgba(255, 255, 255, .25); padding-top: 12px; }
.steps-inline .num { font-size: 30px; display: block; margin-bottom: 4px; }
.steps-inline h4 { font-size: 20px; margin-bottom: 4px; }
.steps-inline p { font-size: 14px; color: rgba(242, 240, 235, .82); margin: 0; }

/* QA mode (?static=…): un-stick stages so full-page screenshots render every clip */
.static-preview .scrub, .static-preview .scrub.gym, .static-preview .scrub.gloves { height: 100vh; }
.static-preview .stage { position: relative; height: 100vh; }
.static-preview .scroll-hint { display: none; }

/* ---------- Ticker (gold beltline) ---------- */
.beltline { background: var(--gold); color: #0a0a0a; overflow: hidden; position: relative; }
.belt-track { display: flex; align-items: center; gap: 30px; padding: 14px 0; width: max-content; animation: belt 40s linear infinite; font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.belt-track i { font-style: normal; font-size: 12px; opacity: .8; }
@keyframes belt { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .belt-track { animation: none; } }
.beltline.dark { background: var(--card); color: var(--gold); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ============================================================
   SECTIONS — each one gets its own identity:
   Programs = poster wall · Today = red LED board · About = bone "canvas" light section + black stat band ·
   Schedule = charcoal timetable · Coaches = roster list + sticky portrait · Reviews = gold marquee wall ·
   Gallery = full-bleed masonry · Free class = photo backdrop + light form card · Boxing for = vertical tabs ·
   Camp = photo band with overlapping price cards · Areas = distance rings + chips · Contact = map with floating card
   ============================================================ */
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.split { display: grid; grid-template-columns: 1fr auto; gap: 24px 60px; align-items: end; max-width: none; }
.section-head.split .lead { max-width: 44ch; margin: 0; }
.section-head .kicker-num { display: inline-block; font-family: var(--display); font-weight: 900; font-size: 13px; letter-spacing: .1em; color: var(--red-2); margin-right: 10px; }
.btn-black { background: #0a0a0a; color: var(--gold); border-color: #0a0a0a; }
.btn-black:hover { background: #1c1c1c; }

/* Light "canvas" theme (bone) */
.section-light { background: #ece6d8; color: #141210; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='97' viewBox='0 0 56 97'%3E%3Cg fill='none' stroke='%23000000' stroke-opacity='.05' stroke-width='1.2'%3E%3Cpath d='M28 1 55 16.5v31L28 63 1 47.5v-31z'/%3E%3Cpath d='M28 49.5 55 65v31L28 111 1 96V65z'/%3E%3C/g%3E%3C/svg%3E"); background-size: 56px 97px; }
.section-light h2, .section-light h3, .section-light h4 { color: #141210; }
.section-light .gold { color: var(--gold-3); }
.section-light .eyebrow { color: var(--gold-3); }
.section-light .eyebrow::before { background: var(--gold-3); }
.section-light .lead, .section-light p { color: #3d3a34; }
.section-light strong { color: #141210; }
.section-light .btn-outline-gold { color: #141210; border-color: rgba(20, 18, 16, .4); }
.section-light .btn-outline-gold:hover { background: rgba(20, 18, 16, .06); border-color: #141210; }
.section-light .btn-gold { box-shadow: 0 12px 30px -14px rgba(120, 90, 20, .6); }

/* ---------- Experience layer: cursor · magnetic · split text · mobile CTA · watermarks ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 200; pointer-events: none; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; border: 1.5px solid var(--gold); background: rgba(201, 168, 76, .12); opacity: 0; transition: width .25s ease, height .25s ease, margin .25s ease, background .25s ease, opacity .3s ease; mix-blend-mode: difference; display: none; }
.cursor.on { opacity: 1; }
.cursor.hover { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: rgba(201, 168, 76, .18); }
.cursor.hide { opacity: 0; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: .08em; margin-bottom: -.08em; }
.split .w > span { display: inline-block; transform: translateY(110%); transition: transform .9s cubic-bezier(.2,.75,.2,1); }
.split.in .w > span, .reveal.in .split .w > span, .split.in .w > span { transform: none; }
.split.in .w:nth-child(2) > span { transition-delay: .06s; } .split.in .w:nth-child(3) > span { transition-delay: .12s; } .split.in .w:nth-child(4) > span { transition-delay: .18s; } .split.in .w:nth-child(5) > span { transition-delay: .24s; } .split.in .w:nth-child(6) > span { transition-delay: .3s; } .split.in .w:nth-child(7) > span { transition-delay: .36s; } .split.in .w:nth-child(8) > span { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) { .split .w > span { transform: none !important; transition: none; } }
.magnetic { will-change: transform; transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease; }
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 48; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(10, 10, 10, .9); border-top: 1px solid var(--line-2); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transform: translateY(110%); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.mobile-cta.show { transform: none; }
.mobile-cta .btn { flex: 1; padding: 15px 12px; }
.mobile-cta .btn-ghost { flex: 0 0 auto; }
@media (max-width: 900px) { .mobile-cta { display: flex; } }
.tilt { transform-style: preserve-3d; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.tilt.is-tilting { transition: transform .08s linear; }

.jump-veil { position: fixed; inset: 0; z-index: 90; background: var(--bg); opacity: 0; pointer-events: none; transition: opacity .28s ease; }
.jump-veil.on { opacity: 1; pointer-events: auto; }

/* ---------- Programs — pinned horizontal journey ---------- */
.hscroll { position: relative; background: var(--bg); }
.hs-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.hs-track { display: flex; align-items: stretch; gap: 22px; padding: 0 var(--gutter); height: min(78vh, 720px); will-change: transform; }
.hs-intro, .hs-outro { flex: 0 0 auto; width: min(560px, 38vw); display: flex; flex-direction: column; justify-content: center; padding-right: 20px; }
.hs-intro h2 { font-size: clamp(50px, 6.6vw, 110px); }
.hs-intro h2 .gold { display: block; }
.hs-intro .lead { margin-top: 20px; }
.hs-hint { display: inline-flex; align-items: center; gap: 12px; margin: 34px 0 0; font: 700 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold); }
.hs-hint span { width: 54px; height: 1px; background: var(--gold); position: relative; overflow: hidden; }
.hs-hint span::after { content: ""; position: absolute; inset: 0; background: var(--white); transform: translateX(-100%); animation: hs-arrow 1.8s ease-in-out infinite; }
@keyframes hs-arrow { to { transform: translateX(100%); } }
.hs-outro { width: min(640px, 44vw); padding-left: 30px; }
.hs-outro .display { font-size: clamp(50px, 6vw, 96px); margin: 8px 0 24px; }
.hs-posters { display: contents; }
.hs-track .poster { flex: 0 0 auto; width: clamp(360px, 30vw, 460px); aspect-ratio: auto; height: 100%; }
.hs-progress { position: absolute; left: var(--gutter); right: var(--gutter); bottom: 26px; height: 2px; background: rgba(255,255,255,.1); }
.hs-progress span { display: block; height: 100%; width: 0; background: var(--gold); }
@media (max-width: 900px) {
  .hscroll { padding: clamp(70px, 9vw, 110px) 0 40px; }
  .hs-sticky { position: static; height: auto; overflow: visible; display: block; }
  .hs-track { display: block; height: auto; padding: 0; transform: none !important; }
  .hs-intro, .hs-outro { width: auto; padding: 0 var(--gutter); }
  .hs-outro { margin-top: 30px; }
  .hs-hint { display: none; }
  .hs-posters { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 26px var(--gutter) 10px; scrollbar-width: none; }
  .hs-posters::-webkit-scrollbar { display: none; }
  .hs-track .poster { flex: 0 0 78vw; max-width: 340px; width: auto; height: auto; aspect-ratio: 3 / 4; scroll-snap-align: start; }
  .hs-progress { display: none; }
}

/* ---------- Class finder ---------- */
.finder { background: #111214; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background-image: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(201, 168, 76, .08), transparent 70%); }
.finder-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.finder-intro h2 { font-size: clamp(46px, 5.6vw, 92px); }
.finder-intro .lead { margin-top: 20px; }
.finder-trust { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; }
.finder-trust li { display: flex; align-items: center; gap: 12px; font: 600 14.5px/1.3 var(--sans); color: var(--text-2); }
.finder-trust li::before { content: ""; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); flex: none; }
.finder-panel { background: #16171a; border: 1px solid var(--line-2); border-radius: 6px; padding: clamp(22px, 3vw, 36px); box-shadow: 0 40px 80px -40px rgba(0,0,0,.9); }
.finder-step + .finder-step { margin-top: 22px; }
.finder-q { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 24px; color: var(--white); margin: 0 0 12px; }
.finder-q span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #0a0a0a; font: 900 13px/1 var(--sans); }
.finder-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.finder-opts button { background: rgba(255,255,255,.03); color: var(--text); border: 1px solid var(--line-2); border-radius: 999px; padding: 12px 16px; cursor: pointer; font: 600 14px/1 var(--sans); transition: all .25s ease; }
.finder-opts button:hover { border-color: var(--gold); color: var(--white); }
.finder-opts button.on { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.finder-opts button:disabled { opacity: .35; cursor: not-allowed; }
.finder-result { margin-top: 24px; padding-top: 24px; border-top: 1px dashed var(--line-2); animation: fadeUp .5s ease; }
.finder-tag { display: inline-block; font: 800 10.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: #0a0a0a; background: var(--gold); padding: 6px 8px; border-radius: 2px; margin-bottom: 12px; }
.finder-result h3 { font-size: clamp(34px, 3.4vw, 50px); }
.finder-why { color: var(--text-2); font-size: 15px; margin: 8px 0 0; max-width: 60ch; }
.finder-next { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2px; margin: 18px 0; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.finder-next div { background: #0f1012; padding: 14px 16px; }
.finder-next small { display: block; font: 700 10.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); margin-bottom: 6px; }
.finder-next strong { font-family: var(--display); font-weight: 900; font-size: 24px; letter-spacing: .02em; color: var(--white); text-transform: uppercase; }
.finder-note { font-size: 13px; color: var(--muted); margin: 14px 0 0; }
@media (max-width: 900px) { .finder-grid { grid-template-columns: 1fr; } .finder-next { grid-template-columns: 1fr 1fr 1fr; } .finder-q { font-size: 20px; } }
@media (max-width: 640px) { .finder-next { grid-template-columns: 1fr; } .finder-next strong { font-size: 20px; } }

/* ---------- Programs — poster wall ---------- */
.programs { background: var(--bg); padding-bottom: 0; }
.poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.poster { position: relative; aspect-ratio: 3 / 4.1; overflow: hidden; border-radius: 6px; background: var(--card); display: flex; align-items: flex-end; isolation: isolate; }
.poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .6s ease; filter: saturate(.85) contrast(1.05); z-index: 0; }
.poster::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(7,7,7,.96) 0%, rgba(7,7,7,.72) 34%, rgba(7,7,7,.12) 62%, rgba(7,7,7,.25) 100%); transition: opacity .5s ease; }
.poster:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.05); }
.poster-body { position: relative; z-index: 2; padding: 26px 24px 26px; width: 100%; }
.poster .idx { font-family: var(--display); font-weight: 900; font-size: 15px; letter-spacing: .12em; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.poster .idx::after { content: ""; flex: 1; height: 1px; background: rgba(201, 168, 76, .45); }
.poster h3 { font-size: clamp(30px, 2.6vw, 40px); line-height: .92; margin-bottom: 8px; }
.poster .meta { font: 700 11px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.poster .desc { color: rgba(242, 240, 235, .86); font-size: 14.5px; line-height: 1.5; margin: 0 0 14px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .6s cubic-bezier(.2,.7,.2,1), opacity .5s ease .1s; }
.poster:hover .desc, .poster:focus-within .desc { max-height: 200px; opacity: 1; }
.poster .link-arrow { font-size: 12px; }
.poster.kids .idx, .poster.kids .meta { color: var(--led); }
.poster.kids .idx::after { background: rgba(238, 243, 255, .35); }
.programs-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 26px; padding: 22px 0 60px; border-top: 1px solid var(--line); }
.programs-foot p { margin: 0; color: var(--text-2); font-size: 15px; }
.programs-foot p b { color: var(--white); }

/* ---------- Today's classes — red LED board ---------- */
.today { background: linear-gradient(90deg, #7c0a1f 0%, #a10f2b 60%, #7c0a1f 100%); color: var(--white); padding: 30px 0; position: relative; overflow: hidden; }
.today::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(0,0,0,0) 0 3px, rgba(0,0,0,.08) 3px 4px); pointer-events: none; }
.today::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); }
.today .wrap { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; }
.today-label { font: 700 11.5px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.today-label strong { display: block; font-family: var(--display); font-weight: 900; font-size: 42px; letter-spacing: .02em; color: var(--white); margin-top: 6px; line-height: 1; }
.today-status { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; font: 700 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--white); }
.today-status i { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 4px rgba(61, 220, 132, .25); }
.today-status.closed i { background: #ffd166; box-shadow: 0 0 0 4px rgba(255, 209, 102, .25); }
.today-list { display: flex; gap: 8px; flex-wrap: wrap; }
.today-chip { display: inline-flex; align-items: center; gap: 10px; padding: 10px 13px; border-radius: 3px; font: 600 13px/1 var(--sans); color: var(--white); background: rgba(0, 0, 0, .32); border: 1px solid rgba(255, 255, 255, .12); }
.today-chip .t { color: var(--gold-2); font-weight: 800; font-family: var(--display); font-size: 16px; letter-spacing: .03em; }
.today-chip.kids .t { color: var(--led); }
.today-chip.live { background: rgba(0, 0, 0, .55); border-color: rgba(255, 255, 255, .5); }
.today-chip.live::before { content: "LIVE"; font: 900 9px/1 var(--sans); letter-spacing: .16em; color: #ff8fa3; }
.today-chip.next { border-color: rgba(218, 165, 32, .8); }
.today-chip.next::after { content: "NEXT"; font: 900 9px/1 var(--sans); letter-spacing: .16em; color: var(--gold-2); }
.today-empty { color: rgba(255,255,255,.85); font-size: 15px; margin: 0; }
.today .btn { background: var(--white); color: #7c0a1f; border-color: var(--white); }
.today .btn:hover { background: #ffe9ec; }

/* ---------- About — bone "canvas" section ---------- */
.about { padding-bottom: 0; }
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 100px); align-items: center; padding-bottom: clamp(70px, 8vw, 120px); }
.about-text h2 { margin: 0 0 28px; font-size: clamp(46px, 6vw, 96px); }
.about-text h2 .gold { display: block; }
.about-text p { font-size: 17.5px; max-width: 58ch; }
.about-quote { margin: 26px 0 30px; padding: 22px 26px; border-left: 4px solid var(--red); background: rgba(20, 18, 16, .05); font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: clamp(22px, 2.2vw, 30px); line-height: 1; letter-spacing: .01em; color: #141210; }
.about-quote small { display: block; margin-top: 10px; font: 700 11px/1 var(--sans); letter-spacing: .2em; color: var(--gold-3); }
.about-photo { margin: 0; position: relative; }
.about-photo img { border-radius: 4px; box-shadow: 0 40px 80px -40px rgba(20, 18, 16, .55); aspect-ratio: 4 / 5; object-fit: cover; }
.about-photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--gold); border-radius: 4px; z-index: -1; }
.about-photo .stamp { position: absolute; left: -22px; bottom: 34px; background: var(--red); color: var(--white); padding: 14px 18px; border-radius: 3px; font-family: var(--display); font-weight: 900; font-size: 26px; line-height: 1; text-transform: uppercase; letter-spacing: .02em; box-shadow: 0 20px 40px -20px rgba(0,0,0,.6); }
.about-photo .stamp small { display: block; font: 700 10px/1 var(--sans); letter-spacing: .2em; margin-top: 6px; color: rgba(255,255,255,.85); }
.stat-band { background: var(--black); color: var(--white); border-top: 3px solid var(--gold); }
.stat-band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-tile { padding: 40px 30px 40px 0; border-right: 1px solid var(--line); }
.stat-tile:last-child { border-right: 0; }
.stat-tile + .stat-tile { padding-left: 30px; }
.stat-tile .num { font: 900 clamp(48px, 5.4vw, 84px)/.95 var(--display); letter-spacing: .01em; text-transform: uppercase; color: var(--gold); display: block; margin: 0; }
.stat-tile span:not(.num) { display: block; font: 700 12px/1.3 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); margin-top: 12px; }
.values { background: #141210; color: var(--white); border-top: 1px solid var(--line); }
.values .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.values div { padding: 26px 30px 30px 0; border-right: 1px solid var(--line); }
.values div + div { padding-left: 30px; }
.values div:last-child { border-right: 0; }
.values h4 { color: var(--gold); margin-bottom: 8px; }
.values p { color: var(--text-2); font-size: 15px; margin: 0; }

/* ---------- Schedule — timetable board ---------- */
.schedule { background: #111214; border-top: 1px solid var(--line); position: relative; }
.schedule::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--red), var(--led)); }
.sched-table-wrap { display: block; overflow-x: auto; border: 1px solid var(--line-2); border-radius: 4px; background: #0c0d0f; }
.sched-table { width: 100%; border-collapse: separate; border-spacing: 0; min-width: 900px; }
.sched-table th, .sched-table td { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); vertical-align: top; }
.sched-table th:last-child, .sched-table td:last-child { border-right: 0; }
.sched-table thead th { position: sticky; top: 0; background: #16171a; padding: 16px 14px; text-align: left; font: 800 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); }
.sched-table thead th.is-today { color: var(--white); background: #1c1a14; box-shadow: inset 0 -3px 0 var(--gold); }
.sched-table thead th.is-today::after { content: "Today"; margin-left: 8px; padding: 3px 6px; background: var(--red); color: var(--white); border-radius: 2px; font-size: 8.5px; letter-spacing: .12em; vertical-align: middle; }
.sched-table th.time { width: 112px; font-family: var(--display); font-weight: 900; font-size: 22px; letter-spacing: .02em; color: var(--white); padding: 12px 14px; background: #101113; text-transform: uppercase; }
.sched-table th.time small { display: block; font: 700 10px/1 var(--sans); letter-spacing: .16em; color: var(--muted); margin-top: 4px; }
.sched-table td { padding: 8px; height: 62px; }
.sched-table td.is-today { background: rgba(201, 168, 76, .05); }
.sched-block { display: block; height: 100%; padding: 10px 12px; border-radius: 3px; border-left: 3px solid var(--gold); background: rgba(201, 168, 76, .1); color: var(--text); font: 600 13px/1.3 var(--sans); }
.sched-block small { display: block; font: 700 10.5px/1 var(--sans); letter-spacing: .1em; color: var(--text-2); margin-top: 5px; text-transform: uppercase; }
.sched-block.kids { border-left-color: var(--led); background: rgba(238, 243, 255, .07); }
.sched-block.fightfit { border-left-color: var(--red-2); background: rgba(224, 35, 63, .1); }
.sched-block.live { outline: 1px solid var(--red-2); background: rgba(224, 35, 63, .18); }
.sched-block.live small::after { content: " · LIVE NOW"; color: var(--red-2); font-weight: 900; }
.sched-block.next small::after { content: " · UP NEXT"; color: var(--gold); font-weight: 900; }
.sched-table td.rest { color: var(--muted); font-size: 12.5px; text-align: center; vertical-align: middle; }
.sched-mobile { display: none; }
.sched-tabs { display: flex; gap: 2px; border: 1px solid var(--line); background: var(--line); margin-bottom: 2px; overflow-x: auto; }
.sched-tab { flex: 1; min-width: 64px; background: var(--card); color: var(--text-2); border: 0; padding: 16px 8px; cursor: pointer; font: 800 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; position: relative; transition: background .25s ease, color .25s ease; }
.sched-tab.active { background: var(--gold); color: #0a0a0a; }
.sched-tab.today-tab:not(.active)::after { content: ""; position: absolute; top: 8px; right: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--red-2); }
.sched-body { border: 1px solid var(--line); background: var(--card); padding: 18px; min-height: 200px; }
.sched-period { margin-bottom: 20px; }
.sched-period:last-child { margin-bottom: 0; }
.sched-period-label { display: flex; align-items: center; gap: 12px; font: 700 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.sched-period-label::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
.sched-cards { display: grid; grid-template-columns: 1fr; gap: 8px; }
.sched-card { display: grid; grid-template-columns: 4px 1fr; gap: 14px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.sched-card .bar { background: var(--gold); }
.sched-card.kids .bar { background: var(--led); }
.sched-card.fightfit .bar { background: var(--red-2); }
.sched-card .body { padding: 12px 14px 12px 0; }
.sched-card .time { font-family: var(--display); font-weight: 900; font-size: 24px; line-height: 1; color: var(--white); letter-spacing: .02em; }
.sched-card .time small { font: 700 10.5px/1 var(--sans); letter-spacing: .1em; color: var(--text-2); margin-left: 6px; }
.sched-card .name { font: 600 14px/1.3 var(--sans); color: var(--text-2); margin-top: 6px; }
.sched-card.live { border-color: rgba(200, 16, 46, .7); }
.sched-card.live .name::after { content: "Live now"; margin-left: 8px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--red-2); font-weight: 800; }
.sched-card.next { border-color: rgba(201, 168, 76, .7); }
.sched-card.next .name::after { content: "Up next"; margin-left: 8px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.sched-empty { text-align: center; padding: 40px 20px; color: var(--text-2); }
.sched-empty h3 { color: var(--white); margin-bottom: 8px; }
.sched-foot { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 22px; }
.sched-legend { display: flex; flex-wrap: wrap; gap: 20px; font: 600 12.5px/1 var(--sans); letter-spacing: .06em; color: var(--text-2); }
.sched-legend span { display: inline-flex; align-items: center; gap: 8px; }
.sched-legend i { width: 12px; height: 12px; border-radius: 2px; background: var(--gold); }
.sched-legend i.kids { background: var(--led); } .sched-legend i.ff { background: var(--red-2); }
.hours-strip { display: flex; flex-wrap: wrap; gap: 10px 34px; font: 600 14px/1.4 var(--sans); color: var(--text-2); }
.hours-strip b { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: .02em; color: var(--white); margin-right: 8px; }

/* ---------- Coaches — roster ---------- */
.coaches { background: var(--bg); }
.owner-feature { display: grid; grid-template-columns: 380px 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; padding: 0 0 clamp(60px, 7vw, 100px); margin-bottom: clamp(50px, 6vw, 80px); border-bottom: 1px solid var(--line); }
.owner-photo { position: relative; margin: 0; }
.owner-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 4px; }
.owner-photo::after { content: ""; position: absolute; left: -14px; top: 22px; bottom: -14px; width: 6px; background: var(--red); border-radius: 3px; }
.owner-feature h3 { font-size: clamp(44px, 5vw, 76px); margin: 4px 0 8px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 20px; }
.tag { display: inline-block; padding: 7px 10px; border: 1px solid rgba(201, 168, 76, .45); color: var(--gold); border-radius: 2px; font: 700 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.owner-feature p { color: var(--text-2); font-size: 16.5px; max-width: 64ch; }
.roster { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.roster-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-2); }
.roster-item { border-bottom: 1px solid var(--line-2); }
.roster-head { width: 100%; background: none; border: 0; color: inherit; text-align: left; cursor: pointer; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 18px; padding: 22px 0; transition: padding .3s ease; }
.roster-head:hover .roster-name, .roster-item.is-active .roster-name { color: var(--gold); }
.roster-num { font-family: var(--display); font-weight: 900; font-size: 15px; letter-spacing: .1em; color: var(--muted); }
.roster-item.is-active .roster-num { color: var(--red-2); }
.roster-name { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: clamp(30px, 3.4vw, 50px); line-height: .95; color: var(--white); transition: color .25s ease; }
.roster-name .nick { display: inline-block; margin-left: 12px; font-size: .45em; color: var(--red-2); letter-spacing: .06em; vertical-align: middle; }
.roster-role { font: 700 11px/1.3 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); text-align: right; max-width: 150px; }
.roster-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s cubic-bezier(.2,.7,.2,1); }
.roster-item.is-active .roster-body { grid-template-rows: 1fr; }
.roster-inner { overflow: hidden; }
.roster-inner > * { margin-left: 72px; }
.roster-inner .tags { margin-top: 0; }
.roster-inner .short { color: var(--text); font-size: 16px; }
.roster-inner details { margin: 8px 0 26px; }
.roster-inner summary { list-style: none; cursor: pointer; font: 700 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.roster-inner summary::-webkit-details-marker { display: none; }
.roster-inner summary::after { content: "+"; font-size: 16px; }
.roster-inner details[open] summary::after { content: "–"; }
.roster-inner details p { color: var(--text-2); font-size: 14.5px; margin-top: 12px; max-width: 70ch; }
.roster-mimg { display: none; }
.roster-stage { position: sticky; top: 96px; }
.roster-stage .frame { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; background: var(--card); }
.roster-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; opacity: 0; transition: opacity .5s ease, transform .9s cubic-bezier(.2,.7,.2,1); transform: scale(1.03); }
.roster-stage img.on { opacity: 1; transform: none; }
.roster-stage .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,7,7,.85), rgba(7,7,7,0) 45%); }
.roster-caption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; }
.roster-caption strong { display: block; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 34px; line-height: 1; color: var(--white); }
.roster-caption span { font: 700 11px/1.3 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ---------- Testimonials — gold marquee wall ---------- */
.testimonials { background: var(--gold); color: #0a0a0a; padding: clamp(70px, 8vw, 120px) 0 clamp(60px, 7vw, 100px); overflow: hidden; }
.testimonials .section-head { margin-bottom: 40px; }
.testimonials .eyebrow { color: #0a0a0a; }
.testimonials .eyebrow::before { background: #0a0a0a; }
.testimonials h2 { color: #0a0a0a; }
.testimonials .lead { color: rgba(10,10,10,.75); }
.big-stars { font-size: clamp(30px, 3.6vw, 52px); letter-spacing: 6px; color: #0a0a0a; line-height: 1; margin-bottom: 14px; }
.marquee-row { display: flex; gap: 14px; width: max-content; padding: 7px 0; animation: belt 70s linear infinite; }
.marquee-row.reverse { animation-direction: reverse; animation-duration: 82s; }
.marquee-rows:hover .marquee-row { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marquee-row { animation: none; flex-wrap: wrap; width: auto; } }
.testi { width: 400px; flex: none; background: #0a0a0a; color: var(--text); border-radius: 6px; padding: 26px 26px 24px; display: flex; flex-direction: column; box-shadow: 0 30px 50px -34px rgba(0,0,0,.6); }
.testi .stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; margin-bottom: 14px; }
.testi blockquote { margin: 0; flex: 1; font-size: 15px; line-height: 1.5; color: var(--text); white-space: normal; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi .avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold); font: 800 12px/1 var(--sans); letter-spacing: .06em; border: 1px solid rgba(201, 168, 76, .4); }
.testi .who strong { display: block; font-size: 14px; color: var(--white); }
.testi .who small { font-size: 12px; color: var(--text-2); letter-spacing: .04em; }
.testi-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 34px; }
.testi-foot p { margin: 0; color: rgba(10,10,10,.8); font-weight: 600; font-size: 15px; }
.testimonials .btn-black { background: #0a0a0a; color: var(--gold); border-color: #0a0a0a; }

/* ---------- Gallery — full-bleed masonry ---------- */
.gallery { background: var(--bg); padding-bottom: 0; }
.gallery .section-head.split { margin-bottom: 30px; }
.gal-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.gal-filters button { background: transparent; color: var(--text-2); border: 1px solid var(--line-2); border-radius: 999px; padding: 10px 16px; cursor: pointer; font: 700 11.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; transition: all .25s ease; }
.gal-filters button.active, .gal-filters button:hover { border-color: var(--gold); color: #0a0a0a; background: var(--gold); }
.gal-bleed { width: 100vw; margin-left: calc(50% - 50vw); }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(180px, 20vw, 300px); gap: 4px; }
.gal-grid figure { margin: 0; position: relative; overflow: hidden; background: var(--card); }
.gal-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease; filter: saturate(.92); }
.gal-grid figure:hover img { transform: scale(1.05); filter: saturate(1.05); }
.gal-grid figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; background: linear-gradient(0deg, rgba(7,7,7,.88), rgba(7,7,7,0)); font: 700 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--white); opacity: 0; transform: translateY(6px); transition: opacity .35s ease, transform .35s ease; }
.gal-grid figure:hover figcaption { opacity: 1; transform: none; }
.gal-grid figcaption i { font-style: normal; color: var(--gold); margin-right: 8px; }
.gal-grid .tall { grid-row: span 2; }
.gal-grid .wide { grid-column: span 2; }
.gal-grid figure.hide { display: none; }
.gallery-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding: 30px 0 clamp(70px, 8vw, 120px); }
.gallery-foot p { margin: 0; color: var(--text-2); font-size: 15px; }

/* ---------- Free class — photo backdrop + light form card ---------- */
.free { position: relative; background: #0a0a0a; border-top: 0; overflow: hidden; }
.free .backdrop { position: absolute; inset: 0; background: url("assets/img/cta-photo.jpg") center 30% / cover no-repeat; opacity: .28; filter: saturate(.7); }
.free::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.92) 0%, rgba(10,10,10,.75) 45%, rgba(10,10,10,.5) 100%), linear-gradient(0deg, rgba(10,10,10,.9), rgba(10,10,10,0) 40%); }
.free .wrap { position: relative; }
.free-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.free h2 .gold { display: block; }
.free .lead { margin-top: 22px; }
.perks { list-style: none; margin: 26px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.perks li { display: flex; align-items: center; gap: 12px; font: 600 15px/1.3 var(--sans); color: var(--text); }
.perks li::before { content: "✓"; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #0a0a0a; font-size: 12px; font-weight: 900; flex: none; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); margin-top: 34px; backdrop-filter: blur(6px); }
.steps div { background: rgba(10, 10, 10, .72); padding: 20px 22px; }
.steps .num { font-size: 30px; display: block; margin-bottom: 6px; }
.steps h4 { margin-bottom: 6px; font-size: 19px; }
.steps p { color: var(--text-2); font-size: 14px; margin: 0; }
.form-card { background: #f3eee3; color: #141210; border: 0; padding: clamp(24px, 3vw, 40px); position: relative; border-radius: 6px; box-shadow: 0 50px 100px -40px rgba(0,0,0,.9); }
.form-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--gold-3)); border-radius: 6px 6px 0 0; }
.form-card h3 { margin-bottom: 6px; color: #141210; }
.form-card .lead { font-size: 15px; margin: 0 0 22px; color: #514c44; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font: 700 11px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: #6d675d; }
.field input, .field select, .field textarea { background: #fff; color: #141210; border: 1px solid #cfc7b7; border-radius: 3px; padding: 14px; font: 500 15px/1.3 var(--sans); width: 100%; transition: border-color .25s ease, box-shadow .25s ease; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-3); box-shadow: 0 0 0 3px rgba(201, 168, 76, .25); }
.field input::placeholder { color: #a39c8f; }
.radio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.radio-row label { display: block; position: relative; overflow: hidden; border: 1px solid #cfc7b7; background: #fff; border-radius: 3px; padding: 14px; cursor: pointer; transition: border-color .25s ease, background .25s ease; font: 500 15px/1.3 var(--sans); letter-spacing: 0; text-transform: none; color: #141210; }
.radio-row label:has(input:checked) { border-color: var(--gold-3); background: #fbf4e0; box-shadow: inset 0 0 0 1px var(--gold-3); }
.radio-row input { position: absolute; left: 0; top: 0; width: 1px; height: 1px; padding: 0; margin: 0; opacity: 0; pointer-events: none; }
.radio-row strong { display: block; font-size: 15px; color: #141210; }
.radio-row small { font-size: 12.5px; color: #6d675d; }
.form-note { font-size: 12.5px; color: #7d766a; margin: 14px 0 0; }
.form-done { margin-top: 18px; padding: 16px; border: 1px solid rgba(158, 131, 46, .5); border-radius: 3px; background: #fbf4e0; font-size: 15px; color: #141210; }
.form-done strong { display: block; color: var(--gold-3); font-family: var(--display); font-size: 26px; text-transform: uppercase; margin-bottom: 4px; }
form.sent .form-grid, form.sent .btn, form.sent .form-note { display: none; }

/* ---------- Boxing for… — vertical tabs ---------- */
.forwho { background: #111214; border-top: 1px solid var(--line); }
.forwho h2 { font-size: clamp(40px, 5.2vw, 80px); }
.tabs { display: grid; grid-template-columns: 340px 1fr; gap: 2px; border: 1px solid var(--line-2); border-radius: 4px; overflow: hidden; background: var(--line); }
.tab-list { display: flex; flex-direction: column; background: #0c0d0f; }
.tab-list button { text-align: left; background: none; border: 0; border-bottom: 1px solid var(--line); color: var(--text-2); padding: 20px 22px; cursor: pointer; font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 30px; line-height: 1; letter-spacing: .01em; position: relative; transition: color .25s ease, background .25s ease, padding .3s ease; }
.tab-list button small { display: block; font: 700 10.5px/1.3 var(--sans); letter-spacing: .16em; color: var(--muted); margin-top: 6px; }
.tab-list button:hover { color: var(--white); background: #121316; }
.tab-list button[aria-selected="true"] { color: var(--white); background: #16171a; padding-left: 30px; }
.tab-list button[aria-selected="true"]::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.tab-list button[aria-selected="true"] small { color: var(--gold); }
.tab-panels { background: #16171a; padding: clamp(26px, 3.5vw, 50px); position: relative; min-height: 420px; }
.tab-panel { display: none; animation: fadeUp .5s ease; }
.tab-panel.on { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tab-panel h3 { font-size: clamp(34px, 3.8vw, 56px); margin-bottom: 10px; }
.tab-panel .kicker { color: var(--gold); font-weight: 600; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.4; margin-bottom: 18px; max-width: 60ch; }
.tab-panel p { color: var(--text-2); font-size: 15.5px; max-width: 70ch; }
.tab-panel .cta-row { margin-top: 20px; }

/* ---------- Camp — photo band + overlapping price cards ---------- */
.camp { background: var(--bg); padding: 0 0 clamp(84px, 10vw, 150px); }
.camp-band { position: relative; padding: clamp(90px, 11vw, 160px) 0 clamp(150px, 15vw, 220px); background: #0a0a0a url("assets/img/gal-6.webp") center 32% / cover no-repeat; }
.camp-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,.94) 0%, rgba(10,10,10,.8) 50%, rgba(10,10,10,.55) 100%), linear-gradient(0deg, var(--bg) 0%, rgba(10,10,10,0) 40%); }
.camp-band .wrap { position: relative; }
.camp-band h2 { font-size: clamp(44px, 6vw, 96px); max-width: 14ch; }
.camp-band h2 .gold { display: block; }
.camp-band .lead { margin-top: 22px; max-width: 62ch; }
.camp-facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.camp-facts li { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(10,10,10,.5); font: 700 12.5px/1 var(--sans); letter-spacing: .06em; color: var(--white); backdrop-filter: blur(6px); }
.camp-facts li b { color: var(--gold); font-weight: 900; }
.camp-pricing { position: relative; margin-top: clamp(-120px, -10vw, -80px); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.price { background: #16171a; border: 1px solid var(--line-2); border-radius: 6px; padding: 28px 24px 26px; position: relative; display: flex; flex-direction: column; box-shadow: 0 40px 70px -40px rgba(0,0,0,.9); }
.price.best { background: #1c1a14; border-color: rgba(201, 168, 76, .6); box-shadow: 0 0 0 1px rgba(201, 168, 76, .25), 0 40px 70px -40px rgba(0,0,0,.9); }
.price.best::before { content: "Best value"; position: absolute; top: 0; right: 18px; transform: translateY(-50%); background: var(--gold); color: #0a0a0a; font: 800 9.5px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; padding: 6px 8px; border-radius: 2px; }
.price .len { font: 700 11.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.price .amt { font-family: var(--display); font-weight: 900; font-size: 64px; line-height: 1; color: var(--white); margin: 12px 0 6px; }
.price .save { font-size: 12.5px; line-height: 1.4; color: var(--gold); font-weight: 700; min-height: 35px; }
.price p { color: var(--text-2); font-size: 14px; margin: 12px 0; flex: 1; }
.price ul { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 6px; }
.price li { font-size: 13.5px; color: var(--text); padding-left: 18px; position: relative; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.included { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 10px; --cols: 3; }
.included div { background: var(--bg-2); padding: 20px 22px; border: 1px solid var(--line); margin: 0 -1px -1px 0; }
.included.cols-5 { grid-template-columns: repeat(5, 1fr); --cols: 5; }
.included.cols-5 h4 { font-size: 16px; }
.included.cols-5 p { font-size: 13px; }
.included h4 { font-size: 17px; margin-bottom: 4px; }
.included p { color: var(--text-2); font-size: 13.5px; margin: 0; }
.camp-foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; margin-top: 26px; }
.camp-foot p { margin: 0; color: var(--text-2); font-size: 15px; max-width: 60ch; }
.faq { margin-top: clamp(50px, 6vw, 80px); border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--display); font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: .01em; color: var(--white); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 30px; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-2); margin: -6px 0 22px; max-width: 70ch; }

/* ---------- Areas — distance rings + chips ---------- */
.areas { background: var(--black); border-top: 1px solid var(--line); background-image: radial-gradient(ellipse 60% 50% at 20% 50%, rgba(201, 168, 76, .07), transparent 70%); }
.areas-grid { display: grid; grid-template-columns: 420px 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.rings { position: relative; aspect-ratio: 1; max-width: 420px; }
.rings svg { width: 100%; height: 100%; display: block; }
.rings .ring { fill: none; stroke: rgba(255,255,255,.14); stroke-width: 1; }
.rings .ring.r1 { stroke: rgba(201, 168, 76, .7); stroke-dasharray: 3 5; }
.rings .ring.r2 { stroke: rgba(201, 168, 76, .4); }
.rings .ring.r3 { stroke: rgba(255,255,255,.18); }
.rings .lbl { fill: var(--text-2); font: 700 10px var(--sans); letter-spacing: 1.6px; text-transform: uppercase; }
.rings .lbl.gold { fill: var(--gold); }
.rings .core { fill: var(--gold); }
.rings .core-txt { fill: #0a0a0a; font: 900 22px var(--display); }
.rings .dot { fill: var(--white); }
.rings .dot.red { fill: var(--red-2); }
.rings .dot-lbl { fill: rgba(242, 240, 235, .85); font: 600 9.5px var(--sans); }
.ring-group { padding: 22px 0; border-top: 1px solid var(--line-2); }
.ring-group:last-child { border-bottom: 1px solid var(--line-2); }
.ring-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.ring-group h3 { font-size: 30px; }
.ring-group .sub { font: 700 11px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0; white-space: nowrap; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: 999px; font: 600 13.5px/1 var(--sans); color: var(--white); background: rgba(255,255,255,.02); transition: border-color .25s ease, background .25s ease; }
.chip small { font-size: 11px; color: var(--muted); letter-spacing: .04em; }
a.chip:hover { border-color: var(--gold); background: var(--gold-soft); }
a.chip small { color: var(--gold); }
.areas-foot { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.areas-foot p { margin: 0; color: var(--text-2); font-size: 15px; }

/* ---------- Contact — map with floating card ---------- */
.contact { background: var(--bg); padding: 0; position: relative; }
.contact .map { position: relative; height: max(76vh, 820px); background: var(--card); }
.contact .map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-card { position: absolute; left: var(--gutter); top: 50%; transform: translateY(-50%); z-index: 2; width: min(520px, calc(100% - 2 * var(--gutter))); background: rgba(10, 10, 10, .92); border: 1px solid var(--line-2); border-radius: 6px; padding: clamp(24px, 3vw, 40px); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 50px 100px -40px rgba(0,0,0,.9); }
.contact-card h2 { font-size: clamp(38px, 4vw, 60px); margin-bottom: 20px; }
.contact-card h2 .gold { display: block; }
.ci-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; }
.ci h4 { font: 700 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ci a, .ci p { font-size: 15.5px; color: var(--white); margin: 0; }
.ci .big { font-family: var(--display); font-weight: 900; font-size: 30px; letter-spacing: .02em; }
.ci small { display: block; color: var(--text-2); font-size: 13px; }
.ci.full { grid-column: 1 / -1; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 3px; display: grid; place-items: center; color: var(--white); transition: border-color .25s, color .25s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.contact-card .cta-row { margin-top: 22px; }
.map-note { position: absolute; right: 16px; bottom: 16px; z-index: 2; background: rgba(10,10,10,.85); border: 1px solid var(--line-2); padding: 12px 14px; font: 600 12.5px/1.4 var(--sans); color: var(--text); backdrop-filter: blur(6px); }
.map-note a { color: var(--gold); }

/* ---------- Footer ---------- */
footer { background: var(--black); border-top: 1px solid var(--line); padding: clamp(50px, 6vw, 80px) 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.foot-brand p { color: var(--text-2); font-size: 14.5px; max-width: 34ch; }
.foot-col h5 { font: 700 11.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.foot-col a { display: block; font-size: 14.5px; color: var(--text-2); padding: 5px 0; }
.foot-col a:hover { color: var(--white); }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.foot-bottom a { color: var(--text-2); }

/* ---------- Inner pages ---------- */
.page-hero { position: relative; padding: clamp(150px, 20vw, 240px) 0 clamp(60px, 8vw, 100px); background: var(--black); overflow: hidden; }
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,7,.35), rgba(7,7,7,.2) 40%, var(--bg) 100%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(54px, 8.5vw, 140px); }
.page-hero .lead { margin-top: 20px; }
.crumbs { font: 600 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 22px; }
.crumbs a { color: var(--gold); }
.crumbs i { font-style: normal; margin: 0 8px; opacity: .5; }
.prose p { color: var(--text-2); font-size: 17px; max-width: 70ch; }
.prose h2 { font-size: clamp(34px, 4vw, 56px); margin: 40px 0 18px; }
.prose h3 { margin: 30px 0 12px; }
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.sticky-card { position: sticky; top: 100px; }
.cta-band { background: var(--gold); color: #0a0a0a; padding: clamp(50px, 6vw, 80px) 0; }
.cta-band .wrap { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.cta-band h2 { color: #0a0a0a; font-size: clamp(40px, 5.5vw, 84px); }
.cta-band p { color: rgba(10,10,10,.75); font-size: 17px; margin: 10px 0 0; max-width: 56ch; }
/* Inner-page schedule wraps its table in the same board */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.testi-grid .testi { width: auto; }
.program-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.program { background: var(--card); padding: clamp(24px, 3vw, 40px); position: relative; display: flex; flex-direction: column; }
.program .idx { font-family: var(--display); font-weight: 900; font-size: 40px; color: rgba(255, 255, 255, .12); line-height: 1; margin-bottom: 24px; }
.program h3 { margin-bottom: 8px; }
.program .meta { font: 700 11px/1.5 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.program p { color: var(--text-2); font-size: 15px; flex: 1; }
.program .link-arrow { margin-top: 18px; }
.owner-card { display: grid; grid-template-columns: 380px 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.owner-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 4px; }
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.coach { background: var(--card); padding: 22px; display: flex; flex-direction: column; }
.coach img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 4px; }
.coach .role { font: 700 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 20px 0 6px; }
.coach .role .nick { color: var(--red-2); margin-left: 6px; }
.coach h3 { font-size: 34px; }
.coach .short { color: var(--text-2); font-size: 15px; margin: 12px 0 0; flex: 1; }
.coach details { margin-top: 14px; }
.coach summary { list-style: none; cursor: pointer; font: 700 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.coach summary::-webkit-details-marker { display: none; }
.coach details p { color: var(--text-2); font-size: 14.5px; margin-top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat-tile:nth-child(2) { border-right: 0; }
  .stat-tile:nth-child(3) { padding-left: 0; border-top: 1px solid var(--line); }
  .stat-tile:nth-child(4) { border-top: 1px solid var(--line); }
  .roster { grid-template-columns: 1fr; }
  .roster-stage { display: none; }
  .roster-mimg { display: block; width: min(300px, 100%); aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 4px; margin: 0 0 18px 72px; }
  .owner-feature, .owner-card { grid-template-columns: 300px 1fr; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .price-grid { grid-template-columns: repeat(3, 1fr); }
  .included, .included.cols-5 { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 320px 1fr; }
  .tabs { grid-template-columns: 280px 1fr; }
  .tab-list button { font-size: 26px; padding: 18px; }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav { gap: 14px; }
  .nav-links, .nav .btn-nav, .nav-tel { display: none; }
  .nav-toggle { display: block; }
  .section-head.split { grid-template-columns: 1fr; align-items: start; }
  .reveal-line { max-width: min(560px, 82vw); }
  .reveal-line.ml, .reveal-line.mr { top: auto; bottom: 9vh; transform: none; text-align: left; left: var(--gutter); right: var(--gutter); }
  .reveal-line.mr .cta-row { justify-content: flex-start; }
  .reveal-line.mr .spec-list li { flex-direction: row; }
  .reveal-line.center { max-width: 88vw; }
  .stage-shade, .stage-shade.shade-right, .stage-shade.shade-both { background: linear-gradient(0deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.55) 34%, rgba(7,7,7,0) 58%), linear-gradient(180deg, rgba(7,7,7,.6) 0%, rgba(7,7,7,0) 24%); }
  .hero .stage-shade { background: linear-gradient(0deg, rgba(7,7,7,.95) 0%, rgba(7,7,7,.6) 34%, rgba(7,7,7,0) 60%), linear-gradient(180deg, rgba(7,7,7,.6) 0%, rgba(7,7,7,0) 24%); }
  .hero-title { max-width: 92vw; bottom: 8vh; }
  .hero-title h1 { font-size: clamp(44px, 13.5vw, 96px); }
  .hero-title .lead { font-size: 15.5px; margin: 16px 0 20px; }
  .hero-side { display: none; }
  .hero-badge { top: 84px; right: var(--gutter); }
  .hero-mid .display { font-size: clamp(44px, 12.5vw, 90px); }
  .hero-end { max-width: 92vw; bottom: 8vh; }
  .hero-end .display { font-size: clamp(40px, 11.5vw, 80px); }
  .gym .display, .gloves .display { font-size: clamp(38px, 10.5vw, 76px); }
  .steps-inline { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px 16px; margin: 18px auto; }
  .steps-inline .num { font-size: 22px; }
  .steps-inline h4 { font-size: 16px; }
  .steps-inline p { font-size: 12.5px; }
  .reveal-line.center.low { bottom: 6vh; }
  .reveal-line.center.low .display { font-size: clamp(34px, 9.5vw, 64px); }
  /* programs → horizontal scroll-snap poster strip */
  .poster-grid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 10px; margin: 0 calc(-1 * var(--gutter)); scrollbar-width: none; }
  .poster-grid::-webkit-scrollbar { display: none; }
  .poster { flex: 0 0 78vw; max-width: 340px; scroll-snap-align: start; aspect-ratio: 3 / 4; }
  .poster .desc { max-height: none; opacity: 1; }
  .today .wrap { grid-template-columns: 1fr; gap: 16px; }
  .about-grid, .free-grid, .contact-grid, .two-col, .areas-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 460px; }
  .values .wrap { grid-template-columns: 1fr; }
  .values div { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; }
  .values div + div { padding-left: 0; }
  .values div:last-child { border-bottom: 0; }
  .sched-table-wrap { display: none; }
  .sched-mobile { display: block; }
  .sched-foot { grid-template-columns: 1fr; }
  .owner-feature, .owner-card { grid-template-columns: 1fr; }
  .owner-photo { max-width: 340px; }
  .owner-card img { max-width: 340px; }
  .roster-head { grid-template-columns: 40px 1fr; gap: 12px; padding: 18px 0; }
  .roster-role { grid-column: 2; text-align: left; max-width: none; }
  .roster-inner > * { margin-left: 0; }
  .roster-mimg { margin-left: 0; }
  .roster-name .nick { display: block; margin: 6px 0 0; }
  .testi { width: 320px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gal-grid .wide { grid-column: span 2; }
  .tabs { grid-template-columns: 1fr; }
  .tab-list { flex-direction: row; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--line-2); }
  .tab-list::-webkit-scrollbar { display: none; }
  .tab-list button { border-bottom: 0; border-right: 1px solid var(--line); white-space: nowrap; font-size: 22px; padding: 16px 18px; }
  .tab-list button[aria-selected="true"] { padding-left: 18px; }
  .tab-list button[aria-selected="true"]::before { left: 0; right: 0; top: auto; bottom: 0; width: auto; height: 4px; }
  .tab-list button small { display: none; }
  .tab-panels { min-height: 0; }
  .camp-band { padding-bottom: clamp(120px, 20vw, 180px); }
  .camp-pricing { margin-top: -80px; }
  .price-grid { grid-template-columns: 1fr; }
  .price .save:empty { display: none; }
  .contact .map { height: auto; min-height: 60vh; padding-top: 0; }
  .contact-card { position: relative; left: auto; top: auto; transform: none; width: auto; margin: 0 var(--gutter); border-radius: 6px 6px 0 0; }
  .contact .map iframe { position: relative; height: 380px; display: block; }
  .map-note { display: none; }
  .cta-band .wrap { grid-template-columns: 1fr; }
  .belt-track { font-size: 17px; }
  .sticky-card { position: static; }
  .rings { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .btn { white-space: normal; text-align: center; }
  .cta-row .btn { flex: 1 1 auto; }
  .stat-band .wrap { grid-template-columns: 1fr 1fr; }
  .stat-tile { padding: 24px 12px 24px 0; }
  .stat-tile:nth-child(even) { padding-left: 16px; }
  .stat-tile .num { font-size: 44px; }
  .eyebrow { font-size: 11px; letter-spacing: .16em; align-items: flex-start; }
  .eyebrow::before { margin-top: 5px; }
  .perks, .form-grid, .radio-row, .steps, .included, .included.cols-5, .foot-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .field.full { grid-column: auto; }
  .hero-badge { display: none; }
  .eb-more { display: none; }
  .steps-inline { grid-template-columns: 1fr 1fr; }
  .steps-inline p { display: none; }
  .steps-inline div { border-top: 0; padding-top: 4px; }
  h2 { font-size: clamp(40px, 11vw, 64px); }
  .sched-tab { min-width: 56px; padding: 14px 6px; font-size: 11px; }
  .today-label strong { font-size: 34px; }
  .roster-name { font-size: 30px; }
  .testi { width: 280px; padding: 20px; }
  .gal-grid { grid-auto-rows: 150px; }
  .contact-card { margin: 0; border-radius: 0; }
  .ci-grid { grid-template-columns: 1fr; }
  .camp-band h2 { max-width: none; }
  .tab-panel h3 { font-size: 34px; }
  .about-quote { font-size: 20px; }
}
