/* =====================================================================
   WEST END ATHLETIC CLUB — STYLES
   Heritage editorial / fight gym aesthetic
   ===================================================================== */

:root {
  --ink: #0A0A0A;
  --carbon: #141414;
  --smoke: #1F1F1F;
  --fight: #E63946;
  --blood: #A82835;
  --bone: #F5F5F0;
  --ash: rgba(245, 245, 240, 0.75);
  --fog: rgba(245, 245, 240, 0.55);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --brick: #3A1F1A;

  --font-display: 'Big Shoulders Display', 'Anton', sans-serif;
  --font-display-alt: 'Anton', sans-serif;
  /* "Editorial" was italic Playfair — retired site-wide. Now maps to the
     display font so the red accents keep their weight/color, minus the italic. */
  --font-editorial: 'Big Shoulders Display', 'Anton', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html { background: var(--ink); }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* hide body until loader done to avoid flash */
body.is-loading { overflow: hidden; }
body.is-loading main, body.is-loading footer, body.is-loading header { visibility: hidden; }

/* =====================================================================
   TYPOGRAPHY
   ===================================================================== */

.font-display { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 0.88; font-weight: 900; }
.font-display-alt { font-family: var(--font-display-alt); letter-spacing: 0.005em; line-height: 0.9; font-weight: 400; }
.font-editorial { font-family: var(--font-editorial); }
.font-mono { font-family: var(--font-mono); }
.italic { font-style: italic; }

.meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fog);
}

@media (min-width: 1024px) {
  .meta { font-size: 11px; }
}

.meta--prefix::before {
  content: "— ";
  color: var(--fight);
}

/* Headline rule: serif italic red word */
.italic-red {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
  letter-spacing: -0.04em;
}

/* =====================================================================
   LOADING SCREEN
   ===================================================================== */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 48px);
  pointer-events: auto;
}

.loader__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.loader__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  position: relative;
}

.loader__counter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 28vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--bone);
}

.loader__counter sup {
  font-size: 0.18em;
  vertical-align: top;
  color: var(--fight);
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  margin-left: 0.1em;
}

.loader__brand {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ash);
  letter-spacing: 0.01em;
  opacity: 0;
}

.loader__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--hairline);
}
.loader__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--fight);
  transform-origin: left;
}

/* slide-up reveal */
.loader.is-leaving {
  animation: loaderLeave 1.1s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}
@keyframes loaderLeave {
  to { transform: translateY(-101%); }
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.4s ease, border-color 0.4s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--hairline);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav__logo {
  display: flex;
  align-items: center;
  color: var(--bone);
  text-decoration: none;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
@media (max-width: 640px) {
  .nav__logo-img { height: 36px; }
}

.nav__links {
  display: none;
}
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    gap: 32px;
  }
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--fight);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--fight);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.nav__cta:hover { background: var(--blood); }
.nav__cta svg { width: 12px; height: 12px; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 12px;
}
@media (min-width: 1024px) {
  .nav__burger { display: none; }
}
.nav__burger span {
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: 100px clamp(20px, 6vw, 48px) 48px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 10vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--bone);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
}

/* =====================================================================
   HERO
   ===================================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 5vw, 48px);
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Lift in-flow content above the media layer. Excludes scroll cue + caption,
   which are absolutely positioned — without these :not()s this rule's higher
   specificity would force them back into flow and bloat the hero column. */
.hero > *:not(.hero__media):not(.hero__scroll):not(.hero__caption) { position: relative; z-index: 1; }
.hero__media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
  will-change: transform;
}
/* Background video — layered over the poster img, below the ::after gradient */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  will-change: transform;
}
.hero__video.is-ready { opacity: 1; }
.screenshot-mode .hero__video { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.4) 70%, rgba(10,10,10,0.95) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(10,10,10,0.6), transparent 60%);
}

.hero__topbar {
  position: absolute;
  top: clamp(24px, 5vw, 48px);
  /* This element is effectively in-flow (the .hero > * rule forces relative),
     so it already sits at the headline's left edge — no horizontal offset. */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 76px;
}
.hero__topbar .meta { color: var(--ash); }

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.6vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--bone);
  max-width: 1400px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.hero__headline .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  /* Expand the reveal-mask box downward so descenders (g, y) aren't clipped,
     then pull the line back up so vertical rhythm is unchanged. */
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}
.hero__headline .word span {
  display: inline-block;
}

.hero__headline em {
  font-family: var(--font-editorial);
  font-weight: 900;
  font-style: italic;
  color: var(--fight);
  padding-right: 0.04em;
}

.hero__sub {
  max-width: 540px;
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ash);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--fight);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-primary:hover { background: var(--blood); }
.btn-primary svg, .btn-secondary svg, .nav__cta svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: transparent;
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(245,245,240,0.4);
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.btn-secondary:hover { border-color: var(--bone); background: rgba(245,245,240,0.04); }

.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 14px;
  background: rgba(245,245,240,0.04);
  border: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  max-width: fit-content;
  flex-wrap: wrap;
}
.hero__proof-stars {
  color: #F5C518;
  letter-spacing: 0.1em;
  font-size: 13px;
}
.hero__proof-text { color: var(--bone); }

.hero__caption {
  position: absolute;
  right: clamp(24px, 5vw, 48px);
  bottom: clamp(48px, 8vw, 96px);
  max-width: 240px;
  text-align: right;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--fog);
  line-height: 1.5;
  display: none;
}
@media (min-width: 1280px) { .hero__caption { display: block; } }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--fight), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* =====================================================================
   MARQUEE TICKER
   ===================================================================== */

.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--ink);
  padding: 20px 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  flex-shrink: 0;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 56px);
  letter-spacing: -0.01em;
  color: var(--bone);
  text-transform: uppercase;
}
.marquee__item em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--fight);
  font-weight: 900;
}
.marquee__item .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--fight);
  border-radius: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================================
   SECTIONS — GENERAL
   ===================================================================== */

.section {
  padding: clamp(56px, 7.5vw, 104px) clamp(20px, 5vw, 48px);
  position: relative;
}

.container { max-width: 1440px; margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 1.3fr 1fr; gap: 64px; }
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.section-head__title em {
  font-family: var(--font-editorial);
  font-weight: 900;
  font-style: italic;
  color: var(--fight);
}
.section-head__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end;
}
.section-head__aside p {
  color: var(--ash);
  font-size: 16px;
  max-width: 380px;
}

.section-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.section-meta::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--fight);
}

/* =====================================================================
   MISSION
   ===================================================================== */

