:root {
  --ink: #11131a;
  --paper: #fff9ed;
  --white: #fffdf7;
  --line: #ded5c5;
  --yellow: #ffc928;
  --red: #ef4b3f;
  --blue: #1976d2;
  --green: #1e9c62;
  --muted: #5b6170;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 70px);
  background: #feec35;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 88px;
}

.brand img {
  display: block;
  width: clamp(82px, 10vw, 118px);
  height: auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.35vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  font-weight: 800;
}

nav a[aria-current="page"] {
  color: var(--red);
}

.hero,
.page-hero,
.band,
.cards,
.split-section,
.program-rows,
.contact-layout {
  padding: clamp(54px, 8vw, 106px) clamp(18px, 5vw, 70px);
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: start;
  gap: 44px;
  padding-bottom: clamp(22px, 3vw, 40px);
  background: var(--paper);
}

.page-hero,
.feature-card,
.cards article,
.program-rows article {
  position: relative;
}

.activities-hero {
  padding-top: clamp(18px, 3vw, 36px);
}

.activities-hero .eyebrow {
  line-height: 1.15;
}

.activities-hero > p:not(.eyebrow) {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.activities-hero {
  padding-bottom: clamp(18px, 3vw, 34px);
}

.activities-hero + .cards {
  padding-top: clamp(18px, 3vw, 34px);
}

.programs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-bottom: clamp(18px, 3vw, 34px);
}

