@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #b8860b;
  --primary-active: #8f6a08;
  --secondary: #132a4c;
  --on-primary: #ffffff;
  --canvas: #ffffff;
  --canvas-soft: #f6f3ec;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-secondary: #332f28;
  --ink-muted: #655f54;
  --ink-faint: #a39a8a;
  --hairline: #e5e0d3;
  --accent-sky: #5aa8c9;
  --accent-purple: #c9b3ef;
  --accent-purple-deep: #33195a;
  --accent-pink: #e0578f;
  --accent-orange: #d9720f;
  --accent-orange-deep: #7a3a00;
  --accent-teal: #238f82;
  --accent-green: #3f8a3a;
  --accent-brown: #5c3b1e;

  --r-xs: 4px;
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 9999px;

  --sp-xxs: 4px;
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 28px;
  --sp-xxl: 32px;

  --shadow-1: 0 0.175px 1.041px rgba(0,0,0,0.01), 0 0.8px 2.925px rgba(0,0,0,0.02), 0 2.025px 7.847px rgba(0,0,0,0.027), 0 4px 18px rgba(0,0,0,0.04);
  --shadow-2: 0 1px 2px rgba(0,0,0,0.02), 0 4px 8px rgba(0,0,0,0.025), 0 10px 20px rgba(0,0,0,0.03), 0 23px 52px rgba(0,0,0,0.05);

  --font: 'Inter', -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--canvas-soft);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
section { position: relative; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.125px;
  color: var(--primary);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: var(--sp-sm);
}
h1, h2, h3, h4 { margin: 0; font-weight: 700; color: var(--ink); }
.display-1 { font-size: 64px; line-height: 1.0; letter-spacing: -2.125px; font-weight: 700; }
.display-2 { font-size: 54px; line-height: 1.04; letter-spacing: -1.875px; font-weight: 700; }
.heading-1 { font-size: 40px; line-height: 1.1; letter-spacing: -1px; font-weight: 700; }
.heading-2 { font-size: 26px; line-height: 1.23; letter-spacing: -0.625px; font-weight: 700; }
.heading-3 { font-size: 22px; line-height: 1.27; letter-spacing: -0.25px; font-weight: 700; }
.title-text { font-size: 20px; line-height: 1.4; letter-spacing: -0.125px; font-weight: 600; }
.body-md { font-size: 16px; line-height: 1.5; font-weight: 400; color: var(--ink-secondary); }
.body-sm { font-size: 15px; line-height: 1.33; font-weight: 400; color: var(--ink-secondary); }
.caption { font-size: 14px; line-height: 1.43; font-weight: 400; color: var(--ink-faint); }

.section-head { max-width: 720px; margin: 0 0 var(--sp-xxl); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-pad { padding: 88px 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  padding: 14px 28px;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-active); }
.btn-secondary { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-1); }
.btn-secondary:hover { background: #fafafa; }
.btn-utility {
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--r-md);
  padding: 8px 18px;
  border: 1px solid var(--hairline);
}
.btn-utility:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; }

/* Nav */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 90px; width: auto; border-radius: var(--r-sm); }
.nav-brand-text { font-weight: 700; font-size: 17px; letter-spacing: -0.25px; line-height: 1.15; }
.nav-brand-text span { display: block; font-weight: 600; font-size: 11px; letter-spacing: 0.6px; color: var(--primary); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--ink); }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
.mobile-menu { display: none; }
body.nav-open .mobile-menu { display: flex; }

/* Hero */
.hero {
  position: relative;
  color: var(--on-primary);
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(19,42,76,0.94) 0%, rgba(19,42,76,0.72) 32%, rgba(19,42,76,0.32) 62%, rgba(19,42,76,0.12) 100%),
    linear-gradient(90deg, rgba(19,42,76,0.55) 0%, rgba(19,42,76,0.1) 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 24px 56px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  color: #f3d98a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
}
.hero h1 { color: var(--on-primary); margin-bottom: var(--sp-md); text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.hero-sub { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 480px; margin-bottom: var(--sp-xl); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero .btn-secondary { background: var(--on-primary); }
.hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 26px; font-weight: 700; letter-spacing: -0.5px; }
.hero-stat span { font-size: 14px; color: rgba(255,255,255,0.7); }

/* Program cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-lg); }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
}
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.icon-badge svg { width: 26px; height: 26px; fill: var(--ink); }
.icon-badge-img { width: 28px; height: 28px; object-fit: contain; }
.feature-card h3 { margin-bottom: 2px; }
.age-tag { color: var(--primary); font-weight: 600; font-size: 14px; display: block; margin-bottom: var(--sp-sm); }
.feature-card p { margin: 0; }

.eyebrow-block { margin-top: 56px; margin-bottom: var(--sp-xxl); }

.dark-card {
  background: var(--secondary);
  color: var(--on-primary);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}
.dark-card .caption-label { color: #f3d98a; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--sp-sm); display: block; }
.dark-card h3 { color: var(--on-primary); margin-bottom: 8px; }
.dark-card p { color: rgba(255,255,255,0.7); margin: 0; }

.light-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}
.light-card .caption-label { color: var(--primary); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--sp-sm); display: block; }
.light-card h3 { margin-bottom: 8px; }
.light-card p { color: var(--ink-muted); margin: 0; }

/* Photo banner */
.photo-banner {
  margin: 0;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 340px;
  border: 1px solid var(--hairline);
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
.photo-banner figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px var(--sp-xl) 24px;
  background: linear-gradient(0deg, rgba(19,42,76,0.85), rgba(19,42,76,0));
  color: var(--on-primary);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.25px;
}

/* Schedule */
.schedule-block {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-lg);
}
.schedule-block .caption-label { color: var(--primary); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: var(--sp-lg); display: block; }
.schedule-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); }
.schedule-item .time { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px; }
.schedule-item .label { color: var(--ink-muted); font-size: 15px; }

