/* PlayDay Kids Club, Muscat
   One stylesheet, mobile first, brand tokens at the top so colours are easy to tune. */

:root {
  --cream: #fff8ec;
  --paper: #ffffff;
  --ink: #1f2a5a;
  --ink-soft: #4d5780;
  --sky: #5dbbea;
  --sky-soft: #d9eefb;
  --mint: #6fd3b4;
  --mint-soft: #dcf5ec;
  --pink: #f58fb3;
  --pink-soft: #ffe2ec;
  --sun: #f9c846;
  --sun-soft: #fff1c4;
  --grape: #b48ce6;
  --grape-soft: #ece2fa;
  --peach: #ffa45b;
  --peach-soft: #ffe6d0;
  --red: #f26d6d;

  --radius: 28px;
  --radius-sm: 18px;
  --shadow: 0 12px 32px rgba(31, 42, 90, 0.10);
  --shadow-lg: 0 20px 50px rgba(31, 42, 90, 0.16);

  --font-head: 'Baloo Bhaijaan 2', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', 'Baloo Bhaijaan 2', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: var(--font-head); }

img, svg { max-width: 100%; display: block; }
[hidden] { display: none !important; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.4em;
}

h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Reveal on scroll: only hidden when JS is running, so the page never goes blank without it. */
.js .reveal { opacity: 0; }
.js .reveal.is-visible,
.js.reduced-motion .reveal { opacity: 1; }

/* ---------- Wordmark (stand-in for the real logo file) ---------- */
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.02em;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1;
  text-decoration: none;
  direction: ltr;
}
.wordmark span {
  display: inline-block;
  transform: rotate(var(--r, 0deg));
}
.wordmark span:nth-child(1) { color: var(--sky); --r: -6deg; }
.wordmark span:nth-child(2) { color: var(--mint); --r: 4deg; }
.wordmark span:nth-child(3) { color: var(--pink); --r: -3deg; }
.wordmark span:nth-child(4) { color: var(--sun); --r: 5deg; }
.wordmark span:nth-child(5) { color: var(--grape); --r: -5deg; margin-inline-start: 0.12em; }
.wordmark span:nth-child(6) { color: var(--peach); --r: 4deg; }
.wordmark span:nth-child(7) { color: var(--sky); --r: -4deg; }
.wordmark small {
  font-size: 0.42em;
  font-weight: 700;
  color: var(--ink-soft);
  margin-inline-start: 0.5em;
  letter-spacing: 0.04em;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 42, 90, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
}
.nav-links {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
  margin-inline-start: auto;
}
.nav-links a {
  text-decoration: none;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-links a:hover { background: var(--sun-soft); transform: translateY(-1px); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: auto;
}
.nav-links + .nav-actions { margin-inline-start: 8px; }

.lang-btn {
  border: 2px solid var(--ink);
  background: transparent;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  transition: background 0.2s, color 0.2s;
}
.lang-btn:hover { background: var(--ink); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-sky { background: var(--sky); color: #fff; }
.btn-mint { background: var(--mint); color: var(--ink); }
.btn-wa { background: #25d366; color: #fff; }
.btn-small { min-height: 44px; padding: 8px 18px; font-size: 1rem; }
.btn-icon {
  width: 44px; height: 44px;
  min-height: 0; padding: 0;
  border-radius: 50%;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(64px, 9vw, 120px) 0;
  overflow: hidden;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 5vw, 56px);
}
.section-head p {
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sun-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
[dir="rtl"] .kicker { letter-spacing: 0; }

.bg-sky { background: linear-gradient(180deg, var(--cream) 0%, var(--sky-soft) 100%); }
.bg-mint { background: linear-gradient(180deg, var(--cream) 0%, var(--mint-soft) 100%); }
.bg-pink { background: linear-gradient(180deg, var(--cream) 0%, var(--pink-soft) 100%); }
.bg-grape { background: linear-gradient(180deg, var(--cream) 0%, var(--grape-soft) 100%); }
.bg-sun { background: linear-gradient(180deg, var(--cream) 0%, var(--sun-soft) 100%); }

/* Decorative blobs that drift with scroll (data-depth) */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8ec 0%, #e6f4fd 60%, #dff5ee 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 0 96px;
}
.hero-title {
  font-size: clamp(2.8rem, 9vw, 6rem);
  margin: 0.2em 0 0.25em;
  letter-spacing: -0.01em;
}
.hero-title .w {
  display: inline-block;
  margin-inline: 0.12em;
}
.hero-title .w:nth-child(1) { color: var(--sky); }
.hero-title .w:nth-child(2) { color: var(--pink); }
.hero-title .w:nth-child(3) { color: var(--mint); }
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.hero-cta .btn { min-width: 210px; }
.hero-hint {
  margin-top: 40px;
  font-weight: 700;
  color: var(--ink-soft);
  animation: hint-bob 2.2s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Parallax layers inside the hero (mouse + scroll) */
.hero-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  will-change: transform;
}
.shape {
  position: absolute;
  width: var(--s, 60px);
  height: var(--s, 60px);
  background: var(--c, var(--sun));
  opacity: 0.9;
  will-change: transform;
}
.shape.circle { border-radius: 50%; }
.shape.square { border-radius: 22%; }
.shape.triangle { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.shape.star { clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.shape.ring {
  border-radius: 50%;
  background: transparent;
  border: 12px solid var(--c, var(--pink));
}

.sun {
  position: absolute;
  top: 8%;
  right: 8%;
  width: clamp(110px, 16vw, 190px);
  height: clamp(110px, 16vw, 190px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff3b0, var(--sun));
  box-shadow: 0 0 0 18px rgba(249, 200, 70, 0.18), 0 0 0 40px rgba(249, 200, 70, 0.08);
}
.cloud {
  position: absolute;
  width: var(--w, 160px);
  height: calc(var(--w, 160px) * 0.36);
  background: #fff;
  border-radius: 999px;
  opacity: 0.95;
  filter: drop-shadow(0 8px 16px rgba(31, 42, 90, 0.06));
}
.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 50%;
}
.cloud::before {
  width: 45%; height: 125%;
  left: 18%; top: -60%;
}
.cloud::after {
  width: 34%; height: 95%;
  left: 52%; top: -40%;
}
.hills {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* ---------- Star hunt ---------- */
.star-btn {
  position: absolute;
  z-index: 5;
  width: 52px; height: 52px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  padding: 0;
  filter: drop-shadow(0 4px 8px rgba(249, 200, 70, 0.6));
  animation: twinkle 1.8s ease-in-out infinite;
  transition: transform 0.2s;
}
.star-btn:hover { transform: scale(1.2); }
.star-btn.found {
  animation: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: scale(0);
}
@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(-6deg); }
  50% { transform: scale(1.12) rotate(8deg); }
}
.star-pill {
  position: fixed;
  z-index: 60;
  bottom: 16px;
  inset-inline-start: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
}
.star-pill .n { color: var(--peach); font-size: 1.15rem; }

.toast {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 24px;
  /* Pushed fully below the viewport, whatever its height, so an empty toast never peeks in. */
  transform: translate(-50%, calc(100% + 40px));
  max-width: min(92vw, 460px);
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast:empty { visibility: hidden; }
.toast.show { transform: translate(-50%, 0); }
.toast .btn { margin-top: 10px; }

/* ---------- Mission banner ---------- */
.mission {
  background: var(--ink);
  color: #fff;
  padding: 18px 0;
}
.mission .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}
.mission .stars-row { font-size: 1.4rem; letter-spacing: 2px; }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card::before {
  content: '';
  position: absolute;
  inset-inline-end: -40px;
  top: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--c, var(--sun-soft));
  opacity: 0.7;
}
.card > * { position: relative; }
.card .icon {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  cursor: pointer;
  user-select: none;
}
.card p { color: var(--ink-soft); margin: 0; }
.card .age {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--c, var(--sun-soft));
  margin-bottom: 8px;
}

/* ---------- Cat ---------- */
.cat-section .container {
  display: grid;
  gap: 32px;
  align-items: center;
}
.cat-copy { text-align: center; }
.cat-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px 0 0;
}
.cat {
  width: min(320px, 78vw);
  height: auto;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cat .eye-pupil { transition: transform 0.08s linear; }
.cat .happy-eye { opacity: 0; }
.cat.super-happy .happy-eye { opacity: 1; }
.cat.super-happy .eye-open { opacity: 0; }
.cat .blush { opacity: 0; transition: opacity 0.5s; }
.cat.l1 .blush, .cat.l2 .blush { opacity: 0.35; }
.cat.l3 .blush, .cat.l4 .blush { opacity: 0.6; }
.cat.l5 .blush, .cat.l6 .blush { opacity: 0.85; }
.cat-stats {
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
}
.cat-stats .n { color: var(--pink); font-size: 1.5rem; display: inline-block; }
.cat-hint { color: var(--ink-soft); font-weight: 700; text-align: center; }
.meow {
  position: absolute;
  top: 6%;
  inset-inline-start: 8%;
  background: var(--paper);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--pink);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.meow.show { opacity: 1; transform: scale(1); }
.mood-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.mood-list li {
  background: var(--paper);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

/* ---------- Games ---------- */
.games-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
.game {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 26px;
  position: relative;
  overflow: hidden;
}
.game-head { text-align: center; margin-bottom: 14px; }
.game-head h3 { font-size: 1.6rem; margin-bottom: 2px; }
.game-head p { color: var(--ink-soft); margin: 0; font-weight: 700; }
.game-msg {
  min-height: 1.8em;
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
.game-tip {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.game-actions { text-align: center; margin-top: 12px; }

/* Colour lab */
.pots {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.pot {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 6px solid #fff;
  background: var(--c);
  box-shadow: var(--shadow), inset 0 -10px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.pot:hover { transform: translateY(-4px) scale(1.05); }
/* A white pot on a white ring would be invisible. */
.pot[data-color="white"] { border-color: #e4e7ee; }
.pot.selected {
  transform: scale(1.12);
  box-shadow: 0 0 0 5px var(--ink), var(--shadow-lg);
}
.mix-stage {
  display: grid;
  place-items: center;
  padding: 22px 0 6px;
}
.mix-blob {
  width: 150px; height: 150px;
  border-radius: 46% 54% 52% 48% / 55% 45% 55% 45%;
  background: #e9e4dc;
  box-shadow: inset 0 -16px 30px rgba(0, 0, 0, 0.08), var(--shadow);
  transition: background 0.5s;
  animation: blob-wobble 6s ease-in-out infinite;
}
@keyframes blob-wobble {
  0%, 100% { border-radius: 46% 54% 52% 48% / 55% 45% 55% 45%; }
  50% { border-radius: 54% 46% 48% 52% / 45% 55% 45% 55%; }
}

/* Bubble counter */
.bubble-target {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.bubble-target .big {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  font-size: 1.8rem;
  margin-inline: 6px;
  vertical-align: middle;
}
.bubble-stage {
  position: relative;
  height: 320px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #e9f6ff 0%, #cfe9fb 100%);
  overflow: hidden;
  touch-action: manipulation;
}
.bubble {
  position: absolute;
  bottom: -90px;
  width: var(--s, 60px);
  height: var(--s, 60px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.95) 0 12%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05) 60%, rgba(255, 255, 255, 0.5));
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 0 18px rgba(93, 187, 234, 0.45), 0 6px 14px rgba(31, 42, 90, 0.08);
  cursor: pointer;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
.bubble.popped { pointer-events: none; }
.bubble-count {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 5rem;
  color: rgba(31, 42, 90, 0.16);
  pointer-events: none;
}

/* Shape sorter */
.sorter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.tray, .holes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  justify-items: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  min-height: 210px;
}
.piece, .hole {
  width: 72px; height: 72px;
  display: block;
}
.piece {
  background: var(--c);
  cursor: grab;
  touch-action: none;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 10px rgba(31, 42, 90, 0.18));
  border: 0;
  padding: 0;
}
.piece:active { cursor: grabbing; }
.piece.selected { outline: 4px solid var(--ink); outline-offset: 4px; }
.piece.done { cursor: default; filter: none; }
.hole {
  background: rgba(31, 42, 90, 0.10);
  cursor: pointer;
  transition: background 0.3s;
}
.hole.filled { background: rgba(111, 211, 180, 0.35); }
.shape-circle { border-radius: 50%; }
.shape-square { border-radius: 14%; }
.shape-triangle { clip-path: polygon(50% 0%, 100% 100%, 0% 100%); }
.shape-star { clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.hole.shape-triangle, .hole.shape-star { border-radius: 0; }

/* Memory match */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.mcard {
  aspect-ratio: 1;
  perspective: 800px;
  border: 0;
  background: transparent;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.mcard-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.mcard.flipped .mcard-inner,
.mcard.matched .mcard-inner { transform: rotateY(180deg); }
.mcard-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-size: 2.2rem;
  box-shadow: var(--shadow);
}
.mcard-front {
  background: linear-gradient(135deg, var(--grape), var(--sky));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
}
.mcard-back {
  background: var(--paper);
  transform: rotateY(180deg);
}
.mcard.matched .mcard-back { background: var(--mint-soft); }
.memory-stats {
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}

/* ---------- Parents ---------- */
.why-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.why {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
}
.why .icon {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  border-radius: 16px;
  background: var(--c, var(--sun-soft));
}
.why h3 { margin-bottom: 4px; font-size: 1.2rem; }
.why p { margin: 0; color: var(--ink-soft); }

.day {
  margin-top: clamp(40px, 6vw, 64px);
}
.day h3 { text-align: center; font-size: 1.7rem; }
.day .note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 26px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.timeline li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
[dir="rtl"] .timeline li { padding: 10px 10px 10px 18px; }
.timeline .dot {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: var(--c, var(--sun-soft));
}

/* ---------- Packages ---------- */
.packages {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.pkg {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 26px 26px;
  text-align: center;
  border-top: 10px solid var(--c, var(--sun));
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg .emoji { font-size: 2.4rem; line-height: 1; }
.pkg h3 { font-size: 1.7rem; margin: 0; }
.pkg .price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
}
.pkg .price small { font-size: 0.9rem; color: var(--ink-soft); font-weight: 700; }
.pkg ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 12px;
  color: var(--ink-soft);
  font-weight: 700;
  display: grid;
  gap: 6px;
}
.pkg .soon {
  display: inline-block;
  margin: 0 auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sun-soft);
  font-weight: 800;
  font-size: 0.95rem;
}
.pkg .btn { margin-top: auto; align-self: center; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
}
.contact-card h3 { font-size: 1.3rem; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
}
.contact-list .ico { font-size: 1.4rem; line-height: 1.3; }
.contact-list a { color: var(--sky); text-decoration: none; font-weight: 800; unicode-bidi: isolate; }
.contact-list a:hover { text-decoration: underline; }
.contact-cta {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}
.contact-cta .btn { width: min(100%, 320px); }
.contact-cta p { margin: 0; color: var(--ink-soft); font-weight: 700; }

/* ---------- Footer ---------- */
.footer {
  padding: 40px 0 90px;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 700;
}
.footer .wordmark { font-size: 1.4rem; margin-bottom: 8px; }
.footer p { margin: 4px 0; font-size: 0.95rem; }

/* ---------- Particles ---------- */
.particle {
  position: fixed;
  z-index: 200;
  pointer-events: none;
  font-size: 1.4rem;
  line-height: 1;
  will-change: transform, opacity;
}
.confetti {
  position: fixed;
  z-index: 200;
  top: -20px;
  width: 12px; height: 16px;
  border-radius: 3px;
  pointer-events: none;
  will-change: transform, opacity;
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-section .container { grid-template-columns: 1fr 1fr; }
  .cat-copy { text-align: start; }
  .mood-list { justify-content: flex-start; }
  .timeline { grid-template-columns: repeat(5, 1fr); }
  .timeline li { flex-direction: column; text-align: center; border-radius: var(--radius-sm); padding: 16px 12px; }
  [dir="rtl"] .timeline li { padding: 16px 12px; }
}
/* Six nav links, the wordmark and the buttons are tight between 900 and 1150,
   so everything shrinks a little rather than wrapping onto a second line. */
@media (min-width: 900px) and (max-width: 1150px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 8px 7px; font-size: 0.88rem; }
  .wordmark { font-size: 1.45rem; }
  .wordmark small { display: none; }
}
@media (max-width: 420px) {
  .pot { width: 70px; height: 70px; }
  .piece, .hole { width: 58px; height: 58px; }
  .bubble-stage { height: 280px; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .star-btn, .hero-hint, .mix-blob { animation: none; }
  .mcard-inner { transition-duration: 0.01s; }
  .card:hover, .btn:hover { transform: none; }
}

/* ---------- Cat: SVG part transforms and idle life ---------- */
.cat .eye-open,
.cat .eye-pupil,
.cat .ear,
.cat .tail,
.cat .body,
.cat .head {
  transform-box: fill-box;
  transform-origin: center;
}
.cat .eye-open { transition: transform 0.35s ease; }
.cat .ear { transform-origin: 50% 100%; }
.cat .tail {
  transform-origin: 0% 100%;
  animation: tail-wag 2.4s ease-in-out infinite;
}
.cat .body {
  transform-origin: 50% 100%;
  animation: breathe 3s ease-in-out infinite;
}
.cat .head { animation: head-float 3s ease-in-out infinite; }
.cat.petted .ear-l { animation: ear-l 0.45s ease-in-out; }
.cat.petted .ear-r { animation: ear-r 0.45s ease-in-out; }
.cat .mouth { transition: d 0.3s ease; }
@keyframes tail-wag {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(12deg); }
}
@keyframes breathe {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.035); }
}
@keyframes head-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes ear-l {
  0%, 100% { transform: rotate(0); }
  30% { transform: rotate(-14deg); }
  70% { transform: rotate(8deg); }
}
@keyframes ear-r {
  0%, 100% { transform: rotate(0); }
  30% { transform: rotate(14deg); }
  70% { transform: rotate(-8deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cat .tail, .cat .body, .cat .head { animation: none; }
}

/* ---------- Sparkle ---------- */
.tw {
  position: absolute;
  line-height: 1;
  will-change: transform, opacity;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}
.rainbow {
  position: absolute;
  left: 50%;
  top: -34px;
  width: min(640px, 94vw);
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.rainbow path { fill: none; stroke-width: 24; stroke-linecap: round; }
.spark {
  position: fixed;
  z-index: 199;
  pointer-events: none;
  font-size: 18px;
  line-height: 1;
  margin: -9px 0 0 -9px;
  will-change: transform, opacity;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}
.stars-row i { display: inline-block; font-style: normal; will-change: transform; }
.wordmark span:nth-child(1) { --i: 0; }
.wordmark span:nth-child(2) { --i: 1; }
.wordmark span:nth-child(3) { --i: 2; }
.wordmark span:nth-child(4) { --i: 3; }
.wordmark span:nth-child(5) { --i: 4; }
.wordmark span:nth-child(6) { --i: 5; }
.wordmark span:nth-child(7) { --i: 6; }
.wordmark:hover span {
  animation: letter-bounce 0.6s ease both;
  animation-delay: calc(var(--i, 0) * 60ms);
}
@keyframes letter-bounce {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  40% { transform: translateY(-9px) rotate(var(--r, 0deg)); }
}
.hero-cta .btn { position: relative; overflow: hidden; }
.hero-cta .btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-20deg);
  animation: shine 4.5s ease-in-out infinite;
}
.hero-cta .btn:nth-child(2)::after { animation-delay: 1.2s; }
@keyframes shine {
  0%, 65% { left: -60%; }
  100% { left: 130%; }
}
.cat .tail { animation-duration: var(--wag, 2.4s); }

/* ---------- Age tiles (home page): the one thing a child needs to choose ---------- */
.age-tiles {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
}
.age-tile {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px 10px 18px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 10px solid var(--c);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.age-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.age-tile .age-emoji { font-size: 3rem; line-height: 1; }
.age-tile strong { font-family: var(--font-head); font-size: 1.35rem; direction: ltr; white-space: nowrap; }
.age-more { text-align: center; margin: 24px 0 0; }

/* A second heading inside a section: smaller than the section title, no kicker. */
.section-head.sub { margin-top: clamp(40px, 6vw, 72px); }
.section-head.sub h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 6px; }

/* ---------- Guide CTA card (home page) ---------- */
.guide-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 28px auto 0;
  max-width: 860px;
  background: linear-gradient(135deg, #fff 0%, var(--sun-soft) 100%);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.guide-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.guide-cta-icon { font-size: 2.6rem; line-height: 1; }
.guide-cta-text { flex: 1; display: grid; gap: 2px; }
.guide-cta-text strong { font-family: var(--font-head); font-size: 1.25rem; }
.guide-cta-text span { color: var(--ink-soft); font-weight: 700; }
@media (max-width: 640px) {
  .guide-cta { flex-direction: column; text-align: center; }
}

/* ---------- Guide page ---------- */
.guide-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(44px, 7vw, 84px) 0 26px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sun-soft) 100%);
}
.guide-hero .container { position: relative; z-index: 1; }
.guide-hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
.guide-hero .lead {
  max-width: 740px;
  margin: 0 auto 26px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.guide-search { max-width: 560px; margin: 0 auto 8px; }
.guide-search input {
  width: 100%;
  min-height: 58px;
  border-radius: 999px;
  border: 3px solid #fff;
  padding: 12px 24px;
  font: inherit;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}
.guide-search input:focus { outline: 3px solid var(--sky); outline-offset: 2px; }
.guide-count { min-height: 1.5em; margin: 0 0 6px; font-weight: 700; color: var(--ink-soft); }
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.chip:hover { transform: translateY(-2px); }
.chip-featured { background: var(--ink); color: #fff; }
.guide-body { padding: clamp(32px, 5vw, 60px) 0 10px; }
.gcat { scroll-margin-top: 90px; margin-bottom: clamp(40px, 6vw, 64px); }
.gcat-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.gcat-icon { font-size: 2.6rem; line-height: 1; flex: 0 0 auto; }
.gcat-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 4px; }
.gcat-head p { color: var(--ink-soft); margin: 0; font-weight: 700; }
.gcat-head .kicker { margin-bottom: 8px; }
.gcat.featured {
  background: linear-gradient(135deg, #fff 0%, var(--sun-soft) 100%);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.qa-list { display: grid; gap: 10px; }
.qa {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
}
.qa summary::-webkit-details-marker { display: none; }
.qa-q { flex: 1; }
.qa-age {
  font-size: 0.8rem;
  background: var(--sky-soft);
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.qa-plus {
  position: relative;
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sun-soft);
  transition: transform 0.3s;
}
.qa-plus::before,
.qa-plus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 12px; height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}
.qa-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.qa[open] .qa-plus { transform: rotate(45deg); }
.qa[open] summary { background: var(--cream); }
.qa-body { padding: 6px 18px 20px; }
.qa-body h4 {
  margin: 14px 0 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
[dir="rtl"] .qa-body h4 { letter-spacing: 0; }
.qa-body p { margin: 0 0 6px; }
.qa-body ul { margin: 0; padding-inline-start: 24px; display: grid; gap: 5px; }
.qa-body ul.try li::marker { content: '✔  '; color: var(--mint); }
.qa-body ul.avoid li::marker { content: '✖  '; color: var(--pink); }
.qa-help {
  margin-top: 14px;
  background: var(--mint-soft);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}
.qa-sources { margin: 14px 0 0; font-size: 0.85rem; color: var(--ink-soft); }
.qa-sources a { color: var(--sky); text-decoration: none; font-weight: 700; }
.qa-sources a:hover { text-decoration: underline; }
.extras { margin: 6px 0 22px; }
.extras h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feeling-words { display: flex; flex-wrap: wrap; gap: 8px; }
.fw {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  box-shadow: var(--shadow);
  font-weight: 800;
}
[dir="rtl"] .fw { padding: 6px 8px 6px 12px; }
.fw-emoji { font-size: 1.3rem; line-height: 1; }
.fw-alt { font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; }
.habits { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; grid-template-columns: 1fr; }
.habits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.habits li::before { content: '☑'; color: var(--mint); font-size: 1.2rem; line-height: 1.2; }
@media (min-width: 700px) { .habits { grid-template-columns: 1fr 1fr; } }
.guide-note { padding: 0 0 clamp(48px, 7vw, 80px); }
.guide-note .disclaimer {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}
.guide-ask {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.guide-ask h3 { font-size: 1.5rem; }
.guide-ask p { color: rgba(255, 255, 255, 0.8); font-weight: 700; }
.guide-ask .btn { margin: 6px 6px 0; }
@media (prefers-reduced-motion: reduce) {
  .hero-cta .btn::after, .wordmark:hover span { animation: none; }
}

/* ---------- 404 ---------- */
.nf {
  min-height: calc(100svh - 68px);
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sky-soft) 100%);
  padding: 40px 0 80px;
}
.nf-balloons {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
}
.nf-balloons span { display: inline-block; animation: nf-float 3.5s ease-in-out infinite; }
.nf-balloons span:nth-child(2) { animation-delay: 0.5s; font-size: 1.2em; }
.nf-balloons span:nth-child(3) { animation-delay: 1s; }
@keyframes nf-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}
.nf-code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4rem, 16vw, 9rem);
  line-height: 1;
  margin: 0;
  color: var(--sky);
  text-shadow: 4px 4px 0 var(--pink-soft);
}
.nf h1 { font-size: clamp(1.6rem, 4.5vw, 2.6rem); margin-top: 10px; }
.nf-text {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.nf-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
@media (prefers-reduced-motion: reduce) { .nf-balloons span { animation: none; } }

/* Colour lab: the colours you have discovered so far */
.mix-found {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.mix-found .mix-chip {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(31, 42, 90, 0.08);
  box-shadow: inset 0 0 0 2px rgba(31, 42, 90, 0.06);
  transition: background 0.35s, transform 0.35s;
}
.mix-found .mix-chip.got {
  background: var(--c);
  box-shadow: 0 3px 8px rgba(31, 42, 90, 0.18), inset 0 0 0 2px #fff;
  transform: scale(1.12);
}
.mix-tally {
  margin: 8px 0 0;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (max-width: 420px) {
  .pots { gap: 12px; }
  .mix-found .mix-chip { width: 22px; height: 22px; }
}

@media (min-width: 700px) { .packages { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .packages { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Package cards, designed to be read at a glance ---------- */
.pkg {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px;
  border-top: none;
  gap: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-top {
  background: var(--c-soft);
  padding: 24px 20px 18px;
  display: grid;
  gap: 6px;
  border-bottom: 6px solid var(--c);
}
.pkg-top .emoji { font-size: 2.2rem; line-height: 1; }
.pkg-top h3 { font-size: 1.5rem; margin: 0; color: var(--ink); }
.pkg-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  direction: ltr;
}
.pkg-price .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pkg-price .cur { font-weight: 800; font-size: 1.05rem; color: var(--ink-soft); }
.pkg-hours {
  align-self: center;
  margin-top: 12px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--c-soft);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
}
.pkg-per { margin-top: 10px; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); }
.pkg-facts {
  list-style: none;
  margin: 18px 0 20px;
  padding: 0 22px;
  display: grid;
  gap: 10px;
  text-align: start;
  font-weight: 800;
  color: var(--ink);
}
.pkg-facts li { display: flex; align-items: center; gap: 12px; }
.pkg-facts .ic {
  flex: none;
  min-width: 34px;
  height: 34px;
  padding: 0 6px;
  border-radius: 12px;
  background: var(--c-soft);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}
.pkg-best { box-shadow: var(--shadow-lg); }
@media (min-width: 1000px) { .pkg-best { transform: translateY(-10px) scale(1.03); } .pkg-best:hover { transform: translateY(-14px) scale(1.03); } }
.pkg .ribbon {
  position: absolute;
  top: 18px;
  inset-inline-end: -38px;
  transform: rotate(45deg);
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 44px;
  pointer-events: none;
}
[dir="rtl"] .pkg .ribbon { transform: rotate(-45deg); }

/* ---------- Drop-in: laid out like a package card ---------- */
.dropin {
  --c: var(--mint);
  --c-soft: var(--mint-soft);
  margin-top: 26px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dropin:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dropin-head {
  background: var(--c-soft);
  border-bottom: 6px solid var(--c);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: start;
}
.dropin-head .emoji { font-size: 2.4rem; line-height: 1; flex: none; }
.dropin-head h3 { margin: 0; font-size: 1.5rem; color: var(--ink); }
.dropin-head p { margin: 2px 0 0; font-weight: 700; color: var(--ink-soft); }
.dropin-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 4px;
}
.dropin-price .pkg-price { margin: 0; }
.dropin-facts { margin: 16px 0 22px; }
@media (min-width: 900px) {
  .dropin { grid-template-columns: 1.15fr .8fr 1.25fr; }
  .dropin-head { border-bottom: none; border-inline-end: 6px solid var(--c); }
  .dropin-price { padding: 20px 10px; }
  .dropin-facts { margin: 0; padding: 22px 28px; align-content: center; }
}

/* ---------- How the hours work: one small card per rule ---------- */
.rules { margin-top: 38px; }
.rules-title { text-align: center; font-size: 1.55rem; margin: 0 0 18px; color: var(--ink); }
.rules-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.rule {
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--c);
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: start;
  transition: transform .25s ease, box-shadow .25s ease;
}
.rule:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rule .ic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--c-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  line-height: 1;
}
.rule b { font-family: var(--font-head); font-size: 1.12rem; line-height: 1.2; color: var(--ink); }
.rule p { margin: 0; color: var(--ink-soft); font-weight: 600; font-size: .95rem; line-height: 1.45; }
@media (min-width: 640px) {
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .rule:last-child { grid-column: 1 / -1; }
}
@media (min-width: 1000px) {
  .rules-grid { grid-template-columns: repeat(5, 1fr); }
  .rule:last-child { grid-column: auto; }
}

/* ---------- The "booked separately" line ---------- */
.pkg-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink-soft);
  font-weight: 700;
  text-align: center;
}
