:root {
  --red: #f05b78;
  --red-dark: #df3f62;
  --navy: #3f63c6;
  --blue: #31b7f3;
  --yellow: #ffd43b;
  --green: #45d681;
  --pink: #ff87bd;
  --orange: #ff9c3f;
  --ink: #263661;
  --muted: #617092;
  --line: #dfe9fb;
  --paper: #ffffff;
  --soft: #f0fbff;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(63, 99, 198, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff8ed;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: clamp(178px, 16vw, 228px);
}

.brand-logo {
  width: clamp(168px, 15vw, 218px);
  height: 64px;
  object-fit: contain;
  object-position: center;
  padding: 8px 12px;
  background: #fff;
  border: 2px solid rgba(255, 135, 189, 0.24);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(240, 91, 120, 0.11);
  filter: drop-shadow(0 8px 14px rgba(240, 91, 120, 0.13));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 26px);
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--red);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  width: 100%;
}

.header-call {
  display: grid;
  gap: 1px;
  min-width: 172px;
  padding: 10px 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 24px rgba(49, 183, 243, 0.34);
}

.header-call span {
  font-size: 0.76rem;
  font-weight: 700;
  opacity: 0.78;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--blue);
  border: 0;
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  min-height: calc(100vh - 88px);
  padding: clamp(54px, 7vw, 92px) clamp(20px, 6vw, 86px) clamp(64px, 7vw, 96px);
  overflow: hidden;
  background:
    url("assets/images/template/hero-doodle-bg.png") center bottom / cover no-repeat,
    radial-gradient(circle at 15% 22%, rgba(255, 212, 59, 0.46), transparent 25%),
    radial-gradient(circle at 86% 18%, rgba(255, 135, 189, 0.38), transparent 25%),
    radial-gradient(circle at 72% 78%, rgba(69, 214, 129, 0.18), transparent 22%),
    linear-gradient(135deg, #fff5e7 0%, #eaf9ff 58%, #fff0f8 100%);
}

.home-banner {
  border-bottom: 1px solid rgba(120, 188, 233, 0.18);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 3px dashed rgba(246, 168, 200, 0.48);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 190px;
  height: 190px;
  left: -60px;
  bottom: 12%;
}

.hero::after {
  width: 132px;
  height: 132px;
  right: 6%;
  top: 14%;
  border-color: rgba(49, 183, 243, 0.5);
}

.home-banner::after {
  background: rgba(255, 255, 255, 0.32);
}