.programs-hero .eyebrow {
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.programs-hero p {
  max-width: 850px;
}

.programs-hero + .program-rows {
  padding-top: clamp(18px, 3vw, 34px);
}

.program-hero-image-slot {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(17, 19, 26, 0.12);
}

.program-hero-image-slot img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.image-code {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(17, 19, 26, 0.86);
  border: 2px solid var(--yellow);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 1.56rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .eyebrow,
.band .eyebrow {
  line-height: 1.15;
  letter-spacing: 0.05em;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: 0;
}

.hero-wordmark {
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.14em;
  row-gap: 0.02em;
  font-size: clamp(3.6rem, 9.8vw, 9.4rem);
  font-weight: 1000;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-wordmark span {
  display: inline-block;
  letter-spacing: 0;
  -webkit-text-stroke: clamp(3px, 0.8vw, 10px) #143f6f;
  paint-order: stroke fill;
  filter: drop-shadow(0 7px 0 rgba(20, 63, 111, 0.32));
}

.games-word {
  color: #9fd3ec;
  background: linear-gradient(180deg, #ecf8ff 0%, #a9d8ed 45%, #6fb0d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bond-word {
  color: #ffc928;
  background: linear-gradient(180deg, #ffe866 0%, #ffc928 46%, #f4a316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 6rem);
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1;
}

p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

.hero-extra-image {
  position: relative;
  margin-top: 28px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 6px 6px 0 rgba(17, 19, 26, 0.1);
  overflow: hidden;
}

.hero-extra-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.54 / 1;
  object-fit: cover;
  object-position: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  font-weight: 900;
}

.button.primary {
  background: var(--yellow);
}

.hero-board {
  position: relative;
  min-height: 470px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(17, 19, 26, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(17, 19, 26, 0.08) 1px, transparent 1px),
    #f0e6d5;
  background-size: 34px 34px;
  overflow: hidden;
}

.hero-image-frame {
  background: var(--ink);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
}

.track {
  position: absolute;
  inset: 68px 54px 96px;
  border: 30px solid var(--ink);
  border-radius: 48%;
  transform: rotate(-13deg);
}

.car,
.vr {
  position: absolute;
  border: 3px solid var(--ink);
}

.car {
  width: 94px;
  height: 48px;
  border-radius: 8px;
}

.car.red {
  top: 32%;
  left: 20%;
  background: var(--red);
  transform: rotate(-12deg);
}

.car.blue {
  right: 18%;
  bottom: 28%;
  background: var(--blue);
  transform: rotate(18deg);
}

.vr {
  right: 34px;
  bottom: 34px;
  width: 118px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(90deg, #fff 0 35%, var(--blue) 35% 65%, #fff 65%);
}

.band {
  background: #f6f2e9;
}

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

.feature-card,
.cards article,
.program-rows article,
form,
.mini-grid span {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 19, 26, 0.1);
}

.feature-card,
.cards article {
  padding: 24px;
}

.activity-photo-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.activity-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.activity-card-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

.img-a01-card .activity-card-photo {
  object-position: 50% 42%;
}

.activity-photo-card::after {
  z-index: 1;
  background: linear-gradient(0deg, rgba(17, 19, 26, 0.86), rgba(17, 19, 26, 0.24) 62%, rgba(17, 19, 26, 0.06));
}

.activity-photo-card small,
.activity-photo-card h2,
.activity-photo-card p {
  position: relative;
  z-index: 2;
}

.activity-photo-card small,
.activity-photo-card p {
  color: rgba(255, 253, 247, 0.9);
}

.activity-photo-card h2 {
  color: var(--white);
}

.img-a02-card {
  background: var(--ink);
}

.img-a01-card {
  background: var(--ink);
}

.img-a03-card {
  background: var(--ink);
}

.img-a03-card .activity-card-photo {
  object-position: 58% 54%;
}

.img-a04-card {
  background: var(--ink);
}

.img-a04-card .activity-card-photo {
  object-position: 50% 42%;
}

.img-a05-card {
  background: var(--ink);
}

.img-a05-card .activity-card-photo {
  object-position: 50% 50%;
}

.img-a06-card {
  background: var(--ink);
}

.img-a06-card .activity-card-photo {
  object-position: 50% 50%;
}

.diagonal-card {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--white);
}

.diagonal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(255, 253, 247, 0.92), rgba(255, 253, 247, 0.5) 48%, rgba(255, 253, 247, 0.18));
  pointer-events: none;
}

.diagonal-image,
.diagonal-color {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.diagonal-image {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.62;
  background-size: cover;
  background-position: center;
}

.diagonal-color {
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background: #ffe8a3;
}

.diagonal-card:has(.rc-preview) .diagonal-color {
  background:
    linear-gradient(135deg, rgba(17, 19, 26, 0.16) 0 10%, transparent 10% 20%, rgba(17, 19, 26, 0.12) 20% 30%, transparent 30%),
    linear-gradient(135deg, #f4e3c4 0%, #c99b63 50%, #8f6948 100%);
}

.rc-preview {
  opacity: 1;
  background-image: url("assets/img-h02-rc-track.jpg");
  background-size: 126%;
  background-position: 42% 38%;
  filter: none;
}

.diagonal-card:has(.rc-preview)::after {
  background: linear-gradient(0deg, rgba(255, 253, 247, 0.9), rgba(255, 253, 247, 0.28) 48%, rgba(255, 253, 247, 0.04));
}

.kids-preview {
  opacity: 1;
  background-image: url("assets/img-h03-kids-playzone.jpeg");
  background-size: 138%;
  background-position: 50% 58%;
}

.diagonal-card:has(.kids-preview) .diagonal-color {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.18) 24% 36%, transparent 36%),
    linear-gradient(135deg, #eaffc8 0%, #9fe77a 48%, #36aa79 100%);
}

.diagonal-card:has(.kids-preview)::after {
  background: linear-gradient(0deg, rgba(255, 253, 247, 0.9), rgba(255, 253, 247, 0.25) 48%, rgba(255, 253, 247, 0.05));
}

.programs-preview {
  opacity: 1;
  background-image: url("assets/img-h04-enrichment-project.jpeg");
  background-size: 126%;
  background-position: 70% 52%;
}

.diagonal-card:has(.programs-preview) .diagonal-color {
  background:
    linear-gradient(135deg, rgba(1, 42, 127, 0.12) 0 12%, transparent 12% 24%, rgba(1, 42, 127, 0.1) 24% 36%, transparent 36%),
    linear-gradient(135deg, #e9f3ff 0%, #9ec7f4 48%, #4b7fc8 100%);
}

.diagonal-card:has(.programs-preview)::after {
  background: linear-gradient(0deg, rgba(255, 253, 247, 0.9), rgba(255, 253, 247, 0.24) 48%, rgba(255, 253, 247, 0.05));
}

.feature-card strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card > span:not(.image-code):not(.diagonal-image):not(.diagonal-color),
small {
  position: relative;
  z-index: 2;
  color: var(--muted);
}

.cards {
  background: #f6f2e9;
}

.cards small {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  margin-bottom: 30px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-photo-card small {
  position: absolute;
  top: 12px;
  left: 12px;
  margin: 0;
  color: var(--ink);
}

.kids-hero {
  background: #e9f8ff;
}

.kids-parent-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(254, 236, 53, 0.22), transparent 42%),
    #e9f8ff;
}

.kids-parent-hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  line-height: 0.9;
}

.kids-parent-hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.kids-image-slot {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border: 3px dashed rgba(17, 19, 26, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(254, 236, 53, 0.42), rgba(1, 42, 127, 0.15)),
    #fffdf7;
  box-shadow: 6px 6px 0 rgba(17, 19, 26, 0.1);
}

.kids-image-slot.large {
  grid-row: span 2;
  min-height: 438px;
}

.kids-image-slot.has-photo {
  isolation: isolate;
  overflow: hidden;
  border-style: solid;
  border-color: var(--ink);
}

.kids-image-slot.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(17, 19, 26, 0.76), transparent 48%);
  pointer-events: none;
}

