/* ==========================================================================
   Groovy Grooming — "Storytime" redesign
   Tokens, type scale and signature rules per design_handoff_storytime.
   ========================================================================== */

:root {
  /* colour */
  --cream: #f7efe1;
  --cream-light: #fdf8ee;
  --paper: #fffdf7;
  --purple: #8c3287;
  --purple-light: #a94ba3;
  --green: #279e54;
  --green-tint: #cdeed6;
  --green-tint-2: #e2f4e8;
  --daisy: #eec83f;
  --daisy-light: #f5d96e;
  --ink: #3a1f3d;
  --muted: #6b5570;
  --lilac: #eecdf0;
  --brown: #7a5a2e;
  --brown-deep: #5d452a;

  /* type */
  --f-head: 'Baloo 2', system-ui, sans-serif;
  --f-hand: 'Caveat', cursive;
  --f-body: 'Nunito Sans', system-ui, sans-serif;
  --f-mono: 'Space Mono', ui-monospace, monospace;

  /* signature style */
  --bd: 3px solid var(--ink);
  --bd-thin: 2px solid var(--ink);
  --sh-btn: 0 5px 0 var(--ink);
  --sh-card: 0 6px 0 var(--ink);
  --sh-art: 0 10px 0 var(--ink), 0 34px 60px -24px rgba(58, 31, 61, .45);

  --pad-y: clamp(40px, 5vw, 74px);
  --pad-x: clamp(18px, 4vw, 54px);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ── base ─────────────────────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* Any `display` declaration outranks the hidden attribute, which has bitten
   this codebase twice — the mobile menu, then the admin sign-in gate. */
[hidden] { display: none !important; }
h1, h2, h3 { font-family: var(--f-head); font-weight: 800; margin: 0; }
::selection { background: var(--purple); color: var(--cream); }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 8px;
}

.gg-skip {
  position: fixed; top: -100px; left: 20px; z-index: 100;
  background: var(--paper); border: var(--bd); border-radius: 999px;
  padding: 12px 20px; font-family: var(--f-head); font-weight: 800;
  transition: top .2s;
}
.gg-skip:focus { top: 20px; }

/* ── layout helpers ───────────────────────────────────────────────────── */

.wrap { max-width: 1200px; margin-inline: auto; }
.wrap--narrow { max-width: 1000px; }
.wrap--tight { max-width: 860px; }

.sec { position: relative; overflow: hidden; padding: var(--pad-y) var(--pad-x); }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); }
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

/* keep decorative layers behind content */
.sec > .wrap { position: relative; z-index: 2; }

/* ── type primitives ──────────────────────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-family: var(--f-hand);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  color: var(--purple);
}
.eyebrow--green  { color: var(--green); }
.eyebrow--yellow { color: var(--daisy); }
.eyebrow--lilac  { color: var(--lilac); }
.eyebrow--muted  { color: var(--muted); }
.eyebrow--brown  { color: var(--brown); }
.eyebrow--mint   { color: var(--green-tint); }
.eyebrow--sm     { font-size: 21px; }
.eyebrow--lg     { font-size: clamp(24px, 3vw, 34px); }

h1 { font-size: clamp(42px, 6.8vw, 88px); line-height: 1.02; margin: 12px 0 0; }
h2 { font-size: clamp(30px, 4.4vw, 54px); line-height: 1.06; margin: 6px 0 0; }
h3 { font-size: 24px; margin: 2px 0 8px; }

.ink-purple { color: var(--purple); }

.lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); line-height: 1.6; max-width: 42ch; margin: 18px 0 0; }
.body { font-size: 16.5px; color: var(--muted); line-height: 1.65; max-width: 46ch; margin: 14px 0 0; }
.body--onGreen { color: var(--green-tint-2); max-width: 44ch; }

.mono { font-family: var(--f-mono); font-size: 12.5px; }
.mono--mint  { color: var(--green-tint); }
.mono--lilac { color: var(--lilac); }

.signature { font-family: var(--f-hand); font-weight: 700; font-size: 28px; color: var(--green); margin-top: 18px; }

.sechead--center { text-align: center; margin-bottom: 44px; }
.sechead--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 14px; margin-bottom: 38px;
}
.sechead__note { max-width: 34ch; color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }

/* ── buttons ──────────────────────────────────────────────────────────── */

.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px;
  border: var(--bd-thin);
  border-radius: 999px;
  font-family: var(--f-head); font-weight: 800; font-size: 18px;
  white-space: nowrap;
  box-shadow: var(--sh-btn);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, scale .18s var(--ease);
  will-change: transform, scale;
}
/*
 * Soft-body hover: the button wobbles like jelly on entry and settles, rather
 * than sliding up. Everything animates the independent `scale` property, so it
 * composes with the inline transform data-magnetic writes instead of fighting it.
 */
.btn:hover  { box-shadow: 0 8px 0 var(--ink); animation: gg-jelly-hover .55s cubic-bezier(.2, .7, .2, 1); }
.btn:active { box-shadow: 0 2px 0 var(--ink); scale: 1.09 0.9; animation: none; }

@keyframes gg-jelly-hover {
  0%   { scale: 1 1; }
  26%  { scale: 1.11 0.9; }
  50%  { scale: 0.96 1.06; }
  72%  { scale: 1.035 0.98; }
  88%  { scale: 0.99 1.01; }
  100% { scale: 1 1; }
}

