/* ========================================
   LABYRINTH BJJ FOUNDATIONS — Styles V2
   ======================================== */

:root {
  /* Colors */
  --bg: #0A0A0A;
  --surface: #141414;
  --surface-elevated: #1A1A1A;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #F0F0F0;
  --text-muted: #8A8A8A;
  --text-faint: #555555;
  --gold: #C8A24C;
  --gold-hover: #D4B465;
  --red: #E74C3C;
  --red-hover: #EF6B5B;
  --success: #27AE60;

  /* Typography */
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'General Sans', sans-serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --transition-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);

  /* Layout */
  --container: 1200px;
  --container-narrow: 900px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
img, video { display: block; max-width: 100%; }

/* ===== GLOBAL ===== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.section-title--xl {
  font-size: clamp(36px, 5vw, 64px);
}

.section-title--lg {
  font-size: clamp(28px, 4vw, 48px);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
}

/* ===== BEGINNER/ADVANCED POPUP ===== */
.level-popup {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.level-popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.level-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.level-popup__modal {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 40px rgba(200, 162, 76, 0.08);
}

.level-popup__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text);
}

.level-popup__subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
}

.level-popup__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.level-popup__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
  background: var(--surface-elevated);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: var(--text);
}

.level-popup__btn:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 76, 0.06);
  transform: translateY(-3px);
}

.level-popup__btn-icon {
  font-size: 36px;
  line-height: 1;
}

.level-popup__btn-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.level-popup__btn-detail {
  font-size: 13px;
  color: var(--text-muted);
}

.level-popup__skip {
  font-size: 13px;
  color: var(--text-faint);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}

.level-popup__skip:hover {
  color: var(--text-muted);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-2) 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  position: relative;
  z-index: 50;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: var(--gold-hover);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
  margin-right: var(--space-6);
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  filter: invert(1);
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--text);
  white-space: nowrap;
}

.nav__logo-text span {
  color: var(--gold);
  font-weight: 500;
  font-size: 12px;
  display: block;
  letter-spacing: 0.08em;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 24px);
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav__phone-link:hover {
  color: var(--gold);
}

.nav__divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

.nav__link--ext {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  opacity: 0.7;
}

.nav__link--ext:hover {
  opacity: 1;
}

.nav__link--ext::after {
  display: none;
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  background: var(--gold);
  color: #0A0A0A;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 162, 76, 0.3);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 300ms var(--ease-out), opacity 200ms;
}

.nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  padding: var(--space-10) var(--space-6) var(--space-16);
  flex-direction: column;
  gap: var(--space-6);
  overflow-y: auto;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}

.nav__mobile .nav__cta {
  display: inline-block;
  text-align: center;
  margin-top: var(--space-4);
  font-size: 16px;
  padding: 14px 28px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  min-height: 48px;
  cursor: pointer;
}

.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: #0A0A0A;
}

.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 162, 76, 0.35), 0 0 30px rgba(200, 162, 76, 0.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--red {
  background: var(--red);
  color: #fff;
}

.btn--red:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}

.btn--sm {
  font-size: 13px;
  padding: 8px 18px;
  min-height: 36px;
}

.btn--lg {
  font-size: 16px;
  padding: 16px 36px;
  min-height: 52px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-16)) var(--space-6) var(--space-16);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('./hero-doors.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.55) 40%,
    rgba(10,10,10,0.9) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 162, 76, 0.1);
  border: 1px solid rgba(200, 162, 76, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-5);
}

.hero__badge--grand {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 10px 28px;
  border: 2px solid var(--gold);
  background: rgba(200, 162, 76, 0.15);
  animation: badgePulse 2.5s ease-in-out infinite;
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 162, 76, 0.3); }
  50% { box-shadow: 0 0 20px 4px rgba(200, 162, 76, 0.15); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  color: var(--text);
  margin-bottom: var(--space-5);
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: var(--space-5);
}

.hero__tags {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 100px;
}

/* Countdown — THE BIG CENTERPIECE */
.countdown--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  background: rgba(10, 10, 10, 0.6);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-12);
  margin-bottom: var(--space-8);
  animation: countdownGlow 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@keyframes countdownGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(200, 162, 76, 0.15), inset 0 0 20px rgba(200, 162, 76, 0.03); }
  50% { box-shadow: 0 0 40px rgba(200, 162, 76, 0.25), 0 0 80px rgba(200, 162, 76, 0.08), inset 0 0 30px rgba(200, 162, 76, 0.05); }
}

.countdown__header {
  text-align: center;
}

