/* ============================================================
   THE TOY BOX  ·  Ironbridge & Shrewsbury
   Storybook · warm · in-person. Spruce-green committed world.
   Bespoke build for Elev8Depictions. No template reuse.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
ul[role="list"] { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--honey); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tokens ---------- */
:root {
  /* Committed spruce-green brand world */
  --forest:      oklch(0.325 0.045 158);
  --forest-deep: oklch(0.255 0.040 160);
  --forest-2:    oklch(0.445 0.062 156);
  --sage:        oklch(0.735 0.045 150);
  --sage-soft:   oklch(0.885 0.030 145);

  /* Warm glow + joy */
  --honey:       oklch(0.800 0.130 78);
  --honey-deep:  oklch(0.700 0.130 72);
  --brass:       oklch(0.560 0.100 68);
  --poppy:       oklch(0.585 0.180 33);
  --poppy-deep:  oklch(0.495 0.165 33);

  /* Paper world */
  --paper:       oklch(0.970 0.014 88);
  --paper-2:     oklch(0.948 0.018 85);
  --kraft:       oklch(0.885 0.032 80);
  --ink:         oklch(0.250 0.020 62);
  --ink-soft:    oklch(0.398 0.022 62);
  --cream:       oklch(0.968 0.018 88);
  --cream-soft:  oklch(0.878 0.028 90);

  /* Semantic */
  --bg: var(--paper);
  --line: color-mix(in oklch, var(--ink) 14%, transparent);
  --line-cream: color-mix(in oklch, var(--cream) 22%, transparent);

  /* Type */
  --display: "Young Serif", Georgia, "Times New Roman", serif;
  --body: "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", "Segoe Script", cursive;

  /* Fluid scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.92rem);
  --step-0:  clamp(1.02rem, 0.98rem + 0.2vw, 1.14rem);
  --step-1:  clamp(1.22rem, 1.14rem + 0.4vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.34rem + 0.8vw, 2.1rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.5vw, 3rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.6vw, 4rem);
  --step-5:  clamp(2.9rem, 2.1rem + 4vw, 5rem);

  /* Space */
  --gutter: clamp(1.15rem, 0.8rem + 2.4vw, 2.6rem);
  --section-y: clamp(3.75rem, 2.5rem + 5vw, 7.25rem);
  --wrap: 1200px;
  --wrap-narrow: 760px;
  --radius: 18px;
  --radius-lg: 30px;

  /* Motion */
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.7s;

  /* z-scale. Nav MUST sit above the drawer or the close button is buried
     under the open drawer and becomes unclickable. */
  --z-drawer: 110;
  --z-nav: 120;
  --z-modal: 130;
  --z-banner: 140;
  --z-toast: 200;
}

/* ---------- Base ---------- */
body {
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.06; letter-spacing: -0.012em; text-wrap: balance; }
h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-2); }
p { text-wrap: pretty; }
p + p { margin-top: 0.9em; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }

.lede { font-size: var(--step-1); line-height: 1.5; color: var(--ink-soft); }
.on-forest { color: var(--cream); }
.on-forest .lede { color: var(--cream-soft); }
/* Hero sits on the dark forest bg: the default dark --ink-soft lede is unreadable there. */
.hero .lede { color: var(--cream-soft); }
.measure { max-width: 62ch; }

/* Kicker: a single deliberate hand-lettered marker (brand voice, not tracked-uppercase AI eyebrow) */
.kicker {
  font-family: var(--hand);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
  color: var(--brass);
  line-height: 1;
  display: inline-block;
  transform: rotate(-2.5deg);
}
.on-forest .kicker { color: var(--honey); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--poppy);
  --btn-fg: oklch(0.99 0.01 90);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--body); font-weight: 700; font-size: var(--step-0);
  line-height: 1; letter-spacing: 0.005em;
  padding: 0.95em 1.6em; border: none; border-radius: 100px;
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; text-decoration: none;
  box-shadow: 0 1px 0 color-mix(in oklch, var(--btn-bg) 60%, black), 0 10px 24px -14px color-mix(in oklch, var(--btn-bg) 80%, black);
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s var(--ease-expo), background 0.3s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 1px 0 color-mix(in oklch, var(--btn-bg) 60%, black), 0 16px 30px -14px color-mix(in oklch, var(--btn-bg) 75%, black); }
.btn:active { transform: translateY(0); }
.btn .btn-ico { width: 1.05em; height: 1.05em; }
.btn--forest { --btn-bg: var(--forest); --btn-fg: var(--cream); }
.btn--honey { --btn-bg: var(--honey); --btn-fg: var(--forest-deep); }
.btn--ghost {
  background: transparent; color: currentColor;
  box-shadow: inset 0 0 0 2px color-mix(in oklch, currentColor 40%, transparent);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px currentColor; background: color-mix(in oklch, currentColor 8%, transparent); }
