/* Tiny Tots · Fun playground edition
   Logo palette + motion + sticker UI */

:root {
  --ink: #1a2550;
  --ink-soft: #3a4670;
  --muted: #5a668c;
  --cream: #fff8ee;
  --cream-deep: #ffe8c8;
  --white: #ffffff;
  --sky: #dff4ff;
  --sky-deep: #b8e6ff;
  --pink: #ff5eb5;
  --pink-soft: #ffd0ea;
  --pink-hot: #ff2d9b;
  --blue: #3eb5ff;
  --blue-deep: #1f8de0;
  --yellow: #ffd23f;
  --yellow-hot: #ffc400;
  --green: #5fd38d;
  --green-deep: #2fba6a;
  --orange: #ff9f43;
  --purple: #a78bfa;
  --navy: #2c3e8c;
  --navy-deep: #1a2a6c;
  --edge: rgba(26, 37, 80, 0.1);
  --shadow: 0 16px 48px rgba(44, 62, 140, 0.14);
  --shadow-pop: 0 10px 0 rgba(26, 37, 80, 0.12);
  --radius: 1.5rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --font: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fredoka", "Nunito", system-ui, sans-serif;
  --max: 70rem;
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .float-layer,
  .sparkle,
  .logo-bounce,
  .blob,
  .cloud,
  .star-twinkle {
    animation: none !important;
  }
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Playful dotted wallpaper */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(62, 181, 255, 0.22), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 94, 181, 0.18), transparent 26%),
    radial-gradient(circle at 70% 78%, rgba(95, 211, 141, 0.16), transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(255, 210, 63, 0.2), transparent 24%),
    repeating-radial-gradient(circle at 0 0, transparent 0, transparent 18px, rgba(255, 159, 67, 0.04) 18px, rgba(255, 159, 67, 0.04) 19px),
    linear-gradient(180deg, #fff9f2 0%, #eef8ff 45%, #fff5e8 100%);
}

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

a {
  color: var(--blue-deep);
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 300;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.skip:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

/* ========== Floating sky decorations ========== */
.float-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  filter: drop-shadow(0 8px 16px rgba(44, 62, 140, 0.08));
  animation: drift linear infinite;
}
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
.cloud-a {
  width: 90px;
  height: 34px;
  top: 12%;
  left: -10%;
  animation-duration: 48s;
}
.cloud-a::before {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 14px;
}
.cloud-a::after {
  width: 52px;
  height: 52px;
  top: -26px;
  left: 36px;
}
.cloud-b {
  width: 120px;
  height: 40px;
  top: 28%;
  left: -15%;
  animation-duration: 62s;
  animation-delay: -12s;
  opacity: 0.7;
}
.cloud-b::before {
  width: 48px;
  height: 48px;
  top: -22px;
  left: 18px;
}
.cloud-b::after {
  width: 64px;
  height: 64px;
  top: -30px;
  left: 48px;
}
.cloud-c {
  width: 70px;
  height: 28px;
  top: 55%;
  left: -12%;
  animation-duration: 55s;
  animation-delay: -25s;
  opacity: 0.55;
}
.cloud-c::before {
  width: 34px;
  height: 34px;
  top: -16px;
  left: 10px;
}
.cloud-c::after {
  width: 42px;
  height: 42px;
  top: -20px;
  left: 28px;
}

@keyframes drift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(120vw);
  }
}

.blob {
  position: absolute;
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
  opacity: 0.45;
  animation: blob-float 9s ease-in-out infinite;
  filter: blur(0.5px);
}
.blob-1 {
  width: 7rem;
  height: 7rem;
  background: var(--pink-soft);
  top: 18%;
  right: 4%;
  animation-delay: 0s;
}
.blob-2 {
  width: 5rem;
  height: 5rem;
  background: #c8f0ff;
  top: 62%;
  left: 3%;
  animation-delay: -3s;
}
.blob-3 {
  width: 6rem;
  height: 6rem;
  background: #fff0b8;
  bottom: 12%;
  right: 10%;
  animation-delay: -5s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(12px, -18px) rotate(8deg);
  }
  66% {
    transform: translate(-10px, 10px) rotate(-6deg);
  }
}

.star-twinkle {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: twinkle 2.4s ease-in-out infinite;
}
.star-1 {
  top: 22%;
  left: 8%;
  animation-delay: 0s;
}
.star-2 {
  top: 40%;
  right: 12%;
  animation-delay: 0.7s;
  background: var(--pink);
}
.star-3 {
  top: 70%;
  left: 15%;
  animation-delay: 1.2s;
  background: var(--blue);
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.7) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15) rotate(20deg);
    opacity: 1;
  }
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 238, 0.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue), var(--purple)) 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding-block: 0.45rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  animation: logo-bounce 3s var(--bounce) infinite;
  filter: drop-shadow(0 4px 0 rgba(44, 62, 140, 0.15));
}

@keyframes logo-bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-5px) rotate(2deg);
  }
}

.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-text span {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 480px) {
  .brand-text {
    display: flex;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
}
.nav-desktop a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--bounce);
}
.nav-desktop a:hover {
  background: var(--pink-soft);
  color: var(--pink-hot);
  transform: translateY(-2px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 3px solid var(--navy);
  border-radius: 1rem;
  background: var(--yellow);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--navy);
  transition: transform 0.15s var(--bounce);
}
.menu-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 var(--navy);
}

@media (min-width: 800px) {
  .nav-desktop {
    display: flex;
  }
  .menu-btn {
    display: none;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem 1rem 1rem;
  border-top: 2px dashed var(--edge);
  background: rgba(255, 255, 255, 0.7);
}
.nav-mobile.is-open {
  display: flex;
  animation: pop-in 0.35s var(--bounce);
}
.nav-mobile a {
  padding: 0.85rem 0.75rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  border-radius: 1rem;
}
.nav-mobile a:hover {
  background: var(--pink-soft);
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.15rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 3px solid var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 5px 0 var(--navy);
  transition: transform 0.15s var(--bounce), box-shadow 0.15s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--navy);
}
.btn:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--navy);
}
.btn-primary {
  color: var(--navy);
  background: linear-gradient(180deg, #ffe566 0%, var(--yellow) 45%, var(--orange) 100%);
}
.btn-secondary {
  color: white;
  background: linear-gradient(180deg, #4a63c7 0%, var(--navy) 100%);
  border-color: var(--navy-deep);
  box-shadow: 0 5px 0 var(--navy-deep);
}
.btn-secondary:hover {
  box-shadow: 0 7px 0 var(--navy-deep);
}
.btn-ghost {
  color: var(--navy);
  background: var(--white);
}
.btn-pink {
  color: white;
  background: linear-gradient(180deg, #ff8dcb 0%, var(--pink) 100%);
  border-color: #c41d75;
  box-shadow: 0 5px 0 #c41d75;
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 1.75rem 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    padding-bottom: 1rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 3px solid var(--navy);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  box-shadow: 0 4px 0 rgba(44, 62, 140, 0.15);
  animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }
  92% {
    transform: rotate(-2deg);
  }
  94% {
    transform: rotate(2deg);
  }
  96% {
    transform: rotate(-1deg);
  }
}

.eyebrow .dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-soft);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.hero h1 .rainbow {
  background: linear-gradient(
    100deg,
    var(--pink) 0%,
    var(--orange) 22%,
    var(--yellow-hot) 42%,
    var(--green) 62%,
    var(--blue) 82%,
    var(--purple) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero-lead {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.hero-meta {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
  font-weight: 700;
}

/* Hero visual stack */
.hero-visual {
  position: relative;
  padding: 0.5rem;
}

.hero-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) + 0.25rem);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow:
    0 12px 0 rgba(44, 62, 140, 0.12),
    0 24px 50px rgba(44, 62, 140, 0.18);
  background: var(--white);
  transform: none;
  transition: none;
}
.hero-frame:hover {
  transform: none;
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-logo-badge {
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  transform: translateX(-50%);
  width: min(42%, 9.5rem);
  padding: 0.55rem;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: 0 8px 0 rgba(44, 62, 140, 0.12);
  z-index: 2;
  animation: logo-bounce 2.8s var(--bounce) infinite;
}
.hero-logo-badge img {
  width: 100%;
  border-radius: 50%;
}

.sticker {
  position: absolute;
  z-index: 3;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 3px solid var(--navy);
  box-shadow: 0 4px 0 rgba(26, 37, 80, 0.15);
  white-space: nowrap;
  animation: sticker-pop 3.5s var(--bounce) infinite;
}
.sticker-yellow {
  background: var(--yellow);
  color: var(--navy);
  top: -0.5rem;
  right: 0.5rem;
  transform: rotate(8deg);
}
.sticker-pink {
  background: var(--pink);
  color: white;
  bottom: 2.5rem;
  left: -0.35rem;
  transform: rotate(-8deg);
  animation-delay: -1.2s;
}
.sticker-blue {
  background: var(--blue);
  color: white;
  top: 40%;
  right: -0.75rem;
  transform: rotate(12deg);
  animation-delay: -2s;
}

@keyframes sticker-pop {
  0%,
  100% {
    transform: scale(1) rotate(var(--rot, 8deg));
  }
  50% {
    transform: scale(1.06) rotate(calc(var(--rot, 8deg) * -1));
  }
}
.sticker-yellow {
  --rot: 8deg;
}
.sticker-pink {
  --rot: -8deg;
}
.sticker-blue {
  --rot: 12deg;
}

/* ========== Wave dividers ========== */
.wave {
  display: block;
  width: 100%;
  height: clamp(48px, 8vw, 90px);
  margin: 0;
  line-height: 0;
}
.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ========== Trust marquee / pills ========== */
.trust {
  padding: 2.5rem 0 1.5rem;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-item {
  position: relative;
  padding: 1.15rem 1rem;
  border-radius: 1.35rem;
  background: var(--white);
  border: 3px solid var(--navy);
  text-align: center;
  box-shadow: 0 6px 0 rgba(44, 62, 140, 0.1);
  transition: transform 0.25s var(--bounce);
  overflow: hidden;
}
.trust-item:nth-child(1) {
  background: linear-gradient(160deg, #fff 50%, #ffe8f5);
}
.trust-item:nth-child(2) {
  background: linear-gradient(160deg, #fff 50%, #e5f6ff);
}
.trust-item:nth-child(3) {
  background: linear-gradient(160deg, #fff 50%, #e9fbeb);
}
.trust-item:nth-child(4) {
  background: linear-gradient(160deg, #fff 50%, #fff6d6);
}
.trust-item:hover {
  transform: translateY(-6px) rotate(-1deg);
}
.trust-item .emoji {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
  animation: hop 2.2s var(--bounce) infinite;
}
.trust-item:nth-child(2) .emoji {
  animation-delay: 0.3s;
}
.trust-item:nth-child(3) .emoji {
  animation-delay: 0.6s;
}
.trust-item:nth-child(4) .emoji {
  animation-delay: 0.9s;
}

@keyframes hop {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-6px);
  }
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.trust-item span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 700;
}

/* ========== Sections ========== */
.section {
  padding: 2.75rem 0;
  position: relative;
}
.section-fun {
  background: linear-gradient(180deg, transparent, rgba(223, 244, 255, 0.65) 12%, rgba(223, 244, 255, 0.85) 88%, transparent);
}
.section-candy {
  background: linear-gradient(180deg, transparent, rgba(255, 208, 234, 0.35) 15%, rgba(255, 240, 200, 0.4) 85%, transparent);
}
.section-green {
  background: linear-gradient(180deg, transparent, rgba(216, 248, 230, 0.5) 20%, rgba(216, 248, 230, 0.55) 80%, transparent);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--pink-soft);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-hot);
  border: 2px solid rgba(255, 45, 155, 0.2);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.12;
}

.lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 600;
}

/* ========== Photo / illustration gallery ========== */
.gallery {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .gallery {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .gallery .gallery-main {
    grid-row: 1 / span 2;
  }
}
.gallery figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 8px 0 rgba(44, 62, 140, 0.1);
  background: var(--white);
  transition: transform 0.3s var(--bounce);
}
.gallery figure:hover {
  transform: scale(1.02) rotate(-0.5deg);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
}
.gallery-main img {
  min-height: 16rem;
  aspect-ratio: 4 / 3;
}
.gallery figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--navy);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ========== Cards ========== */
.cards {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .cards-2 {
    grid-template-columns: 1fr 1fr;
  }
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  padding: 1.5rem 1.45rem 1.45rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 8px 0 rgba(44, 62, 140, 0.1);
  transition: transform 0.25s var(--bounce);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -15%;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  opacity: 0.35;
  background: var(--pink-soft);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px) rotate(1deg);
}
.card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 600;
}
.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 0.85rem;
  border-radius: 1.1rem;
  font-size: 1.6rem;
  border: 3px solid var(--navy);
  background: var(--pink-soft);
  box-shadow: 0 4px 0 rgba(44, 62, 140, 0.12);
  animation: hop 2.6s var(--bounce) infinite;
}
.card.accent-blue .icon {
  background: #c8edff;
  animation-delay: 0.2s;
}
.card.accent-green .icon {
  background: #c8f5dc;
  animation-delay: 0.4s;
}
.card.accent-yellow .icon {
  background: #fff0a8;
}
.card.accent-orange .icon {
  background: #ffe0c0;
}
.card.accent-blue::after {
  background: #c8edff;
}
.card.accent-green::after {
  background: #c8f5dc;
}

/* ========== Session highlight ========== */
.session-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem;
  border-radius: calc(var(--radius-lg) + 0.35rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 210, 63, 0.35), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(255, 94, 181, 0.25), transparent 40%),
    linear-gradient(145deg, #243a9a 0%, #3d5ad0 50%, #5b7cff 100%);
  color: white;
  border: 4px solid var(--navy-deep);
  box-shadow: 0 12px 0 rgba(26, 42, 108, 0.25), var(--shadow);
  position: relative;
  overflow: hidden;
}
.session-panel::before {
  content: "✦ ✦ ✦";
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  letter-spacing: 0.35rem;
  opacity: 0.45;
  font-size: 0.85rem;
  animation: twinkle 2s ease-in-out infinite;
}
@media (min-width: 700px) {
  .session-panel {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: center;
    padding: 2.25rem 2.5rem;
  }
}
.session-panel h2 {
  color: white;
  margin-bottom: 0.5rem;
}
.session-panel .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
}
.session-panel .tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--yellow);
  border-color: rgba(255, 255, 255, 0.2);
}
.session-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
}
.session-facts li {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.22);
  font-size: 0.92rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}
.session-side {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 3px dashed rgba(255, 255, 255, 0.35);
  text-align: center;
  position: relative;
}
.session-side .big-day {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 5rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 0.35rem;
  color: var(--yellow);
  text-shadow: 0 4px 0 rgba(26, 42, 108, 0.35);
  animation: hop 2s var(--bounce) infinite;
}
.session-side span {
  font-weight: 700;
  opacity: 0.95;
  font-size: 1.05rem;
}
.session-side .mini-logo {
  width: 4.5rem;
  margin: 0.85rem auto 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: logo-bounce 2.5s var(--bounce) infinite;
}

/* ========== About ========== */
.about-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.person {
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 8px 0 rgba(44, 62, 140, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--bounce);
}
.person:hover {
  transform: translateY(-6px);
}
.person:first-child {
  background: linear-gradient(165deg, #fff 60%, #ffe8f5);
}
.person:last-child {
  background: linear-gradient(165deg, #fff 60%, #e5f6ff);
}
.person .avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  border: 3px solid var(--navy);
  margin-bottom: 0.85rem;
  background: var(--yellow);
  box-shadow: 0 4px 0 rgba(44, 62, 140, 0.12);
}
.person:last-child .avatar {
  background: var(--blue);
}
.person h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
}
.person .role {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
}
.person p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ========== Location ========== */
.map-card {
  display: grid;
  gap: 1.25rem;
  padding: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 4px solid var(--navy);
  box-shadow: 0 10px 0 rgba(44, 62, 140, 0.1);
  overflow: hidden;
}
@media (min-width: 720px) {
  .map-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.map-card .map-art {
  min-height: 14rem;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.map-card .map-body {
  padding: 1.5rem 1.5rem 1.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.map-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
}
.map-card p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.map-card .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* ========== Fun strip ========== */
.fun-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  padding: 0.5rem 0 0;
}
.fun-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 3px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 0 rgba(44, 62, 140, 0.1);
  animation: hop 2.8s var(--bounce) infinite;
}
.fun-chip:nth-child(1) {
  background: #ffe8f5;
  animation-delay: 0s;
}
.fun-chip:nth-child(2) {
  background: #e5f6ff;
  animation-delay: 0.2s;
}
.fun-chip:nth-child(3) {
  background: #e9fbeb;
  animation-delay: 0.4s;
}
.fun-chip:nth-child(4) {
  background: #fff6d6;
  animation-delay: 0.6s;
}
.fun-chip:nth-child(5) {
  background: #f0e8ff;
  animation-delay: 0.8s;
}

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 42rem;
}
.faq-list details {
  border-radius: 1.25rem;
  background: var(--white);
  border: 3px solid var(--navy);
  padding: 0.15rem 1.1rem;
  box-shadow: 0 5px 0 rgba(44, 62, 140, 0.08);
  transition: transform 0.2s var(--bounce);
}
.faq-list details[open] {
  background: linear-gradient(180deg, #fff, #fff5fb);
  transform: scale(1.01);
}
.faq-list summary {
  cursor: pointer;
  padding: 0.95rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  float: right;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1;
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--pink);
  color: white;
}
.faq-list details p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 600;
}

/* ========== Contact ========== */
.contact-panel {
  padding: 2rem 1.75rem;
  border-radius: calc(var(--radius-lg) + 0.25rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 63, 0.4), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255, 94, 181, 0.2), transparent 40%),
    var(--white);
  border: 4px solid var(--navy);
  box-shadow: 0 12px 0 rgba(44, 62, 140, 0.1), var(--shadow);
  max-width: 38rem;
  position: relative;
}
.contact-panel .sparkle-row {
  font-size: 1.25rem;
  letter-spacing: 0.35rem;
  margin-bottom: 0.75rem;
  animation: twinkle 2.2s ease-in-out infinite;
}
.contact-panel p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.contact-panel .note {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ========== Footer ========== */
.site-footer {
  margin-top: 1rem;
  padding: 3rem 0 7.5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 94, 181, 0.25), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(62, 181, 255, 0.2), transparent 35%),
    linear-gradient(160deg, #1a2a6c 0%, #2c3e8c 50%, #3d5ad0 100%);
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    var(--pink) 0 24px,
    var(--yellow) 24px 48px,
    var(--green) 48px 72px,
    var(--blue) 72px 96px,
    var(--orange) 96px 120px,
    var(--purple) 120px 144px
  );
}
@media (min-width: 800px) {
  .site-footer {
    padding-bottom: 3rem;
  }
}
.site-footer a {
  color: var(--yellow);
  font-weight: 700;
}
.site-footer .wrap {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 700px) {
  .site-footer .wrap {
    grid-template-columns: 1.4fr 1fr;
  }
}
.site-footer strong {
  font-family: var(--font-display);
  color: white;
  font-size: 1.25rem;
}
.site-footer p {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  font-weight: 600;
}
.site-footer .credit {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 2px dashed rgba(255, 255, 255, 0.2);
  font-size: 0.88rem;
  opacity: 0.95;
}
.footer-logo {
  width: 4rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: logo-bounce 3s var(--bounce) infinite;
}

/* ========== Sticky mobile bar ========== */
.sticky-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
  background: rgba(255, 248, 238, 0.96);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--navy);
  box-shadow: 0 -8px 30px rgba(44, 62, 140, 0.12);
}
.sticky-bar .btn {
  flex: 1;
  min-height: 2.95rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 0 var(--navy);
}
@media (min-width: 800px) {
  .sticky-bar {
    display: none;
  }
}

