/* =====================================================
   10TH PLANET VAN NUYS — Master Stylesheet
   Theme: Black + #a7a199 (buttons) + #d6cf3a (poster yellow)
   ===================================================== */

:root {
  /* === BRAND PALETTE (per official style guide) === */
  --black: #0B0B0B;          /* Core Black */
  --black-2: #1A1A1A;        /* Graphite */
  --black-3: #2A2A2A;        /* Smoke Gray */
  --white: #ffffff;
  --off-white: #F5F3EC;      /* Off White */
  --gray: #B5B3AB;
  --gray-dark: #5A5854;
  --accent: #D6C63B;         /* Planet Yellow — signature accent */
  --accent-2: #E5E94A;       /* CTA Volt Yellow — key conversion moments */
  /* === CTA BUTTON SYSTEM === */
  --btn: #D6C63B;            /* Primary CTA = Planet Yellow */
  --btn-hover: #E5E94A;      /* Volt Yellow on hover */
  --btn-text: #0B0B0B;       /* dark text on yellow */
  /* === SHARED TOKENS === */
  --border: rgba(245,243,236,0.12);
  --radius: 6px;
  --max: 1280px;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  /* === BRAND TYPOGRAPHY === */
  --font-heading: 'Anton', 'Bebas Neue', 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;             /* Anton is naturally heavy; 400 = display weight */
  letter-spacing: -0.005em;     /* tight tracking per brand */
  line-height: 1.05;            /* compact, athletic */
  text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.7rem); }
h4 { letter-spacing: 0; }
p { color: var(--gray); margin-bottom: 1rem; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; position: relative; }
.section-tight { padding: 60px 0; }

/* ======================= NAV ======================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { background: rgba(10,10,10,0.92); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--white);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a::before {
  content: '▾'; margin-left: 6px; font-size: 0.8em; color: var(--accent);
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: rgba(10,10,10,0.97);
  border: 1px solid var(--border);
  padding: 8px 0;
  opacity: 0; transform: translateY(8px) scale(0.98); pointer-events: none;
  transition: all .25s var(--ease);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.dropdown-menu a {
  display: block; padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.9rem; letter-spacing: 0.06em;
}
.dropdown-menu a:hover { background: rgba(214,207,58,0.1); color: var(--accent); }

.mobile-toggle {
  display: none; background: none; border: 0; color: var(--white);
  cursor: pointer; padding: 8px; font-size: 1.5rem;
}

/* Nav "Try A Free Class" CTA — Primary brand yellow per style guide */
.nav-cta {
  background: var(--accent) !important;
  color: var(--btn-text) !important;
  padding: 11px 22px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  box-shadow: 0 6px 16px rgba(214,198,59,0.25);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--accent) !important;
  color: var(--btn-text) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(214,198,59,0.45), 0 0 16px rgba(214,198,59,0.3);
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0B0B0B;                       /* fully opaque — no bleed-through */
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 8px 20px 18px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 24px 40px rgba(0,0,0,0.55);
    gap: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 200;
  }
  .nav-links.open a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color .2s ease, padding-left .2s ease;
  }
  .nav-links.open a:hover,
  .nav-links.open a.active {
    color: var(--accent);
    padding-left: 8px;
  }
  .nav-links.open a::after { display: none; }
  /* Programs parent — keep the dropdown affordance on mobile */
  .nav-links.open .nav-dropdown > a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100%;
  }
  .nav-links.open .nav-dropdown > a::before {
    /* kill the desktop ▾ arrow on mobile */
    content: none !important;
    display: none !important;
  }
  .nav-links.open .nav-dropdown > a::after {
    content: '\2212' !important;       /* unicode minus sign — bolder than hyphen */
    display: inline-block !important;
    position: static !important;
    margin-left: auto !important;       /* push to the far right of the flex row */
    padding-left: 18px;
    width: auto !important; height: auto !important;
    background: transparent !important;
    color: var(--accent) !important;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    transition: transform .25s ease;
    transform: rotate(0deg);
  }
  .nav-links.open .nav-dropdown.open > a::after {
    transform: rotate(90deg);
  }
  .dropdown-menu {
    position: static; opacity: 1; transform: none; pointer-events: auto;
    background: rgba(255,255,255,0.03);
    border: 0; padding: 4px 0 4px 14px;
    box-shadow: none;
    margin: 0 0 4px;
    border-left: 2px solid rgba(214,198,59,0.4);
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-links.open .dropdown-menu a {
    padding: 10px 8px;
    font-size: 0.85rem;
    border-bottom: 0;
    color: var(--gray);
  }
  .nav-links.open .dropdown-menu a:hover { color: var(--accent); padding-left: 14px; }
  /* CTA — make it stand out at the bottom */
  .nav-links.open .nav-cta {
    width: 100%; text-align: center;
    margin-top: 14px;
    padding: 14px 22px !important;
    font-size: 0.85rem !important;
    border-bottom: 0 !important;
    background: var(--btn) !important;
    color: var(--btn-text) !important;
  }
  .nav-links.open .nav-cta:hover { padding-left: 22px !important; color: var(--btn-text) !important; }
}