.mission {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) {
  .mission__grid { grid-template-columns: 1.4fr 1fr; gap: 96px; }
}

.mission__quote {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--bone);
}
.mission__quote em {
  font-style: italic;
  color: var(--fight);
  font-weight: 900;
}

.mission__aside { display: flex; flex-direction: column; gap: 32px; }
.mission__aside p {
  font-size: 16px;
  color: var(--ash);
  line-height: 1.75;
}
.mission__mantra {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  align-items: center;
}
.mission__mantra span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.mission__mantra span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--fight);
  border-radius: 0;
}

/* =====================================================================
   STATS STRIP
   ===================================================================== */

.stats {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(40px, 4.5vw, 72px) clamp(20px, 5vw, 48px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}
@media (min-width: 768px) {
  .stat:last-child { border-right: 0; }
}
.stat__num {
  font-family: var(--font-editorial);
  font-weight: 900;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bone);
}
.stat__num em {
  font-style: italic;
  color: var(--fight);
}
.stat:nth-child(3) .stat__num { color: var(--fight); }
.stat__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fog);
}

/* =====================================================================
   TRAINING TRACKS
   ===================================================================== */

.tracks { background: var(--ink); }
.tracks__list {
  border-top: 1px solid var(--hairline);
}
.track {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}
@media (min-width: 1024px) {
  .track {
    grid-template-columns: 100px 1.4fr 1fr 200px;
    gap: 48px;
    padding: 48px 0;
    align-items: center;
  }
}
.track:hover { background: var(--carbon); }
.track__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--fight);
  padding-left: 20px;
}
.track__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--bone);
  transition: color 0.3s ease;
}
.track:hover .track__title { color: var(--fight); }
.track__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.track__desc {
  color: var(--ash);
  font-size: 14px;
  line-height: 1.6;
  max-width: 480px;
  display: none;
}
@media (min-width: 1024px) {
  .track__desc { display: block; }
}
.track__action {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .track__action { display: flex; }
}
.track__action svg {
  width: 28px; height: 14px;
  transition: transform 0.3s ease;
}
.track:hover .track__action { color: var(--fight); }
.track:hover .track__action svg { transform: translateX(6px); }

.track__preview {
  position: absolute;
  right: 25%;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  width: 320px;
  height: 200px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
  display: none;
}
@media (min-width: 1280px) { .track__preview { display: block; } }
.track__preview img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}
.track:hover .track__preview {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* =====================================================================
   VALUES — WE ARE
   ===================================================================== */

.values { background: var(--carbon); padding: clamp(56px, 7.5vw, 104px) clamp(20px, 5vw, 48px); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);}
.values__intro {
  max-width: 700px;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.values__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 24px;
}
.values__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}

.values__list { display: flex; flex-direction: column; }
.value {
  border-top: 1px solid var(--hairline);
  padding: clamp(32px, 5vw, 56px) 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: baseline;
  transition: padding 0.4s ease;
}
@media (min-width: 1024px) {
  .value { grid-template-columns: 60px 1fr 1fr; gap: 56px; padding: clamp(40px, 4vw, 72px) 0; }
}
.value:last-child { border-bottom: 1px solid var(--hairline); }
.value__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--fog);
}
.value__word {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--bone);
  transition: color 0.4s ease, transform 0.4s ease;
}
.value:hover .value__word { color: var(--fight); }
.value__desc {
  color: var(--ash);
  font-size: 16px;
  line-height: 1.7;
  max-width: 480px;
  align-self: center;
}

/* =====================================================================
   FACILITY
   ===================================================================== */

.facility { background: var(--ink); position: relative; }

.facility__hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
}
.facility__hero img {
  width: 100%; height: 110%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
  will-change: transform;
}
.facility__hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.8) 100%);
}

.facility__overlay {
  position: absolute;
  inset: 0;
  padding: clamp(40px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.facility__overlay-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.facility__overlay-bottom {
  max-width: 800px;
}
.facility__sqft {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 8.4vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin-bottom: 24px;
}
.facility__sqft em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.facility__desc {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--bone);
  max-width: 640px;
}

.facility__grid {
  padding: clamp(40px, 5vw, 72px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(120px, 32vw, 170px);
  grid-auto-flow: dense;
  gap: 8px;
}
@media (min-width: 768px) {
  .facility__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(150px, 16vw, 190px); gap: 10px; }
  /* Mosaic accents — a feature tile, a wide tile and a tall tile per cluster.
     grid-auto-flow: dense backfills the gaps for a tight collage. */
  .facility__grid figure:nth-child(8n + 1) { grid-column: span 2; grid-row: span 2; }
  .facility__grid figure:nth-child(8n + 5) { grid-column: span 2; }
  .facility__grid figure:nth-child(8n + 4) { grid-row: span 2; }
}
@media (min-width: 1280px) {
  .facility__grid { grid-auto-rows: 210px; }
}
.facility__grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--carbon);
  cursor: zoom-in;
}
.facility__grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: filter 0.5s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.facility__grid figure:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}
/* Enlarge affordance on hover */
.facility__grid figure::after {
  content: "";
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  background:
    linear-gradient(var(--bone), var(--bone)) center/13px 2px no-repeat,
    linear-gradient(var(--bone), var(--bone)) center/2px 13px no-repeat,
    rgba(10, 10, 10, 0.55);
  border: 1px solid var(--hairline-strong);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.facility__grid figure:hover::after { opacity: 1; transform: scale(1); }

.facility__amenities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 48px) clamp(32px, 4vw, 56px);
}
@media (min-width: 768px) {
  .facility__amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .facility__amenities { grid-template-columns: repeat(4, 1fr); }
}
.amenity {
  border-top: 1px solid var(--hairline);
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .amenity { border-right: 1px solid var(--hairline); padding: 32px; }
  .amenity:last-child { border-right: 0; }
}
.amenity__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fight);
}
.amenity__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--bone);
}
.amenity__desc {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
}

/* =====================================================================
   YOUTH / BAND SYSTEM
   ===================================================================== */

.youth { background: var(--ink); border-top: 1px solid var(--hairline); }
.youth__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .youth__grid { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
}
.youth__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.youth__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  will-change: transform;
}
.youth__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--bone);
}

.youth__content { display: flex; flex-direction: column; gap: 32px; }
.youth__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.youth__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}