/* ========== Reveal on scroll (JS enhanced) ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s var(--bounce);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Confetti burst near hero CTAs */
.confetti {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  pointer-events: none;
  animation: confetti-fall 4s linear infinite;
  opacity: 0.85;
}
@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(80px) rotate(280deg);
    opacity: 0;
  }
}

/* ========== Streamlined page: extra kid motion ========== */
.floaty {
  position: absolute;
  font-size: 1.6rem;
  animation: floaty-up 12s ease-in-out infinite;
  opacity: 0.7;
  filter: drop-shadow(0 4px 6px rgba(44, 62, 140, 0.15));
}
.floaty-1 { left: 6%; top: 75%; animation-duration: 11s; }
.floaty-2 { left: 18%; top: 35%; animation-duration: 14s; animation-delay: -2s; font-size: 1.2rem; }
.floaty-3 { right: 8%; top: 55%; animation-duration: 13s; animation-delay: -4s; }
.floaty-4 { right: 20%; top: 18%; animation-duration: 15s; animation-delay: -1s; font-size: 1.4rem; }
.floaty-5 { left: 45%; top: 80%; animation-duration: 12s; animation-delay: -6s; }
.floaty-6 { right: 40%; top: 42%; animation-duration: 10s; animation-delay: -3s; font-size: 1.1rem; }

@keyframes floaty-up {
  0%, 100% { transform: translateY(0) rotate(-8deg) scale(1); }
  50% { transform: translateY(-28px) rotate(10deg) scale(1.12); }
}

/* Scrolling emoji marquee */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, #ffe8f5, #e5f6ff, #fff6d6, #e9fbeb, #ffe8f5);
  border-block: 3px solid var(--navy);
  padding: 0.65rem 0;
  margin-top: 2rem;
}
.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.marquee-track span {
  white-space: nowrap;
  padding: 0.15rem 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Rainbow text shared */
.rainbow {
  background: linear-gradient(
    100deg,
    var(--pink) 0%,
    var(--orange) 18%,
    var(--yellow-hot) 36%,
    var(--green) 54%,
    var(--blue) 72%,
    var(--purple) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow-shift 4s linear infinite;
}
@keyframes rainbow-shift {
  to { background-position: 200% center; }
}

/* Continuous soft float */
.float-soft {
  animation: float-soft 4.5s ease-in-out infinite;
}
@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.hero-frame.float-soft:hover {
  animation: none !important;
  transform: none !important;
}

/* Button wobble */
.wobble {
  animation: wobble 2.8s var(--bounce) infinite;
}
.wobble.delay-1 { animation-delay: 0.4s; }
@keyframes wobble {
  0%, 88%, 100% { transform: rotate(0deg) scale(1); }
  90% { transform: rotate(-3deg) scale(1.03); }
  93% { transform: rotate(3deg) scale(1.03); }
  96% { transform: rotate(-2deg) scale(1.02); }
}

/* Sticker spin-ish */
.spin-slow {
  animation: sticker-pop 3.5s var(--bounce) infinite, gentle-tilt 5s ease-in-out infinite;
}
.spin-slow.delay-2 { animation-delay: -1s, -1.5s; }
.spin-slow.delay-3 { animation-delay: -2s, -2.5s; }
@keyframes gentle-tilt {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -4px; }
}

/* Gallery tilts always animated */
.tilt-a { animation: tilt-a 5s ease-in-out infinite; }
.tilt-b { animation: tilt-b 5.5s ease-in-out infinite; }
.tilt-c { animation: tilt-c 4.8s ease-in-out infinite; }
@keyframes tilt-a {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-8px); }
}
@keyframes tilt-b {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-6px); }
}
@keyframes tilt-c {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(1.5deg) translateY(-10px); }
}
.gallery figure:hover {
  animation-play-state: paused;
  transform: scale(1.04) rotate(0deg);
  z-index: 2;
}
.pop-cap {
  animation: hop 2s var(--bounce) infinite;
}

/* Bubble facts */
.bubble-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
}
.bubble-fact {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.28);
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
  animation: hop 2.4s var(--bounce) infinite;
}
.bounce-1 { animation-delay: 0s; }
.bounce-2 { animation-delay: 0.25s; }
.bounce-3 { animation-delay: 0.5s; }
.bounce-4 { animation-delay: 0.75s; }

/* Section helpers */
.section-sky {
  background: linear-gradient(180deg, #dff4ff 0%, rgba(223, 244, 255, 0.4) 40%, transparent 100%);
  margin-top: -1px;
  padding-top: 1.5rem;
}
.center { text-align: center; }
.lead.center, .lead-short {
  margin-inline: auto;
  max-width: 28rem;
}
.narrow { max-width: 36rem; margin-inline: auto; }
.title-bounce {
  animation: title-bounce 3s var(--bounce) infinite;
  display: block;
}
@keyframes title-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Person cards continuous gentle motion */
.spin-card {
  animation: card-sway 4s ease-in-out infinite;
}
.spin-card.delay-2 { animation-delay: -2s; }
@keyframes card-sway {
  0%, 100% { transform: rotate(-0.8deg) translateY(0); }
  50% { transform: rotate(0.8deg) translateY(-6px); }
}
.person .avatar {
  animation: hop 2.2s var(--bounce) infinite;
}

/* Ken burns on map art */
.ken-burns {
  animation: ken 12s ease-in-out infinite alternate;
  transform-origin: center center;
}
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.map-card { overflow: hidden; }
.map-card .map-art {
  animation: ken 14s ease-in-out infinite alternate;
}

/* Contact */
.contact-soon {
  font-size: 1.15rem;
  color: var(--navy);
}
.bounce-in {
  animation: pop-in 0.8s var(--bounce) both, float-soft 5s ease-in-out 0.8s infinite;
}
.contact-panel h2 {
  margin-top: 0;
}

/* Footer simplified */
.footer-simple {
  text-align: center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.footer-simple .credit {
  margin-top: 0.75rem;
  border-top: none;
  padding-top: 0;
}

/* Click sparkles */
.click-spark {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  font-size: 1.4rem;
  transform: translate(-50%, -50%);
  animation: spark-out 0.85s var(--bounce) forwards;
}
@keyframes spark-out {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.4); }
  100% { opacity: 0; transform: translate(-50%, -120%) scale(1.4); }
}

/* Session panel rainbow works on dark */
.session-panel .rainbow {
  filter: brightness(1.15);
}

/* Hero h1 rainbow uses shared class now */
.hero h1 .rainbow {
  display: inline;
}

/* Reduce motion: kill new continuous anims */
@media (prefers-reduced-motion: reduce) {
  .floaty,
  .marquee-track,
  .float-soft,
  .wobble,
  .tilt-a,
  .tilt-b,
  .tilt-c,
  .spin-card,
  .title-bounce,
  .ken-burns,
  .map-card .map-art,
  .rainbow,
  .bubble-fact,
  .bounce-in {
    animation: none !important;
  }
}

/* ========== Poster details + extra fun (v3) ========== */
.btn-header {
  display: none;
  min-height: 2.6rem;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  box-shadow: 0 3px 0 var(--navy);
}
@media (min-width: 800px) {
  .btn-header {
    display: inline-flex;
  }
}

.sun-spin {
  position: absolute;
  top: 0.5rem;
  right: 6%;
  font-size: 2.75rem;
  animation: sun-spin 12s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(255, 196, 0, 0.45));
  z-index: 0;
  pointer-events: none;
}
@keyframes sun-spin {
  from { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.08); }
  to { transform: rotate(360deg) scale(1); }
}

.hero-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #fff 0%, #e5f6ff 100%);
  border: 3px solid var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  box-shadow: 0 5px 0 rgba(44, 62, 140, 0.12);
}
.time-emoji {
  font-size: 1.35rem;
  animation: hop 1.6s var(--bounce) infinite;
}
.pulse-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 5px 0 rgba(44, 62, 140, 0.12), 0 0 0 0 rgba(62, 181, 255, 0.35); }
  50% { box-shadow: 0 5px 0 rgba(44, 62, 140, 0.12), 0 0 0 10px rgba(62, 181, 255, 0); }
}

.hero-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.25rem 0 0;
}
.price-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: 3px solid var(--navy);
  box-shadow: 0 3px 0 rgba(44, 62, 140, 0.12);
  animation: hop 2.2s var(--bounce) infinite;
}
.chip-child { background: #ffe8f5; color: var(--navy); }
.chip-adult { background: #e5f6ff; color: var(--navy); }
.chip-snack { background: #fff6d6; color: var(--navy); }

.session-time {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--yellow);
  margin: 0.15rem 0 0.35rem;
  animation: hop 2s var(--bounce) infinite;
}

/* Flying butterflies from poster art */
.fly-bug {
  position: absolute;
  width: 4.5rem;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  animation: butterfly-path 18s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(44, 62, 140, 0.15));
}
.fly-1 { top: 20%; left: -5%; animation-duration: 20s; }
.fly-2 { top: 50%; left: -8%; width: 3.2rem; animation-duration: 24s; animation-delay: -8s; }
@keyframes butterfly-path {
  0% { transform: translate(0, 0) rotate(-10deg) scale(0.9); }
  25% { transform: translate(30vw, -8vh) rotate(12deg) scale(1); }
  50% { transform: translate(55vw, 6vh) rotate(-8deg) scale(1.05); }
  75% { transform: translate(80vw, -4vh) rotate(15deg) scale(0.95); }
  100% { transform: translate(110vw, 2vh) rotate(-5deg) scale(0.9); }
}

.floaty-7 { left: 70%; top: 68%; animation-duration: 13s; animation-delay: -5s; }
.floaty-8 { left: 30%; top: 12%; animation-duration: 16s; animation-delay: -2s; font-size: 1.8rem; }

/* Choo-choo train */
.train-track {
  position: relative;
  height: 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(95, 211, 141, 0.15));
  border-bottom: 4px dashed rgba(44, 62, 140, 0.15);
}
.train {
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  animation: train-ride 14s linear infinite;
  font-size: 1.85rem;
  filter: drop-shadow(0 3px 0 rgba(44, 62, 140, 0.12));
}
.train-car {
  display: inline-block;
  animation: train-bob 0.45s ease-in-out infinite alternate;
}
.train-car:nth-child(2) { animation-delay: 0.08s; }
.train-car:nth-child(3) { animation-delay: 0.16s; }
.train-car:nth-child(4) { animation-delay: 0.24s; }
.train-smoke {
  position: absolute;
  left: -0.5rem;
  top: -0.75rem;
  font-size: 1rem;
  animation: smoke 1.2s ease-out infinite;
  opacity: 0.7;
}
@keyframes train-ride {
  0% { transform: translateX(-20vw); }
  100% { transform: translateX(110vw); }
}
@keyframes train-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}
@keyframes smoke {
  0% { transform: translate(0, 0) scale(0.6); opacity: 0.8; }
  100% { transform: translate(-12px, -18px) scale(1.2); opacity: 0; }
}

