/* Kiddies Kingdom - warm UK nursery feel
   Palette from logo: sky blue K, pinks, lemon, coral */

:root {
  --sky: #4ba3e3;
  --sky-dark: #2f86c7;
  --sky-soft: #e3f2fb;
  --navy: #1a3558;
  --ink: #243247;
  --muted: #4a5a70;
  --paper: #fff8f0;
  --cream: #fff3e8;
  --soft: #ffe8dc;
  --blush: #ffd6e5;
  --peach: #ffd4b8;
  --lavender: #e4daf8;
  --mint: #c8f0dc;
  --gold: #efbf45;
  --coral: #ef7a58;
  --coral-deep: #e06545;
  --lemon: #ffe9a0;
  --white: #ffffff;
  --radius: 1.6rem;
  --radius-sm: 1rem;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(255, 214, 229, 0.55), transparent 55%),
    radial-gradient(ellipse 45% 35% at 0% 25%, rgba(227, 242, 251, 0.55), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(255, 233, 160, 0.25), transparent 55%),
    var(--paper);
  min-height: 100vh;
}

/* Pastel sticker accents — only inside paper/cream sections (see main.js) */
.section > .container {
  position: relative;
  z-index: 1;
}

.bg-patterns {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-patterns .bg-pat {
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: var(--pat-w, 3.75rem);
  max-width: 4.25rem;
  max-height: 4.25rem;
  height: auto;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  will-change: translate, rotate;
  rotate: var(--pat-rot, 0deg);
}

/* Solid blob vectors fill their viewBox — scale down so they match thin motifs */
.bg-patterns .bg-pat--blob {
  max-width: 3.5rem;
  max-height: 3.5rem;
  width: min(var(--pat-w, 3.5rem), 3.5rem);
}

/* Dense misc fills (stars etc.) sit between blob and line weight */
.bg-patterns .bg-pat--dense {
  max-width: 3.75rem;
  max-height: 3.75rem;
  width: min(var(--pat-w, 3.75rem), 3.75rem);
}

/* Thin highlight strokes can sit at the upper end of the size band */
.bg-patterns .bg-pat--line {
  max-width: 4.25rem;
  max-height: 4.25rem;
}

.bg-pat-float-a {
  animation: bg-pat-float-a 14s ease-in-out infinite;
}

.bg-pat-float-b {
  animation: bg-pat-float-b 17s ease-in-out infinite;
  animation-delay: -4s;
}

.bg-pat-float-c {
  animation: bg-pat-float-c 19s ease-in-out infinite;
  animation-delay: -8s;
}

@keyframes bg-pat-float-a {
  0%, 100% { translate: 0 0; rotate: var(--pat-rot, 0deg); }
  40% { translate: 12px -16px; rotate: calc(var(--pat-rot, 0deg) + 5deg); }
  70% { translate: -8px -8px; rotate: calc(var(--pat-rot, 0deg) - 3deg); }
}

@keyframes bg-pat-float-b {
  0%, 100% { translate: 0 0; rotate: var(--pat-rot, 0deg); }
  35% { translate: -14px -12px; rotate: calc(var(--pat-rot, 0deg) - 4deg); }
  65% { translate: 10px -18px; rotate: calc(var(--pat-rot, 0deg) + 6deg); }
}

@keyframes bg-pat-float-c {
  0%, 100% { translate: 0 0; rotate: var(--pat-rot, 0deg); }
  45% { translate: 8px -20px; rotate: calc(var(--pat-rot, 0deg) + 4deg); }
  75% { translate: -12px -6px; rotate: calc(var(--pat-rot, 0deg) - 5deg); }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sky-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2.15rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.65rem); }
h3 { font-size: 1.45rem; }

p { margin: 0 0 1rem; }

/* Bold kid-friendly section labels - coral/sky pills, never thin washed captions */
.label {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--coral-deep);
  background: var(--blush);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.label-sky {
  color: var(--sky-dark);
  background: var(--sky-soft);
}

.label-lemon {
  color: #9a6b00;
  background: var(--lemon);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: white;
  padding: 0.6rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header — light cream bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 53, 88, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.45rem 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
  max-width: min(240px, 52vw);
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  background: var(--coral);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.05rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-toggle:hover {
  background: var(--coral-deep);
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.site-nav a:hover {
  color: var(--coral-deep);
}

.nav-cta {
  background: var(--coral) !important;
  color: white !important;
  padding: 0.55rem 1.15rem !important;
  border-radius: 999px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--coral-deep) !important;
  color: white !important;
}

/* Full-bleed photo hero */
.hero {
  position: relative;
  min-height: min(90vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 53, 88, 0.15) 0%, rgba(26, 53, 88, 0.35) 40%, rgba(26, 53, 88, 0.78) 100%),
    radial-gradient(ellipse 60% 45% at 12% 90%, rgba(239, 122, 88, 0.35), transparent 55%),
    radial-gradient(ellipse 45% 35% at 92% 18%, rgba(75, 163, 227, 0.28), transparent 50%);
}

