/* ============================================================
   ARES BJJ OMAHA — styles.css
   Production CSS — All pages
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --red:            #dc2626;
  --red-dark:       #b91c1c;
  --logo-charcoal:  #1a1a1a;
  --logo-steel:     #7a7a7a;
  --logo-silver:    #b8b8b8;
  --logo-glow:      rgba(184,184,184,0.08);
  --logo-border:    rgba(184,184,184,0.18);
  --bg:             #080808;
  --bg-2:           #0f0f0f;
  --bg-3:           #141414;
  --bg-4:           #1a1a1a;
  --text:           #ffffff;
  --muted:          #9ca3af;
  --subtle:         #4b5563;
  --border:         rgba(255,255,255,0.07);
  --nav-h:          72px;
  --ease:           cubic-bezier(.22,1,.36,1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* Required: prevents body overflow-x:hidden from breaking position:fixed on iOS Safari */
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

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

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

ul,
ol {
  list-style: none;
}

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

input,
select,
textarea {
  font-family: inherit;
}

address {
  font-style: normal;
}

/* Visually hidden utility */
.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;
}

/* Selection */
::selection {
  background: rgba(184,184,184,0.2);
  color: #ffffff;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--logo-silver);
  outline-offset: 3px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--logo-steel);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--logo-silver);
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding: clamp(1.75rem, 3.5vw, 3.75rem) 0;
}

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

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

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* Button sizes */
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  width: 100%;
  justify-content: center;
}

/* Default button size */
.btn:not(.btn-sm):not(.btn-lg):not(.btn-xl) {
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
}

/* .btn-primary — RED IS ALLOWED HERE */
.btn-primary {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.4);
}

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

/* .btn-red — RED IS ALLOWED HERE */
.btn-red {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.4);
}

/* .btn-ghost */
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.3);
}

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

/* .btn-outline */
.btn-outline {
  background: transparent;
  border-color: var(--logo-steel);
  color: var(--logo-silver);
}

.btn-outline:hover {
  border-color: var(--logo-silver);
  color: #ffffff;
  transform: translateY(-2px);
}

/* .btn-white */
.btn-white {
  background: #ffffff;
  color: #080808;
  border-color: #ffffff;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

/* .btn-dark */
.btn-dark {
  background: var(--bg-3);
  color: #ffffff;
  border-color: var(--border);
}

.btn-dark:hover {
  border-color: var(--logo-steel);
  transform: translateY(-2px);
}

/* .btn-black — secondary CTA, contrasts red primary */
.btn-black {
  background: #0a0a0a;
  color: #ffffff;
  border-color: rgba(255,255,255,0.15);
}

.btn-black:hover {
  background: #222222;
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* Submit buttons — RED IS ALLOWED */
button[type="submit"],
input[type="submit"] {
  cursor: pointer;
}

/* ============================================================
   5. EYEBROW & SECTION HEADERS
   ============================================================ */
.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--logo-silver);
  display: inline-block;
  margin-bottom: 0.9rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.section-title .accent {
  color: var(--logo-silver);
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.section-header--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-header--left .section-sub {
  margin-left: 0;
  margin-right: 0;
}

/* Decorative rule below eyebrow */
.eyebrow-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--logo-steel);
  margin-top: 0.5rem;
}

/* ============================================================
   6. NAVIGATION
   ============================================================ */
#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0;
  width: 100% !important;
  z-index: 99999 !important;
  height: var(--nav-h);
  /* Subtle always-on background so nav is readable before .scrolled fires */
  background: rgba(8, 8, 8, 0.72);
  /* Border starts transparent — fades to #cccccc in scrolled state */
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}

#navbar.scrolled {
  background: #000000 !important;
  border-bottom-color: #cccccc;
  box-shadow: none;
}

.nav-container {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  gap: 1.5rem;
  position: relative; /* needed for absolutely-positioned logo on mobile scroll */
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 0.9;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--logo-silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-phone:hover {
  color: #ffffff;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.28s ease-out;
  transform-origin: center;
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile menu */
.nav-mobile-menu {
  position: fixed !important;
  inset: var(--nav-h) 0 0 0;
  background: #000000;
  background-image: radial-gradient(ellipse at 50% 40%, rgba(40,0,0,0.45) 0%, rgba(0,0,0,0.85) 65%, #000000 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0 !important;
  margin-top: 0 !important;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out, visibility 0.28s;
  z-index: 99998 !important;
  overflow-y: auto;
}

/* Ghost logo watermark */
.nav-mobile-menu::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: image-set(url('../images/logo.webp') type('image/webp'), url('../images/logo.png') type('image/jpeg')) center / contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.nav-mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Ensure all direct children sit above watermark */
.nav-mobile-menu > * {
  position: relative;
  z-index: 1;
}

.nav-mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 320px;
}

.nav-mobile-menu ul > li {
  width: 100%;
  text-align: center;
  padding: 14px 0;
}

.nav-mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  display: inline-block;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a:active {
  color: #cc0000;
  text-shadow: 0 0 12px rgba(204, 0, 0, 0.85), 0 0 24px rgba(204, 0, 0, 0.45);
}

.mobile-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   7. FLOATING CTA — RED OK (it's a primary action button)
   ============================================================ */
.floating-cta {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(220,38,38,0.5);
  transition: all 0.25s var(--ease);
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(220,38,38,0.6);
}

.floating-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   8. FREE CLASS POPUP MODAL
   ============================================================ */
.fc-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* display:none + visibility:hidden — both required.
     display:none removes layout; visibility:hidden stops backdrop-filter
     from painting (which is the source of the page-load blur flash). */
  display: none;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 1.5rem);
  opacity: 0;
  pointer-events: none;
  /* NO transition here — prevents reverse-animation flash on initial render */
}

.fc-overlay.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease; /* only active when open */
}

.fc-modal {
  background: var(--bg-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 32px 20px 20px;
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.96);
  /* No transition in base — only applied when open so no flash */
  position: relative;
}

.fc-overlay.open .fc-modal {
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease;
}

.fc-modal-inner {
  position: relative;
}

.fc-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.fc-close:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.fc-header {
  margin-bottom: 12px;
}

.fc-header .eyebrow {
  color: var(--logo-silver);
}

.fc-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.0;
}

.fc-header p {
  color: var(--muted);
  font-size: 0.81rem;
  line-height: 1.5;
  margin-bottom: 0;
}

.fc-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fc-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fc-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.fc-field input,
.fc-field select,
.fc-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: #ffffff;
  padding: 10px 12px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
  font-family: inherit;
}

.fc-field textarea {
  height: 58px;
  resize: none;
}

.fc-field input::placeholder,
.fc-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.fc-field input:focus,
.fc-field select:focus,
.fc-field textarea:focus {
  border-color: var(--logo-silver);
}

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

.fc-field select option {
  background: var(--bg-4);
  color: #ffffff;
}

/* Submit button in free class form — RED OK */
.fc-submit {
  margin-top: 4px;
  padding: 14px !important;
  width: 100%;
}

.fc-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  line-height: 1.4;
}

/* ============================================================
   9. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Adult BJJ page hero — hard override: anchor to top so athlete's head is never cropped */
.hero-img--focal-top {
  object-fit: cover !important;
  object-position: center top !important;
}

/* Desktop */
@media (min-width: 1024px) {
  .hero-img--focal-top {
    object-position: center top !important;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
  .hero-img--focal-top {
    object-position: center top !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-img--focal-top {
    object-position: center top !important;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}

.hero-overlay-center {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.72);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}

.hero-content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero logo mark */
.hero-logo-mark {
  margin-bottom: 1.5rem;
}

.hero-logo-mark img {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}

.hero-logo-mark--center {
  text-align: center;
}

/* Hero eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f0f0f0;
}

.eyebrow-rule {
  display: block;
  height: 1px;
  width: 40px;
  background: var(--logo-steel);
  flex-shrink: 0;
}

/* Hero title */
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.hero-title .title-line {
  display: block;
}

.hero-title .accent {
  color: var(--logo-silver);
}

/* Hero tagline (H2 under brand H1) */
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.9vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 1.5rem 0 1.5rem;
  max-width: 720px;
  white-space: nowrap;
}
.hero-tagline span {
  display: inline;
}
.hero-tagline .accent {
  color: var(--logo-silver);
  font-weight: 500;
}
@media (max-width: 640px) {
  .hero-tagline { white-space: normal; max-width: 100%; }
}

/* ── Hero content vertical alignment ──
   Anchor near the top of the hero image instead of vertically
   centering inside 100vh, but leave enough headroom so the
   HUD overlays (REC tag, coordinates) don't collide with the eyebrow. */
.hero-full {
  align-items: flex-start !important;
}
.hero-full .hero-content {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 3rem;
}
@media (max-width: 767px) {
  .hero-full .hero-content {
    padding-top: calc(var(--nav-h) + 4rem);
  }
}

/* Hero subtitle */
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.2rem;
  max-width: 520px;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero trust */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  font-weight: 700;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}