/* ======================= BUTTONS ======================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--btn-text);
  font-family: 'Inter', 'Manrope', sans-serif;  /* UI weight, brand spec */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 14px 28px;
  border: 0; cursor: pointer;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  position: relative;
  box-shadow: 0 6px 18px rgba(214,198,59,0.22);
}
.btn:hover {
  background: var(--accent);
  color: var(--btn-text);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(214,198,59,0.45), 0 0 18px rgba(214,198,59,0.3);
}
/* Secondary CTA — dark gray, white text */
.btn-outline {
  background: var(--black-3); color: var(--white);
  border: 1px solid var(--border);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--black-2); color: var(--accent); border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(214,198,59,0.18);
}
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { background: var(--accent); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* ======================= HERO ======================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 60px;
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5) saturate(1.05);
  transform: scale(1.05);
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 30% 40%, rgba(214,207,58,0.08), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading); letter-spacing: 0.3em;
  font-size: 0.85rem; color: var(--accent);
  padding: 6px 16px;
  border: 1px solid rgba(214,207,58,0.4);
  border-radius: 999px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero h1 {
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
}
.hero h1 .accent { color: var(--accent); }
.hero .hero-sub {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--off-white);
  margin-top: 16px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}
.hero .hero-sub .accent { color: var(--accent); }
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--off-white);
  max-width: 720px; margin: 22px auto 32px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----- Hero: LEFT-ALIGNED VIDEO VARIANT ----- */
.hero.hero-left {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  padding: 140px 24px 80px;
  min-height: 100vh;
}
.hero.hero-left .hero-media {
  background: var(--black);
}
.hero.hero-left .hero-media video,
.hero.hero-left .hero-media img {
  filter: brightness(0.78) saturate(1.05) contrast(1.03);
  animation: none;
  transform: none;
  object-position: 50% 25%;
}
.hero.hero-left .hero-overlay {
  background:
    linear-gradient(90deg, rgba(11,11,11,0.7) 0%, rgba(11,11,11,0.35) 45%, rgba(11,11,11,0.1) 70%, rgba(11,11,11,0.25) 100%),
    linear-gradient(180deg, rgba(11,11,11,0.15) 0%, rgba(11,11,11,0.5) 100%);
}
.hero.hero-left .hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(8px, 4vw, 56px);
  padding-right: 24px;
}
.hero.hero-left .hero-inner > * { max-width: 880px; }

.hero-flag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-heading); letter-spacing: 0.28em;
  font-size: 0.8rem; color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-flag-bar {
  display: inline-block; width: 36px; height: 2px;
  background: var(--accent);
}
.hero-kicker {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--off-white);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  margin: 0 0 14px;
  opacity: 0.92;
}
.hero.hero-left h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 22px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
}
.hero.hero-left p.lead {
  margin: 0 0 32px;
  max-width: 580px;
  color: rgba(245,243,236,0.88);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
}
.hero.hero-left .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 48px;
}
.hero.hero-left .btn .arrow {
  display: inline-block; margin-left: 8px;
  transition: transform .3s var(--ease);
}
.hero.hero-left .btn:hover .arrow { transform: translateX(4px); }

/* Hero tag row (location, phone, rating) */
.hero-tags {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(245,243,236,0.14);
  max-width: 760px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: var(--off-white);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s var(--ease);
}
.hero-tag svg { color: var(--accent); flex-shrink: 0; }
a.hero-tag { cursor: pointer; }
a.hero-tag:hover { color: var(--accent); }