.banner-plane {
  position: absolute;
  right: clamp(22px, 5vw, 88px);
  bottom: clamp(28px, 5vw, 78px);
  z-index: 1;
  width: clamp(88px, 11vw, 160px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.hero-logo-badge {
  width: clamp(158px, 17vw, 236px);
  height: auto;
  margin-bottom: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(255, 135, 189, 0.24);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(63, 99, 198, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Baloo 2", "Inter", sans-serif;
  line-height: 0.98;
  color: var(--navy);
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
}

h3 {
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-lead {
  margin-bottom: 18px;
  color: var(--red-dark);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-copy p:not(.eyebrow):not(.hero-lead) {
  max-width: 660px;
  color: #33405a;
  font-size: 1.08rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--pink));
  box-shadow: 0 14px 28px rgba(240, 91, 120, 0.3);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.hero-media {
  justify-self: end;
  width: min(100%, 620px);
  padding: clamp(10px, 1.2vw, 16px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--yellow), var(--pink), var(--blue), var(--green)) border-box;
  border: 7px solid transparent;
  border-radius: 38% 62% 48% 52% / 48% 38% 62% 52%;
  box-shadow: 0 28px 70px rgba(120, 188, 233, 0.26);
  transform: rotate(1.4deg);
}

.hero-media::before {
  position: absolute;
  inset: 8%;
  z-index: -1;
  content: "";
  background: rgba(255, 212, 59, 0.38);
  border-radius: 44% 56% 62% 38% / 46% 53% 47% 54%;
  transform: rotate(-8deg);
}

.hero-media::after {
  position: absolute;
  right: -24px;
  bottom: 7%;
  z-index: -1;
  width: 118px;
  height: 118px;
  content: "";
  background: rgba(69, 214, 129, 0.34);
  border-radius: 50%;
}

.hero-media img {
  width: 100%;
  height: min(68vh, 640px);
  min-height: 430px;
  object-fit: cover;
  object-position: 45% center;
  border-radius: 36% 64% 48% 52% / 48% 38% 62% 52%;
}

.banner-note {
  position: absolute;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  padding: 10px;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 255, 255, 0.92);
  border: 6px solid rgba(255, 216, 107, 0.82);
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(84, 115, 184, 0.16);
  transform: rotate(-7deg);
}

.banner-note strong,
.banner-note span {
  display: block;
  line-height: 1;
}

.banner-note strong {
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.7rem;
}

.banner-note span {
  margin-top: -12px;
  font-size: 0.82rem;
  font-weight: 900;
}

.banner-note-age {
  left: -22px;
  top: 10%;
}

.banner-note-love {
  right: -12px;
  bottom: 10%;
  border-color: rgba(246, 168, 200, 0.8);
  transform: rotate(6deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: #fff;
  border-block: 1px solid var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 24px clamp(16px, 2.2vw, 30px);
  background: #fff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip strong {
  display: block;
  color: var(--red);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1.05;
}

.trust-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.why {
  background: var(--soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.feature-card,
.testimonial-grid article,
.program-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(84, 115, 184, 0.08);
}

.feature-card {
  min-height: 250px;
  padding: 24px 20px;
  overflow: hidden;
}

.feature-card-photo {
  padding-top: 0;
}

.feature-photo {
  width: calc(100% + 40px);
  height: 132px;
  margin: 0 -20px 22px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--red);
  border: 6px solid #ffe0e3;
  border-radius: 50%;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--blue);
  border-color: #dceeff;
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--green);
  border-color: #dcf5e8;
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--pink);
  border-color: #ffe2ee;
}

.feature-card:nth-child(5) .feature-icon {
  background: var(--yellow);
  border-color: #fff1bd;
  color: var(--navy);
}

.feature-card p,
.testimonial-grid p {
  color: var(--muted);
  font-size: 0.95rem;
}

.programs {
  background: #fff;
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) 1fr;
  gap: clamp(22px, 5vw, 54px);
  align-items: start;
}

.program-image {
  position: sticky;
  top: 112px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.program-image img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.program-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.program-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
}

.program-list span {
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.9rem;
}

.program-list article:nth-child(3n + 1) span {
  background: var(--red);
}

.program-list article:nth-child(3n + 2) span {
  background: var(--blue);
}

.program-list article:nth-child(3n) span {
  background: var(--green);
}

.program-list h3 {
  margin: 0;
  font-size: 1rem;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr) minmax(220px, 0.34fr);
  gap: 42px;
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 200, 51, 0.24), transparent 24%),
    linear-gradient(100deg, rgba(120, 188, 233, 0.92), rgba(246, 168, 200, 0.82));
}

.about-band h2,
.about-band .eyebrow {
  color: #fff;
}

.about-band p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.about-image {
  padding: 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius) - 2px);
}

.about-stats {
  display: grid;
  gap: 14px;
}