/* the release spring, after a press — a longer, wobblier version of the above */
.btn.is-jelly { animation: gg-jelly .5s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes gg-jelly {
  0%   { scale: 1.12 0.86; }
  30%  { scale: 0.94 1.08; }
  52%  { scale: 1.05 0.96; }
  72%  { scale: 0.985 1.015; }
  100% { scale: 1 1; }
}

.btn--purple { background: var(--purple); color: var(--paper); }
.btn--purple:hover { background: var(--purple-light); }
.btn--paper  { background: var(--paper); color: var(--ink); }
.btn--green-ink { color: var(--green); }
.btn--ghost {
  background: transparent; color: var(--paper);
  border-color: var(--paper); box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 253, 247, .14); box-shadow: none; }
.btn--sm { padding: 10px 20px; font-size: 14px; box-shadow: 0 4px 0 var(--ink); }
.btn--lg { padding: 17px 32px; font-size: 19px; }

.btnrow { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btnrow--center { justify-content: center; margin-top: 30px; }
.btnrow--tight { margin-top: 24px; align-items: center; }

/* ── nav ──────────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 14px; z-index: 40;
  /* capped to the content width, with the gutter preserved on narrow screens */
  width: calc(100% - 2 * clamp(14px, 3vw, 40px));
  max-width: 1200px;
  margin: 14px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 9px 18px;
  background: var(--paper);
  border: var(--bd-thin);
  border-radius: 999px;
  box-shadow: 0 6px 0 rgba(58, 31, 61, .16);
  transition: padding .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.nav.is-stuck {
  padding: 6px 15px;
  box-shadow: 0 4px 0 rgba(58, 31, 61, .22), 0 18px 40px -22px rgba(58, 31, 61, .5);
  background: rgba(255, 253, 247, .93);
  backdrop-filter: blur(8px);
}
.nav.is-stuck .nav__logo img { height: 37px; }

.nav__logo { flex: none; }
.nav__logo img { height: 44px; width: auto; transition: height .3s var(--ease); }

/* ~2x the original 14.5px at full width, scaling down so the labels never
   wrap to a second line inside the pill */
.nav__links { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 24px); font-weight: 800; font-size: clamp(15px, 1.85vw, 25px); }
.nav__links a { position: relative; padding: 4px 0; white-space: nowrap; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--purple); border-radius: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

/* reading-progress ribbon tucked inside the pill */
.nav__progress {
  position: absolute; left: 18px; right: 18px; bottom: 3px; height: 3px;
  border-radius: 3px; overflow: hidden; pointer-events: none;
}
.nav__progress i {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--daisy), var(--purple));
  border-radius: 3px;
  transition: width .1s linear;
}

