/* ============================================================
   ALPHA — Performance Club · shared stylesheet
   ============================================================ */
:root {
  --alpha-red: #ff2a36;
  --alpha-red-deep: #c81e28;
  --alpha-red-glow: rgba(255, 42, 54, 0.55);
  --ink: #0a0a0c;
  --ink-2: #111114;
  --ink-3: #1a1a1f;
  --bone: #f4f1ec;
  --smoke: #8a8a92;
  --line: rgba(244, 241, 236, 0.12);
  --line-strong: rgba(244, 241, 236, 0.28);

  --ff-display: 'Anton', 'Archivo Black', sans-serif;
  --ff-mono: 'Bebas Neue', sans-serif;
  --ff-serif: 'Instrument Serif', 'Times New Roman', serif;
  --ff-body: 'Inter', sans-serif;

  --ease: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-body);
  background: var(--ink);
  color: var(--bone);
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--alpha-red); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--alpha-red); color: var(--bone); }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Custom cursor
   ============================================================ */
.cursor { 
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--alpha-red);
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease);
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--alpha-red);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor.hover { width: 4px; height: 4px; }
.cursor-ring.hover { width: 72px; height: 72px; background: rgba(255,255,255,0.12); }
@media (max-width: 900px) { .cursor, .cursor-ring { display: none; } }

/* ============================================================
   Nav (sticky header, shared)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,12,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.nav.scrolled { padding: 14px 40px; background: rgba(10,10,12,0.82); border-bottom-color: var(--line); }
@media (max-width: 700px) { .nav { padding: 18px 22px; } }

.nav-logo {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--bone);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 16px var(--alpha-red-glow);
  overflow: hidden;
  display: block;
}
.nav-logo .mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-logo:hover { color: var(--bone); }

.nav-menu {
  display: flex;
  gap: 34px;
  font-family: var(--ff-mono);
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-menu a { position: relative; color: var(--bone); padding: 4px 0; }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--alpha-red);
  transition: width 0.35s var(--ease);
}
.nav-menu a:hover { color: var(--bone); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--alpha-red); }
@media (max-width: 900px) { .nav-menu { display: none; } }

.nav-cta {
  font-family: var(--ff-mono);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid var(--bone);
  color: var(--bone);
  border-radius: 100px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--alpha-red); border-color: var(--alpha-red); color: var(--bone); }

/* Mobile menu toggle */
.nav-burger { display: none; width: 26px; height: 16px; position: relative; }
.nav-burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--bone); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 7px; }
.nav-burger span:nth-child(3) { top: 14px; }
@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: clamp(40px, 12vw, 72px);
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1.05;
}
.mobile-menu a.active { color: var(--alpha-red); }

/* ============================================================
   Page shell / section base
   ============================================================ */
section { padding: 140px 40px; position: relative; }
@media (max-width: 700px) { section { padding: 100px 24px; } }

.wrap { max-width: 1400px; margin: 0 auto; }

.section-label {
  font-family: var(--ff-mono);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before { content: ''; width: 8px; height: 8px; background: var(--alpha-red); border-radius: 50%; }

.reveal { opacity: 0; transform: translateY(60px); transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

.eyebrow-serif { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); text-transform: none; }

/* Italic serif accent words sit tight against the Anton word before/after them
   — give them a hair of breathing room so nothing touches. */
.hero-title em, .page-hero-title em, .cta-title em,
.manifesto-title em, .disciplines-title em, .membership-title em,
.athletes-title em, .location-title em, .mem-panel-head h3 em,
.feature-body h3 em, .showcase-text em, .footer-brand em, .footer-mega-text em {
  padding: 0 0.06em;
}
.showcase-text em, .footer-mega-text em { padding: 0; }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 25%, rgba(255,42,54,0.16) 0%, transparent 48%),
    radial-gradient(circle at 12% 90%, rgba(255,42,54,0.07) 0%, transparent 42%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .page-hero { padding: 130px 24px 60px; min-height: 60vh; } }
.page-hero .hero-orb {
  position: absolute; top: 40%; right: 8%;
  width: 60vh; height: 60vh; max-width: 620px; max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,54,0.30) 0%, rgba(255,42,54,0.06) 42%, transparent 70%);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
.page-hero-tag {
  font-family: var(--ff-mono);
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  position: relative; z-index: 2;
}
.page-hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--alpha-red); }
.page-hero-title {
  font-family: var(--ff-display);
  padding-bottom: 0.1em;
  font-size: clamp(64px, 13vw, 200px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  position: relative; z-index: 2;
}
.page-hero-title em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); text-transform: none; }
.page-hero-blurb {
  max-width: 520px;
  margin-top: 36px;
  font-size: 17px; line-height: 1.65;
  color: rgba(244,241,236,0.72);
  font-weight: 300;
  position: relative; z-index: 2;
}
.page-hero-crumbs {
  position: absolute; top: 120px; left: 40px;
  font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.25em;
  color: var(--smoke); text-transform: uppercase; z-index: 2;
}
.page-hero-crumbs .sep { color: var(--alpha-red); margin: 0 8px; }
@media (max-width: 700px) { .page-hero-crumbs { left: 24px; top: 96px; } }