/* Hero responsive */
@media (max-width: 880px) {
  .hero.hero-left { padding: 130px 18px 70px; min-height: 92vh; }
  .hero.hero-left .hero-inner { padding-left: 8px; padding-right: 8px; }
  .hero.hero-left h1 { font-size: clamp(2.4rem, 9vw, 3.8rem); }
  .hero-tags { gap: 10px 20px; }
}
@media (max-width: 540px) {
  .hero.hero-left { padding: 120px 16px 60px; }
  .hero.hero-left h1 { font-size: clamp(2.2rem, 11vw, 3rem); line-height: 1; }
  .hero.hero-left p.lead { font-size: 0.98rem; }
  .hero.hero-left .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero.hero-left .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-tags { gap: 12px 18px; font-size: 0.78rem; }
  .hero-tag { font-size: 0.72rem; white-space: normal; }
  .hero-flag { font-size: 0.72rem; gap: 10px; }
  .hero-flag-bar { width: 24px; }
}

/* Page hero (for inner pages) */
.page-hero {
  position: relative;
  padding: 220px 24px 120px;       /* more vertical room so faces aren't cropped */
  min-height: 520px;                 /* desktop floor; keeps images framed properly */
  display: flex; align-items: center;
  text-align: center;
  background: var(--black-2);
  overflow: hidden;
}
.page-hero-media {
  position: absolute; inset: 0;
  background-position: 50% 30%;     /* anchor to upper portion so faces stay visible */
  background-size: cover;
  background-repeat: no-repeat;
  filter: brightness(0.55);
  transform: scale(1.02);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.65) 50%, rgba(11,11,11,0.8) 100%);
  z-index: 1;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; width: 100%; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero .crumb { color: var(--accent); font-family: var(--font-heading); letter-spacing: 0.2em; font-size: 0.85rem; margin-bottom: 18px; }
@media (max-width: 880px) {
  .page-hero { padding: 160px 18px 80px; min-height: 420px; }
}
@media (max-width: 540px) {
  .page-hero { padding: 130px 16px 60px; min-height: 360px; }
  .page-hero-media { background-position: 50% 25%; }
}

/* ===== Uniform "poster" hero — used by program pages + instructors (no imagery) ===== */
.poster-hero {
  position: relative;
  padding: 200px 24px 110px;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
}
/* Giant outlined "poster word" peeking up from the bottom edge */
.poster-hero-mark {
  position: absolute;
  left: 50%;
  bottom: -0.14em;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(7.5rem, 24vw, 22rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(214,198,59,0.22);
  text-stroke: 1.5px rgba(214,198,59,0.22);
  pointer-events: none;
  user-select: none;
  text-transform: uppercase;
  z-index: 0;
}
.poster-hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 55% at 50% 32%, rgba(214,198,59,0.11), transparent 65%),
    linear-gradient(180deg, transparent 38%, rgba(11,11,11,0.55) 90%, var(--black) 100%);
  z-index: 1; pointer-events: none;
}
.poster-hero-inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto; width: 100%;
}
.poster-hero .hero-flag {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.poster-hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 30px rgba(0,0,0,0.45);
  margin-bottom: 22px;
}
.poster-hero-rule {
  display: block;
  width: 64px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 22px;
}
.poster-hero-sub {
  color: var(--off-white);
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}
@media (max-width: 880px) {
  .poster-hero { padding: 150px 18px 90px; min-height: 460px; }
  .poster-hero-mark { font-size: clamp(6rem, 26vw, 14rem); }
}
@media (max-width: 540px) {
  .poster-hero { padding: 130px 16px 80px; min-height: 380px; }
  .poster-hero-mark { font-size: clamp(4.5rem, 28vw, 9rem); -webkit-text-stroke-width: 1px; }
  .poster-hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
}