.nav__toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 40px; padding: 0 10px;
  background: var(--daisy); border: var(--bd-thin); border-radius: 999px;
  box-shadow: 0 3px 0 var(--ink); cursor: pointer;
}
.nav__toggle span {
  display: block; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.navmenu[hidden] { display: none; }
.navmenu {
  position: sticky; top: 76px; z-index: 39;
  width: calc(100% - 2 * clamp(14px, 3vw, 40px));
  max-width: 1200px;
  margin: 10px auto 0;
  display: flex; flex-direction: column;
  background: var(--paper); border: var(--bd-thin); border-radius: 24px;
  box-shadow: var(--sh-card);
  overflow: hidden;
  animation: gg-drop .32s var(--ease) both;
}
.navmenu a {
  padding: 15px 22px;
  font-family: var(--f-head); font-weight: 800; font-size: 17px;
  border-bottom: 2px solid rgba(58, 31, 61, .1);
}
.navmenu a:last-child { border-bottom: 0; }
.navmenu__phone { color: var(--purple); }

@keyframes gg-drop { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

/* ── hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 6vw, 84px) var(--pad-x) clamp(30px, 4vw, 56px);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(26px, 4vw, 60px); align-items: center;
}
.hero__sun {
  position: absolute; top: -38px; right: 22%;
  width: 170px; height: 170px; opacity: .9; pointer-events: none;
}
.hero__art { justify-self: end; position: relative; width: 100%; max-width: 420px; }

.trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 24px; font-weight: 800; font-size: 14px; color: var(--muted);
}
.trust__stars { display: inline-flex; gap: 2px; color: var(--daisy); font-size: 17px; }
.trust__stars i {
  font-style: normal; display: inline-block;
  opacity: 0; transform: scale(.4) rotate(-40deg);
}
.trust.is-lit i { animation: gg-pop .5s var(--ease) both; }
.trust.is-lit i:nth-child(2) { animation-delay: .09s; }
.trust.is-lit i:nth-child(3) { animation-delay: .18s; }
.trust.is-lit i:nth-child(4) { animation-delay: .27s; }
.trust.is-lit i:nth-child(5) { animation-delay: .36s; }
.trust b { color: var(--ink); font-size: 16px; }
.trust__quiet { font-weight: 700; opacity: .8; }

@keyframes gg-pop {
  0%   { opacity: 0; transform: scale(.4) rotate(-40deg); }
  60%  { opacity: 1; transform: scale(1.25) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ── image frames ─────────────────────────────────────────────────────── */

.frame {
  position: relative; margin: 0; overflow: hidden;
  border: var(--bd); background: var(--cream-light);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }

.frame--arch-tall {
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--sh-art);
}
.frame--arch-tall.frame--sm { border-radius: 170px 170px 24px 24px; box-shadow: 0 8px 0 var(--ink); }
.frame--arch {
  aspect-ratio: 5 / 4;
  border-radius: 130px 130px 18px 18px;
  border-width: 2px;
  margin-bottom: 18px;
}
.frame--circle { aspect-ratio: 1; border-radius: 50%; box-shadow: 0 8px 0 var(--ink); }
.frame--map {
  aspect-ratio: 1; border-radius: 30px; box-shadow: 0 8px 0 var(--ink);
  background: var(--green);
}
.frame--map svg { display: block; width: 100%; height: 100%; }

.chapter:hover .frame img,
.groomer__art:hover .frame img,
.cats__art:hover .frame img { transform: scale(1.06); }

/* ── badges & stickers ────────────────────────────────────────────────── */

.badge {
  position: absolute;
  font-family: var(--f-hand); font-weight: 700; font-size: 20px;
  padding: 8px 14px; border: var(--bd-thin); border-radius: 14px;
  box-shadow: 0 4px 0 var(--ink);
  white-space: nowrap;
}
.badge--yellow { background: var(--daisy); color: var(--ink); }
.badge--purple { background: var(--purple); color: var(--paper); }
.badge--hero    { top: 16px; right: -14px; transform: rotate(6deg); animation: gg-wobble 5s ease-in-out infinite; }
.badge--groomer { bottom: 2px; right: -10px; transform: rotate(-5deg); font-size: 19px; }
.badge--cat     { top: -12px; left: -12px; transform: rotate(-6deg); font-size: 19px; animation: gg-wobble 6s ease-in-out infinite; }

.sticker--paw {
  position: absolute; bottom: -24px; left: -30px;
  width: 62px; height: 62px;
  rotate: -18deg;
  animation: gg-bob 6s ease-in-out infinite;
  filter: drop-shadow(0 3px 0 rgba(58, 31, 61, .22));
}

/* ── green band ───────────────────────────────────────────────────────── */

.band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: var(--cream);
  padding: 13px 18px;
  border-top: var(--bd); border-bottom: var(--bd);
  font-family: var(--f-head); font-weight: 800; font-size: clamp(14px, 1.6vw, 19px);
  text-align: center;
}
.band i { font-style: normal; opacity: .55; }
.band span { transition: transform .3s var(--ease); }
.band span:hover { transform: translateY(-3px) rotate(-2deg); }
.band__cloud { animation: gg-bob 7s ease-in-out infinite; }
.band__cloud:last-child { animation-duration: 9s; animation-direction: reverse; }

/* ── chapters ─────────────────────────────────────────────────────────── */

.sec--chapters { background: var(--cream-light); }

.chapter {
  position: relative;
  background: var(--paper);
  border: var(--bd); border-radius: 30px;
  padding: 26px;
  box-shadow: var(--sh-card);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chapter:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 12px 0 var(--ink); }
.chapter:nth-child(2n):hover { transform: translateY(-6px) rotate(1deg); }
.chapter p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }
/* sits half outside the card so the bubbles rise against the section bg
   rather than getting lost in the busy bath photo behind it */
.chapter__bubbles {
  position: absolute; top: -40px; right: -12px;
  width: 104px; height: 136px; pointer-events: none; z-index: 3;
}
/* recoloured in JS (data-lottie-map); the outline gives them edges on paper */
.chapter__bubbles svg { filter: drop-shadow(0 0 1.4px rgba(58, 31, 61, .45)); }

/* ── services / tales ─────────────────────────────────────────────────── */