.bands {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.band {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.band__color {
  height: 8px;
  width: 100%;
}
.band__num {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--fog);
}
.band__name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.band--grey .band__color { background: #6B6B6B; }
.band--yellow .band__color { background: #D4B400; }
.band--blue .band__color { background: #2E5C8A; }
.band--white .band__color { background: var(--bone); }
.band--red .band__color { background: var(--fight); }
.band--black .band__color { background: #1f1f1f; border: 1px solid var(--hairline-strong); }

.programs-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  margin-top: 16px;
}
.programs-mini > div {
  background: var(--ink);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.programs-mini__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fight);
}
.programs-mini__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 22px;
  color: var(--bone);
}
.programs-mini__price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ash);
  letter-spacing: -0.02em;
}

/* =====================================================================
   COACHES / TEAM
   ===================================================================== */

.team { background: var(--ink); border-top: 1px solid var(--hairline); position: relative; overflow: hidden; }
.team__list {
  border-top: 1px solid var(--hairline);
}
.coach {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
@media (min-width: 1024px) {
  .coach { grid-template-columns: 80px 1.2fr 1fr 200px; gap: 48px; padding: 36px 0;}
}
.coach__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--fog);
}
.coach__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--bone);
}
.coach__role {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
  color: var(--ash);
}
.coach__certs {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
  text-align: right;
  display: none;
}
@media (min-width: 1024px) { .coach__certs { display: block; } }

.certs-marquee {
  margin-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--hairline);
  padding-top: 28px;
}
.certs-marquee__row {
  display: flex;
  overflow: hidden;
  gap: 64px;
}
.certs-marquee__track {
  display: flex;
  gap: 64px;
  animation: marqueeScroll 30s linear infinite;
  flex-shrink: 0;
  align-items: center;
}
.cert {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  color: var(--ash);
  white-space: nowrap;
}

/* =====================================================================
   CHALLENGE 12-WEEK
   ===================================================================== */

.challenge {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.challenge__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .challenge__inner { grid-template-columns: 1.3fr 1fr; gap: 96px; align-items: center; }
}
.challenge__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 132px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.challenge__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.challenge__title .row {
  display: block;
}

.challenge__meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 32px 0;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.challenge__price {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--fight);
  line-height: 1;
}
.challenge__price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog);
  line-height: 1.4;
}

.challenge__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.challenge__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.challenge__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ash);
  font-size: 15px;
  line-height: 1.6;
}
.challenge__list li::before {
  content: "→";
  color: var(--fight);
  font-family: var(--font-mono);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =====================================================================
   QUOTE BLOCK
   ===================================================================== */

.quote-block {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 48px);
  text-align: center;
}
.quote-block__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 1180px;
  margin: 0 auto 32px;
  text-wrap: balance;
}
.quote-block__quote em {
  color: var(--fight);
  font-style: italic;
  font-weight: 900;
}
.quote-block__attr {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fog);
}

/* =====================================================================
   FRIDAY NIGHT FIGHTS
   ===================================================================== */

.events { background: var(--ink); position: relative; overflow: hidden; }
.events__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .events__inner { grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
}

.events__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  min-height: 460px;
}
.events__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.15);
}
.events__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(10,10,10,0.6));
}
.events__media-text {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.events__media-text em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}

.events__content { display: flex; flex-direction: column; gap: 28px; padding: 16px 0; }
.events__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.events__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}

.tix {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.tix__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.tix__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
}
.tix__price {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  color: var(--fight);
  letter-spacing: -0.02em;
}

/* =====================================================================
   FIRST TIMER CTA
   ===================================================================== */

.first-time {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.first-time__intro { max-width: 700px; margin-bottom: clamp(36px, 4vw, 56px); }
.first-time__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.first-time__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}

.specials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .specials { grid-template-columns: 1fr 1fr; }
}
.special {
  background: var(--carbon);
  border: 1px solid var(--hairline);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.special:hover {
  border-color: var(--fight);
  background: var(--smoke);
}
.special__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--fight);
}
.special__title {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--bone);
}
.special__title sup {
  font-size: 0.4em;
  vertical-align: top;
  color: var(--fight);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}
.special__desc {
  color: var(--ash);
  font-size: 15px;
  line-height: 1.6;
}
.special__terms {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
}
.special__terms li::before {
  content: "·  ";
  color: var(--fight);
}
.special__cta {
  margin-top: auto;
}

/* =====================================================================
   FOOTER
   ===================================================================== */

footer {
  background: var(--ink);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 48px) 32px;
  position: relative;
  overflow: hidden;
}
.footer__mega {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 10.8vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  color: var(--bone);
  text-align: center;
  margin-bottom: clamp(36px, 4.5vw, 72px);
  position: relative;
  text-wrap: balance;
}
.footer__mega em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-top: 1px solid var(--hairline);
  padding: 48px 0;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; } }

.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fight);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: var(--ash);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--fight); }
.footer__col p, .footer__col li { color: var(--ash); font-size: 14px; line-height: 1.7; }

.footer__brand {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 16px;
  color: var(--bone);
  max-width: 380px;
  margin-top: 16px;
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =====================================================================
   HOMEPAGE — SECTION NAV CARDS (the home's main content)
   ===================================================================== */

.section-nav {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 48px);
  background: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.section-nav__head {
  max-width: 1440px;
  margin: 0 auto clamp(40px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-nav__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin: 0;
  max-width: 900px;
}
.section-nav__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.section-nav__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .section-nav__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.card {
  display: grid;
  grid-template-rows: auto auto;
  background: var(--carbon);
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--bone);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.card:hover { border-color: var(--fight); }
.card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--carbon);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05) saturate(0.9);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  will-change: transform;
}
.card:hover .card__media img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.65) 100%);
  pointer-events: none;
}
.card__body {
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card__meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.card__arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.card__arrow svg { width: 14px; height: 14px; }
.card:hover .card__arrow {
  background: var(--fight);
  border-color: var(--fight);
  transform: translateX(4px);
}
.card__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0;
}
.card__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.card__sub {
  color: var(--ash);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
}

/* =====================================================================
   HOMEPAGE — TEASER OVERRIDES (legacy — kept for other pages that reuse)
   ===================================================================== */

.facility__grid--teaser {
  grid-template-columns: repeat(2, 1fr) !important;
  padding: clamp(32px, 4vw, 56px) clamp(20px, 5vw, 48px) clamp(24px, 3vw, 40px) !important;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .facility__grid--teaser { grid-template-columns: repeat(4, 1fr) !important; }
}
.facility__grid--teaser figure { aspect-ratio: 4/3; }

.facility__cta {
  display: flex;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 48px) clamp(56px, 7vw, 96px);
}

.team__list--teaser .coach:nth-child(n+5) { display: none; }

/* =====================================================================
   CONVERSION CTA STRIP (home)
   ===================================================================== */

