:root {
  --purple: #7b2cbf;
  --purple-dark: #3f1676;
  --orange: #f05a28;
  --yellow: #ffc533;
  --pink: #f7a6c5;
  --teal: #5ec7d9;
  --green: #79bd35;
  --cream: #fff9e8;
  --ink: #21153d;
  --muted: #675d78;
  --paper: #ffffff;
  --line: rgba(33, 21, 61, 0.14);
  --shadow: 0 18px 50px rgba(44, 21, 91, 0.16);
  --max: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", "Trebuchet MS", Arial, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 197, 51, 0.22) 0 90px, transparent 92px),
    radial-gradient(circle at 92% 18%, rgba(94, 199, 217, 0.2) 0 115px, transparent 118px),
    linear-gradient(180deg, #fffdf5 0%, #f7fcff 42%, #fff8e9 100%);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.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: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

.section-kicker,
.eyebrow,
.tag {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.why-copy h2,
.cta h2 {
  margin: 0 0 16px;
  color: var(--purple-dark);
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.section-copy p,
.why-copy p,
.cta p,
.program-meta,
.special-copy p,
.faq p,
.step-list p,
.site-footer p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(33, 21, 61, 0.18);
}

.btn-primary {
  color: #ffffff;
  background: var(--purple);
}

.btn-secondary {
  color: var(--purple-dark);
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 197, 51, 0.4) 0 94px, transparent 98px),
    radial-gradient(circle at 82% 18%, rgba(94, 199, 217, 0.32) 0 84px, transparent 88px),
    radial-gradient(circle at 82% 82%, rgba(247, 166, 197, 0.38) 0 104px, transparent 108px),
    linear-gradient(135deg, #fffdf6 0%, #f5fdff 100%);
  transition: opacity 450ms ease, visibility 450ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-stage {
  position: relative;
  display: grid;
  width: min(330px, calc(100vw - 48px));
  padding: 22px 22px 24px;
  gap: 14px;
  justify-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(33, 21, 61, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(44, 21, 91, 0.16);
  color: var(--purple-dark);
  font-weight: 900;
  overflow: hidden;
}

.loader-stage::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(123, 44, 191, 0.18);
  border-radius: 8px;
  pointer-events: none;
}

.loader-gif {
  position: relative;
  z-index: 1;
  width: min(230px, 72vw);
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 50%;
}

.loader-stage p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.08rem;
  color: #319bd5;
}

.loader-progress {
  position: relative;
  z-index: 1;
  width: 76%;
  height: 8px;
  overflow: hidden;
  background: rgba(94, 199, 217, 0.18);
  border-radius: 999px;
}

.loader-progress::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: linear-gradient(90deg, var(--teal), var(--yellow), var(--orange));
  border-radius: inherit;
  animation: loader-slide 1.15s ease-in-out infinite;
}

.play-kid {
  position: relative;
  width: 160px;
  height: 150px;
  animation: kid-hop 850ms ease-in-out infinite;
}

.kid-head,
.kid-hair,
.kid-body,
.kid-arm,
.kid-leg,
.play-ball {
  position: absolute;
  display: block;
}

.kid-head {
  top: 10px;
  left: 62px;
  width: 44px;
  height: 44px;
  background: #f4bd8b;
  border: 4px solid var(--ink);
  border-radius: 50%;
  z-index: 3;
}

.kid-head::before,
.kid-head::after {
  content: "";
  position: absolute;
  top: 17px;
  width: 5px;
  height: 5px;
  background: var(--ink);
  border-radius: 50%;
}

.kid-head::before {
  left: 11px;
}

.kid-head::after {
  right: 11px;
}

.kid-hair {
  top: 2px;
  left: 62px;
  width: 45px;
  height: 26px;
  background: var(--ink);
  border-radius: 45px 45px 10px 10px;
  z-index: 4;
}

.kid-body {
  top: 52px;
  left: 54px;
  width: 58px;
  height: 58px;
  background: var(--teal);
  border: 4px solid var(--ink);
  border-radius: 8px 8px 18px 18px;
  z-index: 2;
}

.kid-body::after {
  content: "";
  position: absolute;
  inset: 13px 15px auto;
  height: 9px;
  background: var(--yellow);
  border-radius: 8px;
}

.kid-arm {
  top: 64px;
  width: 45px;
  height: 12px;
  background: #f4bd8b;
  border: 3px solid var(--ink);
  border-radius: 99px;
  transform-origin: center left;
  z-index: 1;
}

.kid-arm-left {
  left: 24px;
  transform: rotate(-24deg);
}

.kid-arm-right {
  left: 100px;
  transform: rotate(26deg);
}

.kid-leg {
  top: 104px;
  width: 48px;
  height: 14px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 99px;
  transform-origin: center left;
}

.kid-leg-left {
  left: 49px;
  transform: rotate(62deg);
}

.kid-leg-right {
  left: 92px;
  transform: rotate(20deg);
  animation: kick 850ms ease-in-out infinite;
}

.play-ball {
  right: 0;
  bottom: 8px;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  animation: ball-bounce 850ms ease-in-out infinite;
}

.play-ball::before,
.play-ball::after {
  content: "";
  position: absolute;
  background: var(--ink);
  opacity: 0.7;
}

.play-ball::before {
  left: 14px;
  top: 1px;
  width: 4px;
  height: 29px;
}

.play-ball::after {
  left: 1px;
  top: 14px;
  width: 29px;
  height: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 253, 245, 0.86);
  border-bottom: 1px solid rgba(33, 21, 61, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 64px;
  height: 58px;
  object-fit: contain;
  padding: 3px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(44, 21, 91, 0.1);
}

.brand-mark {
  position: relative;
  width: 48px;
  height: 34px;
  border: 6px solid var(--teal);
  border-right-color: var(--orange);
  border-left-color: var(--teal);
  border-radius: 50% 45% 50% 45%;
  transform: rotate(-8deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px 6px;
  border-top: 5px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.brand strong {
  display: block;
  color: #253368;
  font-size: 1.15rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--purple);
  background: rgba(123, 44, 191, 0.08);
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--purple);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #ffffff;
  background: var(--purple-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--purple);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: #ffffff;
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 34px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/optimized/hero-outdoor-montessori.webp");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: hero-drift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 197, 51, 0.42) 0 6px, transparent 7px),
    radial-gradient(circle at 86% 26%, rgba(255, 197, 51, 0.42) 0 6px, transparent 7px),
    linear-gradient(90deg, rgba(22, 10, 43, 0.92) 0%, rgba(35, 14, 69, 0.82) 46%, rgba(15, 18, 35, 0.58) 100%),
    linear-gradient(180deg, rgba(10, 8, 18, 0.26) 0%, rgba(18, 8, 38, 0.86) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 500px;
  height: 300px;
  background: var(--purple);
  border-radius: 55% 45% 0 0;
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 20%;
  width: 120px;
  height: 120px;
  background:
    radial-gradient(circle, var(--yellow) 0 7px, transparent 8px) 0 0 / 28px 28px,
    transparent;
  opacity: 0.62;
  animation: float-slow 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 58px max(20px, calc((100vw - var(--max)) / 2));
}

.hero .eyebrow {
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0;
  font-size: 5.1rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 1.32rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 30px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  font-size: 2.1rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 6px;
  height: 10px;
  background: #ffffff;
  border-radius: 99px;
  animation: scroll-dot 1.3s ease-in-out infinite;
}

.intro {
  background:
    linear-gradient(90deg, rgba(94, 199, 217, 0.14), rgba(255, 197, 51, 0.17)),
    #ffffff;
}

.intro-grid,
.why-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 36px;
  align-items: center;
}

.promise-strip {
  display: grid;
  gap: 14px;
}

.promise-strip div {
  position: relative;
  padding: 18px 18px 18px 64px;
  background: #ffffff;
  border: 2px solid rgba(123, 44, 191, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(44, 21, 91, 0.08);
}

.promise-strip div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(45deg, transparent 48%, #ffffff 49% 54%, transparent 55%),
    var(--yellow);
  border: 3px solid var(--purple);
  border-radius: 50%;
}

.promise-strip strong {
  display: block;
  color: var(--purple-dark);
  font-size: 1.08rem;
}

.promise-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.programs {
  position: relative;
}

.programs::before,
.gallery::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background:
    radial-gradient(circle, rgba(240, 90, 40, 0.42) 0 5px, transparent 6px) 0 0 / 24px 24px,
    transparent;
  pointer-events: none;
}

.programs::before {
  right: 30px;
  top: 64px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.program-card {
  position: relative;
  display: grid;
  gap: 20px;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 197, 51, 0.28) 0 56px, transparent 60px),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(33, 21, 61, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.program-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 118px;
  height: 118px;
  background:
    radial-gradient(circle, rgba(240, 90, 40, 0.36) 0 5px, transparent 6px) 0 0 / 22px 22px,
    transparent;
}

.program-card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 24px 62px rgba(44, 21, 91, 0.2);
}

