/* ============================================================
   VALENCE FITNESS CLUB — Shared Stylesheet
   ============================================================ */

:root {
  --onyx: #0A0A0A;
  --onyx-soft: #111110;
  --onyx-deep: #050505;
  --bone: #FAF8F4;
  --bone-dim: rgba(250, 248, 244, 0.55);
  --bone-faint: rgba(250, 248, 244, 0.18);
  --bone-rule: rgba(250, 248, 244, 0.12);
  --volt: #CDFF00;
  --volt-glow: rgba(205, 255, 0, 0.55);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out-cubic: cubic-bezier(0.83, 0, 0.17, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { background: var(--onyx); color: var(--bone); margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--volt); color: var(--onyx); }

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.ff-display { font-family: 'Sora', sans-serif; font-feature-settings: 'ss01'; }
.ff-mono    { font-family: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace; }
.tnum       { font-variant-numeric: tabular-nums; }

/* ---------- COLOR UTILITIES ---------- */
.text-bone       { color: var(--bone); }
.text-bone-dim   { color: var(--bone-dim); }
.text-bone-faint { color: var(--bone-faint); }
.text-volt       { color: var(--volt); }
.bg-onyx         { background: var(--onyx); }
.bg-bone         { background: var(--bone); }
.bg-volt         { background: var(--volt); }

/* ---------- LAYOUT ---------- */
.section-pad   { padding-left: clamp(24px, 6vw, 96px); padding-right: clamp(24px, 6vw, 96px); }
.rule          { height: 1px; width: 100%; background: var(--bone-rule); border: 0; }
.rule-strong   { height: 1px; width: 100%; background: rgba(250, 248, 244, 0.22); border: 0; }

/* ---------- CUSTOM CURSOR ---------- */
@media (hover: hover) and (pointer: fine) {
  html, body, * { cursor: none !important; }
  .cursor-ring,
  .cursor-dot {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    border-radius: 9999px;
    transform: translate(-50%, -50%);
    will-change: transform, width, height;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .cursor-ring {
    width: 22px; height: 22px;
    border: 1.25px solid var(--volt);
    background: transparent;
  }
  .cursor-ring.hover {
    width: 44px; height: 44px;
    border-width: 0;
    background: var(--volt);
    mix-blend-mode: difference;
  }
  .cursor-ring.pressed { width: 16px; height: 16px; }
  .cursor-dot {
    width: 3px; height: 3px;
    background: var(--volt);
    box-shadow: 0 0 6px var(--volt-glow);
  }
  .cursor-ring.visible, .cursor-dot.visible { opacity: 1; }
  .cursor-dot.hover { opacity: 0; }
}
@media (hover: none) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ---------- GRAIN OVERLAY ---------- */
.grain { position: relative; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen; opacity: 0.5;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--onyx);
  pointer-events: none;
}
.loader__panel {
  position: absolute; left: 0; right: 0;
  height: 50%; background: var(--onyx);
  transition: transform 1.15s var(--ease-in-out-cubic);
  z-index: 1;
}
.loader__panel--top    { top: 0; border-bottom: 1px solid rgba(250,248,244,0.04); }
.loader__panel--bottom { bottom: 0; }
.loader.split .loader__panel--top    { transform: translateY(-100%); }
.loader.split .loader__panel--bottom { transform: translateY(100%); }

.loader__corner {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(250,248,244,0.45);
}
.loader__corner--tl { top: 24px; left: 32px; }
.loader__corner--tr { top: 24px; right: 32px; }
.loader__corner--bl { bottom: 24px; left: 32px; }
.loader__corner--br { bottom: 24px; right: 32px; display: flex; align-items: center; gap: 8px; }
.loader__corner--br::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--volt);
}

.loader__center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 10;
  transition: opacity 0.35s ease;
}
.loader.split .loader__center { opacity: 0; }
.loader__mark {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(1.12);
  filter: blur(6px);
  animation: markIn 0.85s var(--ease-out-quart) 0.1s forwards;
}
@keyframes markIn {
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
.loader__readout {
  position: absolute;
  bottom: clamp(60px, 12vh, 100px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
}
.loader__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(250,248,244,0.7);
  margin-bottom: 12px;
}
.loader__meta .frac { font-variant-numeric: tabular-nums; }
.loader__meta .frac small { color: rgba(250,248,244,0.35); }
.loader__track {
  position: relative; height: 1px;
  background: rgba(250,248,244,0.12);
  overflow: visible;
}
.loader__bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%; background: var(--volt);
  box-shadow: 0 0 10px var(--volt-glow);
}
.loader__tick {
  position: absolute; left: 0; top: -3px; bottom: -3px;
  width: 1px; background: var(--volt);
}
.loader__hint {
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.35em;
  color: rgba(250,248,244,0.35);
  margin-top: 12px;
}