.trust-item svg {
  color: var(--logo-silver);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-dot {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.7);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============================================================
   10. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
}

.trust-item-bar svg {
  width: 20px;
  height: 20px;
  color: var(--logo-silver);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--logo-steel);
  flex-shrink: 0;
}

/* ============================================================
   11. ABOUT SNIPPET (Homepage)
   ============================================================ */
.about-snippet {
  background: var(--bg-2);
}

.about-snippet-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.about-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 5rem);
  color: #ffffff;
  line-height: 1;
}

.about-stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--logo-silver);
}

.about-stat-bar {
  width: 40px;
  height: 2px;
  background: var(--logo-steel);
  margin-top: 0.25rem;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content-col h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.about-content-col p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-more-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--logo-silver);
  border-bottom: 1px solid var(--logo-steel);
  padding-bottom: 2px;
  transition: color 0.2s ease;
  display: inline-block;
}

.about-more-link:hover {
  color: #ffffff;
}

/* ============================================================
   12. PROGRAMS HP GRID
   ============================================================ */
.programs-hp {
  background: var(--bg);
}

.programs-hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prog-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.4s ease;
}

.prog-card:hover {
  border-color: var(--logo-steel);
}

.prog-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(15%);
  transform: scale(1);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.prog-card:hover .prog-card-bg {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.prog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.45) 50%,
    rgba(8,8,8,0.15) 100%
  );
  transition: background 0.4s ease;
}

.prog-card:hover .prog-card-overlay {
  background: linear-gradient(
    to top,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.55) 60%,
    rgba(8,8,8,0.2) 100%
  );
}

.prog-card-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prog-card-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.0;
}

.prog-card-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.prog-card-divider {
  width: 40px;
  height: 2px;
  background: var(--logo-steel);
}

/* ============================================================
   13. WHY ARES BJJ
   ============================================================ */
.why-ares {
  background: var(--bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.why-card:hover {
  background: var(--bg-4);
  border-color: var(--logo-steel);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(122,122,122,0.1);
  border: 1px solid var(--logo-steel);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--logo-silver);
  fill: none;
}

.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #ffffff;
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   14. REVIEWS CAROUSEL
   ============================================================ */
.reviews-section {
  background: var(--bg);
  overflow: hidden;
}

.reviews-stars-head {
  color: var(--logo-silver);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-align: center;
}

.reviews-viewport {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: scroll-left 40s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.review-card {
  background: #111111;
  border-left: 3px solid var(--logo-steel);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 1.5rem;
  min-width: 300px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(122,122,122,0.15);
  border: 1px solid var(--logo-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--logo-silver);
  flex-shrink: 0;
}

.review-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  color: var(--logo-silver);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  flex: 1;
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   15. CTA BANNER — RED OK (primary action section)
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  text-align: center;
}

.cta-banner .eyebrow {
  color: rgba(255,255,255,0.65);
}

.cta-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.75rem;
  line-height: 1.0;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 2rem;
}

.cta-banner--dark {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-banner--dark h2 {
  color: #ffffff;
}

.cta-banner--dark .eyebrow {
  color: var(--logo-silver);
}

.cta-banner--dark p {
  color: var(--muted);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  /* 3-column footer: Brand (left-cornered) | Quick Links (centered)
     | Contact Info (right-cornered). Side columns hug content so the
     middle 1fr eats the gap between them. */
  grid-template-columns: auto 1fr auto;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.footer-logo .logo-text {
  text-align: left;
}

.footer-logo-img {
  height: 98px;
  width: auto;
  object-fit: contain;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-self: start;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  max-width: 260px;
}

/* Center column hugs its content and sits in the middle of the gap */
.footer-top .footer-col:not(.footer-col-contact) {
  justify-self: center;
}

/* Last column: right-cornered */
.footer-col-contact {
  justify-self: end;
  text-align: right;
}
.footer-col-contact h5,
.footer-col-contact address {
  text-align: right;
}
.footer-col-contact address p {
  text-align: right;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: var(--logo-steel);
  border-color: var(--logo-steel);
  color: #ffffff;
}

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col-contact address p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-col-contact a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col-contact a:hover {
  color: #ffffff;
}

.footer-col-contact a[href^="tel"] {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--logo-silver);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* Keep the MMA Marketing Pro link in brand red (intentional) */
.footer-bottom .footer-powered a {
  color: var(--red);
}
.footer-bottom .footer-powered a:hover {
  color: #ffffff;
}

/* ============================================================
   17. PROGRAM OVERVIEW (detail pages)
   ============================================================ */
.program-overview {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.overview-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.overview-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.overview-img-wrap:hover img {
  transform: scale(1.04);
}

.overview-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--logo-steel);
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.5;
}

.overview-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.overview-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-align: left;
}

.overview-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.curriculum-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.curriculum-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.curriculum-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--logo-silver);
  font-size: 0.7rem;
  top: 0.15em;
}

/* ============================================================
   18. SCHEDULE CARDS
   ============================================================ */
.schedule-preview {
  background: var(--bg-2);
}

.sched-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.sched-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.75rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.25s ease;
  cursor: pointer;
  background: none;
}

.sched-tab.active {
  background: var(--logo-charcoal);
  border-color: var(--logo-steel);
  color: #ffffff;
}

.sched-tab:hover:not(.active) {
  border-color: var(--logo-steel);
  color: #ffffff;
}

.sched-panel {
  display: none;
}

.sched-panel.active {
  display: block;
}

.sched-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.sched-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.25s ease;
}

.sched-card:hover {
  border-color: var(--logo-steel);
  background: var(--bg-4);
}

.sched-featured {
  border-left: 3px solid var(--logo-steel);
}

.sched-openmat {
  border-left: 3px solid var(--subtle);
}

.sched-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--logo-silver);
  min-width: 80px;
  line-height: 1;
}

.sched-time span {
  font-size: 0.75rem;
  color: var(--muted);
  margin-left: 0.2rem;
  font-weight: 600;
}

.sched-info {
  flex: 1;
}

.sched-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.sched-days {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Level badges */
.level-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

.level-all {
  background: rgba(184,184,184,0.08);
  color: var(--logo-silver);
}

.level-kids {
  background: rgba(59,130,246,0.12);
  color: #93c5fd;
}

.level-beg {
  background: rgba(34,197,94,0.1);
  color: #86efac;
}

.level-adv {
  background: rgba(184,184,184,0.1);
  color: var(--logo-silver);
}

.sched-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.sched-note a {
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid var(--logo-steel);
  transition: color 0.2s ease;
}

.sched-note a:hover {
  color: #ffffff;
}

/* ============================================================
   19. STEPS TIMELINE (4-step)
   ============================================================ */
.steps-section {
  background: var(--bg);
  background-image: linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)), image-set(url('../images/adult-bjj-group.webp') type('image/webp'), url('../images/adult-bjj-group.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--logo-steel);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--logo-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--logo-silver);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg);
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.step-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   20. KIDS AGE GROUPS
   ============================================================ */
.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.age-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.age-card:hover {
  border-color: var(--logo-steel);
  transform: translateY(-3px);
}

.age-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(122,122,122,0.1);
  border: 1px solid var(--logo-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
}

.age-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.age-card .age-range {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--logo-silver);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.age-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   21. PARENT BENEFITS (Kids page)
   ============================================================ */
.parent-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--logo-steel);
  transform: translateY(-3px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(122,122,122,0.1);
  border: 1px solid var(--logo-steel);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--logo-silver);
  fill: none;
}

.benefit-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   22a. KIDS "MORE THAN MARTIAL ARTS" — split layout + card grid
   ============================================================ */

/* Outer section — no padding (image goes edge-to-edge) */
.kids-gains-section {
  overflow: hidden;
  padding: 0 !important;
}

/* Two-column split: 45% image | 55% content */
.kids-gains-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 560px;
}

/* Left image column */
.kids-gains-img-col {
  position: relative;
  overflow: hidden;
}

.kids-gains-img-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.kids-gains-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

/* Right content column */
.kids-gains-content-col {
  background: #111111;
  display: flex;
  align-items: center;
}

.kids-gains-inner {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  width: 100%;
}

/* Eyebrow */
.kids-gains-eyebrow {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 0.6rem;
}

/* Main heading */
.kids-gains-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}

/* Red underline accent */
.kids-gains-rule {
  width: 60px;
  height: 2px;
  background: #cc0000;
  margin-bottom: 1.75rem;
}

/* 2-column card grid inside right column */
.kids-gains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Individual benefit card */
.kids-gain-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-left: 3px solid #cc0000;
  border-radius: 6px;
  padding: 16px;
  transition: transform 200ms ease;
}

.kids-gain-card:hover {
  transform: translateY(-3px);
}

/* SVG icon */
.kids-gain-icon {
  display: block;
  margin-bottom: 0.6rem;
  color: #cc0000;
  line-height: 1;
}

.kids-gain-icon svg {
  display: block;
  stroke: #cc0000;
}