.btn--lg { font-size: var(--step-1); padding: 1.05em 1.9em; }

.textlink {
  font-weight: 700; text-decoration: none; color: var(--poppy-deep);
  display: inline-flex; align-items: center; gap: 0.4em;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease-expo);
}
.textlink:hover { background-size: 100% 2px; }
.textlink .arr { transition: transform 0.4s var(--ease-expo); }
.textlink:hover .arr { transform: translateX(4px); }
.on-forest .textlink { color: var(--honey); }

/* ---------- Preview banner (demo only, remove on launch) ---------- */
:root { --banner-h: 40px; }
body { padding-top: var(--banner-h); }
.preview-banner {
  position: fixed; top: 0; left: 0; right: 0; height: var(--banner-h); z-index: var(--z-banner);
  background: var(--poppy); color: oklch(0.99 0.01 90);
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0 0.9rem; text-align: center;
  font-size: 0.8rem; font-weight: 600; line-height: 1.25;
}
.preview-banner svg { width: 16px; height: 16px; flex: none; }
.preview-banner b { font-weight: 800; }
.preview-banner .pb-short { display: none; }
@media (max-width: 720px) {
  :root { --banner-h: 46px; }
  .preview-banner { font-size: 0.72rem; }
  .preview-banner .pb-long { display: none; }
  .preview-banner .pb-short { display: inline; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: var(--z-nav);
  background: color-mix(in oklch, var(--forest) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-cream);
  transition: transform 0.5s var(--ease-expo), background 0.4s ease;
}
.site-header[data-hidden="true"] { transform: translateY(-105%); }
.site-header.at-top { background: transparent; border-color: transparent; backdrop-filter: none; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: clamp(64px, 8vw, 80px);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--cream); }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-word { font-family: var(--display); font-size: 1.4rem; line-height: 0.9; letter-spacing: -0.01em; }
.brand-word small { display: block; font-family: var(--hand); font-size: 0.72rem; color: var(--honey); letter-spacing: 0; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav-links a {
  color: var(--cream); text-decoration: none; font-weight: 600; font-size: 1rem;
  position: relative; padding: 0.3em 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--honey); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--honey); }
.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-cream);
  background: transparent; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: transform 0.4s var(--ease-expo), opacity 0.3s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.drawer-open .nav-toggle span { background: transparent; }
body.drawer-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.drawer-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }
/* With the drawer open the header floats over it: drop its bar so only the X reads. */
body.drawer-open .site-header { background: transparent; border-color: transparent; backdrop-filter: none; }
body.drawer-open .site-header[data-hidden="true"] { transform: none; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: var(--forest-deep); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 46px) 40px);
  transition: clip-path 0.6s var(--ease-expo);
  visibility: hidden;
}
body.drawer-open .drawer { clip-path: circle(150% at calc(100% - 46px) 40px); visibility: visible; }
.drawer-links { display: flex; flex-direction: column; gap: 0.2rem; }
.drawer-links a {
  font-family: var(--display); font-size: clamp(2rem, 8vw, 3rem); color: var(--cream);
  text-decoration: none; padding: 0.2em 0; display: flex; align-items: baseline; gap: 0.6rem;
}
.drawer-links a .num { font-family: var(--hand); font-size: 1.1rem; color: var(--honey); }
.drawer-foot { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; color: var(--cream-soft); }
.drawer-foot a { color: var(--honey); text-decoration: none; font-weight: 700; }

/* ---------- Illustrated bits (SVG helpers) ---------- */
.bunting { width: 100%; height: auto; display: block; }
.divider-scallop { width: 100%; height: clamp(24px, 4vw, 44px); display: block; }