.about-stats div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.about-stats strong {
  display: block;
  color: var(--yellow);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.about-stats span {
  font-weight: 800;
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid article {
  min-height: 210px;
  padding: 26px;
}

.testimonial-grid h3 {
  color: var(--red);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.55rem;
}

.gallery {
  background: var(--soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid article {
  display: grid;
  align-items: end;
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(84, 115, 184, 0.72) 100%),
    linear-gradient(135deg, rgba(255, 200, 51, 0.9), rgba(245, 106, 164, 0.9) 46%, rgba(13, 103, 189, 0.95));
  border: 10px solid #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(84, 115, 184, 0.12);
}

.gallery-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, transparent 0%, rgba(84, 115, 184, 0.72) 100%),
    linear-gradient(135deg, rgba(47, 179, 109, 0.95), rgba(13, 103, 189, 0.9));
}

.gallery-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, transparent 0%, rgba(84, 115, 184, 0.72) 100%),
    linear-gradient(135deg, rgba(242, 127, 145, 0.9), rgba(255, 216, 107, 0.92));
}

.gallery-grid span {
  color: #fff;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-page,
.contact-page {
  padding: clamp(46px, 7vw, 94px) clamp(20px, 6vw, 86px) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 212, 59, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 135, 189, 0.18), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f2fbff 100%);
}

.gallery-hero,
.contact-hero {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.gallery-hero h1,
.contact-hero h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--navy);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.9;
  text-transform: none;
}

.gallery-hero p:not(.eyebrow),
.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 700;
}

.gallery-photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-photo-grid article {
  position: relative;
  min-height: 360px;
  padding: 0;
  background: #fff;
  isolation: isolate;
}

.gallery-photo-grid article::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 30%, rgba(38, 54, 97, 0.7) 100%);
}

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

.gallery-photo-grid span {
  position: relative;
  z-index: 2;
  padding: 22px;
  text-shadow: 0 3px 12px rgba(38, 54, 97, 0.24);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  max-width: none;
}

.contact-hero img {
  width: min(100%, 360px);
  justify-self: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 4px solid rgba(255, 135, 189, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-cards article {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(63, 99, 198, 0.1);
}

.contact-cards span {
  display: block;
  margin-bottom: 16px;
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-cards a,
.contact-cards address {
  color: var(--navy);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin: clamp(20px, 5vw, 70px) clamp(20px, 6vw, 86px);
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 212, 59, 0.35), transparent 18%),
    radial-gradient(circle at 94% 12%, rgba(49, 183, 243, 0.22), transparent 20%),
    linear-gradient(135deg, #fff6df 0%, #fff 45%, #eefaff 100%);
  border: 2px solid rgba(255, 135, 189, 0.28);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(63, 99, 198, 0.12);
}

.contact-band::before {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 220px;
  height: 220px;
  content: "";
  border: 18px solid rgba(255, 135, 189, 0.22);
  border-radius: 50%;
}

.contact-band::after {
  position: absolute;
  left: 34px;
  top: 34px;
  width: 110px;
  height: 110px;
  content: "";
  border: 4px dashed rgba(49, 183, 243, 0.26);
  border-radius: 50%;
}

.contact-band-copy,
.contact-list {
  position: relative;
  z-index: 1;
}

.contact-band h2,
.contact-band .eyebrow {
  color: var(--navy);
}

.contact-band h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.8rem, 4.8vw, 5.3rem);
  line-height: 0.92;
}

