/* ═══════════════════════════════════════════════════════════════════
   FORGE ATHLETIC — styles.css
   Palette: bg #0B0B0B · surface #161616 · text #F4F4F0 ·
            muted #9A9A95 · accent #E4FF3A · line rgba(228,255,58,.20)
   Fonts: Archivo (display/900) + Inter (body/400–600)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Reset & tokens ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0B0B0B;
  --surface: #161616;
  --text:    #F4F4F0;
  --muted:   #9A9A95;
  --accent:  #E4FF3A;
  --line:    rgba(228,255,58,.20);
  --border:  rgba(244,244,240,.10);

  --font-display: 'Archivo', sans-serif;
  --font-body:    'Inter', sans-serif;

  --max-w: 1320px;
  --section-gap: clamp(5rem, 10vw, 9rem);
  --radius: 3px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ─── Utility ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Reveal animations ─── */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}
.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-item[style*="--i:1"] { transition-delay: 0.08s; }
.reveal-item[style*="--i:2"] { transition-delay: 0.16s; }
.reveal-item[style*="--i:3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* ─── Typography helpers ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

.section-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-head .section-sub { margin: 0 auto; }

.section-title--left { text-align: left; }
.section-sub--left   { max-width: 46ch; }

.section { padding: var(--section-gap) 0; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn-primary,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out-expo),
              background 0.2s var(--ease-out-expo),
              color 0.2s var(--ease-out-expo),
              box-shadow 0.2s var(--ease-out-expo);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-dark:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.btn-primary:hover { background: #f5ff6a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(228,255,58,.25); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-ghost:active { transform: translateY(0); }

.btn-dark {
  background: var(--bg);
  color: var(--bg);
  border-color: var(--bg);
  background: #0B0B0B;
  color: #0B0B0B;
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: padding 0.35s var(--ease-out-expo),
              background 0.35s var(--ease-out-expo),
              backdrop-filter 0.35s var(--ease-out-expo);
}
.site-header.is-scrolled {
  padding: 0.65rem 0;
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.0625rem;
  letter-spacing: 0.12em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }
.nav-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.nav-cta { margin-left: 1.5rem; padding: 0.6rem 1.25rem; font-size: 0.8rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.ham-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease-out-expo),
              opacity 0.3s;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo);
}
.mobile-menu:not([hidden]) {
  opacity: 1;
  pointer-events: all;
}
.mobile-links { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.mobile-link {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }
.mobile-link--cta { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,11,11,0.97) 0%,
    rgba(11,11,11,0.55) 50%,
    rgba(11,11,11,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.hero-line { display: block; }
.hero-line--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-hero { padding: 1rem 2rem; font-size: 0.9rem; }

.hero-scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(2rem, 5vw, 3.5rem);
  z-index: 1;
}
.scroll-dot {
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(12px); }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════ */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-sep { color: var(--accent); font-size: 0.65rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ═══════════════════════════════════════════════════════
   PROGRAMS
   ═══════════════════════════════════════════════════════ */
.programs-section { border-bottom: 1px solid var(--border); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.program-card {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-out-expo);
}
.program-card:nth-child(even) { border-right: none; }
.program-card:nth-child(3),
.program-card:nth-child(4) { border-bottom: none; }
.program-card:hover { background: var(--surface); }
.program-card:hover .program-card-accent { transform: scaleX(1); }

.program-card-inner {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.program-icon { margin-bottom: 0.5rem; }

.program-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.program-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  margin-top: 0.25rem;
}

.program-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.program-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.program-card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
}

/* ═══════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════ */
.stats-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
}
.stat-sep {
  width: 1px;
  height: 5rem;
  background: var(--border);
  flex-shrink: 0;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   COACHES
   ═══════════════════════════════════════════════════════ */
.coaches-section { border-bottom: 1px solid var(--border); }

.coaches-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.coaches-left {
  position: sticky;
  top: 7rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.coaches-left .btn-primary { align-self: flex-start; }

.coaches-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.coach-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.coach-card:hover { background: rgba(255,255,255,0.02); }
.coach-card:hover .coach-img { transform: scale(1.04); }

.coach-img-wrap {
  width: 120px;
  height: 140px;
  overflow: hidden;
  border-radius: 2px;
  flex-shrink: 0;
}
.coach-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out-expo);
}

.coach-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.coach-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}
.coach-bio {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}
.coach-creds { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cred {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   FACILITY
   ═══════════════════════════════════════════════════════ */
.facility-section { border-bottom: 1px solid var(--border); }

.facility-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-bottom: 2.5rem;
}
.facility-main { grid-row: 1 / 3; }
.facility-stack { display: flex; flex-direction: column; gap: 3px; }
.facility-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }

.facility-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}
.facility-img--main { min-height: 480px; }
.facility-img--wide { height: 220px; }
.facility-stack .facility-img { height: 234px; }

.facility-grid:hover .facility-img:hover { transform: scale(1.03); }

