:root {
  --bg: #050505;
  --card: #111;
  --line: rgba(255,255,255,.08);
  --text: #f4f4f2;
  --muted: #9a9a94;
  --red: #e10600;
  --red-dim: rgba(225,6,0,.14);
  --nav-h: 80px;
  --ease: cubic-bezier(.22,1,.36,1);
  --sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: 0; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.boot {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; background: #000;
  transition: opacity .55s ease, visibility .55s;
}
.boot b { font-size: clamp(56px, 10vw, 120px); font-weight: 800; letter-spacing: .16em; }
.boot b i { color: var(--red); font-style: normal; }
.boot.is-done { opacity: 0; visibility: hidden; }

.grain {
  pointer-events: none; position: fixed; inset: 0; z-index: 80; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--red);
}
.lede { color: var(--muted); max-width: 54ch; }
.center { text-align: center; }

h1, h2, h3 { font-weight: 600; letter-spacing: -.035em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(52px, 7vw, 92px); }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: 22px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px; padding: 0 24px;
  background: var(--red); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(225,6,0,.38); }
.btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.2); }
.btn--ghost:hover { background: rgba(255,255,255,.08); box-shadow: none; }

.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-h);
}
.nav.is-scrolled {
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo { font-size: 28px; font-weight: 800; letter-spacing: .04em; }
.logo span { color: var(--red); }
.nav__links {
  display: flex; align-items: center; gap: 26px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.74);
}
.nav__links a:hover, .nav__drop-btn:hover, .nav__links a.is-on { color: #fff; }
.nav__dropdown { position: relative; }
.nav__drop-btn { display: inline-flex; align-items: center; gap: 5px; color: inherit; font-weight: 500; }
.nav__drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px; padding: 10px;
  background: #141414; border: 1px solid var(--line); border-radius: 14px;
  opacity: 0; pointer-events: none; transition: .2s var(--ease);
}
.nav__dropdown:hover .nav__drop-menu,
.nav__dropdown:focus-within .nav__drop-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__drop-menu a { display: block; padding: 10px 12px; border-radius: 10px; }
.nav__mobile-cta { display: none; }
.nav__toggle {
  display: none; height: 38px; padding: 0 16px; border-radius: 999px;
  background: var(--red); color: #fff; font-weight: 700; font-size: 13px;
}

.hero {
  position: relative;
  min-height: 700px; height: 100svh; max-height: 920px;
  overflow: hidden; background: #000;
}
.hero__copy {
  position: relative; z-index: 3;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--nav-h) + 72px) 0 0;
}
.hero__copy h1 { margin: 0 0 26px; max-width: 11ch; }
.hero__note {
  margin-top: 72px; width: min(270px, 100%);
  padding: 16px;
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(16,16,16,.78);
  border: 1px solid var(--line); border-radius: 16px;
  backdrop-filter: blur(10px);
}
.hero__note p { margin: 0; font-size: 13px; color: rgba(255,255,255,.78); }
.hero__note-icon {
  flex: 0 0 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--red-dim); color: var(--red);
}
.hero__athlete {
  position: absolute; z-index: 2;
  right: 2%; top: 4%; bottom: 0;
  width: min(62vw, 820px);
}
.hero__athlete img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center bottom;
}
.hero__stat {
  position: absolute; z-index: 4;
  right: max(28px, calc((100vw - 1240px) / 2));
  top: 26%;
  width: 220px; padding: 22px 20px 18px;
  background: rgba(16,16,16,.82);
  border: 1px solid var(--line); border-radius: 22px;
  backdrop-filter: blur(12px);
}
.hero__stat strong { display: block; font-size: 42px; line-height: .95; letter-spacing: -.04em; }
.hero__stat p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.hero__wordmark {
  position: absolute; z-index: 1;
  left: 50%; bottom: -5%;
  transform: translateX(-50%);
  font-size: clamp(180px, 34vw, 480px);
  font-weight: 800; letter-spacing: .04em; line-height: .72;
  color: rgba(255,255,255,.12);
  pointer-events: none; user-select: none; white-space: nowrap;
}

