/* ZDP Amy - Design tokens & base */
:root {
  --pink: #ff2d8a;
  --purple: #9b5cff;
  --coral: #ff6b4a;
  --green: #39ff14;
  --black: #0a0a0f;
  --black-soft: #12121a;
  --white: #ffffff;
  --muted: #b8b8c8;
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a0a1f 35%, #2d1040 70%, #0a0a0f 100%);
  --gradient-cta: linear-gradient(90deg, var(--pink), var(--purple));
  --gradient-card: linear-gradient(160deg, rgba(255, 45, 138, 0.12), rgba(155, 92, 255, 0.08));
  --font-display: "Bebas Neue", "Anton", sans-serif;
  --font-body: "League Spartan", system-ui, sans-serif;
  --header-h: 72px;
  --container: min(1120px, 92vw);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(255, 45, 138, 0.35);
  --hero-text-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 44px rgba(0, 0, 0, 0.5), 0 0 80px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.5);
  --hero-btn-shadow: 0 0 24px rgba(0, 0, 0, 0.5), 0 0 48px rgba(0, 0, 0, 0.5), 0 0 88px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.5);
  --hero-image-fade: linear-gradient(
    to top,
    transparent 0%,
    rgba(0, 0, 0, 0.75) 5%,
    #000 11%,
    #000 100%
  );
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--pink);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--purple);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Typography */
h1,
h2,
h3,
.section-header h2,
.logo,
.eyebrow,
.tagline,
.pricing-amount,
.countdown-unit span,
.stat-row strong {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.35rem;
}

.eyebrow {
  font-size: 0.95rem;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.eyebrow-green {
  color: var(--green);
}

.eyebrow-coral {
  color: var(--coral);
}

.section-desc {
  color: var(--muted);
  max-width: 36rem;
  margin-top: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--gradient-cta);
  border-color: var(--pink);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #ff47a0, #a575ff);
  color: var(--white);
}

.btn-outline {
  color: var(--white);
  border-color: var(--pink);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 45, 138, 0.15);
  color: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}

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

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 10, 15, 0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 45, 138, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo span {
  color: var(--pink);
}

.site-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.25rem;
  list-style: none;
}

.site-nav li {
  flex-shrink: 0;
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem !important;
  color: var(--white) !important;
  background: var(--pink);
  border: 2px solid var(--pink);
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--black-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: calc(-1 * var(--header-h) - 5vh);
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black);
  background-image: url("../assets/images/bg.png");
  background-size: cover;
  background-position: center 14%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 45, 138, 0.12) 0, transparent 12%),
    radial-gradient(circle at 88% 72%, rgba(155, 92, 255, 0.1) 0, transparent 10%),
    radial-gradient(circle at 75% 15%, rgba(255, 45, 138, 0.08) 0, transparent 8%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  padding: 4rem 0;
}

.hero-grid > * {
  min-width: 0;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-sub,
.hero-copy {
  text-shadow: var(--hero-text-shadow);
}

.hero-content .eyebrow {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  margin-bottom: 0.75rem;
}

.hero-ctas .btn {
  box-shadow: var(--hero-btn-shadow);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5), 0 0 28px rgba(0, 0, 0, 0.5);
}

.hero-ctas .btn-outline {
  color: var(--black);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.75);
  text-shadow: none;
}

.hero-ctas .btn-outline:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--black);
}

.hero-ctas .btn-primary:hover {
  box-shadow: var(--hero-btn-shadow), var(--shadow-glow);
}

.hero-sub {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0.75rem 0 1rem;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-links {
  display: inline-block;
  max-width: 100%;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.65rem 0.65rem;
  background: rgba(0, 0, 0, 0.75);
  border-radius: var(--radius);
}

.hero-links a {
  color: var(--pink);
}

.hero-links a:hover {
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(100%, 520px);
  margin-left: auto;
  line-height: 0;
}

/* Soft paint splash at the feet — masked so it fades out, not a hard shadow */
.hero-image-wrap::before {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 18%;
  z-index: 2;
  pointer-events: none;
  background-image: url("../assets/images/bg.png");
  background-size: 160% auto;
  background-position: center 100%;
  background-repeat: no-repeat;
  opacity: 0.16;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: min(82vh, 780px);
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: var(--hero-image-fade);
  mask-image: var(--hero-image-fade);
}

@media (min-width: 1280px) {
  .hero-image-wrap {
    max-width: min(100%, 560px);
  }

  .hero-image {
    max-height: min(88vh, 860px);
  }
}

/* Intro */
.intro {
  text-align: center;
  padding: 4rem 0;
}

.intro-lead {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 500;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

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

.intro-cards li {
  padding: 2rem 1.5rem;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 45, 138, 0.2);
  border-radius: var(--radius);
}

.intro-icon {
  display: block;
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 0.75rem;
}

.intro-cards h3 {
  margin-bottom: 0.5rem;
}

.intro-cards p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Membership */
.membership-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin-bottom: 1.25rem;
}

