:root {
  --ink: #0d0d0d;
  --panel: #161616;
  --panel-2: #1d1d1d;
  --line: rgba(255,255,255,0.14);
  --white: #ffffff;
  --grey: #9a9a9a;
  --grey-light: #e8e6e1;
  --grey-dark-text: #4a4a48;
  --lime: #b3d334;
  --lime-dark: #93af22;
  --radius: 18px;
  --shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; margin: 0 0 .5em; font-weight: 500; letter-spacing: -0.01em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; position: relative; }
.eyebrow { font-size: .85rem; color: var(--grey); letter-spacing: .04em; margin: 0 0 20px; }
.eyebrow.center { text-align: center; }
.center { text-align: center; }

/* Buttons */
.btn-line, .btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-line { border: 1.5px solid var(--white); color: var(--white); border-radius: 2px; }
.btn-line:hover { background: var(--white); color: var(--ink); }
.btn-line.small { padding: 9px 18px; font-size: .72rem; }
.btn-solid { background: var(--white); color: var(--ink); border-radius: 2px; }
.btn-solid:hover { background: var(--lime); transform: translateY(-2px); }
.btn-solid span, .btn-line span { transition: transform .15s ease; }
.btn-solid:hover span, .btn-line:hover span { transform: translateX(3px); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(13,13,13,0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; }
.nav { display: flex; gap: 30px; flex: 1; justify-content: center; }
.nav a { font-size: .85rem; color: var(--grey); display: inline-flex; gap: 4px; }
.nav a span { color: var(--lime); font-size: .7rem; }
.nav a:hover { color: var(--white); }
.nav-cta { white-space: nowrap; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); }
.nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--ink); padding: 20px 32px; gap: 18px; border-bottom: 1px solid var(--line); }

/* Hero */
.hero { position: relative; min-height: 94vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding-top: 130px; padding-bottom: 60px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.75) 0%, rgba(13,13,13,0.55) 40%, rgba(13,13,13,0.95) 100%); }
.hero-mark {
  position: absolute; top: 8%; right: -2%; z-index: 0;
  font-family: var(--font-display); font-size: 42vw; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,0.08);
  margin: 0; line-height: 1; pointer-events: none;
}
.hero-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.hero-play { display: flex; align-items: center; gap: 14px; color: var(--white); font-size: .95rem; font-weight: 500; }
.play-circle { width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; transition: background .15s ease; }
.hero-play:hover .play-circle { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.hero-intro { max-width: 380px; color: var(--grey); font-size: 1rem; margin: 0; text-align: right; }
.hero-bottom { position: relative; z-index: 2; }
.hero-giant { font-size: clamp(3.2rem, 9vw, 6.5rem); color: var(--white); margin: 0 0 30px; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.hero-call { margin: 0; color: var(--grey); font-size: .9rem; }
.hero-call a { color: var(--white); font-weight: 600; text-decoration: underline; }

/* Strip */
.strip { background: var(--ink); position: relative; padding: 90px 0 60px; overflow: hidden; }
.strip-marquee {
  position: absolute; top: 40%; left: 0; width: max-content;
  font-family: var(--font-display); font-size: 3.5rem; color: rgba(255,255,255,0.05);
  white-space: nowrap; margin: 0; animation: strip-scroll 40s linear infinite;
}
@keyframes strip-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.strip-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.strip-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--panel-2); border-radius: 8px; color: var(--lime); margin-bottom: 18px; }
.strip-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.strip-card p { color: var(--grey); font-size: .92rem; margin: 0; }

/* About (light break) */
.about { background: var(--grey-light); color: var(--ink); padding: 100px 0 80px; }
.about h2 { color: var(--ink); font-size: clamp(2rem, 4.5vw, 3rem); max-width: 640px; margin: 0 auto 24px; }
.about .eyebrow { color: var(--grey-dark-text); }
.about-lead { max-width: 640px; margin: 0 auto; color: var(--grey-dark-text); font-size: 1.05rem; }
.about-lead strong { color: var(--ink); }

/* Numbered rows */
.rows { background: var(--grey-light); padding: 0 0 100px; }
.row {
  background: var(--ink); border-radius: var(--radius); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  margin: 0 32px 28px; max-width: 1176px; margin-left: auto; margin-right: auto; margin-bottom: 28px;
  min-height: 460px;
}
.row.reverse .row-media { order: 1; }
.row.reverse .row-text { order: 2; }
.row-text { position: relative; padding: 60px 56px; display: flex; flex-direction: column; justify-content: center; }
.row-number {
  position: absolute; top: 30px; left: 40px;
  font-family: var(--font-display); font-size: 9rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  margin: 0; z-index: 0; line-height: 1;
}
.row-text h3 { position: relative; z-index: 1; font-size: 2rem; margin-bottom: 18px; }
.row-text p { position: relative; z-index: 1; color: var(--grey); margin: 0 0 28px; max-width: 380px; }
.row-text .btn-line { position: relative; z-index: 1; align-self: flex-start; }
.row-media { position: relative; min-height: 300px; }
.row-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

