/* =========================================================
   Choco Ludosi
   Design tokens: DESIGN_VARIANCE 7 / MOTION_INTENSITY 6 / VISUAL_DENSITY 3
   Shape lock: buttons = full pill, cards/images = 28px, inputs = 14px
   Palette: white base, one chocolate-brown accent (#8B4A2B), used as fill,
   border, icon and (unlike the old orange) also as small text - it passes
   AA contrast both ways against white. Fixed light theme by explicit
   choice: no prefers-color-scheme override, always white with brown accents
   regardless of the visitor's OS/browser theme setting.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }

:root {
  --bg: #FFFFFF;
  --bg-panel: #FFFFFF;
  --ink: #3B220F;
  --ink-soft: #6B4A34;
  --accent: #8B4A2B;
  --accent-dark: #6E3A1F;
  --on-accent: #FFFFFF;
  --line: rgba(59, 34, 15, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 20px 45px -25px rgba(59, 34, 15, 0.22);
  --container: 1240px;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container { padding: 0 40px; }
}

section { position: relative; }

/* padding-top/bottom only (not the shorthand) - .section-pad is combined
   with .container on the footer, and the shorthand form would silently zero
   out .container's left/right padding since they'd share equal specificity */
.section-pad { padding-top: 88px; padding-bottom: 88px; }
.section-pad-lg { padding-top: 120px; padding-bottom: 120px; }
@media (max-width: 767px) {
  .section-pad { padding-top: 64px; padding-bottom: 64px; }
  .section-pad-lg { padding-top: 72px; padding-bottom: 72px; }
}

.bg-panel {
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  display: inline-block;
  margin-bottom: 14px;
}

h1, h2, h3, .display {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2rem, 1.6rem + 1.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.65rem); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head p {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 52ch;
}

.body-lg { font-size: 1.125rem; line-height: 1.65; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.btn:active { transform: scale(0.97) translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-primary:hover { box-shadow: 0 14px 30px -12px rgba(139, 74, 43, 0.45); transform: translateY(-2px); }

.btn-ghost {
  background: #FFFFFF;
  border-color: var(--accent-dark);
  color: var(--accent-dark);
}
.btn-ghost:hover { background: var(--accent-dark); color: #FFFFFF; }

.btn-sm { height: 46px; padding: 0 24px; font-size: 0.95rem; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn:hover, .btn:active { transition: none; transform: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
}
.nav.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: none; }
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; flex-shrink: 0; border-radius: 999px; }

@media (max-width: 479px) {
  .brand { font-size: 1.05rem; }
  .brand img { width: 34px; height: 34px; }
  .nav-actions .btn-primary { display: none; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  font-weight: 700;
  color: var(--ink);
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color 0.25s var(--ease-out); }
.nav-links a:hover { border-color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 22px;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 49;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: 'Baloo 2', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--ink); }
.mobile-menu a.btn { font-size: 1rem; margin-top: 8px; align-self: flex-start; }

@media (min-width: 1024px) { .mobile-menu { display: none; } }

/* ---------- Hero (pinned scroll-scrub, vignette-masked, text hidden until reveal) ---------- */
.hero-scroll { position: relative; }
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 86%, transparent 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  will-change: transform;
}

/* Canvas frame-sequence renderer: replaces the <video> for scroll-scrubbing
   once its frames are preloaded, so scrubbing draws pre-decoded images
   instead of seeking a video decoder on every scroll tick. Hidden until
   main.js marks it ready; the <video> stays the visible layer until then. */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  will-change: transform;
}
.hero-media.is-canvas-ready .hero-video { visibility: hidden; }
.hero-media.is-canvas-ready .hero-canvas { display: block; }

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 46% 42% at 50% 46%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.8) 35%,
    rgba(255, 255, 255, 0.45) 60%,
    rgba(255, 255, 255, 0) 80%);
}

@media (max-width: 640px) {
  .hero-glow {
    background: radial-gradient(ellipse 78% 60% at 50% 48%,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.85) 40%,
      rgba(255, 255, 255, 0.5) 68%,
      rgba(255, 255, 255, 0) 88%);
  }
}

