/* ============================================
   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; }

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__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;
  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;
  gap: 2px;
  margin-bottom: 0.25rem;
}

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

/* --- Testimonials (OTF-style horizontal scroll) --- */
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: var(--ease);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: #facc15;
  font-size: 1.125rem;
  letter-spacing: 3px;
  margin-bottom: 1.25rem;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-card__author {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
}

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

.testimonial-card__google {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* --- 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); }
}

@media (max-width: 768px) {
  .nav__links, .nav .nav__cta { display: none; }
  .nav-toggle { display: flex; }
  .promo-banner { font-size: 0.75rem; padding: 0.5rem; }
  .header--has-banner { top: 32px; }

  .hero__content { padding: 7rem 1.5rem 4rem; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  .program-row { grid-template-columns: 1fr; }
  .program-row--reverse .program-row__image { order: 0; }
  .program-row--reverse .program-row__content { order: 0; }
  .program-row__image { min-height: 280px; }
  .program-row__content { padding: 2.5rem 1.5rem; }

  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { padding: 1.5rem 1rem; }

  .testimonial-card { flex: 0 0 300px; padding: 2rem; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .modal { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .stats-bar__number { font-size: 2rem; }
}

/* ============ 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;
  }
}