/* Gallery carousel */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.carousel-track {
  display: flex;
  gap: var(--sp-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  flex: 1;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item {
  margin: 0;
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--hairline);
  scroll-snap-align: start;
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.carousel-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--surface);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: transform 0.15s ease, color 0.15s ease;
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover { color: var(--primary); }
.carousel-btn:active { transform: scale(0.92); }

/* Coaches */
.coach-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-xxl);
  align-items: center;
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: var(--sp-xxl);
}
.coach-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  overflow: hidden;
}
.coach-photo img { width: 100%; height: 100%; object-fit: cover; }
.coach-photo span {
  width: 84px;
  height: 84px;
  border-radius: var(--r-full);
  background: var(--primary);
  color: var(--on-primary);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coach-photo p { color: rgba(255,255,255,0.5); margin: 0; }
.coach-bio h3 { margin-bottom: 4px; }
.coach-bio .age-tag { margin-bottom: var(--sp-md); }
.coach-bio p { margin: 0; color: var(--ink-secondary); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-lg); align-items: stretch; }
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { background: var(--secondary); color: var(--on-primary); border-color: var(--secondary); }
.pricing-card h3 { font-size: 18px; margin-bottom: var(--sp-md); }
.pricing-card.featured h3 { color: var(--on-primary); }
.price { font-size: 40px; font-weight: 700; letter-spacing: -1px; color: var(--primary); }
.pricing-card.featured .price { color: #f3d98a; }
.price-unit { font-size: 15px; font-weight: 400; color: var(--ink-muted); }
.pricing-card.featured .price-unit { color: rgba(255,255,255,0.65); }
.pricing-divider { height: 1px; background: var(--hairline); margin: var(--sp-md) 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.15); }
.pricing-note { font-size: 15px; color: var(--ink-muted); margin-top: auto; }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.75); }
.pricing-note strong { color: var(--ink); font-weight: 600; }
.pricing-card.featured .pricing-note strong { color: var(--on-primary); }

/* CTA band */
.cta-band {
  background: var(--secondary);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  color: var(--on-primary);
}
.cta-band h2 { color: var(--on-primary); margin-bottom: var(--sp-md); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto var(--sp-xl); font-size: 17px; }

/* Footer */
.footer { background: var(--canvas-soft); padding: 64px 0 32px; border-top: 1px solid var(--hairline); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--sp-xl); margin-bottom: 48px; }
.footer-brand { display: block; margin-bottom: var(--sp-md); }
.footer-brand img { height: 225px; width: auto; border-radius: var(--r-sm); }
.footer p.body-sm { max-width: 280px; }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-faint); margin-bottom: var(--sp-md); }
.footer li { margin-bottom: 10px; }
.footer a.body-sm:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--hairline); flex-wrap: wrap; gap: 12px; }

.placeholder { color: var(--ink-faint); font-style: italic; }

/* Responsive */
@media (max-width: 900px) {
  .hero { min-height: 560px; }
  .hero-inner { padding: 100px 24px 40px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .coach-card { grid-template-columns: 1fr; padding: var(--sp-lg); }
  .coach-photo { max-width: 220px; margin: 0 auto; }
  .schedule-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .carousel-item { width: 240px; }
  .carousel-btn { width: 36px; height: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .display-1 { font-size: 44px; letter-spacing: -1.5px; }
  .heading-1 { font-size: 30px; letter-spacing: -0.75px; }
  .section-pad { padding: 56px 0; }
  .cta-band { padding: 48px 24px; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .mobile-menu {
    flex-direction: column;
    gap: 4px;
    background: var(--canvas-soft);
    border-top: 1px solid var(--hairline);
    padding: 16px 24px 20px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .mobile-menu a { padding: 10px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--hairline); }
  .mobile-menu .btn { margin-top: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .hero-stats { gap: 20px; }
}