.sec--tales { background: linear-gradient(170deg, #f7efe1 0%, #faf1d8 60%, #f5e7c2 100%); }

.tale {
  position: relative;
  border: var(--bd);
  border-left: 14px solid var(--purple);
  border-radius: 14px 26px 26px 14px;
  padding: 28px;
  box-shadow: var(--sh-card);
  transition: transform .2s ease, box-shadow .3s var(--ease);
}
.tale:hover { box-shadow: 0 10px 0 var(--ink); }
.tale--one   { background: var(--paper); }
.tale--two   { background: var(--daisy); border-left-color: var(--ink); }
.tale--three { background: var(--green); color: var(--cream); border-left-color: var(--ink); }

.tale h3 { font-size: 27px; margin: 2px 0 6px; }
.tale p { font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; color: var(--muted); }
.tale--two p { color: var(--brown-deep); }
.tale--three p { color: var(--green-tint-2); }

.price { font-family: var(--f-head); font-weight: 800; font-size: 30px; margin-bottom: 14px; color: var(--purple); }
.price small { font-size: 14px; font-weight: 700; color: var(--muted); margin-left: 4px; }
.tale--two   .price { color: var(--ink); }
.tale--two   .price small { color: var(--brown); }
.tale--three .price { color: var(--daisy); }
.tale--three .price small { color: var(--green-tint); }

.talelink {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-weight: 800; font-size: 16px; color: var(--purple);
}
.talelink::after { content: ''; }
.tale--two   .talelink { color: var(--ink); }
.tale--three .talelink { color: var(--daisy); }
.talelink { transition: gap .25s var(--ease); }
.talelink:hover { gap: 12px; }

/* the bookmark spine peeks out on hover */
.tale__ribbon {
  position: absolute; left: -14px; top: 26px;
  width: 14px; height: 46px;
  background: inherit;
  border-radius: 0 0 4px 4px;
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s var(--ease);
}
.tale--one   .tale__ribbon { background: var(--purple); }
.tale--two   .tale__ribbon,
.tale--three .tale__ribbon { background: var(--ink); }
.tale:hover .tale__ribbon { transform: scaleY(1); }

/* ── groomer ──────────────────────────────────────────────────────────── */

.sec--groomer { background: var(--cream-light); }
.groomer__art { justify-self: center; position: relative; width: 100%; max-width: 330px; }

.creds { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 8px; }
.creds li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; color: var(--muted); line-height: 1.5;
}
.creds li::before {
  content: '✿'; position: absolute; left: 0; top: -1px;
  color: var(--green); font-size: 15px;
}

/* ── reviews ──────────────────────────────────────────────────────────── */

.sec--reviews { background: var(--cream); }

.review {
  margin: 0;
  border: var(--bd); border-radius: 24px; padding: 22px;
  box-shadow: 0 5px 0 var(--ink);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review--paper  { background: var(--paper); transform: rotate(-1.6deg); }
.review--yellow { background: var(--daisy); transform: rotate(1.3deg); }
.review--green  { background: var(--green); color: var(--cream); transform: rotate(-.9deg); }
.review:hover { transform: rotate(0) translateY(-5px); box-shadow: 0 10px 0 var(--ink); }

.review__stars { color: var(--daisy); font-size: 16px; letter-spacing: 2px; }
.review--yellow .review__stars { color: var(--purple); }
.review blockquote { font-size: 15.5px; font-weight: 700; line-height: 1.5; margin: 10px 0 12px; }
.review figcaption { font-family: var(--f-hand); font-weight: 700; font-size: 19px; color: var(--muted); }
.review--yellow figcaption { color: var(--brown); }
.review--green figcaption { color: var(--green-tint); }

/* ── cats ─────────────────────────────────────────────────────────────── */

.sec--cats { background: linear-gradient(180deg, #fdf8ee 0%, #f9eff8 55%, #f2e2f1 100%); }
.cats__art { justify-self: center; position: relative; width: 100%; max-width: 340px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  background: var(--paper); border: var(--bd-thin); border-radius: 999px;
  padding: 8px 14px;
  transition: transform .25s var(--ease), background .25s;
}
.chip:hover { transform: translateY(-3px) rotate(-2deg); background: var(--daisy); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */

.sec--faq { background: linear-gradient(180deg, #f7efe1 0%, #fdf6e6 100%); }
.wrap--tight.wrap { max-width: 820px; }

.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--paper);
  border: var(--bd-thin); border-radius: 22px;
  box-shadow: 0 4px 0 var(--ink);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.faq__item.is-open { box-shadow: 0 6px 0 var(--purple); }
.faq__q {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  width: 100%; padding: 18px 22px;
  border: 0; background: transparent; cursor: pointer; text-align: left;
  font-family: var(--f-head); font-weight: 800; font-size: 17px; color: var(--ink);
}
.faq__plus {
  flex: none; font-size: 22px; color: var(--purple); line-height: 1;
  transition: transform .3s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__plus { transform: rotate(45deg); }

/* animate the answer open without measuring heights */
.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .34s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > p {
  overflow: hidden;
  margin: 0; padding: 0 22px;
  font-size: 15px; color: var(--muted); line-height: 1.6;
  opacity: 0; transition: opacity .3s .06s, padding .34s var(--ease);
}
.faq__item.is-open .faq__a > p { opacity: 1; padding-bottom: 18px; }

/* ── service area ─────────────────────────────────────────────────────── */

.sec--area {
  background: linear-gradient(165deg, #35b467 0%, #279e54 55%, #1e8747 100%);
  color: var(--cream);
  border-top: var(--bd);
}
.sec--area h2 { color: var(--cream); }
.area__map { justify-self: center; width: 100%; max-width: 380px; }

/* The two-column version (homepage) sits left beside the map. The single-column
   version centres as a unit — its body and buttons were already centred while
   the eyebrow and heading were left, which read as a mistake. */
.sec--area > .wrap--tight { text-align: center; }

/* ── final CTA ────────────────────────────────────────────────────────── */

.sec--end {
  background: linear-gradient(180deg, #a04b9b 0%, #8c3287 42%, #5c2360 100%);
  padding: clamp(48px, 6vw, 88px) var(--pad-x);
  text-align: center;
}
.end__title { font-size: clamp(38px, 6.4vw, 84px); line-height: 1; color: var(--paper); margin: 10px 0 0; }
.end__hours { margin-top: 20px; }
/* the Lottie paw ships in brand purple — recoloured to lilac in JS so it
   reads against the purple dusk gradient (see data-lottie-map) */
.end__paw { position: absolute; bottom: 14px; left: 6%; width: 90px; height: 90px; opacity: .85; pointer-events: none; }

/* ── footer ───────────────────────────────────────────────────────────── */

.foot { background: var(--ink); color: var(--cream); padding: clamp(36px, 4vw, 54px) var(--pad-x); }
.foot__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.foot__sign { font-family: var(--f-hand); font-size: 22px; color: #d9c3dc; }

/* ── decorative layers ────────────────────────────────────────────────── */

/*
 * Clouds are a flat-bottomed body plus three overlapping lobes. The lobes are
 * sized in % of the body width so every cloud keeps the same proportions, and
 * the parent's opacity groups them — overlaps never show a seam.
 */
.cloud {
  position: absolute;
  pointer-events: none;
  background: var(--paper);
  border-radius: 60% 60% 46% 46% / 52% 52% 40% 40%;
}
.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}
/* the big lobe, left of centre — plus a third small puff via its box-shadow */
.cloud::before {
  width: 56%;
  aspect-ratio: 1;
  left: 6%;
  bottom: 26%;
  box-shadow: 128% -26% 0 -22% var(--paper);
}
/* the shoulder on the right */
.cloud::after {
  width: 40%;
  aspect-ratio: 1;
  right: 5%;
  bottom: 24%;
}

/* Paper on cream is nearly invisible, so the hero pair gets a soft ink halo —
   drop-shadow follows the whole silhouette, so the lobe seams stay hidden.
   Kept light on purpose: these sit behind the headline and shouldn't compete. */
.cloud--a,
.cloud--b {
  filter:
    drop-shadow(0 -1.4px 0 rgba(58, 31, 61, .2)) drop-shadow(0 1.4px 0 rgba(58, 31, 61, .2))
    drop-shadow(-1.4px 0 0 rgba(58, 31, 61, .2)) drop-shadow(1.4px 0 0 rgba(58, 31, 61, .2));
}

.cloud--a { top: 104px;   left: 4%;   width: 112px; height: 32px; opacity: .95; animation: gg-drift 11s ease-in-out infinite; }
/* sits in the open gap between the headline column and the hero art */
.cloud--b { top: 298px;   left: 46%;  width: 92px;  height: 26px; opacity: .85; animation: gg-drift 14s ease-in-out infinite reverse; }
.cloud--c { top: 52px;    left: 8%;   width: 124px; height: 38px; opacity: .2;  animation: gg-drift 13s ease-in-out infinite; }
.cloud--d { bottom: 52px; right: 6%;  width: 102px; height: 32px; opacity: .16; animation: gg-drift 16s ease-in-out infinite reverse; }
.cloud--e { top: 48px;    right: 8%;  width: 112px; height: 34px; opacity: .15; animation: gg-drift 15s ease-in-out infinite; }

.motif { position: absolute; pointer-events: none; line-height: 1; will-change: transform; }
.motif--a { top: 10%; right: 4%; font-size: 54px; color: var(--purple); opacity: .14; rotate: 16deg; }
.motif--b { bottom: 8%; left: 3%; font-size: 74px; color: var(--green); opacity: .13; rotate: -12deg; }
.motif--c { top: 54%; left: 48%; font-size: 32px; color: var(--daisy); opacity: .45; rotate: 24deg; }
.motif--heart-a { top: 14%; right: 8%; font-size: 48px; color: var(--purple); opacity: .13; rotate: 14deg; }
.motif--heart-b { bottom: 12%; left: 5%; font-size: 62px; color: var(--purple); opacity: .1; rotate: -10deg; }
.motif--spark   { top: 18%; left: 38%; font-size: 24px; color: var(--daisy); opacity: .5; animation: gg-twinkle 4s ease-in-out infinite; }
.motif--spark-a { top: 18%; right: 22%; font-size: 22px; color: var(--daisy); opacity: .6; animation: gg-twinkle 3.6s ease-in-out infinite; }
.motif--spark-b { bottom: 22%; left: 30%; font-size: 16px; color: var(--daisy); opacity: .5; animation: gg-twinkle 4.4s ease-in-out .8s infinite; }
.motif--dusk-a { top: 12%; left: 12%; font-size: 24px; color: var(--lilac); opacity: .5; animation: gg-twinkle 3.8s ease-in-out infinite; }
.motif--dusk-b { top: 22%; right: 14%; font-size: 18px; color: var(--daisy); opacity: .5; animation: gg-twinkle 4.6s ease-in-out .6s infinite; }
.motif--dusk-c { bottom: 26%; left: 24%; font-size: 15px; color: var(--lilac); opacity: .4; animation: gg-twinkle 5s ease-in-out 1.2s infinite; }
.motif--dusk-d { top: 58%; right: 26%; font-size: 21px; color: var(--lilac); opacity: .5; animation: gg-twinkle 4.2s ease-in-out 1.8s infinite; }

.glyph {
  position: absolute; pointer-events: none;
  font-family: var(--f-hand); line-height: 1;
}
.glyph--a { top: -36px; right: 2%; font-size: clamp(180px, 26vw, 320px); color: var(--purple); opacity: .07; rotate: 12deg; }
.glyph--b { bottom: 4%; left: 3%; font-size: clamp(110px, 15vw, 190px); color: var(--green); opacity: .08; rotate: -14deg; }

/* ── the storybook map ────────────────────────────────────────────────── */

.m-label {
  font-family: var(--f-head); font-weight: 800; font-size: 19px;
  fill: var(--ink); paint-order: stroke;
  stroke: #f8f0dc; stroke-width: 4px; stroke-linejoin: round;
}
.m-note { font-family: var(--f-hand); font-weight: 700; font-size: 17px; fill: var(--purple); opacity: .85; }

/* route stays hidden until the panel scrolls in, then stitches itself */
.m-route { stroke-dashoffset: 100; opacity: 0; }
.frame--map.is-drawn .m-route { opacity: 1; animation: gg-stitch 2.2s .2s var(--ease) forwards; }
@keyframes gg-stitch { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }

/*
 * Each paw is an inner group inside a positioned wrapper — animating `transform`
 * on the positioned group itself would replace its translate/rotate attribute
 * and fling the paw to the SVG origin.
 */
.m-paw { opacity: 0; transform-box: fill-box; transform-origin: center; }
.frame--map.is-drawn .m-paw {
  animation: gg-paw-in .5s var(--ease) forwards;
  animation-delay: calc(1s + var(--i) * .4s);
}
@keyframes gg-paw-in {
  from { opacity: 0; transform: scale(.2); }
  60%  { opacity: .85; transform: scale(1.3); }
  to   { opacity: .8; transform: scale(1); }
}

.m-van { opacity: 0; offset-rotate: 0deg; scale: 1.25; }
.frame--map.is-drawn .m-van {
  animation: gg-van-drive 7s 1.6s var(--ease) infinite;
  offset-path: path('M254 122 C246 160 214 168 206 200 C198 234 172 248 154 278');
}
/* drives the route, fades out at the door, then loops back to Windsor */
@keyframes gg-van-drive {
  0%   { offset-distance: 0%;   opacity: 0; }
  7%   { offset-distance: 4%;   opacity: 1; }
  72%  { offset-distance: 100%; opacity: 1; }
  84%  { offset-distance: 100%; opacity: 0; }
  100% { offset-distance: 0%;   opacity: 0; }
}

.m-town circle[fill="#8c3287"] { transform-box: fill-box; transform-origin: center; }
.frame--map.is-drawn .m-town circle[fill="#8c3287"] { animation: gg-ping 2.6s ease-out infinite; }
@keyframes gg-ping {
  0%, 70%, 100% { transform: scale(1); }
  80%           { transform: scale(1.35); }
}

.m-compass { transform-origin: 348px 352px; animation: gg-compass 16s ease-in-out infinite; }
@keyframes gg-compass { 0%, 100% { rotate: -4deg; } 50% { rotate: 4deg; } }

.m-trees g { transform-box: fill-box; transform-origin: bottom center; }
.frame--map:hover .m-trees g { animation: gg-sway 2.4s ease-in-out infinite; }
.m-trees g:nth-child(2n) { animation-delay: .35s; }
.m-trees g:nth-child(3n) { animation-delay: .7s; }
@keyframes gg-sway { 0%, 100% { rotate: -3deg; } 50% { rotate: 3deg; } }

/* ── idle keyframes ───────────────────────────────────────────────────── */

@keyframes gg-drift   { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(46px, -7px); } }
@keyframes gg-wobble  { 0%, 100% { rotate: -2.5deg; } 50% { rotate: 2.5deg; } }
@keyframes gg-bob     { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes gg-twinkle { 0%, 100% { opacity: .2; scale: .85; } 50% { opacity: .85; scale: 1.15; rotate: 16deg; } }

/* ── scroll reveal ────────────────────────────────────────────────────── */

/*
 * JS adds .js so nothing is ever hidden when scripting is off.
 * Uses the independent `translate` / `scale` properties rather than
 * `transform`, so the reveal composes with the deliberate rotations on the
 * review cards and with the inline transform the mouse-tilt writes.
 */
.js [data-reveal] {
  opacity: 0;
  translate: 0 34px;
  transition: opacity .9s var(--ease), translate .9s var(--ease), scale .9s var(--ease);
}
.js [data-reveal="scale"] { translate: 0 0; scale: .88; }
.js [data-reveal].is-in { opacity: 1; translate: 0 0; scale: 1; }

.js [data-delay="1"] { transition-delay: .1s; }
.js [data-delay="2"] { transition-delay: .2s; }
.js [data-delay="3"] { transition-delay: .3s; }

/* ── page-open curtain ────────────────────────────────────────────────── */

.gg-curtain {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  background: var(--cream);
  animation: gg-curtain-up 1.05s .25s var(--ease) forwards;
}
.gg-curtain__mark {
  font-size: 60px; color: var(--green);
  animation: gg-curtain-mark 1.1s var(--ease) forwards;
}
.gg-curtain.is-done { display: none; }
@keyframes gg-curtain-up {
  to { transform: translateY(-102%); border-radius: 0 0 46% 46% / 0 0 12% 12%; }
}
@keyframes gg-curtain-mark {
  0%   { opacity: 0; transform: scale(.4) rotate(-90deg); }
  40%  { opacity: 1; transform: scale(1) rotate(0); }
  100% { opacity: 0; transform: scale(.7) translateY(-30px); }
}

/* ── pointer paw trail ────────────────────────────────────────────────── */

.gg-trail {
  position: fixed; inset: 0; z-index: 80;
  width: 100%; height: 100%;
  pointer-events: none; opacity: .85;
}

/* ── bubble burst (JS-spawned) ────────────────────────────────────────── */

.gg-bubble {
  position: fixed; z-index: 85;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.95), rgba(255,255,255,.28) 42%, rgba(140,50,135,.16) 72%, rgba(140,50,135,.05));
  border: 1.5px solid rgba(255, 255, 255, .75);
  animation: gg-bubble-up var(--dur, 1.5s) cubic-bezier(.3, .1, .5, 1) forwards;
}
@keyframes gg-bubble-up {
  0%   { opacity: 0; transform: translate(0, 0) scale(.2); }
  12%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--dx, 0), var(--dy, -160px)) scale(1); }
}

/* ── responsive ───────────────────────────────────────────────────────── */

/* the drop-down menu belongs to the mobile nav only */
@media (min-width: 1001px) {
  .navmenu { display: none !important; }
}

@media (max-width: 900px) {
  /* the hero stacks here, so the gap that cloud B lives in no longer exists */
  .cloud--b { display: none; }
  .cloud--a { top: 88px; left: 3%; width: 96px; height: 28px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { justify-self: center; max-width: 360px; }
  .hero__sun { width: 120px; height: 120px; right: 4%; top: -20px; }
  .sechead--split { align-items: flex-start; }
}

@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  /* space-between would strand the CTA mid-pill once the links are gone */
  .nav { gap: 12px; justify-content: flex-start; }
  .nav__cta { margin-left: auto; }
}

@media (max-width: 760px) {
  .nav__cta { display: none; }
  .nav__toggle { margin-left: auto; }
  h2 { font-size: clamp(28px, 8vw, 40px); }
  .eyebrow { font-size: 23px; }
  .sec { padding-inline: 20px; }
  .badge--hero { right: -6px; font-size: 17px; }
  .sticker--paw { width: 46px; height: 46px; left: -10px; bottom: -16px; }
  /* keep the sun clear of the eyebrow line */
  .hero__sun { width: 104px; height: 104px; right: -12px; top: -34px; }
}

@media (max-width: 420px) {
  .btn { padding: 14px 22px; font-size: 16px; }
  .btnrow { gap: 10px; }
}

/* ── reduced motion ───────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; }
  .gg-curtain { display: none; }
  .gg-trail { display: none; }
}

/* ==========================================================================
   Interior pages
   ========================================================================== */

/* ── page header ──────────────────────────────────────────────────────── */

.pagehead {
  position: relative; overflow: hidden;
  padding: clamp(38px, 5vw, 70px) var(--pad-x) clamp(26px, 3vw, 44px);
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
}
.pagehead h1 { font-size: clamp(38px, 6vw, 74px); margin: 10px 0 0; }
.pagehead .wrap { position: relative; z-index: 2; }

.pagehead + .sec { padding-top: clamp(20px, 2.4vw, 34px); }

.lede--center { margin-inline: auto; max-width: 52ch; }
.body--center { margin-inline: auto; text-align: center; }
.body--onPurple { color: var(--lilac); max-width: 46ch; }
.sechead__note--center { margin-inline: auto; text-align: center; max-width: 46ch; }
.mono--muted { color: var(--muted); display: block; margin: 10px 0; }

.prose > .body + .body { margin-top: 14px; }
.grid--top { align-items: stretch; }
.talelink--spaced { margin-top: 12px; }

/* ── credential list ──────────────────────────────────────────────────── */

.creds--grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px 26px;
}
.creds--grid li { font-size: 15px; }

/* ── service menus ────────────────────────────────────────────────────── */

.tale--menu { padding: 30px; }
.tale--menu h2 { font-family: var(--f-head); font-size: clamp(30px, 3.4vw, 40px); margin: 2px 0 6px; }

.menu { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 9px; }
.menu li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; font-weight: 700; line-height: 1.45;
}
.menu li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  font-family: var(--f-head); font-weight: 800;
}
.tale--one   .menu li { color: var(--ink); }
.tale--one   .menu li::before { color: var(--green); }
.tale--three .menu li { color: var(--green-tint-2); }
.tale--three .menu li::before { color: var(--daisy); }
.menu__note { font-weight: 600; opacity: .75; }

.chips--center { justify-content: center; }

/* ── notice card ──────────────────────────────────────────────────────── */

.notice {
  position: relative;
  background: var(--daisy);
  border: var(--bd); border-left: 14px solid var(--ink);
  border-radius: 14px 26px 26px 14px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--sh-card);
  text-align: left;
}
.notice__tag {
  display: inline-block;
  font-family: var(--f-hand); font-weight: 700; font-size: 21px;
  color: var(--brown);
}
.notice h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 2px 0 10px; }
.notice p { font-size: 16px; color: var(--brown-deep); line-height: 1.6; margin: 0 0 20px; max-width: 58ch; }