/* Price cards */
.price-grid {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 560px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
}
.price-card {
  position: relative;
  text-align: center;
  padding: 1.75rem 1.25rem 1.5rem;
  border-radius: calc(var(--radius-lg) + 0.25rem);
  border: 4px solid var(--navy);
  box-shadow: 0 10px 0 rgba(44, 62, 140, 0.12);
  overflow: hidden;
  background: var(--white);
}
.price-child {
  background: linear-gradient(165deg, #fff 40%, #ffe8f5 100%);
}
.price-adult {
  background: linear-gradient(165deg, #fff 40%, #e5f6ff 100%);
}
.price-balloon {
  font-size: 2rem;
  animation: hop 1.8s var(--bounce) infinite;
}
.price-label {
  margin: 0.5rem 0 0.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  animation: price-pop 2.5s var(--bounce) infinite;
}
.price-child .price-amount { color: var(--pink-hot); }
.price-adult .price-amount { color: var(--blue-deep); }
@keyframes price-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.price-note {
  margin: 0.65rem 0 0;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.price-extra {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff6d6;
  border: 3px solid var(--navy);
  box-shadow: 0 6px 0 rgba(44, 62, 140, 0.1);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  text-align: left;
}
.price-extra p { margin: 0; }
.price-butterflies {
  width: 3.5rem;
  height: auto;
  animation: hop 2s var(--bounce) infinite;
  flex-shrink: 0;
}

.mini-pop {
  position: absolute;
  bottom: 40%;
  font-size: 1.1rem;
  pointer-events: none;
  animation: mini-pop 0.9s var(--bounce) forwards;
  z-index: 5;
}
@keyframes mini-pop {
  0% { opacity: 1; transform: translateY(0) scale(0.5); }
  100% { opacity: 0; transform: translateY(-60px) scale(1.3); }
}

/* Contact phone */
.phone-big {
  margin: 0.5rem 0 1.15rem !important;
}
.phone-big a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 4px solid var(--yellow);
  animation: rainbow-shift 4s linear infinite;
  background: linear-gradient(100deg, var(--pink), var(--orange), var(--yellow-hot), var(--green), var(--blue), var(--purple));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.note-soft {
  margin: 0.75rem 0 0 !important;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
}
.map-when {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink) !important;
}

/* Sticky pink text btn */
.sticky-bar .btn-pink {
  box-shadow: 0 4px 0 #c41d75;
  border-color: #c41d75;
}

/* Header layout with call button */
.header-inner {
  flex-wrap: wrap;
}
@media (min-width: 800px) {
  .header-inner {
    flex-wrap: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sun-spin,
  .fly-bug,
  .train,
  .train-car,
  .train-smoke,
  .price-amount,
  .pulse-glow,
  .hero-time-pill {
    animation: none !important;
  }
}

/* ========== v4: tight motion, no crossing, clean layout ========== */

/* Kill sloppy / crossing animations */
.floaty,
.fly-bug,
.train-track,
.train,
.sun-spin,
.click-spark,
.mini-pop,
.wobble,
.spin-slow,
.tilt-a,
.tilt-b,
.tilt-c,
.float-soft,
.spin-card,
.title-bounce,
.bounce-in,
.pulse-glow,
.ken-burns,
.map-card .map-art {
  animation: none !important;
}

/* Soft background only — stay in corners, never cross content */
.float-layer {
  opacity: 0.55;
}
.cloud-a {
  top: 8%;
  left: -12%;
  animation: drift-slow 70s linear infinite;
}
.cloud-b {
  top: 72%;
  left: -15%;
  animation: drift-slow 90s linear infinite;
  animation-delay: -30s;
  opacity: 0.4;
}
.cloud-c {
  display: none;
}
@keyframes drift-slow {
  from { transform: translateX(0); }
  to { transform: translateX(120vw); }
}

.blob-1 {
  top: 12%;
  right: 2%;
  width: 5rem;
  height: 5rem;
  opacity: 0.28;
  animation: soft-breathe 8s ease-in-out infinite;
}
.blob-2 {
  bottom: 18%;
  left: 2%;
  width: 4rem;
  height: 4rem;
  opacity: 0.22;
  animation: soft-breathe 9s ease-in-out infinite;
  animation-delay: -3s;
}
.blob-3 {
  display: none;
}
@keyframes soft-breathe {
  0%, 100% { transform: scale(1); opacity: 0.22; }
  50% { transform: scale(1.08); opacity: 0.32; }
}

.star-1 {
  top: 16%;
  left: 4%;
  animation: soft-twinkle 3.5s ease-in-out infinite;
}
.star-2 {
  top: 22%;
  right: 5%;
  animation: soft-twinkle 3.5s ease-in-out infinite;
  animation-delay: 1.2s;
}
.star-3 {
  display: none;
}
@keyframes soft-twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 0.9; transform: scale(1); }
}

/* Logo: tiny bounce only */
.brand img,
.hero-logo-badge,
.footer-logo {
  animation: logo-soft 3.2s ease-in-out infinite !important;
}
@keyframes logo-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.hero-logo-badge {
  transform: translateX(-50%);
}
.hero-logo-badge img {
  animation: none !important;
}

/* Hero frame: always level */
.hero-frame {
  transform: none !important;
  transition: none;
  animation: none !important;
}
.hero-frame:hover {
  transform: none !important;
}

/* Marquee: slower, tidy */
.marquee {
  margin-top: 1.5rem;
  padding: 0.5rem 0;
}
.marquee-track {
  animation: marquee 28s linear infinite;
  gap: 2.5rem;
  font-size: 0.98rem;
}

/* Rainbow text: gentle, not frantic */
.rainbow {
  animation: rainbow-shift 8s linear infinite;
  background-size: 200% auto;
}

/* Buttons: press feedback only, no wobble */
.btn {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(2px);
}

/* Session list — simple bullets */
.session-list {
  margin: 0 0 0.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.session-list li {
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.22);
  font-size: 0.98rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.session-side .big-day {
  animation: none;
}
.session-time {
  animation: none;
}

/* Prices: clean cards, no hop */
.price-grid {
  margin-top: 1.25rem;
}
.price-card {
  padding: 1.5rem 1rem;
  transition: transform 0.2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
}
.price-amount {
  animation: none !important;
  font-size: clamp(3rem, 10vw, 4rem);
}
.price-label {
  margin: 0 0 0.25rem;
}
.price-balloon,
.price-note,
.price-extra {
  display: none;
}

/* Team cards: static, clean */
.person {
  text-align: center;
  padding: 1.35rem 1.25rem;
  transition: transform 0.2s ease;
}
.person:hover {
  transform: translateY(-3px);
}
.person .avatar {
  display: none;
}
.person p:not(.role) {
  display: none;
}
.person .role {
  margin: 0;
}

/* Map: simple card, no image */
.map-simple {
  display: block;
  max-width: 28rem;
  margin: 0 auto;
  grid-template-columns: none;
}
.map-simple .map-body {
  padding: 1.75rem;
  text-align: center;
}
.map-simple .actions {
  justify-content: center;
}

/* Contact: no float animation */
.contact-panel {
  animation: none !important;
  text-align: center;
}
.contact-panel .sparkle-row {
  display: none;
}

/* Eyebrow: gentle, not wiggle frenzy */
.eyebrow {
  animation: none;
}
.eyebrow .dot {
  animation: soft-twinkle 2s ease-in-out infinite;
}

/* Hero time pill: static glow */
.hero-time-pill {
  animation: none;
  box-shadow: 0 4px 0 rgba(44, 62, 140, 0.1);
}

/* Sections a bit tighter */
.section {
  padding: 2.25rem 0;
}
.section h2.center {
  margin-bottom: 1rem;
}
.lead-short {
  margin-bottom: 1.25rem;
}

/* FAQ: no scale jump */
.faq-list details[open] {
  transform: none;
}

/* Footer logo position */
.footer-logo {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .cloud-a,
  .cloud-b,
  .blob-1,
  .blob-2,
  .star-1,
  .star-2,
  .brand img,
  .hero-logo-badge,
  .footer-logo,
  .marquee-track,
  .rainbow,
  .eyebrow .dot {
    animation: none !important;
  }
}

/* Keep badge centered while bouncing */
.hero-logo-badge {
  animation: logo-badge-soft 3.2s ease-in-out infinite !important;
}
@keyframes logo-badge-soft {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}
.footer-logo {
  animation: logo-soft 3.2s ease-in-out infinite !important;
}

/* Circular logo in header / footer — no square plate */
.brand img {
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
}
.footer-logo {
  border-radius: 50%;
  background: transparent;
}
.hero-logo-badge {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.hero-logo-badge img {
  border-radius: 50%;
  filter: drop-shadow(0 6px 12px rgba(44, 62, 140, 0.18));
}

/* Banner: seamless, no gaps, full bleed */
.marquee {
  margin: 0 !important;
  margin-top: 0 !important;
  padding: 0.7rem 0 !important;
  width: 100%;
  max-width: none;
  border-block: 3px solid var(--navy);
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #ffe8f5 0%,
    #e5f6ff 25%,
    #fff6d6 50%,
    #e9fbeb 75%,
    #ffe8f5 100%
  );
  background-size: 200% 100%;
  animation: marquee-bg 12s linear infinite;
}
@keyframes marquee-bg {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0 !important;
  animation: marquee-seamless 18s linear infinite !important;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.15rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  position: relative;
}
/* even dots between items — continuous ribbon */
.marquee-group span::after {
  content: "·";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-weight: 800;
  opacity: 0.7;
}

/* move by one full group width (33.333% of 3 groups) */
@keyframes marquee-seamless {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.hero {
  padding-bottom: 0 !important;
}
.hero-grid {
  padding-bottom: 1.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none !important;
  }
  .marquee-track {
    animation: none !important;
  }
}

/* Team photo — Elaine & Angela */
.team-photo {
  margin: 0 auto;
  max-width: 28rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: 0 10px 0 rgba(44, 62, 140, 0.1);
  background: var(--white);
}
.team-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.team-caption {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, #e5f6ff, #ffe8f5);
  border-top: 3px solid var(--navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}
.team-caption strong {
  font-weight: 700;
}
@media (max-width: 420px) {
  .team-caption {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ========== Extra kid excitement (contained, not messy) ========== */

/* Richer playground wallpaper */
body::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 94, 181, 0.2), transparent 22%),
    radial-gradient(circle at 90% 8%, rgba(62, 181, 255, 0.22), transparent 24%),
    radial-gradient(circle at 85% 70%, rgba(255, 210, 63, 0.18), transparent 26%),
    radial-gradient(circle at 15% 80%, rgba(95, 211, 141, 0.16), transparent 24%),
    radial-gradient(circle at 50% 40%, rgba(167, 139, 250, 0.1), transparent 35%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 22px,
      rgba(255, 94, 181, 0.03) 22px,
      rgba(255, 94, 181, 0.03) 23px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 22px,
      rgba(62, 181, 255, 0.03) 22px,
      rgba(62, 181, 255, 0.03) 23px
    ),
    linear-gradient(180deg, #fff5fb 0%, #eef8ff 40%, #fff9e8 100%) !important;
}

/* More corner stars (fixed positions only) */
.star-3 {
  display: block !important;
  top: 58%;
  right: 6%;
  background: var(--green) !important;
  animation: soft-twinkle 3.2s ease-in-out infinite !important;
  animation-delay: 0.6s !important;
}
.star-4 {
  display: block !important;
  bottom: 22%;
  left: 7%;
  background: var(--orange) !important;
  animation: soft-twinkle 3.8s ease-in-out infinite !important;
  animation-delay: 1.8s !important;
}

/* Hero balloons — stay in top-right corner of hero only */
.hero {
  overflow: hidden;
  position: relative;
}
.hero-balloons {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  z-index: 0;
  display: flex;
  gap: 0.15rem;
  pointer-events: none;
}
.balloon {
  font-size: 1.75rem;
  display: inline-block;
  animation: balloon-bob 2.8s ease-in-out infinite;
  filter: drop-shadow(0 4px 0 rgba(44, 62, 140, 0.1));
}
.b-pink { animation-delay: 0s; color: var(--pink); }
.b-blue { animation-delay: 0.35s; font-size: 1.45rem; }
.b-yellow { animation-delay: 0.7s; font-size: 1.6rem; }
@keyframes balloon-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Corner stickers on hero image only */
.hero-visual {
  position: relative;
}
.corner-sticker {
  position: absolute;
  z-index: 4;
  font-size: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: 0 4px 0 rgba(44, 62, 140, 0.12);
  animation: sticker-bob 2.4s ease-in-out infinite;
}
.cs-1 {
  top: -0.35rem;
  left: -0.35rem;
  background: #fff6d6;
}
.cs-2 {
  top: -0.35rem;
  right: -0.35rem;
  background: #ffe8f5;
  animation-delay: 0.4s;
}
@keyframes sticker-bob {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Fun icon strip under CTAs */
.fun-icons {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.15rem;
  flex-wrap: wrap;
}
.fun-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  font-size: 1.25rem;
  border: 3px solid var(--navy);
  background: var(--white);
  box-shadow: 0 3px 0 rgba(44, 62, 140, 0.1);
  animation: icon-pop 2.6s ease-in-out infinite;
}
.fun-icons span:nth-child(1) { background: #ffe8f5; animation-delay: 0s; }
.fun-icons span:nth-child(2) { background: #e5f6ff; animation-delay: 0.15s; }
.fun-icons span:nth-child(3) { background: #fff6d6; animation-delay: 0.3s; }
.fun-icons span:nth-child(4) { background: #e9fbeb; animation-delay: 0.45s; }
.fun-icons span:nth-child(5) { background: #f0e8ff; animation-delay: 0.6s; }
@keyframes icon-pop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.pill-icon {
  margin-right: 0.25rem;
  display: inline-block;
  animation: icon-pop 2s ease-in-out infinite;
}

/* Scallop edge under hero */
.scallop {
  height: 18px;
  width: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 12px 0, var(--cream) 12px, transparent 13px) 0 0 / 24px 18px repeat-x;
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}
/* match marquee - scallop into marquee colour */
.scallop-down {
  background:
    radial-gradient(circle at 12px 100%, #ffe8f5 11px, transparent 12px) 0 0 / 24px 18px repeat-x;
  height: 14px;
  margin-top: 0.5rem;
}

/* Rainbow candy stripe on marquee top/bottom already — boost items */
.marquee-group span {
  transition: transform 0.2s ease;
}
.marquee:hover .marquee-group span {
  animation: icon-pop 1.8s ease-in-out infinite;
}
.marquee-group span:nth-child(odd) {
  color: #1a2a6c;
}
.marquee-group span:nth-child(3n) {
  color: #c41d75;
}

/* Session list icons */
.session-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.li-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}
.side-emoji {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  animation: icon-pop 2.4s ease-in-out infinite;
}
.sparkle-dots::before {
  content: "✦ ✦ ✦";
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.4;
  font-size: 0.8rem;
  color: var(--yellow);
  animation: soft-twinkle 2.5s ease-in-out infinite;
}
.session-panel {
  position: relative;
}
.session-panel .big-day {
  text-shadow: 0 3px 0 rgba(26, 42, 108, 0.35);
  animation: big-day-pulse 2.2s ease-in-out infinite !important;
}
@keyframes big-day-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Price cards more fun */
.price-emoji {
  display: block !important;
  font-size: 2rem;
  margin-bottom: 0.35rem;
  animation: icon-pop 2.2s ease-in-out infinite;
}
.price-card {
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.5), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 210, 63, 0.2), transparent 40%);
  pointer-events: none;
}
.price-child {
  background: linear-gradient(160deg, #fff 30%, #ffe0f0 100%) !important;
  border-color: var(--pink) !important;
}
.price-adult {
  background: linear-gradient(160deg, #fff 30%, #d6f0ff 100%) !important;
  border-color: var(--blue) !important;
}
.price-amount {
  position: relative;
  z-index: 1;
  text-shadow: 0 3px 0 rgba(44, 62, 140, 0.08);
}
.price-child .price-amount {
  animation: price-wiggle 3s ease-in-out infinite !important;
}
.price-adult .price-amount {
  animation: price-wiggle 3s ease-in-out infinite 0.4s !important;
}
@keyframes price-wiggle {
  0%, 90%, 100% { transform: rotate(0deg) scale(1); }
  93% { transform: rotate(-3deg) scale(1.04); }
  96% { transform: rotate(3deg) scale(1.04); }
}

/* Decorative confetti dots on price cards */
.price-confetti {
  display: block !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--pink) 2px, transparent 3px),
    radial-gradient(circle, var(--yellow) 2px, transparent 3px),
    radial-gradient(circle, var(--blue) 2px, transparent 3px),
    radial-gradient(circle, var(--green) 2px, transparent 3px);
  background-size: 48px 48px, 56px 56px, 40px 40px, 52px 52px;
  background-position: 8px 10px, 30px 28px, 18px 36px, 40px 8px;
  opacity: 0.35;
  animation: confetti-shift 6s linear infinite;
}
@keyframes confetti-shift {
  from { background-position: 8px 10px, 30px 28px, 18px 36px, 40px 8px; }
  to { background-position: 8px 58px, 30px 84px, 18px 76px, 40px 60px; }
}

/* Section candy backgrounds */
.section-candy {
  position: relative;
  background:
    radial-gradient(circle at 10% 30%, rgba(255, 94, 181, 0.12), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(255, 210, 63, 0.15), transparent 30%),
    linear-gradient(180deg, transparent, rgba(255, 208, 234, 0.4) 20%, rgba(255, 240, 200, 0.45) 80%, transparent) !important;
}
.section-play {
  background:
    radial-gradient(circle at 80% 20%, rgba(62, 181, 255, 0.12), transparent 35%),
    transparent;
}
.section-team-fun {
  background:
    radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.12), transparent 45%);
}
.section-faq-fun {
  background:
    radial-gradient(circle at 20% 50%, rgba(95, 211, 141, 0.12), transparent 40%);
}

/* Fun headings */
.heading-fun {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.heading-fun span {
  display: inline-block;
  animation: icon-pop 2.4s ease-in-out infinite;
}
.heading-fun span:last-child {
  animation-delay: 0.3s;
}

/* Team photo rainbow ring */
.team-photo {
  position: relative;
  border: 5px solid transparent !important;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(120deg, var(--pink), var(--yellow), var(--green), var(--blue), var(--purple)) border-box !important;
  box-shadow: 0 12px 0 rgba(44, 62, 140, 0.1), 0 20px 40px rgba(255, 94, 181, 0.12) !important;
  transition: transform 0.25s ease;
}
.team-photo:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Map pin bounce */
.map-pin {
  font-size: 2rem;
  margin-bottom: 0.35rem;
  animation: icon-pop 2s ease-in-out infinite;
}
.map-simple {
  border: 4px solid var(--navy) !important;
  background:
    radial-gradient(circle at 50% 0%, #e5f6ff, #fff 55%) !important;
  box-shadow: 0 10px 0 rgba(44, 62, 140, 0.1) !important;
}

/* Contact fun */
.contact-fun {
  border: 4px solid var(--navy) !important;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 210, 63, 0.35), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 94, 181, 0.2), transparent 40%),
    var(--white) !important;
  position: relative;
  overflow: hidden;
}
.contact-bubbles {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.contact-bubbles span {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--navy);
  background: var(--yellow);
  box-shadow: 0 3px 0 rgba(44, 62, 140, 0.12);
  animation: icon-pop 2.2s ease-in-out infinite;
}
.contact-bubbles span:nth-child(2) {
  background: #e5f6ff;
  animation-delay: 0.2s;
}
.contact-bubbles span:nth-child(3) {
  background: #ffe8f5;
  animation-delay: 0.4s;
}

/* FAQ fun open state */
.faq-list details {
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-list details:hover {
  transform: translateY(-2px);
}
.faq-list details[open] {
  background: linear-gradient(180deg, #fff, #fff5fb) !important;
  border-color: var(--pink) !important;
}

/* Buttons slight shine */
.btn-primary {
  background: linear-gradient(180deg, #fff07a 0%, var(--yellow) 40%, var(--orange) 100%) !important;
}
.btn-pink {
  background: linear-gradient(180deg, #ff9ed0 0%, var(--pink) 100%) !important;
}

/* Footer rainbow stripe already there — boost */
.site-footer::before {
  height: 14px !important;
  animation: stripe-slide 8s linear infinite;
  background-size: 200% 100%;
}
@keyframes stripe-slide {
  from { background-position: 0 0; }
  to { background-position: 144px 0; }
}

/* Sticky bar candy */
.sticky-bar {
  background: linear-gradient(90deg, #fff9f0, #ffe8f5, #e5f6ff, #fff9f0) !important;
  background-size: 200% 100%;
  animation: marquee-bg 10s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .balloon,
  .corner-sticker,
  .fun-icons span,
  .pill-icon,
  .side-emoji,
  .price-emoji,
  .price-child .price-amount,
  .price-adult .price-amount,
  .price-confetti,
  .session-panel .big-day,
  .map-pin,
  .contact-bubbles span,
  .heading-fun span,
  .site-footer::before,
  .sticky-bar,
  .marquee {
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .hero-balloons {
    right: 0.35rem;
    top: 0.25rem;
  }
  .balloon {
    font-size: 1.35rem;
  }
  .corner-sticker {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 1.15rem;
  }
}

/* Nursery animated clip in session panel */
.session-clip {
  position: relative;
  width: 100%;
  max-width: 14rem;
  margin: 0 auto 1rem;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 0 0 2px rgba(255, 210, 63, 0.35);
  background: rgba(0, 0, 0, 0.15);
  aspect-ratio: 1;
}
.nursery-clip {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
/* soft glow ring */
.session-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.15);
  pointer-events: none;
}
.session-side {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 700px) {
  .session-clip {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nursery-clip {
    /* freeze on poster: pause via JS optional; hide video motion by not autoplaying */
  }
}

/* Session panel — tight layout, logo on clip */
.session-panel {
  display: grid !important;
  gap: 1rem !important;
  padding: 1.15rem 1.2rem !important;
  align-items: stretch !important;
  overflow: hidden;
}
@media (min-width: 700px) {
  .session-panel {
    grid-template-columns: 1.15fr 0.85fr !important;
    padding: 1.25rem 1.35rem !important;
    gap: 1.15rem !important;
  }
}
.session-panel::before {
  display: none !important; /* remove floating stars that eat space */
}
.session-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.session-panel h2 {
  margin: 0 0 0.4rem !important;
  font-size: clamp(1.45rem, 3vw, 1.85rem) !important;
  line-height: 1.15;
}
.session-panel .lead {
  margin: 0 0 0.75rem !important;
  font-size: 0.98rem !important;
  line-height: 1.45;
  max-width: none !important;
}
.session-list {
  margin: 0 0 0.75rem !important;
  gap: 0.4rem !important;
}
.session-list li {
  padding: 0.4rem 0.75rem !important;
  font-size: 0.92rem !important;
  margin: 0;
}
.session-when {
  margin: 0 !important;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}
.session-when strong {
  color: var(--yellow);
}

/* Clip column — fills height, no empty stack */
.session-side {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  min-width: 0;
}
.session-clip {
  position: relative;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  aspect-ratio: 1;
  border-radius: 1.1rem !important;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18) !important;
  background: #1a2550;
}
.nursery-clip {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

/* Logo pinned to top of image box — clear & visible */
.clip-logo {
  position: absolute;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.2rem;
  border: 3px solid var(--navy);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  pointer-events: none;
  animation: logo-soft 3.2s ease-in-out infinite;
}
@media (min-width: 700px) {
  .clip-logo {
    width: 4rem;
    height: 4rem;
    top: 0.65rem;
  }
  .session-clip {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
  .nursery-clip {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .session-side {
    min-height: 100%;
  }
}

/* Hide old big-day stack styles if residual */
.session-side .big-day,
.session-side .session-time,
.session-side .side-emoji {
  display: none !important;
}
.sparkle-dots {
  display: none !important;
}

/* Revert session panel: classic two-column, clip on top of side stack */
.session-panel {
  display: grid !important;
  gap: 1.25rem !important;
  padding: 1.5rem !important;
  align-items: center !important;
  overflow: hidden;
}
@media (min-width: 700px) {
  .session-panel {
    grid-template-columns: 1.2fr 0.9fr !important;
    padding: 1.75rem 2rem !important;
    gap: 1.5rem !important;
  }
}
.session-panel::before {
  display: none !important;
}
.session-panel h2 {
  margin: 0 0 0.5rem !important;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem) !important;
}
.session-panel .lead {
  margin: 0 0 1rem !important;
  font-size: 1.02rem !important;
  max-width: 34rem !important;
}
.session-list {
  margin: 0 !important;
  gap: 0.5rem !important;
}
.session-list li {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.95rem !important;
}
.session-when {
  display: none !important;
}

/* Right column: clip then day/time — normal stack again */
.session-side {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 1rem 0.85rem !important;
  border-radius: var(--radius) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  gap: 0.25rem;
}
.session-side .big-day {
  display: block !important;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.2rem) !important;
  font-weight: 800;
  line-height: 1;
  margin: 0.35rem 0 0.1rem !important;
  color: var(--yellow) !important;
  text-shadow: 0 3px 0 rgba(26, 42, 108, 0.3);
  animation: none !important;
}
.session-side .session-time {
  display: block !important;
  font-family: var(--font-display);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--yellow) !important;
  margin: 0 0 0.15rem !important;
  animation: none !important;
}
.session-side span {
  font-weight: 600;
  opacity: 0.95;
}

/* Clip — 16:9 style scene, logo is baked at top of image */
.session-clip {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 0.5rem !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 1rem !important;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
  background: #1a2550;
}
.nursery-clip {
  position: static !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}
.clip-logo {
  display: none !important; /* logo is in the picture at the top now */
}
.session-clip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

/* Hero matches nursery scene image (logo already in picture) */
.hero-frame {
  transform: none !important;
  border-radius: 1.35rem !important;
  overflow: hidden;
  border: 4px solid var(--navy) !important;
  box-shadow:
    0 10px 0 rgba(44, 62, 140, 0.1),
    0 18px 40px rgba(44, 62, 140, 0.14) !important;
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-logo-badge {
  display: none !important;
}
.hero-visual .corner-sticker {
  display: none !important;
}
.hero-visual {
  padding: 0;
}

/* Centre the nursery animated clip properly */
.session-side {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
}

.session-clip {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  max-width: 22rem !important;
  margin: 0 auto 0.65rem !important;
  aspect-ratio: 3 / 2 !important; /* matches 672×448 video */
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  border-radius: 1rem !important;
  background: #fff8ee !important;
}

.nursery-clip {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  object-fit: contain !important; /* full picture, centred — no off-centre crop */
  object-position: center center !important;
  display: block !important;
}

/* Hero image also fully centred */
.hero-frame {
  display: grid !important;
  place-items: center !important;
  background: #fff8ee;
}
.hero-frame img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (min-width: 700px) {
  .session-clip {
    max-width: 100% !important;
  }
}

/* Straight, edge-to-edge nursery clip — no tilt, no float padding */
.session-clip {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 0.65rem !important;
  aspect-ratio: 1092 / 732 !important; /* straight crop ratio */
  overflow: hidden !important;
  border-radius: 1rem !important;
  border: 3px solid rgba(255, 255, 255, 0.7) !important;
  background: #1a2a6c !important;
  transform: none !important;
  rotate: none !important;
}
.nursery-clip {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  rotate: none !important;
}
.session-side,
.session-panel {
  transform: none !important;
}
.hero-frame {
  transform: none !important;
  rotate: none !important;
}
.hero-frame img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1092 / 732 !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
}

/* Full illustration visible — no edge crop */
.session-clip {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 0.65rem !important;
  aspect-ratio: 1248 / 854 !important;
  overflow: hidden !important;
  border-radius: 1.15rem !important;
  border: 3px solid rgba(255, 255, 255, 0.75) !important;
  background: #eef4ff !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
  transform: none !important;
}
.nursery-clip {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important; /* entire image visible */
  object-position: center center !important;
  transform: none !important;
  background: #eef4ff;
}
.hero-frame {
  transform: none !important;
  background: #eef4ff !important;
  overflow: hidden !important;
}
.hero-frame img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1248 / 854 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
  background: #eef4ff;
}

.session-clip { aspect-ratio: 656 / 448 !important; }
.nursery-clip { object-fit: contain !important; object-position: center center !important; }

/* Level clip: fill white box edge-to-edge, perfectly axis-aligned */
.session-side {
  align-items: center !important;
}
.session-clip {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 0.65rem !important;
  padding: 0 !important;
  aspect-ratio: 688 / 432 !important;
  overflow: hidden !important;
  border-radius: 1rem !important;
  border: 3px solid rgba(255, 255, 255, 0.85) !important;
  background: #1a2a6c !important;
  line-height: 0 !important;
  transform: none !important;
  rotate: 0deg !important;
}
.session-clip * {
  transform: none !important;
}
.nursery-clip {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: fill !important; /* stretch to box — box ratio matches video */
  object-position: center center !important;
  transform: none !important;
  rotate: 0deg !important;
  display: block !important;
}


/* ===== FINAL: both pictures perfectly level, full frame visible ===== */
.hero-frame,
.hero-frame:hover,
.hero-visual,
.hero-frame img,
.session-clip,
.session-clip:hover,
.nursery-clip,
.session-side {
  transform: none !important;
  rotate: none !important;
  animation: none !important;
}
.hero-frame {
  overflow: hidden !important;
  border-radius: 1.25rem !important;
  border: 4px solid var(--navy) !important;
  box-shadow: 0 10px 28px rgba(44, 62, 140, 0.14) !important;
  background: #eef4ff !important;
  line-height: 0 !important;
}
.hero-frame img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
}
.session-clip {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto 0.65rem !important;
  padding: 0 !important;
  aspect-ratio: 1256 / 866 !important;
  overflow: hidden !important;
  border-radius: 1rem !important;
  border: 3px solid rgba(255,255,255,0.9) !important;
  background: #eef4ff !important;
  line-height: 0 !important;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15) !important;
}
.nursery-clip {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  display: block !important;
  background: #eef4ff !important;
}

/* Stay & play! — Tiny Tots logo colours */
.hero h1.title-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 7vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--navy);
}
.hero h1.title-brand span {
  display: inline-block;
  transition: transform 0.2s var(--bounce);
}
.hero h1.title-brand:hover span {
  transform: translateY(-2px);
}
/* Logo-matched palette: blue, pink, green, yellow, orange, purple */
.hero h1.title-brand .c1 { color: #3eb5ff; } /* sky blue */
.hero h1.title-brand .c2 { color: #ff5eb5; } /* hot pink */
.hero h1.title-brand .c3 { color: #5fd38d; } /* green */
.hero h1.title-brand .c4 { color: #ffd23f; } /* yellow */
.hero h1.title-brand .c5 {
  color: #ff9f43; /* orange */
  padding: 0 0.12em;
}
.hero h1.title-brand .c6 { color: #9b7bff; } /* purple */
/* soft outline so yellow stays readable on cream */
.hero h1.title-brand .c4 {
  text-shadow:
    0 1px 0 rgba(44, 62, 140, 0.15),
    1px 1px 0 rgba(44, 62, 140, 0.08);
}


/* New centred nursery art (16:9, axis-aligned) */
.hero-frame img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  display: block !important;
}
.session-clip {
  aspect-ratio: 16 / 9 !important;
  background: #fff8ee !important;
}
.nursery-clip {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  background: #fff8ee !important;
}

/* ===== Team stage: fill the section, balloons & toys ===== */
.section-team-fun {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 94, 181, 0.18), transparent 28%),
    radial-gradient(circle at 88% 25%, rgba(62, 181, 255, 0.18), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(255, 210, 63, 0.16), transparent 35%),
    linear-gradient(180deg, #fff5fb 0%, #eef8ff 50%, #fff9e8 100%) !important;
}
.team-wrap {
  max-width: min(var(--max), calc(100% - 1.25rem)) !important;
}
.team-wrap .lead-short {
  margin-bottom: 1rem !important;
}
.team-stage {
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.75rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 238, 0.92));
  border: 4px solid var(--navy);
  box-shadow:
    0 12px 0 rgba(44, 62, 140, 0.1),
    0 20px 40px rgba(255, 94, 181, 0.12);
  overflow: hidden;
}
.team-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.tf {
  position: absolute;
  font-size: 1.55rem;
  line-height: 1;
  filter: drop-shadow(0 3px 0 rgba(44, 62, 140, 0.12));
  animation: team-bob 2.6s ease-in-out infinite;
  will-change: transform;
}
/* Balloons — top corners & sides */
.tf-1 { top: 0.55rem; left: 8%; font-size: 1.85rem; animation-delay: 0s; color: #ff5eb5; }
.tf-2 { top: 0.4rem; right: 10%; font-size: 1.7rem; animation-delay: 0.35s; }
.tf-3 { top: 12%; left: 2%; font-size: 1.45rem; animation-delay: 0.7s; }
.tf-4 { top: 14%; right: 3%; font-size: 1.55rem; animation-delay: 0.15s; }
/* Toys — mid / bottom sides */
.tf-5 { top: 38%; left: 3%; font-size: 1.5rem; animation-delay: 0.4s; }
.tf-6 { top: 42%; right: 2.5%; font-size: 1.45rem; animation-delay: 0.85s; }
.tf-7 { bottom: 22%; left: 5%; font-size: 1.25rem; animation-delay: 0.2s; }
.tf-8 { bottom: 24%; right: 5%; font-size: 1.3rem; animation-delay: 0.55s; }
.tf-9 { bottom: 8%; left: 12%; font-size: 1.35rem; animation-delay: 0.9s; }
.tf-10 { bottom: 7%; right: 12%; font-size: 1.35rem; animation-delay: 0.1s; }
.tf-11 { top: 6%; left: 22%; font-size: 1.3rem; animation-delay: 0.45s; }
.tf-12 { top: 7%; right: 22%; font-size: 1.25rem; animation-delay: 0.65s; }

@keyframes team-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.06); }
}
/* alternate side sway — still tight, not crossing the photo */
.tf-1, .tf-3, .tf-5, .tf-7, .tf-9, .tf-11 {
  animation-name: team-bob-left;
}
.tf-2, .tf-4, .tf-6, .tf-8, .tf-10, .tf-12 {
  animation-name: team-bob-right;
}
@keyframes team-bob-left {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  50% { transform: translate(2px, -8px) rotate(4deg); }
}
@keyframes team-bob-right {
  0%, 100% { transform: translate(0, 0) rotate(4deg); }
  50% { transform: translate(-2px, -8px) rotate(-4deg); }
}