.hero-panel {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3rem, 8vw, 4.75rem);
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  margin-right: auto;
  animation: hero-rise 0.85s ease both;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.hero-logo-heading {
  margin: 0;
  line-height: 0;
  font-size: 0;
}

.hero-logo {
  width: clamp(180px, 42vw, 280px);
  height: auto;
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  display: block;
}

.tiney-badge {
  display: block;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

.hero-tiney {
  width: clamp(200px, 48vw, 340px);
  max-width: 340px;
}

.footer-tiney {
  width: clamp(160px, 40vw, 260px);
  max-width: 260px;
  margin: 0 0 0.85rem;
}

.hero-welcome {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 0 0 0.55rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  font-size: clamp(1.08rem, 2.2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 34ch;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* Buttons - no heavy box-shadows */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral);
  color: white;
}

.btn-primary:hover {
  background: var(--coral-deep);
  color: white;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

.btn-solid {
  background: var(--sky);
  color: white;
}

.btn-solid:hover {
  background: var(--sky-dark);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(75, 163, 227, 0.45);
}

.btn-outline:hover {
  border-color: var(--sky);
  color: var(--sky-dark);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: var(--lemon);
  color: var(--navy);
}

/* Sections */
.section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 7vw, 5rem) 0;
}

.section-cream {
  background: var(--paper);
}

.section-soft,
.section-alt {
  background:
    radial-gradient(ellipse 50% 50% at 10% 20%, rgba(255, 212, 184, 0.55), transparent 55%),
    radial-gradient(ellipse 45% 40% at 95% 80%, rgba(228, 218, 248, 0.5), transparent 50%),
    var(--cream);
}

.section-sky {
  background:
    radial-gradient(ellipse 40% 50% at 90% 15%, rgba(255, 233, 160, 0.5), transparent 50%),
    linear-gradient(165deg, var(--sky-soft), #cfe8f8);
}

.section-blush {
  background:
    radial-gradient(ellipse 45% 40% at 5% 70%, rgba(255, 214, 229, 0.7), transparent 55%),
    radial-gradient(ellipse 40% 35% at 95% 15%, rgba(200, 240, 220, 0.45), transparent 50%),
    linear-gradient(180deg, #fff0f5, var(--paper));
}

.section-enquire {
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255, 233, 160, 0.4), transparent 55%),
    linear-gradient(135deg, #ffe8dc, var(--sky-soft));
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.section-header .label {
  margin-left: auto;
  margin-right: auto;
}

.section-header p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 1.08rem;
  font-weight: 600;
}

/* Welcome / offer photo grids */
.welcome-grid,
.offer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.offer-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.welcome-photo,
.offer-photo {
  margin: 0;
  border-radius: calc(var(--radius) + 0.35rem);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.welcome-photo img,
.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Promise / why strips - no emoji SaaS cards */
.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.promise {
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
}

.promise h3 {
  font-size: 1.5rem;
  margin-bottom: 0.55rem;
}

.promise p {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

.promise-peach { background: var(--peach); }
.promise-sky { background: var(--sky-soft); }
.promise-lemon { background: var(--lemon); }

/* Age strips with photos */
.age-strips {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.age-strip {
  display: grid;
  grid-template-columns: minmax(160px, 280px) 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 10.5rem;
}

.age-strip-photo {
  min-height: 100%;
}

.age-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 10.5rem;
}

.age-strip-body {
  padding: 1.35rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.age-kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  opacity: 0.75;
  margin-bottom: 0.2rem;
}

.age-strip-body h3 {
  font-size: 1.75rem;
  margin-bottom: 0.4rem;
}

.age-strip-body > p {
  margin-bottom: 0.65rem;
  font-weight: 600;
}

.age-hours {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem !important;
}

.age-strip-body a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.age-strip-body a:hover {
  background: white;
  color: var(--coral-deep);
}

.age-strip-blush { background: var(--blush); }
.age-strip-peach { background: var(--peach); }
.age-strip-lemon { background: var(--lemon); }
.age-strip-mint { background: var(--mint); }

.note-box {
  margin-top: 2rem;
  background: var(--lavender);
  border-radius: 2rem;
  padding: 1.45rem 1.75rem;
  text-align: center;
}

.note-box p {
  color: var(--ink);
  font-weight: 600;
}

.note-box p:last-child {
  margin-bottom: 0;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--coral);
}

/* Gallery mosaic - dense, warm, real photos */
.gallery-mosaic,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.mosaic-item,
.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--peach);
  aspect-ratio: 1;
}

.mosaic-item img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mosaic-item:hover img,
.gallery-item:hover img {
  transform: scale(1.04);
}

.mosaic-wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

/* Bold photo captions - Fredoka, coral/navy - never thin light-blue */
.gallery-item figcaption,
.mosaic-item figcaption,
.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(26, 53, 88, 0.78));
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.gallery-cta {
  text-align: center;
  margin-top: 1.75rem;
}

.gallery-page {
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(255, 214, 229, 0.45), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 20%, rgba(227, 242, 251, 0.55), transparent 50%),
    var(--cream);
}