/* ============================================================
   Home hero
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 130px 40px 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,42,54,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,42,54,0.08) 0%, transparent 40%),
    var(--ink);
}
/* Subtle full-bleed photo behind the hero */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%) contrast(1.05) brightness(0.7); opacity: 0.28; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.2) 40%, rgba(10,10,12,0.85) 100%),
  linear-gradient(90deg, rgba(10,10,12,0.7) 0%, transparent 45%); }
@media (max-width: 700px) { .hero { padding: 120px 24px 60px; } }
.hero-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vh; height: 80vh; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,42,54,0.35) 0%, rgba(255,42,54,0.08) 40%, transparent 70%);
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}
.hero-logo-mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 55vh; height: 55vh; max-width: 600px; max-height: 600px;
  opacity: 0.08; z-index: 1; pointer-events: none;
  border-radius: 50%; overflow: hidden;
  animation: logoFloat 12s ease-in-out infinite;
}
.hero-logo-mark img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1); }
@keyframes logoFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { transform: translate(-50%, -52%) scale(1.05) rotate(2deg); }
}
.hero-side {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.4em;
  color: var(--smoke); text-transform: uppercase; white-space: nowrap;
}
.hero-meta {
  position: absolute; top: 50%; left: 40px;
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.3em;
  color: var(--smoke); text-transform: uppercase;
  writing-mode: vertical-rl; transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 900px) { .hero-side, .hero-meta { display: none; } }
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-tag {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.3em;
  color: var(--smoke); text-transform: uppercase; margin-bottom: 40px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--alpha-red); }
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(70px, 16vw, 260px);
  line-height: 1.0; letter-spacing: -0.02em;
  color: var(--bone); text-transform: uppercase;
}
.hero-title .line { display: block; padding: 0.06em 0.06em 0.12em; }
.hero-title .line:nth-child(2) { color: var(--alpha-red); font-style: italic; font-family: var(--ff-serif); font-weight: 400; text-transform: none; }
.hero-bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 60px; gap: 40px; flex-wrap: wrap;
}
.hero-blurb { max-width: 420px; font-size: 16px; line-height: 1.6; color: rgba(244,241,236,0.7); font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.hero-scroll {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.3em;
  color: var(--smoke); text-transform: uppercase; display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--alpha-red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { height: 40px; opacity: 1; } 50% { height: 20px; opacity: 0.4; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase;
  border-radius: 100px; transition: all 0.3s var(--ease); cursor: none;
}
.btn svg { width: 15px; height: 15px; }
.btn-solid { background: var(--alpha-red); color: var(--bone); }
.btn-solid:hover { background: var(--alpha-red-deep); color: var(--bone); transform: translateY(-3px); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--bone); }
.btn-ghost:hover { border-color: var(--alpha-red); background: rgba(255,42,54,0.08); color: var(--bone); transform: translateY(-3px); }

/* ============================================================
   Marquee
   ============================================================ */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; overflow: hidden; background: var(--ink); position: relative; z-index: 3; }
.marquee-track { display: flex; gap: 60px; animation: scroll 35s linear infinite; white-space: nowrap; width: max-content; }
.marquee-item { font-family: var(--ff-display); font-size: clamp(48px, 7vw, 96px); letter-spacing: -0.01em; text-transform: uppercase; display: flex; align-items: center; gap: 60px; }
.marquee-item::after { content: ''; display: inline-block; width: 14px; height: 14px; background: var(--alpha-red); border-radius: 50%; box-shadow: 0 0 20px var(--alpha-red-glow); }
.marquee-item.italic { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============================================================
   Manifesto / intro
   ============================================================ */
.manifesto { max-width: 1400px; margin: 0 auto; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; } }
.manifesto-title { font-family: var(--ff-display); padding-bottom: 0.12em; font-size: clamp(48px, 7vw, 110px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; }
.manifesto-title em { font-family: var(--ff-serif); font-weight: 400; font-style: italic; color: var(--alpha-red); text-transform: none; }
.manifesto-body { font-size: 18px; line-height: 1.65; color: rgba(244,241,236,0.8); font-weight: 300; }
.manifesto-body p + p { margin-top: 24px; }
.manifesto-body strong { color: var(--bone); font-weight: 500; }
.manifesto-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 120px; padding-top: 60px; border-top: 1px solid var(--line); }
@media (max-width: 700px) { .manifesto-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat-num { font-family: var(--ff-display); font-size: clamp(48px, 6vw, 88px); line-height: 1; color: var(--bone); letter-spacing: -0.02em; }
.stat-num sup { font-size: 0.4em; vertical-align: super; color: var(--alpha-red); }
.stat-label { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.25em; color: var(--smoke); text-transform: uppercase; margin-top: 12px; }

/* ============================================================
   Image galleries (masonry / grid)
   ============================================================ */
.gallery-band { max-width: 1600px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 140px; gap: 16px; }
@media (max-width: 900px) { .gallery-grid { grid-auto-rows: 100px; } }
.gallery-cell { position: relative; overflow: hidden; background: var(--ink-2); }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(28%) contrast(1.04); transition: transform 0.9s var(--ease-out), filter 0.6s var(--ease); }
.gallery-cell:hover img { transform: scale(1.06); filter: grayscale(0%) contrast(1.08); }
.gallery-cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,0.5)); pointer-events: none; }
.gallery-cell .tag { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); }
/* spans */
.g-a { grid-column: span 5; grid-row: span 3; }
.g-b { grid-column: span 4; grid-row: span 2; }
.g-c { grid-column: span 3; grid-row: span 3; }
.g-d { grid-column: span 4; grid-row: span 2; }
.g-e { grid-column: span 3; grid-row: span 2; }
.g-f { grid-column: span 5; grid-row: span 2; }
@media (max-width: 900px) {
  .g-a { grid-column: span 12; grid-row: span 3; }
  .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 6; grid-row: span 2; }
}

