/* ============================================
   WARRIOR BRAZILIAN JIU-JITSU ACADEMY
   Global Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0a0a0a;
  --bg-surface: #141414;
  --bg-elevated: #1c1c1c;
  --border-subtle: #2a2a2a;
  --red: #B30000;
  --red-hover: #CC0000;
  --red-dark: #850000;
  --gold: #C9A227;
  --gold-light: #d4af37;
  --text-primary: #F0EDE8;
  --text-muted: #999999;
  --text-dark: #666666;
  --white: #ffffff;
  --black: #000000;
  --success: #2ecc71;
  --glow-red: 0 0 30px rgba(179, 0, 0, 0.4);
  --glow-gold: 0 0 20px rgba(201, 162, 39, 0.3);

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-sub: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-height: 80px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container: 1200px;
  --container-wide: 1400px;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

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

.text-gold {
  color: var(--gold);
}

.text-red {
  color: var(--red);
}

/* --- Noise Texture Overlay --- */
.noise-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 7.5vw, 5.5rem); }
h2 { font-size: clamp(1.7rem, 4.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.25vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); }

.eyebrow {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-heading {
  margin-bottom: 16px;
}

.section-subheading {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.5;
}

.section-subheading.centered {
  margin: 0 auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid transparent;
  padding: 12px 0;
  font-weight: 600;
  position: relative;
}

.btn-ghost::after {
  content: ' \2192';
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn-ghost:hover {
  color: var(--red-hover);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.nav-scrolled {
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  max-width: 900px;
  margin: 12px auto 0;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  border-radius: 50px;
  height: 60px;
  padding: 0 8px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

/* Scrolled pill: hide logo entirely */
.nav-scrolled .nav-logo {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--white);
}

/* Programs Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown-trigger .dropdown-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all var(--transition);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(204, 0, 0, 0.08);
  border-left-color: var(--red);
}

.nav-cta {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(204, 0, 0, 0.4);
}

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--red);
}

.mobile-programs-toggle {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-programs-list {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}

.mobile-programs-list.open {
  display: flex;
}

.mobile-programs-list a {
  font-family: var(--font-sub);
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* --- Hero Sections --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.70) 50%,
    rgba(10, 10, 10, 0.92) 100%
  );
  z-index: 1;
}

/* Homepage hero: strong dark on left text column, atmospheric bottom */
.hero-v2 .hero-overlay {
  background:
    linear-gradient(105deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 45%, rgba(5, 5, 5, 0.25) 100%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.0) 40%, rgba(5, 5, 5, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero .section-subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 12px;
}

.hero-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(240, 237, 232, 0.72);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-strip .fa-check {
  color: var(--gold);
  font-size: 0.75rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--text-muted);
  font-size: 1.2rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-12px); }
  60% { transform: translateX(-50%) translateY(-6px); }
}

/* Page Heroes (shorter) */
.hero-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-page .hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-page .section-subheading {
  margin: 0 auto;
}

/* --- Section Patterns --- */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--bg-primary);
}

.section-surface {
  background: var(--bg-surface);
}

.section-red {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(0, 0, 0, 0.045) 40px,
      rgba(0, 0, 0, 0.045) 41px
    ),
    var(--red);
  position: relative;
  overflow: hidden;
}

.section-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-centered {
  text-align: center;
}

/* Diagonal dividers */
.diagonal-top {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  padding-top: calc(var(--section-pad) + 40px);
}

.diagonal-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  padding-bottom: calc(var(--section-pad) + 40px);
}

@media (min-width: 768px) {
  .diagonal-top {
    clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
    padding-top: calc(var(--section-pad) + 60px);
  }
  .diagonal-bottom {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    padding-bottom: calc(var(--section-pad) + 60px);
  }
}

