/* ============================================
   LVLUP Martial Arts — OTF-Inspired Design
   White / Blue / Black / Silver
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --charcoal: #2a2a2a;
  --gray-700: #404040;
  --gray-500: #6b6b6b;
  --gray-300: #b0b0b0;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --silver: #c0c0c0;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Scroll offset for fixed header */
[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

/* --- Promo Banner --- */
.promo-banner {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1001;
}

.promo-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--ease);
}

.header--has-banner { top: 38px; }

.header--scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0 !important;
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.875rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
}

.logo--large {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.logo--large img {
  height: 80px;
}

.logo--hero {
  justify-content: center;
}
.logo--hero img {
  height: 120px;
  margin-bottom: 2rem;
}

.logo--modal {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.logo--modal img {
  height: 60px;
  width: auto;
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__links { display: flex; gap: 1.75rem; }

.nav__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--ease);
}

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

.nav__cta {
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 0;
  transition: var(--ease);
  display: inline-block;
}

.nav__cta:hover {
  background: var(--blue-dark);
  transform: scale(1.02);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
}

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

.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Hero (OTF-style full bleed) --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: 140%;
  background-position: 15% 30%;
  opacity: 0.4;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.35;
  object-fit: cover;
}

.hero__sound-hint {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero__sound-label {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  opacity: 1;
  transition: opacity 0.6s ease;
  white-space: nowrap;
}

.hero__sound-label.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__sound-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  animation: sound-pulse 2s ease-in-out infinite;
}

.hero__sound-toggle:hover {
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.4);
}

.hero__sound-toggle.is-unmuted {
  animation: none;
}

@keyframes sound-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255,255,255,0);
  }
}

.hero__sound-toggle svg {
  width: 20px;
  height: 20px;
}

.hero__sound-toggle .sound-icon--on {
  display: none;
}

.hero__sound-toggle.is-unmuted .sound-icon--off {
  display: none;
}

.hero__sound-toggle.is-unmuted .sound-icon--on {
  display: block;
}

/* Sound hint smaller on mobile */
@media (max-width: 768px) {
  .hero__sound-hint {
    font-size: 0.6875rem;
    bottom: 60px;
    right: 12px;
  }
  .hero__sound-toggle {
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.4) 40%,
    rgba(10,10,10,0.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: 8rem 2rem 6rem;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1;
}

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

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__cta {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 1.125rem 3rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  transition: var(--ease);
}

.hero__cta:hover {
  background: var(--blue-dark);
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-bar__item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: var(--blue);
}

.stats-bar__icon svg {
  width: 28px;
  height: 28px;
}

.stats-bar__number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stats-bar__number span { color: var(--blue); }

.stats-bar__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  font-weight: 600;
}

/* Google stars in stats bar */
.stats-bar__stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  height: 40px;
  margin: 0 auto 0.75rem;
}

.stats-bar__stars svg {
  width: 18px;
  height: 18px;
  fill: #facc15;
}

.stats-bar__google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.stats-bar__google svg {
  width: 14px;
  height: 14px;
}

/* --- Section Shared --- */
.section {
  padding: 6rem 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--gray {
  background: var(--gray-100);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide {
  max-width: 1400px;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section__subtitle { margin-left: auto; margin-right: auto; }

/* --- Programs (OTF-style alternating rows) --- */
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}

.program-row--reverse .program-row__image { order: 2; }
.program-row--reverse .program-row__content { order: 1; }

.program-row__image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.program-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.program-row__age {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.3rem 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.program-row__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.program-row__text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 450px;
}

.program-row__cta {
  align-self: flex-start;
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: var(--ease);
}

.program-row__cta:hover {
  background: var(--charcoal);
}

.section--dark .program-row__content { color: var(--white); }
.section--dark .program-row__text { color: var(--gray-300); }
.section--dark .program-row__cta { background: var(--blue); }
.section--dark .program-row__cta:hover { background: var(--blue-dark); }

/* --- Photo Feature Section --- */
.photo-feature {
  padding: 0;
}

.photo-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.photo-feature__image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
}

.photo-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem;
  background: var(--black);
  color: var(--white);
}

