/* ═══════════════════════════════════════════════════════════
   Ramona MMA Center — Modern Redesign
   Dark cinematic · Red accent · Motion-first
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #070707;
  --bg-elevated: #0e0e0e;
  --bg-card: #121212;
  --bg-card-hover: #181818;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --red: #c71426;
  --red-bright: #e81e34;
  --red-dim: rgba(199, 20, 38, 0.15);
  --red-glow: rgba(199, 20, 38, 0.45);
  --gold: #ffc939;
  --gold-dim: rgba(255, 201, 57, 0.12);

  --text: #f5f5f5;
  --text-2: #a8a8a8;
  --text-3: #6b6b6b;

  --font: "DM Sans", system-ui, sans-serif;
  --display: "Bebas Neue", "Impact", sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --nav-h: 72px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

/* Ambient orbs */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: float 20s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--red); top: -10%; right: -5%; opacity: 0.12; }
.orb-2 { width: 400px; height: 400px; background: #3a0a10; bottom: 20%; left: -10%; opacity: 0.25; animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; background: var(--gold); top: 50%; right: 20%; opacity: 0.04; animation-delay: -12s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.08); }
}

/* Layout */
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 720px); margin-inline: auto; }
.section { position: relative; z-index: 1; padding: 6.5rem 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(199, 20, 38, 0.03), transparent); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
  font-weight: 400;
}
.section-header p { color: var(--text-2); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: white;
  box-shadow: 0 8px 28px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}
.btn-primary:hover { box-shadow: 0 12px 36px var(--red-glow); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.95rem 1.65rem;
}
.btn-ghost:hover { background: var(--surface); border-color: rgba(255,255,255,0.25); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
}
.btn-outline:hover { border-color: var(--red); color: var(--red-bright); }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 7, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: 0.65rem; }
.logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  border-radius: 9px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px var(--red-glow);
}
.logo-text {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}
.logo-text em { font-style: normal; color: var(--red-bright); }
.nav-links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}
.nav-links a {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.nav-phone {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-2);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-phone:hover { color: var(--red-bright); border-color: var(--red); background: var(--red-dim); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 0 5rem;
  z-index: 1;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,7,0.55) 0%, rgba(7,7,7,0.35) 40%, rgba(7,7,7,0.92) 100%),
    linear-gradient(90deg, rgba(7,7,7,0.85) 0%, rgba(7,7,7,0.4) 55%, rgba(7,7,7,0.6) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  opacity: 0.5;
}
.hero-content {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem 0.4rem 0.55rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.pulse {
  width: 8px; height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--red-bright), #ff6b7a 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
}
.stat { padding-right: 1.5rem; }
.stat strong {
  font-family: var(--display);
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 400;
}
.stat span { font-family: var(--display); font-size: 1.5rem; color: var(--red-bright); }
.stat p { font-size: 0.75rem; color: var(--text-3); margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider { width: 1px; height: 36px; background: var(--border); margin-right: 1.5rem; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.5; }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 1.1rem 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  text-align: center;
}
.trust-strip .stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.9rem; }
.trust-strip p { color: var(--text-2); font-size: 0.9rem; font-weight: 500; }
.trust-links { display: flex; gap: 1rem; }
.trust-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  transition: color 0.2s;
}
.trust-links a:hover { color: var(--red-bright); }

/* ── Discipline cards ── */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.disc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
  cursor: default;
}
.disc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 20, 38, 0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(199,20,38,0.1);
}
.disc-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.disc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.disc-card:hover .disc-img img { transform: scale(1.08); }
.disc-tag {
  position: absolute;
  top: 0.85rem; left: 0.85rem;
  padding: 0.3rem 0.7rem;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
}
.disc-body { padding: 1.25rem 1.35rem 1.5rem; }
.disc-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.disc-body p { color: var(--text-2); font-size: 0.9rem; line-height: 1.55; }

/* ── Path tabs ── */
.path-tabs {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  margin-inline: auto;
  flex-wrap: wrap;
}
.path-tab {
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  transition: background 0.25s, color 0.25s;
}
.path-tab:hover { color: var(--text); }
.path-tab.active {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 16px var(--red-glow);
}
.path-panel { display: none; animation: fadeUp 0.45s var(--ease); }
.path-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.path-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.path-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.path-card:hover {
  border-color: rgba(199, 20, 38, 0.4);
  transform: translateY(-3px);
}
.path-card .age {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.65rem;
}
.path-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.path-card p { color: var(--text-2); font-size: 0.875rem; }