/* Split feature (image + text) */
.feature-split { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); }
.feature-split.reverse .feature-media { order: 2; }
@media (max-width: 900px) { .feature-split, .feature-split.reverse { grid-template-columns: 1fr; } .feature-split.reverse .feature-media { order: 0; } }
.feature-media { position: relative; overflow: hidden; min-height: 460px; background: var(--ink-2); }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%) contrast(1.05); transition: transform 1s var(--ease-out); }
.feature-split:hover .feature-media img { transform: scale(1.04); }
.feature-media .corner { z-index: 2; }
.feature-body { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
@media (max-width: 700px) { .feature-body { padding: 44px 30px; } }
.feature-body h3 { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 64px); line-height: 0.95; text-transform: uppercase; letter-spacing: -0.01em; }
.feature-body h3 em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); text-transform: none; }
.feature-body p { font-size: 16px; line-height: 1.65; color: rgba(244,241,236,0.75); font-weight: 300; }

/* ============================================================
   Disciplines (services)
   ============================================================ */
.disciplines { background: var(--ink); border-top: 1px solid var(--line); }
.disciplines-header { max-width: 1400px; margin: 0 auto 80px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.disciplines-title { font-family: var(--ff-display); padding-bottom: 0.12em; font-size: clamp(48px, 7vw, 110px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; max-width: 800px; }
.disciplines-title em { font-family: var(--ff-serif); font-weight: 400; font-style: italic; color: var(--alpha-red); text-transform: none; }
.disciplines-count { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.25em; color: var(--smoke); text-transform: uppercase; }
.disciplines-count strong { color: var(--alpha-red); font-weight: 400; }
.discipline-list { max-width: 1400px; margin: 0 auto; border-top: 1px solid var(--line); }
.discipline { border-bottom: 1px solid var(--line); padding: 44px 0; display: grid; grid-template-columns: 80px 1fr 1.5fr 60px; gap: 40px; align-items: center; cursor: none; transition: padding 0.4s var(--ease); position: relative; overflow: hidden; }
@media (max-width: 900px) { .discipline { grid-template-columns: 50px 1fr 30px; gap: 20px; padding: 32px 0; } .discipline-desc { display: none; } }
.discipline::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--alpha-red); transform: translateX(-100%); transition: transform 0.6s var(--ease-out); z-index: 0; }
.discipline:hover::before { transform: translateX(0); }
.discipline:hover { padding-left: 24px; padding-right: 24px; }
.discipline:hover .discipline-arrow { transform: rotate(-45deg); }
.discipline:hover .discipline-desc { color: rgba(10,10,12,0.75); }
.discipline:hover .discipline-num { color: rgba(10,10,12,0.7); }
.discipline > * { position: relative; z-index: 1; }
.discipline-num { font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.2em; color: var(--smoke); }
.discipline-name { font-family: var(--ff-display); font-size: clamp(32px, 4.5vw, 64px); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1; }
.discipline-desc { font-size: 15px; line-height: 1.6; color: rgba(244,241,236,0.7); font-weight: 300; }
.discipline-arrow { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: transform 0.4s var(--ease); }
.discipline-arrow svg { width: 20px; height: 20px; }

/* ============================================================
   Showcase / visual block
   ============================================================ */
.showcase { background: var(--ink); padding: 0; overflow: hidden; }
.showcase-inner { position: relative; height: 90vh; min-height: 600px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 50% 50%, rgba(255,42,54,0.2) 0%, transparent 60%), linear-gradient(135deg, #0a0a0c 0%, #1a0608 100%); overflow: hidden; }
/* Optional real-photo backdrop for showcase */
.showcase-bg { position: absolute; inset: 0; z-index: 0; }
.showcase-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(45%) contrast(1.08) brightness(0.5); opacity: 0.5; }
.showcase-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 45%, rgba(10,10,12,0.35) 0%, rgba(10,10,12,0.82) 78%); }
.showcase-inner .showcase-content { position: relative; z-index: 2; }
.showcase-stripes { position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent 0px, transparent 60px, rgba(255,42,54,0.04) 60px, rgba(255,42,54,0.04) 61px); animation: stripeMove 20s linear infinite; }
@keyframes stripeMove { to { background-position: 120px 120px; } }
.showcase-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; }
.showcase-eyebrow { font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.4em; color: var(--alpha-red); text-transform: uppercase; margin-bottom: 32px; }
.showcase-text { font-family: var(--ff-display); font-size: clamp(60px, 11vw, 200px); line-height: 1.02; letter-spacing: -0.02em; text-transform: uppercase; color: var(--bone); }
.showcase-text em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); text-transform: none; display: block; }
.showcase-caption { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.3em; color: var(--smoke); text-transform: uppercase; margin-top: 40px; }
.corner { position: absolute; width: 30px; height: 30px; border: 1px solid var(--alpha-red); }
.corner.tl { top: 40px; left: 40px; border-right: 0; border-bottom: 0; }
.corner.tr { top: 40px; right: 40px; border-left: 0; border-bottom: 0; }
.corner.bl { bottom: 40px; left: 40px; border-right: 0; border-top: 0; }
.corner.br { bottom: 40px; right: 40px; border-left: 0; border-top: 0; }