.kids-image-slot.has-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 42%;
}

.kids-image-slot.img-k02-slot img {
  object-position: 50% 55%;
}

.kids-image-slot.img-k03-slot img {
  object-position: 50% 48%;
}

.kids-image-slot.has-photo strong {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(17, 19, 26, 0.5);
}

.kids-image-slot.wide {
  min-height: 260px;
}

.kids-image-slot strong {
  max-width: 12ch;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 0.95;
}

.parent-trust-section,
.kids-benefits-section,
.kids-gallery-section,
.kids-cta-section {
  padding: clamp(54px, 8vw, 106px) clamp(18px, 5vw, 70px);
}

.parent-trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: #f6f2e9;
}

.parent-trust-section article,
.benefit-grid article {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 19, 26, 0.1);
}

.parent-trust-section article {
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.parent-trust-section span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: auto;
  color: var(--white);
  background: #012a7f;
  border-radius: 6px;
  font-weight: 1000;
}

.parent-trust-section p,
.benefit-grid p,
.kids-cta-section p {
  color: var(--muted);
}

.kids-benefits-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.kids-gallery-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #f6f2e9;
}

.kids-benefits-section h2,
.kids-cta-section h2 {
  max-width: 760px;
}

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

.benefit-grid article {
  min-height: 150px;
  padding: 24px;
}

.benefit-grid h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.kids-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--yellow);
  border-top: 3px solid var(--ink);
}

.kids-cta-section p {
  max-width: 520px;
}

.visit-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(28px, 5vw, 64px);
  background: #eef6f3;
}

.visit-hero-copy {
  min-width: 0;
}

.visit-hero .visit-kicker {
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.visit-hero-image {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1087 / 1450;
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: #111;
  box-shadow: 8px 8px 0 rgba(1, 42, 127, 0.18);
}

.visit-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.27);
  transform-origin: center 38%;
}

.visit-hero-image .image-code {
  top: 14px;
  right: 14px;
}

.visit-hero + .contact-layout {
  padding-top: clamp(18px, 3vw, 34px);
}

.visit-hero + .contact-layout .mini-grid {
  margin-top: 28px;
}

.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 38px;
  align-items: start;
}

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

.plain-list li,
.mini-grid span {
  padding: 16px;
  font-weight: 900;
}

.program-rows {
  display: grid;
  gap: 18px;
  background: #f6f2e9;
}

.program-rows article {
  display: grid;
  grid-template-columns: minmax(210px, 0.42fr) 72px 1fr;
  gap: 20px;
  padding: 24px;
  align-items: center;
}

.program-rows article > span:not(.image-code) {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
}

.program-row-image {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 6px 6px 0 rgba(17, 19, 26, 0.12);
}