/* ── Facility ── */
.facility-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
}
.facility-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/11;
  border: 1px solid var(--border);
}
.facility-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s;
}
.facility-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
}
.facility-caption h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.facility-caption p { color: var(--text-2); font-size: 0.9rem; }
.facility-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  align-content: start;
}
.facility-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/11;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: opacity 0.25s, border-color 0.25s, transform 0.25s;
}
.facility-thumb img { width: 100%; height: 100%; object-fit: cover; }
.facility-thumb:hover { opacity: 1; transform: scale(1.02); }
.facility-thumb.active {
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red-glow);
}

/* ── Schedule ── */
.schedule-app {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.schedule-filters { margin-bottom: 1.5rem; }
.filter-group { margin-bottom: 1rem; }
.filter-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.55rem;
}
.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chip {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border-strong);
  color: var(--text-2);
  transition: all 0.2s;
}
.chip:hover { border-color: rgba(255,255,255,0.3); color: var(--text); }
.chip.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 4px 14px var(--red-glow);
}
.day-selector {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.day-selector::-webkit-scrollbar { display: none; }
.day-btn {
  flex: 1;
  min-width: 64px;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.25s var(--ease);
}
.day-btn:hover { border-color: var(--border-strong); }
.day-btn.active {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  border-color: transparent;
  box-shadow: 0 6px 20px var(--red-glow);
}
.day-btn .dow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.15rem;
}
.day-btn .dname { font-weight: 600; font-size: 0.9rem; }
.day-btn .today-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 3px;
  vertical-align: middle;
}
.schedule-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.schedule-meta h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.schedule-meta span { color: var(--text-3); font-size: 0.85rem; }
.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 480px;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.schedule-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
  animation: fadeUp 0.35s var(--ease) both;
}
.schedule-item:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
}
.sched-time {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--red-bright);
  line-height: 1.3;
}
.sched-time small {
  display: block;
  font-weight: 500;
  color: var(--text-3);
  font-size: 0.75rem;
}
.sched-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; }
.sched-meta { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-aud { background: rgba(255,255,255,0.08); color: var(--text-2); }
.badge-type-grappling { background: rgba(50, 100, 180, 0.25); color: #7eb0f0; }
.badge-type-striking { background: rgba(200, 100, 30, 0.25); color: #f0a86e; }
.badge-type-open { background: rgba(60, 140, 90, 0.25); color: #7ed9a0; }
.badge-mat {
  background: var(--red-dim);
  color: var(--red-bright);
  border: 1px solid rgba(199, 20, 38, 0.3);
}
.schedule-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-3);
}
.schedule-hours {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--red-dim);
  border: 1px solid rgba(199, 20, 38, 0.25);
  border-radius: var(--radius-sm);
}
.schedule-hours strong { display: block; margin-bottom: 0.25rem; font-size: 0.9rem; }
.schedule-hours p { color: var(--text-2); font-size: 0.85rem; }
.schedule-hours a { color: var(--red-bright); font-weight: 600; }

/* ── Coaches ── */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.coach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.coach-card:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 20, 38, 0.35);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.coach-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.coach-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
}
.coach-card.featured .coach-photo { aspect-ratio: auto; min-height: 100%; }
.coach-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.coach-card:hover .coach-photo img { transform: scale(1.06); }
.coach-info { padding: 1.1rem 1.15rem 1.25rem; }
.coach-card.featured .coach-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem;
}
.coach-role {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.4rem;
}
.coach-info h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.coach-card.featured .coach-info h3 { font-size: 1.5rem; }
.coach-info p { color: var(--text-2); font-size: 0.8rem; line-height: 1.5; }
.coach-card.featured .coach-info p { font-size: 0.95rem; }

/* ── Story ── */
.story-section {
  position: relative;
  z-index: 1;
  padding: 7rem 0;
  overflow: hidden;
}
.story-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(199, 20, 38, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg), #0c0506, var(--bg));
}
.story-content {
  position: relative;
  text-align: center;
  max-width: 680px;
}
.story-content h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0.75rem 0 1.25rem;
  font-weight: 400;
}
.story-content > p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.story-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.3s;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.price-card.featured {
  border-color: rgba(199, 20, 38, 0.5);
  background: linear-gradient(160deg, rgba(199, 20, 38, 0.12), var(--bg-card) 50%);
  box-shadow: 0 20px 50px rgba(199, 20, 38, 0.12);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px var(--red-glow);
}
.price-num {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.price-sub { color: var(--text-3); font-size: 0.85rem; margin-bottom: 1.5rem; }
.price-card ul {
  flex: 1;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-2);
}
.price-card li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--red-glow);
}
.price-waiver {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-3);
  transition: color 0.2s;
}
.price-waiver:hover { color: var(--red-bright); }