/* ============================================================
   GLOBAL NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px clamp(24px, 6vw, 88px);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-bottom 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(250,248,244,0.06);
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 52px; width: auto; }
.nav__links {
  display: flex; gap: 36px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.38em;
}
.nav__links a { position: relative; padding-bottom: 4px; opacity: 0.65; transition: opacity 0.3s; }
.nav__links a:hover { opacity: 1; }
.nav__links a.active { opacity: 1; }
.nav__links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--volt);
}
.nav__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.38em;
  opacity: 0.85; transition: opacity 0.3s;
}
.nav__cta:hover { opacity: 1; }

.nav__toggle {
  display: none;
  width: 32px; height: 24px;
  position: relative;
}
.nav__toggle span {
  position: absolute; left: 0; right: 0;
  height: 1.5px; background: var(--bone);
  transition: transform 0.4s var(--ease-out-quart), opacity 0.3s;
}
.nav__toggle span:nth-child(1) { top: 4px; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 4px; }
.nav.menu-open .nav__toggle span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav__toggle span:nth-child(3) { bottom: 50%; transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 1024px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile {
    position: fixed; inset: 0;
    background: var(--onyx);
    z-index: 90;
    display: flex; flex-direction: column;
    padding: 110px clamp(20px, 5vw, 56px) 40px;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease-out-quart);
    overflow-y: auto;
  }
  .nav__mobile.open { transform: translateY(0); }
  .nav__mobile a {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 10vw, 64px);
    letter-spacing: -0.03em;
    padding: 14px 0;
    border-bottom: 1px solid var(--bone-rule);
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav__mobile a small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.4em;
    color: var(--bone-dim);
    font-weight: 400;
  }
}
@media (min-width: 1025px) {
  .nav__mobile { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; letter-spacing: 0.42em;
  padding: 16px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-quart), color 0.4s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--bone); color: var(--onyx);
}
.btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: var(--volt);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out-quart);
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary span { position: relative; z-index: 1; }
.btn--primary:hover { color: var(--onyx); transform: translateY(-2px); }

.btn--ghost {
  background: transparent; color: var(--bone);
  border-bottom: 1px solid var(--bone-faint);
  padding: 4px 0;
  border-radius: 0;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.btn--ghost:hover { color: var(--volt); border-color: var(--volt); }

.btn--volt {
  background: var(--volt); color: var(--onyx);
  box-shadow: 0 0 0 0 rgba(205,255,0,0);
}
.btn--volt:hover {
  box-shadow: 0 18px 48px -12px var(--volt-glow), 0 0 0 1px rgba(205,255,0,0.4);
  transform: translateY(-2px);
}

.btn__arrow { transition: transform 0.4s var(--ease-out-quart); }
.btn:hover .btn__arrow { transform: translateX(6px); }

/* ============================================================
   CARDS / HOVER UTILITIES
   ============================================================ */
.hover-lift { transition: transform 0.6s var(--ease-out-quart), box-shadow 0.6s var(--ease-out-quart); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: 0 32px 60px -20px rgba(0,0,0,0.7); }

.tile {
  position: relative; overflow: hidden;
  background: var(--onyx-soft);
  border: 1px solid rgba(250,248,244,0.06);
}
.tile__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-color: #1a1a1a;
  filter: grayscale(0.6) brightness(0.78) contrast(1.05);
  transition: transform 1.1s var(--ease-out-quart), filter 0.7s ease, opacity .6s ease;
  animation: imgFadeIn 0.8s ease-out;
}
@keyframes imgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.tile:hover .tile__img { transform: scale(1.06); filter: grayscale(0.2) brightness(0.85) contrast(1.05); }
.tile__wash {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.65) 100%);
}
.tile__index {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.42em;
  color: rgba(250,248,244,0.85);
}
.tile__cap {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; align-items: flex-end; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(250,248,244,0.9);
}
.tile__cta {
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out-quart);
  color: var(--volt);
}
.tile:hover .tile__cta { opacity: 1; transform: translateX(0); }