.membership-video-browser {
  border-color: rgba(255, 45, 138, 0.28);
}

.membership-video-wrap {
  padding: 0.75rem;
}

.membership-video-panel.category-card {
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.membership-video-panel .category-card-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}

.feature-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 45, 138, 0.15);
  border-radius: var(--radius);
}

.feature-card h3 {
  color: var(--pink);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

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

.schedule-block {
  margin-top: 1rem;
}

.schedule-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.schedule-table th,
.schedule-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-table th {
  color: var(--pink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.schedule-table td {
  color: var(--muted);
}

.pricing-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  padding: 2rem;
  background: var(--gradient-card);
  border: 2px solid rgba(255, 45, 138, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
}

.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.pricing-amount {
  font-size: 2.5rem;
  margin: 0.5rem 0 1.25rem;
  line-height: 1;
}

.pricing-amount span {
  color: var(--pink);
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

.inline-quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
}

.inline-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--pink);
}

/* On Demand */
.on-demand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tagline {
  font-size: 1.75rem;
  color: var(--green);
  margin: 0.25rem 0 1rem;
}

.stat-row {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 1.5rem 0;
}

.stat-row strong {
  display: block;
  font-size: 2rem;
  color: var(--pink);
  line-height: 1;
}

.stat-row span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payg-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.screen-mock {
  background: #1a1a24;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(57, 255, 20, 0.3);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* On-demand category browser (Vimeo-style) */
.category-browser {
  background: #12121a;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(57, 255, 20, 0.25);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.category-browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.category-browser-dot:first-child {
  background: rgba(255, 45, 138, 0.7);
}

.category-browser-dot:nth-child(2) {
  background: rgba(155, 92, 255, 0.7);
}

.category-browser-dot:nth-child(3) {
  background: rgba(57, 255, 20, 0.55);
}

.category-browser-title {
  margin-left: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0.75rem;
}

.category-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a24;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 138, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.category-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a24;
}

.category-card-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.35s ease;
}

.category-card.is-playing .category-card-poster {
  opacity: 0;
}

.category-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.category-card.is-playing .category-card-video {
  opacity: 1;
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.category-card.is-playing .category-card-overlay {
  opacity: 0.55;
}

.category-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.category-card-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--white);
}

.category-card.is-playing .category-card-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
}

.category-card-duration {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 3;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 4px;
  pointer-events: none;
}

.category-card-body {
  padding: 0.55rem 0.65rem 0.7rem;
}

.category-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.category-card-body p {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}

.screen-bar {
  height: 28px;
  background: rgba(255, 255, 255, 0.05);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.screen-grid span {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(255, 45, 138, 0.3), rgba(155, 92, 255, 0.2));
  border-radius: 6px;
}

/* Blast */
.blast-urgency {
  text-align: center;
  margin-bottom: 2.5rem;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 1rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-unit {
  min-width: 80px;
  padding: 1rem 1.25rem;
  background: rgba(255, 107, 74, 0.1);
  border: 2px solid var(--coral);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 107, 74, 0.2);
}

.countdown-unit span {
  display: block;
  font-size: 2.25rem;
  color: var(--white);
  line-height: 1;
}

.countdown-unit small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.blast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.blast-benefits ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.blast-benefits li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--muted);
}

.blast-benefits li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--coral);
}

.progress-wrap {
  margin-bottom: 1rem;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  background: var(--gradient-cta);
  border-radius: 999px;
}

.progress-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.badge {
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--muted);
}

.badge-glow {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 12px rgba(255, 45, 138, 0.4);
}

.blast-ba-carousel {
  position: relative;
  margin-bottom: 1.25rem;
  width: 100%;
  padding: 4px;
}

.blast-ba-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 74, 0.55) 0%,
    rgba(255, 45, 138, 0.5) 45%,
    rgba(155, 92, 255, 0.35) 100%
  );
  filter: blur(16px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  animation: blastBaGlow 4.5s ease-in-out infinite alternate;
}