/* --- Social Proof Strip --- */
.proof-strip {
  padding: 20px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.proof-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-strip-inner .stars {
  color: var(--gold);
}

.proof-strip-inner .divider {
  color: var(--border-subtle);
}

/* --- Two Column Layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.two-col-60-40 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .two-col-60-40 {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }
}

/* --- Photo Mosaic --- */
.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-mosaic img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.photo-mosaic img:hover {
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .photo-mosaic img {
    height: 240px;
  }
}

/* --- Program Cards Grid --- */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(204, 0, 0, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.program-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.program-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.program-card:hover .program-card-img img {
  transform: scale(1.05);
}

.program-card-img .tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.program-card-body {
  padding: 24px;
}

.program-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.program-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-card-body .btn-ghost {
  font-size: 0.85rem;
}

/* --- Stats / Why Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.stat-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: var(--section-pad) 24px;
  position: relative;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner .section-subheading {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.cta-banner .btn:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.friction-reducer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.cta-banner .friction-reducer {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Location Section --- */
.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.location-details {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.location-details a {
  color: var(--text-primary);
}

.location-details a:hover {
  color: var(--red);
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-sub);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.team-card-photo {
  background: linear-gradient(135deg, var(--bg-surface), #2a2a2a);
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.team-card-photo .photo-placeholder {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border-subtle);
}

.team-card-body {
  padding: 24px;
}

.team-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.team-card-title {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.team-card-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--red);
}

.value-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Stats Strip --- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: var(--section-pad) 24px;
  background: var(--bg-surface);
}

@media (min-width: 768px) {
  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-strip .stat-item {
  text-align: center;
}

.stats-strip .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--red);
  line-height: 1;
}

.stats-strip .stat-label {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* --- Schedule --- */
/* --- Schedule Filter --- */
.schedule-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover {
  border-color: var(--red);
  color: var(--white);
}
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.schedule-class.hidden {
  display: none;
}

.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  padding: 20px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-dot.adult { background: #B30000; }
.legend-dot.kids { background: #D4A017; }
.legend-dot.ftbf { background: #2ecc71; }
.legend-dot.striking { background: #3498db; }
.legend-dot.womens { background: #9b59b6; }

.schedule-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Desktop Schedule Grid */
.schedule-grid {
  display: none;
}

@media (min-width: 900px) {
  .schedule-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }
}

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

.schedule-day-header {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 14px 8px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.schedule-day-body {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 200px;
}

.schedule-class {
  padding: 10px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  line-height: 1.4;
  border-left: 3px solid;
}

.schedule-class.adult {
  background: rgba(204, 0, 0, 0.1);
  border-left-color: #B30000;
}

.schedule-class.kids {
  background: rgba(212, 160, 23, 0.1);
  border-left-color: #D4A017;
}

.schedule-class.ftbf {
  background: rgba(46, 204, 113, 0.1);
  border-left-color: #2ecc71;
}

.schedule-class.striking {
  background: rgba(52, 152, 219, 0.1);
  border-left-color: #3498db;
}

.schedule-class.womens {
  background: rgba(155, 89, 182, 0.1);
  border-left-color: #9b59b6;
}

.schedule-class-name {
  font-family: var(--font-sub);
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.schedule-class-time {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.schedule-class .badge {
  display: inline-block;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Mobile Schedule Tabs */
.schedule-tabs {
  display: flex;
}

@media (min-width: 900px) {
  .schedule-tabs {
    display: none;
  }
}

.schedule-tabs-nav {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.schedule-tab-btn {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  background: var(--bg-surface);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}

.schedule-tab-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.schedule-tab-content {
  display: none;
}

.schedule-tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-tab-content .schedule-class {
  font-size: 0.85rem;
  padding: 14px 16px;
}

.schedule-rest {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.schedule-rest h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.schedule-rest p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Program Page Specific --- */
.program-schedule {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.program-schedule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

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

.program-schedule-day {
  font-family: var(--font-sub);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 100px;
  color: var(--white);
}

.program-schedule-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.program-schedule-time {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.program-schedule-type {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Learn list */
.learn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 640px) {
  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.learn-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.learn-item i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.learn-item span {
  font-size: 0.9rem;
  color: var(--text-primary);
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 32px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--red);
}

.faq-question .fa-chevron-down {
  font-size: 0.7rem;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item.open .faq-question .fa-chevron-down {
  transform: rotate(180deg);
}

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

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* --- Instructor Spotlight --- */
.instructor-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

@media (min-width: 640px) {
  .instructor-spotlight {
    grid-template-columns: 160px 1fr;
  }
}

.instructor-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-subtle);
  margin: 0 auto;
}

.instructor-photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg-elevated), #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--border-subtle);
  margin: 0 auto;
  border: 3px solid var(--border-subtle);
}

.instructor-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.instructor-info .team-card-title {
  margin-bottom: 12px;
}

.instructor-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Contact Form --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--red);
}

.form-group .error-message {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}

.form-group input.error + .error-message,
.form-group select.error + .error-message {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* --- Modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 95%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-surface);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 40px 32px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--red);
}

.modal-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.modal-logo-img {
  height: 36px;
  width: auto;
  display: block;
  opacity: 0.95;
}

.modal h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.modal .section-subheading {
  margin-bottom: 28px;
}

.modal .form-group {
  margin-bottom: 0;
}

.modal .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.modal .friction-reducer {
  text-align: center;
  margin-top: 12px;
}

/* Modal success state */
.modal-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.modal-success.show {
  display: block;
}

.modal-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.modal-success h2 {
  color: var(--success);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.modal-success p {
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-form.hidden {
  display: none;
}

/* --- Final CTA Hero --- */
.final-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.final-cta .hero-bg {
  position: absolute;
  inset: 0;
}

.final-cta .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta .hero-overlay {
  background: rgba(10, 10, 10, 0.75);
}

.final-cta .hero-content {
  text-align: center;
  max-width: 700px;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
}

.final-cta p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  }
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo-img {
  height: 52px;
}

.footer-tagline {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
}

.footer-col h4 {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--red);
  margin-top: 4px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dark);
}
.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--white);
}

/* --- Section Divider Utility --- */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

.section-centered .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* --- Friction Strip Utility --- */
.friction-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
  margin-top: 20px;
}

.friction-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.friction-strip-item i {
  font-size: 0.9rem;
}

.cta-banner .friction-strip-item {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Hero V2 (Homepage) --- */
.hero-v2 .hero-content {
  text-align: left;
  max-width: var(--container);
  padding-left: 24px;
  padding-right: 24px;
}

.hero-accent-bar {
  width: 48px;
  height: 4px;
  background: var(--red);
  margin-bottom: 16px;
}

.hero-v2 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
}

.eyebrow-line {
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-v2 h1 {
  margin-bottom: 24px;
  line-height: 0.95;
}

.hero-v2 h1 .hero-line-accent {
  display: block;
  color: var(--red);
  font-size: 0.85em;
}

.hero-v2 .section-subheading {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(240, 237, 232, 0.75);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.trust-badge i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* Hero CTA block */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-cta-guarantee {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-cta-guarantee i {
  color: var(--gold);
  margin-right: 2px;
}

.scroll-indicator-v2 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}

.scroll-indicator-v2 .scroll-label {
  font-family: var(--font-sub);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-indicator-v2 i {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- Proof Strip Marquee --- */
.proof-strip-marquee {
  padding: 16px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.proof-strip-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 0 20px;
}

.marquee-item .stars {
  color: var(--gold);
}

.marquee-dot {
  color: var(--red);
  font-size: 0.5rem;
  flex-shrink: 0;
}

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

/* --- Photo Collage --- */
.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.photo-collage img:hover {
  transform: scale(1.03);
}

.photo-collage img:first-child {
  grid-row: 1 / 3;
  min-height: 300px;
}

.photo-collage img:nth-child(2),
.photo-collage img:nth-child(3) {
  min-height: 145px;
}

.collage-stat-callout {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  text-align: center;
  z-index: 2;
}

.collage-stat-callout .stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}

.collage-stat-callout .stat-text {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .photo-collage {
    grid-template-columns: 1fr 1fr;
  }
  .photo-collage img:first-child {
    min-height: 200px;
  }
}

/* --- Program Cards V2 --- */
.program-card-v2 {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: all var(--transition);
}

.program-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.program-card-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card-v2:hover img {
  transform: scale(1.08);
}

.program-card-v2 .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.program-card-v2-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 60%, transparent 100%);
  z-index: 1;
}

.program-card-v2-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--white);
}

.program-card-v2-overlay p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 0;
}

.program-card-v2-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all 0.3s ease;
  z-index: 2;
  background: rgba(10, 10, 10, 0.5);
}

