/* ==========================================================================
   VEGAS ZUMBA FITNESS — Design tokens
   ========================================================================== */
:root {
  --purple: #4b2e83;
  --purple-deep: #2e1b54;
  --pink: #e91e76;
  --pink-deep: #b9166b;
  --yellow: #ffc72c;
  --orange: #f7941d;
  --green: #4caf50;
  --ink: #171126;
  --ink-soft: #231a36;
  --cream: #fff8ed;
  --paper: #ffffff;
  --text: #241a36;
  --text-soft: #5c5270;
  --text-onDark: #f4eeff;
  --text-onDark-soft: #b6adcb;

  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 45px -20px rgba(43, 20, 74, 0.35);
  --shadow-card: 0 14px 30px -14px rgba(43, 20, 74, 0.22);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-narrow {
  max-width: 760px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- Type scale ---- */
.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--pink);
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow-light {
  color: var(--yellow);
}
.eyebrow-brush {
  position: relative;
  padding: 6px 4px;
  color: var(--ink);
}
.eyebrow-brush::before {
  content: "";
  position: absolute;
  inset: -2px -14px;
  z-index: -1;
  background: var(--yellow);
  clip-path: polygon(
    2% 22%,
    10% 4%,
    30% 12%,
    55% 0%,
    78% 10%,
    96% 2%,
    100% 40%,
    92% 58%,
    98% 82%,
    76% 96%,
    52% 88%,
    28% 100%,
    6% 90%,
    0% 60%
  );
  opacity: 0.9;
}
.eyebrow-light.eyebrow-brush {
  color: var(--ink);
}

.h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--purple);
}
.h2 em {
  font-style: normal;
  color: var(--pink);
}
.h2-light {
  color: var(--text-onDark);
}
.h2-light .grad-text {
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 52ch;
}
.center-text {
  margin: 0 auto;
}