@keyframes blastBaGlow {
  from {
    opacity: 0.5;
    transform: scale(0.985);
  }

  to {
    opacity: 0.9;
    transform: scale(1.015);
  }
}

.blast-ba-carousel-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 107, 74, 0.45);
  box-shadow:
    0 0 20px rgba(255, 107, 74, 0.35),
    0 0 44px rgba(255, 45, 138, 0.25),
    0 16px 44px rgba(0, 0, 0, 0.42);
}

.blast-ba-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.55s ease;
  will-change: transform;
}

.blast-ba-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
}

.blast-ba-carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f5f0ea;
}

.blast-ba-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  flex-wrap: wrap;
}

.blast-ba-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.blast-ba-carousel-dot.is-active,
.blast-ba-carousel-dot:hover {
  background: var(--coral);
  box-shadow: 0 0 10px rgba(255, 107, 74, 0.65);
  transform: scale(1.15);
}

.blast-proof blockquote {
  font-style: italic;
  color: var(--muted);
}

.blast-proof cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--pink);
}

/* Classes */
.class-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-inline: auto;
  gap: 1.5rem;
  list-style: none;
}

.class-card {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  text-align: center;
}

.class-card-featured {
  border-color: var(--pink);
  background: var(--gradient-card);
  box-shadow: var(--shadow-glow);
}

.class-card h3 {
  margin-bottom: 0.75rem;
}

.class-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.class-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 1.25rem !important;
}

/* Testimonials carousel */
.carousel {
  max-width: 720px;
  margin: 0 auto 3rem;
}

.carousel-track {
  position: relative;
  min-height: 200px;
}

.carousel-slide {
  display: none;
  text-align: center;
  padding: 1rem 2rem;
}

.carousel-slide.is-active {
  display: block;
}

.carousel-slide blockquote p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.carousel-slide cite {
  font-size: 0.9rem;
  color: var(--pink);
  font-style: normal;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 45, 138, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: background var(--transition);
}

.carousel-btn:hover {
  background: rgba(255, 45, 138, 0.2);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
}

.carousel-dot.is-active {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.gallery-title {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.gallery-carousel {
  max-width: 720px;
  margin-inline: auto;
}

.gallery-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-carousel-track {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
}

.gallery-carousel-slide {
  flex: 0 0 calc(50% - 0.5rem);
  min-width: 0;
}

.gallery-carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-cell {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 45, 138, 0.2), rgba(155, 92, 255, 0.15));
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

.gallery-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.gallery-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.gallery-carousel-dot.is-active,
.gallery-carousel-dot:hover {
  background: var(--pink);
  transform: scale(1.15);
}

/* Community */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin-bottom: 1.5rem;
  align-items: start;
}

.reel-embed {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.reel-embed .instagram-media {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid rgba(255, 45, 138, 0.25) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.reel-embed iframe {
  display: block;
  margin: 0 auto !important;
  max-width: 100% !important;
  width: 100% !important;
}

.community-follow {
  text-align: center;
}

.community-follow a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

/* Join */
.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 45, 138, 0.3);
  border-radius: var(--radius);
}

.join-form input::placeholder {
  color: rgba(184, 184, 200, 0.6);
}

.form-success {
  color: var(--green);
  font-weight: 600;
}

.form-error {
  color: var(--coral);
}

.final-cta {
  background: var(--gradient-cta);
  background-size: 200% 100%;
  animation: ctaShift 6s ease infinite alternate;
  padding: 3rem 0;
  text-align: center;
}