.contact-band p {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list address {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: var(--navy);
  background: #fff;
  border: 2px solid rgba(223, 233, 251, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(63, 99, 198, 0.09);
  font-style: normal;
  font-weight: 900;
}

.contact-list > a > span,
.contact-list > address > span {
  color: var(--pink);
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border: 2px solid rgba(223, 233, 251, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(63, 99, 198, 0.09);
}

.map-preview {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 210px;
  padding: clamp(18px, 4vw, 30px);
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 18%, transparent 18% 22%, rgba(255, 255, 255, 0.9) 22% 58%, transparent 58% 62%, rgba(255, 255, 255, 0.9) 62%),
    linear-gradient(0deg, transparent 0 24%, rgba(49, 183, 243, 0.18) 24% 26%, transparent 26% 58%, rgba(246, 168, 200, 0.22) 58% 60%, transparent 60%),
    linear-gradient(135deg, #eaf8ff, #fff5df);
  border: 0;
  border-radius: 8px;
}

.map-preview::before,
.map-preview::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.map-preview::before {
  inset: 16px;
  border: 3px dashed rgba(84, 115, 184, 0.18);
  border-radius: 8px;
}

.map-preview::after {
  right: 12%;
  bottom: 16%;
  width: 112px;
  height: 112px;
  background: rgba(69, 214, 129, 0.18);
  border-radius: 50%;
}

.map-preview > span {
  position: relative;
  z-index: 1;
}

.map-pin {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  margin-right: 16px;
  background: linear-gradient(135deg, var(--red), var(--pink));
  border: 7px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 14px 28px rgba(240, 91, 120, 0.28);
  transform: rotate(-45deg);
}

.map-pin::after {
  position: absolute;
  inset: 12px;
  content: "";
  background: #fff;
  border-radius: 50%;
}

.map-preview strong,
.map-preview small {
  display: block;
}

.map-preview strong {
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.08;
}

.map-preview small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border: 0;
  border-radius: 8px;
}

.contact-map {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: stretch;
  margin: 0 clamp(20px, 6vw, 86px) clamp(58px, 8vw, 104px);
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(63, 99, 198, 0.1);
}

.contact-page .contact-map {
  margin-inline: 0;
}

.contact-map h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.contact-map address {
  margin-bottom: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.map-preview-large {
  min-height: 360px;
  box-shadow: inset 0 0 0 1px rgba(223, 233, 251, 0.9);
}

.map-preview-large .map-pin {
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.map-preview-large .map-pin::after {
  inset: 16px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 86px);
  color: #fff;
  background: var(--navy);
}

.site-footer strong {
  color: #fff;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  font-weight: 900;
  color: var(--yellow);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 18px 12px 14px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(135deg, var(--green), var(--blue));
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(69, 214, 129, 0.34);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border: 2px solid rgba(69, 214, 129, 0.5);
  border-radius: inherit;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

.floating-whatsapp::after {
  animation-delay: 0.8s;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(49, 183, 243, 0.36);
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }

  72%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.info-page {
  padding: 0 clamp(20px, 6vw, 86px) clamp(60px, 8vw, 110px);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 200, 51, 0.11), transparent 24%),
    radial-gradient(circle at 86% 36%, rgba(13, 103, 189, 0.08), transparent 24%),
    #fff;
}

.info-hero {
  max-width: 1180px;
  padding: clamp(32px, 5vw, 56px) 0 clamp(12px, 3vw, 28px);
}

.info-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.4vw, 5.9rem);
  white-space: nowrap;
  text-transform: none;
}

.info-hero p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
}

.info-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 120px);
  align-items: center;
  min-height: 360px;
  padding: clamp(26px, 4vw, 56px) 0;
}

.info-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
}

.info-row.reverse .circle-photo {
  order: 2;
}

.info-row.reverse .info-copy {
  order: 1;
}

.circle-photo {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: 12px;
  background: #fff;
  border: 10px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 20px 42px rgba(84, 115, 184, 0.12);
}

.circle-photo::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 78%;
  height: 52px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 72%);
  transform: translateX(-50%);
  pointer-events: none;
}

.circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hygiene-photo img {
  object-position: 43% center;
}

.security-photo img {
  object-position: 46% center;
}

.branch-photo img {
  object-position: 48% 48%;
}

.teacher-photo img {
  object-position: 56% center;
}

.info-row:nth-of-type(3n) .circle-photo {
  border-color: var(--red);
}

.info-row:nth-of-type(3n + 1) .circle-photo {
  border-color: var(--blue);
}

.info-copy h2 {
  margin-bottom: 24px;
  color: #4c85c9;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.info-copy ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 24px;
  color: #1b1f2d;
  font-size: clamp(1.02rem, 1.3vw, 1.28rem);
  font-weight: 700;
}

.info-copy li::marker {
  color: var(--red);
}