.countdown__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.countdown__timer {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.countdown__unit {
  text-align: center;
}

.countdown__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 72px);
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(200, 162, 76, 0.5), 0 2px 4px rgba(0,0,0,0.5);
}

.countdown__sep {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-top: -8px;
}

.countdown__unit-label {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 6px;
  font-weight: 600;
}

/* Presale Box */
.hero__presale-box {
  background: rgba(200, 162, 76, 0.06);
  border: 2px solid rgba(200, 162, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
  margin-bottom: var(--space-8);
  text-align: center;
  max-width: 520px;
  width: 100%;
  animation: presaleGlow 3s ease-in-out infinite;
}

@keyframes presaleGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(200, 162, 76, 0.1); }
  50% { box-shadow: 0 0 30px rgba(200, 162, 76, 0.2), 0 0 60px rgba(200, 162, 76, 0.05); }
}

.hero__presale-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--gold);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: var(--space-4);
}

.hero__presale-price {
  margin-bottom: var(--space-2);
}

.hero__presale-dollar {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--text);
}

.hero__presale-per {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__presale-note {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: var(--space-5);
  line-height: 1.5;
}

.hero__presale-cta {
  width: 100%;
}

.hero__stat-value--text {
  font-size: clamp(20px, 2.5vw, 32px);
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.hero__stat {
  text-align: left;
  transition: transform 0.3s var(--ease-out);
}

.hero__stat:hover {
  transform: scale(1.05);
}

.hero__stat:hover .hero__stat-value {
  text-shadow: 0 0 20px rgba(200, 162, 76, 0.5), 0 0 40px rgba(200, 162, 76, 0.2);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--gold);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  transition: text-shadow 0.3s var(--ease-out);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-1);
  font-weight: 500;
}

/* ===== PROGRAMS SECTION ===== */
.programs {
  padding: clamp(48px, 6vw, 80px) 0;
}

.programs__header {
  margin-bottom: var(--space-10);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-top: var(--space-12);
}

.program-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.program-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(200, 162, 76, 0.12);
  border-color: rgba(200, 162, 76, 0.3);
}

.program-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.program-card__body {
  padding: var(--space-5) var(--space-6);
}

.program-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.program-card__badges {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.program-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
}

.program-card__badge--gi {
  background: rgba(200, 162, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(200, 162, 76, 0.3);
}

.program-card__badge--nogi {
  background: rgba(79, 195, 247, 0.15);
  color: #4FC3F7;
  border: 1px solid rgba(79, 195, 247, 0.3);
}

.program-card__badge--mma {
  background: rgba(231, 76, 60, 0.15);
  color: var(--red);
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.program-card__badge--agility {
  background: rgba(39, 174, 96, 0.15);
  color: var(--success);
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.program-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.program-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: var(--space-4);
}

.program-card__trial-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #0A0A0A;
  background: var(--gold);
  padding: 8px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}

.program-card__trial-btn:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* ===== SCHEDULE SECTION ===== */
.schedule {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.schedule__header {
  margin-bottom: var(--space-10);
}

/* Schedule Key */
.schedule-key {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.schedule-key__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

.schedule-key__items {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.schedule-key__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.schedule-key__swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.schedule-key__swatch--gi { background: var(--gold); }
.schedule-key__swatch--nogi { background: #4FC3F7; }
.schedule-key__swatch--mma { background: var(--red); }
.schedule-key__swatch--agility { background: var(--success); }

/* Schedule Days Grid */
.schedule-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.schedule-day {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.schedule-day__header {
  background: rgba(255,255,255,0.03);
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}

.schedule-day__classes {
  padding: 0;
}

.schedule-day__section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px var(--space-4) 4px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.schedule-day__section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
}

.schedule-day__section-label--kids {
  color: var(--gold);
}
.schedule-day__section-label--kids::before {
  background: var(--gold);
}

.schedule-day__section-label--mma {
  color: var(--red);
}
.schedule-day__section-label--mma::before {
  background: var(--red);
}

.schedule-day__class {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px var(--space-4);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  transition: background var(--transition-fast);
}

.schedule-day__class:last-child {
  border-bottom: none;
}

.schedule-day__class:hover {
  background: rgba(255,255,255,0.02);
}

.schedule-day__class--gi {
  border-left: 3px solid var(--gold);
}

.schedule-day__class--nogi {
  border-left: 3px solid #4FC3F7;
}

.schedule-day__class--mma {
  border-left: 3px solid var(--red);
}

.schedule-day__class--agility {
  border-left: 3px solid var(--success);
}

.schedule-day__time {
  font-weight: 600;
  color: var(--text);
  font-size: 11px;
  min-width: 80px;
  flex-shrink: 0;
}

.schedule-day__name {
  color: var(--text);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  flex: 1 1 0%;
  min-width: 0;
}

.schedule-day__ages {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 1px;
}

.schedule-day__class .sched-type {
  font-size: 7px;
  padding: 1px 4px;
  flex-shrink: 0;
}

.sched-trial-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 162, 76, 0.12);
  border: 1px solid rgba(200, 162, 76, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.sched-trial-badge:hover {
  background: var(--gold);
  color: #0A0A0A;
}

/* ===== PIPELINE SECTION ===== */
.pipeline {
  padding: clamp(48px, 6vw, 80px) 0;
}

.pipeline__header {
  margin-bottom: var(--space-12);
}

.pipeline__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

.pipeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 200px;
  flex: 1;
  max-width: 280px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.pipeline__step:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 162, 76, 0.3);
}

.pipeline__step--active {
  border-color: var(--gold);
  background: rgba(200, 162, 76, 0.06);
}

.pipeline__step-icon {
  font-size: 32px;
  margin-bottom: var(--space-3);
}

.pipeline__step-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.pipeline__step-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.pipeline__arrow {
  font-size: 24px;
  color: var(--gold);
  padding: 0 var(--space-3);
  flex-shrink: 0;
}

/* Athlete Cards */
.pipeline__athletes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 800px;
  margin: 0 auto var(--space-8);
}

.athlete-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.athlete-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 162, 76, 0.25);
}