/* ---------- Reveal (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-quart), transform 0.8s var(--ease-quart); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
html.no-js .reveal { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; background: var(--forest);
  color: var(--cream); overflow: hidden;
  padding-top: clamp(96px, 14vw, 150px);
  padding-bottom: clamp(2rem, 6vw, 5rem);
  isolation: isolate;
}
.hero::before { /* warm lamplight glow */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 78% 8%, color-mix(in oklch, var(--honey) 42%, transparent), transparent 60%),
    radial-gradient(90% 70% at 12% 100%, color-mix(in oklch, var(--forest-2) 60%, transparent), transparent 65%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero-copy { max-width: 34ch; }
.hero h1 { margin-block: 0.35rem 0; }
.hero .lede { margin-top: 1.2rem; max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-locations {
  margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem;
  font-size: var(--step--1); color: var(--cream-soft);
}
.hero-locations b { color: var(--honey); font-family: var(--body); font-weight: 800; }
.hero-locations .dot { color: var(--honey); }

/* ---------- The toy box that BURSTS open ---------- */
.toybox-scene { position: relative; width: 100%; aspect-ratio: 620 / 580; max-width: 620px; margin-inline: auto; }
.toybox-scene svg { width: 100%; height: 100%; overflow: visible; }

/* two transform layers: .tb-toy carries the burst + parallax, .tb-float carries the idle */
.tb-toy { transform-box: fill-box; transform-origin: 50% 50%; }
.tb-float { transform-box: fill-box; transform-origin: 50% 50%; }
.tb-lid { transform-box: fill-box; transform-origin: 50% 100%; }

/* idle life: each toy bobs on its own phase (set inline per toy) */
@keyframes tb-bob {
  0%, 100% { transform: translateY(0) rotate(var(--r0, 0deg)); }
  50%      { transform: translateY(-9px) rotate(var(--r1, 3deg)); }
}
.tb-float { animation: tb-bob var(--bob, 5s) var(--ease-quart) infinite; animation-delay: var(--bob-delay, 0s); }

/* poke a toy: it spins */
.tb-hit { cursor: pointer; -webkit-tap-highlight-color: transparent; }
/* Hover-pause ONLY on real hover devices. On touch, :hover sticks after a tap and
   would pause the spin itself, so the toy looked dead until you tapped another one. */
@media (hover: hover) and (pointer: fine) {
  .tb-hit:hover .tb-float { animation-play-state: paused; }
}
@keyframes tb-spin { to { transform: rotate(360deg) scale(1); } }
/* `running` is explicit so a stuck :hover can never freeze the spin. */
.tb-float.is-spun { animation: tb-spin 0.75s var(--ease-quart) 1 !important; animation-play-state: running !important; }

/* light burst behind the toys */
.tb-burst { transform-box: fill-box; transform-origin: 50% 50%; }
@keyframes tb-flare { 0% { opacity: 0; transform: scale(0.4); } 45% { opacity: 0.85; } 100% { opacity: 0.42; transform: scale(1); } }
.tb-burst { animation: tb-flare 1.4s var(--ease-expo) both; }
@keyframes tb-sparkle { 0%, 100% { opacity: 0.15; transform: scale(0.7); } 50% { opacity: 1; transform: scale(1.15); } }
.tb-spark { transform-box: fill-box; transform-origin: 50% 50%; animation: tb-sparkle var(--tw, 3s) ease-in-out infinite; animation-delay: var(--tw-d, 0s); }

@media (prefers-reduced-motion: reduce) {
  .tb-float, .tb-burst, .tb-spark { animation: none !important; }
}

/* "give the toys a poke" hint. Shown on touch too: the invitation to play with
   the box matters more on mobile, where the box sits right under the copy. */
.hero-art { display: flex; flex-direction: column; }
.toybox-scene { order: 1; }
.tb-poke {
  order: 2; /* desktop: sits under the box */
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--hand); font-size: 1.2rem; color: var(--honey);
  opacity: 0.9; margin-top: -0.2rem;
}
.poke-arrow {
  width: 30px; height: 32px; flex: none; overflow: visible;
  transform: scaleY(-1); /* desktop: curls up toward the box above */
}
.poke-arrow path { stroke-dasharray: 70; stroke-dashoffset: 70; }
.tb-poke.is-in .poke-arrow path { transition: stroke-dashoffset 0.7s var(--ease-quart) 0.2s; stroke-dashoffset: 0; }
.tb-poke.is-in .poke-arrow path:nth-child(2) { transition-delay: 0.6s; }
@keyframes poke-nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.tb-poke.is-in { animation: poke-nudge 2.4s var(--ease-quart) infinite; animation-delay: 1.2s; }
@media (prefers-reduced-motion: reduce) {
  .tb-poke.is-in { animation: none; }
  .poke-arrow path { stroke-dashoffset: 0 !important; }
}

/* scroll hint */
.scroll-hint { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-family: var(--hand); font-size: 1.25rem; color: var(--honey); }
.scroll-hint svg { width: 20px; height: 20px; animation: bob 1.8s var(--ease-quart) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   MANIFESTO: the centrepiece. This is the whole point of the shop:
   an experience, not a store. It gets a full drenched section.
   ============================================================ */
.manifesto {
  background: var(--poppy); color: var(--cream); position: relative; overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8.5rem); isolation: isolate;
}
.manifesto::before { /* warm light from the top-right */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: radial-gradient(90% 70% at 82% 0%, color-mix(in oklch, var(--honey) 55%, transparent), transparent 62%);
}
/* the "cart" pattern quietly drifting behind, being switched off */
.manifesto-field { position: absolute; inset: 0; z-index: -1; opacity: 0.14; pointer-events: none; }
.manifesto-field svg { width: 100%; height: 100%; }

.manifesto-inner { position: relative; text-align: center; }
/* honey measured only 2.4:1 on the poppy ground; cream clears AA for large text. */
.manifesto .kicker { color: var(--cream); }
.manifesto .big-quote {
  font-family: var(--display); font-size: clamp(2.4rem, 1.4rem + 4.4vw, 5rem);
  line-height: 1.02; color: var(--cream); margin: 0.6rem auto 0; max-width: 15ch;
  letter-spacing: -0.02em;
}
.manifesto .big-quote em { font-style: normal; color: var(--honey); position: relative; white-space: nowrap; }
/* hand-drawn underline that draws itself in */
.manifesto .big-quote em svg {
  position: absolute; left: 0; right: 0; bottom: -0.16em; width: 100%; height: 0.3em; overflow: visible;
}
.manifesto .big-quote em path {
  fill: none; stroke: var(--honey); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: var(--len, 400); stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset 1.1s var(--ease-quart) 0.35s;
}
.manifesto.is-in .big-quote em path { stroke-dashoffset: 0; }

.manifesto-lead { font-size: var(--step-1); line-height: 1.5; color: var(--cream); opacity: 0.94; max-width: 54ch; margin: 1.4rem auto 0; }
.manifesto-cta { margin-top: 2rem; display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* the three "instead" pillars */
.instead-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 2rem);
  margin-top: clamp(2.6rem, 5vw, 4rem); text-align: left;
}
.instead {
  background: color-mix(in oklch, var(--cream) 12%, transparent);
  border: 1px solid color-mix(in oklch, var(--cream) 28%, transparent);
  border-radius: var(--radius); padding: 1.4rem;
  transition: transform 0.5s var(--ease-expo), background 0.4s ease;
}
.instead:hover { transform: translateY(-5px); background: color-mix(in oklch, var(--cream) 18%, transparent); }
.instead .i-ico { width: 40px; height: 40px; color: var(--honey); margin-bottom: 0.8rem; }
.instead h4 { font-family: var(--display); font-size: var(--step-1); color: var(--cream); line-height: 1.1; }
.instead p { color: var(--cream); opacity: 0.85; font-size: var(--step--1); margin-top: 0.5rem; line-height: 1.55; }