.cta-strip {
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230,57,70,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(230,57,70,0.06), transparent 55%);
  pointer-events: none;
}
.cta-strip__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-strip__inner .meta { color: var(--ash); }
.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin: 0;
  text-wrap: balance;
}
.cta-strip__headline em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.cta-strip__sub {
  max-width: 640px;
  color: var(--ash);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
}
.cta-strip__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cta-strip__terms {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}

.btn-primary--lg {
  padding: 22px 36px;
  font-size: 12px;
  letter-spacing: 0.28em;
}

/* =====================================================================
   SUB-PAGE HERO (smaller than home hero — for inner pages)
   ===================================================================== */

.page-hero {
  position: relative;
  min-height: 60vh;
  padding: clamp(140px, 18vw, 220px) clamp(20px, 5vw, 48px) clamp(64px, 8vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Lift in-flow content above the media. Excludes the breadcrumbs, which are
   absolutely positioned — without this :not() the rule's higher specificity
   forces them into flow, dropping them behind the title. */
.page-hero > *:not(.page-hero__media):not(.page-hero__breadcrumbs) { position: relative; z-index: 1; }
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.05) saturate(0.9);
}
/* Background video — sits above the poster img, below the ::after gradient */
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.05) saturate(0.9);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.page-hero__video.is-ready { opacity: 1; }
/* Screenshot mode + reduced motion: keep the static poster img, hide video */
.screenshot-mode .page-hero__video { display: none; }
@media (prefers-reduced-motion: reduce) {
  .page-hero__video { display: none; }
}
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 30%, rgba(10,10,10,0.55) 70%, rgba(10,10,10,0.95) 100%);
}
.page-hero__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  color: var(--bone);
  max-width: 1200px;
  margin: 0 0 24px;
  text-wrap: balance;
}
.page-hero__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.page-hero__sub {
  max-width: 640px;
  color: var(--ash);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
}
.page-hero__breadcrumbs {
  position: absolute;
  top: 92px;
  left: clamp(20px, 5vw, 48px);
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 2;
}
.page-hero__breadcrumbs a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s ease;
}
.page-hero__breadcrumbs a:hover { color: var(--fight); }
.page-hero__breadcrumbs span {
  color: var(--fog);
  font-family: var(--font-mono);
  font-size: 10px;
}

/* =====================================================================
   CLASSES PAGE — discipline feature rows
   ===================================================================== */

.discipline {
  border-top: 1px solid var(--hairline);
  padding: clamp(56px, 7vw, 104px) 0;
}
.discipline:last-child { border-bottom: 1px solid var(--hairline); }
.discipline__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .discipline__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 88px;
    align-items: center;
  }
  .discipline:nth-child(even) .discipline__grid > .discipline__media { order: 2; }
}
.discipline__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--carbon);
}
.discipline__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
}
.discipline:hover .discipline__media img {
  transform: scale(1.04);
  filter: brightness(1) contrast(1.05);
}
.discipline__num {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--fight);
  background: var(--ink);
  padding: 8px 12px;
  border: 1px solid var(--hairline-strong);
}
.discipline__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.discipline__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.discipline__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.discipline__desc {
  color: var(--ash);
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
}
.discipline__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  margin-top: 8px;
}
.discipline__fact {
  background: var(--ink);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.discipline__fact-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fight);
}
.discipline__fact-val {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 18px;
  color: var(--bone);
}

/* =====================================================================
   SCHEDULE PAGE — weekly grid
   ===================================================================== */

.schedule {
  padding: clamp(48px, 6vw, 88px) clamp(20px, 5vw, 48px);
}
.schedule__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 24px;
}
.schedule__chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  color: var(--ash);
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.schedule__chip:hover { border-color: var(--bone); color: var(--bone); }
.schedule__chip.is-active {
  background: var(--fight);
  border-color: var(--fight);
  color: var(--bone);
}
.schedule__legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fog);
}
.schedule__legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.schedule__legend i {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.schedule__week {
  display: grid;
  grid-template-columns: 80px repeat(7, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  overflow-x: auto;
  min-width: 100%;
}
.schedule__cell {
  background: var(--ink);
  padding: 12px 10px;
  min-height: 64px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
}
.schedule__cell--head {
  background: var(--carbon);
  font-weight: 500;
  color: var(--bone);
  text-align: center;
  padding: 18px 8px;
  min-height: 0;
}
.schedule__cell--time {
  background: var(--carbon);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
}
.class-block {
  display: block;
  margin: -12px -10px;
  padding: 12px 10px;
  border-left: 3px solid var(--fight);
  text-decoration: none;
  height: 100%;
  min-height: 64px;
  transition: background-color 0.2s ease;
}
.class-block:hover { background: var(--carbon); }
.class-block__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--bone);
  text-transform: none;
  line-height: 1.15;
  margin-bottom: 4px;
}
.class-block__coach {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ash);
}
.class-block--boxing { border-left-color: var(--fight); }
.class-block--sc { border-left-color: #D4B400; }
.class-block--mma { border-left-color: #6B6B6B; }
.class-block--sparring { border-left-color: var(--bone); }
.class-block--open { border-left-color: rgba(245,245,240,0.3); }

.schedule__note {
  margin-top: 32px;
  padding: 24px;
  background: var(--carbon);
  border: 1px solid var(--hairline);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
}

/* =====================================================================
   MEMBERSHIPS PAGE — tier cards
   ===================================================================== */

.tiers {
  padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 768px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tiers { grid-template-columns: repeat(4, 1fr); } }

.tier {
  background: var(--carbon);
  border: 1px solid var(--hairline);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.tier:hover {
  border-color: var(--fight);
  background: var(--smoke);
}
.tier--featured {
  border-color: var(--fight);
  background: var(--smoke);
}
.tier--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--fight);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.tier__num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--fight);
}
.tier__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 0.95;
}
.tier__name em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.tier__price-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  font-size: 48px;
  color: var(--bone);
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier__price-period {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
}
.tier__desc {
  color: var(--ash);
  font-size: 14px;
  line-height: 1.65;
}
.tier__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ash);
  font-size: 13px;
  line-height: 1.5;
}
.tier__features li::before {
  content: "→";
  color: var(--fight);
  font-family: var(--font-mono);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.tier__cta {
  margin-top: auto;
}

/* =====================================================================
   FAQ
   ===================================================================== */

.faq {
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0 0 12px;
  line-height: 1.2;
}
.faq__q em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--fight);
}
.faq__a {
  color: var(--ash);
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}

/* =====================================================================
   PROMO LANDING — lead capture
   ===================================================================== */

