/* ============================================================
   Rabbit Kidzz — Design System
   Palette from 2026 brand refresh: dusty pink, powder blue,
   mustard, charcoal on cream. Playful, soft, hand-drawn.
   ============================================================ */
:root {
  --pink: #E8A79B;
  --pink-deep: #D98A7C;
  --pink-soft: #F6DAD3;
  --pink-pale: #FBF1ED;
  --blue: #9CCFCB;
  --blue-deep: #6FB3AE;
  --blue-soft: #D9ECEA;
  --yellow: #EFB92E;
  --yellow-soft: #F9E6B3;
  --ink: #333132;
  --ink-soft: #5C5859;
  --cream: #FFFDF9;
  --white: #FFFFFF;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 10px 30px rgba(51, 49, 50, .08);
  --shadow-lift: 0 18px 44px rgba(51, 49, 50, .13);
  --font-head: "Baloo 2", "Nunito", sans-serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-deep); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 9vw, 110px) 0; position: relative; }
.section--tint-pink { background: var(--pink-pale); }
.section--tint-blue { background: var(--blue-soft); }
.center { text-align: center; }

/* Multicolour wordmark letters */
.rk-letters span:nth-child(4n+1) { color: var(--ink); }
.rk-letters span:nth-child(4n+2) { color: var(--pink-deep); }
.rk-letters span:nth-child(4n+3) { color: var(--blue-deep); }
.rk-letters span:nth-child(4n+4) { color: var(--yellow); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .82rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--yellow);
}
.eyebrow--left::before { display: none; }

.lead { font-size: 1.13rem; color: var(--ink-soft); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 30px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); box-shadow: var(--shadow-lift); }
.btn--pink { background: var(--pink); color: #fff; }
.btn--blue { background: var(--blue-deep); color: #fff; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--ghost { background: #fff; color: var(--ink); border: 2px solid var(--pink-soft); }
.btn--lg { padding: 17px 38px; font-size: 1.1rem; }

/* ============ Header ============ */
.topbar {
  background: var(--pink-soft); color: var(--ink);
  font-size: .88rem; padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--ink); text-decoration: none; font-weight: 700; }
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 253, 249, .92); backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(51,49,50,.07);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { width: 44px; height: 44px; }
.logo-word { font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; line-height: 1; }
.logo-word small { display: block; font-size: .62rem; letter-spacing: .42em; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  color: var(--ink); text-decoration: none; padding: 8px 10px; border-radius: 999px;
  transition: background .2s; white-space: nowrap;
}
.nav a:hover { background: var(--blue-soft); }
.nav a.active { background: var(--pink-soft); }
.nav .btn { margin-left: 6px; padding: 9px 16px; box-shadow: none; font-size: .92rem; }
.lang-switch {
  display: inline-flex; border: 2px solid var(--blue-soft); border-radius: 999px; overflow: hidden; margin-left: 8px; flex: none;
}
.lang-switch a {
  padding: 5px 10px; border-radius: 0; font-size: .82rem; font-weight: 800;
  text-decoration: none; color: var(--ink);
}
.lang-switch a.on { background: var(--blue-deep); color: #fff; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; border-radius: 3px; background: var(--ink); margin: 5px 0; transition: .25s; }

@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 0; padding: 90px 24px 30px;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--cream); box-shadow: var(--shadow-lift);
    transform: translateY(-105%); transition: transform .3s ease, visibility .3s; z-index: -1;
    visibility: hidden;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a { font-size: 1.1rem; }
  .nav .btn, .lang-switch { margin: 10px 0 0; justify-content: center; }
}

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 9vw, 120px); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 .accent-pink { color: var(--pink-deep); }
.hero h1 .accent-blue { color: var(--blue-deep); }
.hero h1 .accent-yellow { color: var(--yellow); }
.hero-tag {
  display: inline-block; background: var(--pink-soft); border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; font-size: .8rem; padding: 8px 22px; margin-bottom: 18px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-art { position: relative; }
.hero-art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.hero-art .blob-frame { border-radius: 48% 52% 55% 45% / 50% 44% 56% 50%; }

/* Doodle layer */
.doodles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.doodle { position: absolute; opacity: .8; }
@media (max-width: 700px) { .fx-drift, .fx-spin, .doodle[data-blur] { display: none; } }
.hero .wrap, .section .wrap { position: relative; z-index: 1; }

/* ============ Cards & grids ============ */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card--flat:hover { transform: none; }
.icon-dot {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 16px;
}
.icon-dot--pink { background: var(--pink-soft); }
.icon-dot--blue { background: var(--blue-soft); }
.icon-dot--yellow { background: var(--yellow-soft); }

/* Value chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  background: #fff; border: 2px dashed var(--pink); color: var(--ink);
  padding: 10px 22px; border-radius: 999px;
}
.chip:nth-child(3n+2) { border-color: var(--blue-deep); }
.chip:nth-child(3n+3) { border-color: var(--yellow); }

/* Steps */
.step-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--pink); margin-bottom: 8px;
}
.step:nth-child(2) .step-num { color: var(--blue-deep); }
.step:nth-child(3) .step-num { color: var(--yellow); }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.split-img--blob img { border-radius: 47% 53% 56% 44% / 51% 45% 55% 49%; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checklist li { padding-left: 34px; position: relative; margin-bottom: 9px; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue-soft); color: var(--blue-deep);
  font-weight: 800; font-size: .85rem; display: flex; align-items: center; justify-content: center;
}