/* THE STAMP: big, and it thumps down like a real rubber stamp */
.stamp-wrap { display: grid; place-items: center; margin-bottom: 0.4rem; }
.stamp { width: clamp(150px, 20vw, 220px); height: clamp(150px, 20vw, 220px); flex: none; overflow: visible; }
.stamp-ring { transform-box: fill-box; transform-origin: 50% 50%; }
.manifesto.is-in .stamp-ring { animation: stamp-spin 26s linear infinite; }
@keyframes stamp-spin { to { transform: rotate(360deg); } }
.stamp-body { transform-box: fill-box; transform-origin: 50% 50%; transform: scale(2.4) rotate(-14deg); opacity: 0; }
.manifesto.is-in .stamp-body { animation: stamp-thump 0.75s var(--ease-expo) 0.15s forwards; }
@keyframes stamp-thump {
  0%   { transform: scale(2.4) rotate(-14deg); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: scale(1) rotate(-7deg); opacity: 1; }
}
.stamp-strike { stroke-dasharray: 300; stroke-dashoffset: 300; }
.manifesto.is-in .stamp-strike { transition: stroke-dashoffset 0.5s var(--ease-quart) 0.85s; stroke-dashoffset: 0; }

@media (max-width: 900px) {
  .instead-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .manifesto .big-quote em path { stroke-dashoffset: 0 !important; transition: none; }
  .stamp-body { animation: none !important; transform: rotate(-7deg); opacity: 1; }
  .manifesto.is-in .stamp-ring { animation: none !important; }
  .stamp-strike { stroke-dashoffset: 0 !important; }
}