/* ===== About page: editorial split hero ===== */
.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: stretch;
  background: var(--black);
  overflow: hidden;
  padding: 150px clamp(16px, 4vw, 56px) 0;
}
/* Image panel anchored to the right, blended into the black on the left */
.about-hero-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 0;
}
.about-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: brightness(0.62) saturate(1.05) contrast(1.03);
  /* feather the left edge + bottom into the page so text/stats stay legible */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 42%),
    linear-gradient(180deg, #000 60%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 42%),
    linear-gradient(180deg, #000 60%, transparent 100%);
  mask-composite: intersect;
}
/* Signature planet-yellow glow + a thin accent rule down the left */
.about-hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 30%, rgba(214,198,59,0.16), transparent 60%),
    linear-gradient(90deg, var(--black) 30%, transparent 62%);
}
.about-hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}
.about-hero-lede { max-width: 620px; margin-top: auto; }
.about-hero-lede .hero-flag { margin-bottom: 16px; }
.about-hero-title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.86;
  margin: 4px 0 22px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
}
/* Poster-style outlined second word */
.about-hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-stroke: 2px var(--accent);
  text-shadow: none;
}
.about-hero-text {
  max-width: 520px;
  color: rgba(245,243,236,0.88);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
  margin: 0 0 30px;
}
.about-hero .hero-ctas { justify-content: flex-start; }
.about-hero .btn .arrow { display: inline-block; margin-left: 8px; transition: transform .3s var(--ease); }
.about-hero .btn:hover .arrow { transform: translateX(4px); }
/* Stat strip pinned to the foot of the hero — flex-wrap so it never overflows */
.about-hero-stats {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 56px;
  padding: 30px 0 36px;
  border-top: 1px solid rgba(245,243,236,0.14);
}
.about-hero-stats .stat { text-align: left; }
.about-hero-stats .stat-label { white-space: nowrap; }

@media (max-width: 880px) {
  .about-hero { padding: 130px 20px 0; min-height: auto; }
  .about-hero-media { width: 100%; }
  .about-hero-media img {
    object-position: 50% 25%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 60%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 35%, #000 60%, transparent 100%);
    filter: brightness(0.4) saturate(1.05);
  }
  .about-hero-glow {
    background:
      radial-gradient(70% 40% at 50% 18%, rgba(214,198,59,0.14), transparent 60%),
      linear-gradient(180deg, rgba(11,11,11,0.55) 0%, rgba(11,11,11,0.86) 70%, var(--black) 100%);
  }
  .about-hero-inner { min-height: 88vh; }
  .about-hero-stats { gap: 22px 36px; padding: 26px 0 32px; }
}
@media (max-width: 540px) {
  .about-hero { padding: 120px 16px 0; }
  .about-hero-title { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .about-hero-title .outline { -webkit-text-stroke-width: 1.5px; }
  .about-hero .hero-ctas .btn { width: 100%; text-align: center; }
  .about-hero-stats { gap: 18px 40px; }
}

/* ======================= SECTION TITLES ======================= */
.section-title { text-align: center; margin-bottom: 16px; }
.section-title::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--accent); margin: 14px auto 0; border-radius: 2px;
}
.section-sub { text-align: center; max-width: 720px; margin: 0 auto 50px; color: var(--gray); }

/* ======================= CARDS ======================= */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(214,207,58,0.45); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.95rem; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-family: var(--font-heading); letter-spacing: 0.1em; font-size: 0.9rem;
  color: var(--accent);
}
.card-link::after { content: '→'; transition: transform .25s var(--ease); }
.card:hover .card-link::after { transform: translateX(6px); }

/* Program card variant */
.program-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black-2);
  display: block;
}
.program-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: brightness(0.65);
}
.program-card:hover img { transform: scale(1.08); filter: brightness(0.45); }
.program-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 60%);
  transition: background .4s var(--ease);
}
.program-card:hover .program-card-overlay {
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.25) 70%);
}
.program-card h3 { color: var(--white); margin-bottom: 6px; }
.program-card p {
  color: var(--off-white); margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .4s var(--ease), opacity .4s var(--ease), margin-top .3s var(--ease);
}
.program-card:hover p { max-height: 120px; opacity: 1; margin-top: 6px; }
.program-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-family: var(--font-heading); color: var(--accent);
  font-size: 0.9rem; letter-spacing: 0.12em;
}
.program-card-cta::after { content: '→'; transition: transform .25s var(--ease); }
.program-card:hover .program-card-cta::after { transform: translateX(6px); }