.kids-gain-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 4px;
}

.kids-gain-card p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.6;
  margin: 0;
}

/* Mobile: image stacks on top, single col cards */
@media (max-width: 767px) {
  .kids-gains-split {
    grid-template-columns: 1fr;
  }

  .kids-gains-img-col {
    height: 220px;
    position: relative;
  }

  .kids-gains-img-col img {
    position: absolute;
  }

  .kids-gains-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .kids-gains-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   22. FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: var(--logo-steel);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #ffffff;
  transition: color 0.2s ease;
  user-select: none;
  gap: 1rem;
}

.faq-item.open .faq-question {
  color: var(--logo-silver);
}

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--muted);
  fill: none;
  transition: transform 0.3s ease, stroke 0.2s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  stroke: var(--logo-silver);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0.5rem 1.5rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   23. CONTACT PAGE
   ============================================================ */
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cdetail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cdetail-icon {
  width: 42px;
  height: 42px;
  background: rgba(122,122,122,0.1);
  border: 1px solid var(--logo-steel);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cdetail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--logo-silver);
  fill: none;
}

.cdetail-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.cdetail-item p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}

.cdetail-link {
  font-size: 0.85rem;
  color: var(--logo-silver);
  border-bottom: 1px solid var(--logo-steel);
  transition: color 0.2s ease;
  display: inline-block;
}

.cdetail-link:hover {
  color: #ffffff;
}

.cdetail-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--logo-silver);
}

.contact-map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  border: 0;
}

/* Contact form */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: #ffffff;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

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

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

.form-field select option {
  background: var(--bg-4);
  color: #ffffff;
}

.contact-thankyou {
  text-align: center;
  padding: 3rem;
}

.contact-thankyou h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.contact-thankyou p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Social strip */
.social-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.social-strip h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.social-strip-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-strip-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-4);
  border: 1px solid var(--logo-steel);
  border-radius: 4px;
  padding: 0.9rem 1.5rem;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  text-decoration: none;
}

.social-strip-btn:hover {
  background: var(--logo-charcoal);
  border-color: var(--logo-silver);
}

.social-strip-btn svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   24. CHOOSE A CLASS PAGE
   ============================================================ */
.choose-header {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0 2rem;
  padding-top: calc(var(--nav-h) + 3rem);
}

.choose-greeting {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--logo-silver);
  margin-bottom: 0.5rem;
}

.choose-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.choose-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.class-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.class-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.75rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
  background: none;
}

.class-tab.active {
  background: var(--logo-charcoal);
  border-color: var(--logo-steel);
  color: #ffffff;
}

.class-tab:hover:not(.active) {
  border-color: var(--logo-steel);
  color: #ffffff;
}

.class-panel {
  display: none;
}

.class-panel.active {
  display: block;
}

.class-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}

.class-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.25s ease;
}

.class-card:hover {
  border-color: var(--logo-steel);
  background: var(--bg-4);
}

.class-day-time {
  display: flex;
  flex-direction: column;
  min-width: 110px;
}

.class-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.class-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--logo-silver);
  line-height: 1;
}

.class-info {
  flex: 1;
}

.class-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.class-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.class-schedule-btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ============================================================
   25. LINEAGE & CREDENTIALS
   ============================================================ */
.lineage-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.lineage-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--logo-silver);
  margin-bottom: 1rem;
}

.lineage-list {
  display: flex;
  flex-direction: column;
}

.lineage-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.lineage-list li:last-child {
  border-bottom: none;
}

.lin-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.lin-title {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: right;
}

.lin-active .lin-name {
  color: var(--logo-silver);
}

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.cred {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
}

.cred-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cred strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.cred span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   26. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-top {
  display: flex;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: #ffffff;
  line-height: 1;
}

.stat-sym {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--logo-silver);
  align-self: flex-start;
  margin-top: 0.15rem;
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

.stat-div {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   27. TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tcard {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.tcard::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: rgba(184,184,184,0.06);
  pointer-events: none;
  line-height: 1;
}

.tcard:hover {
  border-color: var(--logo-steel);
  transform: translateY(-4px);
}

.tcard-featured {
  border-color: var(--logo-steel);
  background: var(--bg-4);
}

.tcard-stars {
  color: var(--logo-silver);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.tcard blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.tcard-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(122,122,122,0.15);
  border: 1px solid var(--logo-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--logo-silver);
  flex-shrink: 0;
}

.tcard-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.tcard-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   28. OPEN MAT BANNER
   ============================================================ */
.openmat-banner {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-left: 3px solid var(--logo-steel);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.openmat-banner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.openmat-banner p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================================================
   29. SCROLL ANIMATIONS
   ============================================================ */
[data-anim] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-anim="fade-up"] {
  transform: translateY(28px);
}

[data-anim="fade-right"] {
  transform: translateX(-36px);
}

[data-anim="fade-left"] {
  transform: translateX(36px);
}

[data-anim="fade"] {
  transform: none;
}

[data-anim].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ============================================================
   30. SUCCESS MODAL
   ============================================================ */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
}

.modal-bg.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.modal {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(30px) scale(0.96);
  position: relative;
}

.modal-bg.open .modal {
  transform: translateY(0) scale(1);
  transition: transform 0.35s ease;
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: #ffffff;
  line-height: 1.0;
}

.modal p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

/* ============================================================
   31. ADDITIONAL UTILITY COMPONENTS
   ============================================================ */

/* Divider rule */
.rule {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.rule--accent {
  background: var(--logo-steel);
  width: 60px;
  height: 2px;
}

/* Inline badge */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  border: 1px solid var(--logo-border);
  color: var(--logo-silver);
  background: var(--logo-glow);
}

/* Page header (inner pages) */
.page-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: calc(var(--nav-h) + 2.5rem) 0 3rem;
  text-align: center;
}

.page-header h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Two-column grid helper */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Centered content util */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Flex utilities */
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.flex-center { align-items: center; justify-content: center; }
.gap-1       { gap: 1rem; }
.gap-2       { gap: 2rem; }

/* Margin helpers */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ============================================================
   32. INSTRUCTOR CARD
   ============================================================ */
.instructor-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.instructor-card:hover {
  border-color: var(--logo-steel);
  transform: translateY(-4px);
}

.instructor-img-wrap {
  position: relative;
  overflow: hidden;
}

.instructor-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.instructor-card:hover .instructor-img-wrap img {
  transform: scale(1.04);
}

.instructor-body {
  padding: 1.5rem;
}

.instructor-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.instructor-rank {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--logo-silver);
  margin-bottom: 0.85rem;
}

.instructor-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   33. PROCESS / STEPS (alternate horizontal)
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(184,184,184,0.1);
  line-height: 1;
  margin-bottom: -0.5rem;
}

.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   34. FEATURE HIGHLIGHT (2-col image + content)
   ============================================================ */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.feature-highlight--reverse {
  direction: rtl;
}

.feature-highlight--reverse > * {
  direction: ltr;
}

.feature-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.feature-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.feature-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--logo-steel);
  border-radius: 6px;
  opacity: 0.4;
  pointer-events: none;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.feature-content h2 .accent {
  color: var(--logo-silver);
}

.feature-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ============================================================
   35. ICON LIST
   ============================================================ */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.icon-list-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--logo-silver);
  fill: none;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.icon-list-item span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   36. INFO CALLOUT BOX
   ============================================================ */
.callout {
  background: var(--bg-4);
  border: 1px solid var(--logo-border);
  border-left: 3px solid var(--logo-silver);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
}

.callout p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.callout strong {
  color: #ffffff;
}

/* ============================================================
   37. PHOTO GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: grayscale(15%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* ============================================================
   38. ALERT / NOTICE BARS
   ============================================================ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.alert svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--logo-silver);
  fill: none;
  margin-top: 0.1em;
}

/* ============================================================
   39. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb-sep {
  color: var(--subtle);
  font-size: 0.7rem;
}

.breadcrumb-current {
  color: var(--logo-silver);
}

/* ============================================================
   40. PRICING CARD (if used)
   ============================================================ */
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--logo-steel);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--logo-steel);
  background: var(--bg-4);
}

.pricing-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--logo-silver);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1;
}

.pricing-currency {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--logo-silver);
  margin-top: 0.4rem;
}

.pricing-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 0.3rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--logo-silver);
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   41. FORM ROW HELPER
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

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

/* Error text */
.field-error {
  font-size: 0.78rem;
  color: var(--red);
  margin-top: 0.25rem;
}

/* ============================================================
   42. MAP / LOCATION SECTION
   ============================================================ */