/* ── Reviews ── */
.review-scores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.score-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.score-card strong {
  font-family: var(--display);
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 400;
  display: block;
}
.score-card .stars { color: var(--gold); margin: 0.35rem 0; letter-spacing: 0.12em; }
.score-card p { color: var(--text-3); font-size: 0.85rem; }
.reviews-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.review-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.review-card .stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.85rem; font-size: 0.85rem; }
.review-card p {
  flex: 1;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.review-card footer {
  font-size: 0.8rem;
  color: var(--text-3);
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.review-card footer strong { color: var(--text); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(199, 20, 38, 0.35); }
.faq-item summary {
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--red-bright);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--red-bright); }
.faq-item p {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── CTA ── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(199, 20, 38, 0.2), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 600px; }
.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
  font-weight: 400;
}
.cta-inner > p { color: var(--text-2); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.cta-address p { color: var(--text-3); font-size: 0.9rem; margin-bottom: 0.35rem; }
.cta-address a { color: var(--red-bright); font-size: 0.9rem; font-weight: 600; }

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding-top: 3.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { color: var(--text-3); font-size: 0.9rem; margin-top: 0.85rem; max-width: 260px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.footer-cols h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-cols a {
  display: block;
  color: var(--text-2);
  font-size: 0.9rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--red-bright); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-bottom a:hover { color: var(--red-bright); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.open[hidden] { display: grid; }
.modal {
  position: relative;
  width: min(100%, 480px);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-2);
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--red-dim); color: var(--red-bright); }
.modal-header { margin-bottom: 1.5rem; padding-right: 2rem; }
.modal-header h2 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin: 0.4rem 0 0.5rem;
}
.modal-header > p { color: var(--text-2); font-size: 0.9rem; }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.countdown > div {
  text-align: center;
  padding: 0.65rem 0.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
}
.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--red-bright);
  font-weight: 400;
  line-height: 1;
}
.countdown span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.field { margin-bottom: 0.85rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-3);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.field input,
.field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a8a8a8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 0.85rem;
}
.trial-form .btn { margin-top: 0.5rem; }
.trial-success {
  text-align: center;
  padding: 2rem 0 1rem;
}
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 28px var(--red-glow);
}
.trial-success h3 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.trial-success p { color: var(--text-2); margin-bottom: 1.5rem; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.disc-card.reveal { transition-delay: calc(var(--i, 0) * 0.07s); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .path-cards { grid-template-columns: repeat(2, 1fr); }
  .coaches-grid { grid-template-columns: repeat(3, 1fr); }
  .coach-card.featured { grid-column: span 3; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .facility-showcase { grid-template-columns: 1fr; }
  .facility-thumbs { grid-template-columns: repeat(4, 1fr); }
  .facility-thumb:nth-child(n+5) { display: none; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    background: rgba(7, 7, 7, 0.96);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    gap: 0.15rem;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .coaches-grid { grid-template-columns: repeat(2, 1fr); }
  .coach-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .coach-card.featured .coach-photo { aspect-ratio: 16/10; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .schedule-item { grid-template-columns: 90px 1fr; }
  .schedule-item .badge-mat { grid-column: 2; justify-self: start; }
}

@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .hero-stats { gap: 1rem; }
  .stat { padding-right: 0.75rem; }
  .stat strong { font-size: 1.75rem; }
  .stat-divider { margin-right: 0.75rem; height: 28px; }
  .disc-grid { grid-template-columns: 1fr; }
  .path-cards { grid-template-columns: 1fr; }
  .path-tabs { width: 100%; }
  .path-tab { flex: 1; text-align: center; padding: 0.6rem 0.5rem; font-size: 0.8rem; }
  .review-scores { grid-template-columns: 1fr; }
  .facility-thumbs { grid-template-columns: repeat(3, 1fr); }
  .facility-thumb:nth-child(n+4) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .schedule-app { padding: 1.15rem; }
  .schedule-item { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