/* ======================= FEATURE LIST ======================= */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
  padding: 28px; background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.feature:hover { border-color: var(--accent); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(214,198,59,0.12); color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 400; letter-spacing: 0.04em;
  font-size: 1.15rem; margin-bottom: 14px;
  border: 1px solid rgba(214,198,59,0.3);
}
.feature h4 { font-size: 1.1rem; margin-bottom: 8px; }

/* ======================= PROGRAM TIERS (adult-jiu-jitsu) ======================= */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.tier {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(214,198,59,0.45);
  box-shadow: var(--shadow);
}
.tier-badge {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-heading);
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--accent);
  padding: 4px 14px;
  border: 1px solid rgba(214,198,59,0.45);
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tier h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  margin-bottom: 10px;
}
.tier-lead {
  color: var(--off-white);
  font-size: 0.98rem;
  margin: 0 0 18px;
}
.tier-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex-grow: 1;
}
.tier-list li {
  position: relative;
  padding-left: 22px;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.tier-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.6em;
  width: 12px; height: 2px;
  background: var(--accent);
}
.tier-link {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  font-family: var(--font-heading);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
}
.tier-link span { transition: transform .25s var(--ease); display: inline-block; }
.tier-link:hover span { transform: translateX(4px); }

.tier-note {
  margin: 36px auto 0;
  padding-top: 24px;
  max-width: 720px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--off-white);
  font-size: 0.98rem;
}
.tier-note a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(214,198,59,0.35);
  transition: border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.tier-note a:hover { border-bottom-color: var(--accent); color: var(--accent-2); }
.tier-note a span { display: inline-block; transition: transform .25s var(--ease); }
.tier-note a:hover span { transform: translateX(4px); }

@media (max-width: 980px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .tier-note { white-space: normal; }
  .tier-note a { white-space: normal; }
}

/* ======================= SPLIT SECTION ======================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.split-media img, .split-media video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .8s var(--ease); }
.split-media:hover img { transform: scale(1.04); }
.split-text h2 { margin-bottom: 16px; }
.split-text p { margin-bottom: 14px; color: var(--gray); }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
}

/* ======================= STATS ======================= */
.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, var(--black-2), var(--black-3));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 50px 24px;
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); color: var(--accent); display: block; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 6px; }