.promo-hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 48px) clamp(48px, 6vw, 80px);
  overflow: hidden;
}
.promo-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.promo-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) saturate(0.85);
}
.promo-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.45) 70%, rgba(10,10,10,0.85) 100%);
}
.promo-hero__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .promo-hero__inner { grid-template-columns: 1.2fr 1fr; gap: 88px; }
}
.promo-hero__content { display: flex; flex-direction: column; gap: 24px; }
.promo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: var(--fight);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.promo-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--bone);
  margin: 0;
  text-wrap: balance;
}
.promo-hero__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.promo-hero__sub {
  max-width: 560px;
  color: var(--ash);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
}
.promo-hero__trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  margin-top: 8px;
}
.promo-hero__trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.promo-hero__trust-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  font-size: 28px;
  color: var(--bone);
  letter-spacing: -0.02em;
}
.promo-hero__trust-num em { color: var(--fight); }
.promo-hero__trust-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog);
}

/* =====================================================================
   VSL HERO — promo.html video sales landing
   ===================================================================== */
.vsl-hero {
  position: relative;
  padding: clamp(116px, 13vw, 168px) clamp(20px, 5vw, 48px) clamp(52px, 7vw, 92px);
  overflow: hidden;
  background: var(--ink);
}
.vsl-hero__bg { position: absolute; inset: 0; z-index: 0; }
.vsl-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.26) contrast(1.05) saturate(0.78);
}
.vsl-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 85% at 50% 0%, rgba(230,57,70,0.12) 0%, transparent 52%),
    linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.84) 58%, var(--ink) 100%);
}
.vsl-hero__inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 24px;
}
.vsl-hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--fight); color: var(--bone);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  padding: 8px 14px;
}
.vsl-hero__badge svg { width: 11px; height: 11px; fill: currentColor; }
.vsl-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(46px, 7.6vw, 104px); line-height: 0.9;
  letter-spacing: -0.03em; color: var(--bone); margin: 0;
  text-wrap: balance;
}
.vsl-hero__title em {
  font-family: var(--font-editorial); font-style: italic; font-weight: 900;
  color: var(--fight);
}
.vsl-hero__sub {
  max-width: 600px; margin: -4px 0 0;
  color: var(--ash); font-size: clamp(15px, 1.3vw, 19px); line-height: 1.6;
}
.vsl-hero__cta {
  margin-top: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.vsl-hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.vsl-hero__trustline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 9px 16px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash);
}
.vsl-hero__trustline .stars { color: var(--fight); letter-spacing: 0.05em; font-size: 13px; }
.vsl-hero__trustline .dot { color: var(--fog); }

/* The VSL player */
.vsl { width: 100%; max-width: 920px; margin: 8px auto 0; }
.vsl__frame {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  background: #000; overflow: hidden;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 40px 120px rgba(0,0,0,0.65);
}
.vsl__frame::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 64px; height: 3px; background: var(--fight); z-index: 4;
}
.vsl__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; background: #000;
}
.vsl__cover {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  border: 0; cursor: pointer; color: var(--bone); width: 100%;
  background: radial-gradient(80% 80% at 50% 50%, rgba(10,10,10,0.18) 0%, rgba(10,10,10,0.62) 100%);
  transition: opacity 0.4s ease, visibility 0.4s;
}
.vsl__play {
  width: clamp(70px, 9vw, 94px); height: clamp(70px, 9vw, 94px);
  border-radius: 50%; background: var(--fight); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 50px rgba(230,57,70,0.45);
  position: relative; transition: transform 0.3s ease, background 0.3s ease;
}
.vsl__play::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--fight); animation: vslPulse 2.4s ease-out infinite;
}
@keyframes vslPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.65); opacity: 0; }
}
.vsl__play svg { width: 34%; height: 34%; margin-left: 5px; fill: currentColor; }
.vsl__cover:hover .vsl__play { transform: scale(1.06); background: var(--blood); }
.vsl__cover-meta { display: flex; flex-direction: column; gap: 6px; }
.vsl__cover-label {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(15px, 1.6vw, 19px); letter-spacing: 0.01em; color: var(--bone);
}
.vsl__cover-time {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ash);
}
.vsl__tag {
  position: absolute; left: 14px; bottom: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone);
  background: rgba(10,10,10,0.55); padding: 6px 10px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: opacity 0.3s ease;
}
.vsl__frame.is-playing .vsl__cover,
.vsl__frame.is-ended .vsl__cover { opacity: 0; visibility: hidden; pointer-events: none; }
.vsl__frame.is-playing .vsl__tag,
.vsl__frame.is-ended .vsl__tag { opacity: 0; pointer-events: none; }
.vsl__end {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center; padding: 24px;
  background: linear-gradient(180deg, rgba(10,10,10,0.82), rgba(10,10,10,0.93));
  opacity: 0; visibility: hidden; transition: opacity 0.45s ease, visibility 0.45s;
}
.vsl__frame.is-ended .vsl__end { opacity: 1; visibility: visible; }
.vsl__end-kicker {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--ash); margin: 0;
}
.vsl__end-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 4vw, 46px); line-height: 0.96; color: var(--bone); margin: 0;
}
.vsl__end-title em { font-family: var(--font-editorial); font-style: italic; color: var(--fight); }
.vsl__end-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.vsl__replay {
  background: transparent; border: 1px solid var(--hairline-strong); color: var(--bone);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 20px; cursor: pointer; min-height: 48px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.vsl__replay:hover { border-color: var(--bone); }

/* Claim section — value recap + lead form */
.claim {
  background: var(--ink);
  padding: clamp(56px, 7vw, 104px) clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--hairline);
}
.claim__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 44px; align-items: start;
}
@media (min-width: 940px) {
  .claim__inner { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
}
.claim__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 5vw, 62px); line-height: 0.94;
  letter-spacing: -0.025em; color: var(--bone); margin: 0 0 20px;
}
.claim__title em { font-family: var(--font-editorial); font-style: italic; color: var(--fight); }
.claim__lead { color: var(--ash); font-size: 16px; line-height: 1.7; max-width: 460px; margin: 0 0 28px; }
.claim__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.claim__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--bone); font-size: 15px; line-height: 1.5; }
.claim__list li svg { width: 18px; height: 18px; color: var(--fight); flex-shrink: 0; margin-top: 1px; stroke-width: 2.5; }