/* ============================================================
   Membership tiers
   ============================================================ */
.membership { background: var(--ink); border-top: 1px solid var(--line); }
.membership-header { max-width: 1400px; margin: 0 auto 80px; }
.membership-title { font-family: var(--ff-display); padding-bottom: 0.12em; font-size: clamp(48px, 7vw, 110px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; max-width: 900px; }
.membership-title em { font-family: var(--ff-serif); font-weight: 400; font-style: italic; color: var(--alpha-red); text-transform: none; }
.tiers { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--ink); padding: 48px 40px; position: relative; transition: background 0.5s var(--ease); }
.tier:hover { background: var(--ink-2); }
.tier.featured { background: linear-gradient(180deg, rgba(255,42,54,0.08), transparent 70%), var(--ink); }
.tier.featured::before { content: 'MOST POPULAR'; position: absolute; top: 24px; right: 24px; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.25em; color: var(--alpha-red); padding: 6px 12px; border: 1px solid var(--alpha-red); border-radius: 100px; }
.tier-name { font-family: var(--ff-display); font-size: 36px; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 16px; }
.tier-desc { font-size: 14px; color: var(--smoke); line-height: 1.6; margin-bottom: 40px; font-weight: 300; min-height: 44px; }
.tier-price { font-family: var(--ff-display); font-size: 72px; line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px; }
.tier-price small { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.2em; color: var(--smoke); }
.tier-period { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.25em; color: var(--smoke); text-transform: uppercase; margin-bottom: 40px; }
.tier-features { list-style: none; border-top: 1px solid var(--line); padding-top: 24px; margin-bottom: 40px; }
.tier-features li { padding: 12px 0; font-size: 14px; color: rgba(244,241,236,0.8); display: flex; align-items: flex-start; gap: 12px; font-weight: 300; }
.tier-features li::before { content: ''; width: 6px; height: 6px; background: var(--alpha-red); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }
.tier-cta { display: block; width: 100%; padding: 16px; font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.25em; text-transform: uppercase; border: 1px solid var(--line-strong); color: var(--bone); text-align: center; border-radius: 100px; transition: all 0.3s var(--ease); }
.tier-cta:hover { background: var(--alpha-red); border-color: var(--alpha-red); color: var(--bone); }
.tier.featured .tier-cta { background: var(--alpha-red); border-color: var(--alpha-red); }
.tier.featured .tier-cta:hover { background: var(--alpha-red-deep); }

/* ============================================================
   Coaches — 3D carousel + FLIP CARDS
   ============================================================ */
.athletes { background: var(--ink); border-top: 1px solid var(--line); }
.athletes-header { max-width: 1400px; margin: 0 auto 40px; }
.athletes-title { font-family: var(--ff-display); padding-bottom: 0.12em; font-size: clamp(48px, 7vw, 110px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; }
.athletes-title em { font-family: var(--ff-serif); font-weight: 400; font-style: italic; color: var(--alpha-red); text-transform: none; }
.athletes-sub { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.25em; color: var(--smoke); text-transform: uppercase; margin-top: 32px; }

.coach-carousel-wrap { position: relative; max-width: 1400px; margin: 0 auto; padding: 40px 0 80px; }
.coach-carousel { position: relative; height: clamp(460px, 60vw, 600px); perspective: 1800px; perspective-origin: 50% 50%; transform-style: preserve-3d; }

.coach-card { position: absolute; top: 50%; left: 50%; width: clamp(240px, 27vw, 360px); aspect-ratio: 3/4; transform-style: preserve-3d; transform-origin: center center; transition: transform 0.85s cubic-bezier(0.4,0,0.2,1), filter 0.85s cubic-bezier(0.4,0,0.2,1), opacity 0.85s ease-out; cursor: none; will-change: transform, filter; }

.coach-card[data-pos="0"]  { transform: translate(-50%, -50%) translateX(0) translateZ(0) rotateY(0deg) scale(1); filter: grayscale(0%) brightness(1); opacity: 1; z-index: 10; }
.coach-card[data-pos="1"]  { transform: translate(-50%, -50%) translateX(clamp(200px, 23vw, 320px)) translateZ(-220px) rotateY(-28deg) scale(0.78); filter: grayscale(100%) brightness(0.85); opacity: 0.88; z-index: 7; }
.coach-card[data-pos="-1"] { transform: translate(-50%, -50%) translateX(clamp(-320px, -23vw, -200px)) translateZ(-220px) rotateY(28deg) scale(0.78); filter: grayscale(100%) brightness(0.85); opacity: 0.88; z-index: 7; }
.coach-card[data-pos="2"]  { transform: translate(-50%, -50%) translateX(clamp(340px, 40vw, 540px)) translateZ(-440px) rotateY(-38deg) scale(0.58); filter: grayscale(100%) brightness(0.65); opacity: 0.45; z-index: 4; }
.coach-card[data-pos="-2"] { transform: translate(-50%, -50%) translateX(clamp(-540px, -40vw, -340px)) translateZ(-440px) rotateY(38deg) scale(0.58); filter: grayscale(100%) brightness(0.65); opacity: 0.45; z-index: 4; }
.coach-card[data-pos="hidden"] { transform: translate(-50%, -50%) translateZ(-900px) scale(0.4); filter: grayscale(100%) brightness(0.4); opacity: 0; z-index: 1; pointer-events: none; }

/* Flip mechanism: only the centered card flips (hover OR pinned via click) */
.coach-card-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.8s var(--ease); }
.coach-card[data-pos="0"]:hover .coach-card-inner,
.coach-card.flipped .coach-card-inner { transform: rotateY(180deg); }
.coach-card[data-pos="0"]:hover { z-index: 12; }