.grad-text {
  background: linear-gradient(
    92deg,
    var(--pink) 0%,
    var(--orange) 55%,
    var(--yellow) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(95deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px -16px rgba(233, 30, 118, 0.55);
}
.btn-outline {
  border-color: var(--purple);
  color: var(--purple);
  background: transparent;
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 15px 30px;
  font-size: 1rem;
}
.btn-block {
  width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 20, 74, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  height: 82px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  display: flex;
  flex-shrink: 0;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  background: linear-gradient(
    95deg,
    var(--purple),
    var(--pink) 60%,
    var(--orange)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-name em {
  font-style: normal;
  margin: 0 0.12em;
}
.brand-tag {
  font-size: 0.65rem;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transition: right 0.2s ease;
}
.main-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--purple);
  border-radius: 2px;
  transition: 0.25s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 64px 0 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 85% -10%,
      rgba(255, 199, 44, 0.35),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 500px at -10% 40%,
      rgba(233, 30, 118, 0.12),
      transparent 60%
    ),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
}
.hero-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  color: var(--purple);
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--pink);
}
.stat span {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.burst {
  width: 100%;
  max-width: 460px;
  animation: float 6s ease-in-out infinite;
}
.dancer-svg {
  width: 100%;
  height: auto;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.note {
  position: absolute;
  font-family: var(--body);
  font-weight: 700;
  color: var(--purple);
  opacity: 0.5;
}
.note-1 {
  top: 10%;
  left: 6%;
  font-size: 2rem;
  animation: bob 5s ease-in-out infinite;
}
.note-2 {
  top: 60%;
  left: 2%;
  font-size: 1.4rem;
  color: var(--pink);
  animation: bob 6s ease-in-out infinite 1s;
}
.note-3 {
  top: 22%;
  right: 4%;
  font-size: 1.7rem;
  color: var(--orange);
  animation: bob 4.5s ease-in-out infinite 0.5s;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-14px) rotate(8deg);
  }
}
.dot {
  position: absolute;
  border-radius: 50%;
}
.d1 {
  width: 14px;
  height: 14px;
  background: var(--yellow);
  top: 16%;
  left: 38%;
}
.d2 {
  width: 10px;
  height: 10px;
  background: var(--pink);
  top: 75%;
  left: 30%;
}
.d3 {
  width: 18px;
  height: 18px;
  background: var(--green);
  top: 8%;
  right: 22%;
  opacity: 0.6;
}
.d4 {
  width: 8px;
  height: 8px;
  background: var(--purple);
  bottom: 10%;
  right: 8%;
}
.tri {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
.t1 {
  border-bottom: 12px solid var(--orange);
  top: 35%;
  left: 12%;
  transform: rotate(20deg);
  opacity: 0.6;
}
.t2 {
  border-bottom: 10px solid var(--purple);
  bottom: 20%;
  right: 20%;
  transform: rotate(-16deg);
  opacity: 0.5;
}

/* ticker */
.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.ticker-track {
  display: inline-flex;
  gap: 14px;
  animation: scrollTicker 32s linear infinite;
}
.ticker-track span {
  color: var(--text-onDark);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ticker-track span:nth-child(odd) {
  color: var(--yellow);
}
@keyframes scrollTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   SECTIONS — generic
   ========================================================================== */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--cream);
}
.section-dark {
  background: var(--ink);
  color: var(--text-onDark);
}
.section-head {
  margin-bottom: 52px;
  max-width: 640px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 420px;
}
.about-blob {
  position: absolute;
  inset: 14% 8%;
  border-radius: 42% 58% 62% 38% / 46% 40% 60% 54%;
  background: linear-gradient(
    135deg,
    var(--purple),
    var(--pink) 55%,
    var(--orange)
  );
  opacity: 0.14;
}
.about-card {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  width: 220px;
}
.card-1 {
  top: 6%;
  left: 0;
}
.card-2 {
  top: 42%;
  right: 0;
}
.card-3 {
  bottom: 4%;
  left: 10%;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-top: 30px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
}
.check-list li::after {
  content: "✓";
  position: absolute;
  left: 4.5px;
  top: 1px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

/* ---- PROGRAMS ---- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.program-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
}
.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  margin-bottom: 20px;
}
.program-card h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: #fff;
}
.program-card p {
  font-size: 0.9rem;
  color: var(--text-onDark-soft);
  line-height: 1.6;
}
.program-strip {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--yellow);
  padding: 16px;
  border-radius: 999px;
}

/* ---- BENEFITS ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.benefits-title {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.dot-badge {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}
.dot-badge.pink {
  background: var(--pink);
}
.dot-badge.purple {
  background: var(--purple);
}
.tick-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  font-weight: 500;
  border-bottom: 1px dashed rgba(43, 20, 74, 0.14);
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--cream);
  border: 1.5px solid var(--purple);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tick-list li:last-child {
  border-bottom: none;
}

/* ---- HOW IT WORKS ---- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}
.steps li {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(43, 20, 74, 0.1);
}
.steps li:last-child {
  border-bottom: none;
}
.step-num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pink);
  flex-shrink: 0;
  width: 64px;
}
.steps h4 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--purple);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.steps p {
  color: var(--text-soft);
  font-size: 0.94rem;
  max-width: 48ch;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
}
.gallery-tile {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
}
.gallery-tile:hover {
  transform: scale(1.03) rotate(-0.4deg);
}
.gallery-tile.tall {
  grid-row: span 2;
}
.gallery-tile.wide {
  grid-column: span 2;
}
.dark-label {
  color: var(--ink);
}

/* ---- TESTIMONIALS ---- */
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  margin: 0;
}
.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  color: #fff;
  margin-bottom: 18px;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 6px 26px;
  border: 1px solid rgba(43, 20, 74, 0.08);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--purple);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-item p {
  padding-bottom: 20px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ---- CONTACT ---- */
.contact {
  background: linear-gradient(180deg, var(--paper), var(--cream));
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 34px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--purple);
  padding: 14px 18px;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease;
}
.contact-method:hover {
  transform: translateX(6px);
  color: var(--pink);
}

.contact-form {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(43, 20, 74, 0.06);
}
.contact-form h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--purple);
  margin-bottom: 6px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(43, 20, 74, 0.15);
  resize: vertical;
  color: var(--text);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  min-height: 1.2em;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--ink-soft);
  color: var(--text-onDark-soft);
  padding: 44px 0 28px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.small-brand {
  font-family: var(--display);
  font-size: 0.95rem;
  color: #fff;
}
.small-brand em {
  font-style: normal;
  color: var(--yellow);
  margin: 0 0.1em;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.85rem;
}
.footer-nav a:hover {
  color: var(--yellow);
}
.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  margin-top: 18px;
  opacity: 0.7;
}

/* ---- Floating CTA ---- */
.float-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  background: linear-gradient(95deg, var(--pink), var(--pink-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.float-cta:hover {
  transform: translateY(-3px);
}

/* ---- Reveal-on-scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Keyboard focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2.5px solid var(--pink);
  outline-offset: 3px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1020px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-track {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 340px;
    order: 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .header-cta .phone-chip {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .hero-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-tile.wide {
    grid-column: span 2;
  }
  .site-header.menu-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 28px;
    gap: 4px;
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.2);
  }
  .site-header.menu-open .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 20, 74, 0.08);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 64px 0;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .hero-stats {
    gap: 22px;
  }
  .header-inner {
    height: 70px;
  }
}