/* Photo fills the stage — less empty gap */
.team-stage .team-photo {
  position: relative;
  z-index: 2;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  border-radius: 1.25rem !important;
  border: 4px solid var(--navy) !important;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(120deg, #ff5eb5, #ffd23f, #5fd38d, #3eb5ff, #9b7bff) border-box !important;
  border: 5px solid transparent !important;
  box-shadow: 0 8px 0 rgba(44, 62, 140, 0.1) !important;
  transition: transform 0.25s ease;
}
.team-stage .team-photo:hover {
  transform: translateY(-3px);
}
.team-stage .team-photo img {
  width: 100%;
  aspect-ratio: 4 / 3 !important; /* less tall empty crop, more fill */
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.team-stage .team-caption {
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  background: linear-gradient(90deg, #ffe8f5, #e5f6ff, #fff6d6) !important;
}

@media (min-width: 700px) {
  .team-stage {
    max-width: 44rem;
    padding: 2rem 2.25rem 1.75rem;
  }
  .tf { font-size: 1.75rem; }
  .tf-1, .tf-2 { font-size: 2.1rem; }
  .team-stage .team-photo img {
    aspect-ratio: 16 / 11 !important;
  }
}
@media (max-width: 520px) {
  .team-stage {
    padding: 1.35rem 1rem 1.15rem;
  }
  .tf-5, .tf-6, .tf-9, .tf-10 {
    font-size: 1.2rem;
  }
  /* hide a couple on very small screens so it stays tidy */
  .tf-11, .tf-12, .tf-9, .tf-10 {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tf {
    animation: none !important;
  }
}

/* Revert team stage / floaters — simple photo again */
.team-stage,
.team-floaters,
.tf {
  display: none !important;
}
.section-team-fun {
  background:
    radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.12), transparent 45%) !important;
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}
.team-photo {
  display: block !important;
  margin: 0 auto !important;
  max-width: 28rem !important;
  width: auto !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  border: 4px solid var(--navy) !important;
  box-shadow: 0 10px 0 rgba(44, 62, 140, 0.1) !important;
  background: var(--white) !important;
}
.team-photo img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  display: block !important;
}
.team-caption {
  display: flex !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  padding: 0.85rem 1.1rem !important;
  background: linear-gradient(90deg, #e5f6ff, #ffe8f5) !important;
  border-top: 3px solid var(--navy) !important;
  font-size: 0.95rem !important;
}
.team-wrap {
  max-width: var(--max) !important;
}

/* ===== Pastel background animations (soft, whole-page) ===== */

/* Animated wash on the main cream/pastel backdrop */
body::before {
  background:
    radial-gradient(ellipse 55% 45% at 12% 18%, rgba(255, 94, 181, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 12%, rgba(62, 181, 255, 0.26), transparent 55%),
    radial-gradient(ellipse 45% 40% at 70% 78%, rgba(95, 211, 141, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 35% at 20% 88%, rgba(255, 210, 63, 0.24), transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 45%, rgba(167, 139, 250, 0.14), transparent 60%),
    linear-gradient(160deg, #fff5fb 0%, #eef8ff 40%, #fff9e8 75%, #f5fff8 100%) !important;
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  animation: pastel-drift 18s ease-in-out infinite alternate !important;
}

@keyframes pastel-drift {
  0% {
    background-position:
      0% 0%, 100% 0%, 80% 100%, 0% 100%, 50% 50%, 0% 0%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position:
      8% 6%, 92% 8%, 70% 90%, 10% 92%, 48% 52%, 0% 0%;
  }
  100% {
    background-position:
      4% 10%, 96% 4%, 75% 85%, 5% 95%, 52% 48%, 0% 0%;
    filter: hue-rotate(8deg);
  }
}

/* Soft floating pastel orbs behind content */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 9rem at 18% 30%, rgba(255, 182, 220, 0.45), transparent 70%),
    radial-gradient(circle 11rem at 82% 22%, rgba(168, 220, 255, 0.42), transparent 70%),
    radial-gradient(circle 8rem at 70% 70%, rgba(186, 245, 210, 0.4), transparent 70%),
    radial-gradient(circle 10rem at 25% 75%, rgba(255, 230, 150, 0.38), transparent 70%),
    radial-gradient(circle 7rem at 50% 50%, rgba(210, 190, 255, 0.28), transparent 70%);
  animation: orb-float 14s ease-in-out infinite alternate;
}

@keyframes orb-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  33% {
    transform: translate(2%, -1.5%) scale(1.04);
    opacity: 1;
  }
  66% {
    transform: translate(-1.5%, 2%) scale(0.98);
    opacity: 0.9;
  }
  100% {
    transform: translate(1%, 1%) scale(1.03);
    opacity: 0.95;
  }
}

/* Section pastel bands gently pulse */
.section-candy,
.section-team-fun,
.section-fun,
.section-play,
.section-faq-fun,
.section-sky {
  position: relative;
  isolation: isolate;
}
.section-candy::before,
.section-team-fun::before,
.section-fun::before,
.section-play::before,
.section-faq-fun::before,
.section-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.9;
  animation: section-glow 10s ease-in-out infinite alternate;
}
.section-candy::before {
  background:
    radial-gradient(ellipse 60% 80% at 15% 40%, rgba(255, 94, 181, 0.2), transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 60%, rgba(255, 210, 63, 0.18), transparent 60%);
}
.section-team-fun::before {
  background:
    radial-gradient(ellipse 70% 80% at 20% 30%, rgba(255, 94, 181, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 70% at 85% 40%, rgba(62, 181, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 50% at 50% 90%, rgba(167, 139, 250, 0.14), transparent 55%);
}
.section-fun::before {
  background:
    radial-gradient(ellipse 55% 70% at 80% 40%, rgba(62, 181, 255, 0.18), transparent 60%),
    radial-gradient(ellipse 45% 60% at 15% 70%, rgba(95, 211, 141, 0.15), transparent 60%);
}
.section-play::before {
  background:
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(62, 181, 255, 0.14), transparent 60%);
}
.section-faq-fun::before {
  background:
    radial-gradient(ellipse 50% 70% at 25% 50%, rgba(95, 211, 141, 0.16), transparent 60%);
}
.section-sky::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(62, 181, 255, 0.2), transparent 70%);
}

@keyframes section-glow {
  0% { opacity: 0.65; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}

/* Soft shimmer stripe across pastel areas */
.section-team-fun::after,
.section-candy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer-sweep 9s ease-in-out infinite;
  opacity: 0.5;
}
@keyframes shimmer-sweep {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .section-candy::before,
  .section-team-fun::before,
  .section-fun::before,
  .section-play::before,
  .section-faq-fun::before,
  .section-sky::before,
  .section-team-fun::after,
  .section-candy::after {
    animation: none !important;
  }
}

/* ===== Under-banner pastel playground (session → contact) ===== */
.under-banner {
  position: relative;
  overflow: hidden;
  /* Strong visible pastel base so animation reads clearly */
  background:
    linear-gradient(
      165deg,
      #ffe8f5 0%,
      #e5f6ff 28%,
      #fff6d6 55%,
      #e9fbeb 78%,
      #f0e8ff 100%
    );
  background-size: 200% 200%;
  animation: under-pastel-shift 12s ease-in-out infinite alternate;
}

@keyframes under-pastel-shift {
  0% {
    background-position: 0% 30%;
  }
  50% {
    background-position: 50% 60%;
  }
  100% {
    background-position: 100% 40%;
  }
}

.under-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Large soft colour spots that drift */
.blob-spot {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: spot-drift 16s ease-in-out infinite alternate;
}
.bs-1 {
  width: 18rem;
  height: 18rem;
  top: 4%;
  left: -4%;
  background: radial-gradient(circle, rgba(255, 120, 190, 0.65), transparent 70%);
  animation-duration: 14s;
}
.bs-2 {
  width: 16rem;
  height: 16rem;
  top: 8%;
  right: -3%;
  background: radial-gradient(circle, rgba(90, 190, 255, 0.6), transparent 70%);
  animation-duration: 17s;
  animation-delay: -3s;
}
.bs-3 {
  width: 20rem;
  height: 20rem;
  top: 28%;
  left: 20%;
  background: radial-gradient(circle, rgba(255, 220, 90, 0.5), transparent 70%);
  animation-duration: 15s;
  animation-delay: -5s;
}
.bs-4 {
  width: 17rem;
  height: 17rem;
  top: 45%;
  right: 8%;
  background: radial-gradient(circle, rgba(120, 230, 170, 0.55), transparent 70%);
  animation-duration: 18s;
  animation-delay: -2s;
}
.bs-5 {
  width: 15rem;
  height: 15rem;
  top: 62%;
  left: 5%;
  background: radial-gradient(circle, rgba(180, 150, 255, 0.5), transparent 70%);
  animation-duration: 13s;
  animation-delay: -7s;
}
.bs-6 {
  width: 22rem;
  height: 22rem;
  bottom: 2%;
  right: 15%;
  background: radial-gradient(circle, rgba(255, 160, 200, 0.45), transparent 70%);
  animation-duration: 16s;
  animation-delay: -4s;
}

@keyframes spot-drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.08); }
  100% { transform: translate(-10px, 14px) scale(0.96); }
}

/* Rising soft bubbles */
.soft-bubble {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
  animation: bubble-rise linear infinite;
  opacity: 0.7;
}
.sb-1 { left: 8%; bottom: -2rem; animation-duration: 11s; animation-delay: 0s; background: rgba(255, 150, 200, 0.35); }
.sb-2 { left: 22%; bottom: -2rem; width: 1rem; height: 1rem; animation-duration: 14s; animation-delay: -2s; background: rgba(120, 200, 255, 0.35); }
.sb-3 { left: 40%; bottom: -2rem; width: 1.8rem; height: 1.8rem; animation-duration: 12s; animation-delay: -4s; background: rgba(255, 230, 120, 0.35); }
.sb-4 { left: 55%; bottom: -2rem; width: 1.1rem; height: 1.1rem; animation-duration: 15s; animation-delay: -1s; background: rgba(140, 230, 180, 0.35); }
.sb-5 { left: 68%; bottom: -2rem; width: 1.5rem; height: 1.5rem; animation-duration: 13s; animation-delay: -6s; background: rgba(200, 170, 255, 0.35); }
.sb-6 { left: 80%; bottom: -2rem; width: 1.2rem; height: 1.2rem; animation-duration: 11s; animation-delay: -3s; background: rgba(255, 180, 140, 0.35); }
.sb-7 { left: 32%; bottom: -2rem; width: 0.9rem; height: 0.9rem; animation-duration: 16s; animation-delay: -8s; background: rgba(255, 120, 180, 0.3); }
.sb-8 { left: 90%; bottom: -2rem; width: 1.6rem; height: 1.6rem; animation-duration: 14s; animation-delay: -5s; background: rgba(100, 190, 255, 0.3); }

@keyframes bubble-rise {
  0% {
    transform: translateY(0) translateX(0) scale(0.8);
    opacity: 0;
  }
  8% { opacity: 0.75; }
  50% {
    transform: translateY(-45vh) translateX(12px) scale(1);
    opacity: 0.65;
  }
  100% {
    transform: translateY(-95vh) translateX(-8px) scale(1.1);
    opacity: 0;
  }
}

/* Keep content above the animated bg */
.under-banner > .section {
  position: relative;
  z-index: 1;
  background: transparent !important;
}
.under-banner > .section::before,
.under-banner > .section::after {
  /* let the under-banner animation show through */
  opacity: 0.35 !important;
}

@media (prefers-reduced-motion: reduce) {
  .under-banner {
    animation: none !important;
    background: linear-gradient(165deg, #ffe8f5, #e5f6ff, #fff6d6) !important;
  }
  .blob-spot,
  .soft-bubble {
    animation: none !important;
  }
}

/* Stay & play! — logo-style navy outline (like Tiny Tots wordmark) */
.hero h1.title-brand {
  -webkit-text-stroke: 0; /* reset; use paint-order shadow stack for thicker look */
}
.hero h1.title-brand span {
  /* Thick navy outline like the logo letters */
  -webkit-text-stroke: 2.5px #2c3e8c;
  paint-order: stroke fill;
  /* Fallback / extra chunky edge for browsers that need it */
  text-shadow:
    -2px -2px 0 #2c3e8c,
     2px -2px 0 #2c3e8c,
    -2px  2px 0 #2c3e8c,
     2px  2px 0 #2c3e8c,
    -2px  0   0 #2c3e8c,
     2px  0   0 #2c3e8c,
     0   -2px 0 #2c3e8c,
     0    2px 0 #2c3e8c,
     0    3px 0 rgba(44, 62, 140, 0.2);
}
/* Keep yellow readable with slightly stronger stroke */
.hero h1.title-brand .c4 {
  -webkit-text-stroke: 2.5px #2c3e8c;
  text-shadow:
    -2px -2px 0 #2c3e8c,
     2px -2px 0 #2c3e8c,
    -2px  2px 0 #2c3e8c,
     2px  2px 0 #2c3e8c,
    -2px  0   0 #2c3e8c,
     2px  0   0 #2c3e8c,
     0   -2px 0 #2c3e8c,
     0    2px 0 #2c3e8c,
     0    3px 0 rgba(44, 62, 140, 0.2);
}
@media (min-width: 700px) {
  .hero h1.title-brand span {
    -webkit-text-stroke-width: 3px;
  }
}

/* Facebook button */
.btn-facebook {
  color: #fff !important;
  background: linear-gradient(180deg, #4d8ef7 0%, #1877f2 100%) !important;
  border-color: #0d5dbf !important;
  box-shadow: 0 5px 0 #0d5dbf !important;
}
.btn-facebook:hover {
  box-shadow: 0 7px 0 #0d5dbf !important;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  color: var(--yellow) !important;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 210, 63, 0.5);
}
.footer-social:hover {
  border-bottom-color: var(--yellow);
}
.footer-social::before {
  content: "f";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  background: #1877f2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

/* Header: logo only — no Tiny Tots / Selby text */
.brand-text {
  display: none !important;
}
.brand {
  gap: 0 !important;
}

/* Pricing: drinks & snacks included */
.price-include {
  margin: 0 auto 1.25rem !important;
  font-weight: 800 !important;
  color: var(--navy) !important;
  max-width: 28rem;
}
.price-card .price-note {
  display: block !important;
  margin: 0.5rem 0 0 !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--ink-soft) !important;
  position: relative;
  z-index: 1;
}
.price-balloon {
  display: none !important;
}

/* ===== Stronger under-banner pastel animation ===== */
.under-banner {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 130, 200, 0.55), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(100, 200, 255, 0.5), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255, 230, 100, 0.45), transparent 35%),
    radial-gradient(circle at 20% 75%, rgba(130, 235, 180, 0.45), transparent 32%),
    radial-gradient(circle at 50% 40%, rgba(190, 160, 255, 0.35), transparent 40%),
    linear-gradient(125deg, #ffd6ec 0%, #ccefff 25%, #fff3b0 50%, #c8f5dc 75%, #e8dcff 100%) !important;
  background-size: 140% 140%, 140% 140%, 150% 150%, 140% 140%, 130% 130%, 300% 300% !important;
  animation: under-pastel-shift 8s ease-in-out infinite alternate, under-hue 20s linear infinite !important;
}