.coach-card-face { position: absolute; inset: 0; border-radius: 4px; overflow: hidden; -webkit-backface-visibility: hidden; backface-visibility: hidden; border: 1px solid var(--line-strong); }
.coach-card-front { background: var(--ink-2); }
.coach-card-front img { width: 100%; height: 100%; object-fit: cover; }
.coach-card-front::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,12,0.9) 100%); }
.coach-card-info { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; }
.coach-card-name { font-family: var(--ff-display); font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1; }
.coach-card-spec { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.2em; color: var(--alpha-red); text-transform: uppercase; margin-top: 8px; }
.coach-card-fliphint { position: absolute; top: 16px; right: 16px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); background: rgba(10,10,12,0.5); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; }
.coach-card-fliphint svg { width: 16px; height: 16px; color: var(--bone); }

.coach-card-back { transform: rotateY(180deg); background: linear-gradient(180deg, var(--ink-3), var(--ink)); padding: 30px 26px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.coach-card-back::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--alpha-red); }
.coach-card-back .coach-card-fliphint { position: absolute; top: 16px; right: 16px; }
.coach-back-name { font-family: var(--ff-display); font-size: clamp(24px, 2.6vw, 32px); text-transform: uppercase; line-height: 0.95; }
.coach-back-role { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--alpha-red); text-transform: uppercase; margin-top: 10px; }
.coach-back-bio { font-size: 13.5px; line-height: 1.6; color: rgba(244,241,236,0.82); font-weight: 300; }
.coach-back-creds { list-style: none; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.coach-back-creds li { display: flex; align-items: flex-start; gap: 10px; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(244,241,236,0.8); text-transform: uppercase; padding: 5px 0; }
.coach-back-creds li::before { content: ''; width: 5px; height: 5px; background: var(--alpha-red); border-radius: 50%; margin-top: 6px; flex-shrink: 0; }

.carousel-nav { position: absolute; top: 45%; transform: translateY(-50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(10,10,12,0.7); border: 1px solid var(--line-strong); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; cursor: none; z-index: 30; transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.carousel-nav.prev { left: 12px; }
.carousel-nav.next { right: 12px; }
.carousel-nav:hover { background: var(--alpha-red); border-color: var(--alpha-red); transform: translateY(-50%) scale(1.08); }
.carousel-nav svg { width: 22px; height: 22px; color: var(--bone); }
@media (max-width: 700px) { .carousel-nav { width: 52px; height: 52px; } .carousel-nav.prev { left: 4px; } .carousel-nav.next { right: 4px; } .coach-card[data-pos="2"], .coach-card[data-pos="-2"] { opacity: 0; pointer-events: none; } }
.carousel-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; align-items: baseline; gap: 10px; font-family: var(--ff-display); font-size: 32px; letter-spacing: 0.02em; color: var(--bone); z-index: 20; }
.carousel-counter .total { color: var(--smoke); font-size: 16px; }
.carousel-counter .sep { color: var(--alpha-red); font-size: 20px; line-height: 1; }

/* ============================================================
   Schedule (classes page)
   ============================================================ */
.schedule { max-width: 1400px; margin: 0 auto; }
.schedule-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.schedule-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.sched-filter { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 18px; border: 1px solid var(--line-strong); border-radius: 100px; color: var(--bone); cursor: none; transition: all 0.3s var(--ease); }
.sched-filter:hover { border-color: var(--alpha-red); color: var(--alpha-red); }
.sched-filter.active { background: var(--alpha-red); border-color: var(--alpha-red); color: var(--bone); }
.schedule-grid { border: 1px solid var(--line); border-bottom: none; }
.sched-row { display: grid; grid-template-columns: 130px 1fr 1fr 1fr 160px; border-bottom: 1px solid var(--line); }
.sched-row.head { background: var(--ink-2); }
.sched-row.head > div { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); padding: 18px 20px; }
.sched-cell { padding: 22px 20px; border-left: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; transition: background 0.3s var(--ease); }
.sched-cell:first-child { border-left: none; }
.sched-time { font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.12em; color: var(--bone); align-self: center; }
.sched-class { position: relative; }
.sched-class[data-track]:hover { background: rgba(255,42,54,0.06); }
.sched-class .cname { font-family: var(--ff-display); font-size: 20px; text-transform: uppercase; line-height: 1; letter-spacing: 0.01em; }
.sched-class .cmeta { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--smoke); text-transform: uppercase; }
.sched-class .cdot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 8px; background: var(--alpha-red); }
.sched-class.empty { opacity: 0.25; }
.sched-class.empty .cname { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.2em; color: var(--smoke); }
.sched-hide { display: none !important; }
@media (max-width: 900px) {
  .sched-row { grid-template-columns: 90px 1fr; }
  .sched-row.head { display: none; }
  .sched-cell:nth-child(n+3) { grid-column: 2; border-left: none; border-top: 1px solid var(--line); }
  .sched-time { align-self: flex-start; padding-top: 22px; }
}