/* corner accents */
.corner-volt-tl::before,
.corner-volt-tl::after {
  content: ""; position: absolute; top: 0; left: 0;
  background: var(--volt); z-index: 2;
}
.corner-volt-tl::before { width: 28px; height: 1px; }
.corner-volt-tl::after  { width: 1px; height: 28px; }

/* ============================================================
   SERVICES ACCORDION  (5-column, hover-driven)
   ============================================================ */
.services-accordion { position: relative; }
.svc-col {
  position: relative;
  flex: 1 1 0;
  flex-grow: 1;
  background: var(--onyx);
  border-right: 1px solid rgba(250,248,244,0.22);
  overflow: hidden;
  cursor: pointer;
  transition: flex-grow 1.1s var(--ease-out-quart);
  min-width: 0;
}
.svc-col:last-child { border-right: 0; }
.svc-col.is-active { flex-grow: 3.6; }

.svc-col__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
  transform: scale(1.04);
  filter: grayscale(0.6) brightness(0.7);
  transition: opacity 0.95s var(--ease-out-quart),
              transform 1.6s var(--ease-out-quart),
              filter 0.95s var(--ease-out-quart);
}
.svc-col.is-active .svc-col__bg {
  opacity: 0.7;
  transform: scale(1);
  filter: grayscale(0) brightness(1);
}

.svc-col__edge {
  position: absolute; top: 0; bottom: 0; left: 0;
  width: 1px;
  background: var(--volt);
  box-shadow: 0 0 14px var(--volt-glow);
  opacity: 0; transition: opacity 0.45s;
}
.svc-col.is-active .svc-col__edge { opacity: 0.85; }

.svc-col__content {
  position: relative;
  height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(20px, 2.2vw, 36px);
}
.svc-col__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.42em;
}
.svc-col__num {
  color: rgba(250,248,244,0.45);
  transition: color 0.4s;
  font-variant-numeric: tabular-nums;
}
.svc-col.is-active .svc-col__num { color: rgba(250,248,244,0.85); }
.svc-col__arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--volt);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out-quart);
}
.svc-col.is-active .svc-col__arrow { opacity: 1; transform: translateX(0); }

.svc-col__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.45em;
  margin-bottom: 18px;
  color: rgba(250,248,244,0.4);
  transition: color 0.4s;
}
.svc-col.is-active .svc-col__tag { color: var(--volt); }

.svc-col__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
  transition: font-size 0.7s var(--ease-out-quart), letter-spacing 0.7s var(--ease-out-quart);
  white-space: pre-wrap;
}
.svc-col.is-active .svc-col__title {
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.035em;
}

.svc-col__list {
  margin: 32px 0 0; padding: 0; list-style: none;
  max-width: 320px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out-quart) 0.2s, transform 0.6s var(--ease-out-quart) 0.2s;
  pointer-events: none;
}
.svc-col.is-active .svc-col__list { opacity: 1; transform: translateY(0); pointer-events: auto; }
.svc-col__list li {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.28em;
  padding: 10px 0;
  color: rgba(250,248,244,0.78);
  border-bottom: 1px solid rgba(250,248,244,0.12);
}
.svc-col__list li:first-child { border-top: 1px solid rgba(250,248,244,0.12); }
.svc-col__list li span:first-child { display: flex; align-items: center; gap: 16px; }
.svc-col__list li b { color: rgba(250,248,244,0.38); font-weight: 400; }
.svc-col__list li span:last-child { color: rgba(250,248,244,0.35); }

@media (max-width: 900px) {
  .services-accordion { flex-direction: column; height: auto !important; }
  .svc-col {
    border-right: 0;
    border-bottom: 1px solid rgba(250,248,244,0.22);
    min-height: 220px;
  }
  .svc-col.is-active { min-height: 460px; }
  .svc-col:last-child { border-bottom: 0; }
}

/* ============================================================
   COACHES — sonsuz marquee akış
   ============================================================ */