.photo-feature__content .section__title {
  color: var(--white);
}

.photo-feature__text {
  font-size: 1.0625rem;
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.photo-feature__content .program-row__cta {
  background: var(--blue);
  align-self: flex-start;
}

.photo-feature__content .program-row__cta:hover {
  background: var(--blue-dark);
}

@media (max-width: 768px) {
  .photo-feature__grid {
    grid-template-columns: 1fr;
  }
  .photo-feature__image {
    min-height: 300px;
  }
  .photo-feature__content {
    padding: 3rem 2rem;
  }
}

/* Reviews summary */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}

.reviews-summary__stars {
  display: inline-flex;
  gap: 2px;
}

.reviews-summary__text {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.reviews-summary__google-logo {
  display: inline-block;
  vertical-align: middle;
}

/* --- Founder Section --- */
.founder {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.founder__images {
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founder__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  position: relative;
}

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

.founder__image--main {
  height: 340px;
}

.founder__image--main img {
  object-position: center 20%;
}

.founder__image--secondary img {
  object-position: center 35%;
}

.founder__image--secondary {
  height: 200px;
}

.founder__image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 1.5rem 1rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.founder__content {
  flex: 1;
}

.founder__bio {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.founder__bio em {
  font-style: italic;
}

/* --- Core Values Section --- */
.values-section {
  background: var(--dark);
  padding: 5rem 0;
}

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

.values-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--ease);
}

.values-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.values-card__icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  color: var(--blue);
}

.values-card__icon svg {
  width: 100%;
  height: 100%;
}

.values-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.values-card__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* --- FAQ Section --- */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--gray-100);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  line-height: 1.4;
  transition: var(--ease);
}

.faq-item__question:hover {
  color: var(--blue);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: var(--gray-500);
}

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

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

.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-item__answer p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.8;
}

/* --- CTA Guarantee --- */
.cta-section__guarantee {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* --- Featured Review --- */
.review-featured {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-100);
}

.review-featured__image {
  flex: 0 0 380px;
  min-height: 340px;
  overflow: hidden;
}

.review-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-featured__content {
  padding: 2.5rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-featured__stars {
  color: #facc15;
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-bottom: 1.25rem;
}

.review-featured__quote {
  font-size: 1.2rem;
  color: var(--gray-700);
  line-height: 1.9;
  font-style: italic;
  margin: 0 0 1.5rem;
  border: none;
  padding: 0;
}

.review-featured__author {
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.review-featured__author strong {
  font-weight: 700;
}

/* --- Review Mini Grid --- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-mini {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.review-mini:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.review-mini__stars {
  color: #facc15;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-mini__text {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  flex: 1;
}

.review-mini__author {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--dark);
}

.review-mini__author span {
  font-weight: 400;
  color: var(--gray-500);
}

.testimonial-card__google {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--ease);
}

.testimonial-card__google:hover {
  opacity: 0.7;
}


/* --- Locations (OTF-style cards) --- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.location-block {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--gray-100);
  transition: var(--ease);
  position: relative;
}

.location-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: var(--ease);
}

.location-block:hover::before {
  transform: scaleX(1);
}

.location-block:last-child { border-right: none; }

.location-block:hover {
  background: var(--gray-100);
}

.location-block__name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.location-block__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}

.location-block__detail svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  color: var(--blue);
  margin-top: 2px;
}

.location-block__cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: var(--ease);
}

.location-block__cta:hover { background: var(--charcoal); }

/* --- CTA Section (full-width blue) --- */
.cta-section {
  background: var(--blue);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section--photo .container {
  position: relative;
  z-index: 2;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, 0.82);
  z-index: 1;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-section__btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: var(--ease);
}

.cta-section__btn:hover {
  background: var(--gray-100);
  transform: scale(1.02);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-desc {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gray-300);
}

.footer__link {
  display: block;
  color: var(--gray-500);
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  transition: var(--ease);
}

.footer__link:hover { color: var(--white); }

.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  color: var(--gray-300);
  transition: var(--ease);
}

.footer__social:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.8125rem; color: var(--gray-500); }
.footer__bottom-links a:hover { color: var(--white); }