/* ── contact form ─────────────────────────────────────────────────────── */

.form {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: var(--paper);
  border: var(--bd); border-radius: 26px;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: var(--sh-card);
}
.field { display: grid; gap: 6px; }
.field--wide, .form__actions { grid-column: 1 / -1; }
.field > span { font-family: var(--f-head); font-weight: 800; font-size: 15px; }
.field input, .field textarea {
  font-family: var(--f-body); font-weight: 600; font-size: 15px; color: var(--ink);
  background: var(--cream-light);
  border: var(--bd-thin); border-radius: 14px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--purple); background: var(--paper); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #b8462f; }

.form__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: 14px; font-weight: 700; color: var(--muted); }

/* ── gallery ──────────────────────────────────────────────────────────── */

/* multi-column rather than grid: the photos are deliberately mixed ratios, and
   a grid leaves a dead gap under every short item in a tall row */
.gallery { columns: 300px 3; column-gap: 22px; }
.shot { margin: 0 0 22px; break-inside: avoid; }
.shot__btn {
  display: block; width: 100%; padding: 0; cursor: zoom-in;
  background: var(--paper);
  border: var(--bd); border-radius: 26px;
  box-shadow: var(--sh-card);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.shot__btn img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
.shot--tall .shot__btn img { aspect-ratio: 3 / 4; }
.shot--wide .shot__btn img { aspect-ratio: 16 / 10; }
.shot__btn:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 12px 0 var(--ink); }
.shot:nth-child(2n) .shot__btn:hover { transform: translateY(-6px) rotate(1deg); }
.shot__btn:hover img { transform: scale(1.05); }
.shot figcaption {
  margin-top: 10px; text-align: center;
  font-family: var(--f-hand); font-weight: 700; font-size: 20px; color: var(--muted);
}