.program-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  min-height: 470px;
  padding: 32px;
  background:
    radial-gradient(circle at 87% 20%, rgba(255, 197, 51, 0.45) 0 80px, transparent 84px),
    radial-gradient(circle at 98% 82%, rgba(94, 199, 217, 0.26) 0 118px, transparent 122px),
    linear-gradient(135deg, #fff9e8 0%, #ffffff 54%, #f1fcff 100%);
}

.program-card-special {
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 197, 51, 0.65) 0 56px, transparent 60px),
    linear-gradient(135deg, var(--purple) 0%, #4a1a8a 100%);
}

.program-content {
  position: relative;
  z-index: 2;
}

.program-number {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--orange);
  border: 4px solid #ffffff;
  border-radius: 50%;
  font-size: 0.94rem;
  font-weight: 950;
  box-shadow: 0 10px 0 rgba(123, 44, 191, 0.14);
}

.program-content h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.58rem, 2vw, 2.3rem);
  line-height: 1.12;
}

.program-card-special .program-content h3,
.program-card-special .tag {
  color: #ffffff;
}

.program-meta {
  margin: 12px 0 0;
  font-size: 1rem;
}

.program-card-special .program-meta {
  color: rgba(255, 255, 255, 0.86);
}

.program-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}

.program-facts div {
  padding: 12px 10px;
  background: #ffffff;
  border: 1px solid rgba(123, 44, 191, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(44, 21, 91, 0.07);
}

.program-facts dt {
  color: var(--purple);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  font-weight: 950;
  line-height: 1;
}

.program-facts dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
}