.rail { overflow: hidden; border-block: 1px solid var(--line); background: #080808; padding: 20px 0; }
.rail__track { display: flex; gap: 16px; width: max-content; animation: rail 42s linear infinite; }
.rail__track img { height: 150px; width: auto; object-fit: contain; }
@keyframes rail { to { transform: translateX(-50%); } }

.about {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto; padding: 100px 0 50px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: end;
}
.about__copy h2 { margin: 0 0 18px; }
.about__photos { position: relative; min-height: 460px; }
.about__photos img { border-radius: 18px; object-fit: contain; background: #0a0a0a; }
.about__photos-a { position: absolute; right: 34%; top: 18%; width: 42%; height: 250px; }
.about__photos-b { position: absolute; left: 6%; bottom: 8%; width: 26%; height: 140px; }
.about__photos-c { position: absolute; right: 0; top: 0; width: 32%; height: 320px; }
.about__caption { position: absolute; right: 0; bottom: 8px; width: 30%; margin: 0; font-size: 12px; color: var(--muted); }

.services { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 40px; }
.services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 32px; }
.services__head h2 { max-width: 18ch; margin-bottom: 10px; }
.services__head p { color: var(--muted); margin: 0; max-width: 48ch; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.services__grid article {
  position: relative; min-height: 320px; border-radius: 18px; overflow: hidden; background: #0d0d0d;
  transition: transform .4s var(--ease);
}
.services__grid article:hover { transform: translateY(-6px); }
.services__grid img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center 18%;
}
.services__grid article::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.86));
}
.services__grid div { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 22px; }
.services__grid p { margin: 6px 0 0; color: rgba(255,255,255,.7); font-size: 14px; }

.trainers { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0; }
.trainers h2 { max-width: 22ch; margin: 0 auto 12px; }
.trainers .lede { margin: 0 auto 36px; }
.trainers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trainers__grid img {
  width: 100%; aspect-ratio: 3/4; object-fit: contain;
  background: #0d0d0d; border-radius: 16px; margin-bottom: 12px;
}
.trainers__grid p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }

.pro {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 50px;
  display: grid; grid-template-columns: .9fr 1.1fr;
  background: #101010; border-radius: 28px; overflow: hidden;
}
.pro img { width: 100%; height: 100%; min-height: 440px; object-fit: contain; background: #0a0a0a; }
.pro__copy { padding: 48px 44px; }
.pro__copy h2 { margin-bottom: 12px; }
.pro__copy > p { color: var(--muted); }
.pro__label { margin: 20px 0 10px !important; color: #fff !important; font-weight: 700; }
.pro li { position: relative; padding-left: 16px; margin-bottom: 8px; font-size: 14px; color: rgba(255,255,255,.78); }
.pro li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); position: absolute; left: 0; top: 8px; }
.pro__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
.pro__price { font-size: 36px; font-weight: 700; letter-spacing: -.03em; }
.pro__price small { font-size: 13px; color: var(--muted); font-weight: 500; }

.cinema {
  position: relative; min-height: 68vh;
  display: grid; place-items: center; text-align: center; overflow: hidden;
}
.cinema img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cinema::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.72)); }
.cinema__copy { position: relative; z-index: 1; padding: 80px 24px; max-width: 760px; }
.cinema__copy h2 { font-size: clamp(40px, 6vw, 76px); margin-bottom: 16px; }