.coaches-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  padding: 64px 0;
}
.coaches-marquee__track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: coachesScroll 40s linear infinite;
  align-items: flex-start;
}
.coaches-marquee:hover .coaches-marquee__track { animation-play-state: paused; }
@keyframes coachesScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .coaches-marquee__track { animation: none; }
}

/* ============================================================
   COACHES — horizontal scroll cards (legacy / detail use)
   ============================================================ */
.coach-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(280px, 28vw, 380px);
  scroll-snap-align: start;
  background: var(--onyx);
  margin-top: 0;
}
.coach-card--lead { width: clamp(320px, 32vw, 440px); margin-top: -8px; }
.coach-card--down { margin-top: 36px; }

.coach-card__ribbon {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.42em;
  color: var(--volt);
  margin-bottom: 12px;
}
.coach-card__spacer { height: 22px; }

.coach-card__frame {
  position: relative; aspect-ratio: 3/4;
  background: #111;
  border: 1px solid rgba(250,248,244,0.08);
  overflow: hidden;
}
.coach-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
  transition: transform 0.9s var(--ease-out-quart), filter 0.6s ease;
}
.coach-card:hover .coach-card__img { transform: scale(1.06); filter: grayscale(0.4) contrast(1.05) brightness(1); }

.coach-card__gradient {
  position: absolute; inset: auto 0 0 0; height: 35%;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,0.75));
  pointer-events: none;
}

.coach-card__top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; align-items: flex-start; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(250,248,244,0.85);
}
.coach-card__tag {
  padding: 3px 8px;
  border: 1px solid rgba(250,248,244,0.4);
  font-size: 9px;
}
.coach-card__hud {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.38em;
  color: rgba(250,248,244,0.85);
}

/* L-bracket Volt corners */
.coach-card__lh, .coach-card__lv,
.coach-card__rh, .coach-card__rv {
  position: absolute;
  background: var(--volt);
  box-shadow: 0 0 8px var(--volt-glow);
  transform-origin: top left;
  transition: transform 0.5s var(--ease-out-quart);
}
.coach-card__lh { top: 0; left: 0; height: 1px; width: 56px; transform: scaleX(0); transform-origin: left center; }
.coach-card__lv { top: 0; left: 0; width: 1px; height: 56px; transform: scaleY(0); transform-origin: center top; transition-delay: 0.05s; }
.coach-card__rh { bottom: 0; right: 0; height: 1px; width: 32px; transform: scaleX(0); transform-origin: right center; opacity: 0.7; transition-delay: 0.15s; }
.coach-card__rv { bottom: 0; right: 0; width: 1px; height: 32px; transform: scaleY(0); transform-origin: center bottom; opacity: 0.7; transition-delay: 0.2s; }
.coach-card:hover .coach-card__lh { transform: scaleX(1); }
.coach-card:hover .coach-card__lv { transform: scaleY(1); }
.coach-card:hover .coach-card__rh { transform: scaleX(1); }
.coach-card:hover .coach-card__rv { transform: scaleY(1); }

.coach-card__caption { margin-top: 22px; }
.coach-card__caption h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 0.95;
  margin: 0;
}
.coach-card--lead .coach-card__caption h3 { font-size: clamp(28px, 2.8vw, 36px); }
.coach-card__meta {
  margin-top: 10px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
}
.coach-card__meta p {
  margin: 0;
  font-size: 12.5px; line-height: 1.45;
  color: rgba(250,248,244,0.62);
}
.coach-card__bio-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.4em;
  color: rgba(250,248,244,0.35);
  transition: color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.coach-card:hover .coach-card__bio-link { color: var(--volt); transform: translateX(3px); }
.coach-card__bio {
  margin: 10px 0 0;
  font-size: 12px; line-height: 1.55;
  max-width: 320px;
  color: rgba(250,248,244,0.5);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out-quart);
}
.coach-card:hover .coach-card__bio { opacity: 1; transform: translateY(0); }

/* ============================================================
   GALLERY — asymmetric grid
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-tile { grid-column: span 4; grid-row: span 1; min-height: 0; }
.gallery-tile--hero { grid-column: span 7; grid-row: span 2; }
.gallery-tile--wide { grid-column: span 8; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .gallery-tile { grid-column: span 6; }
  .gallery-tile--hero { grid-column: span 6; grid-row: span 2; }
  .gallery-tile--wide { grid-column: span 6; }
}

/* ============================================================
   REVEAL ANIMATIONS (GSAP target classes)
   ============================================================ */
