: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; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── 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: 64px; 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: 220px;
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(0);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-links > li:hover .dropdown, .nav-links > li:focus-within .dropdown {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 9px 14px; font-size: 13.5px; font-weight: 400;
  color: var(--text); text-decoration: none; border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--cream); color: var(--gold); }
.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 (inner pages) ── */
.page-hero {
  position: relative; height: 52vh; min-height: 340px;
  display: flex; align-items: flex-end; padding: 0 0 56px 0;
  overflow: hidden; margin-top: 96px;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.72) 100%);
}
.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(40px, 6vw, 72px);
  font-weight: 700; color: var(--white); line-height: 1.05;
}

/* ── SECTIONS ── */
section { padding: 80px 24px; }
.container { max-width: 1080px; margin: 0 auto; }

/* ── TYPOGRAPHY ── */
.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; }
h2.section-title {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; line-height: 1.1; 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; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gold);
  color: var(--white); font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; padding: 14px 32px; border-radius: 4px;
  transition: background 0.2s; margin-right: 12px; margin-bottom: 12px;
}
.btn-gold:hover { background: var(--gold-light); }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px; background: var(--navy);
  color: var(--white); font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; padding: 14px 32px; border-radius: 4px;
  transition: background 0.2s; margin-right: 12px; margin-bottom: 12px;
}
.btn-navy:hover { background: #222222; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--navy);
  color: var(--navy); font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; padding: 13px 30px; border-radius: 4px;
  transition: background 0.2s, color 0.2s; margin-right: 12px; margin-bottom: 12px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── FEATURE BOX ── */
.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;
}

/* ── RESOURCES ── */
.resources-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 32px 0; }
.resource-card {
  border: 1px solid var(--border); border-radius: 8px; padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); }
.resource-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.resource-card p { font-size: 13px; margin-bottom: 16px; }
.resource-card a { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; }
.resource-card a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-list { margin-top: 32px; }
.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); }
.faq-answer-inner a { color: var(--gold); }

/* ── COACHES GRID ── */
.coaches-section { background: var(--cream); }
.coaches-group-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700;
  color: var(--navy); margin-bottom: 28px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.coaches-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 56px; }

/* Coach card flip */
.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 20%; 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; }

/* 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); }

/* ── PROGRAM STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin: 48px 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 ── */
.pricing-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin: 32px 0; }
.pricing-card {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 36px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card.featured { border-color: var(--gold); background: var(--cream); }
.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: 36px; 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 p { 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; }

/* ── 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.72); max-width: 520px; margin: 0 auto 36px; }
.cta-section .btn-gold { background: var(--gold); }
.cta-section .btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.5);
  color: var(--white); font-weight: 600; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; padding: 13px 30px; border-radius: 4px;
  transition: border-color 0.2s, background 0.2s; margin-right: 12px; margin-bottom: 12px;
}
.cta-section .btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* ── 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); }

/* ── FEATURES GRID ── */
.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; }
.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; }

/* ── FOOTER ── */
footer { background: var(--white); color: var(--text-muted); padding: 64px 24px 40px; }
.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: 36px; 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; background: var(--white); z-index: 99; padding: 96px 32px 48px; overflow-y: auto; 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; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .coaches-grid { grid-template-columns: repeat(3,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .resources-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-hero-content { padding: 0 20px; }
  .coaches-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