/* Ambient decoration: a few chips/mini-cookies bobbing at the hero's edges so
   it doesn't read as a still image before the visitor starts scrolling.
   They live at the outer margins, clear of the centered video/text column. */
.hero-floaties {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
/* Note on bottom-anchored items: .hero has min-height:100dvh but sits below
   the sticky nav in document flow before the scroll-scrub pin engages, so its
   own box extends var(--nav-h) past the visible fold at rest. A percentage
   "bottom" value is computed against that oversized box and silently clips
   depending on viewport height. Anchoring with calc(var(--nav-h) + Npx)
   keeps a guaranteed, height-independent clearance above the true fold. */
.hero-floaty { position: absolute; filter: drop-shadow(0 6px 14px rgba(59, 34, 15, 0.16)); }
.hero-floaty-1 { top: 15%; left: 6%; }
.hero-floaty-2 { top: 11%; right: 7%; }
.hero-floaty-3 { bottom: calc(var(--nav-h) + 110px); right: 5%; }
.hero-floaty-4 { bottom: calc(var(--nav-h) + 60px); left: 8%; }
.hero-floaty-5 { top: 46%; left: 2.5%; }
.hero-floaty-6 { top: 9%; left: 26%; }
.hero-floaty-7 { top: 6%; right: 27%; }
.hero-floaty-8 { bottom: calc(var(--nav-h) + 80px); left: 25%; }
.hero-floaty-9 { bottom: calc(var(--nav-h) + 70px); right: 24%; }
.hero-floaty-10 { top: 52%; right: 3%; }

.hero-scroll.is-scrubbed .hero-floaties {
  opacity: 1;
  transition: opacity 0.6s var(--ease-out);
}
.hero-scroll.is-scrubbed .hero-floaties.is-revealed {
  opacity: 0;
}

/* Scroll hint: only shown in the enhanced pinned-scrub mode (baseline hero
   already shows its text immediately, so there's nothing to hint at there).
   Disappears the instant the visitor starts scrolling, not at the burst. */
.scroll-hint {
  position: absolute;
  bottom: calc(var(--nav-h) + 30px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 26px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(59, 34, 15, 0.35);
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.scroll-hint i {
  font-size: 28px;
  animation: scroll-hint-bounce 1.6s ease-in-out infinite;
}
@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.hero-scroll.is-scrubbed .scroll-hint {
  opacity: 1;
}
.hero-scroll.is-scrubbed .scroll-hint.is-scrolled {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint i { animation: none; }
}

@media (max-width: 900px) {
  .hero-floaties { display: none; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 40px 24px;
}

.hero-copy {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 1.9rem + 3vw, 4rem);
  max-width: 14ch;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.9), 0 8px 32px rgba(255, 255, 255, 0.85), 0 1px 2px rgba(255, 255, 255, 0.95);
}
.hero-copy p {
  margin-top: 22px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  max-width: 44ch;
  color: var(--ink);
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.9), 0 6px 24px rgba(255, 255, 255, 0.85), 0 1px 2px rgba(255, 255, 255, 0.95);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  filter: drop-shadow(0 8px 20px rgba(59, 34, 15, 0.25));
}

/* Enhanced state: JS adds .is-scrubbed once GSAP ScrollTrigger takes over.
   Baseline (no JS / reduced motion / mobile) always shows hero-copy and the glow immediately. */
.hero-scroll.is-scrubbed { min-height: 220vh; }
.hero-scroll.is-scrubbed .hero-copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  pointer-events: none;
}
.hero-scroll.is-scrubbed .hero-copy.is-revealed {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero-scroll.is-scrubbed .hero-glow {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.hero-scroll.is-scrubbed .hero-glow.is-revealed {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll.is-scrubbed .hero-copy,
  .hero-scroll.is-scrubbed .hero-glow { transition: none; }
}

.floaty { animation: floaty 5s ease-in-out infinite; }
.floaty-delay { animation: floaty 5.6s ease-in-out infinite; animation-delay: 0.4s; }
.floaty-slow { animation: floaty 6.4s ease-in-out infinite; animation-delay: 0.9s; }
.floaty-fast { animation: floaty 4.3s ease-in-out infinite; animation-delay: 1.3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .floaty, .floaty-delay, .floaty-slow, .floaty-fast { animation: none; }
}

/* ---------- Assurance bar ---------- */
.assurance {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.assurance ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  padding: 36px 0;
}
@media (min-width: 768px) {
  .assurance ul { grid-template-columns: repeat(4, 1fr); }
}
.assurance li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.98rem;
}
.assurance li i {
  font-size: 22px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* ---------- Ingredients (pinned scroll-scrub exploded view) ---------- */
.ing-scroll { position: relative; }
.ing-pin { padding: 96px 0; }

.ing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (min-width: 900px) {
  .ing-grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
}

.ing-media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
}
.ing-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ing-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
.ing-media.is-canvas-ready .ing-video { visibility: hidden; }
.ing-media.is-canvas-ready .ing-canvas { display: block; }

.ing-stages { position: relative; display: flex; flex-direction: column; justify-content: center; }
.ing-stage + .ing-stage { margin-top: 56px; }
.ing-stage h2 { max-width: 12ch; }
.ing-stage p { margin-top: 16px; font-size: 1.08rem; line-height: 1.6; max-width: 46ch; color: var(--ink-soft); }

.ing-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 12px;
}
.ing-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.ing-list i { font-size: 24px; color: var(--accent-dark); }
.ing-list span { font-size: 0.8rem; font-weight: 700; color: var(--ink); line-height: 1.3; }