.location-section {
  background: var(--bg-2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-detail {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.location-detail h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.location-detail p,
.location-detail address {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}

.location-detail a {
  color: var(--logo-silver);
  transition: color 0.2s ease;
}

.location-detail a:hover {
  color: #ffffff;
}

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

/* ============================================================
   43. HOURS TABLE
   ============================================================ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: var(--muted);
  vertical-align: middle;
}

.hours-table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  width: 40%;
}

.hours-table td:last-child {
  text-align: right;
  color: #ffffff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.hours-table .today td {
  color: var(--logo-silver);
}

.hours-table .today td:first-child {
  color: var(--logo-silver);
}

/* ============================================================
   44. SPLIT HERO (two column)
   ============================================================ */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(2rem, 5vw, 5rem) 5rem;
  background: var(--bg);
}

.hero-split-media {
  position: relative;
  overflow: hidden;
}

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

.hero-split-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 1;
}

/* ============================================================
   45. NOTIFICATION TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--bg-3);
  border: 1px solid var(--logo-steel);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  color: #ffffff;
  z-index: 9999;
  transition: transform 0.35s var(--ease);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

.toast svg {
  width: 18px;
  height: 18px;
  stroke: var(--logo-silver);
  fill: none;
  flex-shrink: 0;
}

/* ============================================================
   46. PILL TAGS
   ============================================================ */
.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  background: rgba(122,122,122,0.1);
  border: 1px solid var(--logo-steel);
  color: var(--logo-silver);
}

/* ============================================================
   47. TIMELINE (vertical)
   ============================================================ */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--logo-steel);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 0.2rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 2px solid var(--logo-steel);
  transform: translateX(50%);
}

.timeline-item:first-child .timeline-dot {
  background: var(--logo-steel);
}

.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--logo-silver);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   48. SPLIT STAT HIGHLIGHT
   ============================================================ */
.stat-highlight {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.stat-highlight-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #ffffff;
  line-height: 1;
  flex-shrink: 0;
}

.stat-highlight-num sup {
  font-size: 1.5rem;
  color: var(--logo-silver);
  vertical-align: super;
}

.stat-highlight-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.stat-highlight-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   49. SKIP TO MAIN CONTENT
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--red);
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   50. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- 1100px ---- */
@media (max-width: 1100px) {
  .programs-hp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .hero-split-media {
    min-height: 50vh;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
  }

  .feature-highlight--reverse {
    direction: ltr;
  }

  .feature-img-wrap img {
    height: 320px;
  }

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

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

/* ---- 900px ---- */
@media (max-width: 900px) {
  /* Hide desktop nav, show hamburger */
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-right .btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* ── Mobile: hide empty nav-right so flex flow is clean ── */
  .nav-right {
    display: none;
  }

  /* Grids collapse */
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .about-snippet-grid {
    grid-template-columns: 1fr;
  }

  .contact-2col {
    grid-template-columns: 1fr;
  }

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

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

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

  .overview-img-wrap img {
    height: 320px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-split-content {
    padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
  }

  .hero-split-media {
    min-height: 55vw;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .lineage-card {
    margin-bottom: 1rem;
  }
}

/* ---- 768px ---- */
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  /* Reset corner-justification so stacked columns center cleanly */
  .footer-top .footer-brand,
  .footer-top .footer-col,
  .footer-top .footer-col-contact {
    justify-self: center;
    text-align: center;
    align-items: center;
  }
  .footer-col-contact h5,
  .footer-col-contact address,
  .footer-col-contact address p {
    text-align: center;
  }
  .footer-brand p { margin-inline: auto; }

  .age-groups-grid {
    grid-template-columns: 1fr;
  }

  .programs-hp-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-timeline {
    grid-template-columns: 1fr;
  }

  .fc-row {
    grid-template-columns: 1fr;
  }

  .choose-header {
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .class-card {
    flex-wrap: wrap;
  }

  .class-schedule-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .class-card .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row--3 {
    grid-template-columns: 1fr;
  }

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

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .openmat-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-highlight {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

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

  .map-wrap iframe {
    height: 320px;
  }

  .modal {
    padding: 2rem 1.5rem;
  }

  .fc-modal {
    padding: 32px 16px 18px;
  }

  .fc-header h2 {
    font-size: 1.6rem;
  }
}

/* ---- 640px ---- */
@media (max-width: 640px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-div {
    width: 60px;
    height: 1px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

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

  .parent-benefits-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    flex-direction: column;
    gap: 1rem;
  }

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

  /* Floating CTA — icon-only on small screens. The HTML has "GET STARTED"
     as a raw text node (no <span>), so we collapse it via font-size: 0 and
     give the SVG an explicit size that doesn't depend on the inherited font.
     Box becomes a clean 52×52 circle with only the arrow visible. */
  .floating-cta {
    padding: 0;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    font-size: 0;
    line-height: 0;
    gap: 0;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .floating-cta span { display: none; }
  .floating-cta svg {
    width: 22px;
    height: 22px;
    font-size: 0;
  }

  .nav-logo-img {
    height: 40px;
  }

  .hero-logo-mark img {
    height: 90px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.5rem);
  }

  .age-groups-grid {
    grid-template-columns: 1fr;
  }

  .social-strip-btns {
    flex-direction: column;
    align-items: center;
  }

  .sched-card {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .sched-time {
    min-width: 70px;
  }

  .reviews-track {
    animation-duration: 30s;
  }

  .review-card {
    min-width: 280px;
    max-width: 290px;
  }

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

  .trust-item-bar {
    font-size: 0.85rem;
  }

  .trust-divider {
    display: none;
  }
}

/* ============================================================
   51. PREFERS REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-anim] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reviews-track {
    animation: none;
  }

  .scroll-dot {
    animation: none;
  }

  .floating-cta {
    transition: none;
  }
}

/* ============================================================
   52. PRINT STYLES
   ============================================================ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  #navbar,
  .floating-cta,
  .nav-mobile-menu,
  .fc-overlay,
  .modal-bg {
    display: none !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
  }

  .section {
    padding: 2rem 0;
  }

  .container {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-full {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-bg,
  .hero-overlay,
  .hero-overlay-center {
    display: none;
  }

  .hero-content {
    padding-top: 0;
  }
}

/* ============================================================
   SUPPLEMENTAL — Page components for Kids, Contact, Choose-a-Class
   ============================================================ */

/* Two-column layout (image + text pairs) */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.two-col-grid--img-right .two-col-text { order: 1; }
.two-col-grid--img-right .two-col-media { order: 2; }
.two-col-grid--img-left  .two-col-text  { order: 2; }
.two-col-grid--img-left  .two-col-media { order: 1; }

.two-col-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  color: rgba(255,255,255,.82);
}
.check-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: var(--logo-silver);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* Age card enhancements */
.age-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.age-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.age-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--logo-silver);
  background: rgba(184,184,184,.1);
  border: 1px solid var(--logo-steel);
  padding: .25rem .6rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.age-card--featured {
  border-color: var(--logo-steel);
  background: var(--bg-4);
}
.age-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin: 1rem 0 1.5rem;
}
.age-card-list li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.age-card-list li::before {
  content: '–';
  color: var(--logo-steel);
  flex-shrink: 0;
}
.age-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: .04em;
}

/* Benefit card h4 fix */
.benefit-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: .5rem;
  color: #ffffff;
}

/* Schedule table */
.sched-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.sched-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.sched-table thead th {
  background: var(--bg-4);
  padding: .85rem 1.25rem;
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--logo-silver);
  border-bottom: 1px solid var(--border);
}
.sched-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .2s ease;
}
.sched-table tbody tr:hover {
  background: var(--bg-3);
}
.sched-table tbody tr:last-child {
  border-bottom: none;
}
.sched-table td {
  padding: .9rem 1.25rem;
  color: rgba(255,255,255,.8);
}
.sched-table td:first-child {
  font-weight: 600;
  color: #ffffff;
}

/* Map embed */
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(122,122,122,.1);
  border: 1px solid var(--logo-steel);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--logo-silver);
  fill: none;
}
.contact-info-item h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .35rem;
}
.contact-info-item a,
.contact-info-item address p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.contact-info-item a:hover {
  color: var(--logo-silver);
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all .2s ease;
}
.contact-social-btn:hover {
  border-color: var(--logo-steel);
  color: #ffffff;
}

/* Contact form row */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

/* Class schedule cards grid (choose-a-class) */
.class-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.class-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all .25s ease;
}
.class-card:hover {
  border-color: var(--logo-steel);
  transform: translateY(-2px);
}
.class-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.class-card-day {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.class-card-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--logo-silver);
  background: rgba(184,184,184,.08);
  border: 1px solid var(--logo-steel);
  padding: .2rem .55rem;
  border-radius: 3px;
  flex-shrink: 0;
}
.class-card-time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--logo-silver);
  line-height: 1;
}
.class-card-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.class-card .btn {
  margin-top: auto;
}
.class-panel-intro {
  text-align: center;
  font-size: .95rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Class tab icon */
.class-tab-icon {
  display: inline-flex;
  align-items: center;
  margin-right: .35rem;
  vertical-align: middle;
}
.class-tab-icon svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   RESPONSIVE — New components
   ============================================================ */
@media (max-width: 900px) {
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  .two-col-grid--img-right .two-col-text,
  .two-col-grid--img-right .two-col-media,
  .two-col-grid--img-left  .two-col-text,
  .two-col-grid--img-left  .two-col-media { order: unset; }
  .two-col-grid--img-left .two-col-media { order: -1; }
  .two-col-media img { height: 280px; }

  .age-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .parent-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .parent-benefits-grid {
    grid-template-columns: 1fr;
  }
  .class-cards-grid {
    grid-template-columns: 1fr;
  }
  .class-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   NAVIGATION DROPDOWN (Programs)
   ============================================================ */
.nav-dropdown-parent {
  position: relative;
  list-style: none;
}

.nav-dropdown-toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  transition: color 0.2s ease;
  position: relative;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--logo-silver);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-dropdown-parent:hover .nav-dropdown-toggle,
.nav-dropdown-parent.open .nav-dropdown-toggle {
  color: #ffffff;
}

.nav-dropdown-parent:hover .nav-dropdown-toggle::after,
.nav-dropdown-parent.open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown-parent:hover .nav-dropdown-toggle svg,
.nav-dropdown-parent.open   .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Desktop dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: #111111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  list-style: none;
}

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