/* --- Lead Capture Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease);
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 3rem;
  position: relative;
  transform: translateY(20px);
  transition: var(--ease);
  margin: auto;
  max-height: 95vh;
  overflow-y: auto;
}

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

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-500);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}

.modal__close:hover { color: var(--dark); }

/* Modal offer header */
.modal__offer-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal__offer-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.375rem 1rem;
  margin-bottom: 1rem;
}

.modal__title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.modal__price {
  color: var(--blue);
}

.modal__offer-perk {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.modal__subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Modal steps */
.modal__step {
  margin-top: 0.5rem;
}

.modal__select-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
  text-align: center;
}

.modal__program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}

.modal__program-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  background: var(--gray-100);
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: var(--ease);
  text-align: center;
  min-height: 70px;
}

.modal__program-btn span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.modal__program-btn:hover {
  border-color: var(--blue);
  background: var(--white);
}

/* Location selector grid */
.modal__location-grid {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.modal__location-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--gray-100);
  border: 2px solid transparent;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--ease);
  text-align: center;
}

.modal__location-btn strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.modal__location-btn span {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.125rem;
}

.modal__location-btn:hover {
  border-color: var(--blue);
  background: var(--white);
}

.modal__back-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.8125rem;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  font-weight: 500;
  transition: var(--ease);
}

.modal__back-btn:hover {
  color: var(--blue-dark);
}

.modal__back-btn.hidden {
  display: none;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: 1fr; }
  .location-block { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .location-block:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .founder { gap: 3rem; }
  .founder__images { flex: 0 0 360px; }
}

