/* ==========================================================================
   10th Planet Mount Pleasant — Master Stylesheet
   Pure CSS3 with custom properties, responsive grid, and dark theme
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Barlow+Condensed:wght@400;600;700&display=swap');

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
  /* Colors */
  --black: #0A0A0A;
  --charcoal: #141414;
  --dark-gray: #1E1E1E;
  --mid-gray: #2C2C2C;
  --red: #D32F2F;
  --red-bright: #FF3333;
  --red-glow: rgba(211, 47, 47, 0.4);
  --white: #F5F5F5;
  --white-dim: #A0A0A0;
  --gold: #C9A84C;

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --font-accent: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1200px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-red-glow: 0 4px 30px rgba(211, 47, 47, 0.3);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

.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;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400; /* Bebas Neue only has 400 */
  line-height: 1.05;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 { font-size: clamp(60px, 8vw, 100px); }
h2 { font-size: clamp(40px, 5vw, 80px); }
h3 { font-size: clamp(32px, 3.5vw, 64px); }
h4 { font-size: clamp(24px, 2.5vw, 48px); }
h5 { font-size: clamp(20px, 2vw, 36px); }

p {
  color: var(--white-dim);
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}

.red-underline {
  position: relative;
  display: inline;
}

.red-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
  box-shadow: var(--shadow-red-glow);
}

.btn-primary:active {
  transform: scale(0.98);
}

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

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

.btn-link {
  padding: 0;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Navigation
   ========================================================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-base);
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

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

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

.nav-logo img {
  height: 100px;
  width: auto;
  transition: height var(--transition-base);
}

.site-nav.scrolled .nav-logo img {
  height: 70px;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 3px;
}

.nav-logo-sub {
  font-family: var(--font-accent);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

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

.nav-links a {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

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

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  font-size: 14px;
  padding: 12px 28px;
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-nav-overlay.active .mobile-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger mobile nav links */
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-links a:nth-child(7) { transition-delay: 0.35s; }

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

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

.hero-short {
  min-height: 50vh;
}

.hero-shorter {
  min-height: 40vh;
  padding-top: 100px;
}

/* Default pseudo overlays for inner-page heroes (no full-bleed image) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(44, 44, 44, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* CSS Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

/* -------------------------------------------------------
   Full-bleed hero — home page
   The photo IS the hero. Edge to edge. No boxes.
   ------------------------------------------------------- */
.hero-fullbleed {
  background: var(--black);
}

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

.hero-fullbleed .hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Anchor toward the action (center of the gym, slightly above center) */
  object-position: center 40%;
}

/* Left-heavy gradient: text side dark, image side breathes */
.hero-fullbleed .hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Left side: strong overlay for text legibility */
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.6) 45%, rgba(10, 10, 10, 0.25) 75%, rgba(10, 10, 10, 0.35) 100%),
    /* Bottom fade into next section */
    linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.8) 100%),
    /* Top fade for nav readability */
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, transparent 20%);
  pointer-events: none;
}

/* Override default hero pseudo-elements — the image overlay handles everything */
.hero-fullbleed::before {
  background: none;
}

.hero-fullbleed .hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(150px, 20vw, 300px);
  color: var(--white);
  opacity: 0.03;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--white-dim);
  margin-top: 16px;
  margin-bottom: 32px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-indicator span {
  font-family: var(--font-accent);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-dim);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--white-dim);
  border-bottom: 2px solid var(--white-dim);
  transform: rotate(45deg);
  animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(8px); }
  60% { transform: rotate(45deg) translateY(4px); }
}

/* Hero image */
.hero-image {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */
section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
}

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

/* Ghost background text */
.section-ghost-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 250px);
  color: var(--white);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  margin-top: 8px;
}

/* ==========================================================================
   Pain Points Section (Home)
   ========================================================================== */
.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.pain-card {
  background: var(--dark-gray);
  padding: 36px 32px;
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pain-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(211, 47, 47, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 20px;
}

.pain-card h4 {
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--white);
}