/* ============================================================
   Contact form
   ============================================================ */
.contact-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-aside { background: var(--ink); padding: 56px 48px; display: flex; flex-direction: column; gap: 34px; }
@media (max-width: 700px) { .contact-aside { padding: 40px 28px; } }
.contact-form-wrap { background: var(--ink); padding: 56px 48px; position: relative; }
@media (max-width: 700px) { .contact-form-wrap { padding: 40px 28px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.field label { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--smoke); }
.field input, .field select, .field textarea {
  background: var(--ink-2); border: 1px solid var(--line-strong); color: var(--bone);
  padding: 15px 16px; border-radius: 4px; font-size: 15px; font-weight: 300;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease); outline: none; cursor: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--alpha-red); background: var(--ink-3); }
.field input::placeholder, .field textarea::placeholder { color: var(--smoke); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff2a36' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
.plan-choice { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 600px) { .plan-choice { grid-template-columns: 1fr; } }
.plan-opt { position: relative; }
.plan-opt input { position: absolute; opacity: 0; pointer-events: none; }
.plan-opt label { display: flex; flex-direction: column; gap: 4px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 4px; cursor: none; transition: all 0.3s var(--ease); }
.plan-opt label .pn { font-family: var(--ff-display); font-size: 20px; text-transform: uppercase; letter-spacing: 0.02em; }
.plan-opt label .pp { font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--smoke); }
.plan-opt label:hover { border-color: var(--alpha-red); }
.plan-opt input:checked + label { border-color: var(--alpha-red); background: rgba(255,42,54,0.08); }
.plan-opt input:checked + label .pp { color: var(--alpha-red); }
.form-submit { width: 100%; margin-top: 8px; padding: 18px; background: var(--alpha-red); color: var(--bone); font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 100px; cursor: none; transition: all 0.3s var(--ease); }
.form-submit:hover { background: var(--alpha-red-deep); transform: translateY(-2px); }
.form-note { font-size: 12px; color: var(--smoke); margin-top: 18px; line-height: 1.6; font-weight: 300; }
.form-success { position: absolute; inset: 0; background: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; gap: 20px; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease); z-index: 3; }
.form-success.show { opacity: 1; visibility: visible; }
.form-success .tick { width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--alpha-red); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 40px var(--alpha-red-glow); }
.form-success .tick svg { width: 40px; height: 40px; color: var(--alpha-red); }
.form-success h3 { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 56px); text-transform: uppercase; line-height: 0.95; }
.form-success p { font-size: 15px; color: rgba(244,241,236,0.75); font-weight: 300; max-width: 360px; line-height: 1.6; }

/* Contact aside blocks */
.info-block { display: flex; flex-direction: column; gap: 8px; }
.info-label { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.3em; color: var(--alpha-red); text-transform: uppercase; }
.info-value { font-family: var(--ff-display); font-size: 22px; line-height: 1.2; letter-spacing: 0.01em; color: var(--bone); }
.info-value.small { font-family: var(--ff-body); font-size: 15px; font-weight: 300; line-height: 1.6; color: rgba(244,241,236,0.8); letter-spacing: 0; text-transform: none; }
.info-value a:hover { color: var(--alpha-red); }
.info-divider { height: 1px; background: var(--line); margin: 4px 0; }
.info-hours { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.1em; color: rgba(244,241,236,0.8); text-transform: uppercase; line-height: 1.9; }
.info-hours strong { color: var(--alpha-red); font-weight: 400; }

/* Location / map */
.location { background: var(--ink); border-top: 1px solid var(--line); }
.location-header { max-width: 1400px; margin: 0 auto 80px; }
.location-title { font-family: var(--ff-display); padding-bottom: 0.12em; font-size: clamp(48px, 7vw, 110px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; max-width: 900px; }
.location-title em { font-family: var(--ff-serif); font-weight: 400; font-style: italic; color: var(--alpha-red); text-transform: none; }
.location-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }
.location-info { background: var(--ink); padding: 48px 40px; display: flex; flex-direction: column; gap: 32px; }
@media (max-width: 700px) { .location-info { padding: 36px 28px; gap: 28px; } }
.location-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 12px; padding: 16px 24px; border: 1px solid var(--line-strong); color: var(--bone); font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; border-radius: 100px; transition: all 0.3s var(--ease); align-self: flex-start; }
.location-cta:hover { background: var(--alpha-red); border-color: var(--alpha-red); color: var(--bone); transform: translateX(4px); }
.location-cta svg { width: 14px; height: 14px; }
.location-map { background: var(--ink); position: relative; min-height: 480px; overflow: hidden; }
@media (max-width: 900px) { .location-map { min-height: 380px; aspect-ratio: 4/3; } }
.location-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: contrast(1.05) saturate(0.85); }
.location-map::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,42,54,0.06) 0%, transparent 40%, transparent 60%, rgba(255,42,54,0.04) 100%); pointer-events: none; z-index: 1; mix-blend-mode: overlay; }
.location-map .corner { z-index: 2; width: 24px; height: 24px; }
.location-map .corner.tl { top: 16px; left: 16px; }
.location-map .corner.tr { top: 16px; right: 16px; }
.location-map .corner.bl { bottom: 16px; left: 16px; }
.location-map .corner.br { bottom: 16px; right: 16px; }

