/* ===== TOKENS ===== */
:root {
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --muted: #6B6B6B;
  --muted-2: #8A8A8A;
  --line: #ECECEC;
  --bg: #FFFFFF;
  --bg-alt: #F6F6F6;
  --accent: #FF6B35;
  --accent-hover: #E55A24;
  --accent-soft: #FFF1EA;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lift: 0 16px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; transition: opacity .2s, color .2s; }
a:hover { opacity: .75; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-wrap: balance;
  text-transform: uppercase;
}
h1 { font-size: clamp(40px, 7vw, 88px); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; letter-spacing: 0.04em; }

.subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.content { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .subtitle { color: rgba(255,255,255,0.7); }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; }
.header__logo-img { height: 44px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 6px; }
.header__nav a {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background .2s, color .2s, opacity .2s;
}
.header__nav a:hover { background: var(--bg-alt); opacity: 1; }
.header__cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 11px 22px !important;
  border-radius: 999px !important;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.header__cta:hover { background: var(--accent-hover) !important; opacity: 1 !important; }
.header__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}
.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: .25s;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .18s, transform .18s, visibility 0s linear .18s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .18s, transform .18s, visibility 0s;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 8px;
}
.dropdown a:hover { background: var(--bg-alt); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 84vh;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.25) 40%, rgba(10,10,10,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  width: 100%;
}
.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 18px;
}
.hero .hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 50ch;
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== STATS STRIP ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.stat__num em {
  font-style: normal;
  color: var(--accent);
}
.stat__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== VALUES ===== */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  padding: 32px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 22px; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ===== HOME SECTIONS (alternating two-col) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.split--reverse > *:first-child { order: 2; }
.split__text h2 { margin-bottom: 16px; }
.split__text p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.split__text .btn { margin-top: 20px; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn:hover { background: var(--accent-hover); color: #fff; opacity: 1; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,107,53,0.32); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; box-shadow: none; transform: translateY(-1px); }
.btn--ink {
  background: var(--ink);
  color: #fff;
}
.btn--ink:hover { background: var(--ink-2); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; box-shadow: none; }

/* ===== COACH GRID ===== */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.coach-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 3 / 4;
}
.coach-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.coach-card:hover img { transform: scale(1.04); }
.coach-card__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}
.coach-card__body {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  color: #fff;
}
.coach-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.coach-card__role {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .35s, filter .35s;
}
.gallery img:hover { transform: scale(1.02); filter: brightness(1.05); }
.gallery--span > :nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq__category {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 32px 0 12px;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__question {
  width: 100%;
  background: none;
  color: var(--ink);
  border: none;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s;
}
.faq__item.active .faq__question::after { content: '−'; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
}
.faq__item.active .faq__answer { max-height: 600px; }
.faq__answer p {
  padding: 0 0 22px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 96px 24px 56px;
  text-align: center;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 14px;
}
.page-header .subtitle {
  max-width: 60ch;
  margin: 0 auto;
}

/* ===== TEXT BLOCK ===== */
.text-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.text-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}
.text-block p strong { color: var(--ink); }
.text-block h2 { margin: 56px 0 16px; font-size: 28px; }
.text-block h3 { margin: 36px 0 10px; font-size: 19px; text-transform: none; letter-spacing: 0; }

/* ===== FORM ===== */
.form {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
}
.form .field { margin-bottom: 16px; }
.form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.form input,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }

/* ===== SPONSORS ===== */
.sponsors {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: 0.6;
}
.sponsors img { max-height: 48px; width: auto; }

/* ===== CTA BANNER ===== */
.cta-banner {
  text-align: center;
  padding: 96px 24px;
  background: var(--ink);
  color: #fff;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(255,107,53,0.12), transparent 40%),
    radial-gradient(ellipse at 80% 90%, rgba(255,107,53,0.10), transparent 50%);
}
.cta-banner h2 { color: #fff; margin-bottom: 18px; }
.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 56ch;
  margin: 0 auto 28px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: #fff;
  padding: 64px 24px 32px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; max-width: 28ch; }
.footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s;
}
.footer__col a:hover { color: var(--accent); opacity: 1; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  transition: background .2s;
}
.footer__social a:hover { background: var(--accent); opacity: 1; }
.footer__social svg { width: 16px; height: 16px; }

/* ===== STICKY MOBILE CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  background: var(--accent);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(255,107,53,0.4);
}

/* .reveal is a marker class kept for future animation hooks; no styles applied. */

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse > *:first-child { order: 0; }
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery--span > :nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 71px; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .header__nav.open a { padding: 14px 16px; font-size: 16px; }
  .has-dropdown .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .header__hamburger { display: block; }
  .hero { min-height: 78vh; }
  .hero__content { padding: 48px 24px 56px; }
  .values { grid-template-columns: 1fr; }
  .coach-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
}