.athlete-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  margin-bottom: var(--space-1);
}

.athlete-card__tier {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.athlete-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.athlete-card__stat {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface-elevated);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.athlete-card__stat strong {
  color: var(--text);
}

.pipeline__cta {
  text-align: center;
}

.pipeline__cta a {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  transition: color var(--transition-fast);
}

.pipeline__cta a:hover {
  color: var(--gold-hover);
}

/* ===== TESTIMONIALS / REVIEWS ===== */
.testimonials {
  padding: var(--space-16) 0;
  background: #0D0D0D;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-8);
}

.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 76, 0.2);
  background: rgba(255,255,255,.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 16px rgba(200, 162, 76, 0.06);
}

.testimonial-card:hover .testimonial-card__stars {
  text-shadow: 0 0 12px rgba(200, 162, 76, 0.5);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  transition: text-shadow 0.35s var(--ease-out);
}

.testimonial-card__quote {
  color: rgba(255,255,255,.75);
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.testimonial-card__name {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial-card__detail {
  color: rgba(255,255,255,.4);
  font-size: 0.8rem;
}

.testimonials__rating {
  color: rgba(255,255,255,.6);
  font-size: 0.95rem;
  margin-top: 8px;
}

.testimonials__rating strong {
  color: var(--gold);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: var(--space-6);
}

.testimonials__arrow {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.testimonials__arrow:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background 0.2s;
}

.testimonials__dot--active {
  background: var(--gold);
}

.testimonials__cta {
  text-align: center;
  margin-top: var(--space-6);
}

/* ===== BELT JOURNEY ===== */
.belt-journey {
  padding: var(--space-20) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.belt-journey__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.belt-journey__header .section-subtitle {
  margin: var(--space-4) auto 0;
}

.belt-section {
  margin-bottom: var(--space-16);
}

.belt-section__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text);
  text-align: center;
  margin-bottom: var(--space-8);
}

.belt-section__subtitle {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.belt-section__desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: calc(-1 * var(--space-6));
  margin-bottom: var(--space-8);
}

.belt-cards {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.belt-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-4);
  text-align: center;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.belt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 162, 76, 0.2);
}

.belt-card img {
  display: block;
  margin-bottom: var(--space-2);
}

.belt-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.belt-card__time {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.belt-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.belt-card--black {
  border-color: rgba(200, 162, 76, 0.15);
  box-shadow: 0 0 20px rgba(200, 162, 76, 0.05);
}

/* Kids Belt Flow */
.belt-kids-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
}

.kids-belt-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 700px;
  margin: 0 auto;
}

.kids-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.kids-group__belts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.kids-group__belts img {
  display: block;
}