@media (max-width: 620px) {
  .gallery { columns: 1; }
}

/* ── lightbox ─────────────────────────────────────────────────────────── */

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 95;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(58, 31, 61, .88);
  animation: gg-fade .25s var(--ease);
}
.lightbox img {
  max-width: min(1000px, 100%); max-height: 84vh;
  border: var(--bd); border-radius: 26px;
  box-shadow: 0 10px 0 var(--ink);
  background: var(--paper);
}
.lightbox__close {
  position: absolute; top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px);
  width: 48px; height: 48px;
  font-size: 20px; font-weight: 800; color: var(--ink);
  background: var(--paper);
  border: var(--bd-thin); border-radius: 999px;
  box-shadow: 0 4px 0 var(--ink);
  cursor: pointer;
  transition: transform .18s var(--ease);
}
.lightbox__close:hover { transform: translateY(-2px); }
@keyframes gg-fade { from { opacity: 0; } to { opacity: 1; } }

/* ── footer ───────────────────────────────────────────────────────────── */

.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}
.foot__brand { display: grid; gap: 12px; justify-items: start; }
.foot__col { display: flex; flex-direction: column; gap: 9px; }
.foot__col h2 {
  font-family: var(--f-hand); font-weight: 700; font-size: 22px;
  color: var(--daisy); margin: 0 0 3px;
}
.foot__col a, .foot__col .mono { font-size: 14.5px; font-weight: 700; color: #e6d4e8; }
.foot__col a { transition: color .2s, translate .2s var(--ease); }
.foot__col a:hover { color: var(--daisy); translate: 3px 0; }
.foot__col .mono { font-weight: 400; color: #bda6c1; }
.foot__phone { font-family: var(--f-head); font-weight: 800; font-size: 17px !important; color: var(--paper) !important; }

.foot__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 20px;
  border-top: 2px solid rgba(247, 239, 225, .16);
  font-family: var(--f-mono); font-size: 12px; color: #a68fab;
}
.foot__concept { opacity: .8; }

@media (max-width: 860px) {
  .foot__grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
  .foot__brand { grid-column: 1 / -1; }
}

/* the snipping shears in the services header */
.pagehead__anim {
  position: absolute; top: 4px; right: clamp(-10px, 2vw, 40px);
  width: clamp(130px, 15vw, 190px); aspect-ratio: 1;
  opacity: .9; pointer-events: none;
}
@media (max-width: 900px) { .pagehead__anim { display: none; } }


/* ── card rhythm ──────────────────────────────────────────────────────────
   Cards sitting side by side stretch to a shared height, with the closing
   link pinned to the bottom so the baselines line up across the row.
   ------------------------------------------------------------------------ */

.grid--3 > .chapter,
.grid--3 > .tale,
.grid--3 > .review,
.grid--2 > .tale {
  display: flex;
  flex-direction: column;
}
.chapter > p:last-of-type,
.tale > p:last-of-type { margin-bottom: 18px; }
.chapter .talelink,
.tale .talelink { margin-top: auto; }
.review blockquote { flex: 1; }

/* card titles run tighter than page headings */
.chapter h3,
.tale h3,
.tale h2,
.notice h2,
.shot figcaption { line-height: 1.12; }
.tale--menu h2 { line-height: 1.02; }

/* honeypot — off-screen rather than display:none, which some bots skip */
.field--hp {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.form__note--ok  { color: var(--green); }
.form__note--bad { color: #b8462f; }
.form__note a { text-decoration: underline; }
.form button[disabled] { opacity: .6; pointer-events: none; }

/* ── checkbox ─────────────────────────────────────────────────────────── */

.check {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  font-size: 15px; font-weight: 700;
}
.check input {
  position: absolute;
  width: 1px; height: 1px; opacity: 0;
}
.check__box {
  flex: none;
  width: 26px; height: 26px;
  background: var(--cream-light);
  border: var(--bd-thin); border-radius: 9px;
  display: grid; place-items: center;
  transition: background .18s var(--ease), scale .18s var(--ease);
}
.check__box::after {
  content: '✓';
  font-family: var(--f-head); font-weight: 800; font-size: 17px; line-height: 1;
  color: var(--ink);
  scale: 0;
  transition: scale .22s var(--ease);
}
.check:hover .check__box { background: var(--paper); scale: 1.06; }
.check input:checked + .check__box { background: var(--daisy); }
.check input:checked + .check__box::after { scale: 1; }
.check input:focus-visible + .check__box {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}