/* Stats band */
.stats {
  background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 60px); text-align: center; position: relative; overflow: hidden;
}
.stats h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 26px; }
@media (max-width: 620px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--yellow); }
.stats-grid div:nth-child(2) .stat-num { color: var(--pink); }
.stats-grid div:nth-child(3) .stat-num { color: var(--blue); }
.stat-label { font-weight: 700; opacity: .9; }

/* Gallery */
.gallery-grid { columns: 3 300px; column-gap: 18px; }
.gallery-grid a { display: block; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-grid img { transition: transform .35s ease; width: 100%; }
.gallery-grid a:hover img { transform: scale(1.05); }
.lightbox {
  position: fixed; inset: 0; background: rgba(255, 251, 246, .93); z-index: 100;
  backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lb-card {
  position: relative; margin: 0; background: #fff; border-radius: 12px;
  padding: 14px 14px 22px; box-shadow: 0 24px 60px rgba(51,49,50,.22);
  transform: rotate(-1.6deg); animation: lb-in .35s ease;
}
.lb-card .car-tape { top: -11px; }
@keyframes lb-in { from { opacity: 0; transform: rotate(-1.6deg) scale(.92) translateY(14px); } }
.lightbox img { max-height: 80vh; max-width: 86vw; width: auto; border-radius: 8px; display: block; }
.lightbox-close {
  position: absolute; top: 18px; right: 24px; background: #fff; border: none;
  color: var(--ink); font-size: 2rem; cursor: pointer; width: 52px; height: 52px;
  border-radius: 50%; box-shadow: var(--shadow-lift); line-height: 1; z-index: 2;
}
.lightbox-close:hover { background: var(--pink-soft); }

/* Team */
.team-card { text-align: center; padding: 26px 20px; }
.team-avatar {
  width: 96px; height: 96px; margin: 0 auto 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: #fff;
}
.team-card:nth-child(4n+1) .team-avatar { background: var(--pink); }
.team-card:nth-child(4n+2) .team-avatar { background: var(--blue-deep); }
.team-card:nth-child(4n+3) .team-avatar { background: var(--yellow); }
.team-card:nth-child(4n+4) .team-avatar { background: var(--pink-deep); }
.team-role { color: var(--ink-soft); font-size: .92rem; font-weight: 700; }

/* Extra murals */
.provider-card h3 { margin-bottom: 4px; }
.provider-card .provider-contact { font-size: .95rem; color: var(--ink-soft); }
.provider-card .provider-contact a { font-weight: 700; }

/* ============ Forms ============ */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 46px); box-shadow: var(--shadow-lift); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 700; font-size: .93rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 2px solid var(--pink-soft); border-radius: 14px;
  background: var(--cream); outline: none; transition: border-color .2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-deep); }