@keyframes under-pastel-shift {
  0% { background-position: 0% 20%, 100% 0%, 70% 50%, 10% 80%, 50% 40%, 0% 50%; }
  100% { background-position: 20% 40%, 80% 20%, 50% 70%, 30% 60%, 45% 55%, 100% 50%; }
}
@keyframes under-hue {
  0% { filter: hue-rotate(0deg) saturate(1.05); }
  50% { filter: hue-rotate(12deg) saturate(1.15); }
  100% { filter: hue-rotate(0deg) saturate(1.05); }
}

/* Extra colour blobs */
.bs-7 {
  width: 14rem;
  height: 14rem;
  top: 18%;
  left: 45%;
  background: radial-gradient(circle, rgba(255, 160, 120, 0.5), transparent 70%);
  animation: spot-drift-spin 12s ease-in-out infinite alternate;
  animation-delay: -1s;
}
.bs-8 {
  width: 19rem;
  height: 19rem;
  top: 72%;
  left: 40%;
  background: radial-gradient(circle, rgba(120, 200, 255, 0.45), transparent 70%);
  animation: spot-drift-spin 15s ease-in-out infinite alternate;
  animation-delay: -6s;
}

@keyframes spot-drift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(22px, -28px) scale(1.12); }
  66% { transform: translate(-18px, 16px) scale(0.92); }
  100% { transform: translate(14px, 22px) scale(1.08); }
}
@keyframes spot-drift-spin {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { transform: translate(-24px, 20px) scale(1.1) rotate(12deg); }
}

/* More / faster bubbles */
.soft-bubble {
  animation: bubble-rise 9s linear infinite !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}
.sb-1 { animation-duration: 8s !important; }
.sb-2 { animation-duration: 10s !important; animation-delay: -1s !important; }
.sb-3 { animation-duration: 7.5s !important; animation-delay: -2.5s !important; }
.sb-4 { animation-duration: 11s !important; animation-delay: -0.5s !important; }
.sb-5 { animation-duration: 9s !important; animation-delay: -4s !important; }
.sb-6 { animation-duration: 8.5s !important; animation-delay: -2s !important; }
.sb-7 { animation-duration: 12s !important; animation-delay: -5s !important; }
.sb-8 { animation-duration: 9.5s !important; animation-delay: -3s !important; }
.sb-9 { left: 15%; bottom: -2rem; width: 1.3rem; height: 1.3rem; animation-duration: 8s !important; animation-delay: -6s !important; background: rgba(255, 200, 80, 0.4); }
.sb-10 { left: 48%; bottom: -2rem; width: 1rem; height: 1rem; animation-duration: 10s !important; animation-delay: -1.5s !important; background: rgba(255, 120, 180, 0.4); }
.sb-11 { left: 75%; bottom: -2rem; width: 1.7rem; height: 1.7rem; animation-duration: 7s !important; animation-delay: -3.5s !important; background: rgba(140, 220, 255, 0.4); }
.sb-12 { left: 60%; bottom: -2rem; width: 0.85rem; height: 0.85rem; animation-duration: 11s !important; animation-delay: -7s !important; background: rgba(180, 255, 200, 0.4); }

@keyframes bubble-rise {
  0% {
    transform: translateY(0) translateX(0) scale(0.7);
    opacity: 0;
  }
  5% { opacity: 0.85; }
  40% {
    transform: translateY(-35vh) translateX(18px) scale(1.05);
    opacity: 0.75;
  }
  70% {
    transform: translateY(-65vh) translateX(-14px) scale(1);
    opacity: 0.55;
  }
  100% {
    transform: translateY(-105vh) translateX(10px) scale(1.15);
    opacity: 0;
  }
}

/* Twinkling sparkles */
.bg-sparkle {
  position: absolute;
  width: 0.85rem;
  height: 0.85rem;
  background: #fff;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: sparkle-pop 2.2s ease-in-out infinite;
  opacity: 0.85;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}