/* ======================= REVIEWS ======================= */
.reviews { background: var(--black-2); }
.review-carousel { position: relative; max-width: 1100px; margin: 0 auto; }
.review-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 10px 4px 30px;
  scrollbar-width: thin; scrollbar-color: var(--accent) transparent;
}
.review-track::-webkit-scrollbar { height: 6px; }
.review-track::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 6px; }
.review {
  flex: 0 0 calc(33.333% - 16px);
  scroll-snap-align: start;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; min-height: 280px;
}
.review .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 0.2em; }
.review p { color: var(--off-white); font-style: italic; flex: 1; margin-bottom: 16px; }
.review .name { font-family: var(--font-heading); color: var(--accent); letter-spacing: 0.1em; }
@media (max-width: 980px) { .review { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 640px) { .review { flex: 0 0 90%; } }

/* ======================= MAP ======================= */
.map-section { background: var(--black-2); color: var(--white); padding: 90px 0; }
.map-section .section-title { color: var(--white); }
.map-section .section-title::after { background: var(--accent); }
.map-section .address {
  color: var(--off-white); text-align: center; font-size: 1.1rem;
  font-weight: 600; margin-bottom: 36px; letter-spacing: 0.02em;
}
.map-frame {
  width: 100%; max-width: 1000px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(214,198,59,0.6);
  box-shadow: var(--shadow), 0 0 0 1px rgba(214,198,59,0.4), 0 0 35px rgba(214,198,59,0.45), 0 0 75px rgba(214,198,59,0.3);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ======================= FOOTER ======================= */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-family: var(--font-heading); letter-spacing: 0.2em;
  color: var(--white); margin-bottom: 18px; font-size: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--gray); font-size: 0.95rem; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 24px; gap: 16px;
  flex-wrap: wrap;
}
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo img { height: 50px; width: auto; }
.footer-info { color: var(--gray); font-size: 0.9rem; }
.footer-info p { color: var(--gray); margin-bottom: 6px; }
.footer-info p a { color: var(--gray); }
.footer-info p a:hover { color: var(--accent); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--white);
  transition: all .25s var(--ease);
}
.social-icons a:hover { background: var(--accent); color: #111; transform: translateY(-3px); border-color: var(--accent); }
.social-icons svg { width: 18px; height: 18px; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ======================= MODAL ======================= */
.modal {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal.active { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  width: 100%; max-width: 520px;
  background: linear-gradient(160deg, #1a1a1a 0%, #0e0e0e 100%);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  position: relative;
  animation: pop .35s var(--ease);
  max-height: 92vh; overflow-y: auto;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 0; color: var(--white); font-size: 1.4rem;
  cursor: pointer; line-height: 1;
  transition: all .2s var(--ease);
}
.modal-close:hover { background: var(--accent); color: #111; }
.modal h3 {
  text-align: center; color: var(--white); margin-bottom: 6px; font-size: 1.6rem;
}
.modal-sub { text-align: center; color: var(--gray); font-size: 0.95rem; margin-bottom: 22px; }

/* Form */
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block; font-family: var(--font-heading);
  letter-spacing: 0.08em; font-size: 0.85rem;
  margin-bottom: 6px; color: var(--off-white);
}
.form-row .req { color: var(--accent); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 12px 14px;
  background: #111; border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--accent); background: #181818;
}
.form-row select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.form-row textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%; margin-top: 8px; padding: 14px;
  background: var(--accent); color: #111;
  font-family: var(--font-heading); letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700; font-size: 1rem;
  border: 0; border-radius: var(--radius); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.form-submit:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(214,198,59,0.4), 0 0 16px rgba(214,198,59,0.28); }

.form-legal {
  font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 14px;
}
.form-legal a { color: var(--accent); }

.form-success {
  display: none; text-align: center; padding: 30px 0;
}
.form-success.active { display: block; }
.form-success .check {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: #111;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 18px;
}

/* ======================= ANIMATIONS ======================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 1s var(--ease); }
.fade-in.in { opacity: 1; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ======================= UTIL ======================= */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 12px; }
.mb-2 { margin-bottom: 24px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }

/* CTA Band — dark cinematic style with gold accents */
.cta-band {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.92) 100%),
    radial-gradient(circle at 20% 30%, rgba(214,207,58,0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(214,207,58,0.12), transparent 60%),
    var(--black);
  color: var(--white);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(214,207,58,0.25);
  border-bottom: 1px solid rgba(214,207,58,0.25);
}
.cta-band::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.7;
}
.cta-band::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0.7;
}
.cta-band-inner {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}
.cta-band-inner::before {
  content: 'Limited Time';
  display: inline-block;
  font-family: var(--font-heading);
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  color: var(--accent);
  padding: 5px 14px;
  border: 1px solid rgba(214,207,58,0.4);
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.cta-band h2 .accent { color: var(--accent); }
.cta-band p {
  color: var(--off-white);
  margin-bottom: 32px;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn {
  background: var(--accent);
  color: var(--btn-text);
  padding: 16px 36px;
  font-size: 1rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(214,198,59,0.3);
  position: relative;
}
.cta-band .btn:hover {
  background: var(--accent);
  color: var(--btn-text);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(214,198,59,0.45), 0 0 20px rgba(214,198,59,0.3);
}
/* Soft floating glow shapes */
.cta-band-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,207,58,0.15), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite alternate;
}
.cta-band-glow.left { top: -100px; left: -120px; }
.cta-band-glow.right { bottom: -100px; right: -120px; animation-delay: -4s; }
@keyframes floaty {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(20px,-15px) scale(1.1); }
}

/* Card Block (etiquette / pricing list) */
.info-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); border-color: rgba(214,207,58,0.4); }
.info-card-header {
  background: var(--accent); color: #111;
  padding: 14px 20px; text-align: center;
  font-family: var(--font-heading); letter-spacing: 0.12em;
  font-size: 1.15rem;
}
.info-card-body { padding: 22px 24px; }
.info-card-body ul { list-style: none; }
.info-card-body li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; color: var(--off-white); font-size: 0.95rem;
}
.info-card-body li::before {
  content: '✓'; color: var(--accent); font-weight: 800;
  margin-top: 2px;
}

/* Gallery — uniform grid, every tile same aspect, image fills via object-fit */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
@media (max-width: 1080px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px)  { .gallery { grid-template-columns: 1fr; } }