/* ============================================================
   Membership page — day passes, tabs, comparison
   ============================================================ */
.mem-short { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; border: 1px solid var(--line); background: linear-gradient(120deg, rgba(255,42,54,0.06), transparent 60%), var(--ink); padding: 40px 48px; }
@media (max-width: 800px) { .mem-short { grid-template-columns: 1fr; padding: 32px 28px; gap: 28px; } }
.mem-short-lead { display: flex; flex-direction: column; gap: 10px; }
.mem-short-lead .section-label { margin-bottom: 4px; }
.mem-short-lead h3 { font-family: var(--ff-display); font-size: clamp(30px, 4vw, 52px); text-transform: uppercase; line-height: 0.95; }
.mem-short-lead p { font-size: 15px; color: rgba(244,241,236,0.72); font-weight: 300; max-width: 420px; line-height: 1.6; }
.mem-passes { display: flex; gap: 16px; flex-wrap: wrap; }
.mem-pass { border: 1px solid var(--line-strong); border-radius: 6px; padding: 24px 30px; min-width: 190px; transition: border-color 0.3s var(--ease), background 0.3s var(--ease); }
.mem-pass:hover { border-color: var(--alpha-red); background: rgba(255,42,54,0.06); }
.mem-pass .pl { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--alpha-red); }
.mem-pass .pv { font-family: var(--ff-display); font-size: clamp(34px, 4.5vw, 48px); line-height: 1; margin-top: 10px; }
.mem-pass .pv small { font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.14em; color: var(--smoke); }

.mem-core { max-width: 1400px; margin: 0 auto; }

/* Stacked category charts */
.mem-cat-block { max-width: 1400px; margin: 0 auto; padding: 72px 0; border-top: 1px solid var(--line); }
.mem-cat-block:first-of-type { border-top: none; padding-top: 20px; }
.mem-cat-head { margin-bottom: 40px; }
.mem-cat { font-family: var(--ff-display); font-size: clamp(52px, 9vw, 132px); line-height: 0.9; text-transform: uppercase; letter-spacing: -0.01em; padding-bottom: 0.06em; }
.mem-cat-sub { font-family: var(--ff-mono); letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); font-size: 14px; margin-top: 10px; }
.mem-compare { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
@media (max-width: 820px) { .mem-compare { grid-template-columns: 1fr; } }
.mem-side + .mem-side { border-left: 1px solid var(--line); }
@media (max-width: 820px) { .mem-side + .mem-side { border-left: none; border-top: 1px solid var(--line); } }
.mem-side.pt { background: linear-gradient(180deg, rgba(255,42,54,0.05), transparent 45%); }
.mem-side-head { font-family: var(--ff-mono); letter-spacing: 0.22em; text-transform: uppercase; font-size: 15px; padding: 26px 28px; border-bottom: 1px solid var(--line); color: var(--bone); }
.mem-side.pt .mem-side-head { color: var(--alpha-red); background: rgba(255,42,54,0.06); }
.mem-side-sub { display: grid; grid-template-columns: 1fr 1fr; padding: 15px 28px; border-bottom: 1px solid var(--line); font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke); }
.mem-side.pt .mem-side-sub { grid-template-columns: 1fr 1fr auto; }
.mem-side-sub .col-save { text-align: right; }
.mem-side-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 28px; border-bottom: 1px solid var(--line); transition: background 0.3s var(--ease); }
.mem-side.pt .mem-side-row { grid-template-columns: 1fr 1fr auto; }
.mem-side-row:last-child { border-bottom: none; }
.mem-side.pt .mem-side-row:hover { background: rgba(255,42,54,0.05); }
.mem-pill { justify-self: end; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--alpha-red); border: 1px solid rgba(255,42,54,0.5); padding: 7px 13px; border-radius: 4px; background: rgba(255,42,54,0.08); white-space: nowrap; }
.mem-pill.same { color: var(--smoke); border-color: transparent; background: none; padding-right: 0; }
.mem-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.mem-tab { font-family: var(--ff-mono); font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; padding: 14px 26px; border: 1px solid var(--line-strong); border-radius: 100px; color: var(--bone); cursor: none; transition: all 0.3s var(--ease); }
.mem-tab:hover { border-color: var(--alpha-red); color: var(--alpha-red); }
.mem-tab.active { background: var(--alpha-red); border-color: var(--alpha-red); color: var(--bone); }

.mem-panel { display: none; }
.mem-panel.active { display: block; animation: memFade 0.5s var(--ease-out); }
@keyframes memFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.mem-panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.mem-panel-head h3 { font-family: var(--ff-display); font-size: clamp(36px, 5vw, 68px); text-transform: uppercase; line-height: 0.95; padding-bottom: 0.1em; }
.mem-panel-head h3 em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); text-transform: none; }
.mem-panel-note { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke); }

