:root {
  --teal: #0ea5ad;
  --teal-dark: #075f65;
  --gold: #d8a72f;
  --gold-deep: #9b6b12;
  --gold-soft: #fff3c9;
  --sun: #f4c64b;
  --coral: #ef7446;
  --mint: #96dfc6;
  --violet: #6b4aa0;
  --ink: #161a20;
  --muted: #5f6570;
  --cream: #fff7dc;
  --paper: #ffffff;
  --line: #ead494;
  --shadow: 0 22px 60px rgba(90, 60, 10, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 244, 192, 0.95), transparent 30rem),
    radial-gradient(circle at top right, rgba(216, 167, 47, 0.42), transparent 34rem),
    linear-gradient(135deg, #fff7dc 0%, #f7dc88 48%, #fff9e8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(155, 107, 18, 0.18) 0 2px, transparent 2px),
    radial-gradient(circle, rgba(7, 95, 101, 0.12) 0 2px, transparent 2px);
  background-size: 74px 74px, 108px 108px;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin-inline: auto; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 999;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
}
h1, h2, h3 {
  margin: 0;
  font-family: Poppins, Inter, system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.7rem, 7vw, 6.7rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 4.6vw, 4.2rem); }
h3 { font-size: 1.22rem; }
p { margin: 0; color: var(--muted); line-height: 1.7; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-3px); }
.primary { color: white; background: linear-gradient(135deg, #ef7446, #c7791b); box-shadow: 0 16px 34px rgba(199, 121, 27, 0.34); }
.ghost { color: var(--teal-dark); background: rgba(255, 255, 255, 0.9); box-shadow: var(--shadow); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 247, 220, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 167, 47, 0.28);
}
.nav {
  width: min(1220px, calc(100% - 28px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 18px rgba(6, 107, 116, 0.18); }
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.menu { display: flex; align-items: center; gap: 14px; font-weight: 850; font-size: 0.92rem; }
.menu a:hover { color: var(--teal-dark); }
.menu-cta { padding: 11px 18px; border-radius: 999px; color: white; background: linear-gradient(135deg, var(--teal), var(--gold-deep)); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 6px; background: var(--ink); }

section { padding: 94px 0; }
.hero {
  min-height: 760px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, white 0 3px, transparent 4px),
    radial-gradient(circle at 72% 18%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 82% 74%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 36% 82%, #fff 0 3px, transparent 4px);
  animation: shimmer 4s ease-in-out infinite alternate;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(330px, 470px);
  gap: 46px;
  align-items: center;
}
.hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 24px 0; font-size: 1.18rem; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.mini-stats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mini-stats span, .outcome-list li {
  list-style: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}
.hero-stage {
  position: relative;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255, 238, 176, 0.78));
  box-shadow: var(--shadow);
}
.hero-icon-world {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(234, 223, 201, 0.92);
  background:
    radial-gradient(circle at 50% 45%, rgba(216, 167, 47, 0.36), transparent 8rem),
    radial-gradient(circle at 28% 24%, rgba(14, 165, 173, 0.2), transparent 10rem),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255, 242, 195, .9));
}
.logo-orbit {
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.logo-orbit img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
}
.world-icon, .activity-icon, .showcase-icon span, .gallery-icon {
  display: grid;
  place-items: center;
  font-weight: 950;
  line-height: 1;
}
.world-icon {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 28px;
  color: white;
  font-size: 2.35rem;
  box-shadow: var(--shadow);
  animation: mascotBob 3.4s ease-in-out infinite;
}
.world-icon.chess { left: 12%; top: 16%; background: #6b4aa0; }
.world-icon.art { right: 13%; top: 15%; background: #ff7a59; animation-delay: .25s; }
.world-icon.yoga { left: 18%; bottom: 16%; background: #0ea5ad; animation-delay: .5s; }
.world-icon.dance { right: 17%; bottom: 18%; background: #f4b942; color: #21313a; animation-delay: .75s; }
.world-icon.karate { left: 42%; top: 7%; background: #21313a; animation-delay: 1s; }
.world-icon.speak, .world-icon.story { left: 44%; bottom: 7%; background: #7fc8a9; color: #12343a; animation-delay: 1.25s; }
.floating-badge {
  position: absolute;
  min-width: 72px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  font-weight: 950;
  box-shadow: var(--shadow);
  animation: float 3.5s ease-in-out infinite;
}
.badge-one { top: 12%; left: -18px; background: var(--violet); }
.badge-two { top: 44%; right: -18px; background: var(--teal); animation-delay: 0.5s; }
.badge-three { bottom: 9%; left: 16%; background: var(--gold-deep); animation-delay: 1s; }

.kingdom {
  background:
    radial-gradient(circle at 14% 20%, rgba(216, 167, 47, 0.28), transparent 24rem),
    linear-gradient(135deg, #fff7dc, #f1d47a);
}
.kingdom-grid, .chess-grid, .contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 50px;
  align-items: center;
}
.kingdom p, .chess-feature p { margin-top: 18px; font-size: 1.08rem; }
.sticker-board, .piece-gallery {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}
.sticker-board img { width: 100%; height: 470px; object-fit: cover; object-position: 42% 38%; }
.icon-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
}
.showcase-icon {
  min-height: 214px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  border-radius: 8px;
  color: white;
  animation: mascotBob 3s ease-in-out infinite;
}
.showcase-icon span {
  width: 92px;
  height: 92px;
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  color: var(--teal-dark);
  font-size: 2.7rem;
}
.showcase-icon strong { font-size: 1.25rem; }
.showcase-icon.chess { background: linear-gradient(135deg, #161a20, #9b6b12); }
.showcase-icon.art { background: linear-gradient(135deg, #ef7446, #d8a72f); }
.showcase-icon.yoga { background: linear-gradient(135deg, #0ea5ad, #d8a72f); }
.showcase-icon.dance { background: linear-gradient(135deg, #d8a72f, #ef7446); }
.showcase-icon:nth-child(2) { animation-delay: .3s; }
.showcase-icon:nth-child(3) { animation-delay: .6s; }
.showcase-icon:nth-child(4) { animation-delay: .9s; }

.section-heading { max-width: 760px; margin-bottom: 36px; }
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.activity-card {
  min-height: 360px;
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(234, 223, 201, 0.9);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 14px 34px rgba(29, 36, 48, 0.08);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease, box-shadow 180ms ease;
}
.activity-card.visible { opacity: 1; transform: translateY(0); }
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.activity-card p { margin: 10px 0 14px; }
.activity-card b { color: var(--teal-dark); }
.activity-icon {
  width: 128px;
  height: 128px;
  margin: 0 auto 20px;
  border: 8px solid rgba(255,255,255,.7);
  border-radius: 38px;
  color: white;
  font-size: 3.1rem;
  box-shadow: 0 16px 34px rgba(29, 36, 48, 0.14);
  animation: mascotBob 3s ease-in-out infinite;
}
.activity-icon.chess { background: linear-gradient(135deg, #6b4aa0, #151825); }
.activity-icon.art { background: linear-gradient(135deg, #ff7a59, #f4b942); }
.activity-icon.yoga { background: linear-gradient(135deg, #0ea5ad, #7fc8a9); }
.activity-icon.calligraphy { background: linear-gradient(135deg, #21313a, #6b4aa0); }
.activity-icon.dance { background: linear-gradient(135deg, #ff7a59, #ffb3c7); }
.activity-icon.karate { background: linear-gradient(135deg, #fff, #f4b942); color: #21313a; }
.activity-icon.speaking { background: linear-gradient(135deg, #0ea5ad, #eafcff); color: #12343a; }
.activity-icon.story { background: linear-gradient(135deg, #7fc8a9, #fff8de); color: #12343a; }
.chess-card, .art-card, .yoga-card, .calligraphy-card,
.dance-card, .karate-card, .speaking-card, .story-card {
  background: linear-gradient(180deg, #ffffff, #fff3c9);
}

.mascot {
  width: 152px;
  height: 160px;
  margin: 0 auto 18px;
  position: relative;
  animation: mascotBob 3s ease-in-out infinite;
}
.mascot:before {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  left: 35px;
  top: 13px;
  border-radius: 50%;
  background: #ffd8bd;
  border: 4px solid #37291d;
  box-shadow:
    24px 30px 0 -18px #37291d,
    58px 30px 0 -18px #37291d,
    42px 52px 0 -36px #ee6d5d;
}
.mascot:after {
  content: "";
  position: absolute;
  width: 96px;
  height: 78px;
  left: 28px;
  top: 78px;
  border-radius: 48% 48% 18px 18px;
  border: 4px solid #37291d;
  background: var(--teal);
}
.mascot span {
  position: absolute;
  z-index: 2;
  display: block;
}
.queen span {
  width: 80px;
  height: 34px;
  left: 36px;
  top: 0;
  background: linear-gradient(135deg, #f9c85e, #fff1a6);
  clip-path: polygon(0 100%, 10% 25%, 26% 72%, 50% 0, 74% 72%, 90% 25%, 100% 100%);
}
.queen:after { background: linear-gradient(135deg, #171923, #fff); }
.artist span {
  width: 78px;
  height: 30px;
  left: 38px;
  top: 4px;
  border-radius: 999px 999px 12px 12px;
  background: var(--coral);
  transform: rotate(-8deg);
}
.artist:after { background: linear-gradient(135deg, #ffe36d, #ff8b6a); }
.yoga span {
  width: 90px;
  height: 28px;
  left: 30px;
  bottom: 5px;
  border-radius: 999px;
  background: rgba(6,107,116,0.16);
}
.yoga:after { background: linear-gradient(135deg, var(--mint), #fff3a8); }
.calligraphy span {
  width: 8px;
  height: 86px;
  right: 18px;
  top: 50px;
  background: #2b2334;
  transform: rotate(22deg);
  border-radius: 999px;
}
.calligraphy:after { background: linear-gradient(135deg, #f7f2ff, #91d8ff); }
.dancer span {
  width: 82px;
  height: 82px;
  left: 35px;
  top: 34px;
  border-radius: 50%;
  border: 5px solid rgba(244, 122, 77, 0.4);
  border-left-color: transparent;
  border-bottom-color: transparent;
}
.dancer:after { background: linear-gradient(135deg, #ff88a4, #ffd45d); }
.karate span {
  width: 108px;
  height: 8px;
  left: 22px;
  top: 118px;
  border-radius: 999px;
  background: #222;
}
.karate:after { background: linear-gradient(135deg, white, #ffefb5); }
.speaker span {
  width: 34px;
  height: 54px;
  right: 15px;
  top: 62px;
  border-radius: 999px;
  background: #293241;
  box-shadow: inset 0 -12px 0 var(--coral);
}
.speaker:after { background: linear-gradient(135deg, #8de6ef, #fff); }
.storyteller span {
  width: 82px;
  height: 52px;
  left: 35px;
  bottom: 4px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fff 48%, #ffe4a0 50%);
  border: 3px solid #37291d;
}
.storyteller:after { background: linear-gradient(135deg, #aee6bd, #fff0a8); }

.chess-feature { background: linear-gradient(135deg, #111826, #7c540f); color: white; }
.chess-feature p, .chess-feature .eyebrow { color: rgba(255,255,255,0.78); }
.piece-gallery img { width: 100%; height: 430px; object-fit: contain; object-position: center; }
.chess-icon-feature {
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #fff8e8, #eaf7f6);
}
.chess-board-icon {
  width: min(100%, 390px);
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 10px solid #21313a;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.chess-board-icon span {
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  color: #21313a;
  background: #fff8e8;
}
.chess-board-icon span:nth-child(2),
.chess-board-icon span:nth-child(3) {
  color: white;
  background: #21313a;
}
.outcome-list { padding: 0; display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.outcome-list li { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.18); }

.journey {
  background:
    radial-gradient(circle at 80% 20%, rgba(216, 167, 47, 0.28), transparent 22rem),
    linear-gradient(135deg, #fff9e8, #f0d27a);
}
.journey-line, .parents-grid, .age-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.journey-line article, .parents-grid article, .age-grid article, .founder-card, .trial-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(29, 36, 48, 0.08);
}
.journey-line article, .parents-grid article {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.journey-line article.visible, .parents-grid article.visible {
  opacity: 1;
  transform: translateY(0);
}
.journey-line span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: var(--teal);
  font-weight: 950;
}
.journey-line p, .parents-grid p { margin-top: 10px; }
.why {
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.38), transparent 20rem),
    linear-gradient(135deg, #f8df8f, #fff8df);
}
.outcomes {
  background:
    radial-gradient(circle at 80% 12%, rgba(7, 95, 101, 0.12), transparent 22rem),
    linear-gradient(135deg, #fff3c9, #f5d470);
}
.outcomes-grid, .faq-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}
.outcome-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.outcome-cloud span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(29, 36, 48, 0.06);
}
.ages {
  background:
    radial-gradient(circle at 12% 70%, rgba(255, 255, 255, 0.36), transparent 22rem),
    linear-gradient(135deg, #fff9e8, #eecf70);
}
.age-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.age-grid p { margin-top: 10px; }
.pricing {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.38), transparent 22rem),
    linear-gradient(135deg, #f4d36f, #fff7dc);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pricing-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
  box-shadow: 0 14px 34px rgba(90, 60, 10, 0.1);
}
.pricing-grid span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #161a20;
  background: var(--gold-soft);
  font-weight: 950;
}
.pricing-grid .featured-plan {
  color: white;
  background: linear-gradient(135deg, #0d5c63, #9b6b12);
}
.pricing-grid .featured-plan p,
.pricing-grid .featured-plan span {
  color: white;
}
.pricing-grid .featured-plan span {
  background: rgba(255,255,255,.18);
}
.pricing-note {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 800;
}
.workshops {
  background: linear-gradient(135deg, #f6d777, #fff7dc);
}
.workshop-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 8px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.18), transparent 18rem),
    linear-gradient(135deg, #0d5c63, #9b6b12);
  box-shadow: var(--shadow);
}
.workshop-panel p, .workshop-panel .eyebrow { color: rgba(255,255,255,.82); }
.gallery {
  background:
    radial-gradient(circle at 85% 20%, rgba(14, 165, 173, 0.14), transparent 24rem),
    linear-gradient(135deg, #f0d27a, #fff9e8);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid button {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(29, 36, 48, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.gallery-grid button:hover { transform: rotate(-1deg) translateY(-4px); box-shadow: var(--shadow); }
.gallery-icon {
  height: 220px;
  margin: 10px;
  border-radius: 8px;
  color: white;
  font-size: 4rem;
}
.gallery-icon.chess { background: linear-gradient(135deg, #6b4aa0, #101923); }
.gallery-icon.art { background: linear-gradient(135deg, #ff7a59, #f4b942); }
.gallery-icon.dance { background: linear-gradient(135deg, #ff7a59, #ffb3c7); }
.gallery-icon.yoga { background: linear-gradient(135deg, #0ea5ad, #7fc8a9); }
.gallery-grid span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(13, 92, 99, 0.9);
  font-weight: 900;
}
.testimonials {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.42), transparent 20rem),
    linear-gradient(135deg, #fff3c9, #f2d276);
}
.faq {
  background: linear-gradient(135deg, #fff9e8, #f2d276);
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(29, 36, 48, 0.06);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}
.faq-list p { margin-top: 10px; }
.founder { background: linear-gradient(135deg, #fff9e8, #f1d47a); }
.founder-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 32px;
  align-items: center;
}
.founder-portrait {
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #161a20, var(--teal), var(--gold-deep));
  font-size: 4rem;
  font-weight: 950;
  box-shadow: var(--shadow);
}
.role { margin: 8px 0 18px; color: var(--coral); font-weight: 900; }
.team {
  background:
    radial-gradient(circle at 85% 18%, rgba(14, 165, 173, 0.14), transparent 24rem),
    linear-gradient(135deg, #fff7dc, #f2d276);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.team-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(90, 60, 10, 0.1);
}
.team-grid span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 22px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--gold-deep));
  font-weight: 950;
}
.team-grid p { margin-top: 10px; }
.parents { padding-top: 0; }
address { margin: 22px 0; color: var(--muted); font-style: normal; line-height: 1.8; }
.contact-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
}
.contact-list p {
  color: var(--ink);
}
.contact-list strong {
  color: var(--teal-dark);
}
.trial-form { display: grid; gap: 14px; }
.trial-form label { display: grid; gap: 7px; font-weight: 900; }
.trial-form input, .trial-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fffdf8;
}
.trial-form p { font-size: 0.9rem; }

.footer { padding: 44px 0 24px; color: white; background: linear-gradient(135deg, #101923, #4b340c); }
.footer-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-grid > div:first-child { margin-right: auto; }
.footer img { width: 70px; border-radius: 50%; margin-bottom: 10px; }
.footer p, .footer a { color: rgba(255,255,255,0.76); }
.copyright { text-align: center; margin-top: 26px; font-size: 0.9rem; }
.sticky-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: grid;
  gap: 8px;
}
.sticky-actions a {
  min-width: 58px;
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  font-weight: 950;
  box-shadow: var(--shadow);
}
.sticky-actions a:nth-child(2) { background: #1aa765; }
.sticky-actions a:nth-child(3) { background: var(--coral); }

@keyframes float { 50% { transform: translateY(-10px) rotate(3deg); } }
@keyframes shimmer { to { opacity: 0.55; transform: translateY(8px); } }
@keyframes mascotBob { 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .hero { min-height: auto; padding: 64px 0; }
  .hero-grid, .kingdom-grid, .chess-grid, .contact-grid, .founder-card, .outcomes-grid, .faq-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .age-grid, .gallery-grid, .pricing-grid, .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-icon-world { min-height: 360px; }
  .workshop-panel { align-items: stretch; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 24px, 1160px); }
  section { padding: 66px 0; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 0.95rem; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-stage { padding: 10px; }
  .floating-badge { display: none; }
  .activity-grid, .journey-line, .parents-grid, .age-grid, .gallery-grid, .pricing-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .activity-card { min-height: 320px; }
  .founder-portrait { width: 160px; font-size: 3rem; }
  .hero-icon-world { min-height: 320px; }
  .sticky-actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Mascot-led refresh */
.programs-link { position: relative; color: var(--teal-dark); }
.programs-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 3px; border-radius: 99px; background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal)); }
.hero { min-height: 720px; background: radial-gradient(ellipse at 18% 80%, rgba(255,255,255,.75), transparent 18rem), radial-gradient(ellipse at 88% 22%, rgba(255,255,255,.75), transparent 20rem); }
.hero::before, .hero::after { content: ""; position: absolute; width: 330px; height: 92px; border-radius: 100%; background: rgba(255,255,255,.44); filter: blur(2px); }
.hero::before { top: 80px; left: -60px; } .hero::after { bottom: 70px; right: -55px; }
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 5.5rem); max-width: 700px; }
.hero-stage { padding: 0; border: 0; background: transparent; box-shadow: none; }
.hero-icon-world { min-height: 500px; overflow: visible; border: 0; background: transparent; }
.logo-orbit { position: relative; z-index: 3; width: 168px; height: 168px; border: 0; background: transparent; box-shadow: 0 18px 34px rgba(50,42,23,.16); }
.logo-orbit img { width: 100%; height: 100%; }
.orbit-path { position: absolute; border: 2px dashed rgba(155,107,18,.4); border-radius: 50%; transform: rotate(-21deg); }
.path-one { width: 88%; height: 58%; } .path-two { width: 68%; height: 87%; transform: rotate(32deg); border-color: rgba(14,165,173,.32); }
.world-mascot { position: absolute; z-index: 2; width: 134px; height: 134px; object-fit: contain; filter: drop-shadow(0 16px 14px rgba(50,42,23,.14)); animation: mascotFloat 6s ease-in-out infinite; }
.world-mascot.chess { left: 4%; top: 8%; } .world-mascot.art { right: 2%; top: 10%; animation-delay: .7s; }
.world-mascot.yoga { left: 7%; bottom: 5%; animation-delay: 1.4s; } .world-mascot.dance { right: 5%; bottom: 7%; animation-delay: 2.1s; }
.world-mascot.karate { left: 38%; top: -6%; width: 116px; height: 116px; animation-delay: 2.8s; } .world-mascot.speak { left: 39%; bottom: -4%; width: 122px; height: 122px; animation-delay: 3.5s; }
.trust-strip { padding: 22px 0; background: rgba(255,255,255,.78); border-block: 1px solid rgba(216,167,47,.26); }
.trust-grid { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--teal-dark); font-size: .88rem; font-weight: 900; }
.stats-section { padding: 42px 0; background: linear-gradient(90deg, #0b747a, #0d5c63); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
.stats-grid div { display: grid; gap: 3px; border-right: 1px solid rgba(255,255,255,.25); }
.stats-grid div:last-child { border: 0; } .stats-grid strong { font-size: clamp(2rem,4vw,3.1rem); line-height: 1; color: #ffe8a6; } .stats-grid span { color: rgba(255,255,255,.8); font-weight: 800; }
.activity-icon { overflow: visible; border: 0; background: transparent !important; box-shadow: none; animation: none; }
.activity-icon img { width: 158px; height: 158px; max-width: none; object-fit: contain; filter: drop-shadow(0 12px 12px rgba(50,42,23,.14)); transition: transform .3s ease; }
.activity-card:hover .activity-icon img { transform: translateY(-6px) rotate(-2deg); }
.sticky-actions { right: 18px; bottom: 18px; display: flex; align-items: center; gap: 8px; padding: 8px; border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.sticky-actions a { min-width: 0; width: 48px; min-height: 48px; font-size: .72rem; }
@keyframes mascotFloat { 50% { transform: translateY(-9px) rotate(1deg); } }
@media (max-width: 980px) { .hero-icon-world { min-height: 450px; } .trust-grid { justify-content: center; } }
@media (max-width: 640px) { .hero-icon-world { min-height: 380px; } .world-mascot { width: 94px; height: 94px; } .world-mascot.karate, .world-mascot.speak { width: 82px; height: 82px; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .stats-grid div:nth-child(2) { border-right: 0; } .stats-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 16px; } .trust-grid { justify-content: flex-start; } }

/* Growing with Amma's Ark */
.growth-journey { background: radial-gradient(circle at 10% 12%, rgba(255,255,255,.5), transparent 20rem), linear-gradient(135deg, #fff9e8, #f4d678); }
.growth-heading { max-width: 840px; } .growth-heading > p:last-child { max-width: 740px; font-size: 1.05rem; margin-top: 18px; }
.growth-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.growth-grid article { position: relative; padding: 25px 22px; border: 1px solid rgba(155,107,18,.2); border-radius: 22px; background: rgba(255,255,255,.82); box-shadow: 0 16px 36px rgba(90,60,10,.1); }
.stage-icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 14px; border-radius: 16px; background: var(--gold-soft); font-size: 1.55rem; }
.stage-age { margin-bottom: 5px; color: var(--coral); font-size: .76rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.growth-grid h3 { font-size: 1.35rem; } .growth-grid p:not(.stage-age) { margin-top: 12px; font-size: .91rem; line-height: 1.58; }
.growth-grid h4 { margin: 20px 0 8px; color: var(--teal-dark); font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; }
.growth-grid ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; font-size: .85rem; color: var(--ink); font-weight: 700; }
.growth-grid li::before { content: "•"; margin-right: 7px; color: var(--coral); }
.growth-promise { display: flex; align-items: flex-start; gap: 18px; max-width: 880px; margin: 32px auto 0; padding: 26px 30px; border-radius: 22px; color: white; background: linear-gradient(135deg, var(--teal-dark), #167f78); box-shadow: var(--shadow); }
.growth-promise > span { font-size: 2rem; } .growth-promise p { margin-top: 9px; color: rgba(255,255,255,.84); }
@media (max-width: 980px) { .growth-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .growth-grid { grid-template-columns: 1fr; } .growth-promise { padding: 22px; } }
.kingdom .welcome-copy { margin-top: 16px; }
.kingdom .welcome-cta { margin-top: 24px; }
.kingdom .legacy-about { display: none; }