.color-card,
.hygiene-card {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.color-card {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 44px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 200, 51, 0.35), transparent 28%),
    linear-gradient(135deg, #ffffff, #eef6ff);
}

.color-card span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
}

.color-card span:nth-child(2) {
  background: var(--blue);
}

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

.color-card span:nth-child(4) {
  color: var(--navy);
  background: var(--yellow);
}

.hygiene-card {
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, #dff5eb, #ddecff 52%, #fff5cb);
}

.hygiene-card span {
  color: var(--navy);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
}

.program-page {
  min-height: calc(100vh - 88px);
  padding: 0 clamp(20px, 6vw, 86px) clamp(64px, 8vw, 110px);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 200, 51, 0.15), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(245, 106, 164, 0.1), transparent 24%),
    #fff;
}

.program-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  padding: clamp(48px, 7vw, 86px) 0 clamp(32px, 5vw, 60px);
}

.program-hero h1 {
  max-width: 980px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 6.6vw, 6.4rem);
  text-transform: none;
}

.program-hero p:not(.eyebrow) {
  max-width: 960px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 600;
}

.program-age-badge {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 200, 51, 0.38), transparent 26%),
    linear-gradient(135deg, var(--red), var(--navy));
  border-radius: 50%;
  text-align: center;
  box-shadow: var(--shadow);
}

.program-age-badge strong {
  display: block;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(4rem, 7vw, 6.4rem);
  line-height: 0.82;
}

.program-age-badge span {
  display: block;
  max-width: 150px;
  margin-top: 10px;
  font-weight: 900;
  line-height: 1.22;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-cards article {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 172px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(84, 115, 184, 0.08);
}

.program-cards span {
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

.program-cards article:nth-child(3n + 2) span {
  background: var(--blue);
}

.program-cards article:nth-child(3n) span {
  background: var(--green);
}

.program-cards h2 {
  margin-bottom: 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.22rem;
  line-height: 1.18;
}

.program-cards p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.playful-program-page {
  padding-inline: 0;
  padding-bottom: 0;
  background:
    linear-gradient(180deg, #fffdf7 0%, #eefaff 34%, #eaf9ff 100%);
}

.playful-program-hero {
  position: relative;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  min-height: 560px;
  padding-inline: clamp(20px, 6vw, 86px);
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(44px, 6vw, 82px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 216, 107, 0.2), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(246, 168, 200, 0.22), transparent 25%),
    linear-gradient(135deg, #fffdf8 0%, #f5fcff 70%, #fff6fb 100%);
}

.playful-program-hero::before {
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  bottom: 30px;
  width: 168px;
  height: 168px;
  content: "";
  border: 3px dashed rgba(120, 188, 233, 0.38);
  border-radius: 50%;
}

.playful-program-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50px;
  content: "";
  background: url("assets/images/template/hero-wave.png") center bottom / 1920px 50px repeat-x;
}

.playful-program-hero > div {
  position: relative;
  z-index: 1;
}

.program-hero-art {
  position: relative;
  justify-self: end;
  width: min(100%, 720px);
  margin-bottom: -10px;
  padding: clamp(10px, 1.2vw, 16px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--yellow), var(--pink), var(--blue), var(--green)) border-box;
  border: 7px solid transparent;
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(120, 188, 233, 0.22);
  transform: rotate(1deg);
}

.program-hero-art::before {
  position: absolute;
  inset: 14px;
  z-index: -1;
  content: "";
  background: rgba(255, 216, 107, 0.28);
  border-radius: 34px;
  transform: rotate(-5deg);
}

.program-hero-art::after {
  position: absolute;
  right: -22px;
  top: -22px;
  width: 92px;
  height: 92px;
  content: "";
  background:
    radial-gradient(circle, rgba(246, 168, 200, 0.78) 0 34%, transparent 36%),
    radial-gradient(circle, rgba(120, 188, 233, 0.6) 0 34%, transparent 36%);
  background-position: 0 0, 26px 26px;
  background-size: 48px 48px;
  border-radius: 50%;
  opacity: 0.55;
}

.program-hero-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: center 64%;
  background: #fff;
  border-radius: 22px;
}