.sp-1 { top: 6%; left: 12%; background: #ff5eb5; animation-delay: 0s; }
.sp-2 { top: 12%; right: 18%; background: #ffd23f; animation-delay: 0.3s; }
.sp-3 { top: 30%; left: 8%; background: #3eb5ff; animation-delay: 0.6s; }
.sp-4 { top: 38%; right: 10%; background: #5fd38d; animation-delay: 0.9s; }
.sp-5 { top: 55%; left: 20%; background: #9b7bff; animation-delay: 0.15s; }
.sp-6 { top: 62%; right: 22%; background: #ff9f43; animation-delay: 0.75s; }
.sp-7 { top: 78%; left: 35%; background: #ff5eb5; animation-delay: 1.1s; }
.sp-8 { top: 85%; right: 30%; background: #3eb5ff; animation-delay: 0.45s; }

@keyframes sparkle-pop {
  0%, 100% { transform: scale(0.5) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.25) rotate(20deg); opacity: 1; }
}

/* Confetti dots drifting */
.bg-dot {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  animation: dot-float 7s ease-in-out infinite;
  opacity: 0.7;
}
.d-1 { top: 10%; left: 30%; background: #ff5eb5; animation-delay: 0s; }
.d-2 { top: 18%; left: 60%; background: #3eb5ff; animation-delay: 0.4s; width: 0.4rem; height: 0.4rem; }
.d-3 { top: 35%; left: 75%; background: #ffd23f; animation-delay: 0.8s; }
.d-4 { top: 48%; left: 15%; background: #5fd38d; animation-delay: 0.2s; width: 0.7rem; height: 0.7rem; }
.d-5 { top: 58%; left: 50%; background: #9b7bff; animation-delay: 1s; }
.d-6 { top: 70%; left: 85%; background: #ff9f43; animation-delay: 0.5s; }
.d-7 { top: 25%; left: 42%; background: #ff5eb5; animation-delay: 1.2s; width: 0.35rem; height: 0.35rem; }
.d-8 { top: 80%; left: 8%; background: #3eb5ff; animation-delay: 0.7s; }
.d-9 { top: 90%; left: 55%; background: #ffd23f; animation-delay: 0.1s; }
.d-10 { top: 42%; left: 88%; background: #5fd38d; animation-delay: 0.9s; }

@keyframes dot-float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -14px); }
  50% { transform: translate(-8px, -6px); }
  75% { transform: translate(12px, 8px); }
}

/* Soft animated waves */
.bg-wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 8rem;
  opacity: 0.22;
  border-radius: 50%;
  animation: wave-slide 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.w-1 {
  top: 20%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7), transparent 70%);
  animation-duration: 11s;
}
.w-2 {
  top: 65%;
  background: radial-gradient(ellipse at center, rgba(255, 200, 230, 0.6), transparent 70%);
  animation-duration: 13s;
  animation-delay: -4s;
}
@keyframes wave-slide {
  0% { transform: translateX(-3%) scaleY(1); }
  100% { transform: translateX(3%) scaleY(1.15); }
}

/* Keep content clear */
.under-banner > .section {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .under-banner {
    animation: none !important;
    filter: none !important;
  }
  .blob-spot,
  .soft-bubble,
  .bg-sparkle,
  .bg-dot,
  .bg-wave {
    animation: none !important;
  }
}

/* Stay & play! — thicker logo-style navy outline */
.hero h1.title-brand span {
  -webkit-text-stroke: 4px #2c3e8c !important;
  paint-order: stroke fill !important;
  text-shadow:
    -3px -3px 0 #2c3e8c,
     3px -3px 0 #2c3e8c,
    -3px  3px 0 #2c3e8c,
     3px  3px 0 #2c3e8c,
    -3px  0   0 #2c3e8c,
     3px  0   0 #2c3e8c,
     0   -3px 0 #2c3e8c,
     0    3px 0 #2c3e8c,
    -2px -3px 0 #2c3e8c,
     2px -3px 0 #2c3e8c,
    -2px  3px 0 #2c3e8c,
     2px  3px 0 #2c3e8c,
     0    4px 0 rgba(44, 62, 140, 0.25) !important;
}
@media (min-width: 700px) {
  .hero h1.title-brand span {
    -webkit-text-stroke-width: 5px !important;
    text-shadow:
      -4px -4px 0 #2c3e8c,
       4px -4px 0 #2c3e8c,
      -4px  4px 0 #2c3e8c,
       4px  4px 0 #2c3e8c,
      -4px  0   0 #2c3e8c,
       4px  0   0 #2c3e8c,
       0   -4px 0 #2c3e8c,
       0    4px 0 #2c3e8c,
      -3px -4px 0 #2c3e8c,
       3px -4px 0 #2c3e8c,
      -3px  4px 0 #2c3e8c,
       3px  4px 0 #2c3e8c,
       0    5px 0 rgba(44, 62, 140, 0.28) !important;
  }
}

/* ===== Floating circles: full height of pastel area ===== */
.under-banner {
  /* ensure bg layer can span full tall section */
  min-height: 100%;
}
.under-banner-bg {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  z-index: 0 !important;
}

/* Circles start below the section and rise all the way to the top */
.soft-bubble {
  position: absolute !important;
  bottom: auto !important;
  top: 105% !important; /* start just under the pastel block */
  left: var(--bx, 10%);
  width: var(--bs, 1.4rem) !important;
  height: var(--bs, 1.4rem) !important;
  border-radius: 50% !important;
  border: 3px solid rgba(255, 255, 255, 0.85) !important;
  background: var(--bc, rgba(255, 255, 255, 0.35)) !important;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.55),
    inset 0 0 8px rgba(255, 255, 255, 0.4) !important;
  opacity: 0;
  /* top % is relative to the full under-banner height — travels whole pastel page */
  animation: bubble-full-rise var(--bd, 14s) linear infinite !important;
  animation-delay: var(--bdelay, 0s) !important;
  will-change: top, transform, opacity;
}

/* Full-section rise: top 105% → -8% of the pastel block */
@keyframes bubble-full-rise {
  0% {
    top: 105%;
    transform: translateX(0) scale(0.75);
    opacity: 0;
  }
  4% {
    opacity: 0.85;
  }
  25% {
    transform: translateX(14px) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-12px) scale(1.05);
    opacity: 0.75;
  }
  75% {
    transform: translateX(10px) scale(0.95);
    opacity: 0.65;
  }
  92% {
    opacity: 0.45;
  }
  100% {
    top: -8%;
    transform: translateX(-6px) scale(1.1);
    opacity: 0;
  }
}

/* Positions, sizes, colours, timings — staggered so the whole column is always full of bubbles */
.sb-1  { --bx: 6%;  --bs: 1.5rem; --bd: 16s; --bdelay: 0s;    --bc: rgba(255, 140, 200, 0.45); }
.sb-2  { --bx: 14%; --bs: 1.1rem; --bd: 18s; --bdelay: -2s;   --bc: rgba(120, 200, 255, 0.45); }
.sb-3  { --bx: 22%; --bs: 1.8rem; --bd: 14s; --bdelay: -4s;   --bc: rgba(255, 230, 120, 0.45); }
.sb-4  { --bx: 30%; --bs: 1rem;   --bd: 20s; --bdelay: -1s;   --bc: rgba(140, 230, 180, 0.45); }
.sb-5  { --bx: 38%; --bs: 1.6rem; --bd: 15s; --bdelay: -6s;   --bc: rgba(190, 160, 255, 0.45); }
.sb-6  { --bx: 46%; --bs: 1.2rem; --bd: 17s; --bdelay: -3s;   --bc: rgba(255, 180, 140, 0.45); }
.sb-7  { --bx: 54%; --bs: 0.95rem;--bd: 19s; --bdelay: -8s;   --bc: rgba(255, 120, 180, 0.4); }
.sb-8  { --bx: 62%; --bs: 1.7rem; --bd: 13s; --bdelay: -5s;   --bc: rgba(100, 190, 255, 0.45); }
.sb-9  { --bx: 70%; --bs: 1.3rem; --bd: 16s; --bdelay: -7s;   --bc: rgba(255, 200, 80, 0.45); }
.sb-10 { --bx: 78%; --bs: 1rem;   --bd: 18s; --bdelay: -2.5s; --bc: rgba(255, 130, 190, 0.4); }
.sb-11 { --bx: 86%; --bs: 1.85rem;--bd: 12s; --bdelay: -4.5s; --bc: rgba(140, 220, 255, 0.45); }
.sb-12 { --bx: 93%; --bs: 0.9rem; --bd: 21s; --bdelay: -9s;   --bc: rgba(180, 255, 200, 0.4); }

/* Extra bubbles injected via pseudo on the bg layer */
.under-banner-bg::before,
.under-banner-bg::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
  top: 105%;
  opacity: 0;
  animation: bubble-full-rise 15s linear infinite;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.under-banner-bg::before {
  left: 10%;
  background: rgba(255, 200, 230, 0.4);
  animation-duration: 14s;
  animation-delay: -10s;
  width: 1.6rem;
  height: 1.6rem;
}
.under-banner-bg::after {
  left: 55%;
  background: rgba(200, 230, 255, 0.4);
  animation-duration: 17s;
  animation-delay: -12s;
  width: 1.15rem;
  height: 1.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .soft-bubble,
  .under-banner-bg::before,
  .under-banner-bg::after {
    animation: none !important;
    opacity: 0 !important;
  }
}
.sb-13 { --bx: 4%;  --bs: 1.2rem; --bd: 15s; --bdelay: -11s; --bc: rgba(255, 160, 100, 0.4); }
.sb-14 { --bx: 18%; --bs: 1.4rem; --bd: 17s; --bdelay: -13s; --bc: rgba(160, 220, 255, 0.4); }
.sb-15 { --bx: 34%; --bs: 0.85rem;--bd: 13s; --bdelay: -8s;  --bc: rgba(255, 220, 100, 0.4); }
.sb-16 { --bx: 50%; --bs: 1.55rem;--bd: 19s; --bdelay: -14s; --bc: rgba(180, 150, 255, 0.4); }
.sb-17 { --bx: 66%; --bs: 1.05rem;--bd: 14s; --bdelay: -9s;  --bc: rgba(120, 230, 170, 0.4); }
.sb-18 { --bx: 82%; --bs: 1.35rem;--bd: 16s; --bdelay: -15s; --bc: rgba(255, 140, 180, 0.4); }
.sb-19 { --bx: 26%; --bs: 1.7rem; --bd: 18s; --bdelay: -16s; --bc: rgba(100, 200, 255, 0.4); }
.sb-20 { --bx: 74%; --bs: 1.15rem;--bd: 12s; --bdelay: -7s;  --bc: rgba(255, 200, 150, 0.4); }

/* ===== Even more bubbles + background motion ===== */
.under-banner {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 120, 190, 0.6), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(90, 190, 255, 0.55), transparent 28%),
    radial-gradient(circle at 75% 45%, rgba(255, 225, 80, 0.5), transparent 32%),
    radial-gradient(circle at 18% 55%, rgba(120, 230, 170, 0.5), transparent 30%),
    radial-gradient(circle at 48% 72%, rgba(180, 150, 255, 0.45), transparent 34%),
    radial-gradient(circle at 85% 85%, rgba(255, 160, 140, 0.45), transparent 30%),
    linear-gradient(120deg, #ffd0ea 0%, #bfe8ff 20%, #fff0a8 40%, #c4f5d8 60%, #e4d6ff 80%, #ffe0f0 100%) !important;
  background-size: 160% 160%, 160% 160%, 170% 170%, 160% 160%, 150% 150%, 160% 160%, 400% 400% !important;
  animation:
    under-pastel-shift 7s ease-in-out infinite alternate,
    under-hue 14s linear infinite !important;
}

/* Extra circles 21–36 */
.sb-21 { --bx: 2%;  --bs: 1.4rem; --bd: 13s; --bdelay: -1s;   --bc: rgba(255, 150, 200, 0.5); }
.sb-22 { --bx: 11%; --bs: 0.9rem; --bd: 15s; --bdelay: -3s;   --bc: rgba(130, 210, 255, 0.5); }
.sb-23 { --bx: 19%; --bs: 1.65rem;--bd: 11s; --bdelay: -5s;   --bc: rgba(255, 220, 100, 0.5); }
.sb-24 { --bx: 28%; --bs: 1.15rem;--bd: 16s; --bdelay: -2s;   --bc: rgba(150, 240, 190, 0.5); }
.sb-25 { --bx: 36%; --bs: 1.9rem; --bd: 12s; --bdelay: -7s;   --bc: rgba(200, 170, 255, 0.5); }
.sb-26 { --bx: 44%; --bs: 1rem;   --bd: 14s; --bdelay: -4s;   --bc: rgba(255, 170, 130, 0.5); }
.sb-27 { --bx: 52%; --bs: 1.35rem;--bd: 17s; --bdelay: -9s;   --bc: rgba(255, 130, 190, 0.48); }
.sb-28 { --bx: 58%; --bs: 0.8rem; --bd: 10s; --bdelay: -6s;   --bc: rgba(110, 200, 255, 0.5); }
.sb-29 { --bx: 64%; --bs: 1.55rem;--bd: 15s; --bdelay: -11s;  --bc: rgba(255, 210, 90, 0.5); }
.sb-30 { --bx: 72%; --bs: 1.2rem; --bd: 13s; --bdelay: -3.5s; --bc: rgba(160, 230, 200, 0.5); }
.sb-31 { --bx: 80%; --bs: 1.75rem;--bd: 18s; --bdelay: -8s;   --bc: rgba(190, 150, 255, 0.48); }
.sb-32 { --bx: 88%; --bs: 1.05rem;--bd: 12s; --bdelay: -5.5s; --bc: rgba(255, 150, 160, 0.5); }
.sb-33 { --bx: 96%; --bs: 1.45rem;--bd: 16s; --bdelay: -10s;  --bc: rgba(120, 190, 255, 0.5); }
.sb-34 { --bx: 8%;  --bs: 1.25rem;--bd: 11s; --bdelay: -12s;  --bc: rgba(255, 200, 220, 0.48); }
.sb-35 { --bx: 41%; --bs: 1.6rem; --bd: 19s; --bdelay: -14s;  --bc: rgba(180, 240, 255, 0.48); }
.sb-36 { --bx: 69%; --bs: 0.95rem;--bd: 14s; --bdelay: -16s;  --bc: rgba(220, 255, 190, 0.48); }

/* Slightly faster default rise so more action */
.soft-bubble {
  animation-duration: var(--bd, 12s) !important;
}

/* More sparkles */
.sp-9  { top: 15%; left: 48%; background: #ff5eb5; animation-delay: 0.2s; width: 0.7rem; height: 0.7rem; }
.sp-10 { top: 28%; right: 28%; background: #ffd23f; animation-delay: 0.55s; }
.sp-11 { top: 48%; left: 5%; background: #3eb5ff; animation-delay: 0.85s; width: 1rem; height: 1rem; }
.sp-12 { top: 52%; right: 6%; background: #5fd38d; animation-delay: 1.05s; }
.sp-13 { top: 68%; left: 42%; background: #9b7bff; animation-delay: 0.35s; }
.sp-14 { top: 72%; right: 40%; background: #ff9f43; animation-delay: 0.95s; width: 0.75rem; height: 0.75rem; }
.sp-15 { top: 88%; left: 18%; background: #ff5eb5; animation-delay: 0.65s; }
.sp-16 { top: 92%; right: 15%; background: #3eb5ff; animation-delay: 1.15s; }

/* More confetti dots */
.d-11 { top: 8%; left: 78%; background: #ff5eb5; animation-delay: 0.25s; width: 0.45rem; height: 0.45rem; }
.d-12 { top: 22%; left: 25%; background: #ffd23f; animation-delay: 0.6s; }
.d-13 { top: 40%; left: 62%; background: #3eb5ff; animation-delay: 0.95s; width: 0.65rem; height: 0.65rem; }
.d-14 { top: 56%; left: 35%; background: #5fd38d; animation-delay: 0.15s; }
.d-15 { top: 74%; left: 70%; background: #9b7bff; animation-delay: 0.8s; }
.d-16 { top: 86%; left: 28%; background: #ff9f43; animation-delay: 1.1s; width: 0.5rem; height: 0.5rem; }

/* Soft pastel ribbons drifting sideways */
.bg-ribbon {
  position: absolute;
  height: 3.5rem;
  width: 40%;
  border-radius: 999px;
  opacity: 0.22;
  filter: blur(8px);
  animation: ribbon-drift 11s ease-in-out infinite alternate;
  pointer-events: none;
}
.r-1 {
  top: 12%;
  left: -5%;
  background: linear-gradient(90deg, transparent, rgba(255, 120, 190, 0.7), transparent);
  animation-duration: 10s;
}
.r-2 {
  top: 38%;
  right: -8%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(100, 190, 255, 0.65), transparent);
  animation-duration: 13s;
  animation-delay: -3s;
}
.r-3 {
  top: 58%;
  left: -10%;
  width: 45%;
  background: linear-gradient(90deg, transparent, rgba(255, 220, 100, 0.6), transparent);
  animation-duration: 12s;
  animation-delay: -5s;
}
.r-4 {
  top: 82%;
  right: -5%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(140, 230, 180, 0.6), transparent);
  animation-duration: 14s;
  animation-delay: -2s;
}
@keyframes ribbon-drift {
  0% { transform: translateX(0) scaleY(1); }
  100% { transform: translateX(8%) scaleY(1.25); }
}

/* Extra waves */
.w-3 {
  top: 40%;
  background: radial-gradient(ellipse at center, rgba(200, 180, 255, 0.55), transparent 70%);
  animation-duration: 12s;
  animation-delay: -2s;
  height: 10rem;
  opacity: 0.2;
}
.w-4 {
  top: 88%;
  background: radial-gradient(ellipse at center, rgba(255, 180, 210, 0.5), transparent 70%);
  animation-duration: 15s;
  animation-delay: -6s;
  height: 9rem;
  opacity: 0.2;
}

/* Extra floating orbs via bg layer */
.under-banner-bg {
  background:
    radial-gradient(circle 5rem at 20% 30%, rgba(255, 255, 255, 0.25), transparent 70%),
    radial-gradient(circle 6rem at 80% 50%, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: bg-layer-pulse 8s ease-in-out infinite alternate;
}
@keyframes bg-layer-pulse {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.03); }
}

/* Keep bubble children above the pulse layer paint */
.under-banner-bg .soft-bubble,
.under-banner-bg .bg-sparkle,
.under-banner-bg .bg-dot,
.under-banner-bg .bg-ribbon,
.under-banner-bg .bg-wave,
.under-banner-bg .blob-spot {
  /* bubbles already absolute */
}

@media (prefers-reduced-motion: reduce) {
  .bg-ribbon,
  .under-banner-bg {
    animation: none !important;
  }
}

/* Remove the lone white circle on the left */
.under-banner-bg::before {
  display: none !important;
  content: none !important;
  animation: none !important;
}

/* ===== Something special / luxury package — same Tiny Tots system ===== */
.special-card {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 63, 0.35), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(255, 94, 181, 0.2), transparent 40%),
    var(--white);
  border: 4px solid var(--navy);
  box-shadow: 0 10px 0 rgba(44, 62, 140, 0.1), 0 16px 36px rgba(255, 94, 181, 0.12);
  text-align: center;
  overflow: hidden;
}
.special-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: linear-gradient(135deg, #ffe566, #ffd23f, #ff9f43);
  border: 3px solid var(--navy);
  box-shadow: 0 3px 0 rgba(44, 62, 140, 0.12);
}
.special-emoji {
  font-size: 1.75rem;
  letter-spacing: 0.35rem;
  margin-bottom: 0.5rem;
  animation: icon-pop 2.4s ease-in-out infinite;
}
.special-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
}
.special-lead {
  margin: 0 auto 1.15rem;
  max-width: 30rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.5;
}
.special-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
  max-width: 28rem;
  margin-inline: auto;
}
.special-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe8f5, #e5f6ff);
  border: 2px solid var(--edge);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.special-list li span:first-child {
  flex-shrink: 0;
  font-size: 1.1rem;
}
.special-price {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pink-hot);
}
.special-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.special-note {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}
.special-note strong {
  color: var(--navy);
}

@media (prefers-reduced-motion: reduce) {
  .special-emoji {
    animation: none !important;
  }
}

/* Hide special package styles if residual */
.special-card,
#special {
  display: none !important;
}

/* Hero animated loop — matches still art, level & full frame */
.hero-frame {
  position: relative !important;
  line-height: 0 !important;
  overflow: hidden !important;
}
.hero-clip {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff8ee !important;
  transform: none !important;
  vertical-align: middle;
}
.hero-frame img {
  display: none !important; /* video replaces still */
}
@media (prefers-reduced-motion: reduce) {
  .hero-clip {
    /* poster shows when paused */
  }
}

/* ===== Density pass: prices → footer (agent audit) ===== */
#prices.section,
#team.section,
#where.section,
#faq.section,
#contact.section {
  padding: 1.25rem 0 !important;
}
.section-team-fun {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
#prices h2.center,
#team h2.center,
#faq h2.center,
#contact h2.center {
  margin-bottom: 0.45rem !important;
}
#prices .lead-short,
#team .lead-short,
#prices .price-include {
  margin-bottom: 0.65rem !important;
  max-width: 32rem !important;
}
.price-include {
  margin: 0 auto 0.65rem !important;
}
.price-grid {
  max-width: min(48rem, 100%) !important;
  margin: 0.35rem auto 0 !important;
  gap: 0.85rem !important;
}
.price-card {
  padding: 1.1rem 0.9rem 1rem !important;
}
.price-amount {
  font-size: clamp(2.5rem, 9vw, 3.5rem) !important;
}
.price-card .price-note {
  display: block !important;
  margin: 0.4rem 0 0 !important;
  font-size: 0.85rem !important;
}

/* Team: shorter crop, wider, less island */
.team-photo {
  max-width: min(36rem, 100%) !important;
  margin: 0 auto !important;
}
.team-photo img {
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: center 18% !important;
}
.team-caption {
  padding: 0.65rem 1rem !important;
}

/* Map + FAQ + contact tighter */
.map-simple {
  max-width: min(36rem, 100%) !important;
}
.map-simple .map-body {
  padding: 1.15rem 1.25rem !important;
}
.map-pin {
  margin-bottom: 0.15rem !important;
  font-size: 1.65rem !important;
}
.map-card p {
  margin: 0 0 0.65rem !important;
}

#faq .wrap.narrow,
#contact .wrap.narrow {
  max-width: min(42rem, 100%) !important;
}
.faq-list {
  gap: 0.45rem !important;
  max-width: none !important;
}
.faq-list summary {
  padding: 0.65rem 0 !important;
}

.contact-panel {
  max-width: none !important;
  padding: 1.25rem 1.2rem 1.3rem !important;
}
.contact-bubbles {
  margin-bottom: 0.2rem !important;
  gap: 0.45rem !important;
}
.contact-bubbles span {
  width: 2.35rem !important;
  height: 2.35rem !important;
  font-size: 1.2rem !important;
}
.phone-big {
  margin: 0.3rem 0 0.75rem !important;
}
.contact-actions {
  margin-bottom: 0 !important;
}

.site-footer {
  margin-top: 0 !important;
  padding: 1.75rem 0 6.25rem !important;
}
@media (min-width: 800px) {
  .site-footer {
    padding: 2rem 0 2.25rem !important;
  }
}
.footer-simple {
  gap: 0.2rem !important;
}
.footer-logo {
  width: 3.25rem !important;
  margin-bottom: 0.35rem !important;
}

/* Desktop: pack find us + FAQ side by side when space allows */
@media (min-width: 800px) {
  .lower-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
  }
  .lower-pair .map-simple,
  .lower-pair .faq-col {
    max-width: none !important;
    margin: 0 !important;
  }
  .lower-pair #where,
  .lower-pair #faq {
    padding: 0 !important;
  }
  .lower-pair #where .wrap,
  .lower-pair #faq .wrap {
    width: 100%;
    max-width: none;
  }
}

/* ===== Smoothness pass: GPU motion, softer easing, less jank ===== */

/* 1) Prefer smooth compositor animations globally for interactive bits */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: no-preference) {
  body {
    /* calmer than constant hue filters on body layers */
  }
}

/* Kill expensive whole-page filter animations (repaint thrash) */
body::before,
body::after {
  animation: none !important;
  filter: none !important;
}
.under-banner {
  /* soft pastel only — no hue-rotate (very expensive) */
  animation: under-pastel-soft 18s ease-in-out infinite alternate !important;
  filter: none !important;
  will-change: background-position;
}
@keyframes under-pastel-soft {
  0% { background-position: 0% 30%, 100% 10%, 70% 50%, 10% 80%, 50% 40%, 85% 85%, 0% 50%; }
  100% { background-position: 12% 40%, 88% 18%, 55% 65%, 22% 70%, 48% 52%, 80% 78%, 100% 50%; }
}

/* Soften section glow — opacity only, no scale (scale of huge ::before is costly) */
.section-candy::before,
.section-team-fun::before,
.section-fun::before,
.section-play::before,
.section-faq-fun::before,
.section-sky::before {
  animation: section-glow-soft 14s ease-in-out infinite alternate !important;
  transform: none !important;
}
@keyframes section-glow-soft {
  0% { opacity: 0.55; }
  100% { opacity: 0.9; }
}
.section-team-fun::after,
.section-candy::after {
  animation: shimmer-soft 14s ease-in-out infinite !important;
  opacity: 0.28 !important;
}
@keyframes shimmer-soft {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

/* 2) Bubbles: transform-only (was animating top % = layout every frame) */
.soft-bubble {
  top: auto !important;
  bottom: -3rem !important;
  left: var(--bx, 10%) !important;
  /* long gentle rise across full section — use large translateY */
  animation: bubble-smooth-rise var(--bd, 18s) cubic-bezier(0.33, 0, 0.2, 1) infinite !important;
  animation-delay: var(--bdelay, 0s) !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
@keyframes bubble-smooth-rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.75);
    opacity: 0;
  }
  6% {
    opacity: 0.75;
  }
  50% {
    transform: translate3d(12px, -50vh, 0) scale(1);
    opacity: 0.65;
  }
  100% {
    transform: translate3d(-8px, -110vh, 0) scale(1.05);
    opacity: 0;
  }
}

/* Longer, calmer bubble timings */
.sb-1, .sb-7, .sb-13, .sb-19, .sb-25, .sb-31 { --bd: 20s; }
.sb-2, .sb-8, .sb-14, .sb-20, .sb-26, .sb-32 { --bd: 22s; }
.sb-3, .sb-9, .sb-15, .sb-21, .sb-27, .sb-33 { --bd: 18s; }
.sb-4, .sb-10, .sb-16, .sb-22, .sb-28, .sb-34 { --bd: 24s; }
.sb-5, .sb-11, .sb-17, .sb-23, .sb-29, .sb-35 { --bd: 19s; }
.sb-6, .sb-12, .sb-18, .sb-24, .sb-30, .sb-36 { --bd: 21s; }

.under-banner-bg::before,
.under-banner-bg::after {
  animation: bubble-smooth-rise 20s cubic-bezier(0.33, 0, 0.2, 1) infinite !important;
  top: auto !important;
  bottom: -3rem !important;
}

/* 3) Blobs / sparkles / dots — smoother, less aggressive */
.blob-spot {
  animation: spot-smooth 22s ease-in-out infinite alternate !important;
  will-change: transform;
  backface-visibility: hidden;
}
@keyframes spot-smooth {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(16px, -14px, 0) scale(1.06); }
}
.bg-sparkle {
  animation: sparkle-soft 3.2s ease-in-out infinite !important;
}
@keyframes sparkle-soft {
  0%, 100% { transform: scale(0.65); opacity: 0.35; }
  50% { transform: scale(1.05); opacity: 0.9; }
}
.bg-dot {
  animation: dot-smooth 10s ease-in-out infinite !important;
}
@keyframes dot-smooth {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -10px, 0); }
}
.bg-ribbon {
  animation: ribbon-smooth 16s ease-in-out infinite alternate !important;
}
@keyframes ribbon-smooth {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(4%, 0, 0); }
}
.bg-wave {
  animation: wave-smooth 18s ease-in-out infinite alternate !important;
}
@keyframes wave-smooth {
  0% { transform: translate3d(-2%, 0, 0); }
  100% { transform: translate3d(2%, 0, 0); }
}
.under-banner-bg {
  animation: bg-layer-soft 12s ease-in-out infinite alternate !important;
}
@keyframes bg-layer-soft {
  0% { opacity: 0.88; }
  100% { opacity: 1; }
}

/* 4) UI motion: smooth hovers, no harsh jumps */
.btn {
  transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.25s ease !important;
}
.btn:hover {
  transform: translateY(-2px) !important;
}
.btn:active {
  transform: translateY(1px) !important;
  transition-duration: 0.1s !important;
}
.price-card,
.team-photo,
.map-card,
.contact-panel,
.faq-list details {
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.3s ease !important;
}
.faq-list details[open] {
  transform: none !important;
}

/* Calm logo bounce */
.brand img,
.footer-logo {
  animation: logo-smooth 4s ease-in-out infinite !important;
}
@keyframes logo-smooth {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -2px, 0); }
}
.hero-logo-badge {
  animation: none !important;
}

/* Title letters: soft, not jumpy */
.hero h1.title-brand span {
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1) !important;
}
.hero h1.title-brand:hover span {
  transform: translateY(-1px) !important;
}

/* Video: smoother paint */
.hero-clip,
.nursery-clip {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Marquee: smoother continuous scroll */
.marquee-track {
  animation-timing-function: linear !important;
  animation-duration: 32s !important;
  will-change: transform;
}

/* Section content fade-in soft (if .reveal used) */
.reveal {
  transition: opacity 0.7s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.7s cubic-bezier(0.33, 1, 0.68, 1) !important;
}

/* Sticky bar softer */
.sticky-bar {
  animation: none !important; /* candy bg animation can jank on mobile */
  background: rgba(255, 248, 238, 0.96) !important;
  backdrop-filter: blur(14px) saturate(1.1);
  transition: box-shadow 0.3s ease;
}

/* Isolate paint for heavy decorative layer */
.under-banner-bg {
  contain: paint;
  pointer-events: none;
}
.under-banner > .section {
  /* create stacking context without heavy filters */
  transform: translateZ(0);
}

@media (prefers-reduced-motion: reduce) {
  .under-banner,
  .soft-bubble,
  .blob-spot,
  .bg-sparkle,
  .bg-dot,
  .bg-ribbon,
  .bg-wave,
  .under-banner-bg,
  .brand img,
  .footer-logo,
  .marquee-track {
    animation: none !important;
  }
}

/* ===== Mobile: everything centred & aligned ===== */
@media (max-width: 799px) {
  .wrap {
    width: min(100% - 1.5rem, var(--max)) !important;
    margin-inline: auto !important;
    padding-inline: 0 !important;
  }

  /* Header: logo left, call/menu right — even vertical align */
  .header-inner {
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 3.75rem !important;
  }
  .brand {
    margin: 0 !important;
  }
  .brand img {
    margin: 0 !important;
  }
  .nav-mobile {
    text-align: center !important;
    align-items: stretch !important;
  }
  .nav-mobile a {
    text-align: center !important;
    justify-content: center !important;
  }

  /* Hero: full centre stack */
  .hero {
    text-align: center !important;
    padding-top: 1.25rem !important;
  }
  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.25rem !important;
    text-align: center !important;
  }
  .hero-copy {
    width: 100% !important;
    max-width: 26rem !important;
    margin-inline: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero .eyebrow {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero h1.title-brand {
    text-align: center !important;
    width: 100% !important;
  }
  .hero-lead {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 22rem !important;
  }
  .hero-time-pill {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }
  .hero-cta {
    width: 100% !important;
    max-width: 20rem !important;
    margin-inline: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.65rem !important;
  }
  .hero-cta .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .fun-icons {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-visual {
    width: 100% !important;
    max-width: 26rem !important;
    margin-inline: auto !important;
    padding: 0 !important;
  }
  .hero-frame,
  .hero-clip {
    width: 100% !important;
    margin-inline: auto !important;
  }
  .hero-balloons {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: max-content !important;
  }

  /* Session panel: stack and centre */
  .session-panel {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 1rem !important;
    padding: 1.15rem 1rem !important;
  }
  .session-panel > div {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
  }
  .session-panel h2,
  .session-panel .lead {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .session-list {
    align-items: stretch !important;
    width: 100% !important;
  }
  .session-list li {
    justify-content: center !important;
    text-align: center !important;
  }
  .session-side {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
    align-items: center !important;
    text-align: center !important;
  }
  .session-clip {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
  }

  /* Prices */
  #prices .wrap,
  #prices {
    text-align: center !important;
  }
  .price-include,
  .price-grid {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .price-grid {
    width: 100% !important;
    max-width: 22rem !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
  }
  .price-card {
    width: 100% !important;
    text-align: center !important;
  }

  /* Team */
  #team .wrap {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .team-photo {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
  }
  .team-caption {
    justify-content: center !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    gap: 0.35rem 1rem !important;
  }

  /* Lower pair: single column centred */
  .lower-pair {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
    width: min(100% - 1.5rem, var(--max)) !important;
    margin-inline: auto !important;
  }
  .lower-pair #where,
  .lower-pair #faq {
    width: 100% !important;
    padding: 0.75rem 0 !important;
  }
  .lower-pair .wrap,
  .lower-pair .wrap.narrow {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
  }
  .map-simple,
  .map-card {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
    text-align: center !important;
  }
  .map-simple .map-body {
    text-align: center !important;
    align-items: center !important;
  }
  .map-card .actions {
    justify-content: center !important;
  }
  .map-card .actions .btn {
    width: 100% !important;
    max-width: 16rem !important;
  }

  /* FAQ */
  #faq,
  #faq .wrap {
    text-align: center !important;
  }
  .faq-list {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
    text-align: left !important; /* summaries readable */
  }
  .faq-list summary {
    text-align: left !important;
  }

  /* Contact */
  #contact .wrap.narrow {
    width: 100% !important;
    max-width: 22rem !important;
    margin-inline: auto !important;
  }
  .contact-panel {
    width: 100% !important;
    text-align: center !important;
    margin-inline: auto !important;
  }
  .contact-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .contact-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .contact-bubbles {
    justify-content: center !important;
  }
  .phone-big {
    text-align: center !important;
  }

  /* Headings + leads */
  .heading-fun,
  .center,
  .lead.center,
  .lead-short {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Footer */
  .site-footer,
  .footer-simple {
    text-align: center !important;
    align-items: center !important;
  }

  /* Sticky bar: equal full-width buttons */
  .sticky-bar {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    padding-inline: 0.75rem !important;
  }
  .sticky-bar .btn {
    flex: 1 1 0 !important;
    max-width: none !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Section blocks consistent width */
  #prices .wrap,
  #team .wrap,
  #session .wrap,
  #contact .wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  #session .wrap {
    align-items: stretch !important;
  }
  #session .session-panel {
    width: 100% !important;
    max-width: 26rem !important;
    margin-inline: auto !important;
  }
}