/* Lead form */
.lead-form {
  background: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.lead-form::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 60px;
  height: 3px;
  background: var(--fight);
}
.lead-form__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 4px;
}
.lead-form__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--fight);
}
.lead-form__lead {
  color: var(--ash);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 8px;
}
.lead-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .lead-form__row--two { grid-template-columns: 1fr 1fr; }
}
.lead-form__field { display: flex; flex-direction: column; gap: 8px; }
.lead-form__label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fog);
}
.lead-form__input,
.lead-form__select {
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--carbon);
  border: 1px solid var(--hairline-strong);
  color: var(--bone);
  padding: 14px 16px;
  width: 100%;
  border-radius: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.lead-form__input:focus,
.lead-form__select:focus {
  outline: none;
  border-color: var(--fight);
  background: var(--smoke);
}
.lead-form__input::placeholder { color: var(--fog); }
.lead-form__select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ash) 50%), linear-gradient(135deg, var(--ash) 50%, transparent 50%); background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }

.lead-form__submit {
  margin-top: 8px;
  padding: 18px 24px;
  width: 100%;
  justify-content: center;
}
.lead-form__submit[disabled] { opacity: 0.7; cursor: wait; }

/* Success state (swapped in after a successful submit) */
.lead-form__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.lead-form__success-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--fight); color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.lead-form__success-mark svg { width: 26px; height: 26px; }
.lead-form__legal {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fog);
  text-align: center;
  line-height: 1.6;
}
.lead-form__legal a { color: var(--ash); text-decoration: underline; }

.lead-form__hint {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: var(--fog);
  margin-left: 4px;
}

.lead-form__optional {
  margin-top: 4px;
  border: 1px dashed var(--hairline-strong);
  padding: 0;
}
.lead-form__optional summary {
  cursor: pointer;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  list-style: none;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.lead-form__optional summary::-webkit-details-marker { display: none; }
.lead-form__optional summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fight);
  font-size: 18px;
  font-family: var(--font-mono);
}
.lead-form__optional[open] summary::after { content: "−"; }
.lead-form__optional summary span { color: var(--fog); margin-left: 6px; }
.lead-form__optional > .lead-form__row { padding: 0 16px 16px; }

/* Promo sections */
.promo-section {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 5vw, 48px);
}

.promo-included {
  background: var(--carbon);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.promo-included__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .promo-included__grid { grid-template-columns: 1.1fr 1fr; gap: 88px; align-items: center; }
}
.promo-included__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0 0 24px;
}
.promo-included__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.promo-included ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.promo-included li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--bone);
  font-size: 17px;
  line-height: 1.5;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}
.promo-included li:last-child { border-bottom: 0; }
.promo-included li::before {
  content: "→";
  color: var(--fight);
  font-family: var(--font-mono);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.promo-included li b {
  font-weight: 400;
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--fight);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0;
}

/* Sticky mobile CTA */
.promo-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--fight);
  padding: 14px 20px;
  z-index: 90;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-top: 1px solid var(--blood);
}
.promo-sticky:hover { background: var(--blood); }
@media (max-width: 1023px) { .promo-sticky { display: flex; } }
@media (max-width: 1023px) { body.has-promo-sticky main { padding-bottom: 60px; } }

/* =====================================================================
   PAGE INTRO (used on simpler pages — about lead, story callouts)
   ===================================================================== */

.pull-quote {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pull-quote p {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
  text-wrap: balance;
  margin: 0;
}
.pull-quote em {
  color: var(--fight);
  font-weight: 900;
}

/* =====================================================================
   SCROLL ANIMATIONS — initial states
   ===================================================================== */

/* .reveal items are visible by default; GSAP uses .from() to animate them in.
   No-JS users see content normally. */
.reveal { opacity: 1; transform: none; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Split text line mask reveal — visible by default; GSAP uses .from() to animate */
.line-mask {
  display: block;
  overflow: hidden;
}
.line-mask > * {
  display: inline-block;
  will-change: transform;
}

/* Number counter helper */
.count { display: inline-block; }

/* Screenshot mode: cap viewport-relative heights so a tall headless screenshot
   captures the full page layout in a single grab. */
.screenshot-mode .hero { height: 820px; min-height: 0; }
.screenshot-mode .facility__hero { height: 700px; min-height: 0; }
.screenshot-mode .page-hero { min-height: 0 !important; height: auto !important; padding-top: 200px !important; padding-bottom: 80px !important; }
.screenshot-mode .promo-hero { min-height: 0 !important; height: auto !important; padding-top: 180px !important; padding-bottom: 80px !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .line-mask > * { transform: none; }
  .marquee__track, .certs-marquee__track { animation: none; }
  .hero__scroll-line { animation: none; }
}

/* Focus state */
:focus-visible {
  outline: 2px solid var(--fight);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: var(--fight);
  color: var(--bone);
}

/* Scroll bar (subtle) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--smoke); }
::-webkit-scrollbar-thumb:hover { background: var(--fight); }

/* =====================================================================
   CLASSES FIRST-TIME PRIMER
   ===================================================================== */

.primer {
  background: var(--carbon);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 48px);
}
.primer__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.primer__head { display: flex; flex-direction: column; gap: 12px; }
.primer__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--bone);
  margin: 0;
  max-width: 800px;
}
.primer__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.primer__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  width: 100%;
}
@media (min-width: 768px) {
  .primer__steps { grid-template-columns: repeat(3, 1fr); }
}
.primer__steps li {
  background: var(--ink);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.primer__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--fight);
}
.primer__step-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--bone);
  margin: 0;
}
.primer__step-title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 900;
  color: var(--fight);
}
.primer__steps p {
  color: var(--ash);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* =====================================================================
   MEMBERSHIPS COMPARISON TABLE
   Desktop: 5-col grid with header row.
   Mobile (≤ 640px): each row becomes a card; cells stack with tier labels.
   ===================================================================== */

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.compare__row {
  background: var(--ink);
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: center;
}
.compare__row--head {
  padding: 24px 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
}
.compare__label {
  color: var(--bone);
  font-size: 14px;
}
.compare__row--head .compare__label { color: var(--fog); }
.compare__cell {
  text-align: center;
}
.compare__row--head .compare__cell--accent { color: var(--fight); }
.compare__mark {
  display: inline-block;
  color: var(--fight);
  font-family: var(--font-mono);
  font-size: 18px;
  line-height: 1;
}
.compare__none {
  color: var(--fog);
  font-family: var(--font-mono);
}
.compare__text {
  color: var(--ash);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 14px;
}

@media (max-width: 640px) {
  .compare { border: 0; background: transparent; gap: 12px; }
  .compare__row--head { display: none; }
  .compare__row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 20px;
    border: 1px solid var(--hairline);
  }
  .compare__label {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 17px;
    color: var(--bone);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 4px;
  }
  .compare__cell {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--hairline);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fog);
    text-align: left;
  }
  .compare__cell:last-child { border-bottom: 0; }
  .compare__cell::before {
    content: attr(data-tier);
    flex: 0 0 auto;
  }
  .compare__mark { font-size: 0; color: transparent; }
  .compare__mark::after { content: "✓"; font-size: 16px; color: var(--fight); font-weight: 600; }
  .compare__none { font-size: 14px; color: var(--fog); }
  .compare__text { font-size: 11px; color: var(--ash); font-family: var(--font-editorial); font-style: italic; text-transform: none; letter-spacing: 0; }
}