.gallery .g-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--black-2);
}
.gallery .g-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;          /* fill the tile, crop overflow */
  object-position: center;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.gallery .g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, transparent 35%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.gallery .g-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.05);
}
.gallery .g-item:hover::after { opacity: 1; }

/* Feature tiles: every 7th item spans 2 cols on wider screens for visual rhythm */
@media (min-width: 1081px) {
  .gallery .g-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 6000;
  background: rgba(0,0,0,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; animation: fadeIn .3s ease; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: var(--accent); color: #111;
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; font-size: 1.4rem; cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); color: var(--white);
  width: 50px; height: 50px; border-radius: 50%;
  border: 0; font-size: 1.6rem; cursor: pointer;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-nav:hover { background: var(--accent); color: #111; }

/* Schedule table */
.schedule-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px) { .schedule-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .schedule-grid { grid-template-columns: 1fr; } }
.day-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.day-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.day-card-header {
  background: var(--black-3);
  color: var(--accent);
  padding: 12px 18px;
  font-family: var(--font-heading); letter-spacing: 0.15em;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.day-card-body { padding: 18px; }
.class-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.class-row:last-child { border-bottom: 0; }
.class-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0;
}
.class-row .time { color: var(--accent); font-weight: 600; margin-left: auto; }

/* Pricing table */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  position: relative;
}
.price-card.featured { border-color: var(--accent); transform: scale(1.04); }
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: 14px; right: 14px;
  background: var(--accent); color: #111;
  padding: 4px 10px; font-size: 0.7rem;
  font-family: var(--font-heading); letter-spacing: 0.15em;
  border-radius: 999px;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.price-card h3 { color: var(--white); margin-bottom: 6px; }
.price-amount { font-family: var(--font-heading); font-size: 2.6rem; color: var(--accent); margin: 14px 0 6px; }
.price-amount .small { font-size: 1rem; color: var(--gray); }
.price-card ul { list-style: none; text-align: left; margin: 20px 0; }
.price-card ul li {
  padding: 8px 0; color: var(--off-white); font-size: 0.95rem;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  display: flex; gap: 8px; align-items: flex-start;
}
.price-card ul li::before { content: '✓'; color: var(--accent); font-weight: 800; }