.program-card-v2:hover .program-card-v2-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- CTA Banner V2 --- */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.btn-inverted {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--white);
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-inverted:hover {
  background: var(--text-primary);
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* --- Why Section V2 (Split Layout) --- */
.why-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
}

.why-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% - 32px);
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 420'%3E%3Cpolygon points='60,412 64,152 60,132 56,152' fill='white'/%3E%3Crect x='12' y='138' width='96' height='14' rx='7' fill='white'/%3E%3Crect x='53' y='50' width='14' height='88' rx='5' fill='white'/%3E%3Cellipse cx='60' cy='38' rx='20' ry='14' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 85%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .why-split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.why-stat-block .big-stat {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--red);
  line-height: 0.85;
  margin-bottom: 4px;
}

.why-stat-block .big-stat-label {
  font-family: var(--font-sub);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.why-stat-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}

.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}

.why-item-text h4 {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  color: var(--white);
}

.why-item-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Testimonials V2 --- */
.testimonial-featured {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  margin-bottom: 32px;
}

.testimonial-featured::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 8rem;
  color: var(--red);
  opacity: 0.12;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-featured .testimonial-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 24px;
  font-style: italic;
  color: var(--text-primary);
}

.testimonial-featured .testimonial-author {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author-line {
  width: 24px;
  height: 2px;
  background: var(--red);
}

.testimonials-supporting {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-supporting {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card-v2 {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testimonial-card-v2 .testimonial-stars {
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card-v2 .testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card-v2 .testimonial-author {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* --- Location V2 --- */
.location-section-heading {
  margin-bottom: 40px;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-row {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-info-row:last-child {
  border-bottom: none;
}

.contact-info-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  min-width: 80px;
  flex-shrink: 0;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--white);
}

.contact-info-value a:hover {
  color: var(--red);
}

/* --- Final CTA V2 --- */
.final-cta-logo {
  height: 56px;
  width: auto;
  margin: 0 auto 28px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.final-cta .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* --- Footer V2 Enhancements --- */
.footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark), transparent);
}

.footer-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-cta-strip p {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.footer-cta-strip .btn-primary {
  padding: 12px 28px;
  font-size: 0.85rem;
}

/* --- Nav Pill Mobile Adjustments --- */
@media (max-width: 1023px) {
  .nav-scrolled {
    max-width: 100%;
    margin: 8px 12px 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 30px;
  }
}

/* --- GSAP Animation Classes ---
   Only hide elements when GSAP is ready to animate them.
   Without .gsap-ready on <html>, content stays visible as a fallback. */
.gsap-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-ready .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-ready .reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.gsap-ready .reveal-scale {
  opacity: 0;
  transform: scale(0.97);
}

.gsap-ready .section-divider {
  transform: scaleX(0);
  transform-origin: left center;
}

/* --- Responsive --- */
@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  :root {
    --nav-height: 70px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-pad: 48px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-page {
    min-height: 40vh;
  }

  .photo-mosaic img {
    height: 160px;
  }

  .two-col {
    gap: 32px;
  }

  .two-col.reverse-mobile {
    direction: ltr;
  }

  .two-col.reverse-mobile > :first-child {
    order: 2;
  }

  .two-col.reverse-mobile > :last-child {
    order: 1;
  }
}

@media (max-width: 374px) {
  html {
    font-size: 14px;
  }
}

/* --- Location Pages --- */
.drive-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204, 0, 0, 0.15);
  border: 1px solid var(--red);
  color: var(--text-primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.drive-time-badge i {
  color: var(--red);
}

.directions-card {
  background: var(--surface);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.directions-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.directions-step {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.directions-step:last-child {
  margin-bottom: 0;
}

.directions-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
}

.directions-step-text {
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 4px;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.directions-link:hover {
  color: #CC0000;
}

.programs-list-compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}

.programs-list-compact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--elevated);
  border: 1px solid #222;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.25s, background 0.25s;
}

.programs-list-compact a:hover {
  border-color: var(--red);
  background: rgba(204, 0, 0, 0.06);
}

.programs-list-compact a i {
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.location-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .location-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .location-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-hub-card {
  background: var(--surface);
  border: 1px solid #222;
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.25s, transform 0.2s;
}

.location-hub-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.location-hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.location-hub-card .hub-card-distance {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-hub-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.location-hub-card .btn-ghost {
  font-size: 0.85rem;
  padding: 8px 20px;
}

.nearby-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.nearby-locations a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid #222;
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: border-color 0.25s;
}

.nearby-locations a:hover {
  border-color: var(--red);
}

.nearby-locations a i {
  color: var(--red);
  font-size: 0.8rem;
}

/* --- Print --- */
@media print {
  .nav, .modal, .modal-backdrop, .cta-trigger, .scroll-indicator {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* ============================================================
   WARRIOR BJJ — DESIGN UPGRADES
   ============================================================ */

/* --- Word Split Animation --- */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
  line-height: 1.05;
}

.word {
  display: inline-block;
}

/* --- Hero CTA Pulse Glow --- */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 18px rgba(204, 0, 0, 0.45), 0 0 36px rgba(204, 0, 0, 0.12);
  }
  50% {
    box-shadow: 0 0 32px rgba(204, 0, 0, 0.7), 0 0 64px rgba(204, 0, 0, 0.28);
  }
}

.btn-pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* --- Marquee Edge Fade --- */
.proof-strip-marquee::before,
.proof-strip-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.proof-strip-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-surface) 0%, transparent 100%);
}

.proof-strip-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-surface) 0%, transparent 100%);
}