.program-points {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.program-points li {
  position: relative;
  padding-left: 27px;
  color: var(--ink);
  line-height: 1.55;
}

.program-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(135deg, transparent 0 40%, #ffffff 41% 52%, transparent 53%),
    var(--green);
  border-radius: 50%;
}

.program-card-special .program-points li {
  color: rgba(255, 255, 255, 0.93);
}

.program-card-special .program-points li::before {
  background:
    linear-gradient(135deg, transparent 0 40%, var(--purple-dark) 41% 52%, transparent 53%),
    var(--yellow);
}

.program-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  color: var(--purple-dark);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-action:hover,
.program-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(44, 21, 91, 0.16);
}

.program-visual {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 350px;
  align-items: center;
  justify-items: end;
}

.program-visual.compact {
  min-height: 255px;
  justify-items: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 197, 51, 0.18), rgba(94, 199, 217, 0.18)),
    rgba(255, 255, 255, 0.64);
  border: 1px dashed rgba(123, 44, 191, 0.2);
  border-radius: 8px;
}

.program-photo,
.program-poster {
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(44, 21, 91, 0.18);
}

.program-photo {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 58%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  align-self: center;
  transform: rotate(-5deg);
}

.program-poster {
  position: relative;
  width: min(270px, 68%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  align-self: center;
  background: #ffffff;
  transform: rotate(4deg);
}

.zoomable-image {
  cursor: zoom-in;
}

.program-visual.compact .program-poster {
  width: min(230px, 100%);
  height: auto;
  transform: rotate(2deg);
}

.special-program {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.4fr;
  gap: 24px;
  margin-top: 28px;
  padding: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 197, 51, 0.65) 0 56px, transparent 60px),
    linear-gradient(135deg, var(--purple) 0%, #4a1a8a 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.special-program .section-kicker,
.special-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.special-copy h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.08;
}