@media (max-width: 768px) {
  /* --- Navigation --- */
  .nav__links, .nav .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .header__inner { padding: 0.75rem 1.25rem; }
  .logo img { height: 44px; }

  /* --- Promo Banner --- */
  .promo-banner { font-size: 0.75rem; padding: 0.5rem 1rem; }
  .header--has-banner { top: 32px; }

  /* --- Hero --- */
  .hero { min-height: 100svh; }
  .hero__content { padding: 4rem 1.5rem 3.5rem; max-width: 100%; box-sizing: border-box; }
  .hero__title { font-size: 2.75rem; margin-bottom: 1.25rem; }
  .logo--hero img { height: 80px; margin-bottom: 1.25rem; }
  .hero__eyebrow { font-size: 0.6875rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
  .hero__subtitle { font-size: 1.05rem; line-height: 1.6; margin-bottom: 2rem; }
  .hero__cta { padding: 1rem 2.5rem; font-size: 0.875rem; width: 100%; max-width: 320px; text-align: center; }

  /* --- Stats Bar --- */
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { padding: 1.5rem 0.75rem; }
  .stats-bar__number { font-size: 2.25rem; }
  .stats-bar__label { font-size: 0.6875rem; }

  /* --- Section Shared --- */
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .section__title { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .section__subtitle { font-size: 0.9375rem; margin-bottom: 2rem; }

  /* --- Programs --- */
  .program-row { grid-template-columns: 1fr; min-height: auto; }
  .program-row--reverse .program-row__image { order: 0; }
  .program-row--reverse .program-row__content { order: 0; }
  .program-row__image { min-height: 240px; }
  .program-row__content { padding: 2rem 1.25rem; }
  .program-row__title { font-size: 1.625rem; }
  .program-row__text { font-size: 0.9375rem; line-height: 1.7; }
  .program-row__cta { padding: 0.875rem 2rem; width: 100%; text-align: center; }

  /* --- Photo Feature --- */
  .photo-feature__content { padding: 2.5rem 1.25rem; }
  .photo-feature__text { font-size: 0.9375rem; }

  /* --- Founder --- */
  .founder { flex-direction: column; gap: 2rem; }
  .founder__images {
    flex: none;
    max-width: 100%;
  }
  .founder__image--main { height: 280px; }
  .founder__image--secondary { height: 180px; }
  .founder__content { text-align: left; }
  .founder__bio { font-size: 0.9375rem; line-height: 1.7; }

  /* --- Values --- */
  .values-section { padding: 3.5rem 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .values-card { padding: 1.5rem 1rem; }
  .values-card__title { font-size: 1.05rem; }
  .values-card__text { font-size: 0.8125rem; }

  /* --- Reviews --- */
  .review-featured { flex-direction: column; }
  .review-featured__image { flex: none; height: 260px; }
  .review-featured__content { padding: 1.75rem 1.5rem; }
  .review-featured__stars { font-size: 1.25rem; margin-bottom: 1rem; }
  .review-featured__quote { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; }
  .review-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .review-mini { padding: 1.25rem; }
  .review-mini__text { font-size: 0.8125rem; }

  /* --- FAQ --- */
  .faq-item__question { font-size: 0.9375rem; padding: 1.25rem 0; }
  .faq-item__answer p { font-size: 0.875rem; }

  /* --- Locations --- */
  .location-block { padding: 2rem 1.25rem; }
  .location-block__name { font-size: 1.25rem; }
  .location-block__cta { width: 100%; text-align: center; }

  /* --- CTA Section --- */
  .cta-section { padding: 3.5rem 0; }
  .cta-section h2 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .cta-section p { font-size: 1rem; padding: 0 0.5rem; }
  .cta-section__btn { width: 100%; max-width: 320px; text-align: center; padding: 1rem 2rem; }
  .cta-section__guarantee { font-size: 0.8125rem; padding: 0 0.5rem; }
  .logo--large img { height: 60px; }

  /* --- Footer --- */
  .footer { padding: 3rem 0 1.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer__brand-desc { font-size: 0.875rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* --- Modal --- */
  .modal { padding: 2rem 1.25rem; max-width: 100%; margin: 0.5rem; }
  .modal__title { font-size: 1.5rem; }
  .modal__program-grid { gap: 0.5rem; }
  .modal__program-btn { min-height: 60px; padding: 0.75rem 0.5rem; }
  .modal__location-btn { padding: 0.875rem; }

  /* --- Mobile Nav --- */
  .mobile-nav a { font-size: 1.125rem; }
  .mobile-nav .nav__cta { width: 80%; max-width: 280px; text-align: center; display: block; padding: 1rem; }
}

@media (max-width: 480px) {
  /* --- Hero tighter --- */
  .hero__content { padding: 1.5rem 1.25rem 3rem; }
  .hero__title { font-size: 2rem; }
  .logo--hero img { height: 64px; margin-bottom: 1rem; }
  .hero__subtitle { font-size: 0.9375rem; }
  .hero__cta { max-width: 100%; }

  /* --- Stats --- */
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stats-bar__number { font-size: 1.75rem; }
  .stats-bar__item { padding: 1.25rem 0.5rem; }

  /* --- Programs --- */
  .program-row__image { min-height: 200px; }
  .program-row__content { padding: 1.75rem 1rem; }
  .program-row__title { font-size: 1.375rem; }

  /* --- Founder photos --- */
  .founder__image--main { height: 240px; }
  .founder__image--secondary { height: 160px; }
  .founder__image-caption { font-size: 0.75rem; padding: 1rem 0.75rem 0.5rem; }

  /* --- Reviews --- */
  .review-grid { grid-template-columns: 1fr; }
  .review-featured__image { height: 200px; }
  .review-featured__content { padding: 1.25rem; }
  .review-featured__quote { font-size: 0.9375rem; }

  /* --- Values --- */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .values-card { padding: 1.25rem 0.875rem; }
  .values-card__icon { width: 28px; height: 28px; margin-bottom: 0.75rem; }
  .values-card__title { font-size: 0.9375rem; margin-bottom: 0.5rem; }
  .values-card__text { font-size: 0.75rem; line-height: 1.6; }

  /* --- Locations --- */
  .location-block { padding: 1.75rem 1rem; }
  .location-block__detail { font-size: 0.875rem; }

  /* --- Footer --- */
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__heading { margin-bottom: 0.75rem; }

  /* --- CTA --- */
  .cta-section__btn { max-width: 100%; }
  .cta-section p { font-size: 0.9375rem; }

  /* --- Modal --- */
  .modal { padding: 1.75rem 1rem; margin: 0.25rem; }
  .modal__title { font-size: 1.375rem; }
  .modal__offer-perk { font-size: 0.875rem; }
  .modal__subtitle { font-size: 0.8125rem; }
  .modal__program-btn { font-size: 0.8125rem; }
  .modal__program-btn span { font-size: 0.625rem; }

  /* --- Section spacing --- */
  .section { padding: 3rem 0; }
}

/* --- Extra small screens (320px) --- */
@media (max-width: 360px) {
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 0.875rem; }
  .stats-bar__number { font-size: 1.5rem; }
  .program-row__title { font-size: 1.25rem; }
  .section__title { font-size: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .founder__image--main { height: 200px; }
  .founder__image--secondary { height: 140px; }
}

/* --- Touch-friendly tap targets --- */
@media (hover: none) and (pointer: coarse) {
  .hero__cta,
  .program-row__cta,
  .location-block__cta,
  .cta-section__btn,
  .nav__cta,
  .modal__program-btn,
  .modal__location-btn,
  .event-card__btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .faq-item__question {
    min-height: 48px;
  }
  .footer__link {
    padding: 0.5rem 0;
  }
}

/* ============ EVENT CARD ============ */

.event-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  max-width: 800px;
  margin: 0 auto;
}

.event-card__img {
  width: 100%;
  height: auto;
  display: block;
}

.event-card__body {
  padding: 2rem 2.5rem 2.5rem;
}

.event-card__venue {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.event-card__desc {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.event-card__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-card__grid-item {
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 1.25rem;
}

.event-card__grid-heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.event-card__grid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  padding: 0.5rem 0;
}

.event-card__grid-row + .event-card__grid-row {
  border-top: 1px solid var(--gray-100);
}

.event-card__grid-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-style: italic;
}

.event-card__btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.event-card__btn--primary {
  background: var(--blue);
  color: var(--white);
}

.event-card__btn--primary:hover {
  background: var(--blue-dark);
}

.event-card__btn--secondary {
  background: var(--gray-100);
  color: var(--black);
  border: 2px solid var(--gray-300);
}

.event-card__btn--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

@media (max-width: 600px) {
  .event-card__body {
    padding: 1.5rem;
  }
  .event-card__grid-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .event-card__actions {
    flex-direction: column;
  }
  .event-card__btn {
    text-align: center;
  }
}

/* --- Free Parent Guide Section --- */
.photo-feature--guide .photo-feature__content {
  background: #0a0a0a;
}

.guide-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.guide-highlights li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.guide-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.photo-feature--guide .program-row__cta {
  text-decoration: none;
}

/* --- Lead Magnet Popup --- */
.leadmagnet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.leadmagnet-overlay.is-visible {
  display: flex;
}

.leadmagnet-popup {
  background: #fff;
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: popupSlideUp 0.3s ease;
}

@keyframes popupSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.leadmagnet-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.leadmagnet-popup__close:hover {
  color: #333;
}

.leadmagnet-popup__badge {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.leadmagnet-popup__title {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.leadmagnet-popup__text {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.leadmagnet-popup__cta {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.leadmagnet-popup__cta:hover {
  background: #1d4ed8;
}

.leadmagnet-popup__fine {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.75rem;
}

@media (max-width: 480px) {
  .leadmagnet-popup {
    padding: 2rem 1.25rem;
    margin: 0 0.5rem;
  }
  .leadmagnet-popup__title {
    font-size: 1.2rem;
  }
  .leadmagnet-popup__text {
    font-size: 0.875rem;
  }
}