.kids-group__name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.kids-group__age {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.kids-group--transition {
  opacity: 0.6;
}

.belt-journey__cta {
  text-align: center;
  margin-top: var(--space-12);
}

.belt-journey__cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

/* ===== COACHES SECTION ===== */
.coaches {
  padding: clamp(48px, 6vw, 80px) 0;
}

.coaches__header {
  margin-bottom: var(--space-10);
}

.coaches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.coach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-8);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.coach-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 76, 0.25);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(200, 162, 76, 0.08);
}

.coach-card--featured {
  display: flex;
  flex-direction: row;
  text-align: left;
  padding: var(--space-6);
  gap: var(--space-6);
}

.coach-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--gold);
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.coach-card:hover .coach-card__avatar {
  box-shadow: 0 0 20px rgba(200, 162, 76, 0.35), 0 0 40px rgba(200, 162, 76, 0.12);
  transform: scale(1.05);
}

.coach-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-card--featured .coach-card__avatar {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  margin: 0;
}

.coach-card--featured .coach-card__name {
  font-size: 22px;
}

.coach-card--featured .coach-card__rank {
  align-items: flex-start;
}

.coach-card__rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-4);
}

/* Belt Bar */
.belt-bar {
  position: relative;
  width: 80px;
  height: 10px;
  border-radius: 3px;
  overflow: visible;
  display: flex;
  align-items: center;
}

.belt-bar__belt {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.belt-bar__tab {
  position: absolute;
  right: 8px;
  top: 0;
  width: 16px;
  height: 100%;
  border-radius: 2px;
}

.belt-bar__stripes {
  position: absolute;
  right: 10px;
  top: 1px;
  display: flex;
  gap: 2px;
  height: calc(100% - 2px);
}

.belt-bar__stripes span {
  display: block;
  width: 3px;
  height: 100%;
  background: #fff;
  border-radius: 1px;
}

/* Black Belt */
.belt-bar--black .belt-bar__belt {
  background: linear-gradient(90deg, #1a1a1a 0%, #333 100%);
  border: 1px solid rgba(255,255,255,0.15);
}
.belt-bar--black .belt-bar__tab {
  background: #E74C3C;
}

/* Purple Belt */
.belt-bar--purple .belt-bar__belt {
  background: linear-gradient(90deg, #6B2D8B 0%, #8B3DAB 100%);
  border: 1px solid rgba(255,255,255,0.1);
}
.belt-bar--purple .belt-bar__tab {
  background: #1a1a1a;
}

.belt-bar--4stripe .belt-bar__tab {
  width: 24px;
}

.coach-card__rank-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.coach-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: var(--space-1);
}

.coach-card__role {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.coach-card__bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== TRIAL / WHAT TO EXPECT ===== */
.trial {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trial__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.trial__header .section-subtitle {
  margin: var(--space-4) auto 0;
}

.trial__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.trial__card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.trial__card-icon {
  font-size: 28px;
  margin-bottom: var(--space-4);
}

.trial__card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: var(--space-4);
}

.trial__card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.trial__card li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  line-height: 1.5;
}

.trial__card li::before {
  content: '→';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.trial__cta {
  text-align: center;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: clamp(48px, 6vw, 80px) 0;
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.pricing__header .section-subtitle {
  margin: var(--space-4) auto 0;
}

.pricing__grid--v2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-5);
  max-width: 100%;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 24px rgba(200, 162, 76, 0.15);
  border-color: rgba(200, 162, 76, 0.5);
}

/* Presale Card — BIG HYPE */
.pricing-card--presale {
  border: 2px solid var(--gold);
  background: linear-gradient(175deg, #1F1B14 0%, #141414 40%, #141414 100%);
  overflow: visible;
  box-shadow: 0 0 30px rgba(200, 162, 76, 0.15), 0 0 60px rgba(200, 162, 76, 0.06);
  animation: presaleCardGlow 3s ease-in-out infinite;
}

@keyframes presaleCardGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 162, 76, 0.12), 0 0 40px rgba(200, 162, 76, 0.05); }
  50% { box-shadow: 0 0 30px rgba(200, 162, 76, 0.25), 0 0 80px rgba(200, 162, 76, 0.1); }
}

.pricing-card--presale:hover {
  box-shadow: 0 0 40px rgba(200, 162, 76, 0.3), 0 0 100px rgba(200, 162, 76, 0.15);
  border-color: #E8C96B;
}

.pricing-card--regular {
  opacity: 0.85;
  margin-top: var(--space-4);
}

.pricing-card--regular:hover {
  opacity: 1;
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
}

.pricing-card__badge--pulse {
  animation: badgePulsePrice 2s ease-in-out infinite;
}