/* ============================================================
   TWO SHOPS
   ============================================================ */
.shops-band { background: var(--forest-deep); color: var(--cream); }
.shops-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.shops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); }
.shop-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--forest); border: 1px solid var(--line-cream);
  display: flex; flex-direction: column; min-height: 420px;
  transition: transform 0.5s var(--ease-expo);
}
.shop-card:hover { transform: translateY(-6px); }
.shop-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.shop-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-expo); }
.shop-card:hover .shop-photo img { transform: scale(1.05); }
.shop-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in oklch, var(--forest-deep) 70%, transparent), transparent 55%); }
.shop-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  font-family: var(--hand); font-size: 1.3rem; color: var(--forest-deep);
  background: var(--honey); padding: 0.15em 0.9em; border-radius: 100px; transform: rotate(-2deg);
}
.shop-body { padding: clamp(1.3rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.shop-body h3 { color: var(--cream); }
.shop-meta { display: flex; flex-direction: column; gap: 0.35rem; color: var(--cream-soft); font-size: var(--step--1); margin-top: auto; }
.shop-meta .row { display: flex; align-items: center; gap: 0.6rem; }
.shop-meta .row svg { width: 17px; height: 17px; color: var(--honey); flex: none; }
.shop-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.4rem; }

/* ============================================================
   BRANDS umbrella teaser
   ============================================================ */
.brands-teaser { background: var(--paper-2); text-align: center; position: relative; overflow: hidden; }
.umbrella-line { font-family: var(--display); font-size: var(--step-2); color: var(--forest); margin-bottom: 0.4rem; }
.brand-marquee {
  margin-top: clamp(1.5rem, 4vw, 2.5rem); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
/* Driven by rAF in main.js so hovering EASES it to a drift instead of a hard stop
   (animation-play-state can only slam it to zero, which felt jarring). */
.brand-track { display: flex; gap: 1rem; width: max-content; will-change: transform; }
.brand-chip {
  font-family: var(--display); font-size: 1.3rem; color: var(--forest);
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 0.5em 1.2em; white-space: nowrap; text-decoration: none; display: inline-block;
  transition: transform 0.35s var(--ease-expo), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
a.brand-chip:hover, a.brand-chip:focus-visible {
  background: var(--forest); border-color: var(--forest); color: var(--cream);
  transform: translateY(-3px);
}
.brand-chip .dot { color: var(--poppy); }
a.brand-chip:hover .dot { color: var(--honey); }

/* No JS / reduced motion: a plain, honest scrollable row. */
html.no-js .brand-track { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .brand-marquee { overflow-x: auto; }
  .brand-track { transform: none !important; }
}

/* ============================================================
   LIFESTYLE editorial band
   ============================================================ */
.lifestyle { background: var(--paper); }
.lifestyle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.lifestyle-photos { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 0.9rem; }
.lifestyle-photos figure { border-radius: var(--radius); overflow: hidden; position: relative; }
.lifestyle-photos img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-photos .tall { grid-row: span 2; aspect-ratio: 3/4; }
.lifestyle-photos .wide { aspect-ratio: 4/3; }
.value-list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.value-item { display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: start; }
.value-item .v-ico { width: 42px; height: 42px; flex: none; color: var(--forest); }
.value-item h4 { font-family: var(--display); font-size: var(--step-1); color: var(--forest); margin-bottom: 0.15rem; }
.value-item p { color: var(--ink-soft); font-size: var(--step--1); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--forest); color: var(--cream); position: relative; overflow: hidden; }
.reviews-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.stars { color: var(--honey); letter-spacing: 2px; font-size: 1.1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); }
.review-card {
  background: var(--paper); color: var(--ink); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem); position: relative;
  box-shadow: 0 20px 40px -28px oklch(0 0 0 / 0.6);
  transform: rotate(var(--tilt, 0deg));
}
.review-card:nth-child(3n+1) { --tilt: -1.2deg; }
.review-card:nth-child(3n+2) { --tilt: 0.8deg; }
.review-card:nth-child(3n) { --tilt: -0.5deg; }
.review-card .stars { color: var(--honey-deep); display: block; margin-bottom: 0.7rem; }
.review-card blockquote { font-size: var(--step-0); line-height: 1.5; }
.review-card .who { margin-top: 1rem; display: flex; align-items: center; gap: 0.6rem; font-family: var(--hand); font-size: 1.3rem; color: var(--brass); }
.review-card .who .where { font-family: var(--body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.review-note {
  position: absolute; right: -8px; top: -14px; width: 58px; height: 58px;
  background: var(--honey); border-radius: 50%; display: grid; place-items: center;
  transform: rotate(9deg); box-shadow: 0 8px 18px -10px oklch(0 0 0 / 0.6);
}
.review-note svg { width: 30px; height: 30px; color: var(--forest-deep); }

/* ============================================================
   GIFT CARD CTA band + gift page
   ============================================================ */
.giftcta { background: var(--honey); color: var(--forest-deep); position: relative; overflow: hidden; }
.giftcta-inner { display: grid; grid-template-columns: 1fr auto; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.giftcta h2 { color: var(--forest-deep); }
.giftcta p { color: color-mix(in oklch, var(--forest-deep) 88%, transparent); max-width: 46ch; margin-top: 0.6rem; }
.giftcard-visual {
  width: min(340px, 72vw); aspect-ratio: 1.585/1; border-radius: 18px;
  background: var(--forest); color: var(--cream); padding: 1.3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 30px 50px -24px oklch(0 0 0 / 0.55); transform: rotate(-4deg);
  border: 1px solid var(--line-cream);
}
.giftcard-visual .gv-top { display: flex; justify-content: space-between; align-items: start; }
.giftcard-visual .gv-brand { font-family: var(--display); font-size: 1.35rem; line-height: 0.95; }
.giftcard-visual .gv-brand small { display: block; font-family: var(--hand); color: var(--honey); font-size: 0.85rem; }
.giftcard-visual .gv-amt { font-family: var(--display); font-size: 2.4rem; color: var(--honey); }
.giftcard-visual .gv-foot { font-size: 0.7rem; color: var(--cream-soft); letter-spacing: 0.03em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-deep); color: var(--cream); position: relative; }
.footer-top { padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.footer-brand .brand-word { font-size: 1.7rem; }
.footer-brand p { color: var(--cream-soft); margin-top: 1rem; max-width: 32ch; font-size: var(--step--1); }
.footer-col h4 { font-family: var(--body); font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--honey); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: var(--cream-soft); text-decoration: none; font-size: var(--step--1); transition: color 0.25s ease; }
.footer-col a:hover { color: var(--honey); }
.footer-col address { font-style: normal; color: var(--cream-soft); font-size: var(--step--1); line-height: 1.7; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-cream); display: grid; place-items: center; color: var(--cream); transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; }
.footer-social a:hover { background: var(--honey); color: var(--forest-deep); transform: translateY(-2px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-bottom {
  border-top: 1px solid var(--line-cream); padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; align-items: center; justify-content: space-between;
  font-size: var(--step--1); color: var(--cream-soft);
}
.footer-bottom a { color: var(--honey); text-decoration: none; font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .toybox-scene { max-width: 400px; }
  /* mobile: the box sits under the copy, so the hint goes ABOVE it and points down */
  .tb-poke { order: 0; margin-top: 0.6rem; margin-bottom: 0.1rem; }
  .poke-arrow { transform: none; }
  .hero-copy { max-width: none; }
  .manifesto-inner { grid-template-columns: 1fr; text-align: left; }
  .shops-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .giftcta-inner { grid-template-columns: 1fr; justify-items: start; }
  .giftcard-visual { margin-top: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { }
  .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .brand-track { animation: none !important; }
}