.reveal           { opacity: 0; transform: translateY(28px); will-change: transform, opacity; }
.reveal-fade      { opacity: 0; will-change: opacity; }
.reveal-up        { opacity: 0; transform: translateY(40px); will-change: transform, opacity; }
.reveal-clip      { clip-path: inset(0 100% 0 0); will-change: clip-path; }
.reveal-letter    { opacity: 0; transform: translateY(60px); will-change: transform, opacity; }
.reveal-letter-wrap { overflow: hidden; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section {
  position: relative;
  padding-top: clamp(80px, 12vw, 160px);
  padding-bottom: clamp(80px, 12vw, 160px);
}
.section__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.45em;
  color: rgba(250,248,244,0.5);
  margin-bottom: 28px;
}
.section__eyebrow::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: rgba(250,248,244,0.5);
}
.section__head {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 0;
}
.section__head em { font-style: italic; }

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 78vh;
  padding: clamp(140px, 18vh, 200px) clamp(20px, 5vw, 64px) clamp(60px, 10vh, 100px);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.45) brightness(0.55) contrast(1.08);
  transform: scale(1.04);
  transition: transform 1.4s var(--ease-out-quart);
  z-index: 0;
}
.page-hero__bg.in { transform: scale(1); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.92) 100%);
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0;
}
.page-hero__title em { font-style: italic; font-weight: 700; }
.page-hero__sub {
  margin-top: 32px;
  max-width: 560px;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--bone-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-cta {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 14vw, 232px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  margin: 0;
}
.footer-cta em { font-style: italic; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 56px; }
}

.footer-sitemap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.footer-sitemap h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.42em;
  color: rgba(250,248,244,0.4);
  margin: 0 0 20px;
  font-weight: 400;
}
.footer-sitemap ul { list-style: none; padding: 0; margin: 0; }
.footer-sitemap li { font-size: 13.5px; padding: 5px 0; }
.footer-sitemap a { color: rgba(250,248,244,0.75); transition: color 0.3s, padding-left 0.3s; }
.footer-sitemap a:hover { color: var(--volt); padding-left: 6px; }

.newsletter input {
  width: 100%;
  background: transparent;
  border: 0; outline: none;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  color: var(--bone);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(250,248,244,0.45);
  transition: border-color 0.3s;
}
.newsletter input:focus { border-color: var(--volt); }
.newsletter input::placeholder { color: rgba(250,248,244,0.35); }

/* ============================================================
   FORMS (Membership / Contact)
   ============================================================ */
.field {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(250,248,244,0.18);
  transition: border-color 0.3s;
}
.field:focus-within { border-color: var(--volt); }
.field__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.42em;
  color: rgba(250,248,244,0.4);
}
.field__input,
.field__textarea,
.field__select {
  background: transparent; border: 0; outline: none;
  font-family: 'Sora', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--bone);
  font-weight: 500;
}
.field__textarea { min-height: 80px; resize: vertical; }
.field__select option { background: var(--onyx); color: var(--bone); }
.field__input::placeholder { color: rgba(250,248,244,0.28); }

/* multi-select chip */
.chip {
  display: inline-flex; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em;
  padding: 9px 14px;
  border: 1px solid rgba(250,248,244,0.18);
  color: var(--bone-dim);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  user-select: none;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip:hover { border-color: rgba(250,248,244,0.4); color: var(--bone); }
.chip:has(input:checked) { background: var(--volt); color: var(--onyx); border-color: var(--volt); }

/* ============================================================
   SCROLL HINT (Hero)
   ============================================================ */
@keyframes breathe {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; }
}
.scroll-hint {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  pointer-events: none;
}
.scroll-hint__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; letter-spacing: 0.55em;
  color: var(--volt);
  animation: breathe 3.2s ease-in-out infinite;
}
.scroll-hint__line {
  width: 1px; height: 78px;
  background: var(--volt);
  box-shadow: 0 0 8px var(--volt-glow);
  animation: breathe 3.2s ease-in-out infinite;
}

/* ============================================================
   UTIL — hide scrollbar
   ============================================================ */
.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ============================================================
   RESPONSIVE TYPE SCALE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .footer-cta { font-size: clamp(48px, 14vw, 80px); }
}