@media (max-width: 640px) {
  .ing-list { grid-template-columns: repeat(2, 1fr); }
}

/* Enhanced state: JS adds .is-scrubbed once GSAP ScrollTrigger takes over */
.ing-scroll.is-scrubbed { min-height: 230vh; }
.ing-scroll.is-scrubbed .ing-pin {
  padding: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
}
.ing-scroll.is-scrubbed .ing-stage {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: 0;
  opacity: 0;
  transform: translateY(calc(-50% + 18px));
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.ing-scroll.is-scrubbed .ing-stage.is-active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .ing-scroll.is-scrubbed .ing-stage { transition: none; }
}

/* Below the 900px breakpoint .ing-grid is single-column, so .ing-media and
   .ing-stages stack as separate rows instead of sitting side by side - there's
   no shared row height for align-items:stretch to give .ing-stages, and since
   its children are all position:absolute (for the cross-fade) it would
   otherwise collapse to ~0 height and center on the seam right under the
   video. Giving it an explicit height keeps the stage text below the video,
   sized to comfortably fit the tallest stage (the 8-item ingredient list). */
@media (max-width: 899px) {
  .ing-scroll.is-scrubbed .ing-stages { min-height: 420px; }
}

/* ---------- Flavor carousel ---------- */
.flavor-scroller {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.flavor-scroller::-webkit-scrollbar { display: none; }

.flavor-track {
  display: flex;
  gap: 22px;
  width: max-content;
}

/* Enhanced state: JS clones the card set once and switches this to a
   self-running marquee. Baseline (no JS / reduced motion) keeps the native
   scroll-snap row above, fully keyboard- and touch-scrollable. */
.flavor-scroller.is-marquee {
  overflow: hidden;
}
.flavor-scroller.is-marquee .flavor-track {
  animation: flavor-marquee 30s linear infinite;
}
.flavor-scroller.is-marquee:hover .flavor-track,
.flavor-scroller.is-marquee:focus-within .flavor-track {
  animation-play-state: paused;
}
@keyframes flavor-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .flavor-scroller.is-marquee .flavor-track { animation: none; }
}