.field textarea { min-height: 120px; resize: vertical; }
.required::after { content: " *"; color: var(--pink-deep); }
.child-block {
  border: 2px dashed var(--blue); border-radius: var(--radius); padding: 22px;
  margin-bottom: 18px; position: relative; background: var(--blue-soft);
}
.child-block .form-grid { gap: 12px 16px; }
.child-block h4 { font-size: 1.1rem; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.remove-child {
  background: #fff; border: 2px solid var(--pink); color: var(--pink-deep);
  border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  padding: 5px 14px; cursor: pointer;
}
.form-note { font-size: .9rem; color: var(--ink-soft); }
.form-status { display: none; margin-top: 16px; padding: 16px 20px; border-radius: 14px; font-weight: 700; }
.form-status.ok { display: block; background: var(--blue-soft); color: var(--blue-deep); }
.form-status.err { display: block; background: var(--pink-soft); color: var(--pink-deep); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ============ Footer ============ */
.footer { background: var(--pink-pale); margin-top: 40px; position: relative; }
.footer-hills { display: block; width: 100%; margin-bottom: -6px; }
.footer-main { padding: 30px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 34px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 1.05rem; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: var(--ink); text-decoration: none; font-weight: 600; }
.footer a:hover { color: var(--pink-deep); }
.footer-tagline { font-family: var(--font-head); font-weight: 700; color: var(--ink-soft); }
.footer-bottom {
  border-top: 2px dashed var(--pink-soft); padding: 18px 0 26px;
  font-size: .88rem; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; width: 100%; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift); transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Page hero (inner pages) */
.page-hero { background: var(--blue-soft); position: relative; overflow: hidden; padding: clamp(50px, 7vw, 80px) 0; }
.page-hero--pink { background: var(--pink-pale); }
.page-hero--yellow { background: var(--yellow-soft); }
.breadcrumbs { font-size: .88rem; font-weight: 700; margin-bottom: 10px; }
.breadcrumbs a { text-decoration: none; color: var(--ink-soft); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--pink-soft), var(--blue-soft));
  border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 60px);
  text-align: center; position: relative; overflow: hidden;
}

/* School cards */
.school-card { overflow: hidden; padding: 0; }
.school-card img { height: 230px; width: 100%; object-fit: cover; }
.school-card .school-body { padding: 26px; }
.school-badge {
  display: inline-block; background: var(--blue-soft); color: var(--blue-deep);
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  border-radius: 999px; padding: 5px 14px; margin-bottom: 10px;
}
.school-card--soon { border: 3px dashed var(--pink); background: var(--pink-pale); display: flex; align-items: center; justify-content: center; min-height: 380px; }

/* Reveal animation base state (JS adds motion) */
.reveal { opacity: 0; transform: translateY(28px); }
.no-js .reveal, .reveal.shown { opacity: 1; transform: none; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 18px; border-radius: 0 0 12px 0; z-index: 200;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue-deep); outline-offset: 2px; }

/* ============ Brand icons ============ */
.ic { display: inline-flex; width: 1.25em; height: 1.25em; vertical-align: -0.25em; flex: none; }
.ic svg { width: 100%; height: 100%; display: block; }
.icon-dot .ic { width: 34px; height: 34px; }
.checklist .ic, .provider-contact .ic, .footer .ic, .topbar .ic { margin-right: 2px; }
h3 .ic, h4 .ic { width: 1.35em; height: 1.35em; vertical-align: -0.3em; }
/* playful hover wiggle on icon dots */
@keyframes ic-wiggle { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-9deg) scale(1.08); } 70% { transform: rotate(7deg) scale(1.06); } }
.card:hover .icon-dot .ic, .icon-dot:hover .ic { animation: ic-wiggle .55s ease; }

/* ============ Doodle depth & motion base ============ */
.doodle[data-blur] { filter: blur(3px); opacity: .5; }
@media (prefers-reduced-motion: reduce) { .doodle { display: none; } }