@keyframes ctaShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.final-cta p {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

.final-cta .btn-primary {
  background: var(--black);
  box-shadow: none;
}

.final-cta .btn-primary:hover {
  background: var(--black-soft);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4/5;
  max-width: 400px;
  border-radius: var(--radius-lg);
  background: var(--gradient-card);
  border: 2px solid rgba(255, 45, 138, 0.35);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}

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

.about-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-tagline {
  color: var(--pink) !important;
  font-weight: 600;
}

.about-inperson {
  margin-top: 1.5rem;
}

.about-inperson a {
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-social a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* In-person landing */
.inperson-hero {
  position: relative;
  min-height: min(100vh, 920px);
  min-height: min(100dvh, 920px);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 3rem;
  overflow: hidden;
}

.inperson-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2rem 0;
}

.inperson-hero-copy .eyebrow,
.inperson-hero-copy h1,
.inperson-lead {
  text-shadow: var(--hero-text-shadow);
}

.inperson-hero-copy .btn {
  box-shadow: var(--hero-btn-shadow);
}

.inperson-lead {
  color: rgba(255, 255, 255, 0.92);
  margin: 1rem 0 1.5rem;
  max-width: 28rem;
}

.inperson-hero .hero-visual {
  align-self: stretch;
  min-height: 0;
}

.inperson-hero .hero-image-wrap {
  max-width: min(100%, 520px);
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

.inperson-hero .hero-image {
  width: 100%;
  max-height: min(92vh, 900px);
  object-fit: contain;
  object-position: right bottom;
  -webkit-mask-image: var(--hero-image-fade);
  mask-image: var(--hero-image-fade);
}

/* In-person location cards — primary conversion feature (directly below hero) */
.inperson-hero + .inperson-locations-feature {
  margin-top: 0;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  border-top: none;
}

.inperson-locations-feature {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(255, 45, 138, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(155, 92, 255, 0.1) 0%, transparent 50%),
    var(--black-soft);
  border-top: 1px solid rgba(255, 45, 138, 0.2);
  border-bottom: 1px solid rgba(255, 45, 138, 0.15);
}

.locations-feature-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.locations-feature-header h2 {
  margin-bottom: 0.75rem;
}

.locations-feature-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}

.inperson-locations-feature .inperson-notice-text {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  list-style: none;
  align-items: stretch;
}

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-align: center;
  background: var(--black);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.location-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--black);
}

.location-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.location-card-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.2) 0%,
    rgba(10, 10, 15, 0.15) 38%,
    rgba(10, 10, 15, 0.55) 68%,
    rgba(10, 10, 15, 0.92) 88%,
    var(--black) 100%
  );
  pointer-events: none;
}

.location-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
}

.location-card-title {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 10vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 0, 0, 0.75),
    0 4px 80px rgba(255, 45, 138, 0.35);
  pointer-events: none;
}

.location-card-primary .location-card-title {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.9),
    0 0 50px rgba(255, 45, 138, 0.5),
    0 4px 80px rgba(0, 0, 0, 0.8);
}

.location-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  width: 100%;
  margin-top: -3.5rem;
  padding: 2rem 1.5rem 1.75rem;
  text-align: left;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 15, 0.88) 28%,
    var(--black) 55%
  );
}

.location-details {
  list-style: none;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.location-detail-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 45, 138, 0.12);
  color: var(--pink);
}

.location-detail-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.location-detail-text {
  flex: 1;
  padding-top: 0.2rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.location-detail-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.location-detail-muted {
  color: var(--muted);
  font-size: 0.98rem;
}

.location-card-cta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  box-sizing: border-box;
}

.location-card-primary {
  border-color: var(--pink);
  box-shadow: 0 0 40px rgba(255, 45, 138, 0.32), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.location-card-primary:hover {
  border-color: var(--pink);
  transform: translateY(-6px);
  box-shadow: 0 0 55px rgba(255, 45, 138, 0.45), 0 24px 60px rgba(0, 0, 0, 0.45);
}

.location-card-primary .location-card-media-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.18) 0%,
    rgba(10, 10, 15, 0.12) 38%,
    rgba(255, 45, 138, 0.08) 55%,
    rgba(10, 10, 15, 0.9) 88%,
    var(--black) 100%
  );
}

.location-card-kids {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.location-card-kids:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.location-card-kids .location-card-video {
  filter: saturate(0.65) brightness(0.82);
}

.location-card-kids .location-card-media-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 15, 0.35) 0%,
    rgba(10, 10, 15, 0.4) 40%,
    rgba(10, 10, 15, 0.82) 88%,
    var(--black) 100%
  );
}

.location-card-kids .location-card-body {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 15, 0.92) 32%,
    var(--black) 58%
  );
}