.mem-table { border: 1px solid var(--line); border-top: none; }
.mem-trow { display: grid; grid-template-columns: 1.2fr 1fr 1fr; align-items: stretch; border-top: 1px solid var(--line); }
.mem-trow.head { background: var(--ink-2); }
.mem-trow.head > div { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke); padding: 20px 28px; }
.mem-trow.head .col-pt { color: var(--alpha-red); position: relative; }
.mem-tcell { padding: 26px 28px; border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.mem-tcell:first-child { border-left: none; }
.mem-dur { font-family: var(--ff-display); font-size: clamp(22px, 2.6vw, 30px); text-transform: uppercase; letter-spacing: 0.01em; line-height: 1; }
.mem-dur small { display: block; font-family: var(--ff-mono); font-size: 12px; letter-spacing: 0.16em; color: var(--smoke); margin-top: 6px; }
.mem-price { font-family: var(--ff-display); font-size: clamp(24px, 3vw, 36px); line-height: 1; }
.mem-price small { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.12em; color: var(--smoke); }
.mem-trow:hover .col-pt { background: rgba(255,42,54,0.05); }
.col-pt { position: relative; }
.mem-save { display: inline-block; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--alpha-red); margin-top: 8px; }
.mem-same { font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--smoke); margin-top: 8px; }
@media (max-width: 700px) {
  .mem-trow { grid-template-columns: 1fr; }
  .mem-tcell { border-left: none; border-top: 1px solid var(--line); }
  .mem-tcell:first-child { border-top: none; background: var(--ink-2); }
  .mem-trow.head { display: none; }
  .mem-tcell.col-noPt::before { content: 'Without Trainer'; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--smoke); }
  .mem-tcell.col-pt::before { content: 'With Trainer'; font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--alpha-red); }
}

/* Rate-card strip (photos of the printed cards, subtle) */
.rate-strip { max-width: 1400px; margin: 0 auto; }
.rate-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 900px) { .rate-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .rate-grid { grid-template-columns: repeat(2, 1fr); } }
.rate-cell { position: relative; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--line); background: var(--ink-2); }
.rate-cell img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(70%) brightness(0.55) contrast(1.05); transition: filter 0.6s var(--ease), transform 0.9s var(--ease-out); }
.rate-cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(255,42,54,0.10), transparent 55%); mix-blend-mode: overlay; pointer-events: none; }
.rate-cell:hover img { filter: grayscale(0%) brightness(1) contrast(1.05); transform: scale(1.04); }

/* ============================================================
   CTA / join block
   ============================================================ */
.cta { background: var(--alpha-red); color: var(--ink); padding: 160px 40px; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0, transparent 100px, rgba(0,0,0,0.04) 100px, rgba(0,0,0,0.04) 101px); }
.cta-eyebrow { font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 32px; position: relative; }
.cta-title { font-family: var(--ff-display); padding-bottom: 0.08em; font-size: clamp(60px, 12vw, 220px); line-height: 1.0; letter-spacing: -0.02em; text-transform: uppercase; position: relative; }
.cta-title em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; text-transform: none; }
.cta-button { display: inline-block; margin-top: 60px; padding: 24px 56px; background: var(--ink); color: var(--bone); font-family: var(--ff-mono); font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; border-radius: 100px; transition: transform 0.4s var(--ease); position: relative; }
.cta-button:hover { transform: translateY(-4px); color: var(--bone); }

/* ============================================================
   Footer
   ============================================================ */
footer { background: var(--ink); padding: 100px 40px 40px; border-top: 1px solid var(--line); }
@media (max-width: 700px) { footer { padding: 80px 24px 40px; } }
.footer-top { max-width: 1400px; margin: 0 auto 80px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.footer-mark { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 24px; box-shadow: 0 0 24px var(--alpha-red-glow); }
.footer-mark img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand { font-family: var(--ff-display); font-size: clamp(48px, 8vw, 96px); line-height: 0.9; text-transform: uppercase; letter-spacing: -0.01em; }
.footer-brand em { font-family: var(--ff-serif); font-style: italic; font-weight: 400; color: var(--alpha-red); }
.footer-tag { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.3em; color: var(--smoke); text-transform: uppercase; margin-top: 24px; }
.footer-col h4 { font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.3em; color: var(--alpha-red); text-transform: uppercase; margin-bottom: 24px; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; font-size: 14px; color: rgba(244,241,236,0.7); font-weight: 300; }
.footer-col a:hover { color: var(--alpha-red); }
.footer-col p { font-size: 14px; line-height: 1.6; color: rgba(244,241,236,0.7); font-weight: 300; }
.social-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.social-list a { display: inline-flex; align-items: center; gap: 12px; padding: 6px 0; color: rgba(244,241,236,0.7); transition: color 0.3s var(--ease), transform 0.3s var(--ease); }
.social-list a:hover { color: var(--alpha-red); transform: translateX(6px); }
.social-list svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-list .label { font-size: 14px; font-weight: 300; }
.footer-mega { max-width: 1400px; margin: 0 auto; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.footer-mega-text { font-family: var(--ff-display); font-size: clamp(80px, 22vw, 320px); line-height: 1.05; padding: 0.12em 0; letter-spacing: -0.04em; text-transform: uppercase; white-space: nowrap; color: var(--bone); text-align: center; }
.footer-mega-text em { font-family: var(--ff-serif); font-weight: 400; font-style: italic; color: var(--alpha-red); }
.footer-bottom { max-width: 1400px; margin: 40px auto 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-family: var(--ff-mono); font-size: 13px; letter-spacing: 0.2em; color: var(--smoke); text-transform: uppercase; }
.footer-bottom .dot { width: 6px; height: 6px; background: var(--alpha-red); border-radius: 50%; display: inline-block; margin: 0 8px; vertical-align: middle; }