.flavor-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 260px;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flavor-card svg { width: 96px; height: 96px; margin: 0 auto; }
.flavor-card h3 { text-align: center; }
.flavor-card p { text-align: center; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.flavor-card .tag {
  align-self: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.carousel-controls { display: flex; justify-content: flex-end; gap: 12px; margin-top: -6px; }
.carousel-controls[hidden] { display: none; }
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.carousel-btn:hover { background: var(--ink); color: var(--bg); }

/* ---------- Story (full-width editorial, light panel with a watermark illustration) ---------- */
.story {
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.story-art {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
}
.story-art svg { width: min(520px, 60vw); }
.story .container { position: relative; z-index: 1; }
.story-copy { max-width: 640px; }
.story h2 { max-width: 13ch; }
.story p { margin-top: 20px; font-size: 1.08rem; line-height: 1.7; max-width: 58ch; color: var(--ink-soft); }
.story .stat-row { display: flex; gap: 36px; margin-top: 32px; flex-wrap: wrap; }
.story .stat b { display: block; font-family: 'Baloo 2', sans-serif; font-size: 2rem; color: var(--accent); }
.story .stat span { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 767px) {
  .story-art { display: none; }
}

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 768px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
}
.quote-card {
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-card i { font-size: 26px; color: var(--accent-dark); }
.quote-card p { font-size: 1.02rem; line-height: 1.55; color: var(--ink); }
.quote-card .who { font-size: 0.9rem; font-weight: 700; color: var(--ink-soft); }

/* ---------- Kids club (split) ---------- */
.kids-club .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .kids-club .container { grid-template-columns: 0.95fr 1.05fr; gap: 56px; }
}
.kids-club-art { display: flex; justify-content: center; order: -1; }
@media (min-width: 1024px) { .kids-club-art { order: 0; } }
.kids-club-art svg { width: min(400px, 100%); }
.kids-club h2 { max-width: 10ch; }
.kids-club p { margin-top: 18px; font-size: 1.08rem; line-height: 1.6; max-width: 48ch; }
.kids-club .btn { margin-top: 28px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: #FFF3E4;
}
.cta-banner h2 { color: #FFF3E4; max-width: 16ch; margin: 0 auto; }
.cta-banner p { margin-top: 14px; font-size: 1.05rem; max-width: 44ch; margin-left: auto; margin-right: auto; color: rgba(255, 243, 228, 0.85); }
.cta-banner .hero-actions { justify-content: center; margin-top: 30px; }
.cta-banner .btn-primary { background: #FFF3E4; color: var(--accent-dark); }
.cta-banner .btn-primary:hover { box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.35); }
.cta-banner .btn-ghost { border-color: #FFF3E4; }
.cta-banner .btn-ghost:hover { background: var(--accent-dark); color: #FFFFFF; border-color: var(--accent-dark); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  text-align: left;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
}
.faq-q i { font-size: 20px; color: var(--accent-dark); transition: transform 0.3s var(--ease-out); flex-shrink: 0; }
.faq-item.is-open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.faq-a p { padding: 0 4px 22px; font-size: 0.98rem; line-height: 1.6; max-width: 62ch; }
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
}

/* ---------- Newsletter ---------- */
.newsletter { display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.newsletter label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.newsletter-row { display: flex; gap: 10px; }
.newsletter input[type="email"] {
  flex: 1;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 0 18px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
}
.newsletter input[type="email"]::placeholder { color: var(--ink-soft); opacity: 0.7; }
.newsletter input[type="email"]:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.newsletter-note { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-panel);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 32px; }
}
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Baloo 2', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--ink); }
.footer-brand img { width: 38px; height: 38px; border-radius: 999px; }
.footer-tag { margin-top: 14px; font-size: 0.95rem; max-width: 32ch; line-height: 1.55; }
.footer-col h3 { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); font-family: 'Nunito', sans-serif; font-weight: 800; }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.95rem; transition: color 0.25s var(--ease-out); }
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.footer-social a:hover { background: var(--accent); color: var(--on-accent); border-color: transparent; }
.footer-bottom {
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--accent); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Misc ---------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--accent); color: var(--on-accent);
  padding: 12px 20px; border-radius: 999px; font-weight: 700;
  z-index: 100; transition: top 0.25s var(--ease-out);
}
.skip-link:focus { top: 16px; }

.section-eyebrow-head { max-width: 640px; margin: 0 0 48px; }