.pain-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Bridge / Transition text */
.bridge-text {
  text-align: center;
  margin: 40px 0;
  position: relative;
  z-index: 1;
}

.bridge-text .lead-in {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 12px;
}

/* ==========================================================================
   Program Cards (Home Preview)
   ========================================================================== */
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.program-card {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.program-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.program-card:hover::before {
  opacity: 1;
}

.program-card-bg {
  position: absolute;
  inset: 0;
}

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

.program-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 10, 0.85) 100%);
}

.program-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 1;
}

.program-card-content h4 {
  font-size: 36px;
  margin-bottom: 8px;
}

.program-card-content p {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.program-card-content .btn-link {
  color: var(--red);
}

/* ==========================================================================
   Testimonials / Social Proof
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-gray);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white-dim);
}

.google-badge svg {
  width: 16px;
  height: 16px;
}

.social-proof-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
  color: var(--white-dim);
  margin-top: 8px;
}

.social-proof-line .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ==========================================================================
   How It Works (Steps)
   ========================================================================== */
.steps-section {
  position: relative;
}

/* Diagonal grid texture */
.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(45deg, var(--white) 1px, transparent 1px),
    linear-gradient(-45deg, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Brand watermark — arc reactor logo embedded in section background */
.brand-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: blur(1px) saturate(0.3);
}

.brand-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

/* Connecting dotted line */
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed var(--red);
  opacity: 0.3;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
}

.step h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  max-width: 300px;
  margin: 0 auto;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
  border-left: 3px solid transparent;
  padding-left: 16px;
  margin-left: -16px;
}

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

.faq-item.active .faq-question {
  color: var(--red);
  border-left-color: var(--red);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--transition-base);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 16px;
}

.faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
}

/* ==========================================================================
   CTA Blocks
   ========================================================================== */
.cta-block {
  text-align: center;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.cta-block .lead-in {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 12px;
}

.cta-block h2 {
  margin-bottom: 24px;
}

.cta-social-proof {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Urgency text */
.urgency-text {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  animation: subtlePulse 2s ease-in-out infinite;
  margin-top: 12px;
}

@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ==========================================================================
   Programs Page — Detail Sections
   ========================================================================== */
.program-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.program-detail.reverse {
  direction: rtl;
}

.program-detail.reverse > * {
  direction: ltr;
}

.program-image {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.4) 100%);
  pointer-events: none;
}

.program-tag {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: inline-block;
}

.program-subheadline {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.program-body {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.benefits-list {
  margin-bottom: 32px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--white-dim);
}

.benefits-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: rgba(211, 47, 47, 0.15);
  border-radius: 50%;
  position: relative;
}

.benefit-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--red);
}

/* ==========================================================================
   Schedule Page
   ========================================================================== */
.schedule-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--mid-gray);
  color: var(--white-dim);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--red);
  color: var(--white);
  background: rgba(211, 47, 47, 0.1);
}