/* =====================================================================
   MOBILE OPTIMIZATION (≤ 640px)
   - Scale display headlines so nothing crops on 375px viewports
   - Ensure 44px+ touch targets on key actions
   - Tighten paddings, fix horizontal overflow risks
   - 16px input font-size avoids iOS auto-zoom
   ===================================================================== */

/* Global mobile guards */
html, body { overflow-x: hidden; }
a, button, [role="button"] { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
input, select, textarea { font-size: 16px; }

@media (max-width: 640px) {
  /* Display headline scaling — pull max-bounds down so cropping disappears.
     The headline em (italic Playfair) renders wide; cap at viewport-safe sizes. */
  .hero__headline { font-size: clamp(44px, 14vw, 64px); letter-spacing: -0.02em; line-height: 1.06; max-width: 100%; overflow-wrap: break-word; }
  .hero__headline .word { overflow: visible; }
  /* Let the big headline flow/wrap naturally on phones — the forced break after
     "Average" would otherwise lock three words onto one too-wide line. */
  .hero__headline br { display: none; }
  .section-nav__title { font-size: clamp(28px, 8vw, 40px); line-height: 0.96; max-width: 100%; text-wrap: balance; }
  .cta-strip__headline { font-size: clamp(32px, 9vw, 44px); line-height: 0.96; }
  .page-hero__title { font-size: clamp(36px, 10vw, 48px); line-height: 0.95; max-width: 100%; }
  .promo-hero__title { font-size: clamp(34px, 9.5vw, 46px); line-height: 0.96; }
  .footer__mega { font-size: clamp(34px, 9.5vw, 46px); line-height: 0.96; }
  .discipline__title { font-size: clamp(28px, 8vw, 38px); }
  .card__title { font-size: clamp(28px, 8vw, 38px); }

  /* Hero — trim oversized vertical padding on phones */
  .hero { height: auto; min-height: 100vh; padding: clamp(104px, 22vw, 140px) 20px clamp(72px, 12vw, 96px); }
  .hero__sub { font-size: 15px; line-height: 1.55; }
  .hero__actions { gap: 12px; width: 100%; }
  .hero__actions .btn-primary, .hero__actions .btn-secondary { flex: 1 1 100%; justify-content: center; min-height: 52px; padding: 16px 20px; }

  /* Hero topbar — align the editorial prefix flush with the headline's left edge */
  .hero__topbar { flex-direction: column; align-items: flex-start; gap: 6px; left: 0; right: 0; padding-top: 8px; }
  .hero__topbar .meta { font-size: 9px; letter-spacing: 0.18em; }

  /* Scroll cue — drop it to the very bottom so it clears the reviews badge */
  .hero__scroll { bottom: 12px; gap: 6px; }
  .hero__scroll-line { height: 16px; }

  /* CTA strip — keep CTAs full-width and tappable */
  .cta-strip { padding: clamp(64px, 14vw, 96px) 20px; }
  .cta-strip__actions { width: 100%; }
  .cta-strip__actions .btn-primary, .cta-strip__actions .btn-secondary, .cta-strip__actions .btn-primary--lg { flex: 1 1 100%; justify-content: center; min-height: 52px; }
  .cta-strip__terms { gap: 14px; font-size: 11px; }

  /* Page hero — drop height so it doesn't dwarf the content */
  .page-hero { min-height: 0; padding: clamp(120px, 24vw, 160px) 20px clamp(56px, 10vw, 80px); }

  /* Section nav cards on home */
  .section-nav { padding: clamp(56px, 10vw, 80px) 20px; }
  .card__body { padding: 24px; gap: 14px; }

  /* Section paddings global tightening */
  .section { padding: clamp(48px, 11vw, 72px) 20px; }

  /* Footer */
  footer { padding: clamp(48px, 10vw, 72px) 20px 28px; }
  .footer__mega { margin-bottom: 32px; }

  /* Nav — keep tappable; hide CTA pill on tiny screens (burger covers it) */
  .nav__cta, .nav__menu { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
}
@media (max-width: 480px) {
  .nav__cta { display: none; }
}
@media (max-width: 640px) {

  /* Buttons — guarantee touch target */
  .btn-primary, .btn-secondary { min-height: 48px; padding: 14px 22px; }

  /* Discipline rows — kill the two-column fact grid risk and reduce gap */
  .discipline__facts { grid-template-columns: 1fr 1fr; }
  .discipline__fact { padding: 14px 16px; }

  /* Tier cards — full width, comfortable padding */
  .tier { padding: 28px 22px; }

  /* FAQ */
  .faq__question { font-size: 17px; min-height: 56px; padding: 18px 16px; }
  .faq__answer { font-size: 15px; }

  /* Promo — stacks form below offer; full-width inputs */
  .promo-hero { padding: clamp(120px, 24vw, 160px) 20px clamp(56px, 10vw, 80px); }
  .promo-hero__trust { gap: 18px; flex-wrap: wrap; }
  .promo-sticky { padding: 10px 14px; gap: 10px; }
  .promo-sticky .btn-primary { padding: 12px 18px; min-height: 44px; flex: 1; justify-content: center; }
  .lead-form input, .lead-form select, .lead-form textarea { min-height: 48px; }

  /* Marquee — slow down rotation so it's less dizzying on small screens */
  .marquee__track, .certs-marquee__track { animation-duration: 38s; }

  /* Schedule chips — taller for thumb */
  .schedule__chip { padding: 12px 14px; min-height: 44px; font-size: 11px; letter-spacing: 0.18em; }

  /* Stats — tighter padding, smaller letter-spacing so labels fit in 2-col */
  .stats { padding: clamp(48px, 10vw, 72px) 20px; }
  .stats__grid { gap: 0; }
  .stat { padding: 20px 14px; }
  .stat__num { font-size: clamp(36px, 11vw, 56px); }
  .stat__label { font-size: 9px; letter-spacing: 0.14em; line-height: 1.4; }

  /* Facility grid — single column on phones */
  .facility__grid, .facility__grid--teaser { grid-template-columns: repeat(2, 1fr) !important; gap: 6px; }

  /* Team list — single column */
  .team__list, .team__list--teaser { grid-template-columns: 1fr !important; }

  /* Quote block */
  .pull-quote, .quote-block { font-size: clamp(22px, 6.5vw, 30px); padding: 32px 22px; }
}

/* Very small phones (≤ 380px) — extra safety */
@media (max-width: 380px) {
  .hero__headline { font-size: 42px; }
  .page-hero__title { font-size: 34px; }
  .section-nav__title { font-size: 30px; }
  .cta-strip__headline { font-size: 30px; }
  .footer__mega { font-size: 32px; }
  .card__title { font-size: 26px; }
  .promo-hero__title { font-size: 32px; }
}

/* Safe area awareness for notched devices */
@supports (padding: max(0px)) {
  body { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
  .promo-sticky { padding-bottom: max(12px, env(safe-area-inset-bottom)); }
}

/* =====================================================================
   HEADLINE ACCENT WORDS — global override
   Replaces the red italic Playfair accent with the same display font as
   the surrounding headline, keeping the red color for emphasis.
   ===================================================================== */
.hero__headline em,
.section-head__title em,
.section-nav__title em,
.cta-strip__headline em,
.page-hero__title em,
.promo-hero__title em,
.footer__mega em,
.card__title em,
.discipline__title em,
.tier__name em,
.faq__q em,
.faq__question em,
.lead-form__title em,
.promo-included__title em,
.primer__title em,
.primer__step-title em,
.track__title em,
.values__title em,
.youth__title em,
.challenge__title em,
.events__title em,
.first-time__title em,
.facility__sqft em,
.events__media-text em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  color: var(--fight);
  letter-spacing: inherit;
  padding-right: 0;
}

/* Mobile-menu accent link (inline style currently uses Playfair) */
.mobile-menu__link em {
  font-family: var(--font-display) !important;
  font-style: normal !important;
  color: var(--fight) !important;
}

/* =====================================================================
   NO ITALICS — site-wide. Kill every italic slant (Playfair retired).
   Red accent colors are kept (color is untouched here).
   ===================================================================== */
*, *::before, *::after { font-style: normal !important; }

/* =====================================================================
   LIGHTBOX — click-to-enlarge for the facility gallery
   ===================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 64px);
  background: rgba(8, 8, 8, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  transform: scale(0.96);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__count {
  position: absolute;
  top: clamp(18px, 3vw, 30px);
  left: clamp(18px, 4vw, 40px);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ash);
}
.lightbox button {
  position: absolute;
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--hairline-strong);
  color: var(--bone);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.lightbox button:hover { background: var(--fight); border-color: var(--fight); }
.lightbox__close {
  top: clamp(14px, 3vw, 28px);
  right: clamp(14px, 4vw, 36px);
  width: 48px; height: 48px;
  font-size: 26px; line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 30px; line-height: 1;
}
.lightbox__prev { left: clamp(10px, 2.5vw, 32px); }
.lightbox__next { right: clamp(10px, 2.5vw, 32px); }
@media (max-width: 640px) {
  .lightbox__nav { width: 44px; height: 44px; bottom: 16px; top: auto; transform: none; }
  .lightbox__prev { left: 16px; }
  .lightbox__next { right: 16px; }
}

/* =====================================================================
   PROMO MODAL — "3 Days Free" lead-capture popup (timed + exit-intent)
   ===================================================================== */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(8, 8, 8, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.promo-modal.is-open { opacity: 1; visibility: visible; }

.promo-modal__card {
  position: relative;
  width: 100%;
  max-width: 880px;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  background: var(--carbon);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 50px 140px rgba(0, 0, 0, 0.75);
  overflow: hidden;
  transform: translateY(14px) scale(0.965);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.promo-modal.is-open .promo-modal__card { transform: none; }

/* Left media panel */
.promo-modal__media {
  position: relative;
  min-height: 100%;
  background: var(--ink);
  overflow: hidden;
}
.promo-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.08) saturate(0.92);
}
.promo-modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.85) 100%);
}
.promo-modal__media-tag {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-transform: uppercase;
}
.promo-modal__media-tag span {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--ash);
  margin-top: 8px;
}