.facility-features {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.fac-feat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   VIDEO BREAK
   ═══════════════════════════════════════════════════════ */
.video-break {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.vb-video-wrap { position: absolute; inset: 0; }
.vb-video { width: 100%; height: 100%; object-fit: cover; }
.vb-overlay {
  position: absolute; inset: 0;
  background: rgba(11,11,11,0.78);
}
.vb-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.vb-quote p {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(1.75rem, 4.5vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}
.vb-quote cite {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   MEMBERSHIP PRICING
   ═══════════════════════════════════════════════════════ */
.membership-section { border-bottom: 1px solid var(--border); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.pricing-card {
  position: relative;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pricing-card:last-child { border-right: none; }

.pricing-card--featured {
  background: var(--accent);
  border-color: var(--accent);
}
.pricing-card--featured .pricing-tier,
.pricing-card--featured .price-amount,
.pricing-card--featured .price-period,
.pricing-card--featured .pricing-desc { color: var(--bg); }
.pricing-card--featured .pf-item { color: var(--bg); }

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 4px 4px;
  border: 1px solid var(--border);
  border-top: none;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 1.25rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0.25rem 0 0.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period { font-size: 1rem; color: var(--muted); }

.pricing-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(244,244,240,0.1);
}
.pricing-card--featured .pricing-features { border-color: rgba(11,11,11,0.15); }

.pf-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text);
}
.pf-item--muted { color: var(--muted); opacity: 0.5; }

.btn-pricing {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.btn-dark {
  background: var(--bg);
  color: var(--bg);
  border-color: var(--bg);
  color: var(--bg);
}
.pricing-card--featured .btn-dark {
  background: var(--bg);
  color: var(--accent);
  border-color: var(--bg);
}
.pricing-card--featured .btn-dark:hover {
  background: var(--surface);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   TRANSFORMATIONS
   ═══════════════════════════════════════════════════════ */
.transformations-section { border-bottom: 1px solid var(--border); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.testimonial-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card:last-child { border-right: none; }

.t-before-after {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
.t-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out-expo);
  filter: grayscale(30%);
}
.testimonial-card:hover .t-img { transform: scale(1.04); filter: grayscale(0%); }

.t-label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 2px;
}

.t-content { display: flex; flex-direction: column; gap: 0.875rem; }
.t-stars { line-height: 1; }
.t-quote {
  font-size: 0.925rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.t-person { border-top: 1px solid var(--border); padding-top: 0.875rem; }
.t-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.t-detail { font-size: 0.78rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   FREE TRIAL FORM
   ═══════════════════════════════════════════════════════ */
.trial-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.trial-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.trial-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.trial-headline em {
  font-style: italic;
  color: var(--accent);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

.trial-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40ch;
  margin-bottom: 1.75rem;
}

.trial-guarantee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Form */
.trial-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  background: rgba(244,244,240,0.05);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(154,154,149,0.6); }
.form-input:focus { border-color: var(--accent); background: rgba(228,255,58,0.04); }
.form-input:focus-visible { border-color: var(--accent); }
.form-input.has-error { border-color: #ff5050; }
.form-select { cursor: pointer; }
.form-select option { background: var(--surface); color: var(--text); }

.form-error {
  font-size: 0.75rem;
  color: #ff5050;
  min-height: 1em;
  display: block;
}

.level-options {
  display: flex;
  gap: 0.625rem;
}
.level-opt { display: flex; }
.level-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.level-btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.level-opt input:checked + .level-btn {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
}
.level-opt input:focus-visible + .level-btn {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.level-btn:hover { border-color: rgba(228,255,58,0.5); color: var(--text); }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 0.9375rem;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-arrow {
  transition: transform 0.2s var(--ease-out-expo);
  flex-shrink: 0;
}
.btn-submit:hover .btn-arrow { transform: translateX(4px); }

.form-legal {
  font-size: 0.72rem;
  color: rgba(154,154,149,0.6);
  line-height: 1.5;
  text-align: center;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.success-icon { margin-bottom: 0.5rem; }
.success-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.success-msg { font-size: 1rem; color: var(--muted); max-width: 38ch; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col-head {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.875rem;
  color: rgba(154,154,149,0.75);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--text); }
.footer-link:focus-visible { outline: 2px solid var(--accent); border-radius: 2px; }
.footer-addr {
  font-size: 0.875rem;
  color: rgba(154,154,149,0.75);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 0.78rem; color: rgba(154,154,149,0.5); }
.footer-credit { font-size: 0.78rem; color: rgba(154,154,149,0.5); }
.footer-credit-link {
  color: var(--accent);
  transition: opacity 0.2s;
}
.footer-credit-link:hover { opacity: 0.7; }

/* ─── Built-by pill ─── */
.built-by-pill {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(11,11,11,0.9);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.875rem;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
  text-transform: uppercase;
}
.built-by-pill:hover {
  color: var(--accent);
  border-color: var(--line);
  transform: translateY(-2px);
}
.built-by-pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card:last-child { border-bottom: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonial-card:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .coaches-layout { grid-template-columns: 1fr; }
  .coaches-left { position: static; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-headline {
    font-size: clamp(4rem, 17vw, 9rem);
  }
  .hero-line--accent { -webkit-text-stroke-width: 1.5px; }

  .programs-grid { grid-template-columns: 1fr; }
  .program-card { border-right: none; }
  .program-card:nth-child(3),
  .program-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .program-card:last-child { border-bottom: none; }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-sep:nth-child(2) { display: none; }
  .stat-sep:nth-child(4) { grid-column: 1 / -1; height: 1px; width: 100%; }
  .stat-item {
    border-bottom: 1px solid var(--border);
  }
  .stat-item:nth-child(3),
  .stat-item:last-child { border-bottom: none; }

  .coach-card { grid-template-columns: 1fr; }
  .coach-img-wrap { width: 100%; height: 220px; }

  .facility-grid { grid-template-columns: 1fr; }
  .facility-main { grid-row: auto; }
  .facility-stack { flex-direction: row; }
  .facility-stack .facility-img { height: 180px; }
  .facility-img--main { min-height: 280px; }
  .facility-wide { grid-template-columns: 1fr; }
  .facility-img--wide { height: 180px; }

  .trial-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-links-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(3.25rem, 20vw, 6rem); }
  .section-title { font-size: clamp(2.75rem, 13vw, 4.5rem); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-sep { width: 100%; height: 1px; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  .level-options { flex-wrap: wrap; }
  .built-by-pill { bottom: 1rem; right: 1rem; font-size: 0.68rem; padding: 0.4rem 0.75rem; }
}