.program-row-image img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  display: block;
  object-fit: cover;
  object-position: center;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 6px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: #012a7f;
}

.footer-info {
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.footer-nav {
  flex: 0 0 auto;
  display: grid;
  gap: 12px;
  justify-items: end;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.footer-nav a {
  color: var(--white);
}

.footer-info strong {
  font-size: 1.1rem;
}

.footer-info address {
  display: grid;
  gap: 10px;
  color: rgba(255, 253, 247, 0.82);
  font-style: normal;
  line-height: 1.5;
}

.footer-info a {
  color: var(--white);
  font-weight: 800;
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.contact-icon,
.social-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  color: transparent;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  font-size: 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.phone-icon {
  background-color: #25d366;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.gmail-icon {
  background-size: 21px 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 193' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ea4335' d='M58 193H13c-7 0-13-6-13-13V51l58 43v99Z'/%3E%3Cpath fill='%2334a853' d='M198 193h45c7 0 13-6 13-13V51l-58 43v99Z'/%3E%3Cpath fill='%23fbbc04' d='M198 24v70l58-43V31c0-16-18-25-31-15l-27 8Z'/%3E%3Cpath fill='%234285f4' d='M58 94V24l70 52 70-52v70l-70 52-70-52Z'/%3E%3Cpath fill='%23c5221f' d='M0 31v20l58 43V24l-27-8C18 6 0 15 0 31Z'/%3E%3C/svg%3E");
}

.social-icon {
  width: 32px;
  height: 32px;
  text-decoration: none;
}

.instagram {
  background-size: 32px 32px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CradialGradient id='g' cx='30%25' cy='107%25' r='120%25'%3E%3Cstop offset='0' stop-color='%23fdf497'/%3E%3Cstop offset='.25' stop-color='%23fdf497'/%3E%3Cstop offset='.45' stop-color='%23fd5949'/%3E%3Cstop offset='.6' stop-color='%23d6249f'/%3E%3Cstop offset='.9' stop-color='%232854eb'/%3E%3C/radialGradient%3E%3C/defs%3E%3Crect width='64' height='64' rx='16' fill='url(%23g)'/%3E%3Crect x='17' y='17' width='30' height='30' rx='9' fill='none' stroke='white' stroke-width='4'/%3E%3Ccircle cx='32' cy='32' r='8' fill='none' stroke='white' stroke-width='4'/%3E%3Ccircle cx='42.5' cy='21.5' r='3' fill='white'/%3E%3C/svg%3E");
}

.facebook {
  background-color: #1877f2;
  background-size: 16px 26px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M15.12 8.03h2.7V4.14A35.1 35.1 0 0 0 14.14 4c-3.64 0-6.13 2.22-6.13 6.28v3.5H4v4.35h4.01V24h4.82v-5.87h4l.64-4.35h-4.64v-3.07c0-1.25.34-2.68 2.29-2.68Z'/%3E%3C/svg%3E");
}

.youtube {
  background-color: #ff0000;
  background-size: 22px 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 28 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='white' d='M11.2 14.3V5.7L18.6 10l-7.4 4.3Z'/%3E%3C/svg%3E");
}

@media (max-width: 850px) {
  .site-header,
  .site-footer {
    display: grid;
  }

  .footer-nav {
    justify-items: start;
  }

  .hero,
  .kids-parent-hero,
  .kids-benefits-section,
  .programs-hero,
  .visit-hero,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .visit-hero-image {
    width: min(100%, 470px);
  }

  .feature-grid,
  .cards,
  .parent-trust-section,
  .benefit-grid,
  .kids-photo-grid,
  .kids-gallery-section,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

  .program-rows article > span:not(.image-code) {
    width: 48px;
    height: 48px;
  }

  .kids-image-slot.large {
    min-height: 280px;
  }

  .kids-cta-section {
    display: grid;
  }

  .hero-board {
    min-height: 340px;
  }
}

@media (max-width: 460px) {
  .site-header nav {
    gap: 15px;
    font-size: 1.08rem;
  }

  .brand img {
    width: 76px;
  }

  .brand strong {
    font-size: 1.55rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  .button {
    width: 100%;
  }
}