/* Footer logo larger */
.footer-logo {
  width: 5.5rem !important;
  height: auto !important;
  max-width: 5.5rem !important;
  margin-bottom: 0.65rem !important;
}
@media (min-width: 800px) {
  .footer-logo {
    width: 6rem !important;
    max-width: 6rem !important;
  }
}

/* Footer logo even larger */
.footer-logo {
  width: 7.5rem !important;
  max-width: 7.5rem !important;
  height: auto !important;
  margin-bottom: 0.75rem !important;
}
@media (min-width: 800px) {
  .footer-logo {
    width: 8.5rem !important;
    max-width: 8.5rem !important;
  }
}

/* Footer logo glow — stands out on navy */
.footer-logo {
  filter:
    drop-shadow(0 0 10px rgba(255, 210, 63, 0.75))
    drop-shadow(0 0 22px rgba(255, 94, 181, 0.55))
    drop-shadow(0 0 32px rgba(62, 181, 255, 0.45))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35)) !important;
  animation: footer-logo-glow 3.2s ease-in-out infinite !important;
}
@keyframes footer-logo-glow {
  0%, 100% {
    filter:
      drop-shadow(0 0 8px rgba(255, 210, 63, 0.65))
      drop-shadow(0 0 18px rgba(255, 94, 181, 0.45))
      drop-shadow(0 0 28px rgba(62, 181, 255, 0.35))
      drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  }
  50% {
    filter:
      drop-shadow(0 0 16px rgba(255, 210, 63, 0.95))
      drop-shadow(0 0 30px rgba(255, 94, 181, 0.7))
      drop-shadow(0 0 42px rgba(62, 181, 255, 0.55))
      drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-logo {
    animation: none !important;
    filter:
      drop-shadow(0 0 12px rgba(255, 210, 63, 0.8))
      drop-shadow(0 0 24px rgba(255, 94, 181, 0.5))
      drop-shadow(0 0 32px rgba(62, 181, 255, 0.4)) !important;
  }
}

/* Footer logo: clean standout (no rainbow pulse) */
.footer-logo {
  animation: none !important;
  /* soft white disc behind so mark reads on navy */
  background: rgba(255, 255, 255, 0.96) !important;
  border-radius: 50% !important;
  padding: 0.55rem !important;
  box-sizing: content-box !important;
  border: 3px solid rgba(255, 255, 255, 0.9) !important;
  box-shadow:
    0 0 0 3px rgba(255, 210, 63, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.28) !important;
  filter: none !important;
  width: 5.5rem !important;
  max-width: 5.5rem !important;
  height: auto !important;
}
@media (min-width: 800px) {
  .footer-logo {
    width: 6.25rem !important;
    max-width: 6.25rem !important;
    padding: 0.65rem !important;
  }
}

/* Footer logo inside a colour-matched balloon */
.footer-simple {
  position: relative;
}
.footer-logo {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 4.75rem !important;
  max-width: 4.75rem !important;
  height: auto !important;
  margin: 0 auto 1.75rem !important;
  padding: 0.85rem !important;
  box-sizing: content-box !important;
  /* clear the old white disc */
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2)) !important;
  animation: none !important;
}

/* Balloon sits behind the logo */
.footer-simple::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.25rem;
  height: 8.1rem;
  z-index: 0;
  /* balloon body — soft logo palette */
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.75), transparent 28%),
    radial-gradient(circle at 50% 45%, #ffe566 0%, #ffd23f 35%, #ff9f43 70%, #ff6bb5 100%);
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  border: 3px solid #2c3e8c;
  box-shadow:
    inset 0 -10px 18px rgba(44, 62, 140, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

/* Balloon knot */
.footer-simple::after {
  content: "";
  position: absolute;
  top: 7.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 0;
  border-left: 0.55rem solid transparent;
  border-right: 0.55rem solid transparent;
  border-top: 0.7rem solid #2c3e8c;
  filter: drop-shadow(0 1px 0 #ffd23f);
  pointer-events: none;
}

/* String under knot — use a thin bar via box on logo margin space */
.footer-logo {
  /* string drawn with linear-gradient on a pseudo won't work on img;
     use extra bottom margin so knot + string area is clear */
  margin-bottom: 2.35rem !important;
}

/* Decorative string line under balloon */
.site-footer .footer-simple {
  padding-top: 0.25rem;
}
/* string */
.site-footer .footer-simple > p:first-of-type {
  position: relative;
}
.site-footer .footer-simple > p:first-of-type::before {
  content: "";
  position: absolute;
  top: -1.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 1.15rem;
  background: linear-gradient(180deg, #2c3e8c, rgba(44, 62, 140, 0.35));
  border-radius: 2px;
}

@media (min-width: 800px) {
  .footer-logo {
    width: 5.25rem !important;
    max-width: 5.25rem !important;
    padding: 0.95rem !important;
    margin-bottom: 2.5rem !important;
  }
  .footer-simple::before {
    width: 8rem;
    height: 9rem;
    top: -0.45rem;
  }
  .footer-simple::after {
    top: 7.95rem;
  }
  .site-footer .footer-simple > p:first-of-type::before {
    top: -1.65rem;
    height: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-simple::before {
    animation: none !important;
  }
}

/* Soft balloon bob — logo stays put, balloon gently floats */
@media (prefers-reduced-motion: no-preference) {
  .footer-simple::before {
    animation: balloon-bob 3.5s ease-in-out infinite;
  }
  .footer-simple::after {
    animation: balloon-knot-bob 3.5s ease-in-out infinite;
  }
}
@keyframes balloon-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}
@keyframes balloon-knot-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== Footer balloon (clean rebuild) ===== */
/* Kill old broken triangle / string hacks */
.footer-simple::before,
.footer-simple::after,
.site-footer .footer-simple > p:first-of-type::before {
  content: none !important;
  display: none !important;
  border: none !important;
  animation: none !important;
}

.footer-simple {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* Balloon stack behind logo */
.footer-balloon {
  position: absolute;
  top: -0.15rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7.5rem;
  height: 10.5rem;
  z-index: 0;
  pointer-events: none;
}

/* Round balloon body */
.balloon-body {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 7.25rem;
  height: 7.75rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.85) 0 12%, transparent 28%),
    radial-gradient(circle at 50% 48%, #fff3a0 0%, #ffd23f 40%, #ff9f43 72%, #ff7eb6 100%);
  border: 3px solid #2c3e8c;
  box-shadow:
    inset 0 -12px 20px rgba(44, 62, 140, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.2);
}

/* Small balloon tip (not a big inverted triangle) */
.balloon-tip {
  display: block;
  position: absolute;
  top: 7.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.85rem;
  height: 0.7rem;
  background: #ff9f43;
  border: 2.5px solid #2c3e8c;
  border-radius: 0.15rem 0.15rem 0.45rem 0.45rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

/* Clear curly-ish string */
.balloon-string {
  display: block;
  position: absolute;
  top: 8rem;
  left: 50%;
  width: 2.5px;
  height: 2.1rem;
  margin-left: -1px;
  background: repeating-linear-gradient(
    180deg,
    #ffe566 0 4px,
    #2c3e8c 4px 7px
  );
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  /* gentle wave via transform skew loop */
  transform-origin: top center;
  animation: string-sway 3s ease-in-out infinite;
}

@keyframes string-sway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

/* Logo on top of balloon */
.footer-logo {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 4.85rem !important;
  max-width: 4.85rem !important;
  height: auto !important;
  margin: 0.95rem auto 2.75rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)) !important;
  animation: none !important;
}

@media (min-width: 800px) {
  .footer-balloon {
    width: 8.25rem;
    height: 11.5rem;
  }
  .balloon-body {
    width: 8rem;
    height: 8.5rem;
  }
  .balloon-tip {
    top: 8.1rem;
    width: 0.95rem;
    height: 0.75rem;
  }
  .balloon-string {
    top: 8.8rem;
    height: 2.35rem;
  }
  .footer-logo {
    width: 5.5rem !important;
    max-width: 5.5rem !important;
    margin: 1.1rem auto 3rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .balloon-string {
    animation: none !important;
  }
}

/* ===== Natural floating balloon + hanging string ===== */
/* Kill old string bar styles */
.balloon-string {
  background: none !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  box-shadow: none !important;
  animation: none !important;
}

.footer-balloon {
  position: absolute !important;
  top: -0.2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 7.5rem !important;
  height: 12.5rem !important;
  z-index: 0 !important;
  pointer-events: none !important;
  /* whole balloon floats gently upward feel */
  animation: balloon-float 4s ease-in-out infinite !important;
  transform-origin: 50% 100% !important;
}

@keyframes balloon-float {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1.2deg); }
  50% { transform: translateX(-50%) translateY(-7px) rotate(1.2deg); }
}

/* Round inflated body */
.balloon-body {
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 7.25rem !important;
  height: 7.9rem !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.9) 0 10%, transparent 26%),
    radial-gradient(circle at 50% 48%, #fff3a0 0%, #ffd23f 38%, #ff9f43 70%, #ff7eb6 100%) !important;
  border: 3px solid #2c3e8c !important;
  box-shadow:
    inset 0 -14px 22px rgba(44, 62, 140, 0.12),
    0 10px 22px rgba(0, 0, 0, 0.2) !important;
}

/* Tied knot under balloon — small rounded pinch, not a big triangle */
.balloon-tip {
  display: block !important;
  position: absolute !important;
  top: 7.55rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 0.7rem !important;
  height: 0.55rem !important;
  background: linear-gradient(180deg, #ffd23f, #ff9f43) !important;
  border: 2px solid #2c3e8c !important;
  border-radius: 40% 40% 55% 55% !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15) !important;
  z-index: 2 !important;
}

/*
 * String: SVG path hangs from knot.
 * Physics: fixed at top (attachment), free end below = gravity.
 * Soft S-curve = ribbon flex in air.
 * Pendulum sway from TOP origin only.
 */
.footer-balloon > svg.balloon-string {
  display: block !important;
  position: absolute !important;
  top: 8rem !important;
  left: 50% !important;
  width: 2.5rem !important;
  height: 4.25rem !important;
  margin-left: 0 !important;
  transform: translateX(-50%) !important;
  transform-origin: 50% 0 !important; /* hangs from attachment point */
  overflow: visible !important;
  animation: string-pendulum 4s ease-in-out infinite !important;
  animation-delay: 0.15s !important; /* slight lag after balloon (natural) */
  z-index: 1 !important;
}

@keyframes string-pendulum {
  0%, 100% { transform: translateX(-50%) rotate(-6deg); }
  50% { transform: translateX(-50%) rotate(6deg); }
}

/* Path reads clearly on navy */
.footer-balloon .string-path {
  stroke: #e8eefc !important;
  stroke-width: 2.4 !important;
  fill: none !important;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.35));
}
.footer-balloon .string-highlight {
  stroke: #ffe566 !important;
  stroke-width: 1.1 !important;
  opacity: 0.7 !important;
  fill: none !important;
}

/* Logo sits in balloon face */
.footer-logo {
  position: relative !important;
  z-index: 2 !important;
  width: 4.75rem !important;
  max-width: 4.75rem !important;
  margin: 1.05rem auto 3.75rem !important; /* room for hanging string */
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.12)) !important;
  animation: none !important;
}

@media (min-width: 800px) {
  .footer-balloon {
    width: 8.25rem !important;
    height: 13.5rem !important;
  }
  .balloon-body {
    width: 8rem !important;
    height: 8.6rem !important;
  }
  .balloon-tip {
    top: 8.25rem !important;
    width: 0.8rem !important;
    height: 0.6rem !important;
  }
  .footer-balloon > svg.balloon-string {
    top: 8.7rem !important;
    height: 4.6rem !important;
    width: 2.75rem !important;
  }
  .footer-logo {
    width: 5.35rem !important;
    max-width: 5.35rem !important;
    margin: 1.2rem auto 4.1rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-balloon,
  .footer-balloon > svg.balloon-string {
    animation: none !important;
  }
  .footer-balloon {
    transform: translateX(-50%) !important;
  }
  .footer-balloon > svg.balloon-string {
    transform: translateX(-50%) !important;
  }
}

/* =========================================================
   SMOOTH MODE — prioritise buttery motion over busy effects
   ========================================================= */

/* 1) Base: compositor-friendly scrolling & paint */
html {
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video {
  max-width: 100%;
  height: auto;
}

/* 2) Kill expensive / conflicting body layers */
body::before,
body::after {
  animation: none !important;
  filter: none !important;
  will-change: auto !important;
}

/* 3) Under-banner: calm pastel only, no multi-layer thrash */
.under-banner {
  background: linear-gradient(
    165deg,
    #ffe8f5 0%,
    #e5f6ff 35%,
    #fff6d6 65%,
    #e9fbeb 100%
  ) !important;
  background-size: 100% 100% !important;
  animation: none !important;
  filter: none !important;
  will-change: auto !important;
}
.under-banner-bg {
  animation: none !important;
  contain: strict;
  transform: translateZ(0);
  /* fewer visible layers = smoother */
}
/* Soft slow wash via opacity on a single overlay instead of bg-position */
.under-banner-bg::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: -10% !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 140, 200, 0.35), transparent 42%),
    radial-gradient(circle at 80% 25%, rgba(100, 190, 255, 0.32), transparent 42%),
    radial-gradient(circle at 50% 70%, rgba(255, 220, 100, 0.28), transparent 48%) !important;
  animation: soft-wash 16s ease-in-out infinite alternate !important;
  opacity: 0.85 !important;
  will-change: opacity, transform;
  transform: translate3d(0, 0, 0) scale(1);
}
.under-banner-bg::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: -8% !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 70% 60%, rgba(140, 230, 180, 0.3), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(180, 150, 255, 0.25), transparent 45%) !important;
  animation: soft-wash 20s ease-in-out infinite alternate-reverse !important;
  opacity: 0.75 !important;
  will-change: opacity, transform;
  transform: translate3d(0, 0, 0) scale(1.02);
}
@keyframes soft-wash {
  0% { opacity: 0.55; transform: translate3d(0, 0, 0) scale(1); }
  100% { opacity: 0.95; transform: translate3d(12px, -10px, 0) scale(1.04); }
}

/* 4) Bubbles: fewer + transform-only + much slower */
.soft-bubble {
  top: auto !important;
  bottom: -2.5rem !important;
  animation: bubble-butter var(--bd, 22s) cubic-bezier(0.4, 0, 0.2, 1) infinite !important;
  animation-delay: var(--bdelay, 0s) !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout style;
}
@keyframes bubble-butter {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  8% { opacity: 0.55; }
  100% {
    transform: translate3d(6px, -100vh, 0) scale(1);
    opacity: 0;
  }
}
/* Hide excess bubbles for smoothness (keep a gentle set) */
.sb-7, .sb-8, .sb-9, .sb-10, .sb-11, .sb-12,
.sb-13, .sb-14, .sb-15, .sb-16, .sb-17, .sb-18, .sb-19, .sb-20,
.sb-21, .sb-22, .sb-23, .sb-24, .sb-25, .sb-26, .sb-27, .sb-28,
.sb-29, .sb-30, .sb-31, .sb-32, .sb-33, .sb-34, .sb-35, .sb-36 {
  display: none !important;
}
/* Keep 6 well-spaced bubbles only */
.sb-1 { --bx: 8%;  --bs: 1.35rem; --bd: 20s; --bdelay: 0s; }
.sb-2 { --bx: 24%; --bs: 1.1rem;  --bd: 24s; --bdelay: -4s; }
.sb-3 { --bx: 42%; --bs: 1.55rem; --bd: 22s; --bdelay: -8s; }
.sb-4 { --bx: 58%; --bs: 1.2rem;  --bd: 26s; --bdelay: -2s; }
.sb-5 { --bx: 74%; --bs: 1.4rem;  --bd: 21s; --bdelay: -10s; }
.sb-6 { --bx: 90%; --bs: 1.15rem; --bd: 25s; --bdelay: -6s; }

/* 5) Disable noisy extras (sparkles, dots, ribbons, waves, blob-spots) */
.bg-sparkle,
.bg-dot,
.bg-ribbon,
.bg-wave,
.blob-spot {
  display: none !important;
  animation: none !important;
}

/* 6) Section chrome: no pulsing pseudo layers */
.section-candy::before,
.section-team-fun::before,
.section-fun::before,
.section-play::before,
.section-faq-fun::before,
.section-sky::before,
.section-candy::after,
.section-team-fun::after {
  animation: none !important;
  opacity: 0.25 !important;
  transform: none !important;
}

/* 7) Marquee: slower, smoother */
.marquee-track {
  animation-duration: 40s !important;
  animation-timing-function: linear !important;
  will-change: transform;
  transform: translateZ(0);
}

/* 8) UI: silky transitions, no bounce jank */
.btn,
.price-card,
.team-photo,
.map-card,
.contact-panel,
.faq-list details,
.nav-desktop a {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    color 0.25s ease !important;
}
.btn:hover {
  transform: translateY(-1px) !important;
}
.btn:active {
  transform: translateY(0) !important;
  transition-duration: 0.12s !important;
}

/* Calm decorative UI motion */
.brand img {
  animation: logo-soft-y 5s ease-in-out infinite !important;
}
@keyframes logo-soft-y {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -2px, 0); }
}
.fun-icons span,
.price-emoji,
.price-amount,
.heading-fun span,
.special-emoji,
.session-panel .big-day,
.time-emoji,
.pill-icon {
  animation: none !important;
}
.hero h1.title-brand span {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Footer balloon: slower, softer */
.footer-balloon {
  animation: balloon-float-soft 5.5s ease-in-out infinite !important;
}
@keyframes balloon-float-soft {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-0.6deg); }
  50% { transform: translateX(-50%) translateY(-5px) rotate(0.6deg); }
}
.footer-balloon > svg.balloon-string {
  animation: string-soft 5.5s ease-in-out infinite !important;
  animation-delay: 0.2s !important;
}
@keyframes string-soft {
  0%, 100% { transform: translateX(-50%) rotate(-3deg); }
  50% { transform: translateX(-50%) rotate(3deg); }
}

/* Videos: promote layer once, avoid paint churn */
.hero-clip,
.nursery-clip {
  transform: translateZ(0);
  backface-visibility: hidden;
  /* smoother scaling when resizing */
  object-fit: contain !important;
}

