:root {
  --navy: #000000;
  --gold: #BC1E2D;
  --gold-light: #d42a3a;
  --cream: #F1F1F1;
  --white: #ffffff;
  --text: #000000;
  --text-muted: #444444;
  --border: #d9d9d9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 96px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  transition: height 0.3s, box-shadow 0.3s, padding 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); height: 72px; }
.nav-logo img { height: 60px; object-fit: contain; transition: height 0.3s; }
nav.scrolled .nav-logo img { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--navy); text-decoration: none; padding: 8px 14px; border-radius: 6px;
  background: none; border: none; cursor: pointer; display: flex; align-items: center;
  gap: 4px; transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover, .nav-links > li > button:hover { background: var(--cream); color: var(--gold); }
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > button::after { content: '▾'; font-size: 10px; opacity: 0.6; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 8px; margin-top: 4px;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-links > li:hover .dropdown, .nav-links > li:focus-within .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px; font-size: 13.5px; font-weight: 400;
  color: var(--text); text-decoration: none; border-radius: 6px; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }
.nav-links > li > a.nav-cta {
  background: var(--gold); color: var(--white); padding: 9px 18px; font-weight: 600;
  border-radius: 6px; margin-left: 6px; box-shadow: 0 2px 8px rgba(188,30,45,0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-links > li > a.nav-cta:hover {
  background: var(--navy); color: var(--white); transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.mobile-nav-cta {
  display: block; margin-top: 16px; padding: 14px 20px !important;
  background: var(--gold); color: var(--white) !important; font-weight: 600;
  text-align: center; border-radius: 8px; text-decoration: none;
}
.mobile-nav-cta:hover { background: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; min-height: 64vh;
  display: flex; align-items: flex-end; padding: 64px 0 60px;
  overflow: hidden; margin-top: 96px;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 35%;
  will-change: transform; transform: scale(1.0);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(188,30,45,0.22) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(105deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.30) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.80) 100%);
}
/* Staggered hero entrance */
.page-hero-content > * { transition: opacity 0.8s ease, transform 0.8s ease; }
html.js .page-hero-content:not(.in) > * { opacity: 0; transform: translateY(24px); }
.page-hero-content.in > *:nth-child(1) { transition-delay: 0.05s; }
.page-hero-content.in > *:nth-child(2) { transition-delay: 0.18s; }
.page-hero-content.in > *:nth-child(3) { transition-delay: 0.32s; }
.page-hero-content.in > *:nth-child(4) { transition-delay: 0.46s; }
.page-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 48px; }
.page-hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6.6vw, 86px);
  font-weight: 700; color: var(--white); line-height: 1.02; letter-spacing: -0.02em;
  margin-bottom: 18px; text-wrap: balance; text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.page-hero p { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 620px; line-height: 1.7; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.page-hero-eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.page-hero .hero-cta { margin-top: 26px; }

/* ── SECTIONS / TYPE ── */
section { padding: 80px 24px; }
.container { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.gold-rule { width: 48px; height: 3px; background: var(--gold); margin-bottom: 28px; border-radius: 2px; transition: width 0.8s cubic-bezier(.22,1,.36,1); }
html.js .gold-rule.reveal:not(.visible) { width: 0; }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.015em; margin-bottom: 20px;
  background: linear-gradient(135deg, #000000 0%, #BC1E2D 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lead { font-size: 17px; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }
p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 16px; }
.alt { background: var(--cream); }

/* ── BUTTONS ── */
.btn-gold, .btn-navy, .btn-outline, .btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 14px 32px; border-radius: 4px; cursor: pointer;
  margin-right: 12px; margin-bottom: 12px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s ease;
}
.btn-gold { background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 26px rgba(188,30,45,0.30); }
.btn-navy { background: var(--navy); color: var(--white); border: 1.5px solid var(--navy); }
.btn-navy:hover { background: #222; transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
.btn-outline { border: 1.5px solid var(--navy); color: var(--navy); padding: 13px 30px; }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,0.14); }
.btn-outline-white:hover { transform: translateY(-3px); }
.btn-gold:active, .btn-navy:active, .btn-outline:active, .btn-outline-white:active { transform: translateY(-1px); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); padding: 13px 30px; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── FEATURE BOX / GRID ── */
.feature-box {
  background: var(--cream); border-radius: 10px; padding: 40px 44px;
  border-left: 4px solid var(--gold); margin: 40px 0;
}
.feature-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin: 40px 0; }
.feature-item { padding: 28px; border: 1px solid var(--border); border-radius: 8px; transition: border-color 0.25s, transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.28s ease; }
.feature-item:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 36px rgba(0,0,0,0.10); }
.feature-item h4 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.feature-item p { font-size: 14px; margin: 0; }
.feature-icon { font-size: 28px; margin-bottom: 14px; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin: 48px 0 0; }
.stat-box { text-align: center; padding: 32px 20px; border: 1px solid var(--border); border-radius: 8px; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.06em; }