/* --- Program Card Free Trial CTA (hover reveal) --- */
.program-card-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  pointer-events: auto;
}

.program-card-v2:hover .program-card-v2-cta {
  opacity: 1;
  transform: translateY(0);
}

.program-card-v2-cta:hover {
  background: var(--red-hover) !important;
  color: var(--white) !important;
}

/* --- Modal Trust Row --- */
.modal-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}

.modal-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.modal-trust-item .fa-star {
  color: var(--gold);
  font-size: 0.65rem;
}

.modal-trust-item .fa-lock,
.modal-trust-item .fa-check-circle {
  color: var(--success);
  font-size: 0.7rem;
}

/* --- Big Stat Ghost Number --- */
.why-stat-block {
  position: relative;
}

.why-stat-block,
.why-items {
  position: relative;
  z-index: 1;
}

.why-stat-block > * {
  position: relative;
  z-index: 1;
}

.big-stat-ghost {
  position: absolute;
  top: -50px;
  left: -25px;
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 16rem);
  color: var(--red);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.01em;
}

/* --- Sticky Mobile CTA Bar --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid var(--red);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 890;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .sticky-cta-bar {
    display: flex;
  }
}

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

.sticky-cta-text {
  font-family: var(--font-sub);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 1;
  min-width: 0;
  line-height: 1.3;
}

.sticky-cta-text strong {
  color: var(--white);
  font-weight: 700;
}

.sticky-cta-text i {
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.sticky-cta-btn {
  padding: 10px 20px !important;
  font-size: 0.8rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Form Next-Step Hint (below submit button) --- */