@keyframes badgePulsePrice {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 162, 76, 0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(200, 162, 76, 0.2); }
}

.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin-bottom: var(--space-2);
}

.pricing-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.pricing-card__price span {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.pricing-card__period {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: var(--space-6);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-6);
}

.pricing-card__features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: var(--space-2) 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing__note {
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  margin-top: var(--space-8);
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: var(--space-20) 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.faq__header .section-subtitle {
  margin: var(--space-4) auto 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item--active {
  border-left: 3px solid var(--gold);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

.faq-item__question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  border-radius: var(--radius-md);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item--active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item--active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer p {
  padding: 0 var(--space-6) var(--space-6);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== LOCATIONS SECTION ===== */
.locations {
  padding: var(--space-20) 0;
}

.locations__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.locations__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.location-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.location-card--flagship {
  border-top: 3px solid var(--gold);
}

.location-card__badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: var(--gold);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.location-card__badge--soon {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.location-card__map-placeholder {
  height: 160px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--text-muted);
}

.location-card__map-placeholder svg {
  opacity: 0.4;
}

.location-card__map-placeholder p {
  font-size: 13px;
  opacity: 0.5;
}

.location-card__info {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.location-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.location-card__address {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.location-card__phone a {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

.location-card__phone a:hover {
  text-decoration: underline;
}

.location-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-2);
}

.location-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.02em;
}

.location-card__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
}

/* ===== FOOTER ===== */
.footer {
  padding: clamp(64px, 8vw, 96px) 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-12);
}

.footer__brand {
  max-width: 360px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.footer__logo-img {
  width: 160px;
  height: auto;
  filter: invert(1);
  object-fit: contain;
  margin-bottom: var(--space-4);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.footer__social a:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--surface);
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: var(--space-5);
  color: var(--text);
}

.footer__col p,
.footer__col a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  display: block;
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__bottom p,
.footer__bottom a {
  font-size: 13px;
  color: var(--text-faint);
}

.footer__bottom a:hover {
  color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 60ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 120ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 180ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-in, .stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
}

/* ========================================
   BOOKING MODAL
   ======================================== */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.booking-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-overlay.open .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.booking-modal__close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text);
}

#bookingContent {
  padding: 32px 28px;
}

.booking-step-header {
  text-align: center;
  margin-bottom: 24px;
}

.booking-step-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
}

.booking-step-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Category Buttons */
.booking-category-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.booking-category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  color: var(--text);
}

.booking-category-btn:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 76, 0.06);
  transform: translateY(-2px);
}

.booking-category-btn__icon {
  font-size: 28px;
  line-height: 1;
}

.booking-category-btn__label {
  font-size: 15px;
  font-weight: 600;
}

/* Class List */
.booking-class-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-class-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.booking-class-row:hover {
  border-color: var(--gold);
  background: rgba(200, 162, 76, 0.06);
}

.booking-class-row__day {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  min-width: 32px;
}

.booking-class-row__time {
  font-size: 13px;
  color: var(--text-muted);
  min-width: 90px;
}

.booking-class-row__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.booking-class-row__arrow {
  font-size: 14px;
  color: var(--text-faint);
  transition: transform 0.2s;
}

.booking-class-row:hover .booking-class-row__arrow {
  transform: translateX(3px);
  color: var(--gold);
}

.booking-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin-bottom: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  transition: color 0.2s;
}

.booking-back-btn:hover {
  color: var(--gold);
}

/* Booking Form */
.booking-class-info {
  text-align: center;
  margin-bottom: 24px;
}

.booking-class-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(200, 162, 76, 0.1);
  border: 1px solid rgba(200, 162, 76, 0.25);
  border-radius: 8px;
  margin-bottom: 4px;
}

.booking-class-badge__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
}

.booking-class-badge__type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.booking-class-badge__type--gi {
  background: rgba(200, 162, 76, 0.15);
  color: var(--gold);
}

.booking-class-badge__type--nogi {
  background: rgba(79, 195, 247, 0.15);
  color: #4FC3F7;
}

.booking-class-badge__type--mma {
  background: rgba(231, 76, 60, 0.15);
  color: var(--red);
}

.booking-class-info__datetime {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  margin: 8px 0 2px;
}

.booking-class-info__next {
  font-size: 13px;
  color: var(--text-muted);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-form__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-form__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.booking-form__input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.booking-form__input::placeholder {
  color: var(--text-faint);
}

.booking-form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 76, 0.15);
}

.booking-form__input.is-error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* Submit Button */
.booking-submit-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 0 24px;
  background: var(--gold);
  color: #0A0A0A;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.booking-submit-btn:hover { background: var(--gold-hover); }
