:root {
  --color-primary: #6dc0fd;
  --color-white: #ffffff;
  --color-dark: #243447;
  --color-text: #405066;
  --color-muted: #7a8a9d;
  --color-soft-blue: #eef8ff;
  --color-soft-bg: #f8fcff;
  --color-border: #e4f1fb;
  --color-yellow-soft: #fff6d8;
  --color-pink-soft: #ffeef5;
  --color-green-soft: #ecfff5;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-soft: 0 12px 40px rgba(109, 192, 253, 0.18);
  --container-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-soft-bg);
  color: var(--color-text);
  font-family: "Nunito", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.is-video-open,
body.is-gallery-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  color: var(--color-dark);
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.25rem, 7vw, 4rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin-inline: auto;
}

.container.narrow {
  max-width: 780px;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.header-inner {
  align-items: center;
  display: flex;
  min-height: 94px;
  gap: 22px;
  justify-content: space-between;
}

.site-brand {
  align-items: center;
  color: var(--color-dark);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-text {
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
}

.brand-logo {
  height: auto;
  max-height: 76px;
  object-fit: contain;
  width: 142px;
}

.menu-toggle {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-toggle span:not(.screen-reader-text) {
  background: var(--color-dark);
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 18px;
}

.primary-nav {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: none;
  left: 16px;
  padding: 14px;
  position: absolute;
  right: 16px;
  top: 86px;
}

.primary-nav.is-open {
  display: block;
}

.primary-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: grid;
  gap: 6px;
}

.primary-menu a {
  border-radius: 999px;
  color: var(--color-dark);
  display: block;
  font-weight: 700;
  padding: 10px 15px;
  position: relative;
}

.primary-menu a:hover,
.primary-menu a:focus {
  background: transparent;
  color: #ff3f7c;
}

.primary-menu > li:first-child > a {
  color: #ff3f7c;
}

.primary-menu > li:first-child > a::after {
  background: #ff3f7c;
  border-radius: 999px;
  bottom: 2px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 28px;
}

.header-cta {
  display: none;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
}

.btn-phone {
  background: linear-gradient(135deg, #8c62df, #b36be9);
  color: var(--color-white);
  min-height: 46px;
  padding-inline: 22px;
  box-shadow: 0 12px 30px rgba(139, 98, 223, 0.26);
}

.btn-phone::before {
  content: "☎";
  margin-right: 8px;
}

.btn-map {
  background: var(--color-yellow-soft);
  border: 1px solid #ffe39b;
  color: var(--color-dark);
}

.text-link {
  color: var(--color-dark);
  font-weight: 800;
}

.text-link::after {
  content: " ->";
  color: var(--color-primary);
}

.eyebrow {
  color: #247cbb;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-section {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 246, 216, 0.9), transparent 28%),
    linear-gradient(180deg, #fff, var(--color-soft-bg));
  overflow: hidden;
  padding: 0 0 42px;
  position: relative;
}

.hero-shell {
  background: var(--color-soft-blue);
  border: 0;
  border-radius: 0;
  box-shadow: 0 26px 80px rgba(36, 52, 71, 0.12);
  min-height: 720px;
  overflow: hidden;
  padding: 56px 26px 34px;
  position: relative;
  width: 100%;
  max-width: none;
}

.hero-slides {
  inset: 0;
  position: absolute;
  z-index: 0;
}

.hero-slide-bg {
  animation: heroSlideFade calc(var(--slide-count, 3) * 6s) linear infinite;
  animation-delay: calc(var(--slide-index, 0) * 6s);
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0;
  position: absolute;
}

.hero-slide-bg::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.82) 38%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0.08) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-slide-bg:first-child {
  opacity: 1;
}

@keyframes heroSlideFade {
  0%,
  30% {
    opacity: 1;
  }
  36%,
  100% {
    opacity: 0;
  }
}

.hero-shell::before {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 0 70% 52%;
  content: "";
  height: 92px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 18px;
  min-height: 560px;
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 630px;
}

.hero-slide-copy {
  display: grid;
  grid-template-areas: "slide";
}

.hero-slide-content {
  animation: heroSlideFade calc(var(--slide-count, 3) * 6s) linear infinite;
  animation-delay: calc(var(--slide-index, 0) * 6s);
  grid-area: slide;
  opacity: 0;
}

.hero-slide-content:first-child {
  opacity: 1;
}

.hero-slide-content .playful-title {
  color: var(--color-dark);
  text-shadow: 0 8px 18px rgba(36, 52, 71, 0.12);
}

.playful-title span {
  display: inline-block;
  margin-right: 12px;
  text-shadow: 0 8px 18px rgba(36, 52, 71, 0.12);
}

.playful-title .purple {
  color: #7a3fd2;
}

.playful-title .green {
  color: #8abd18;
}

.playful-title .yellow {
  color: #f7b500;
}

.playful-title .pink {
  color: #ff4f8f;
}

.hero-sun {
  color: #ffc928;
  font-size: 4.4rem;
  left: 8%;
  line-height: 1;
  position: absolute;
  top: 118px;
  z-index: 2;
}

.hero-paper-plane {
  border-bottom: 16px solid transparent;
  border-left: 42px solid #ff6f9f;
  border-top: 16px solid transparent;
  filter: drop-shadow(0 8px 14px rgba(255, 79, 143, 0.22));
  height: 0;
  left: 49%;
  position: absolute;
  top: 118px;
  transform: rotate(-28deg);
  width: 0;
  z-index: 2;
}

.hero-paper-plane::after {
  border-bottom: 8px solid transparent;
  border-left: 20px solid #ff9bbb;
  border-top: 8px solid transparent;
  content: "";
  left: -38px;
  position: absolute;
  top: -8px;
}

.hero-dot {
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}

.dot-one {
  background: #ff5d86;
  height: 20px;
  left: 54%;
  top: 265px;
  width: 20px;
}

.dot-two {
  background: #8668e8;
  height: 13px;
  right: 8%;
  top: 255px;
  width: 13px;
}

.floating-cloud {
  animation: cloudFloat 24s linear infinite;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(188, 225, 250, 0.95);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(109, 192, 253, 0.28);
  height: 58px;
  opacity: 1;
  position: absolute;
  width: 164px;
  z-index: 1;
}

.floating-cloud::before,
.floating-cloud::after {
  background: inherit;
  border-radius: 50%;
  content: "";
  position: absolute;
}

.floating-cloud::before {
  height: 78px;
  left: 24px;
  top: -38px;
  width: 78px;
}

.floating-cloud::after {
  height: 64px;
  right: 22px;
  top: -28px;
  width: 64px;
}

.cloud-one {
  left: -190px;
  top: 96px;
}

.cloud-two {
  animation-duration: 32s;
  animation-delay: -10s;
  right: -210px;
  top: 210px;
  transform: scale(1);
}

.cloud-three {
  animation-duration: 38s;
  animation-delay: -18s;
  left: 20%;
  top: 36px;
  transform: scale(0.78);
}

.cloud-four {
  animation-duration: 34s;
  animation-delay: -8s;
  left: -190px;
  top: 60px;
}

.cloud-five {
  animation-duration: 36s;
  animation-delay: -14s;
  right: -210px;
  top: 80px;
  transform: scale(0.9);
}

@keyframes cloudFloat {
  0% {
    translate: -12vw 0;
  }
  50% {
    translate: 48vw -10px;
  }
  100% {
    translate: 108vw 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cloud,
  .why-card,
  .why-logo-node::before,
  .why-logo-node::after,
  .connector,
  .age-card,
  .parent-video-track {
    animation: none;
  }
}

.hero-subtitle {
  color: var(--color-dark);
  font-size: 1.28rem;
  font-weight: 700;
  max-width: 560px;
}

.meb-hero-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(255, 0, 0, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 42px rgba(255, 0, 0, 0.09), var(--shadow-soft);
  display: grid;
  gap: 14px;
  grid-template-columns: 64px 1fr;
  margin: 22px 0;
  padding: 14px;
}

.meb-hero-badge img,
.meb-feature img {
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(255, 0, 0, 0.14);
  height: auto;
  object-fit: contain;
  padding: 6px;
  width: 64px;
}

.meb-hero-badge strong {
  color: #d71920;
  display: block;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.15;
}

.meb-hero-badge span {
  color: var(--color-text);
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 58px;
  min-width: 210px;
}

.hero-actions-bottom {
  justify-content: center;
  margin: 20px auto 0;
  position: relative;
  z-index: 4;
}

.hero-actions-bottom .btn-primary {
  background: linear-gradient(135deg, #ff3f7c, #ff6d9b);
  box-shadow: 0 14px 30px rgba(255, 63, 124, 0.22);
}

.hero-actions-bottom .btn-secondary {
  border-color: #a569e8;
  color: #7a3fd2;
}

.hero-mobile-actions {
  display: none;
}

.trust-card,
.compare-card,
.content-card,
.cta-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-visual {
  min-height: 430px;
}

.hero-visual-stage {
  align-items: center;
  background:
    radial-gradient(circle at 55% 18%, rgba(255, 255, 255, 0.78), transparent 26%),
    radial-gradient(circle at 52% 48%, rgba(109, 192, 253, 0.24), transparent 46%);
  border-radius: 42% 58% 48% 52% / 52% 40% 60% 48%;
  display: flex;
  justify-content: center;
  min-height: 430px;
  padding: 10px;
  position: relative;
}

.hero-house-roof,
.toy-shape {
  display: none;
}

.hero-blob {
  aspect-ratio: 1.2 / 1;
  border: 0;
  border-radius: 26px;
  box-shadow: none;
  height: auto;
  max-width: 610px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-blob img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-feature-strip {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  border-radius: 36px;
  box-shadow: 0 22px 56px rgba(36, 52, 71, 0.14);
  display: grid;
  gap: 16px;
  margin-top: -10px;
  padding: 22px;
  position: relative;
  z-index: 4;
}

.hero-feature-strip div {
  align-items: center;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.hero-feature-strip span {
  align-items: center;
  border-radius: 50%;
  color: var(--color-white);
  display: inline-flex;
  font-size: 1.2rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 4px;
  width: 48px;
}

.hero-feature-strip strong {
  color: var(--color-dark);
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.hero-feature-strip small {
  color: var(--color-text);
  line-height: 1.35;
}

.pink-bg {
  background: #ff78a8;
}

.yellow-bg {
  background: #ffc928;
}

.green-bg {
  background: #a6ce39;
}

.purple-bg {
  background: #9b67dd;
}

.hero-placeholder {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  font-weight: 900;
  gap: 8px;
  height: 100%;
  justify-content: center;
  padding: 28px;
  text-align: center;
  width: 100%;
}

.hero-placeholder span {
  font-size: 2rem;
}

.section {
  padding: 58px 0;
}

.soft-section {
  background: var(--color-white);
}

.cloud-band {
  background: linear-gradient(180deg, var(--color-soft-bg), var(--color-soft-blue));
  overflow: hidden;
  position: relative;
}

.cloud-band .container {
  position: relative;
  z-index: 2;
}

.section-heading {
  margin-bottom: 26px;
  max-width: 760px;
}

.row-heading {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: var(--container-width);
}

.trust-grid,
.age-grid,
.content-grid,
.compare-grid,
.schedule-grid,
.gallery-grid,
.why-orbit {
  display: grid;
  gap: 16px;
}

.why-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 246, 216, 0.78), transparent 22%),
    linear-gradient(180deg, var(--color-soft-bg), #fff);
  overflow: hidden;
  position: relative;
}

.why-section::before,
.why-section::after {
  background: rgba(109, 192, 253, 0.22);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.why-section::before {
  height: 260px;
  right: -110px;
  top: 40px;
  width: 260px;
}

.why-section::after {
  bottom: 20px;
  height: 180px;
  left: -80px;
  width: 180px;
}

.why-section .section-heading {
  margin-inline: auto;
  max-width: 820px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.why-orbit {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin-inline: auto;
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.why-logo-node {
  align-items: center;
  background: var(--color-white);
  border: 2px solid rgba(109, 192, 253, 0.28);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(109, 192, 253, 0.18);
  display: flex;
  height: auto;
  justify-content: center;
  order: -1;
  padding: 18px;
  position: relative;
  width: 100%;
  z-index: 3;
}

.why-logo-node::before,
.why-logo-node::after {
  display: none;
}

.why-logo-node img {
  max-height: 74px;
  object-fit: contain;
  width: min(190px, 58vw);
}

.why-connectors {
  display: none;
  inset: 0;
  position: absolute;
  z-index: 1;
}

.connector {
  background: linear-gradient(90deg, rgba(109, 192, 253, 0.04), rgba(109, 192, 253, 0.5), rgba(255, 63, 124, 0.15));
  border-radius: 999px;
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: left center;
}

.connector-one {
  transform: rotate(220deg);
  width: min(30vw, 142px);
}

.connector-two {
  transform: rotate(270deg);
  width: min(27vw, 132px);
}

.connector-three {
  transform: rotate(320deg);
  width: min(30vw, 142px);
}

.connector-four {
  transform: rotate(140deg);
  width: min(30vw, 142px);
}

.connector-five {
  transform: rotate(40deg);
  width: min(30vw, 142px);
}

.why-card {
  align-items: flex-start;
  animation: none;
  background: var(--color-white);
  border: 1px solid rgba(109, 192, 253, 0.24);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(109, 192, 253, 0.17);
  display: grid;
  gap: 10px 14px;
  grid-template-columns: auto 1fr;
  justify-content: start;
  padding: 18px;
  position: static;
  text-align: left;
  width: 100%;
  z-index: 3;
}

.why-card-one {
  left: auto;
  top: auto;
}

.why-card-two {
  left: auto;
  top: auto;
}

.why-card-three {
  right: auto;
  top: auto;
}

.why-card-four {
  bottom: auto;
  left: auto;
}

.why-card-five {
  bottom: auto;
  right: auto;
}

.why-card:nth-of-type(2) {
  animation-delay: -1.2s;
}

.why-card:nth-of-type(3) {
  animation-delay: -2.4s;
}

.why-card:nth-of-type(4) {
  animation-delay: -3.6s;
}

.why-card:nth-of-type(5) {
  animation-delay: -4.8s;
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.45deg);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(1turn);
  }
}

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

.why-card span {
  align-items: center;
  background: var(--color-soft-blue);
  border-radius: 50%;
  display: inline-flex;
  font-size: 1.35rem;
  grid-row: span 2;
  height: 52px;
  justify-content: center;
  margin-bottom: 0;
  width: 52px;
}

.why-card-two span {
  background: var(--color-pink-soft);
}

.why-card-three span {
  background: #fff0f0;
}

.why-card-four span {
  background: var(--color-yellow-soft);
}

.why-card-five span {
  background: var(--color-green-soft);
}

.why-card h3 {
  font-size: clamp(1.18rem, 5vw, 1.45rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.why-card p {
  font-size: 0.96rem;
  font-weight: 800;
  grid-column: 2;
  line-height: 1.42;
  margin-bottom: 0;
}

.age-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 246, 216, 0.9), transparent 21%),
    radial-gradient(circle at 86% 10%, rgba(109, 192, 253, 0.22), transparent 22%),
    linear-gradient(180deg, #fff, var(--color-soft-bg));
  overflow: hidden;
  position: relative;
}

.age-section .floating-cloud {
  opacity: 0.46;
  right: -38px;
  top: 44px;
}

.age-section .section-heading {
  margin-inline: auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

.age-section .age-grid {
  position: relative;
  z-index: 2;
}

.age-card {
  animation: ageSlideIn 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.86) 0 42px, transparent 44px),
    linear-gradient(145deg, #fff, #eef8ff);
  border: 1px solid rgba(109, 192, 253, 0.22);
  border-radius: 34px;
  box-shadow: 0 20px 46px rgba(109, 192, 253, 0.18);
  min-height: 280px;
  overflow: hidden;
  padding: 26px;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.age-card:nth-child(2) {
  animation-delay: 120ms;
}

.age-card:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes ageSlideIn {
  from {
    opacity: 0;
    transform: translateX(90px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.age-card::before {
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px 999px 0 0;
  bottom: -42px;
  content: "";
  height: 92px;
  left: -12%;
  position: absolute;
  width: 124%;
}

.age-card::after {
  background: var(--color-pink-soft);
  border-radius: 50%;
  content: "";
  height: 96px;
  position: absolute;
  right: -26px;
  top: -24px;
  width: 96px;
}

.age-card:nth-child(2) {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.86) 0 42px, transparent 44px),
    linear-gradient(145deg, #fff, #fff6d8);
}

.age-card:nth-child(2)::after {
  background: var(--color-yellow-soft);
}

.age-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.86) 0 42px, transparent 44px),
    linear-gradient(145deg, #fff, #ecfff5);
}

.age-card:nth-child(3)::after {
  background: var(--color-green-soft);
}

.age-card:nth-child(4) {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.86) 0 42px, transparent 44px),
    linear-gradient(145deg, #fff, #ffeef5);
}

.age-card:nth-child(4)::after {
  background: var(--color-soft-blue);
}

.age-card:hover {
  box-shadow: 0 26px 60px rgba(109, 192, 253, 0.25);
  transform: translateY(-8px) rotate(-0.4deg);
}

.age-card > * {
  position: relative;
  z-index: 1;
}

.age-icon {
  align-items: center;
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(36, 52, 71, 0.1);
  display: inline-flex;
  font-size: 2.4rem;
  height: 74px;
  justify-content: center;
  margin-bottom: 18px;
  width: 74px;
}

.age-card strong {
  color: #7c3ed6;
  display: block;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.age-card h3 {
  color: var(--color-dark);
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.age-card p {
  font-weight: 700;
  margin-bottom: 18px;
}

.age-card small {
  background: var(--color-white);
  border: 1px solid rgba(109, 192, 253, 0.22);
  border-radius: 999px;
  color: #247cbb;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 900;
  padding: 7px 12px;
}

.activities-section {
  background:
    radial-gradient(circle at 10% 12%, var(--color-yellow-soft), transparent 20%),
    radial-gradient(circle at 90% 10%, rgba(109, 192, 253, 0.2), transparent 22%),
    linear-gradient(180deg, #fff, var(--color-soft-bg));
  overflow: hidden;
  position: relative;
}

.activities-section .section-heading {
  margin-inline: auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

.activities-grid {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.activity-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: 0 16px 40px rgba(109, 192, 253, 0.16);
  cursor: default;
  display: grid;
  min-height: 178px;
  overflow: hidden;
  padding: 24px 18px;
  position: relative;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.activity-card::before {
  background: var(--color-soft-blue);
  border-radius: 999px;
  content: "";
  height: 130px;
  position: absolute;
  right: -48px;
  top: -58px;
  width: 130px;
  z-index: 0;
}

.activity-card:nth-child(2n)::before {
  background: var(--color-pink-soft);
}

.activity-card:nth-child(3n)::before {
  background: var(--color-yellow-soft);
}

.activity-card:nth-child(4n)::before {
  background: var(--color-green-soft);
}

.activity-card > * {
  position: relative;
  z-index: 1;
}

.activity-card span {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(36, 52, 71, 0.1);
  display: inline-flex;
  font-size: 2.4rem;
  height: 76px;
  justify-content: center;
  margin: 0 auto 14px;
  width: 76px;
}

.activity-card h3 {
  color: var(--color-dark);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.activity-card p {
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.45;
  margin: 10px auto 0;
}

.activity-card:hover,
.activity-card:focus {
  border-color: rgba(109, 192, 253, 0.7);
  box-shadow: 0 22px 54px rgba(109, 192, 253, 0.24);
  outline: 0;
  transform: translateY(-8px) rotate(-0.5deg);
}

.advisor-section {
  background:
    radial-gradient(circle at 12% 16%, var(--color-yellow-soft), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(109, 192, 253, 0.22), transparent 24%),
    linear-gradient(180deg, var(--color-soft-bg), #fff);
}

.advisor-panel {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--color-border);
  border-radius: 42px;
  box-shadow: 0 24px 70px rgba(109, 192, 253, 0.16);
  display: grid;
  gap: 34px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.advisor-panel::before {
  background: rgba(109, 192, 253, 0.12);
  border-radius: 50%;
  content: "";
  height: 220px;
  position: absolute;
  right: -82px;
  top: -86px;
  width: 220px;
}

.advisor-photo {
  align-items: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.88), transparent 26%),
    linear-gradient(135deg, var(--color-soft-blue), #fff);
  border: 1px solid rgba(109, 192, 253, 0.18);
  border-radius: 34px;
  display: flex;
  height: 520px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.advisor-photo img {
  border-radius: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  width: 100%;
}

.advisor-content {
  position: relative;
  z-index: 1;
}

.advisor-content h2 {
  color: var(--color-dark);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
  margin-bottom: 10px;
}

.advisor-content > p {
  color: var(--color-text);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.65;
  max-width: 760px;
}

.advisor-note {
  background: linear-gradient(135deg, #fff, var(--color-soft-blue));
  border: 1px solid var(--color-border);
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(109, 192, 253, 0.12);
  margin-top: 28px;
  padding: 20px 22px;
}

.advisor-note span {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(36, 52, 71, 0.08);
  display: inline-flex;
  font-size: 1.65rem;
  height: 54px;
  justify-content: center;
  margin-bottom: 12px;
  width: 54px;
}

.advisor-note strong {
  color: var(--color-dark);
  display: block;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.28rem;
  margin-bottom: 6px;
}

.advisor-note p {
  color: var(--color-text);
  font-weight: 700;
  margin-bottom: 0;
}

.parent-videos-section {
  background: linear-gradient(180deg, #fff, var(--color-soft-bg));
}

.parent-videos-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.parent-video-marquee {
  margin-inline: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.parent-video-marquee::before,
.parent-video-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(120px, 14vw);
  z-index: 2;
}

.parent-video-marquee::before {
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
  left: 0;
}

.parent-video-marquee::after {
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
  right: 0;
}

.parent-video-track {
  display: flex;
  justify-content: center;
  width: 100%;
}

.parent-video-marquee.is-overflowing .parent-video-track {
  animation: parentVideoMarquee 28s linear infinite;
  justify-content: flex-start;
  width: max-content;
}

.parent-video-marquee:hover .parent-video-track,
.parent-video-marquee:focus-within .parent-video-track {
  animation-play-state: paused;
}

.parent-video-set {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-right: 18px;
}

.parent-video-set[aria-hidden="true"] {
  pointer-events: none;
}

.parent-video-marquee:not(.is-overflowing) .parent-video-set[aria-hidden="true"] {
  display: none;
}

@keyframes parentVideoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.parent-video-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 32px;
  flex: 0 0 clamp(210px, 24vw, 280px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  width: clamp(210px, 24vw, 280px);
}

.parent-video-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: grid;
  padding: 0;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.parent-video-button:disabled {
  cursor: default;
}

.video-poster {
  align-items: center;
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--color-soft-blue), var(--color-pink-soft));
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.video-poster img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-poster-placeholder {
  color: #247cbb;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 24px;
  text-align: center;
}

.play-icon {
  align-items: center;
  background: rgba(255, 63, 124, 0.94);
  border-radius: 50%;
  color: var(--color-white);
  display: inline-flex;
  font-size: 1.25rem;
  height: 58px;
  justify-content: center;
  left: 50%;
  padding-left: 3px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
}

.parent-video-button:disabled .play-icon {
  background: rgba(122, 138, 157, 0.7);
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  inset: 0;
  position: fixed;
  z-index: 999;
}

.video-modal-backdrop {
  background: rgba(36, 52, 71, 0.72);
  inset: 0;
  position: absolute;
}

.video-modal-dialog {
  background: #000;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  left: 50%;
  max-width: min(920px, calc(100% - 32px));
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.video-modal-dialog video {
  display: block;
  max-height: 78vh;
  width: 100%;
}

.youtube-modal-dialog {
  aspect-ratio: 9 / 16;
  max-height: min(82vh, 760px);
  max-width: min(420px, calc(100% - 32px));
}

.youtube-modal-dialog iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.video-modal-close {
  background: var(--color-white);
  border: 0;
  border-radius: 999px;
  color: var(--color-dark);
  font-weight: 900;
  padding: 8px 14px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}

.blog-section {
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 246, 216, 0.96), transparent 20%),
    radial-gradient(circle at 88% 12%, rgba(255, 238, 245, 0.92), transparent 18%),
    linear-gradient(180deg, #fff, #f8fcff);
  overflow: hidden;
  position: relative;
}

.blog-section::before,
.blog-section::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  z-index: 0;
}

.blog-section::before {
  background: rgba(109, 192, 253, 0.18);
  height: 170px;
  left: -70px;
  top: 88px;
  width: 170px;
}

.blog-section::after {
  background: rgba(255, 120, 168, 0.14);
  bottom: 56px;
  height: 210px;
  right: -92px;
  width: 210px;
}

.blog-section .container {
  position: relative;
  z-index: 2;
}

.blog-heading {
  align-items: end;
}

.blog-heading h2 {
  max-width: 760px;
}

.blog-heading p:last-child {
  color: var(--color-text);
  font-size: 1.08rem;
  font-weight: 700;
  max-width: 580px;
}

.blog-all-link {
  background: var(--color-white);
  border: 1px solid rgba(109, 192, 253, 0.26);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
  padding: 10px 16px;
}

.blog-grid {
  display: grid;
  gap: 18px;
}

.blog-card {
  background:
    radial-gradient(circle at 90% 9%, rgba(255, 255, 255, 0.95) 0 38px, transparent 40px),
    linear-gradient(145deg, #fff, #eef8ff);
  border: 1px solid rgba(109, 192, 253, 0.24);
  border-radius: 34px;
  box-shadow: 0 18px 48px rgba(109, 192, 253, 0.18);
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.blog-card:nth-child(2) {
  background:
    radial-gradient(circle at 90% 9%, rgba(255, 255, 255, 0.95) 0 38px, transparent 40px),
    linear-gradient(145deg, #fff, #fff6d8);
}

.blog-card:nth-child(3) {
  background:
    radial-gradient(circle at 90% 9%, rgba(255, 255, 255, 0.95) 0 38px, transparent 40px),
    linear-gradient(145deg, #fff, #ffeef5);
}

.blog-card::after {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px 999px 0 0;
  bottom: -38px;
  content: "";
  height: 84px;
  left: -10%;
  position: absolute;
  width: 120%;
  z-index: 0;
}

.blog-card:hover {
  box-shadow: 0 26px 64px rgba(109, 192, 253, 0.25);
  transform: translateY(-6px) rotate(-0.35deg);
}

.blog-card > * {
  position: relative;
  z-index: 1;
}

.blog-card-media {
  align-items: center;
  aspect-ratio: 1.42 / 1;
  background: linear-gradient(135deg, var(--color-soft-blue), var(--color-pink-soft));
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.blog-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-placeholder {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(36, 52, 71, 0.12);
  color: #6dc0fd;
  display: inline-flex;
  font-size: 3rem;
  height: 110px;
  justify-content: center;
  width: 110px;
}

.blog-date-badge {
  background: #ff78a8;
  border: 4px solid var(--color-white);
  border-radius: 999px;
  bottom: 14px;
  box-shadow: 0 12px 26px rgba(255, 120, 168, 0.28);
  color: var(--color-white);
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  left: 16px;
  line-height: 1;
  padding: 10px 13px;
  position: absolute;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 1.48rem;
  line-height: 1.08;
}

.blog-card-body p:not(.eyebrow) {
  color: var(--color-text);
  font-weight: 700;
}

.blog-card-empty {
  grid-column: 1 / -1;
}

.meb-feature {
  align-items: center;
  background: linear-gradient(135deg, #fff, #fff7f7 55%, var(--color-soft-blue));
  border: 2px solid rgba(255, 63, 124, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 52px rgba(109, 192, 253, 0.18);
  display: grid;
  gap: 24px;
  margin-bottom: 0;
  padding: clamp(22px, 3.2vw, 44px);
}

.meb-feature img {
  width: clamp(82px, 9vw, 128px);
}

.meb-feature h2 {
  color: #d71920;
  font-size: clamp(2rem, 4.7vw, 4rem);
  line-height: 1;
  margin-bottom: 8px;
}

.meb-feature p:last-child {
  margin-bottom: 0;
}

.trust-card,
.compare-card {
  padding: 24px;
}

.trust-card span {
  align-items: center;
  background: var(--color-soft-blue);
  border-radius: 999px;
  color: #247cbb;
  display: inline-flex;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  margin-bottom: 14px;
  width: 44px;
}

.weekly-calendar-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 238, 245, 0.95), transparent 18%),
    radial-gradient(circle at 14% 18%, var(--color-yellow-soft), transparent 22%),
    linear-gradient(180deg, #fffdf7, #fff);
  overflow: hidden;
  position: relative;
}

.weekly-calendar-section .container {
  position: relative;
  z-index: 2;
}

.weekly-program-shell {
  background:
    radial-gradient(circle at 91% 12%, rgba(255, 205, 72, 0.18), transparent 16%),
    radial-gradient(circle at 90% 22%, rgba(109, 192, 253, 0.2), transparent 18%),
    rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(109, 192, 253, 0.22);
  border-radius: 38px;
  box-shadow: 0 24px 70px rgba(109, 192, 253, 0.18);
  overflow: hidden;
  padding: 22px 16px 34px;
}

.weekly-program-head {
  margin: 0 auto 24px;
  max-width: 850px;
  text-align: center;
}

.weekly-program-head img {
  margin: 0 auto 12px;
  max-height: 96px;
  object-fit: contain;
  width: 150px;
}

.weekly-program-head h2 {
  color: #4a7532;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 12px;
  text-shadow: 0 4px 0 rgba(74, 117, 50, 0.1);
  text-transform: uppercase;
}

.weekly-program-head > span {
  background: linear-gradient(135deg, #ff6d8f, #ff8ca5);
  border-radius: 10px;
  color: var(--color-white);
  display: inline-flex;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.3vw, 1.55rem);
  font-weight: 900;
  line-height: 1.2;
  padding: 10px 24px;
}

.weekly-program-scroll {
  overflow-x: auto;
  outline: 0;
  padding-bottom: 10px;
}

.weekly-program-scroll > .weekly-program-grid {
  display: grid;
  grid-template-columns: 116px repeat(7, minmax(148px, 1fr));
  min-width: 1160px;
}

.program-head-cell,
.program-time-cell,
.program-day-cell {
  border: 1px solid rgba(218, 225, 208, 0.9);
}

.program-head-cell {
  align-items: center;
  background: #fff0f3;
  color: #d72f43;
  display: flex;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 58px;
  padding: 10px;
  text-transform: uppercase;
}

.program-head-cell:nth-child(3n) {
  background: #fff4df;
  color: #d96c18;
}

.program-head-cell:nth-child(4n) {
  background: #eef8e8;
  color: #4d7f37;
}

.program-head-cell:nth-child(5n) {
  background: #f1ebff;
  color: #6d43b8;
}

.time-head {
  background: #eef8e8;
  color: #4d7f37;
}

.program-time-cell {
  align-items: center;
  background: rgba(246, 255, 239, 0.82);
  color: #315d2a;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 96px;
  padding: 12px;
  text-align: center;
}

.program-day-cell {
  background: rgba(255, 253, 247, 0.74);
  min-height: 96px;
  padding: 8px;
}

.program-chip {
  background: linear-gradient(135deg, #fff2bd, #ffe08f);
  border: 1px solid rgba(255, 173, 38, 0.36);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(255, 173, 38, 0.12);
  color: var(--color-dark);
  display: grid;
  min-height: 74px;
  padding: 10px 12px;
  text-align: center;
}

.program-chip + .program-chip {
  margin-top: 8px;
}

.program-chip > span {
  display: grid;
  gap: 2px;
}

.program-chip strong {
  font-size: 1rem;
  line-height: 1.15;
}

.program-chip em {
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.program-chip small {
  color: rgba(36, 52, 71, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
}

.chip-2 {
  background: linear-gradient(135deg, #e9f8d8, #d6edc5);
  border-color: rgba(96, 150, 54, 0.22);
}

.chip-3 {
  background: linear-gradient(135deg, #e6f5ff, #c9edf9);
  border-color: rgba(67, 172, 204, 0.22);
}

.chip-4 {
  background: linear-gradient(135deg, #fff1f5, #ffd3df);
  border-color: rgba(255, 109, 143, 0.28);
}

.chip-5 {
  background: linear-gradient(135deg, #f1ecff, #ddd1ff);
  border-color: rgba(109, 67, 184, 0.22);
}

.split-grid {
  display: grid;
  gap: 24px;
}

.content-card {
  overflow: hidden;
}

.card-media {
  align-items: center;
  aspect-ratio: 1.35 / 1;
  background: var(--color-soft-blue);
  display: flex;
  justify-content: center;
}

.media-placeholder {
  color: #247cbb;
  font-weight: 900;
}

.card-body {
  padding: 22px;
}

.card-body h2 {
  font-size: 1.35rem;
}

.workshop-date-badge {
  align-items: center;
  background: var(--color-yellow-soft);
  border: 1px solid rgba(255, 201, 40, 0.34);
  border-radius: 999px;
  color: var(--color-dark);
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 900;
  gap: 7px;
  line-height: 1;
  margin: 0 0 12px;
  padding: 8px 12px;
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.meta-pills li {
  background: var(--color-soft-blue);
  border-radius: 999px;
  color: #247cbb;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 10px;
}

.empty-note {
  background: var(--color-white);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  color: var(--color-muted);
  padding: 24px;
}

.mini-feature,
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.mini-feature.yellow {
  background: var(--color-yellow-soft);
}

.mini-feature.pink {
  background: var(--color-pink-soft);
}

.mini-feature.green {
  background: var(--color-green-soft);
}

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

.gallery-tile {
  align-items: end;
  aspect-ratio: 1.25 / 1;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  color: var(--color-dark);
  display: flex;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  overflow: hidden;
  padding: 22px;
  position: relative;
  margin: 0;
}

.gallery-tile[hidden],
.gallery-load-more[hidden] {
  display: none;
}

.gallery-tile.is-gallery-revealed {
  animation: gallery-fade-in 0.58s ease both;
  animation-delay: var(--gallery-reveal-delay, 0ms);
}

.gallery-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.gallery-load-more {
  min-width: 210px;
}

@keyframes gallery-fade-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-tile.is-gallery-revealed {
    animation: none;
  }
}

.gallery-tile button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  height: 100%;
  padding: 0;
  text-align: left;
  width: 100%;
}

.gallery-tile img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.gallery-tile::after {
  background: linear-gradient(180deg, transparent 35%, rgba(36, 52, 71, 0.68));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gallery-tile figcaption {
  bottom: 22px;
  color: var(--color-white);
  left: 22px;
  pointer-events: none;
  position: absolute;
  text-shadow: 0 2px 14px rgba(36, 52, 71, 0.45);
  z-index: 2;
}

.gallery-tile:hover img,
.gallery-tile:focus-within img {
  transform: scale(1.04);
}

.gallery-tile img {
  transition: transform 220ms ease;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  inset: 0;
  position: fixed;
  z-index: 998;
}

.gallery-modal-backdrop {
  background: rgba(36, 52, 71, 0.76);
  inset: 0;
  position: absolute;
}

.gallery-modal-dialog {
  background: var(--color-white);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  left: 50%;
  max-width: min(960px, calc(100% - 32px));
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.gallery-modal-dialog img {
  background: #f8fcff;
  display: block;
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.gallery-modal-dialog p {
  color: var(--color-dark);
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  padding: 14px 18px 18px;
}

.gallery-modal-close {
  background: var(--color-white);
  border: 0;
  border-radius: 999px;
  color: var(--color-dark);
  font-weight: 900;
  padding: 8px 14px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}

.gallery-modal-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(36, 52, 71, 0.18);
  color: var(--color-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 2.6rem;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  z-index: 2;
}

.gallery-modal-prev {
  left: 12px;
}

.gallery-modal-next {
  right: 12px;
}

.gallery-modal-nav:hover,
.gallery-modal-nav:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.testimonial-card p {
  color: var(--color-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonial-card strong {
  color: #247cbb;
}

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

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  justify-content: space-between;
  padding: 18px 20px;
  text-align: left;
  width: 100%;
}

.faq-item button::after {
  content: "+";
  color: #247cbb;
  font-size: 1.5rem;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-section {
  padding-top: 20px;
}

.cta-box {
  align-items: center;
  display: grid;
  gap: 24px;
  padding: 28px;
}

.page-hero {
  background: linear-gradient(180deg, var(--color-white), var(--color-soft-blue));
  padding: 70px 0;
}

.page-hero.compact {
  padding: 54px 0;
}

.about-page-hero,
.contact-page-hero,
.gallery-page-hero,
.workshop-page-hero {
  background:
    radial-gradient(circle at 12% 16%, var(--color-yellow-soft), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(109, 192, 253, 0.24), transparent 24%),
    linear-gradient(180deg, #fff, var(--color-soft-bg));
}

.page-hero .container > p:not(.eyebrow) {
  color: var(--color-text);
  font-size: 1.14rem;
  font-weight: 700;
  max-width: 760px;
}

.page-split,
.contact-panel {
  display: grid;
  gap: 28px;
}

.page-visual-card {
  background: linear-gradient(135deg, var(--color-soft-blue), #fff);
  border: 1px solid var(--color-border);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 16px;
}

.page-visual-card img {
  border-radius: 28px;
  display: block;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.about-purpose-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 201, 61, 0.2), transparent 18%),
    radial-gradient(circle at 92% 82%, rgba(255, 93, 149, 0.14), transparent 20%),
    var(--color-soft-bg);
  overflow: hidden;
  position: relative;
}

.about-purpose-heading {
  margin-bottom: 30px;
  max-width: 760px;
}

.about-purpose-grid {
  display: grid;
  gap: 20px;
}

.about-purpose-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.about-purpose-card::after {
  border-radius: 50%;
  content: "";
  height: 150px;
  opacity: 0.58;
  position: absolute;
  right: -64px;
  top: -64px;
  width: 150px;
}

.about-mission-card::after {
  background: var(--color-soft-blue);
}

.about-vision-card::after {
  background: #fff0f5;
}

.about-purpose-mark {
  align-items: center;
  background: #fff3c9;
  border-radius: 50%;
  color: #ce8910;
  display: inline-flex;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  width: 52px;
  z-index: 1;
}

.about-vision-card .about-purpose-mark {
  background: #ffe8f0;
  color: #d83d73;
}

.about-purpose-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.12;
  margin-bottom: 14px;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.about-purpose-card > p:last-child {
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
  position: relative;
  z-index: 1;
}

.feature-row,
.workshop-intro-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.feature-row article,
.workshop-intro-grid article,
.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.feature-row span,
.workshop-intro-grid span,
.contact-card span {
  align-items: center;
  background: var(--color-soft-blue);
  border-radius: 50%;
  color: #247cbb;
  display: inline-flex;
  font-family: "Baloo 2", "Nunito", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  height: 62px;
  justify-content: center;
  margin-bottom: 14px;
  width: 62px;
}

.feature-row article:nth-child(2) span,
.workshop-intro-grid article:nth-child(2) span,
.contact-card:nth-child(2) span {
  background: var(--color-yellow-soft);
  color: #b66d00;
}

.feature-row article:nth-child(3) span,
.workshop-intro-grid article:nth-child(3) span,
.contact-card:nth-child(3) span {
  background: var(--color-pink-soft);
  color: #d83070;
}

.contact-card a {
  color: #247cbb;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.map-frame {
  border: 1px solid var(--color-border);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  min-height: 360px;
  width: 100%;
}

.prose {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.featured-media {
  margin: 0 0 24px;
}

.detail-layout {
  display: grid;
  gap: 22px;
}

.detail-meta {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 18px;
}

.detail-meta div {
  background: var(--color-soft-blue);
  border-radius: var(--radius-md);
  color: var(--color-dark);
  font-weight: 800;
  padding: 12px 14px;
}

.full-width {
  width: 100%;
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.76);
  padding: 52px 0 90px;
}

.site-footer h2,
.site-footer .brand-text {
  color: var(--color-white);
}

.footer-brand .brand-logo {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-md);
  max-height: 76px;
  padding: 6px;
  width: 126px;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-about > p {
  line-height: 1.65;
  max-width: 390px;
}

.footer-list,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li,
.footer-menu li {
  margin-bottom: 8px;
}

.footer-list li {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}

.footer-list strong {
  color: var(--color-white);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  transition: color 160ms ease;
}

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

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-links a,
.footer-directions {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  padding: 9px 14px;
}

.footer-social-links a:first-child {
  background: #25d366;
  border-color: #25d366;
  color: var(--color-white);
}

.footer-visit p {
  line-height: 1.55;
  margin-bottom: 10px;
}

.footer-directions {
  margin-top: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
}

.mobile-sticky-cta {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  bottom: 0;
  display: none;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  left: 0;
  padding: 10px 16px;
  position: fixed;
  right: 0;
  z-index: 120;
}

.mobile-sticky-cta a {
  background: var(--color-primary);
  border-radius: 999px;
  color: var(--color-white);
  font-weight: 900;
  padding: 10px;
  text-align: center;
}

.mobile-sticky-cta .mobile-whatsapp-button {
  background: #25d366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.mobile-sticky-cta .mobile-whatsapp-button:hover,
.mobile-sticky-cta .mobile-whatsapp-button:focus-visible {
  background: #1fba59;
}

.whatsapp-rail {
  align-items: center;
  background: #25d366;
  border-radius: 999px 0 0 999px;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.34);
  color: var(--color-white);
  display: none;
  font-weight: 900;
  gap: 10px;
  min-height: 56px;
  padding: 10px 18px 10px 12px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 130;
}

.whatsapp-rail-icon {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  color: #25d366;
  display: inline-flex;
  font-size: 1.1rem;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 88px;
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.34);
  color: var(--color-white);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 54px;
  padding: 10px 18px 10px 12px;
  position: fixed;
  right: 18px;
  z-index: 136;
}

.whatsapp-float-icon {
  align-items: center;
  background: var(--color-white);
  border-radius: 50%;
  color: #25d366;
  display: inline-flex;
  font-size: 1.1rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.instagram-float {
  align-items: center;
  background: linear-gradient(135deg, #ff3f7c, #9b67dd);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 16px 40px rgba(155, 103, 221, 0.34);
  color: var(--color-white);
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 54px;
  padding: 10px 18px 10px 12px;
  position: fixed;
  right: 18px;
  z-index: 135;
}

.instagram-float-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  color: #d83070;
  display: inline-flex;
  font-size: 1.2rem;
  height: 34px;
  justify-content: center;
  width: 34px;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    border-radius: 0 0 28px 28px;
  }

  .header-inner {
    min-height: 78px;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    max-height: 58px;
    width: 118px;
  }

  .menu-toggle {
    background: linear-gradient(135deg, #ff3f7c, #ff6d9b);
    border: 0;
    box-shadow: 0 12px 28px rgba(255, 63, 124, 0.22);
    height: 50px;
    margin-left: auto;
    width: 50px;
  }

  .menu-toggle span:not(.screen-reader-text) {
    background: var(--color-white);
  }

  .hero-section {
    padding-bottom: 28px;
  }

  .hero-shell {
    min-height: 720px;
    padding: 34px 20px 28px;
  }

  .hero-shell::before {
    height: 72px;
  }

  .hero-grid {
    gap: 14px;
    min-height: 540px;
  }

  .hero-copy {
    margin-inline: auto;
    max-width: 360px;
    text-align: center;
  }

  .hero-copy > .eyebrow,
  .hero-copy > p:not(.hero-subtitle) {
    display: none;
  }

  .playful-title {
    font-size: clamp(2.65rem, 12.4vw, 3.65rem);
    line-height: 0.98;
    margin-top: 82px;
    margin-bottom: 18px;
  }

  .playful-title span {
    margin-right: 6px;
  }

  .hero-subtitle {
    font-size: 1.08rem;
    line-height: 1.52;
    margin-inline: auto;
    max-width: 320px;
  }

  .meb-hero-badge {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    order: 2;
  }

  .hero-visual-stage {
    background:
      radial-gradient(circle at 92% 15%, rgba(109, 192, 253, 0.28), transparent 26%),
      radial-gradient(circle at 12% 70%, rgba(109, 192, 253, 0.24), transparent 22%);
    min-height: 420px;
    padding: 0;
  }

  .hero-blob {
    aspect-ratio: 0.76 / 1;
    border-radius: 0;
    max-width: none;
    overflow: visible;
    width: min(132vw, 520px);
  }

  .hero-blob img {
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
  }

  .hero-feature-strip {
    border-radius: 28px;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    margin: -18px -12px 0;
    padding: 18px 8px 20px;
  }

  .hero-feature-strip span {
    font-size: 1rem;
    height: 44px;
    width: 44px;
  }

  .hero-feature-strip strong {
    font-size: 0.9rem;
  }

  .hero-feature-strip small {
    display: none;
  }

  .hero-actions-bottom {
    display: none;
  }

  .hero-mobile-actions {
    display: grid;
    gap: 14px;
    margin: 22px auto 20px;
    max-width: 330px;
  }

  .hero-mobile-actions .btn {
    min-height: 54px;
    min-width: 0;
    width: 100%;
  }

  .hero-mobile-actions .btn-primary {
    background: linear-gradient(135deg, #ff3f7c, #ff6d9b);
    box-shadow: 0 14px 30px rgba(255, 63, 124, 0.22);
  }

  .hero-mobile-actions .btn-secondary {
    border-color: #a569e8;
    color: #7a3fd2;
  }

  .hero-sun {
    font-size: 4.1rem;
    left: 34px;
    top: 92px;
  }

  .hero-paper-plane {
    display: none;
  }

  .dot-one {
    left: 8%;
    top: 520px;
  }

  .dot-two {
    right: 13%;
    top: 190px;
  }

  .blog-heading {
    align-items: start;
    display: grid;
    gap: 14px;
  }

  .blog-card-body {
    padding: 20px;
  }

  .instagram-float {
    bottom: 86px;
    font-size: 0.9rem;
    min-height: 48px;
    padding: 8px 14px 8px 10px;
    right: 12px;
  }

  .advisor-panel {
    border-radius: 32px;
    padding: 18px;
  }

  .advisor-photo {
    height: 420px;
  }

  .advisor-content h2 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .why-section {
    padding-top: 42px;
  }

  .why-section .section-heading {
    max-width: 380px;
  }

  .why-section .section-heading h2 {
    font-size: clamp(2rem, 9.2vw, 2.65rem);
    line-height: 1.06;
  }

  .why-section::before {
    height: 180px;
    right: -90px;
    top: 110px;
    width: 180px;
  }

  .why-section::after {
    bottom: -54px;
    height: 140px;
    left: -72px;
    width: 140px;
  }
}

@media (min-width: 768px) {
  .trust-grid,
  .age-grid,
  .content-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1.15fr 0.85fr 0.95fr;
  }

  .feature-row,
  .workshop-intro-grid,
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .age-section .age-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-box {
    grid-template-columns: 1fr auto;
    padding: 34px;
  }

  .footer-grid {
    grid-template-columns: 1.35fr 1fr 0.85fr 1fr;
  }

  .hero-feature-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .meb-feature {
    grid-template-columns: 96px 1fr;
    padding: 26px 30px;
  }

  .meb-feature img {
    width: 96px;
  }

  .why-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
  }

  .why-logo-node {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    width: min(100% - 80px, 1520px);
  }

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: block;
    padding: 0;
    position: static;
  }

  .primary-menu {
    align-items: center;
    display: flex;
    gap: 4px;
  }

  .header-cta {
    display: inline-flex;
  }

  .brand-logo {
    max-height: 86px;
    width: 158px;
  }

  .hero-section {
    padding: 0 0 58px;
  }

  .hero-grid {
    align-items: center;
    grid-template-columns: minmax(0, 0.72fr);
  }

  .hero-shell {
    border-radius: 0;
    min-height: 760px;
    padding: 70px clamp(48px, 6vw, 104px) 34px;
  }

  .playful-title {
    font-size: clamp(4.4rem, 6.3vw, 6.8rem);
  }

  .split-grid {
    align-items: center;
    grid-template-columns: 0.78fr 1fr;
  }

  .page-split,
  .contact-panel {
    align-items: center;
    grid-template-columns: 0.82fr 1fr;
  }

  .why-orbit {
    display: block;
    height: 720px;
    margin-top: 24px;
    max-width: 1180px;
  }

  .why-logo-node {
    border-radius: 50%;
    box-shadow: 0 24px 70px rgba(109, 192, 253, 0.25);
    height: 224px;
    left: 50%;
    order: initial;
    padding: 38px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 224px;
    overflow: visible;
  }

  .why-logo-node::before,
  .why-logo-node::after {
    border-radius: 50%;
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
  }

  .why-logo-node::before {
    animation: orbitSpin 14s linear infinite;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 63, 124, 0.72) 0 7px, transparent 8px),
      radial-gradient(circle at 96% 50%, rgba(255, 214, 72, 0.86) 0 6px, transparent 7px),
      radial-gradient(circle at 50% 100%, rgba(109, 192, 253, 0.82) 0 7px, transparent 8px),
      conic-gradient(from 90deg, rgba(109, 192, 253, 0), rgba(109, 192, 253, 0.48), rgba(255, 63, 124, 0.2), rgba(109, 192, 253, 0));
    inset: -34px;
    opacity: 0.72;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px));
  }

  .why-logo-node::after {
    animation: logoPulse 3.6s ease-in-out infinite;
    background: rgba(109, 192, 253, 0.13);
    inset: -22px;
  }

  .why-logo-node img {
    max-height: 132px;
    width: 100%;
  }

  .why-connectors {
    display: block;
    inset: 0;
    position: absolute;
    z-index: 1;
  }

  .connector {
    animation: connectorFlow 4.8s ease-in-out infinite alternate;
    background: linear-gradient(90deg, rgba(109, 192, 253, 0.04), rgba(109, 192, 253, 0.68), rgba(255, 63, 124, 0.26), rgba(109, 192, 253, 0.08));
    background-size: 220% 100%;
    border-radius: 999px;
    display: block;
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform-origin: left center;
  }

  .connector-one {
    transform: rotate(212deg);
    width: 330px;
  }

  .connector-two {
    transform: rotate(270deg);
    width: 250px;
  }

  .connector-three {
    transform: rotate(328deg);
    width: 330px;
  }

  .connector-four {
    transform: rotate(142deg);
    width: 330px;
  }

  .connector-five {
    transform: rotate(38deg);
    width: 330px;
  }

  .why-card {
    align-items: center;
    animation: cardFloat 7s ease-in-out infinite;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    max-width: none;
    padding: 24px;
    position: absolute;
    text-align: center;
    width: 276px;
    z-index: 3;
  }

  .why-card-one {
    left: 4%;
    top: 44px;
  }

  .why-card-two {
    left: calc(50% - 138px);
    top: 0;
  }

  .why-card-three {
    right: 4%;
    top: 44px;
  }

  .why-card-four {
    bottom: 26px;
    left: 15%;
  }

  .why-card-five {
    bottom: 26px;
    right: 15%;
  }

  .why-card span {
    font-size: 1.65rem;
    grid-row: auto;
    height: 64px;
    margin-bottom: 10px;
    width: 64px;
  }

  .why-card h3 {
    font-size: 1.55rem;
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 1rem;
    font-weight: 500;
    grid-column: auto;
    line-height: 1.36;
  }

  .age-section .age-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .activity-card p {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .activity-card:hover p,
.activity-card:focus p {
    opacity: 1;
    transform: translateY(0);
  }

  .advisor-panel {
    grid-template-columns: 0.78fr 1fr;
    padding: 34px;
  }

  .detail-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .whatsapp-rail {
    display: none;
  }

  .site-footer {
    padding-bottom: 38px;
  }
}

@media (min-width: 768px) {
  .whatsapp-float,
  .instagram-float {
    display: inline-flex;
  }

  .mobile-sticky-cta,
  .whatsapp-rail {
    display: none;
  }
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: grid;
  }

  .whatsapp-float,
  .whatsapp-rail {
    display: none;
  }

  .instagram-float {
    bottom: 86px;
    display: inline-flex;
    right: 12px;
  }

  .blog-grid,
  .gallery-grid,
  .activities-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card {
    border-radius: 20px;
  }

  .blog-card-media {
    aspect-ratio: 1 / 0.78;
  }

  .blog-card-placeholder {
    font-size: 2rem;
    height: 64px;
    width: 64px;
  }

  .blog-date-badge {
    border-width: 2px;
    bottom: 8px;
    font-size: 0.76rem;
    left: 8px;
    padding: 7px 9px;
  }

  .blog-card-body {
    padding: 15px 13px 17px;
  }

  .blog-card-body .eyebrow {
    font-size: 0.72rem;
  }

  .blog-card-body h3 {
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .blog-card-body > p:not(.eyebrow) {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .blog-card-body .text-link {
    font-size: 0.84rem;
  }

  .gallery-tile {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    font-size: 1rem;
    padding: 12px;
  }

  .gallery-tile figcaption {
    bottom: 12px;
    left: 12px;
    right: 10px;
  }

  .activity-card {
    border-radius: 20px;
    min-height: 220px;
    padding: 18px 10px;
  }

  .activity-card span {
    font-size: 1.8rem;
    height: 58px;
    margin-bottom: 10px;
    width: 58px;
  }

  .activity-card h3 {
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .activity-card p {
    font-size: 0.84rem;
    line-height: 1.4;
    margin-top: 8px;
  }
}