.nav-dropdown li {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.7rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-left: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: #ffffff;
  border-left-color: var(--red);
  background: rgba(255,255,255,0.04);
}

/* Mobile menu CTA button */
.nav-mobile-menu ul::after {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: #1e1e1e;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.nav-mobile-menu .btn-primary {
  width: calc(100% - 3rem);
  max-width: 320px;
  padding: 1.125rem 2rem;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(204,0,0,0.35);
  margin-top: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nav-mobile-menu .btn-primary:hover {
  box-shadow: 0 0 28px rgba(204,0,0,0.55);
}

/* Fix 3: spacing between CTA and phone number */
/* Fix 4: "CALL US:" label container */
.mobile-phone-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
  text-decoration: none;
  transition: color 0.2s;
}

/* "CALL US:" label */
.mobile-phone-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaaaaa;
  line-height: 1;
}

/* Phone number itself */
.mobile-phone-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1;
}

.mobile-phone-link:hover .mobile-phone-number {
  color: #cccccc;
}

/* ============================================================
   MOBILE MENU — Logo + Programs Accordion
   ============================================================ */
.mobile-menu-logo-wrap {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-top: 12px !important;
  margin-top: 0 !important;
  padding-bottom: 12px;
  margin-bottom: 4px;
  width: 100%;
}

.mobile-menu-logo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: #2a2a2a;
}

.mobile-menu-logo {
  height: 74px;
  width: auto;
  object-fit: contain;
}

.mobile-dropdown-toggle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
  width: 100%;
}

.mobile-dropdown-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-dropdown-parent.open .mobile-dropdown-toggle {
  color: var(--logo-silver);
}

.mobile-dropdown-parent.open .mobile-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mobile-dropdown {
  overflow: hidden;
  max-height: 0;
  flex-direction: column;
  gap: 0;
  padding: 0;
  align-items: center;
  width: 100%;
  transition: max-height 0.25s ease-in-out;
  display: flex;
}

.mobile-dropdown-parent.open .mobile-dropdown {
  max-height: 300px;
  padding: 0.5rem 0 0.25rem;
}

.mobile-dropdown li {
  width: 100%;
  text-align: center;
  padding: 0.55rem 0;
}

.mobile-dropdown a {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #aaaaaa !important;
  letter-spacing: 0.08em;
  border-left: 2px solid #cc0000;
  padding-left: 0.75rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.mobile-dropdown a:hover,
.mobile-dropdown a:active {
  color: #cc0000 !important;
  text-shadow: 0 0 8px rgba(204, 0, 0, 0.65);
}

/* ============================================================
   SCHEDULE PAGE STYLES
   ============================================================ */

/* --- Gym Info Bar --- */
.gym-info-bar {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}

.gym-info-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.gym-info-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-transform: uppercase;
}

.gym-info-divider {
  color: var(--red);
  opacity: 0.6;
  font-size: 1rem;
  line-height: 1;
}

.gym-info-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}

.gym-info-item svg {
  color: var(--red);
  flex-shrink: 0;
}

.gym-info-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.gym-info-item a:hover {
  color: #ffffff;
}

/* --- Schedule Section Wide Container --- */
.schedule-section-wide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* --- Schedule Sub-heading --- */
.schedule-section-wide .section-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

/* --- Schedule Table (Desktop) --- */
.schedule-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
}

.schedule-full-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-family: 'Barlow Condensed', sans-serif;
}

.schedule-full-table th,
.schedule-full-table td {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.75rem 0.6rem;
  vertical-align: top;
  text-align: center;
}

.schedule-full-table thead th {
  background: #111111;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 0.9rem 0.6rem;
}

.schedule-full-table thead th:first-child {
  color: rgba(255,255,255,0.35);
}

.sched-col-time {
  background: #0d0d0d;
  min-width: 100px;
  text-align: left;
}

.sched-time-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.25rem 0;
}

.sched-empty {
  background: #0a0a0a;
}

/* --- Class Cells --- */
.sched-class {
  border-radius: 4px;
  padding: 0.6rem 0.55rem;
  display: inline-block;
  width: calc(100% - 1rem);
  text-align: left;
  font-family: 'Barlow Condensed', sans-serif;
}

.sched-class-name {
  display: block;
  font-size: 0.97rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sched-class-level {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 0.18rem;
}

.sched-class-time {
  display: block;
  font-size: 0.81rem;
  font-weight: 500;
  opacity: 0.72;
  margin-top: 0.18rem;
  letter-spacing: 0.02em;
}

/* Class type colors */
.sched-gi {
  background: rgba(180, 20, 20, 0.18);
  border-left: 3px solid #b41414;
  color: #f5b8b8;
}

.sched-nogi {
  background: rgba(20, 100, 180, 0.18);
  border-left: 3px solid #1464b4;
  color: #b8d4f5;
}

.sched-kids {
  background: rgba(20, 160, 80, 0.18);
  border-left: 3px solid #14a050;
  color: #b8f0d0;
}

.sched-fundamentals {
  background: rgba(180, 130, 20, 0.18);
  border-left: 3px solid #b48214;
  color: #f5e4b8;
}

.sched-advanced {
  background: rgba(120, 20, 180, 0.18);
  border-left: 3px solid #7814b4;
  color: #ddb8f5;
}

.sched-openmat {
  background: rgba(80, 80, 80, 0.22);
  border-left: 3px solid #888888;
  color: #d0d0d0;
}

/* --- Schedule Legend --- */
.schedule-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.25rem;
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

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

.legend-dot.dot-gi,        .legend-dot.sched-gi        { background: #b41414; border: none; }
.legend-dot.dot-nogi,      .legend-dot.sched-nogi      { background: #1464b4; border: none; }
.legend-dot.dot-kids,      .legend-dot.sched-kids      { background: #14a050; border: none; }
.legend-dot.dot-fundamentals, .legend-dot.sched-fundamentals { background: #b48214; border: none; }
.legend-dot.dot-advanced,  .legend-dot.sched-advanced  { background: #7814b4; border: none; }
.legend-dot.dot-openmat,   .legend-dot.sched-openmat   { background: #888888; border: none; }

/* --- Mobile Day Cards --- */
.schedule-mobile-cards {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.sched-day-card {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.sched-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  background: #111111;
  user-select: none;
}

.sched-day-header::-webkit-details-marker { display: none; }

.sched-day-header::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--red);
  transition: transform 0.2s;
}

details[open] .sched-day-header::after {
  content: '−';
}

.sched-day-list {
  list-style: none;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sched-day-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.03);
}

.sched-day-list .sched-class {
  width: 100%;
}

/* --- Schedule Note --- */
.schedule-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1.1rem;
  background: rgba(180,20,20,0.08);
  border: 1px solid rgba(180,20,20,0.22);
  border-radius: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.schedule-note strong {
  color: #ffffff;
}

.schedule-note a {
  color: var(--red);
  text-decoration: none;
}

.schedule-note a:hover {
  text-decoration: underline;
}

/* --- Clean Schedule Image Display --- */
.sched-image-section {
  padding: 3rem 0;
  background: #080808;
}

.sched-image-display {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  filter: none;
  image-rendering: auto;
}

@media (max-width: 767px) {
  .sched-image-display {
    border-radius: 4px;
  }
}

/* --- Atmospheric Photo Section (kept for reference) --- */
.sched-photo-section {
  position: relative;
  height: clamp(260px, 38vw, 520px);
  overflow: hidden;
}

.sched-photo-wrap {
  position: absolute;
  inset: 0;
}

.sched-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55);
}

.sched-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2.5rem clamp(1.25rem, 5vw, 4rem);
}

.sched-photo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  max-width: 640px;
}

.sched-photo-text em {
  font-style: normal;
  color: var(--red);
}

/* --- Responsive: Show mobile cards, hide table --- */
@media (max-width: 767px) {
  .schedule-table-wrap,
  .schedule-full-table {
    display: none;
  }

  .schedule-mobile-cards {
    display: flex;
  }

  .gym-info-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .gym-info-divider {
    display: none;
  }
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* --- Expect Section (numbered grid) --- */
.about-expect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .about-expect-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.about-expect-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.about-expect-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.55;
  flex-shrink: 0;
  min-width: 2.2rem;
}

.about-expect-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.about-expect-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* --- Culture Statement Card --- */
.about-culture-card {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.about-culture-card p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-style: italic;
}

/* --- Gallery Grid --- */
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.5rem;
}

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