.form-next-step {
  margin-top: 14px;
  text-align: center;
}

.form-next-step-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.form-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.form-step-active {
  color: var(--text-primary);
}

.form-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--border-subtle);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.form-step-active .form-step-num {
  background: var(--red);
  color: var(--white);
}

.form-step-arrow {
  color: var(--text-dark);
  font-size: 0.6rem;
}

.form-next-step > p {
  font-size: 0.75rem;
  color: var(--text-dark);
  line-height: 1.4;
}

/* --- Modal Success: 2-Step Completion State --- */
.success-steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}

.success-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.success-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 700;
}

.success-step-done .success-step-circle {
  background: var(--success);
  color: var(--white);
  font-size: 1.1rem;
}

.success-step-next .success-step-circle {
  background: var(--red);
  color: var(--white);
}

.success-step-text {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.success-step-done .success-step-text {
  color: var(--success);
}

.success-step-next .success-step-text {
  color: var(--red);
}

.success-step-connector {
  width: 48px;
  height: 2px;
  background: var(--border-subtle);
  margin: 0 8px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.modal-success h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--white);
}

.success-book-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 20px 0 0;
}

.success-fallback {
  font-size: 0.75rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-top: 14px;
  text-align: center;
}

.success-fallback a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.success-fallback a:hover {
  color: var(--red);
}

/* --- Reveal Clip (horizontal wipe) --- */
.gsap-ready .reveal-clip {
  clip-path: inset(0 100% 0 0);
}