/* ── PRICING CARDS (programs) ── */
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin: 32px 0; }
.pricing-card { display: flex; flex-direction: column; border: 1.5px solid var(--border); border-radius: 10px; padding: 36px; transition: border-color 0.25s, transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.28s ease; }
.pricing-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 16px 38px rgba(0,0,0,0.10); }
.stat-box { transition: transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.28s ease, border-color 0.25s; }
.stat-box:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 14px 32px rgba(0,0,0,0.08); }
.pricing-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-card .price { font-size: 34px; font-weight: 700; color: var(--gold); margin: 12px 0; }
.pricing-card .price span { font-size: 15px; font-weight: 400; color: var(--text-muted); }
.pricing-card .pc-desc { font-size: 14px; margin-bottom: 20px; }
.pricing-card ul { list-style: none; margin-bottom: 28px; }
.pricing-card ul li { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.pricing-card ul li::before { content: '✓ '; color: var(--gold); font-weight: 700; }
.pricing-card .btn-gold { margin-top: auto; width: 100%; justify-content: center; }
.pricing-card.sold .btn-gold { background: var(--border); border-color: var(--border); color: var(--text-muted); pointer-events: none; }
.pricing-subhead { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--navy); margin: 8px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.loading, .error { color: var(--text-muted); padding: 24px 0; }

/* ── SCHEDULE TABLE ── */
.schedule-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.schedule-table th { background: var(--gold); color: var(--white); padding: 14px 16px; text-align: left; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; }
.schedule-table td { padding: 13px 16px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.schedule-table tr:nth-child(even) td { background: var(--cream); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── FAQ ── */
.faq-list { margin-top: 32px; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px 0; font-size: 15px; line-height: 1.8; color: var(--text-muted); }

/* ── COACHES GRID (flip) ── */
.coaches-section { background: var(--cream); }
.coaches-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 680px; }
.coach-card-wrap { perspective: 800px; }
.coach-card { position: relative; border-radius: 10px; transition: transform 0.6s; transform-style: preserve-3d; cursor: pointer; width: 100%; aspect-ratio: 3/4; }
.coach-card-wrap:hover .coach-card { transform: rotateY(180deg); }
.coach-card-front, .coach-card-back { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.coach-card-front { background: var(--white); }
.coach-card-back { background: var(--white); transform: rotateY(180deg); display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 24px; text-align: center; }
.coach-card-back h3 { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.coach-card-back .coach-role { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.coach-card-back .coach-bio { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.coach-photo { width: 100%; height: 75%; object-fit: cover; object-position: center 18%; display: block; }
.coach-info { padding: 12px 16px; }
.coach-info h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.coach-info p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ── IMAGE / CREST ── */
.photo { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/9; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.crest-strip { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.crest-strip img { height: 60px; width: auto; }

/* ── CTA BANNER ── */
.cta-section { background: var(--gold); text-align: center; padding: 80px 24px; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px,4vw,50px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 540px; margin: 0 auto 32px; }
.cta-section .btn-gold { background: var(--navy); border-color: var(--navy); }
.cta-section .btn-gold:hover { background: #222; }

/* ── FOOTER ── */
footer { background: var(--white); color: var(--text-muted); padding: 64px 24px 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand img { height: 48px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1080px; margin: 0 auto; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── MOBILE NAV ── */
.mobile-nav { display: none; position: fixed; inset: 0; height: 100dvh; background: var(--white); z-index: 99; padding: 96px 32px calc(48px + env(safe-area-inset-bottom)); overflow-y: auto; -webkit-overflow-scrolling: touch; flex-direction: column; gap: 8px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 18px; font-weight: 500; color: var(--navy); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-section { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); padding: 20px 0 8px; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 90; width: 44px; height: 44px;
  border-radius: 50%; background: var(--gold); color: var(--white); border: none; cursor: pointer;
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold-light); }

/* ── ANIMATIONS ── */
/* Content is visible by default; only hidden once JS opts in, so a JS/observer
   failure can never leave sections blank. */
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal:not(.visible) { opacity: 0; transform: translateY(28px); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.visible) { opacity: 1; transform: none; }
  html.js .gold-rule.reveal:not(.visible) { width: 48px; }
  html.js .page-hero-content:not(.in) > * { opacity: 1; transform: none; }
  .page-hero-bg { animation: none; transform: none; }
  * { scroll-behavior: auto !important; }
}

/* ── ACADEMY-STYLE DELIGHT ── */
/* Hero load zoom + scroll parallax (replaces Ken Burns to match Academy) */
.page-hero-bg { animation: none !important; transform: scale(1.05); transition: transform 8s ease-out; }
.page-hero-bg.loaded { transform: scale(1); }

/* Typewriter */
.hero-typed { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; min-height: 16px; }
.typewriter-cursor { display: inline-block; width: 2px; height: 0.95em; background: var(--gold-light); margin-left: 4px; vertical-align: baseline; animation: blink 0.8s infinite; }
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: 0 } }

/* Scroll indicator */
.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.65); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; animation: bounceY 2s infinite; cursor: pointer; z-index: 3; }
.hero-scroll::after { content: ''; width: 1px; height: 38px; background: rgba(255,255,255,0.45); }
@keyframes bounceY { 0%,100% { transform: translateX(-50%) translateY(0) } 50% { transform: translateX(-50%) translateY(6px) } }

/* Particles canvas */
.particles-canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.page-hero-content { z-index: 2; }

/* Glowing CTAs */
@keyframes glow { 0%,100% { box-shadow: 0 0 8px rgba(188,30,45,0.30) } 50% { box-shadow: 0 0 24px rgba(188,30,45,0.60) } }
.btn-gold, .btn-navy, .nav-links > li > a.nav-cta { animation: glow 2.5s ease-in-out infinite; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); z-index: 200; width: 0%; transition: width 0.05s linear; }

/* Noise overlay */
.noise-overlay {
  position: fixed; inset: 0; z-index: 199; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Animated crimson gradient band */
.cta-section { background: linear-gradient(-45deg, #BC1E2D, #d42a3a, #96181F, #BC1E2D); background-size: 300% 300%; animation: gradientShift 6s ease infinite; position: relative; overflow: hidden; }
@keyframes gradientShift { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } }

/* Morphing blob */
.blob-wrap { position: absolute; top: -20%; right: -15%; width: 520px; height: 520px; z-index: 0; opacity: 0.07; pointer-events: none; }
.blob-wrap svg { width: 100%; height: 100%; }
.blob-path { fill: var(--gold); animation: morph 8s ease-in-out infinite; }
@keyframes morph {
  0%,100% { d: path('M440,320Q400,480,240,460Q80,440,60,280Q40,120,220,80Q400,40,440,200Q480,360,440,320Z'); }
  33% { d: path('M420,340Q380,500,200,480Q60,460,40,300Q20,140,200,60Q380,20,440,180Q500,340,420,340Z'); }
  66% { d: path('M460,300Q440,460,260,480Q80,500,60,320Q40,100,240,60Q420,20,460,180Q500,340,460,300Z'); }
}

/* Expandable program cards */
.expand-toggle { display: block; width: fit-content; font-size: 13px; font-weight: 600; color: var(--gold); cursor: pointer; margin: 14px 0 4px; user-select: none; }
.expand-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.feature-item.expanded .expand-content { max-height: 200px; }

/* Scramble */
.scramble-text { cursor: default; }

@media (prefers-reduced-motion: reduce) {
  .btn-gold, .btn-navy, .nav-links > li > a.nav-cta, .cta-section, .blob-path, .hero-scroll, .typewriter-cursor { animation: none !important; }
  .page-hero-bg { transition: none; transform: none; }
  .particles-canvas { display: none; }
}

/* Page-fade transition — gated by html.js so no-JS / JS-fail shows content */
html.js body { opacity: 0; transition: opacity 0.3s ease; }
html.js body.ready { opacity: 1; }
@media (prefers-reduced-motion: reduce) { html.js body { opacity: 1; transition: none; } }

/* Accessible tap targets (>=44px) */
.hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.footer-col ul li { margin-bottom: 4px; }
.footer-col ul li a { display: inline-block; padding: 11px 0; line-height: 1.2; }
.footer-bottom a { display: inline-block; padding: 10px 0; }
.mobile-nav a { padding: 14px 0; min-height: 44px; box-sizing: border-box; }

/* ── SECTION DIVIDER (eagle mark) ── */
.section-divider { display: flex; align-items: center; gap: 22px; max-width: 1080px; margin: 0 auto; padding: 8px 24px; }
.section-divider::before, .section-divider::after { content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); }
.section-divider img { height: 40px; width: auto; opacity: 0.9; filter: saturate(1.05); }

/* ── PULLQUOTE ── */
.pullquote {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.28; color: var(--navy); font-weight: 600;
  border-left: 4px solid var(--gold); padding: 6px 0 6px 30px; margin: 36px 0; max-width: 860px;
}
.pullquote cite {
  display: block; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--gold); font-style: normal; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 16px;
}
.pullquote.center { margin-left: auto; margin-right: auto; border-left: 0; border-top: 3px solid var(--gold); padding: 26px 0 0; text-align: center; }

/* ── FULL-BLEED PHOTO BAND ── */
.photo-band {
  position: relative; min-height: 60vh; display: flex; align-items: center;
  overflow: hidden; padding: 80px 24px;
}
.photo-band-bg { position: absolute; inset: -2%; background-size: cover; background-position: center; will-change: transform; }
.photo-band-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.30) 100%); }
.photo-band .container { position: relative; z-index: 2; }
.photo-band .section-title, .photo-band h2 { color: var(--white); -webkit-text-fill-color: var(--white); background: none; }
.photo-band p { color: rgba(255,255,255,0.86); }
.photo-band .section-label { color: var(--gold-light); }

/* ── IMAGE + TEXT SPLIT ── */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 48px; align-items: center; }
.split .split-media { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.split .split-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.22,1,.36,1); }
.split .split-media:hover img { transform: scale(1.05); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .page-hero { min-height: auto; padding: 40px 0 44px; }
  .page-hero-content { padding: 0 20px; }
  .page-hero h1 { font-size: 34px; }
  .page-hero h1 br { display: none; }
  .page-hero p { font-size: 15px; }
  section { padding: 56px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