@media (max-width: 640px) {
  .about-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
}

.about-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 4px;
  background: #111;
}

.about-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
  display: block;
}

.about-gallery-item:hover img {
  transform: scale(1.06);
}

/* --- Instructor Section --- */
.about-instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .about-instructor-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.about-instructor-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.about-instructor-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.about-instructor-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  pointer-events: none;
}

.about-instructor-content .eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}

.about-instructor-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.about-instructor-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- About CTA Split --- */
.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .about-cta-split {
    grid-template-columns: 1fr;
  }
}

.about-cta-content {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0f0f0f;
}

.about-cta-content .eyebrow {
  margin-bottom: 0.75rem;
}

.about-cta-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.about-cta-content p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about-cta-content .btn {
  align-self: flex-start;
  max-width: 240px;
  width: auto;
}

.about-cta-image {
  position: relative;
  overflow: hidden;
}

.about-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  min-height: 300px;
}

/* ============================================================
   HARD LOCK — Navbar permanence guarantee (must be last rule)
   Ensures no upstream rule, media query, or specificity war can
   remove the navbar from fixed position on any page or device.
   ============================================================ */
#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

/* ============================================================
   MOBILE NAV HARD OVERRIDE — targeted fix for mobile rendering
   (max-width: 767px covers 375px, 390px, 414px, 360px viewports)
   NOTE: Does NOT use [class*="nav"] — that broad selector would
   break .nav-mobile-menu, .nav-dropdown, .nav-links etc.
   ============================================================ */
@media (max-width: 767px) {
  /* ── Nav height with logo ── */
  :root {
    --nav-h: 72px;
  }

  /* ── Navbar bar: always fixed, always visible ── */
  nav#navbar {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #000000 !important;
    transform: none !important;
    height: var(--nav-h) !important;
    border-bottom: none !important;
  }

  nav#navbar.scrolled {
    background: #000000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  }

  /* ── Nav container: logo left, hamburger right ── */
  nav#navbar .nav-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    width: 100% !important;
    position: relative !important;
  }

  /* ── Logo: visible on far left ── */
  nav#navbar .nav-logo,
  nav#navbar.scrolled .nav-logo {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 0.6rem !important;
    position: relative !important;
    left: unset !important;
    right: unset !important;
    inset: unset !important;
    transform: none !important;
    margin: 0 !important;
    margin-right: auto !important;
    flex-shrink: 0 !important;
    order: 1 !important;
    pointer-events: auto !important;
    text-decoration: none !important;
  }

  /* ── Logo image: 42px height ── */
  nav#navbar .nav-logo-img {
    height: 42px !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
  }

  /* ── Logo text: always visible ── */
  nav#navbar .logo-text,
  nav#navbar.scrolled .logo-text {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: none !important;
    overflow: visible !important;
    transition: none !important;
  }

  /* ── Hamburger: far right — display:flex beats any FOUC class rule ── */
  nav#navbar .nav-hamburger {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    left: unset !important;
    right: unset !important;
    transform: none !important;
    margin: 0 !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
    order: 2 !important;
  }

  /* ── Push page content below the fixed nav ── */
  body {
    padding-top: 55px !important;
  }

  /* ── Mobile open menu: hide in-menu logo (logo is already in the nav bar) ── */
  .mobile-menu-logo-wrap {
    display: none !important;
  }

  /* ── Mobile open menu: links start near top of screen ── */
  .nav-mobile-menu {
    inset: var(--nav-h) 0 0 0 !important;
    padding-top: 0 !important;
  }

  .nav-mobile-menu ul {
    padding-top: 16px !important;
    margin-top: 0 !important;
  }
}

/* ============================================================
   ANTI-FOUC — no transitions on first render cycle
   ============================================================ */
.no-transition,
.no-transition * {
  transition: none !important;
  animation: none !important;
}

/* Desktop: hamburger never visible */
html.is-desktop .nav-hamburger {
  display: none !important;
}

/* Mobile: desktop-only nav elements never visible */
html.is-mobile .nav-links,
html.is-mobile .nav-right {
  display: none !important;
}

/* ============================================================
   GLOBAL SPACING SYSTEM — Prompt 42
   Consistent breathing room across all pages and sections.
   ============================================================ */

/* ── Section padding ── */
/* .section class uses !important to override its own clamp() value */
.section {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* Bare <section> elements without .section class get padding without
   !important so their own class rules can still override (e.g. .cta-banner) */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 1024px) {
  .section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* ── Section heading & eyebrow spacing ── */
.section-title {
  margin-bottom: 32px !important;
}

.eyebrow {
  margin-bottom: 10px !important;
}

/* ── Subtle divider between consecutive dark .section blocks ── */
.section {
  border-bottom: 1px solid #1e1e1e;
}

/* Remove divider from the last section before footer and the CTA banner */
.cta-banner,
.cta-banner + section {
  border-bottom: none;
}

/* ── Card & icon grid gaps ──
   Excludes .two-col-grid (handled separately below) */
[class*="grid"]:not(.two-col-grid) {
  gap: 24px !important;
}

@media (max-width: 767px) {
  [class*="grid"]:not(.two-col-grid) {
    gap: 16px !important;
  }
}

/* ── Two-column split layout gap ──
   Excludes .kids-gains-split (edge-to-edge image, no gap wanted) */
.two-col-grid,
[class*="two-column"],
[class*="split"]:not(.kids-gains-split) {
  gap: 48px !important;
}

@media (max-width: 767px) {
  .two-col-grid,
  [class*="two-column"],
  [class*="split"]:not(.kids-gains-split) {
    gap: 32px !important;
  }
}

/* ── Body text: line height and paragraph spacing ── */
p {
  line-height: 1.75 !important;
  margin-bottom: 16px !important;
}

/* Keep modal form compact — undo paragraph spacing inside the lead form */
.fc-overlay p,
.fc-header p,
.fc-disclaimer {
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

/* ============================================================
   ── 2026 REFRESH ── New sections inspired by 10P Columbus
   Keeps Ares color palette (red #dc2626, charcoal/silver) and
   fonts (Barlow Condensed + Inter). Layered on top of the
   existing system without removing legacy classes.
   ============================================================ */

/* ── Navbar safety: force-visible on every viewport (in case any
   earlier rule or FOUC state inadvertently hides nav contents) ── */
nav#navbar,
nav#navbar .nav-container,
nav#navbar .nav-logo,
nav#navbar .nav-logo-img,
nav#navbar .logo-text,
nav#navbar .nav-links,
nav#navbar .nav-links a,
nav#navbar .nav-right,
nav#navbar .nav-phone {
  visibility: visible !important;
  opacity: 1 !important;
}
nav#navbar { display: block !important; }
nav#navbar .nav-container { display: flex !important; }
nav#navbar .nav-logo { display: flex !important; }
nav#navbar .logo-text { display: flex !important; }

/* Desktop layout: links + right cluster shown side-by-side */
@media (min-width: 768px) {
  /* Use a 3-column grid so the center column (nav links) is always
     truly centered, regardless of whether the logo or the right
     cluster (phone + CTA) is wider. */
  nav#navbar .nav-container {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 1.5rem;
    align-items: center;
  }
  nav#navbar .nav-logo  { justify-self: start; }
  nav#navbar .nav-links {
    display: flex !important;
    justify-self: center;
    flex: initial;
    width: auto;
  }
  nav#navbar .nav-right {
    display: flex !important;
    justify-self: end;
  }
  nav#navbar .nav-hamburger { display: none !important; }
}

/* ── Hero HUD viewfinder overlay (camera-style) ── */
.hero-hud {
  position: absolute;
  z-index: 5;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-hud .hud-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.25);
  animation: hud-blink 2s infinite ease-in-out;
}
@keyframes hud-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-hud--tl { top: calc(var(--nav-h) + 16px); left: clamp(1rem, 4vw, 2.5rem); }
.hero-hud--tr { top: calc(var(--nav-h) + 16px); right: clamp(1rem, 4vw, 2.5rem); }
.hero-hud--bl { bottom: 24px; left: clamp(1rem, 4vw, 2.5rem); }
.hero-hud--br { bottom: 24px; right: clamp(1rem, 4vw, 2.5rem); }