/* Video block */
.video-block { position: relative; height: 520px; background: var(--ink); }
.video-block video { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 88px; height: 88px; border-radius: 50%; background: var(--lime); color: var(--ink);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: transform .2s ease;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.icon-hidden { display: none !important; }

/* Coaches */
.coaches { background: var(--ink); }
.coaches .container { position: relative; }
.coaches h2 { font-size: clamp(2rem, 4.5vw, 3rem); max-width: 560px; margin-bottom: 50px; }
.coach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.coach-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; padding-bottom: 26px; }
.coach-media { height: 300px; }
.coach-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.coach-card h3 { font-size: 1.3rem; margin: 24px 24px 4px; }
.coach-role { margin: 0 24px 12px; color: var(--lime); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.coach-bio { margin: 0 24px 20px; color: var(--grey); font-size: .92rem; }
.coach-card .btn-line { margin: 0 24px; }
.stats-row { display: flex; gap: 60px; margin-top: 70px; flex-wrap: wrap; }
.stats-row strong { display: block; font-family: var(--font-display); font-size: 4rem; color: var(--grey); line-height: 1; }
.stats-row span { color: var(--white); font-size: .9rem; line-height: 1.3; }

/* Gallery strip */
.gallery-strip { background: var(--ink); padding-bottom: 60px; }
.gallery-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 32px; scrollbar-width: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track figure { flex: 0 0 320px; scroll-snap-align: start; margin: 0; position: relative; border-radius: 10px; overflow: hidden; height: 380px; }
.gallery-track img { width: 100%; height: 100%; object-fit: cover; }
.gallery-track figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 20px;
  background: linear-gradient(0deg, rgba(13,13,13,0.9), transparent);
  font-family: var(--font-display); font-size: 1.2rem;
}
.gallery-track figcaption span { display: block; font-family: var(--font-body); font-size: .7rem; letter-spacing: .08em; color: var(--grey); margin-top: 4px; }
.gallery-nav { display: flex; justify-content: center; gap: 16px; margin-top: 30px; }
.gallery-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--white); cursor: pointer; font-size: 1.1rem;
  transition: background .15s ease;
}
.gallery-nav button:hover { background: var(--panel); }

/* Reviews */
.reviews-v2 { background: var(--panel); }
.reviews-v2 h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 auto 50px; max-width: 640px; }
.review-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card-v2 { background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.review-stars-v2 { color: var(--lime); letter-spacing: 2px; margin-bottom: 16px; }
.review-card-v2 p { color: var(--grey); font-size: .95rem; margin: 0 0 20px; }
.review-name-v2 { font-family: var(--font-display); font-size: .95rem; color: var(--white); }
.review-name-v2 em { font-family: var(--font-body); font-style: normal; color: var(--grey); font-size: .85rem; }

/* CTA band */
.cta-band { position: relative; background: var(--panel); padding: 140px 0; overflow: hidden; text-align: center; }
.cta-mark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 60vw; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  margin: 0; line-height: 1; pointer-events: none;
}
.cta-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 40px; }
.cta-content h2 { font-size: clamp(2.4rem, 7vw, 5rem); color: var(--grey); margin: 0; }
.cta-content h2 span { color: var(--white); font-weight: 600; }
.cta-circle {
  width: 150px; height: 150px; border-radius: 50%; background: var(--lime); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-size: .9rem; letter-spacing: .03em; text-transform: uppercase;
  transition: transform .2s ease;
}
.cta-circle:hover { transform: scale(1.06); }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; }

/* Footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer-logo { width: 42px; height: 42px; border-radius: 50%; margin-bottom: 16px; }
.footer-about p { color: var(--grey); max-width: 260px; margin: 0; }
.footer-col h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 20px; font-weight: 500; }
.footer-col a, .footer-col span { display: block; color: var(--grey); font-size: .92rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: center; gap: 12px; padding: 6px 0;
  margin-bottom: 4px; border-radius: 8px; transition: background .15s ease;
}
a.footer-contact-item:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.footer-contact-item span:last-child { margin: 0; }
.footer-icon {
  display: inline-flex; width: 34px; height: 34px; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(179,211,52,0.12); color: var(--lime);
}
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom p { margin: 0; font-size: .8rem; color: var(--grey); }

/* Mobile call FAB */
.mobile-call-fab {
  display: none; position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: var(--lime); color: var(--ink);
  align-items: center; justify-content: center; box-shadow: var(--shadow);
}

/* Responsive */
@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .row, .row.reverse { grid-template-columns: 1fr; }
  .row.reverse .row-media, .row.reverse .row-text { order: initial; }
  .row-media { min-height: 260px; }
  .row-text { padding: 44px 32px; }
  .hero-top { flex-direction: column; align-items: flex-start; }
  .hero-intro { text-align: left; max-width: 100%; }
  .coach-grid { grid-template-columns: 1fr; }
  .review-grid-v2 { grid-template-columns: 1fr; }
  .stats-row { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .mobile-call-fab { display: flex; }
}
@media (max-width: 560px) {
  .hero-giant { font-size: clamp(2.4rem, 12vw, 4rem); }
  .row-number { font-size: 6rem; }
  .header-inner { padding: 12px 0; }
}