.location-card-kids .location-card-title {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.location-card-kids .location-detail-icon {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(184, 184, 200, 0.95);
}

.location-card-kids .location-detail-text {
  color: rgba(184, 184, 200, 0.95);
}

.location-card-kids .location-detail-text strong {
  color: rgba(255, 255, 255, 0.88);
}

.section-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

.inperson-video-frame {
  aspect-ratio: 16/9;
  max-width: 900px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 45, 138, 0.15), rgba(155, 92, 255, 0.12));
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inperson-video-label {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.container-narrow {
  max-width: 40rem;
  text-align: center;
}

.inperson-about-text {
  color: var(--muted);
  margin-bottom: 1rem;
}

.inperson-about .btn {
  margin-top: 0.5rem;
}

/* Zumba Kids */
.kids-page {
  padding-top: var(--header-h);
}

.kids-banner {
  padding: 0.75rem 1rem;
  margin-top: calc(var(--header-h) + 0.5rem);
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 45, 138, 0.15), rgba(155, 92, 255, 0.15));
  border-radius: 12px;
  font-size: 0.95rem;
}

.kids-banner a {
  color: var(--pink);
  font-weight: 600;
}

.kids-promo-cards {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.kids-promo-card {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  text-align: left;
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.kids-promo-card--book {
  border-top: 4px solid var(--pink);
}

.kids-promo-card--notice {
  border-top: 4px solid #6bcf6b;
}

.kids-promo-label {
  margin: 0 0 0.65rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--white);
  text-transform: none;
  letter-spacing: normal;
}

.kids-promo-date {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--white);
  font-weight: 600;
}

.kids-promo-card--notice .kids-promo-date {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 1.05rem;
}

.kids-promo-card--notice .kids-promo-label {
  color: #b8f0b8;
}

.kids-promo-card .btn-block {
  width: 100%;
  max-width: 16rem;
}

.kids-events .section-label {
  margin-bottom: 0.25rem;
}

.kids-copy {
  padding-block: 2.5rem;
}

.kids-copy p {
  max-width: 42rem;
  margin: 0 auto 1rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
}

.kids-copy p:last-child {
  margin-bottom: 0;
}

.kids-video-wrap {
  aspect-ratio: 9 / 16;
  max-height: min(520px, 70vh);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.kids-info-duo {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.kids-book-cta {
  text-align: center;
  margin: 1.5rem 0 0;
}

.kids-info-card {
  padding: 1.5rem 1.75rem;
  background: var(--black-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.kids-info-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--white);
}

.kids-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .kids-promo-cards {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

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

  .kids-events .intro-cards,
  .kids-page .intro-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .kids-page .intro-cards {
    grid-template-columns: 1fr;
  }
}

/* Book Classes (Bookwhen embed) */
.booking-page {
  padding-top: var(--header-h);
}

.booking-intro {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
}

.booking-intro h1 {
  margin-top: 0.35rem;
}

.booking-lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  color: rgba(255, 255, 255, 0.92);
}

.booking-embed {
  padding: 0 0 4rem;
}

.booking-embed-inner {
  max-width: 960px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 45, 138, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.bookwhen-frame {
  display: block;
  width: 100%;
  min-height: min(85vh, 1100px);
  height: 1100px;
  border: 0;
  background: var(--white);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: rgba(10, 10, 15, 0.98);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    flex-shrink: initial;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    white-space: normal;
  }

  .nav-cta {
    text-align: center;
    margin-top: 1rem;
  }

  .hero-grid,
  .membership-grid,
  .on-demand-inner,
  .blast-grid,
  .about-grid,
  .join-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    justify-content: center;
  }

  .hero-image-wrap {
    max-width: min(100%, 420px);
    margin-inline: auto;
  }

  .hero-image-wrap::before {
    height: 20%;
    opacity: 0.14;
  }

  .hero-image {
    max-height: min(58vh, 520px);
  }

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

  .inperson-hero-visual {
    order: -1;
    justify-content: center;
  }

  .inperson-hero .hero-image-wrap {
    max-width: min(100%, 420px);
    margin-inline: auto;
  }

  .inperson-hero .hero-image-wrap::before {
    height: 20%;
    opacity: 0.14;
  }

  .inperson-hero .hero-image {
    max-height: min(58vh, 520px);
    object-position: center bottom;
  }
}

@media (max-width: 960px) {
  .location-cards {
    grid-template-columns: 1fr;
    max-width: min(100%, 26rem);
    margin-inline: auto;
  }

  .location-card-media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1024px) {
  .category-grid {
    gap: 0.85rem;
    padding: 1rem;
  }

  .pricing-card {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-carousel-slide {
    flex: 0 0 calc(100% - 0.5rem);
  }

  .stat-row {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .reels-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

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

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

  .countdown-unit {
    min-width: 64px;
    padding: 0.75rem;
  }

  .countdown-unit span {
    font-size: 1.5rem;
  }

}