.program-age-ribbon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: -20px;
  margin-left: clamp(20px, 5vw, 92px);
  padding: 12px 20px;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(246, 168, 200, 0.55);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(84, 115, 184, 0.12);
}

.program-age-ribbon strong {
  color: var(--red-dark);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 1.36rem;
  line-height: 1;
}

.program-age-ribbon span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
}

.program-showcase {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(34px, 5vw, 70px) clamp(28px, 5vw, 72px);
  padding: clamp(70px, 10vw, 132px) clamp(20px, 6vw, 86px) clamp(72px, 9vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 42%, rgba(255, 255, 255, 0.72), transparent 20%),
    radial-gradient(circle at 88% 28%, rgba(255, 255, 255, 0.62), transparent 18%),
    #eaf9ff;
}

.program-showcase::before {
  position: absolute;
  left: -4%;
  right: -4%;
  top: clamp(210px, 24vw, 330px);
  height: 220px;
  content: "";
  background: none;
  border-top: 4px dashed rgba(231, 105, 153, 0.72);
  border-radius: 50%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.program-showcase::after {
  position: absolute;
  right: 2.4%;
  top: clamp(245px, 27vw, 380px);
  width: 54px;
  height: 38px;
  content: "";
  background:
    linear-gradient(135deg, transparent 48%, #54b9ef 50%, transparent 54%),
    linear-gradient(22deg, transparent 48%, #54b9ef 50%, transparent 54%);
  border: 3px solid #54b9ef;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 18% 52%);
  opacity: 0.9;
}

.cloud-row {
  position: absolute;
  left: -5%;
  right: -5%;
  top: -74px;
  height: 142px;
  background:
    radial-gradient(circle at 8% 78%, #fff 0 82px, transparent 84px),
    radial-gradient(circle at 22% 58%, #fff 0 116px, transparent 118px),
    radial-gradient(circle at 40% 72%, #fff 0 90px, transparent 92px),
    radial-gradient(circle at 57% 58%, #fff 0 118px, transparent 120px),
    radial-gradient(circle at 75% 72%, #fff 0 92px, transparent 94px),
    radial-gradient(circle at 90% 58%, #fff 0 120px, transparent 122px);
  pointer-events: none;
}

.program-showcase-heading {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  max-width: none;
}

.program-showcase-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  white-space: nowrap;
}

.program-tile {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 430px;
  text-align: center;
}

.program-photo-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 265px);
  aspect-ratio: 1.15;
  margin-bottom: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, #dff4ff, #fff);
  border: 4px dashed #54b9ef;
  box-shadow: 0 18px 38px rgba(84, 115, 184, 0.08);
}

.program-photo-frame::after {
  position: absolute;
  left: 50%;
  bottom: -28px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  content: "";
  background:
    radial-gradient(circle at center, #fff 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 19px, transparent 20px),
    #54b9ef;
  border: 4px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  transform: translateX(-50%);
}

.program-photo-frame span {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: #fff;
  background: var(--navy);
  border-radius: 50%;
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.program-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-square img {
  object-position: 58% center;
}

.frame-square {
  transform: rotate(-8deg);
}

.frame-circle {
  width: min(100%, 250px);
  border-color: #e56aa4;
  border-radius: 50%;
  transform: rotate(2deg);
}

.frame-circle img {
  border-radius: 50%;
}

.german-photo img {
  object-position: 54% center;
}

.drama-photo img {
  object-position: 42% center;
}

.chess-photo img {
  object-position: 54% center;
}

.play-therapy-photo img {
  object-position: 58% center;
}

.values-photo img {
  object-position: 50% center;
}

.attention-photo img {
  object-position: 52% center;
}

.art-music-photo img {
  object-position: 45% center;
}

.intelligence-photo img {
  object-position: 78% center;
}

.frame-circle::after {
  background:
    radial-gradient(circle at center, #fff 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 19px, transparent 20px),
    #e56aa4;
}

.frame-triangle {
  width: min(100%, 270px);
  background: transparent;
  border: 0;
  transform: rotate(5deg);
}

.frame-triangle::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 28px rgba(84, 115, 184, 0.1));
}

.frame-triangle img {
  position: absolute;
  inset: 16px;
  z-index: 1;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.frame-triangle::after {
  z-index: 2;
  background:
    radial-gradient(circle at center, #fff 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 19px, transparent 20px),
    #f7bd3a;
}

.frame-triangle span {
  position: relative;
  z-index: 1;
  margin-top: 56px;
}

.frame-green {
  border-color: #62c879;
}

.frame-green::after {
  background:
    radial-gradient(circle at center, #fff 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 19px, transparent 20px),
    #62c879;
}

.frame-pink {
  border-color: #e56aa4;
}

.frame-pink::after {
  background:
    radial-gradient(circle at center, #fff 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 19px, transparent 20px),
    #e56aa4;
}

.frame-yellow::after {
  background:
    radial-gradient(circle at center, #fff 0 5px, transparent 6px),
    radial-gradient(circle at center, transparent 0 16px, rgba(255, 255, 255, 0.65) 17px 19px, transparent 20px),
    #f7bd3a;
}

.program-tile h3 {
  max-width: 360px;
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.program-tile p {
  max-width: 380px;
  margin: 0;
  color: #657070;
  font-size: 1.06rem;
  font-weight: 600;
}

.tilt-right {
  transform: translateY(22px);
}

.tilt-left {
  transform: translateY(-8px);
}

.about-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 216, 107, 0.28), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(246, 168, 200, 0.22), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f3fbff 48%, #fff8fc 100%);
}

.about-hero-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 86px) clamp(42px, 6vw, 80px);
}

.about-hero-page::before {
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  bottom: 7%;
  width: 160px;
  height: 160px;
  content: "";
  border: 3px dashed rgba(120, 188, 233, 0.42);
  border-radius: 50%;
}

.about-hero-page::after {
  position: absolute;
  right: 6%;
  top: 12%;
  width: 120px;
  height: 120px;
  content: "";
  background: rgba(255, 216, 107, 0.42);
  border-radius: 50%;
  filter: blur(1px);
}

.about-hero-copy,
.about-hero-photo {
  position: relative;
  z-index: 1;
}

.about-hero-copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.3rem);
  text-transform: none;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  font-weight: 650;
}

.about-hero-photo {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.about-hero-photo img {
  width: 100%;
  height: min(62vh, 620px);
  min-height: 420px;
  object-fit: cover;
  object-position: 57% center;
  border-radius: 18px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(42px, 6vw, 72px);
}

.about-values article,
.about-soft-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 237, 247, 0.9);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(84, 115, 184, 0.1);
}

.about-values article {
  display: grid;
  min-height: 150px;
  padding: 24px;
}

.about-values article:nth-child(1) {
  background: linear-gradient(135deg, #fff, #eaf8ff);
}

.about-values article:nth-child(2) {
  background: linear-gradient(135deg, #fff, #fff3c7);
}

.about-values article:nth-child(3) {
  background: linear-gradient(135deg, #fff, #ffeaf3);
}

.about-values strong {
  color: var(--red-dark);
  font-family: "Baloo 2", "Inter", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.92;
}

.about-values span {
  align-self: end;
  color: var(--ink);
  font-weight: 900;
}

.about-soft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 86px) clamp(68px, 8vw, 110px);
}

.about-soft-grid article {
  min-height: 220px;
  padding: 28px;
}

.about-soft-grid h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
}

.about-soft-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-call {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-call {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 12px;
  }

  .site-header.nav-open .header-call {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .program-layout,
  .about-band,
  .contact-band,
  .contact-map {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-self: start;
    max-width: 620px;
  }

  .banner-plane {
    right: 28px;
    bottom: 26px;
    width: 104px;
  }

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

  .program-image {
    position: static;
    max-width: 520px;
  }

  .about-image {
    max-width: 620px;
  }

  .info-row,
  .info-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .info-row.reverse .circle-photo,
  .info-row.reverse .info-copy {
    order: initial;
  }

  .circle-photo {
    margin-inline: 0;
  }

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

  .playful-program-hero {
    min-height: auto;
  }

  .program-hero-art {
    justify-self: start;
    max-width: 680px;
  }

  .program-age-badge {
    width: 230px;
  }

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

  .program-showcase::before,
  .program-showcase::after {
    display: none;
  }

  .about-hero-page,
  .about-values,
  .about-soft-grid,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .about-hero-photo {
    max-width: 620px;
  }

  .gallery-photo-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 158px;
    height: 58px;
    padding: 7px 10px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero::after,
  .banner-plane {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.42rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .feature-grid,
  .program-list,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .testimonial-grid article {
    min-height: auto;
  }

  .feature-photo {
    height: 190px;
  }

  .about-image img {
    height: 320px;
  }

  .hero-media img {
    height: 420px;
    min-height: 0;
  }

  .map-preview,
  .map-preview-large {
    align-items: flex-start;
    flex-direction: column;
    min-height: 260px;
  }

  .map-pin,
  .map-preview-large .map-pin {
    width: 52px;
    height: 52px;
    margin-right: 0;
    margin-bottom: 14px;
  }

  .map-pin::after,
  .map-preview-large .map-pin::after {
    inset: 11px;
  }

  .map-link {
    width: 100%;
  }

  .banner-note {
    width: 78px;
    height: 78px;
    border-width: 5px;
  }

  .banner-note strong {
    font-size: 1.36rem;
  }

  .banner-note span {
    font-size: 0.72rem;
  }

  .gallery-grid article {
    min-height: 280px;
  }

  .gallery-page,
  .contact-page {
    padding-inline: 20px;
  }

  .gallery-photo-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-hero img {
    justify-self: start;
    max-width: 280px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }

  .info-page {
    padding-inline: 20px;
  }

  .info-hero h1 {
    font-size: 3.25rem;
    white-space: normal;
  }

  .circle-photo {
    width: min(100%, 290px);
    border-width: 8px;
  }

  .info-copy ul {
    padding-left: 20px;
  }

  .color-card {
    padding: 34px;
  }

  .color-card span {
    width: 64px;
    height: 64px;
  }

  .program-page {
    padding-inline: 20px;
  }

  .playful-program-page {
    padding-inline: 0;
  }

  .program-hero h1 {
    font-size: 3.1rem;
  }

  .playful-program-hero {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .program-hero-art img {
    aspect-ratio: 1.42 / 1;
    object-position: center 62%;
  }

  .program-age-ribbon {
    display: grid;
    justify-items: center;
    width: fit-content;
    margin: 8px auto 0;
    text-align: center;
  }

  .program-age-badge {
    width: 190px;
    min-height: 190px;
  }

  .program-cards article {
    display: grid;
    min-height: auto;
    padding: 22px;
  }

  .program-showcase {
    grid-template-columns: 1fr;
    padding-top: 88px;
  }

  .program-showcase-heading h2 {
    white-space: normal;
  }

  .program-tile,
  .tilt-right,
  .tilt-left {
    min-height: auto;
    transform: none;
  }

  .program-photo-frame {
    width: min(100%, 236px);
  }

  .about-hero-page {
    padding-top: 42px;
  }

  .about-hero-copy h1 {
    font-size: 3.1rem;
  }

  .about-hero-photo img {
    height: 360px;
    min-height: 0;
  }

  .about-values article,
  .about-soft-grid article {
    min-height: auto;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    min-width: 62px;
    min-height: 62px;
    padding: 13px;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