.gallery-page .gallery-grid {
  gap: 1rem;
}

.gallery-page .gallery-item {
  border: 4px solid white;
}

.gallery-page .gallery-item:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-page .gallery-item:nth-child(4) {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.quote {
  margin: 0;
  padding: 1.45rem 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  border-left: 6px solid var(--coral);
}

.quote p {
  font-style: italic;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 600;
}

.quote cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sky-dark);
}

.enquire-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background: white;
  border-radius: calc(var(--radius) + 0.4rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 4px solid rgba(75, 163, 227, 0.22);
}

.enquire-meta p {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.enquire-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
}

.enquire-actions .btn {
  width: 100%;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: center;
}

.split-reverse > :first-child {
  order: 2;
}

.split-media {
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  position: relative;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius);
  background: var(--peach);
}

.feature:nth-child(2) { background: var(--sky-soft); }
.feature:nth-child(3) { background: var(--mint); }

.feature-icon {
  display: none;
}

.feature h3 {
  font-size: 1.45rem;
}

.feature p {
  margin: 0;
  font-weight: 600;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.session-block {
  background: var(--sky-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.65rem;
}

.session-block:nth-child(2) { background: var(--blush); }
.session-block:nth-child(3) { background: var(--lemon); }
.session-block:nth-child(4) { background: var(--mint); }

.session-block .meta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--coral-deep);
  margin-bottom: 0.65rem;
}

.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.price span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--muted);
  font-weight: 700;
}

.session-block > p:last-child {
  color: var(--ink);
  margin-bottom: 0;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 3px solid rgba(75, 163, 227, 0.22);
}

.contact-card dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--coral-deep);
  margin-top: 1rem;
}

.contact-card dt:first-child {
  margin-top: 0;
}

.contact-card dd {
  margin: 0.25rem 0 0;
  font-weight: 700;
  color: var(--navy);
}

.contact-card a {
  text-decoration: none;
  font-weight: 700;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid rgba(75, 163, 227, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: white;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  background: var(--mint);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.form-success.show,
.form-success:not([hidden]).show {
  display: block;
}

.page-hero {
  padding: 2.75rem 0 2.25rem;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(255, 214, 229, 0.55), transparent 60%),
    linear-gradient(180deg, var(--sky-soft), transparent);
}

.page-hero h1 {
  margin-bottom: 0.65rem;
}

.page-hero p {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 600;
}

.cta-band {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--sky), #6bb8eb);
  color: white;
}

.cta-band h2 { color: white; }

.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 44rem;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 3px solid rgba(75, 163, 227, 0.18);
  padding: 0.25rem 1.15rem;
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  padding: 0.9rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-body p {
  font-weight: 600;
  color: var(--muted);
  padding-bottom: 0.85rem;
}

.site-footer {
  background: var(--cream);
  color: var(--muted);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(26, 53, 88, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer .brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.site-footer .tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.site-footer h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li { margin-bottom: 0.4rem; }

.site-footer a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover { color: var(--coral-deep); }

.footer-bottom {
  border-top: 1px solid rgba(26, 53, 88, 0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  max-width: 200px;
  margin-bottom: 0.55rem;
  display: block;
  object-fit: contain;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .welcome-grid,
  .offer-grid,
  .split,
  .split-reverse,
  .contact-grid,
  .footer-grid,
  .enquire-band,
  .promise-row,
  .feature-grid,
  .quotes {
    grid-template-columns: 1fr;
  }

  .split-reverse > :first-child {
    order: 0;
  }

  .sessions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-mosaic,
  .gallery-grid,
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic-wide,
  .gallery-item:first-child,
  .gallery-page .gallery-item:nth-child(1),
  .gallery-page .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .age-strip {
    grid-template-columns: 140px 1fr;
  }

  .hero {
    min-height: min(86vh, 680px);
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid rgba(26, 53, 88, 0.08);
    padding: 1rem 1.25rem 1.25rem;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0.5rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .sessions-grid {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic,
  .gallery-grid,
  .gallery-page .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-wide,
  .gallery-item:first-child,
  .gallery-page .gallery-item:nth-child(1),
  .gallery-page .gallery-item:nth-child(4) {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }

  .age-strip {
    grid-template-columns: 1fr;
  }

  .age-strip-photo {
    aspect-ratio: 16 / 9;
  }

  .age-strip-photo img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hero-panel {
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
  }

  .hero-media img {
    object-position: left center;
  }

  .bg-patterns .bg-pat {
    width: min(var(--pat-w, 3.5rem), 3.5rem) !important;
    max-width: 3.5rem !important;
    max-height: 3.5rem !important;
    opacity: 0.55 !important;
  }

  .bg-patterns .bg-pat--blob {
    width: min(var(--pat-w, 3rem), 3rem) !important;
    max-width: 3rem !important;
    max-height: 3rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-panel,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .bg-pat-float-a,
  .bg-pat-float-b,
  .bg-pat-float-c {
    animation-duration: 48s;
    animation-timing-function: linear;
  }
}