/* ============ Gallery carousels ============ */
.carousel-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.carousel-head .icon-dot { margin-bottom: 0; flex: none; }
.carousel { position: relative; }
.car-track {
  display: flex; gap: 22px; overflow-x: auto; padding: 26px 6px 34px;
  scroll-snap-type: x mandatory; scrollbar-width: none; cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.car-track::-webkit-scrollbar { display: none; }
.car-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.car-card {
  position: relative; flex: 0 0 min(66vw, 300px); scroll-snap-align: center;
  background: #fff; border-radius: 14px; padding: 10px 10px 16px;
  box-shadow: var(--shadow); display: block;
  transform: rotate(-2.2deg) scale(.96); opacity: .85;
  transition: transform .4s ease, opacity .4s ease, box-shadow .3s ease;
}
.car-card:nth-child(even) { transform: rotate(2.2deg) scale(.96); }
.car-card img { border-radius: 9px; width: 100%; height: 320px; object-fit: cover; pointer-events: none; }
.car-card.is-center { transform: rotate(0) scale(1.04); opacity: 1; box-shadow: var(--shadow-lift); z-index: 2; }
.car-card:hover { transform: rotate(0) scale(1.06); opacity: 1; box-shadow: var(--shadow-lift); z-index: 3; }
.car-tape {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 74px; height: 22px; background: var(--yellow-soft); opacity: .9; border-radius: 3px;
}
.car-card:nth-child(3n+2) .car-tape { background: var(--pink-soft); transform: translateX(-50%) rotate(2.5deg); }
.car-card:nth-child(3n) .car-tape { background: var(--blue-soft); transform: translateX(-50%) rotate(-1.5deg); }
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--ink); font-size: 1.7rem; font-family: var(--font-head);
  box-shadow: var(--shadow-lift); transition: transform .2s, background .2s;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.car-btn:hover { background: var(--pink-soft); transform: translateY(-50%) scale(1.12); }
.car-btn--prev { left: -10px; }
.car-btn--next { right: -10px; }
@media (max-width: 640px) { .car-btn { display: none; } .car-card img { height: 260px; } }

/* Plain icon info list (no check bullets) */
.info-list { list-style: none; padding: 0; margin: 0 0 1.2em; }
.info-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 11px; }
.info-list .ic { width: 1.4em; height: 1.4em; margin-top: .1em; }


/* Activity bubble artwork — shown as-is (transparent PNGs), no extra frame */
.act-media { position: relative; }
.act-media img {
  border-radius: 0; box-shadow: none; width: min(100%, 460px); margin-inline: auto;
  filter: drop-shadow(0 18px 30px rgba(51, 49, 50, .16));
  transition: transform .45s cubic-bezier(.34, 1.56, .64, 1);
}
.act-media:hover img { transform: rotate(3deg) scale(1.045); }
.act-media:nth-of-type(even):hover img { transform: rotate(-3deg) scale(1.045); }

/* Rotating hero word — per-letter brand colours */
.word-rotate { display: inline-block; white-space: nowrap; }
.word-rotate .wl { display: inline-block; transition: opacity .3s ease, transform .3s ease; }
.word-rotate .wl.out { opacity: 0; transform: translateY(.55em) rotate(10deg); }
.word-rotate .wl.pre { opacity: 0; transform: translateY(-.55em) rotate(-8deg); }
.word-rotate .wl:nth-child(4n+1) { color: var(--pink-deep); }
.word-rotate .wl:nth-child(4n+2) { color: var(--blue-deep); }
.word-rotate .wl:nth-child(4n+3) { color: var(--yellow); }
.word-rotate .wl:nth-child(4n+4) { color: var(--ink); }

/* ============ Header logo image ============ */
.logo-img { height: 52px; width: auto; }
@media (max-width: 640px) { .logo-img { height: 42px; } }