/* Right body panel */
.promo-modal__body {
  padding: clamp(26px, 3.4vw, 44px);
  overflow-y: auto;
}
.promo-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fight);
  margin-bottom: 16px;
}
.promo-modal__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--fight);
}
.promo-modal__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 5.4vw, 60px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 14px;
  text-transform: none;
}
.promo-modal__title span { color: var(--fight); }
.promo-modal__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
  margin: 0 0 24px;
  max-width: 42ch;
}

/* Form */
.promo-form { display: flex; flex-direction: column; gap: 14px; }
.promo-form[hidden], .promo-modal__success[hidden] { display: none; }
.promo-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
}
.promo-form input,
.promo-form select {
  min-height: 50px;
  padding: 0 16px;
  background: var(--ink);
  border: 1px solid var(--hairline-strong);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.promo-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: linear-gradient(45deg, transparent 50%, var(--ash) 50%), linear-gradient(135deg, var(--ash) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.promo-form input::placeholder { color: var(--fog); }
.promo-form input:focus,
.promo-form select:focus {
  outline: none;
  border-color: var(--fight);
  background-color: #111;
}
.promo-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  min-height: 54px;
}
.promo-form__fine {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--fog);
  margin: 4px 0 0;
}

/* Close button */
.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid var(--hairline-strong);
  color: var(--bone);
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.promo-modal__close:hover { background: var(--fight); border-color: var(--fight); }
.promo-modal__close svg { width: 18px; height: 18px; }

/* Success state */
.promo-modal__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}
.promo-modal__success-mark {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fight);
  color: var(--fight);
}
.promo-modal__success-mark svg { width: 28px; height: 28px; }
.promo-modal__success h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 0.95;
  color: var(--bone);
  margin: 0;
}
.promo-modal__success p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ash);
  margin: 0;
}

/* Mobile — stack: compact image band on top, form below */
@media (max-width: 720px) {
  .promo-modal__card { grid-template-columns: 1fr; max-height: 94vh; }
  .promo-modal__media { min-height: 132px; max-height: 132px; }
  .promo-modal__media-tag { font-size: 18px; }
}
@media (max-width: 380px) {
  .promo-modal__media { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .promo-modal, .promo-modal__card { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .promo-modal__card { transform: none; }
}