.hero-hud-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  z-index: 4;
  pointer-events: none;
}
.hero-hud-corner--tl { top: calc(var(--nav-h) + 8px); left: clamp(0.5rem, 3vw, 1.75rem); border-right: 0; border-bottom: 0; }
.hero-hud-corner--tr { top: calc(var(--nav-h) + 8px); right: clamp(0.5rem, 3vw, 1.75rem); border-left: 0; border-bottom: 0; }
.hero-hud-corner--bl { bottom: 16px; left: clamp(0.5rem, 3vw, 1.75rem); border-right: 0; border-top: 0; }
.hero-hud-corner--br { bottom: 16px; right: clamp(0.5rem, 3vw, 1.75rem); border-left: 0; border-top: 0; }

@media (max-width: 700px) {
  .hero-hud { font-size: 0.6rem; }
  .hero-hud--tr, .hero-hud--br { display: none; }
}

/* ── Video Feature Section (homepage in-line video) ── */
.video-feature {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.video-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(220, 38, 38, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(184, 184, 184, 0.05), transparent 50%);
  pointer-events: none;
}
.video-feature .container { position: relative; z-index: 2; }
.video-feature-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.video-feature-header .eyebrow { color: var(--red); }
.video-feature-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.6rem 0 1rem;
}
.video-feature-header p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.video-feature-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px var(--border),
    0 0 0 6px rgba(220, 38, 38, 0.08);
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-feature-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-feature-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(220, 38, 38, 0.12) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.video-feature-hud {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}
.video-feature-hud .hud-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: hud-blink 1.8s infinite ease-in-out;
}
.video-feature-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Programs SPLIT (2 big cards inspired by 10P) ── */
.programs-split {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.programs-split-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.programs-split-header .eyebrow { color: var(--red); }
.programs-split-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.6rem 0 1rem;
}
.programs-split-header p { color: var(--muted); font-size: 1.05rem; }
.programs-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 860px) {
  .programs-split-grid { grid-template-columns: 1fr; }
}
.split-card {
  position: relative;
  min-height: 540px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  background: var(--bg-3);
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.split-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.split-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}
.split-card:hover .split-card-bg { transform: scale(1.05); }
.split-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(8, 8, 8, 0.97) 100%);
}
.split-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
}
.split-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #ffffff;
  padding: 6px 12px;
  background: var(--red);
  border: 1px solid var(--red-dark);
  border-radius: 2px;
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.split-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.split-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin: 0 0 1.25rem;
  max-width: 38ch;
}
.split-card-ticker {
  overflow: hidden;
  width: 100%;
  margin: 0 0 1.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
}
.split-card-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 14s linear infinite;
}
.split-card-ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 0 0.65rem;
}
.split-card-ticker-track .ticker-sep {
  color: var(--red);
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.split-card-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Coach Bio Section (featured instructor) ── */
.coach-bio {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.coach-bio-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 860px) {
  .coach-bio-wrap { grid-template-columns: 1fr; }
}
.coach-bio-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  background: var(--bg-3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}
.coach-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-bio-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}
.coach-bio-photo .hero-hud {
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
}
.coach-bio-photo-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--red);
}
.coach-bio-text .eyebrow { color: var(--red); }
.coach-bio-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0.6rem 0 1rem;
}
.coach-bio-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.coach-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.coach-credentials li {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
}
.coach-bio-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ── FAQ Accordion Section ── */
.faq-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.faq-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.faq-section-header .eyebrow { color: var(--red); }
.faq-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.6rem 0 1rem;
}
.faq-section-header p { color: var(--muted); }
.faq-section-header a { color: var(--red); border-bottom: 1px solid rgba(220, 38, 38, 0.4); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq-item[open] { border-color: rgba(220, 38, 38, 0.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--red);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body {
  padding: 0 1.4rem 1.3rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

/* ── Final Big CTA (10P-style minimal) ── */
.cta-bigfinal {
  position: relative;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.08) 0%, rgba(8, 8, 8, 1) 100%),
    var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.cta-bigfinal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(220, 38, 38, 0.15), transparent 60%);
  pointer-events: none;
}
.cta-bigfinal .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-bigfinal .eyebrow { color: var(--red); }
.cta-bigfinal h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0.6rem auto 1rem;
  max-width: 14ch;
}
.cta-bigfinal p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.cta-bigfinal-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-bigfinal-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.cta-bigfinal-phone:hover { border-color: var(--red); color: #fff; }

/* ── About snippet: bump body text size for legibility ── */
#about-snippet .about-content-col p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 64ch;
  margin-inline: auto;
}