/* ============ Hero cutout (Chantelle) ============ */
.hero-art--cutout { text-align: center; }
.hero-art--cutout .cutout {
  border-radius: 0; box-shadow: none; position: relative; z-index: 1;
  width: min(100%, 420px); margin-inline: auto;
  filter: drop-shadow(0 22px 34px rgba(51, 49, 50, .18));
}
.hero-halo {
  position: absolute; inset: 8% 6% 4% 6%; z-index: 0;
  background: radial-gradient(ellipse at 50% 60%, var(--pink-soft) 0%, rgba(246,218,211,.55) 55%, transparent 75%);
  border-radius: 47% 53% 56% 44% / 51% 45% 55% 49%;
}
.hero-caption {
  position: relative; z-index: 2; display: inline-block; margin-top: -26px;
  background: #fff; font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  padding: 8px 20px; border-radius: 999px; box-shadow: var(--shadow);
}

/* ============ Play band (marquee of play equipment) ============ */
.playband { overflow: hidden; margin-top: 40px; padding: 20px 0 10px; }
.playband-track {
  display: flex; align-items: flex-end; gap: 40px; width: max-content;
  animation: playband-scroll 55s linear infinite;
}
.playband:hover .playband-track { animation-play-state: paused; }
.playband-item { height: 170px; width: auto; filter: drop-shadow(0 14px 20px rgba(51,49,50,.14)); }
.playband-item:nth-child(3n) { height: 210px; }
.playband-item:nth-child(4n+1) { height: 140px; }
@keyframes playband-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 640px) {
  .playband-item { height: 120px; }
  .playband-item:nth-child(3n) { height: 145px; }
  .playband-item:nth-child(4n+1) { height: 100px; }
  .playband-track { gap: 24px; animation-duration: 38s; }
}
@media (prefers-reduced-motion: reduce) { .playband-track { animation: none; } }

/* ============ Team photo cards ============ */
.team-card--photo { padding: 14px 14px 18px; }
.team-card--photo img { border-radius: 14px; width: 100%; }
.team-card--photo h3 { font-size: 1.05rem; }

/* ============ Provider logos ============ */
.provider-logo {
  height: 150px; display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 14px; margin-bottom: 16px;
  border: 2px solid var(--pink-pale);
}
.provider-logo img { max-height: 130px; width: auto; max-width: 90%; object-fit: contain; }
.icon-dot--mini { width: 40px; height: 40px; display: inline-flex; margin-bottom: 0; vertical-align: middle; }
.icon-dot--mini .ic { width: 22px; height: 22px; }

/* ============ Doodles only in true negative space ============ */
/* Gutter doodles: clamp to the real space between viewport edge and the
   1180px content wrap; below 1260px there is no gutter, so hide them. */
.doodle--gutter { width: min(var(--dw, 60px), calc((100vw - var(--wrap)) / 2 - 14px)); }
@media (max-width: 1260px) { .doodle--gutter { display: none; } }
/* Band doodles live inside the section's own vertical padding — safe everywhere. */
.doodle--band { opacity: .7; }
@media (max-width: 700px) { .doodle--band { opacity: .5; max-width: 32px; } }

/* ============ Poster-style enclosures ============ */
.card--enclosure {
  background: var(--cream); border: 2.5px dashed var(--pink);
  box-shadow: none; border-radius: 26px;
}
.grid .card--enclosure:nth-child(3n+2) { border-color: var(--blue-deep); }
.grid .card--enclosure:nth-child(3n) { border-color: var(--yellow); }
.card--enclosure:hover { transform: translateY(-4px) rotate(-.4deg); box-shadow: var(--shadow); }

/* Poster-style dashed separators between checklist rows */
.checklist li { padding-bottom: 9px; border-bottom: 2px dashed var(--pink-soft); }
.checklist li:last-child { border-bottom: none; padding-bottom: 0; }

/* Bigger, rounder, friendlier icon circles (like the poster) */
.icon-dot { width: 72px; height: 72px; }
.icon-dot .ic { width: 42px; height: 42px; }
.icon-dot--pink { background: #F8CFC5; }
.icon-dot--blue { background: #C3E2DF; }
.icon-dot--yellow { background: #F7E3A9; }