.booking-submit-btn:active { transform: scale(0.98); }
.booking-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.booking-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(10, 10, 10, 0.3);
  border-top-color: #0A0A0A;
  border-radius: 50%;
  animation: bookingSpin 0.6s linear infinite;
}

@keyframes bookingSpin {
  to { transform: rotate(360deg); }
}

/* Success */
.booking-success {
  text-align: center;
  padding: 20px 0;
}

.booking-success__check {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(200, 162, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bookingCheckPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-success__check svg {
  width: 32px;
  height: 32px;
}

@keyframes bookingCheckPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.booking-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.booking-success__detail {
  font-size: 15px;
  color: var(--text);
  margin: 0 0 4px;
}

.booking-success__email-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 24px;
}

.booking-success__close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.booking-success__close-btn:hover {
  background: rgba(255,255,255,0.1);
}

/* ======== MOBILE BOTTOM CTA BAR ======== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.95);
  border-top: 1px solid rgba(200,169,72,.25);
  padding: 10px 16px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transform: translateY(100%);
  transition: transform .3s ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.mobile-cta-bar__call:hover {
  background: var(--gold);
  color: #0A0A0A;
}

.mobile-cta-bar__trial {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background .2s;
}

.mobile-cta-bar__trial:hover {
  background: #d4b95c;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --nav-height: 64px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .coaches__grid {
    grid-template-columns: 1fr;
  }

  .coach-card--featured {
    flex-direction: column;
    text-align: center;
  }

  .coach-card--featured .coach-card__avatar {
    margin: 0 auto var(--space-5);
  }

  .coach-card--featured .coach-card__rank {
    align-items: center;
  }

  .pipeline__athletes {
    grid-template-columns: 1fr;
  }

  .schedule-days {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations__grid--3col {
    grid-template-columns: 1fr 1fr;
  }

  .locations__grid--3col .location-card:first-child {
    grid-column: 1 / -1;
  }

  .pricing__grid--v2 {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-card--presale {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .programs__grid {
    grid-template-columns: 1fr;
  }

  .schedule-days {
    grid-template-columns: 1fr;
  }

  .trial__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid--v2 {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing-card--presale {
    grid-column: auto;
  }

  .pricing-card--regular {
    margin-top: 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 64px;
  }

  .countdown {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
  }

  .countdown__value {
    font-size: 28px;
  }

  .pipeline__visual {
    flex-direction: column;
    gap: var(--space-4);
  }

  .pipeline__arrow {
    transform: rotate(90deg);
  }

  .belt-cards {
    gap: var(--space-3);
  }
  .belt-card {
    width: calc(50% - var(--space-3));
  }
  .kids-belt-flow {
    gap: var(--space-3);
  }
  .kids-group__belts img {
    width: 64px;
    height: auto;
  }
  .belt-kids-card {
    padding: var(--space-6) var(--space-4);
  }

  .coaches__grid {
    grid-template-columns: 1fr;
  }

  .coach-card {
    padding: var(--space-5);
  }

  .coach-card__avatar {
    width: 90px;
    height: 90px;
  }

  .belt-bar {
    width: 60px;
    height: 8px;
  }

  .locations__grid--3col {
    grid-template-columns: 1fr;
  }

  .faq-item__question {
    font-size: 15px;
    padding: var(--space-4) var(--space-5);
  }
  .faq-item__answer p {
    padding: 0 var(--space-5) var(--space-5);
    font-size: 14px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .level-popup__buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .hero__ctas {
    flex-direction: column;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .countdown--hero {
    padding: var(--space-6) var(--space-5);
  }

  .countdown__value {
    font-size: clamp(36px, 10vw, 48px);
  }

  .countdown__sep {
    font-size: 28px;
  }

  .hero__presale-box {
    padding: var(--space-5) var(--space-5);
  }

  .hero__presale-dollar {
    font-size: 36px;
  }

  .belt-card {
    width: 100%;
    flex-direction: row;
    text-align: left;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  .belt-card img {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .belt-card__desc {
    display: none;
  }
  .kids-group__belts img {
    width: 52px;
    height: auto;
  }
  .kids-belt-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .hero__presale {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
}

/* Mobile booking overlay */
@media (max-width: 600px) {
  .booking-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .booking-modal {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  .booking-overlay.open .booking-modal {
    transform: translateY(0);
  }

  #bookingContent {
    padding: 28px 20px 36px;
  }
}