.special-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.special-list li {
  position: relative;
  min-height: 56px;
  padding: 15px 16px 15px 52px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.special-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 19px;
  height: 19px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--orange);
}

.why {
  background:
    linear-gradient(180deg, rgba(255, 197, 51, 0.12), rgba(94, 199, 217, 0.12)),
    #ffffff;
}

.why-grid {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.why-photo {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

.why-photo::before {
  content: "";
  position: absolute;
  inset: 42px 42px 12px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 197, 51, 0.72) 0 84px, transparent 88px),
    radial-gradient(circle at 82% 82%, rgba(94, 199, 217, 0.44) 0 112px, transparent 116px),
    linear-gradient(135deg, rgba(255, 197, 51, 0.2), rgba(94, 199, 217, 0.22));
  border-radius: 8px;
  transform: rotate(2deg);
  z-index: -1;
}

.why-poster-card {
  position: relative;
  width: min(390px, 78%);
  padding: 10px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.why-poster-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
}

.why-mini {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(44, 21, 91, 0.18);
}

.why-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-mini figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(63, 22, 118, 0.84);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.why-mini-top {
  right: 0;
  top: 24px;
  width: 47%;
  aspect-ratio: 4 / 3;
  transform: rotate(4deg);
}

.why-mini-bottom {
  right: 28px;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1 / 1;
  transform: rotate(-5deg);
}

.why-badge {
  position: absolute;
  left: 18px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 16px;
  color: var(--purple-dark);
  text-align: center;
  background: var(--yellow);
  border: 8px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(44, 21, 91, 0.18);
  animation: float-slow 4.2s ease-in-out infinite;
}

.why-badge strong {
  display: block;
  font-size: 2.2rem;
  line-height: 0.9;
}

.why-badge span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.15;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 16px 18px 16px 54px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(44, 21, 91, 0.07);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(135deg, transparent 0 40%, #ffffff 41% 50%, transparent 51%),
    var(--purple);
  border-radius: 50%;
}

.gallery {
  position: relative;
}

.gallery::before {
  left: 24px;
  bottom: 76px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-portrait {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.steps {
  background:
    linear-gradient(90deg, rgba(123, 44, 191, 0.08), rgba(247, 166, 197, 0.16)),
    #fffdf5;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  position: relative;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(44, 21, 91, 0.09);
}

.step-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 950;
  box-shadow: 0 9px 0 rgba(123, 44, 191, 0.18);
}

.step-list strong {
  display: block;
  color: var(--purple-dark);
  font-size: 1.18rem;
}

.step-list p {
  margin: 10px 0 0;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(44, 21, 91, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--purple-dark);
  font-size: 1.06rem;
  font-weight: 950;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
}

.cta {
  padding-top: 0;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 197, 51, 0.82) 0 72px, transparent 76px),
    radial-gradient(circle at 92% 78%, rgba(94, 199, 217, 0.72) 0 96px, transparent 100px),
    var(--purple-dark);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-inner::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 24px;
  width: 112px;
  height: 112px;
  background:
    linear-gradient(90deg, var(--yellow) 0 33%, var(--pink) 34% 66%, var(--teal) 67% 100%);
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 50% 50% 8px 8px;
  opacity: 0.32;
  transform: rotate(-12deg);
}