/* Sticky bar: static, no animated gradient */
.sticky-bar {
  animation: none !important;
  background: rgba(255, 248, 238, 0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Mobile: even fewer effects */
@media (max-width: 799px) {
  .soft-bubble.sb-3,
  .soft-bubble.sb-5 {
    display: none !important;
  }
  .under-banner-bg::before,
  .under-banner-bg::after {
    animation-duration: 22s !important;
  }
  .marquee-track {
    animation-duration: 48s !important;
  }
}

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

/* Stay & play — stop first letter (S) looking cropped */
.hero h1.title-brand {
  overflow: visible !important;
  padding: 0.12em 0.2em 0.18em 0.18em !important; /* room for thick navy stroke */
  margin-left: -0.08em !important; /* optical balance after left padding */
  line-height: 1.15 !important;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero h1.title-brand span {
  overflow: visible !important;
  padding: 0.04em 0.03em !important;
  /* keep stroke inside painted area */
  paint-order: stroke fill !important;
}
.hero h1.title-brand span:first-child {
  padding-left: 0.08em !important; /* extra air for the S stroke */
}
.hero-copy {
  overflow: visible !important;
}
.hero-grid {
  overflow: visible !important;
}
@media (max-width: 799px) {
  .hero h1.title-brand {
    padding: 0.14em 0.22em 0.2em 0.22em !important;
    margin-left: 0 !important;
  }
}

/* Header balloons — centred on mobile between logo and menu */
.header-inner {
  position: relative;
}
.header-balloons {
  display: none; /* shown on mobile; desktop optional below */
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  pointer-events: none;
  line-height: 1;
  z-index: 2;
}
.header-balloons .balloon {
  font-size: 1.35rem;
  display: inline-block;
  animation: balloon-bob 2.8s ease-in-out infinite;
  filter: drop-shadow(0 2px 3px rgba(44, 62, 140, 0.15));
}
.header-balloons .b-pink { animation-delay: 0s; }
.header-balloons .b-blue { animation-delay: 0.35s; font-size: 1.2rem; }
.header-balloons .b-yellow { animation-delay: 0.7s; font-size: 1.3rem; }

/* Hide old hero-corner balloons if residual CSS exists */
.hero-balloons {
  display: none !important;
}

@media (max-width: 799px) {
  .header-balloons {
    display: flex !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    right: auto !important;
  }
  /* kill previous mobile hero balloon rules */
  .hero-balloons {
    display: none !important;
  }
}

/* Desktop: show balloons centred in header too (between brand and nav) */
@media (min-width: 800px) {
  .header-balloons {
    display: flex;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
  }
  .header-balloons .balloon {
    font-size: 1.5rem;
  }
  .header-balloons .b-blue { font-size: 1.3rem; }
  .header-balloons .b-yellow { font-size: 1.4rem; }
}

/* Header balloons — equal spacing */
.header-balloons {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0 !important;
  width: 5.5rem !important; /* fixed width so space-between is even */
}
.header-balloons .balloon {
  flex: 0 0 auto !important;
  margin: 0 !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
}
.header-balloons .b-pink,
.header-balloons .b-blue,
.header-balloons .b-yellow {
  font-size: 1.35rem !important; /* same size so spacing looks equal */
}

@media (max-width: 799px) {
  .header-balloons {
    width: 5.25rem !important;
  }
  .header-balloons .balloon {
    font-size: 1.3rem !important;
  }
}

@media (min-width: 800px) {
  .header-balloons {
    width: 6.25rem !important;
  }
  .header-balloons .balloon {
    font-size: 1.45rem !important;
  }
}

/* ===== Header balloons: fixed in place from first paint (no glitch) ===== */

/* Stable 3-column header: logo | balloons | end controls */
.header-inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 0.35rem !important;
  position: relative !important;
  min-height: 4rem !important;
}
.brand {
  grid-column: 1 !important;
  justify-self: start !important;
  z-index: 2 !important;
}
.header-balloons {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  /* never absolute / never display:none — stays put on open */
  position: static !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  transform: none !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 5.5rem !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  /* prevent FOUC jump */
  min-height: 1.5rem !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.header-end {
  grid-column: 3 !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  z-index: 2 !important;
}

/* Equal balloons — bob only Y, start at rest (0) so no snap-in */
.header-balloons .balloon {
  flex: 0 0 auto !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1.35rem !important;
  line-height: 1 !important;
  animation: header-balloon-bob 2.8s ease-in-out infinite !important;
  animation-fill-mode: none !important;
  will-change: transform;
  filter: drop-shadow(0 2px 2px rgba(44, 62, 140, 0.12));
}
.header-balloons .b-pink {
  animation-delay: 0s !important;
  font-size: 1.35rem !important;
}
.header-balloons .b-blue {
  animation-delay: 0.4s !important;
  font-size: 1.35rem !important;
}
.header-balloons .b-yellow {
  animation-delay: 0.8s !important;
  font-size: 1.35rem !important;
}

@keyframes header-balloon-bob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}

/* Override ALL previous absolute/display:none balloon header rules */
@media (max-width: 799px) {
  .header-balloons {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    display: flex !important;
    width: 5.25rem !important;
  }
  .header-inner {
    min-height: 3.85rem !important;
  }
  .hero-balloons {
    display: none !important;
  }
}

@media (min-width: 800px) {
  .header-balloons {
    position: static !important;
    transform: none !important;
    display: flex !important;
    width: 6.25rem !important;
  }
  .header-balloons .balloon {
    font-size: 1.45rem !important;
  }
  .nav-desktop {
    display: flex !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-balloons .balloon {
    animation: none !important;
    transform: none !important;
  }
}

/* Footer: no overlapping string — text sits below balloon hang */
.footer-logo {
  margin-bottom: 3.5rem !important; /* clear string hang */
}
.footer-details {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.footer-details p {
  margin: 0 !important;
}
@media (min-width: 800px) {
  .footer-logo {
    margin-bottom: 3.85rem !important;
  }
}

/* Footer: keep hanging string clear of phone / links */
.footer-simple {
  padding-top: 0.25rem !important;
  overflow: visible !important;
}
.footer-logo {
  /* enough room for balloon tip + full SVG string below logo */
  margin-top: 0.85rem !important;
  margin-bottom: 5.25rem !important;
}
.footer-balloon {
  height: 13.5rem !important;
}
.footer-balloon > svg.balloon-string {
  height: 3.5rem !important;
  top: 8rem !important;
}
.footer-details {
  position: relative !important;
  z-index: 3 !important;
  margin-top: 0.5rem !important;
  clear: both !important;
  padding-top: 0.35rem !important;
}

@media (min-width: 800px) {
  .footer-logo {
    margin-bottom: 5.75rem !important;
  }
  .footer-balloon {
    height: 14.5rem !important;
  }
  .footer-balloon > svg.balloon-string {
    height: 3.75rem !important;
    top: 8.7rem !important;
  }
}

/* Fix: header balloons bob again */
.header-balloons .balloon {
  animation: header-balloon-bob 2.8s ease-in-out infinite !important;
  animation-fill-mode: none !important;
  will-change: transform;
}
.header-balloons .b-pink {
  animation-delay: 0s !important;
}
.header-balloons .b-blue {
  animation-delay: 0.35s !important;
}
.header-balloons .b-yellow {
  animation-delay: 0.7s !important;
}

@keyframes header-balloon-bob {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -5px, 0);
  }
}

/* Ensure no rule freezes them */
@media (max-width: 799px) {
  .header-balloons .balloon {
    animation-name: header-balloon-bob !important;
    animation-duration: 2.8s !important;
    animation-iteration-count: infinite !important;
    animation-timing-function: ease-in-out !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-balloons .balloon {
    animation: none !important;
  }
}

/* ===== Multi-agent polish pass ===== */
.h1-loc {
  display: inline-block;
  color: var(--navy) !important;
  -webkit-text-stroke: 2.5px #2c3e8c !important;
  font-size: 0.72em;
  white-space: nowrap;
  padding-left: 0.12em;
}
.contact-hint {
  margin: 0 0 0.75rem !important;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.btn-facebook-lite {
  color: #1877f2 !important;
  background: #fff !important;
  border-color: #1877f2 !important;
  box-shadow: 0 4px 0 #0d5dbf !important;
}
.btn-facebook-lite:hover {
  box-shadow: 0 6px 0 #0d5dbf !important;
}
.brand img {
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
}
.footer-nap {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  opacity: 0.95;
  max-width: 18rem;
  line-height: 1.35;
}
.footer-nap a {
  color: #ffe566 !important;
}
.sticky-bar {
  padding:
    0.7rem
    max(0.75rem, env(safe-area-inset-right))
    calc(0.7rem + env(safe-area-inset-bottom, 0px))
    max(0.75rem, env(safe-area-inset-left)) !important;
}
.sticky-bar .btn {
  min-height: 3rem !important;
}
.menu-btn {
  width: 3rem !important;
  height: 3rem !important;
  min-width: 48px !important;
  min-height: 48px !important;
}
.faq-list summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  min-height: 3rem !important;
}
.faq-list summary::after {
  float: none !important;
  flex-shrink: 0 !important;
}
.site-footer {
  padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px)) !important;
}
@media (min-width: 800px) {
  .site-footer {
    padding-bottom: 2.25rem !important;
  }
}
/* Footer balloon in-flow so string never covers contact */
.footer-balloon {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  margin: 0 auto 0.25rem !important;
  height: auto !important;
  width: 7.5rem !important;
  animation: balloon-float-soft 5.5s ease-in-out infinite !important;
}
.footer-balloon > svg.balloon-string {
  position: relative !important;
  top: 0 !important;
  left: 50% !important;
  height: 2.85rem !important;
  margin: 0.15rem auto 0 !important;
  display: block !important;
}
.footer-logo {
  position: absolute !important;
  top: 1.05rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  width: 4.6rem !important;
  max-width: 4.6rem !important;
  z-index: 2 !important;
}
.footer-simple {
  position: relative !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.footer-details {
  margin-top: 0.35rem !important;
  padding-top: 0 !important;
  z-index: 2 !important;
}
@media (min-width: 800px) {
  .footer-balloon { width: 8.25rem !important; }
  .footer-logo { width: 5.1rem !important; max-width: 5.1rem !important; top: 1.2rem !important; }
  .footer-balloon > svg.balloon-string { height: 3rem !important; }
}
/* balloon float without translateX(-50%) conflict */
@keyframes balloon-float-soft {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50% { transform: translateY(-5px) rotate(0.6deg); }
}

/* A+ info cards + reviews */
.info-grid {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 960px) {
  .info-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.info-card {
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.25rem;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 0 6px 0 rgba(44, 62, 140, 0.08);
  text-align: left;
}
.info-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}
.info-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.45;
}
.info-card a {
  font-weight: 800;
  color: var(--blue-deep);
}
.price-pay {
  margin-top: 0.85rem !important;
  font-size: 0.95rem !important;
  color: var(--muted) !important;
}
.map-extra {
  margin: 0 0 0.55rem !important;
  font-weight: 700 !important;
  color: var(--ink-soft) !important;
  font-size: 0.95rem !important;
}
.reviews-box {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.35rem 1.25rem;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, #fff 40%, #fff6d6 100%);
  border: 4px solid var(--navy);
  box-shadow: 0 8px 0 rgba(44, 62, 140, 0.1);
  text-align: center;
}
.reviews-lead {
  margin: 0 0 1rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.reviews-note {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
@media (max-width: 799px) {
  .info-grid {
    max-width: 22rem;
    margin-inline: auto;
  }
  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .reviews-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Info cards: neat layout for 5 boxes */
.info-grid {
  display: grid !important;
  gap: 1rem !important;
  max-width: 52rem !important;
  margin: 0 auto !important;
  width: 100% !important;
  grid-template-columns: 1fr !important;
  align-items: stretch !important;
}
.info-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
  text-align: center !important;
  padding: 1.2rem 1.15rem 1.25rem !important;
}
.info-card h3 {
  text-align: center !important;
}
.info-card p {
  text-align: center !important;
  flex: 1 !important;
}

/* Tablet: 2 columns, last card centred under */
@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .info-card:nth-child(5) {
    grid-column: 1 / -1 !important;
    max-width: calc(50% - 0.5rem) !important;
    width: 100% !important;
    justify-self: center !important;
  }
}

/* Desktop: row of 3 + row of 2 centred */
@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 1rem !important;
  }
  .info-card {
    max-width: none !important;
  }
  .info-card:nth-child(1) { grid-column: 1 / 3 !important; }
  .info-card:nth-child(2) { grid-column: 3 / 5 !important; }
  .info-card:nth-child(3) { grid-column: 5 / 7 !important; }
  .info-card:nth-child(4) { grid-column: 2 / 4 !important; }
  .info-card:nth-child(5) {
    grid-column: 4 / 6 !important;
    max-width: none !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 639px) {
  .info-grid {
    max-width: 22rem !important;
  }
  .info-card:nth-child(5) {
    grid-column: auto !important;
    max-width: none !important;
  }
}

/* Hide residual "in Selby" title styling */
.h1-loc {
  display: none !important;
}

/* ===== Footer balloon rebuild: no text overlap, string hangs DOWN ===== */

/* Neutralise ALL previous footer balloon / logo absolute hacks */
.footer-simple::before,
.footer-simple::after,
.site-footer .footer-simple > p:first-of-type::before {
  content: none !important;
  display: none !important;
}
.footer-balloon,
.footer-logo,
.footer-details,
.footer-simple,
.balloon-body,
.balloon-tip,
.balloon-string {
  /* reset dangerous locks — redefined cleanly below */
}

.footer-simple {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  padding-top: 0.5rem !important;
  overflow: visible !important;
}

.footer-brand-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 22rem !important;
  margin: 0 auto !important;
}

/* One unit: balloon + logo + string in document flow */
.footer-balloon-unit {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 8rem !important;
  margin: 0 auto 0.75rem !important;
  animation: footer-unit-bob 5s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes footer-unit-bob {
  0%, 100% { transform: translateY(0) rotate(-0.8deg); }
  50% { transform: translateY(-6px) rotate(0.8deg); }
}

.balloon-shell {
  position: relative !important;
  width: 7.5rem !important;
  height: 8.1rem !important;
  margin: 0 auto !important;
}

.balloon-body {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.88) 0 12%, transparent 28%),
    radial-gradient(circle at 50% 48%, #fff3a0 0%, #ffd23f 38%, #ff9f43 70%, #ff7eb6 100%) !important;
  border: 3px solid #2c3e8c !important;
  box-shadow:
    inset 0 -12px 20px rgba(44, 62, 140, 0.1),
    0 8px 18px rgba(0, 0, 0, 0.2) !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.balloon-tip {
  position: absolute !important;
  left: 50% !important;
  bottom: -0.35rem !important;
  top: auto !important;
  transform: translateX(-50%) !important;
  width: 0.75rem !important;
  height: 0.55rem !important;
  background: linear-gradient(180deg, #ffd23f, #ff9f43) !important;
  border: 2px solid #2c3e8c !important;
  border-radius: 0.2rem 0.2rem 0.45rem 0.45rem !important;
  z-index: 2 !important;
  box-shadow: none !important;
}

/* Logo centred ON the balloon face (not covering text below) */
.footer-balloon-unit .footer-logo {
  position: absolute !important;
  top: 1.15rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 4.75rem !important;
  max-width: 4.75rem !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 3 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.12)) !important;
  animation: none !important;
}

/* String hangs BELOW the tip — natural down direction */
.footer-balloon-unit > svg.balloon-string {
  display: block !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 2.75rem !important;
  height: 4rem !important;
  margin: 0.15rem auto 0 !important;
  transform: none !important; /* not flipped */
  transform-origin: 50% 0 !important;
  animation: string-hang-sway 5s ease-in-out infinite !important;
  overflow: visible !important;
  z-index: 1 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

@keyframes string-hang-sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* Text ALWAYS below the whole balloon unit — never under absolute string */
.footer-details {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.4rem !important;
  margin: 0.35rem 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
  clear: both !important;
}
.footer-details p {
  margin: 0 !important;
}

@media (min-width: 800px) {
  .footer-balloon-unit {
    width: 8.75rem !important;
  }
  .balloon-shell {
    width: 8.25rem !important;
    height: 8.9rem !important;
  }
  .footer-balloon-unit .footer-logo {
    width: 5.25rem !important;
    max-width: 5.25rem !important;
    top: 1.3rem !important;
  }
  .footer-balloon-unit > svg.balloon-string {
    height: 4.35rem !important;
    width: 3rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-balloon-unit,
  .footer-balloon-unit > svg.balloon-string {
    animation: none !important;
  }
}

/* ===== Desktop header cleanup ===== */
@media (min-width: 800px) {
  .site-header {
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--pink), var(--yellow), var(--green), var(--blue), var(--purple)) 1;
  }

  .header-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    min-height: 4.25rem !important;
    grid-template-columns: none !important;
  }

  /* Balloons only on mobile — desktop stays clean */
  .header-balloons {
    display: none !important;
  }

  .brand {
    flex: 0 0 auto !important;
    justify-self: auto !important;
    grid-column: auto !important;
  }
  .brand img {
    width: 3.15rem !important;
    height: 3.15rem !important;
    border-radius: 0 !important;
    object-fit: contain !important;
  }

  .header-end {
    display: flex !important;
    flex: 1 1 auto !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 0.85rem !important;
    justify-self: auto !important;
    grid-column: auto !important;
    min-width: 0 !important;
  }

  .nav-desktop {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.15rem !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
  }
  .nav-desktop a {
    padding: 0.45rem 0.6rem !important;
    border-radius: 999px !important;
    color: var(--ink-soft) !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }
  .nav-desktop a:hover {
    background: var(--pink-soft) !important;
    color: var(--pink-hot) !important;
  }

  .btn-header {
    display: inline-flex !important;
    flex-shrink: 0 !important;
    min-height: 2.65rem !important;
    padding: 0.45rem 1.1rem !important;
    font-size: 0.92rem !important;
    box-shadow: 0 3px 0 var(--navy) !important;
  }

  .menu-btn {
    display: none !important;
  }
}

/* Large desktop: a little more breathing room */
@media (min-width: 1100px) {
  .nav-desktop {
    gap: 0.25rem !important;
    font-size: 0.92rem !important;
  }
  .nav-desktop a {
    padding: 0.5rem 0.75rem !important;
  }
}

/* Medium desktop: slightly tighter nav if crowded */
@media (min-width: 800px) and (max-width: 980px) {
  .nav-desktop {
    font-size: 0.8rem !important;
    gap: 0 !important;
  }
  .nav-desktop a {
    padding: 0.4rem 0.45rem !important;
  }
  .btn-header {
    padding: 0.4rem 0.85rem !important;
    font-size: 0.85rem !important;
  }
}


/* ===== Audit sprint polish ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.25rem;
}
#session, #prices, #visit, #team, #where, #faq, #contact, #top {
  scroll-margin-top: 5.25rem;
}

.hero-book-note {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
}
@media (max-width: 799px) {
  .hero-book-note {
    text-align: center;
  }
}

/* Phone: solid navy (readable), not rainbow clip */
.phone-big a {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  border-bottom: 4px solid var(--yellow) !important;
  animation: none !important;
}

/* Pink button: darker fill for better white text contrast */
.btn-pink {
  background: linear-gradient(180deg, #ff6bb5 0%, #e0187a 100%) !important;
  border-color: #a01058 !important;
  box-shadow: 0 5px 0 #a01058 !important;
  color: #fff !important;
}
.sticky-bar .btn-pink {
  background: linear-gradient(180deg, #ff6bb5 0%, #e0187a 100%) !important;
}

/* Maps external cue */
a[target="_blank"] .sr-only-ext { /* reserved */ }

/* "Tuesday" full word in session panel */
.session-side .big-day {
  font-size: clamp(1.75rem, 6vw, 2.65rem) !important;
  letter-spacing: -0.02em;
}