/* Schedule Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: 120px repeat(7, 1fr);
  gap: 2px;
  background: var(--mid-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.schedule-header {
  background: var(--dark-gray);
  padding: 16px 8px;
  text-align: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}

.schedule-time-label {
  background: var(--charcoal);
  padding: 20px 12px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100px;
}

.schedule-cell {
  background: var(--charcoal);
  padding: 8px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.class-block {
  width: 100%;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  transition: transform var(--transition-fast);
}

.class-block:hover {
  transform: scale(1.05);
}

.class-block.jiu-jitsu {
  background: rgba(211, 47, 47, 0.2);
  border: 1px solid rgba(211, 47, 47, 0.4);
  color: var(--white);
}

.class-block.boxing {
  background: rgba(41, 98, 255, 0.15);
  border: 1px solid rgba(41, 98, 255, 0.3);
  color: #93B5FF;
}

.class-block.wrestling {
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.3);
  color: #81C784;
}

.class-block.kids-jiu-jitsu {
  background: rgba(255, 152, 0, 0.15);
  border: 1px solid rgba(255, 152, 0, 0.35);
  color: #FFB74D;
}

.class-block-name {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.class-block-time {
  font-size: 10px;
  opacity: 0.8;
  display: block;
}

.class-block-badge {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 2px;
  margin-top: 4px;
}

.schedule-note {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--white-dim);
}

.schedule-note a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-gray);
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(160, 160, 160, 0.5);
}

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

.form-select option {
  background: var(--dark-gray);
  color: var(--white);
}

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

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

.form-error {
  font-size: 12px;
  color: var(--red-bright);
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-expand-toggle {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.form-expand-toggle:hover {
  color: var(--red-bright);
}

.form-expanded-fields {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.form-expanded-fields.visible {
  max-height: 500px;
}

/* Contact info sidebar */
.contact-info-section h4 {
  font-size: 22px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-info-label {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--white);
}

.map-embed {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--red);
  color: var(--white);
}

/* ==========================================================================
   Instructors Page
   ========================================================================== */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.instructor-card {
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base);
}

.instructor-card:hover {
  transform: translateY(-4px);
}

.instructor-image {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  background: var(--dark-gray);
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.instructor-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--dark-gray) 100%);
  pointer-events: none;
}

.instructor-info {
  padding: 32px;
}

.instructor-name {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 4px;
}

.instructor-title {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.instructor-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.instructor-tag {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(211, 47, 47, 0.3);
  border-radius: var(--radius-sm);
  color: var(--red);
}

/* Team Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.value-item {
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(211, 47, 47, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
}

.value-item h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.value-item p {
  font-size: 15px;
  max-width: 300px;
  margin: 0 auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--black);
  padding: 80px 0 0;
  border-top: 1px solid var(--mid-gray);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 3px;
}

.footer-logo-sub {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-tagline {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 24px;
  max-width: 300px;
}

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

.footer-heading {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--white-dim);
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  font-size: 14px;
  color: var(--white-dim);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--mid-gray);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--white-dim);
}

.footer-legal {
  margin-top: 8px;
  font-size: 13px;
  color: var(--white-dim);
}

.footer-legal a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-legal span {
  margin: 0 8px;
  opacity: 0.4;
}

/* ==========================================================================
   Legal Pages (Privacy Policy, Terms of Service)
   ========================================================================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 15px;
  color: rgba(245, 245, 245, 0.85);
}

.legal-meta {
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white-dim);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mid-gray);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content h3 {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: rgba(245, 245, 245, 0.8);
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.legal-content a:hover {
  color: var(--red-bright);
}

.legal-content strong {
  color: var(--white);
}

/* ==========================================================================
   Lead Modal
   ========================================================================== */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease, background 0.35s ease, visibility 0s 0.35s;
}

.lead-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease, background 0.35s ease, visibility 0s 0s;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.lead-modal-overlay.active .lead-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Red accent bar at the top */
.lead-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-bright), var(--red));
}

/* Subtle radial glow behind the modal card */
.lead-modal::after {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(211, 47, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lead-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);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white-dim);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.lead-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: rotate(90deg);
}

.lead-modal-body {
  position: relative;
  z-index: 1;
  padding: 40px 36px 36px;
}

.lead-modal-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  opacity: 0.15;
}

.lead-modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lead-modal-title {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.lead-modal-subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white-dim);
  margin-bottom: 28px;
}

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

.lead-modal-field {
  margin-bottom: 16px;
}

.lead-modal-field label {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 6px;
}

.lead-modal-field input,
.lead-modal-field select {
  width: 100%;
  padding: 13px 14px;
  background: var(--dark-gray);
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 14px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lead-modal-field input:focus,
.lead-modal-field select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
  outline: none;
}

.lead-modal-field input::placeholder {
  color: rgba(160, 160, 160, 0.4);
}