.cta .section-kicker,
.cta p {
  color: rgba(255, 255, 255, 0.88);
}

.cta h2 {
  max-width: 720px;
  color: #ffffff;
}

.site-footer {
  padding: 28px 0 36px;
  color: rgba(255, 255, 255, 0.84);
  background: #241040;
}

.site-footer p {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.6fr;
  gap: 22px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--yellow);
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #ffffff;
  background: #25d366;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(18, 108, 54, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(25, 12, 46, 0.88);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  max-width: min(94vw, 1180px);
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border: 8px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.lightbox-close {
  position: fixed;
  right: 22px;
  top: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--purple-dark);
  background: #ffffff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

body.lightbox-open {
  overflow: hidden;
}

.floating-wa::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(32, 180, 91, 0.42);
  border-radius: 50%;
  animation: wa-pulse 1.8s ease-out infinite;
}

.wa-icon {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.floating-wa:hover,
.floating-wa:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 42px rgba(18, 108, 54, 0.42);
}

.reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes kid-hop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes loader-slide {
  0% {
    transform: translateX(-90%);
  }
  50% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(190%);
  }
}

@keyframes kick {
  0%,
  100% {
    transform: rotate(20deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

@keyframes ball-bounce {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(18px, -42px) rotate(120deg);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-14px);
  }
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes scroll-dot {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  40%,
  70% {
    opacity: 1;
  }
  100% {
    transform: translateY(9px);
    opacity: 0;
  }
}

@keyframes wa-pulse {
  0% {
    transform: scale(0.86);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (max-width: 1100px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-card-wide {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 82px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-lead {
    font-size: 1.12rem;
  }

  .hero-stats,
  .intro-grid,
  .why-grid,
  .faq-grid,
  .program-card-wide,
  .special-program,
  .step-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .program-card-wide {
    min-height: 0;
  }

  .program-visual {
    min-height: 315px;
  }

  .why-photo {
    min-height: 520px;
    max-width: 680px;
    margin-inline: auto;
    width: 100%;
  }

  .section-heading h2,
  .section-copy h2,
  .why-copy h2,
  .cta h2 {
    font-size: 2.16rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-item.big {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .gallery-portrait {
    grid-row: span 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .section-pad {
    padding: 62px 0;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 44px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 58px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-stats,
  .program-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .program-card,
  .program-card-wide {
    padding: 20px;
  }

  .program-facts {
    grid-template-columns: 1fr;
  }

  .program-visual,
  .program-visual.compact {
    min-height: 250px;
  }

  .program-photo {
    width: 54%;
  }

  .program-poster {
    width: min(220px, 70%);
  }

  .program-visual.compact .program-poster {
    width: min(230px, 92%);
  }

  .why-photo {
    min-height: 760px;
  }

  .why-photo::before {
    inset: 26px 0 18px;
  }

  .why-poster-card {
    width: 84%;
    margin-inline: auto;
  }

  .why-mini {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-top: 16px;
  }

  .why-mini-top,
  .why-mini-bottom {
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(50% - 8px);
  }

  .why-mini-top {
    transform: rotate(2deg);
  }

  .why-mini-bottom {
    margin-left: 12px;
    transform: rotate(-2deg);
  }

  .why-badge {
    left: 10px;
    bottom: 18px;
    width: 112px;
    height: 112px;
  }

  .gallery-grid {
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.big,
  .gallery-wide,
  .gallery-portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item,
  .gallery-wide {
    aspect-ratio: 4 / 3;
  }

  .gallery-portrait {
    aspect-ratio: 3 / 4;
  }

  .hero-actions .btn,
  .cta .btn {
    width: 100%;
  }

  .section-heading h2,
  .section-copy h2,
  .why-copy h2,
  .cta h2 {
    font-size: 1.82rem;
  }

  .special-program,
  .cta-inner {
    padding: 24px;
  }

  .floating-wa {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .wa-icon {
    width: 31px;
    height: 31px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