/* ── Why Ares: bold photo background with dark overlay ── */
.why-ares {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(8, 8, 8, 0.92) 0%,
      rgba(8, 8, 8, 0.78) 50%,
      rgba(8, 8, 8, 0.95) 100%),
    image-set(url('../images/gallery-3.webp') type('image/webp'), url('../images/gallery-3.jpg') type('image/jpeg')) center/cover no-repeat fixed;
  isolation: isolate;
  overflow: hidden;
}
.why-ares::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(220, 38, 38, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(184, 184, 184, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.why-ares::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.why-ares .container { position: relative; z-index: 1; }

/* Why cards on the photo: darker translucent base for contrast */
.why-ares .why-card {
  background: rgba(15, 15, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.why-ares .why-card:hover {
  background: rgba(20, 20, 20, 0.92);
  border-color: rgba(220, 38, 38, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Disable parallax-style fixed background on touch devices (laggy on iOS) */
@media (hover: none), (max-width: 900px) {
  .why-ares {
    background-attachment: scroll;
  }
}

/* ============================================================
   ── LIGHT SECTION MODIFIER ──
   Inverted theme for sections that benefit from a paper-on-dark
   break in the all-black layout. Keeps the brand red accent so the
   visual identity stays consistent across light/dark sections.
   ============================================================ */
.section--light {
  background: #ffffff !important;
  color: #1a1a1a;
  position: relative;
}
.section--light::before {
  /* Subtle top/bottom shadows so the white slab looks deliberately
     "lifted" off the dark sections above/below it. */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow:
    inset 0 18px 30px -18px rgba(0, 0, 0, 0.35),
    inset 0 -18px 30px -18px rgba(0, 0, 0, 0.35);
}
.section--light > * { position: relative; z-index: 1; }

/* Headings + body type on light background */
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5 {
  color: #0f0f0f;
}
.section--light h2 .red,
.section--light h3 .red,
.section--light .accent { color: var(--red); }

.section--light p,
.section--light li,
.section--light address,
.section--light .section-header p {
  color: #2a2a2a;
}
.section--light .eyebrow {
  color: var(--red);
  letter-spacing: 0.28em;
}

/* Specific overrides for the About snippet on a light slab */
.section--light .about-content-col p {
  color: #2a2a2a !important;  /* override the 2026-refresh override */
}

/* Links inside light sections */
.section--light a:not(.btn) {
  color: var(--red);
  border-bottom-color: rgba(220, 38, 38, 0.35);
}
.section--light a:not(.btn):hover {
  color: var(--red-dark);
  border-bottom-color: var(--red-dark);
}

/* Buttons / outline buttons need contrast adjustments on white */
.section--light .btn-outline {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.section--light .btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}
.section--light .btn-black {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* FAQ accordion on a light slab — invert the dark card chrome */
.section--light .faq-section-header h2 { color: #0f0f0f; }
.section--light .faq-section-header p   { color: #4a4a4a; }
.section--light .faq-section-header a   {
  color: var(--red);
  border-bottom: 1px solid rgba(220, 38, 38, 0.4);
}
.section--light .faq-list .faq-item,
.section--light .faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.section--light .faq-item[open] {
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.section--light .faq-item summary {
  color: #0f0f0f;
}
.section--light .faq-item summary::after { color: var(--red); }
.section--light .faq-item-body {
  color: #3a3a3a;
}
.section--light .faq-item-body a { color: var(--red); }

/* Legacy FAQ markup pattern (button.faq-q + div.faq-a) used on the
   Kids Jiu-Jitsu page. Without these overrides the button text stays
   white-on-white and the questions look blank. */
.section--light .faq-list .faq-item .faq-q {
  color: #0f0f0f;
  background: transparent;
}
.section--light .faq-list .faq-item .faq-q::after { color: var(--red); }
.section--light .faq-list .faq-item .faq-a {
  color: #3a3a3a;
}
.section--light .faq-list .faq-item .faq-a p {
  color: #3a3a3a;
}
.section--light .faq-list .faq-item .faq-a a { color: var(--red); }

/* Cards / pill chips on light backgrounds */
.section--light .why-card,
.section--light .step-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.section--light .why-card h3,
.section--light .step-item .step-body h4,
.section--light .step-item .step-body h3 { color: #0f0f0f; }
.section--light .why-card p,
.section--light .step-item .step-body p { color: #4a4a4a; }
.section--light .why-icon {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}
.section--light .why-icon svg { stroke: #1a1a1a; }

/* Step-timeline connector + circle treatment on white */
.section--light .steps-timeline::before { background: rgba(0, 0, 0, 0.15); }
.section--light .step-item .step-num {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--red);
  box-shadow: 0 0 0 6px #f6f6f6;
}

/* About-snippet "Learn More" link on light bg */
.section--light .about-more-link {
  color: var(--red);
  border-bottom: 1px solid rgba(220, 38, 38, 0.45);
}

/* Forms (Contact, etc.) on a light slab — invert input chrome so the
   placeholders, borders, and typed text are legible on white.
   !important added so nothing in the dark-theme cascade can win. */
.section--light .form-field label,
.section--light .contact-form label {
  color: #4a4a4a !important;
}
.section--light .form-field input,
.section--light .form-field select,
.section--light .form-field textarea,
.section--light .contact-form input,
.section--light .contact-form select,
.section--light .contact-form textarea {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.22) !important;
  color: #0f0f0f !important;
}
.section--light .form-field input::placeholder,
.section--light .form-field textarea::placeholder,
.section--light .contact-form input::placeholder,
.section--light .contact-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.45) !important;
}
.section--light .form-field input:focus,
.section--light .form-field select:focus,
.section--light .form-field textarea:focus,
.section--light .contact-form input:focus,
.section--light .contact-form select:focus,
.section--light .contact-form textarea:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}
.section--light .form-field select option {
  background: #ffffff;
  color: #0f0f0f;
}

/* Contact-page content column (icons, headings, descriptions) on white */
.section--light .contact-details h2,
.section--light .contact-details h2 span,
.section--light .contact-details .accent {
  color: #0f0f0f;
}
.section--light .contact-details > p,
.section--light .contact-info-item p,
.section--light .contact-info-item address,
.section--light .contact-info-item h3,
.section--light .contact-h {
  color: #2a2a2a !important;
}
.section--light .contact-info-item .contact-icon {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1a1a1a;
}
.section--light .contact-info-item .contact-icon svg { stroke: #1a1a1a; }
.section--light .contact-info-item a { color: var(--red); }
.section--light .contact-info-item a:hover { color: var(--red-dark); }

/* Hide / re-color the inline muted gray paragraph in the contact intro */
.section--light .contact-details p[style*="muted"] {
  color: #4a4a4a !important;
}

/* ── Booking page (calendar embed) ── */
.booking-hero { min-height: 30vh; }
.booking-section { scroll-margin-top: calc(var(--nav-h) + 12px); }
.booking-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg);
}
.booking-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.booking-section-header .eyebrow { color: var(--red); }
.booking-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.5rem 0 0.75rem;
}
.booking-section-header p { color: var(--muted); font-size: 1.05rem; }

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 720px;
  margin: 0 auto 2rem;
}
.booking-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.booking-tab svg { stroke: rgba(255, 255, 255, 0.6); }
.booking-tab small {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}
.booking-tab:hover {
  border-color: rgba(220, 38, 38, 0.45);
  background: rgba(220, 38, 38, 0.06);
  color: #fff;
}
.booking-tab.is-active {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.12);
  color: #fff;
  box-shadow: 0 0 0 1px var(--red) inset;
}
.booking-tab.is-active svg { stroke: var(--red); }
.booking-tab.is-active small { color: rgba(255, 255, 255, 0.7); }

.booking-pane[hidden] { display: none; }
.booking-pane {
  max-width: 980px;
  margin: 0 auto;
}
.booking-pane-meta {
  text-align: center;
  margin-bottom: 1.25rem;
}
.booking-pane-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #fff;
  background: var(--red);
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.booking-pane-meta h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.booking-pane-meta p { color: var(--muted); font-size: 1rem; }

.booking-calendar-frame {
  position: relative;
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.booking-calendar-frame iframe {
  display: block;
  width: 100%;
  /* Safe floor that covers the WIDGET'S TALLEST STATE (the booking
     details form with the confirm button visible). The postMessage
     listener can grow the iframe further but never shrink below this. */
  min-height: 1200px;
  border: 0;
}
/* Adult widget has a longer details-form step (more fields)
   than the Kids widget, so it needs more headroom. */
.booking-calendar-frame iframe[data-program="adult"] {
  min-height: 1450px;
}
@media (max-width: 1024px) {
  .booking-calendar-frame iframe { min-height: 1320px; }
  .booking-calendar-frame iframe[data-program="adult"] { min-height: 1600px; }
}
@media (max-width: 700px) {
  .booking-calendar-frame iframe { min-height: 1550px; }
  .booking-calendar-frame iframe[data-program="adult"] { min-height: 1850px; }
}
@media (max-width: 480px) {
  .booking-calendar-frame iframe { min-height: 1750px; }
  .booking-calendar-frame iframe[data-program="adult"] { min-height: 2050px; }
}

.booking-reassurance {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 980px;
  margin: 2.5rem auto 0;
  padding: 0;
}
@media (max-width: 700px) {
  .booking-reassurance { grid-template-columns: 1fr; }
}
.booking-reassurance li {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.booking-reassurance strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #fff;
}
.booking-reassurance span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.booking-help {
  text-align: center;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.booking-help a { color: var(--red); border-bottom: 1px solid rgba(220, 38, 38, 0.4); }

/* ── Kids page: steps-timeline fix (HTML uses .step-item / .step-body
   rather than the legacy .step / .step-title / .step-desc classes) ── */
.steps-timeline .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.steps-timeline .step-item .step-num {
  position: relative;
  z-index: 2;
  /* Solid halo masks the horizontal connector line behind it */
  box-shadow: 0 0 0 6px var(--bg);
  background: var(--bg-3);
}
.steps-timeline .step-item .step-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: #ffffff;
}
.steps-timeline .step-item .step-body p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
/* On narrow screens the timeline stacks vertically — hide the connector */
@media (max-width: 768px) {
  .steps-timeline {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .steps-timeline::before { display: none; }
  .steps-timeline .step-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
  }
  .steps-timeline .step-item .step-num { margin-bottom: 0; }
}

/* ── Kids page: FAQ (.faq-q button / .faq-a div) was missing styles,
   making the question text near-invisible. Add the styles + a tiny
   toggle so the existing markup works without JS rewiring. ── */
.faq-list .faq-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: border-color 0.25s var(--ease);
}
.faq-list .faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(220, 38, 38, 0.45);
}
.faq-list .faq-item .faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.05rem 1.4rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: left;
}
.faq-list .faq-item .faq-q::after {
  content: '+';
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--red);
  line-height: 1;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq-list .faq-item .faq-q[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq-list .faq-item .faq-a {
  padding: 0 1.4rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
}
.faq-list .faq-item .faq-a p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

/* ── "Powered By MMA Marketing Pro" credit in footer-bottom ── */
.footer-powered {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 0.6rem;
  order: -1;
}
.footer-powered a {
  color: var(--red);
  border-bottom: 1px solid rgba(220, 38, 38, 0.35);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-powered a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ── Programmatic SEO location pages ── */
.location-hero { min-height: 48vh; }

.location-stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.location-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
@media (max-width: 700px) {
  .location-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.location-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.location-stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.location-stat span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
}

.location-intro h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.location-intro-body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.location-intro-body p {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.1rem;
}

.location-directions {
  background: var(--bg-2);
}
.location-directions-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .location-directions-grid { grid-template-columns: 1fr; }
}
.location-directions h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.5rem 0 0.9rem;
}
.location-directions p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  font-size: 1rem;
}
.location-landmarks-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 1.25rem 0 0.6rem;
  color: rgba(255, 255, 255, 0.92);
}
.location-landmarks {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.location-landmarks li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--red);
  border-radius: 2px;
}
.location-served {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.location-served strong { color: #fff; font-weight: 600; }
.location-map-block {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  min-height: 380px;
  background: var(--bg-3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.location-why { background: var(--bg); }
.location-benefits {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .location-benefits { grid-template-columns: 1fr; }
}
.location-benefits li {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 3px;
  padding: 0.95rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.location-benefits strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #fff;
}
.location-benefits span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.location-nearby {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--bg-2);
}
.location-nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .location-nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .location-nearby-grid { grid-template-columns: 1fr; }
}
.location-nearby-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.location-nearby-chip:hover {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.08);
}
.location-nearby-chip strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.location-nearby-chip span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
}

/* ── Hub page (locations/index.html) ── */
.location-hub-intro h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.5rem 0 0.75rem;
}
.location-hub-grid-section { background: var(--bg); }
.location-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .location-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .location-hub-grid { grid-template-columns: 1fr; }
}
.location-hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.4rem 1.5rem 1.6rem;
  color: rgba(255, 255, 255, 0.92);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.location-hub-card:hover {
  border-color: var(--red);
  background: rgba(220, 38, 38, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.location-hub-card-tag {
  align-self: flex-start;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--red);
  padding: 4px 8px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 2px;
}
.location-hub-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
}
.location-hub-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.location-hub-card-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--red);
  margin-top: 0.4rem;
}

/* ── Subpage Hero polish (HUD-style top tag) ── */
.subpage-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  padding: 7px 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.subpage-hero-eyebrow .hud-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red);
  animation: hud-blink 1.8s infinite ease-in-out;
}

/* ============================================================
   END OF styles.css — ARES BJJ OMAHA
   ============================================================ */