.quotes { position: relative; padding: 110px 24px 120px; text-align: center; }
.quotes blockquote { margin: 0 auto 24px; max-width: 740px; font-size: clamp(24px, 3.2vw, 38px); font-weight: 500; letter-spacing: -.03em; }
.quotes em { font-style: normal; color: #fff; }
.quotes__float { position: absolute; width: 118px; height: 118px; object-fit: contain; background: #0d0d0d; border-radius: 16px; }
.quotes__float-a { left: 10%; top: 18%; }
.quotes__float-b { right: 12%; top: 14%; width: 100px; height: 100px; }
.quotes__float-c { left: 16%; bottom: 12%; width: 110px; height: 110px; }
.quotes__float-d { right: 18%; bottom: 10%; width: 96px; height: 96px; }

.footer { padding: 64px 0 0; overflow: hidden; border-top: 1px solid var(--line); }
.footer__grid {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr;
  gap: 28px; padding-bottom: 24px;
}
.footer p, .footer a { color: var(--muted); font-size: 14px; }
.footer a { display: block; margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer h4 { margin: 0 0 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer__bar {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto; padding: 16px 0 20px;
  display: flex; justify-content: space-between; gap: 12px;
  color: #666; font-size: 13px;
}
.footer__wordmark {
  margin: 8px 0 -.14em; text-align: center;
  font-size: clamp(140px, 30vw, 400px);
  font-weight: 800; letter-spacing: .06em; line-height: .7;
  color: rgba(255,255,255,.16);
}

.subhero { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: calc(var(--nav-h) + 72px) 0 48px; }
.subhero h1 { margin-bottom: 12px; }
.subhero p { color: var(--muted); max-width: 56ch; margin: 0; }
.wrap { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 0 0 100px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: #111; border-radius: 20px; overflow: hidden; }
.card img { width: 100%; height: 280px; object-fit: contain; background: #0a0a0a; }
.card__body { padding: 22px; }
.card__body p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery img { width: 100%; aspect-ratio: 3/4; object-fit: contain; background: #0d0d0d; border-radius: 16px; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.split img { width: 100%; min-height: 400px; object-fit: contain; background: #0a0a0a; border-radius: 22px; }
.post { display: grid; grid-template-columns: 180px 1fr; gap: 22px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.post img { width: 180px; height: 140px; object-fit: contain; background: #0d0d0d; border-radius: 14px; }
.post p { margin: 0; color: var(--muted); font-size: 14px; }
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price { background: #111; border: 1px solid var(--line); border-radius: 22px; padding: 28px 24px; min-height: 360px; display: flex; flex-direction: column; }
.price.is-hot { background: var(--red); border-color: var(--red); }
.price h3 { margin: 8px 0 16px; }
.price ul { flex: 1; }
.price li { color: var(--muted); font-size: 14px; margin-bottom: 8px; }
.price.is-hot li { color: rgba(255,255,255,.9); }
.price strong { font-size: 34px; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; max-width: 740px; }
.form .full { grid-column: 1 / -1; }
.form label { display: grid; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #888; }
.form input, .form textarea, .form select {
  background: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.18);
  color: #fff; padding: 10px 0 12px; outline: 0;
}
.form input:focus, .form textarea:focus { border-bottom-color: var(--red); }
.form textarea { min-height: 110px; }
.form-msg { margin: 8px 0 0; font-weight: 700; }
.form-msg.ok { color: #7dff9a; }
.form-msg.err { color: #ff6b6b; }
.article { max-width: 720px; }
.article p { color: #cfcfcf; font-size: 17px; line-height: 1.75; }
.article img { width: 100%; max-height: 460px; object-fit: contain; background: #0a0a0a; border-radius: 20px; margin: 8px 0 28px; }

.reveal { opacity: 0; transform: translateY(22px); transition: .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .about, .pro, .split { grid-template-columns: 1fr; }
  .about__photos { min-height: 0; }
  .about__photos-a, .about__photos-b, .about__photos-c { position: static; width: 100%; height: 240px; margin-bottom: 12px; }
  .about__caption { position: static; width: auto; }
  .hero__stat { display: none; }
  .services__grid, .price-row, .grid-3 { grid-template-columns: 1fr; }
  .trainers__grid, .gallery { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quotes__float { display: none; }
}
@media (max-width: 860px) {
  .nav__links {
    position: fixed; inset: 72px 0 0;
    background: #050505; flex-direction: column; align-items: flex-start;
    padding: 28px; gap: 16px;
    transform: translateX(110%); transition: transform .35s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; }
  .nav__mobile-cta {
    display: inline-flex; margin-top: 8px;
    background: var(--red); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 700;
  }
  .nav__drop-menu { position: static; transform: none; opacity: 1; pointer-events: auto; background: 0; border: 0; padding: 8px 0 0 10px; }
  .hero__copy { padding-top: calc(var(--nav-h) + 40px); }
  .hero__athlete { width: 78%; }
  .hero__note { margin-top: 32px; }
  .services__head { flex-direction: column; align-items: flex-start; }
  .form, .post { grid-template-columns: 1fr; }
  .post img { width: 100%; height: 220px; }
  .footer__bar { flex-direction: column; }
}