/* Instructor cards */
.instructor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 1080px) { .instructor-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .instructor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .instructor-grid { grid-template-columns: 1fr; } }
.instructor {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.instructor:hover { transform: translateY(-6px); border-color: var(--accent); }
.instructor-photo {
  aspect-ratio: 1/1; width: 100%; overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}
.instructor-photo img, .instructor-photo object {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.instructor:hover .instructor-photo img { transform: scale(1.06); }
.instructor-body { padding: 22px; }
.instructor-body h3 { margin-bottom: 4px; font-size: 1.2rem; }
.instructor-body .role { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.instructor-body button {
  background: transparent; color: var(--white);
  border: 2px solid var(--btn);
  padding: 10px 18px; border-radius: var(--radius);
  font-family: var(--font-heading); letter-spacing: 0.1em;
  cursor: pointer; transition: all .25s var(--ease);
  text-transform: uppercase; font-size: 0.85rem;
}
.instructor-body button:hover { background: var(--btn); color: #111; }

/* Bio modal content */
.bio-content { text-align: left; }
.bio-content .role-tag {
  display: inline-block; padding: 4px 10px;
  background: rgba(214,207,58,0.15); color: var(--accent);
  font-family: var(--font-heading); letter-spacing: 0.1em; font-size: 0.8rem;
  border-radius: 999px; margin-bottom: 12px;
}
.bio-content h3 { color: var(--white); margin-bottom: 12px; font-size: 1.4rem; }
.bio-content p { color: var(--off-white); margin-bottom: 12px; font-size: 0.95rem; }

/* Video block */
.video-wrap {
  position: relative; aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.video-wrap iframe, .video-wrap video {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* Joe Rogan featured section */
.rogan-section {
  background:
    radial-gradient(ellipse at top, rgba(214,207,58,0.08), transparent 60%),
    var(--black-2);
  position: relative;
  overflow: hidden;
}
.rogan-section::before,
.rogan-section::after {
  content: ''; position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(214,207,58,0.10), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.rogan-section::before { top: -80px; left: -80px; }
.rogan-section::after { bottom: -80px; right: -80px; }
.rogan-section .container { position: relative; z-index: 1; }
.rogan-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.rogan-video {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.rogan-video .video-wrap {
  border: 2px solid rgba(214,207,58,0.35);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 30px 60px rgba(0,0,0,0.55),
    0 0 60px rgba(214,207,58,0.10);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.rogan-video:hover .video-wrap {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.6),
    0 36px 70px rgba(0,0,0,0.6),
    0 0 80px rgba(214,207,58,0.2);
}
.rogan-watch-link {
  display: block;
  text-align: center;
  margin-top: 22px;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  transition: letter-spacing .25s var(--ease);
}
.rogan-watch-link:hover { letter-spacing: 0.22em; color: var(--accent-2); }

/* Legal page */
.legal-page { padding: 140px 24px 80px; background: var(--black); }
.legal-content {
  max-width: 860px; margin: 0 auto;
  background: var(--black-2);
  padding: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.legal-content h1 { color: var(--white); margin-bottom: 8px; }
.legal-content .last-updated { color: var(--accent); margin-bottom: 24px; font-size: 0.9rem; }
.legal-content h2 { font-size: 1.3rem; margin-top: 28px; margin-bottom: 10px; color: var(--white); }
.legal-content p { color: var(--off-white); margin-bottom: 12px; font-size: 0.95rem; line-height: 1.7; }
.legal-content a { color: var(--accent); }
.legal-content ul { margin: 10px 0 14px 24px; color: var(--off-white); }
.legal-content li { margin-bottom: 6px; }
@media (max-width: 640px) { .legal-content { padding: 30px 22px; } }

/* ===== Contact cards ===== */
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 36px 0 56px;
}
.contact-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  max-width: 380px;
  display: flex; flex-direction: column;
  gap: 12px;
  padding: 28px 26px 24px;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
a.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,198,59,0.45);
  box-shadow: var(--shadow);
  color: inherit;
}
.contact-card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(214,198,59,0.12);
  border: 1px solid rgba(214,198,59,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-label {
  font-family: var(--font-heading);
  letter-spacing: 0.22em;
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
}
.contact-card-value {
  color: var(--off-white);
  font-size: 1rem;
  line-height: 1.55;
  flex-grow: 1;
}
.contact-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(245,243,236,0.08);
}
.contact-card-cta .arrow { display: inline-block; transition: transform .25s var(--ease); }
a.contact-card:hover .contact-card-cta .arrow { transform: translateX(4px); }

/* Pitch CTA below the contact grid */
.contact-pitch {
  position: relative;
  text-align: center;
  padding: 44px 24px;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.contact-pitch-glow {
  position: absolute; inset: -50% -10%;
  background: radial-gradient(45% 60% at 50% 50%, rgba(214,198,59,0.13), transparent 65%);
  pointer-events: none;
}
.contact-pitch h3 {
  position: relative;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 12px;
}
.contact-pitch h3 .accent { color: var(--accent); }
.contact-pitch p {
  position: relative;
  color: var(--off-white);
  max-width: 540px;
  margin: 0 auto 22px;
}
.contact-pitch .btn { position: relative; }

/* ===== Legacy contact form layout (kept for reference; currently unused) ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { padding: 20px; }
.contact-info h3 { margin-bottom: 18px; }
.contact-info .row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info .row .icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(214,207,58,0.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-weight: 700; letter-spacing: 0.05em;
  font-size: 0.85rem;
  border: 1px solid rgba(214,207,58,0.3);
}
.contact-info .row .label { font-family: var(--font-heading); letter-spacing: 0.1em; color: var(--white); font-size: 0.9rem; }
.contact-info .row .value { color: var(--gray); font-size: 0.95rem; }
.contact-info .row .value a { color: var(--gray); }
.contact-info .row .value a:hover { color: var(--accent); }
.contact-form {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form h3 { margin-bottom: 18px; }

/* Mobile breakpoint helpers */
@media (max-width: 540px) {
  section { padding: 60px 0; }
  .hero { min-height: 80vh; padding: 110px 18px 50px; }
  .legal-page { padding: 110px 18px 60px; }
}