.lead-modal-field input.error,
.lead-modal-field select.error {
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.15);
}

.lead-modal-field .field-error {
  font-size: 12px;
  color: var(--red-bright);
  margin-top: 4px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, height 0.2s ease;
}

.lead-modal-field .field-error.visible {
  opacity: 1;
  height: 16px;
}

.lead-modal-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23A0A0A0' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.lead-modal-field select option {
  background: var(--dark-gray);
  color: var(--white);
}

.lead-modal-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.lead-modal-submit:hover {
  transform: scale(1.02);
  filter: brightness(1.15);
  box-shadow: var(--shadow-red-glow);
}

.lead-modal-submit:active {
  transform: scale(0.98);
}

/* Shine sweep on hover */
.lead-modal-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: left 0.5s ease;
}

.lead-modal-submit:hover::after {
  left: 120%;
}

.lead-modal-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--white-dim);
}

.lead-modal-proof .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.lead-modal-legal {
  text-align: center;
  font-size: 11px;
  color: rgba(160, 160, 160, 0.6);
  margin-top: 12px;
  line-height: 1.5;
}

.lead-modal-legal a {
  color: rgba(160, 160, 160, 0.8);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.lead-modal-legal a:hover {
  color: var(--white);
}

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

.lead-modal-success.visible {
  display: block;
}

.lead-modal-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.15);
  border: 2px solid rgba(46, 125, 50, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #81C784;
}

.lead-modal-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.lead-modal-success p {
  font-size: 15px;
  color: var(--white-dim);
  max-width: 320px;
  margin: 0 auto;
}

/* Responsive: small screens */
@media (max-width: 600px) {
  .lead-modal-body {
    padding: 32px 20px 28px;
  }

  .lead-modal-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lead-modal-title {
    font-size: 28px;
  }
}

/* ==========================================================================
   Mobile CTA Bar
   ========================================================================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  z-index: 998;
  border-top: 1px solid var(--mid-gray);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-cta-bar .btn {
  font-size: 13px;
  padding: 12px 20px;
  flex: 1;
  justify-content: center;
}

.mobile-cta-phone {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--white-dim);
  white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablet — 900px */
@media (max-width: 900px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Full-bleed hero: strengthen overlay on mobile for text legibility */
  .hero-fullbleed .hero-bg-image::after {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 40%, rgba(10, 10, 10, 0.3) 60%, rgba(10, 10, 10, 0.8) 100%);
  }

  .pain-cards {
    grid-template-columns: 1fr;
  }

  .program-cards {
    grid-template-columns: 1fr;
  }

  .program-card {
    height: 380px;
  }

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

  /* Mobile horizontal scroll for testimonials */
  .testimonial-scroll-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonial-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }

  .testimonial-scroll-wrapper .testimonial-grid {
    display: flex;
    gap: 16px;
    padding-bottom: 8px;
  }

  .testimonial-scroll-wrapper .testimonial-card {
    min-width: 300px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-row::before {
    display: none;
  }

  .program-detail {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-detail.reverse {
    direction: ltr;
  }

  .schedule-grid {
    grid-template-columns: 80px repeat(7, 1fr);
    font-size: 10px;
    overflow-x: auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* Extra bottom padding to avoid mobile CTA bar overlap */
  .site-footer {
    padding-bottom: 80px;
  }
}

/* Mobile — 600px */
@media (max-width: 600px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 16px;
  }

  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }

  .btn {
    font-size: 15px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 90vh;
    padding-top: 80px;
  }

  .hero-short {
    min-height: 50vh;
  }

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

  .hero-bg-text {
    font-size: 80px;
  }

  .section-ghost-text {
    font-size: 60px;
  }

  .schedule-grid {
    min-width: 700px;
  }

  .schedule-filters {
    justify-content: center;
  }

  .program-card {
    height: 320px;
  }

  .instructor-image {
    height: 300px;
  }
}
