/* GENERATED by scripts/build-assets.sh — edit the sources, not this file. */

/* ===== fonts/fonts.css ===== */
/* ============================================================================
 * fonts.css — self-hosted Lora + Lato (latin subset, from Google Fonts v25/v37).
 * Self-hosted for three reasons: it removes an 826ms render-blocking
 * third-party stylesheet that was delaying the <h1> LCP, it drops
 * fonts.googleapis.com + fonts.gstatic.com from the CSP entirely, and it
 * sends no visitor IP to a third party on page load.
 * Lora ships as a variable font — one file covers 400..700.
 * ========================================================================== */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/lora-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/lora-500i.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/lato-700.woff2') format('woff2');
}

/* ===== sections.css ===== */
/* ============================================================================
 * sections.css — Studio 72 section library
 * Pairs with assets/sections.js. Swap the tokens; keep the behaviour.
 *
 * Contrast note: every default below is AA-checked against --bg.
 * --muted is #8a8076 (5.11:1), NOT #6b6b6b (3.78:1 — fails).
 * ========================================================================== */

:root {
  --bg: #0b0a09;
  --surface: #131110;
  --text: #f3ede2;
  --muted: #8a8076;              /* AA on --bg and --surface. Do not darken. */
  --stroke: #221f1b;
  --accent: #c2a15a;
  --accent-rgb: 194, 161, 90;
  --accent-ink: #0a0a08;         /* text colour that passes ON --accent */
  --ok: #4caf7d;
  --warn: #e0855e;               /* 4.6:1 on --bg */
  --r: 10px;
  --font-display: 'Chakra Petch', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html, body { overflow-x: clip; }   /* clip, never hidden — hidden kills sticky */

/* --- no-JS / reduced-motion baseline --------------------------------------
   Content is visible by default. JS adds .js, which is what enables the
   hidden-then-revealed states. A JS failure degrades to a readable page. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.34,1.45,.4,1);
}
.js .reveal.in { opacity: 1; transform: none; }
.js.reduced-motion .reveal { opacity: 1; transform: none; transition: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- accessibility utilities ---------------------------------------------- */
.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;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 9999; padding: .75rem 1rem;
  background: var(--text); color: var(--bg); border-radius: var(--r);
}
/* The UA focus ring is invisible on dark themes — replace it, never remove it. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --- micro-labels: the usual contrast offender ---------------------------- */
.eyebrow {
  font-size: .7rem;              /* not 9px — at 0.3em tracking that is unreadable */
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Text over photography or video needs a guaranteed floor, not a hope. */
.media-overlay { position: relative; }
.media-overlay::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
}
.media-overlay > * { position: relative; z-index: 1; }

/* --- nav ------------------------------------------------------------------ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--stroke);
}
.nav__menu { display: flex; gap: 1.6rem; align-items: center; }
.nav__toggle { display: none; }
@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center;
    background: var(--bg);
    transform: translateY(-100%);
    transition: transform .45s cubic-bezier(.16,1,.3,1);
  }
  .nav.is-open .nav__menu { transform: none; }
}

/* --- marquee -------------------------------------------------------------- */
.marquee { display: flex; overflow: hidden; gap: 0; user-select: none; }
.marquee__row {
  display: flex; gap: 3rem; flex: 0 0 auto; padding-right: 3rem;
  animation: marquee var(--marquee-duration, 28s) linear infinite;
}
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee:hover .marquee__row,
.reduced-motion .marquee__row { animation-play-state: paused; }

/* --- cards + cursor glow --------------------------------------------------- */
.card {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: var(--r);
}
[data-glow]::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  border-radius: inherit; opacity: 0; transition: opacity .35s ease;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%),
              rgba(var(--accent-rgb), .18), transparent 62%);
}
[data-glow]:hover::before { opacity: 1; }
[data-glow] > * { position: relative; z-index: 1; }

/* --- carousel -------------------------------------------------------------- */
[data-carousel-track] { position: relative; }
[data-carousel-track] > * {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .5s ease, transform .5s cubic-bezier(.16,1,.3,1);
  transform: translateY(8px);
}
[data-carousel-track] > .is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.carousel__dot {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: 1px solid var(--muted); background: transparent; cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.carousel__dot.is-on { background: var(--accent); border-color: var(--accent); transform: scale(1.25); }

/* --- tabs ------------------------------------------------------------------ */
[role="tab"] {
  background: none; border: 0; border-bottom: 1px solid transparent;
  color: var(--muted); cursor: pointer; padding: .6rem .2rem; font: inherit;
  transition: color .3s ease, border-color .3s ease;
}
[role="tab"][aria-selected="true"] { color: var(--text); border-bottom-color: var(--accent); }
[role="tabpanel"] { opacity: 0; transition: opacity .55s ease; }
[role="tabpanel"].is-active { opacity: 1; }
[role="tabpanel"][hidden] { display: none; }

/* --- overlay: modal + slide-in panel --------------------------------------- */
.overlay {
  position: fixed; inset: 0; z-index: 80;
  display: flex; opacity: 0;
  background: rgba(0,0,0,.72);
  transition: opacity .35s ease;
}
.overlay.is-open { opacity: 1; }
.overlay[hidden] { display: none; }
.overlay__panel {
  background: var(--surface); overflow-y: auto;
  transform: translateY(14px) scale(.97);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.overlay.is-open .overlay__panel { transform: none; }
/* slide-in drawer variant */
.overlay--drawer { justify-content: flex-end; }
.overlay--drawer .overlay__panel {
  width: min(560px, 100%); height: 100%; border-radius: 0;
  transform: translateX(100%);
}
.overlay--drawer.is-open .overlay__panel { transform: none; }
.overlay--drawer[data-side="left"] { justify-content: flex-start; }
.overlay--drawer[data-side="left"] .overlay__panel { transform: translateX(-100%); }
.overlay--drawer[data-side="left"].is-open .overlay__panel { transform: none; }
/* centred modal variant */
.overlay--modal { align-items: center; justify-content: center; padding: 1.2rem; }
.overlay--modal .overlay__panel {
  width: min(900px, 100%); max-height: 88vh; border-radius: var(--r);
}
/* stat bars inside a panel, animated by CSS on open */
.statbar { height: 3px; background: var(--stroke); border-radius: 2px; overflow: hidden; }
.statbar > i {
  display: block; height: 100%; width: 0; background: var(--accent);
  transition: width .8s cubic-bezier(.16,1,.3,1) .15s;
}
.overlay.is-open .statbar > i { width: var(--val, 0%); }

/* --- booking --------------------------------------------------------------- */
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cal__dows, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__dows { color: var(--muted); font-size: .65rem; text-align: center; letter-spacing: .1em; }
.cal__day {
  aspect-ratio: 1; border: 1px solid var(--stroke); border-radius: 8px;
  background: transparent; color: var(--text); font: inherit; font-size: .85rem; cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.cal__day:hover:not(:disabled) { border-color: var(--accent); }
.cal__day.is-today { border-color: var(--accent); color: var(--accent); }
.cal__day.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 700; }
.cal__day.is-off, .cal__day:disabled { opacity: .3; cursor: not-allowed; }
.cal__pad { aspect-ratio: 1; }
.slot__group { color: var(--muted); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; margin: 1rem 0 .5rem; }
.slot__row { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 6px; }
.slot {
  padding: .6rem .4rem; border: 1px solid var(--stroke); border-radius: 8px;
  background: transparent; color: var(--text); font: inherit; font-size: .8rem; cursor: pointer;
}
.slot.is-active { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.slot.is-off, .slot:disabled { opacity: .3; cursor: not-allowed; }
.slot__hint { color: var(--muted); font-size: .85rem; }
.booking__status { min-height: 1.4em; font-size: .9rem; }
.booking__status.is-warn { color: var(--warn); }
.booking__status.is-ok { color: var(--ok); }
form.is-sent .booking__fields { display: none; }

/* 16px minimum on mobile or iOS zooms the whole page on focus */
input, select, textarea {
  font: inherit; font-size: 16px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--stroke); border-radius: 8px; padding: .8rem 1rem;
}
@media (min-width: 768px) { input, select, textarea { font-size: .9rem; } }
label { display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }

/* --- configurator ---------------------------------------------------------- */
/* A <button> does NOT inherit colour or font. Left alone on a dark card it
   renders as near-black system text — a 1.1:1 contrast failure that looks
   like a styling slip and reads as unusable. */
[data-option] {
  cursor: pointer;
  font: inherit;
  color: var(--text);
  background: var(--surface);
  text-align: left;
  transition: border-color .25s ease, background .25s ease;
}
[data-option][aria-pressed="true"] { border-color: var(--accent); background: rgba(var(--accent-rgb), .09); }
[data-config-lines] { list-style: none; margin: 0; padding: 0; }
[data-config-lines] li { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; border-bottom: 1px solid var(--stroke); }
[data-config-lines] li.is-empty { color: var(--muted); border-bottom: 0; }
.config__ghost {
  position: fixed; z-index: 200; pointer-events: none; margin: 0;
  animation: config-fly .72s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes config-fly {
  45%  { transform: translate(calc(var(--dx) * .45), calc(var(--dy) * .45 - 60px)) scale(.55); opacity: .9; }
  100% { transform: translate(var(--dx), var(--dy)) scale(.2); opacity: 0; }
}

/* --- horizontal scroll ----------------------------------------------------- */
[data-hscroll-track] {
  display: flex;
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}
[data-hscroll-track] > * { flex: 0 0 100vw; }
[data-hscroll].is-pinned > [data-hscroll-track] {
  position: sticky; top: 0; height: 100svh; align-items: center;
}
/* below the breakpoint (and under reduced motion) it is a native swipe strip */
[data-hscroll]:not(.is-pinned) > [data-hscroll-track] {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  transform: none !important;
}
[data-hscroll]:not(.is-pinned) > [data-hscroll-track] > * {
  flex-basis: 86vw; scroll-snap-align: center;
}

/* --- steps: pinned stat-reveal ---------------------------------------------
   The Relats pattern: the section is tall (60–90vh per step), the stage is
   sticky, and .is-active swaps the jumbo claims. */
[data-steps-stage] {
  position: sticky; top: 0; height: 100svh; overflow: hidden;
  display: grid; place-items: center;
}
[data-step] {
  grid-area: 1 / 1;
  opacity: 0; transform: translateY(22px) scale(.985);
  transition: opacity .55s ease, transform .7s cubic-bezier(.05,.76,.38,1.015);
  /* that bezier's 1.015 overshoot is lifted from a shipped award site */
  text-align: center; pointer-events: none;
}
[data-step].is-active { opacity: 1; transform: none; pointer-events: auto; }
[data-step] .jumbo {
  font-size: clamp(3rem, 11vw, 10rem); line-height: .92; letter-spacing: -.02em;
}

/* --- fx-layer host ----------------------------------------------------------
   The CSS fallback IS the design: when WebGL is missing, reduced, or the
   valve floors out, this gradient is what users see. Always set it. */
[data-fx="background"] {
  background:
    radial-gradient(90% 70% at 62% 38%, rgba(var(--accent-rgb), .12), transparent 60%),
    linear-gradient(178deg, var(--bg) 0%, var(--surface) 55%, var(--bg) 100%);
}
.fx-media-wrap > canvas { border-radius: inherit; }

/* --- filter grid ----------------------------------------------------------- */
[data-filter-cat] { cursor: pointer; }
[data-filter-cat][aria-pressed="true"] { color: var(--accent); border-color: var(--accent); }
[data-item][hidden] { display: none; }

/* ===== hero-scroll.css ===== */
/* ============================================================================
 * hero-scroll.css — Studio 72 canvas scroll-scrub hero
 * Pair with assets/hero-scroll.js. Swap the tokens for the site's own.
 * ========================================================================== */

:root {
  --hero-bg: #07070a;
  --hero-text: #f5f5f0;
  --hero-muted: #6b6b6b;
  --hero-stroke: #1c1c21;
  --hero-accent: #c9a24b;
  --hero-accent-rgb: 201, 162, 75;
}

/* --- THE ONE RULE THAT BREAKS STICKY ---------------------------------------
   overflow-x:hidden on html/body (or ANY ancestor of .hero-stage) silently
   creates a scroll container and kills position:sticky. Zero console errors —
   the stage just scrolls away and the hero looks broken. Use clip. */
html, body { overflow-x: clip; }

/* --- track + stage --------------------------------------------------------- */
.hero-film {
  position: relative;
  /* Height = scroll distance. ~3–3.5vh per frame. 200 frames -> 700vh.
     Set this from the frame count, not by feel. */
  height: 700vh;
  background: var(--hero-bg);
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100svh;              /* svh, not vh — mobile URL bar */
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-bg);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero-canvas.is-on { opacity: 1; }

/* Instant-hero splash: the preloaded f_001 painted as a background so the LCP
   element exists before any JS runs. Removed by the engine on first decode. */
.hero-instant {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-bg) center/cover no-repeat;
  pointer-events: none;
}

.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-poster.is-on { opacity: 1; }

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 55%, rgba(0,0,0,.55) 100%),
    linear-gradient(rgba(0,0,0,.55), transparent 30%, transparent 72%, rgba(0,0,0,.5));
}

/* --- scroll-linked copy bands ---------------------------------------------
   <div class="hero-band" data-hero-band="0.04" data-hero-half="0.05" data-hero-fade="0.04">
   center / plateau half-width / ramp, all in track-progress units. */
.hero-band {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 90vw);
  text-align: center;
  padding: 0 1.2rem;
  pointer-events: none;              /* the block is decoration… */
  will-change: opacity, transform;
}
.hero-band .hero-cta,
.hero-band a,
.hero-band button { pointer-events: auto; }   /* …its controls are not */

.hero-band[data-pos="top"]    { top: clamp(5rem, 12vh, 9rem); }
.hero-band[data-pos="center"] { top: 50%; }
.hero-band[data-pos="center"] { transform: translate(-50%, -50%); }
.hero-band[data-pos="bottom"] { bottom: clamp(5rem, 12vh, 9rem); }

.hero-wordmark {
  width: min(600px, 78vw);
  height: auto;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.5));
}
.hero-eyebrow {
  font-size: clamp(.62rem, .8vw, .72rem);
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--hero-accent);
}
.hero-headline {
  font-size: clamp(2.4rem, 6.5vw, 6rem);
  line-height: .95;
  color: var(--hero-text);
  margin: .6em 0 .4em;
}

/* --- scroll cue ------------------------------------------------------------ */
.hero-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: calc(2rem + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--hero-muted);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.hero-cue.is-on { opacity: 1; }

/* --- entry gate ------------------------------------------------------------ */
.hero-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-content: center;
  gap: 1.4rem;
  justify-items: center;
  background: var(--hero-bg);
  transition: opacity .7s ease;
}
.hero-gate.is-gone { opacity: 0; pointer-events: none; }

.hero-gate__btn {
  position: relative;
  width: 116px; height: 116px;
  border-radius: 50%;
  border: 1px solid rgba(var(--hero-accent-rgb), .5);
  background: transparent;
  color: var(--hero-text);
  font: inherit;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: .35;
  transition: opacity .4s ease;
}
.hero-gate.is-ready .hero-gate__btn { opacity: 1; }
.hero-gate__btn[disabled] { cursor: progress; }
.hero-gate.is-ready .hero-gate__meta { opacity: .5; }
.hero-gate__btn::after {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(var(--hero-accent-rgb), .28);
  animation: hero-gate-ring 2.6s ease-out infinite;
}
@keyframes hero-gate-ring {
  0%   { transform: scale(.9);  opacity: .8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.hero-gate__meta {
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--hero-muted);
}
.hero-gate__track {
  width: min(280px, 60vw);
  height: 1px;
  background: var(--hero-stroke);
  overflow: hidden;
}
.hero-gate__bar {
  height: 100%;
  background: var(--hero-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s linear;
}

/* --- static tier: reduced-motion, save-data, no canvas --------------------- */
body.hero-static .hero-film   { height: 100svh; }
body.hero-static .hero-stage  { position: relative; }
body.hero-static .hero-cue    { display: none; }
body.hero-static .hero-band   { opacity: 1 !important; visibility: visible !important; }
body.hero-static .hero-band:not([data-hero-static="keep"]) { display: none; }
body.hero-static .hero-band[data-hero-static="keep"] {
  position: absolute; top: 50%; transform: translate(-50%, -50%) !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-canvas, .hero-poster, .hero-gate, .hero-cue { transition: none; }
  .hero-gate__btn::after { animation: none; }
}

/* ===== tgb-theme.css ===== */
/* ============================================================================
 * tgb-theme.css — The Grooming Boutique · groomingboutique.org
 * Cream boutique theme over sections.css + hero-scroll.css.
 * Palette per LOOKDEV_TGB artefact 4: cream field ~60%, warm mids ~25%,
 * sage→forest depth ~10%, gold ~5% AS LIGHT ONLY (never text on cream).
 * All --muted values ≥4.5:1 on both --bg and --surface (checked).
 * ========================================================================== */

:root {
  --bg: #F5F1ED;
  --surface: #EDE6DC;
  --surface2: #E5DCCF;
  --text: #2A241E;                 /* warm espresso — never pure black */
  --muted: #6A5D4F;                /* 5.68:1 on bg · 5.15:1 on surface */
  --stroke: #DCD2C4;
  --accent: #1B4332;               /* forest — the working accent on cream */
  --accent-rgb: 27, 67, 50;
  --accent-ink: #F5F1ED;
  --gold: #C9A96E;                 /* decorative light only on cream */
  --gold-rgb: 201, 169, 110;
  --sage: #C7D8CC;
  --rose: #E8C4C0;
  --forest-deep: #142E25;
  --ok: #3E7A5E;
  --warn: #A65B38;
  --r: 14px;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --overshoot: cubic-bezier(.05, .76, .38, 1.015);

  /* hero-scroll tokens — the film lives in the cream world too */
  --hero-bg: #EFE8DE;
  --hero-text: #2A241E;
  --hero-muted: #6A5D4F;
  --hero-stroke: #DCD2C4;
  --hero-accent: #1B4332;
  --hero-accent-rgb: 27, 67, 50;
}

/* Deep-forest bands re-theme every component inside them via the tokens. */
.band--forest {
  --bg: #142E25;
  --surface: #1B4332;
  --surface2: #215240;
  --text: #F5F1ED;
  --muted: #A9BFAF;                /* 7.43:1 deep · 5.68:1 surface */
  --stroke: #2A5743;
  --accent: #C9A96E;               /* gold earns text duty on forest only */
  --accent-rgb: 201, 169, 110;
  --accent-ink: #241E18;           /* 7.37:1 on gold */
  background: var(--bg);
  color: var(--text);
}

/* --- base ------------------------------------------------------------------ */
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }
em { font-style: italic; }
h1 em, h2 em { color: var(--accent); }
.band--forest h2 em { color: var(--gold); }

.wrap { width: min(1180px, calc(100% - clamp(2rem, 8vw, 6rem))); margin-inline: auto; }
.section { padding: clamp(4.5rem, 10vw, 8.5rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 2.2rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(var(--gold-rgb), .15));
}
.band--forest .eyebrow { color: var(--gold); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head .lead { color: var(--muted); font-size: 1.1rem; }

/* --- buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; min-height: 44px;
  border-radius: 999px; border: 1px solid var(--accent);
  background: transparent; color: var(--accent);
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  letter-spacing: .04em; text-decoration: none; cursor: pointer;
  transition: transform .5s var(--overshoot), background .25s ease,
              color .25s ease, box-shadow .35s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--accent {
  background: var(--accent); color: var(--accent-ink); border-color: var(--accent);
  box-shadow: 0 10px 28px -14px rgba(var(--accent-rgb), .65);
}
.btn--accent:hover { box-shadow: 0 16px 34px -12px rgba(var(--accent-rgb), .7); }
.btn--ghost { border-color: var(--stroke); color: var(--text); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.band--forest .btn--ghost { color: var(--text); }
.band--forest .btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* --- nav --------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .8rem clamp(1rem, 4vw, 2.4rem);
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
/* blur lives on a ::before overlay — backdrop-filter on .nav itself would
   make the fixed mobile menu size against the 62px nav box, not the viewport */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(245, 241, 237, .82);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  opacity: 0; transition: opacity .4s ease;
}
.nav.is-scrolled {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  box-shadow: 0 1px 0 var(--stroke);
  padding-block: .55rem;
}
.nav.is-scrolled::before { opacity: 1; }
.nav__brand {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-display); font-size: 1.05rem; color: var(--text);
  text-decoration: none; letter-spacing: .02em;
}
.nav__brand img { width: 44px; height: auto; }
.nav__menu { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 1.7rem); }
.nav__menu a {
  color: var(--text); text-decoration: none; font-size: .92rem; font-weight: 600;
  padding: .35rem 0; border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.nav__menu a:hover { color: var(--accent); border-bottom-color: var(--gold); }
.nav__menu a.btn { border-bottom: 1px solid var(--accent); padding: .6rem 1.3rem; }
.nav__menu a.btn--accent { color: var(--accent-ink); }
.nav__menu a.btn--accent:hover { color: var(--accent-ink); }
.nav__toggle { display: none; }

@media (max-width: 860px) {
  .nav__toggle {
    display: inline-flex; align-items: center; min-height: 44px;
    position: relative; z-index: 2;             /* stays tappable over the open menu */
    background: var(--bg); border: 1px solid var(--stroke); border-radius: 999px;
    padding: .5rem 1.1rem; font: 600 .85rem var(--font-body); color: var(--text);
    cursor: pointer;
  }
  .nav__menu {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; gap: 1.4rem;
    background: var(--bg);
    transform: translateY(-102%); transition: transform .5s var(--ease-out);
  }
  .nav.is-open .nav__menu { transform: none; }
  .nav__menu a { font-size: 1.25rem; }
}

/* --- hero overrides: warm scrims, boutique type ------------------------------ */
.hero-vignette {
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 60%, rgba(42, 36, 30, .28) 100%),
    linear-gradient(rgba(42, 36, 30, .22), transparent 26%, transparent 78%, rgba(42, 36, 30, .2));
}
.hero-band { text-shadow: none; }
.hero-band__scrim {
  display: inline-block; padding: clamp(1rem, 2.5vw, 1.8rem) clamp(1.4rem, 4vw, 2.6rem);
  border-radius: calc(var(--r) + 8px);
  background: radial-gradient(closest-side, rgba(245, 241, 237, .88), rgba(245, 241, 237, .62) 70%, rgba(245, 241, 237, 0));
}
.hero-eyebrow { color: var(--accent); font-weight: 600; }
.hero-headline {
  font-family: var(--font-display); font-weight: 500;
  color: var(--text); font-size: clamp(2.3rem, 5.6vw, 4.6rem); line-height: 1.05;
}
.hero-line {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem); color: var(--text); margin: 0;
}
.hero-crest { width: clamp(120px, 16vw, 190px); margin-inline: auto; }
.hero-crest img { width: 100%; }
.hero-cue { color: var(--muted); }
body.hero-static .hero-film { background: var(--hero-bg); }

/* --- marquee ------------------------------------------------------------------ */
.marquee { border-block: 1px solid var(--stroke); }
.marquee__row span {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.6vw, 1.7rem);
  letter-spacing: .12em; text-transform: uppercase;
}
.band--forest.marquee, .band--forest .marquee { border-color: var(--stroke); }
.marquee .dot { color: var(--gold); }

/* --- footer --------------------------------------------------------------------- */
.footer { font-size: .95rem; }
.footer a { color: var(--text); }
.footer a:hover { color: var(--gold); }
.footer__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-block: clamp(3rem, 7vw, 5rem) 2.2rem;
}
.footer__crest img { width: 130px; }
.footer h4 {
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-family: var(--font-body); font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer address { font-style: normal; }
.footer__legal {
  border-top: 1px solid var(--stroke); padding-block: 1.4rem 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  color: var(--muted); font-size: .82rem;
}
.footer__legal a { color: var(--muted); }
.footer__family { color: var(--muted); font-size: .85rem; }

/* --- idle layer (artefact 5): breathing gold + brass specular sweep ----------
   Stagger 11s/13s (motes canvas runs continuous), luminance delta ≤8%,
   ≤2 movers per viewport. All die under reduced motion; the static
   art-directed state is the gold rule itself. */
.gold-rule {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0), var(--gold), rgba(var(--gold-rgb), 0));
}
.js:not(.reduced-motion) .breathe { animation: tgb-breathe 13s ease-in-out infinite; }
@keyframes tgb-breathe {
  0%, 100% { opacity: .86; }
  50% { opacity: 1; }
}
.sweep { position: relative; overflow: hidden; }
.js:not(.reduced-motion) .sweep::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 248, 234, .35) 50%, transparent 58%);
  transform: translateX(-130%);
  animation: tgb-sweep 11s ease-in-out infinite;
}
@keyframes tgb-sweep {
  0%, 78% { transform: translateX(-130%); }
  92%, 100% { transform: translateX(130%); }
}
.motes-host { position: relative; }
.motes-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }

/* --- towel-wipe: the single transition gesture --------------------------------
   A soft warm cross-fade wiping through the frame on overlay open and on
   forest-band entries. Timed tail ~1s; dies under reduced motion. */
.overlay__panel { position: relative; overflow: hidden; }
.js:not(.reduced-motion) .overlay:not([hidden]) .overlay__panel::after {
  content: ""; position: absolute; inset: -2%; pointer-events: none; z-index: 4;
  background: linear-gradient(100deg, transparent 30%, rgba(245, 241, 237, .95) 46%, rgba(232, 196, 192, .55) 52%, transparent 68%);
  animation: tgb-wipe 1.1s var(--ease-out) forwards;
}
@keyframes tgb-wipe {
  from { transform: translateX(-108%); }
  to { transform: translateX(108%); }
}
.wipe-edge { position: relative; }
.wipe-edge::before {
  content: ""; position: absolute; inset: -1px 0 auto; height: clamp(3rem, 7vw, 5.5rem);
  transform: translateY(-99%); pointer-events: none;
  background: linear-gradient(rgba(245, 241, 237, 0), var(--bg));
}

/* --- misc ----------------------------------------------------------------------- */
::selection { background: rgba(var(--gold-rgb), .4); }
.skip-link:focus { background: var(--accent); color: var(--accent-ink); }
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}
.band--forest :where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline-color: var(--gold);
}

/* Instant-hero splash: served per breakpoint so mobile never downloads the
   1920px desktop frame. These two rules must match the <head> preload hints. */
.hero-instant { background-image: url('/assets/frames/tgb-hero/f_001.webp'); }
@media (max-width: 768px) {
  .hero-instant { background-image: url('/assets/frames/tgb-hero-mobile/f_001.webp'); }
}

/* --- headline balancing (tea-repo adoption; empirically gate-inert) --------- */
h1, h2, .hero-line { text-wrap: balance; }

/* --- hero chapter rail + progress meter (JS-injected; desktop only) --------- */
.hero-rail {
  position: absolute; right: clamp(14px, 2.6vw, 40px); top: 50%;
  transform: translateY(-50%); z-index: 6;
  display: flex; flex-direction: column;
  pointer-events: none;
  transition: opacity .5s ease;
}
.hero-rail::before {
  content: ""; position: absolute; top: 14px; bottom: 14px; left: 50%;
  width: 1px; transform: translateX(-50%);
  background: rgba(var(--gold-rgb), .45);
}
.hero-rail__dot {
  position: relative; width: 44px; height: 44px; padding: 0; border: 0;
  background: none; cursor: pointer; pointer-events: auto;
}
.hero-rail__dot::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: rgba(245, 241, 237, .65);
  box-shadow: 0 1px 6px rgba(42, 36, 30, .35);
  transition: background .3s ease, box-shadow .3s ease, width .3s ease, height .3s ease;
}
.hero-rail__dot:hover::after { background: #F5F1ED; }
.hero-rail__dot.is-active::after {
  width: 11px; height: 11px; background: var(--gold);
  box-shadow: 0 0 0 5px rgba(var(--gold-rgb), .22), 0 1px 6px rgba(42, 36, 30, .35);
}
.hero-rail__label {
  position: absolute; top: 50%; right: 40px; transform: translate(8px, -50%);
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(42, 36, 30, .62); color: #F5F1ED;
  font: 600 .66rem var(--font-body); letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap; opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.hero-rail__dot:hover .hero-rail__label,
.hero-rail__dot:focus-visible .hero-rail__label,
.hero-rail__dot.is-active .hero-rail__label { opacity: 1; transform: translate(0, -50%); }

.hero-meter {
  position: absolute; z-index: 6;
  left: clamp(1.2rem, 4.8vw, 4.5rem); right: clamp(1.2rem, 4.8vw, 4.5rem);
  bottom: calc(1.6rem + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 1rem;
  pointer-events: none; transition: opacity .5s ease;
}
.hero-meter__track {
  flex: 1; height: 1px; background: rgba(245, 241, 237, .28);
  position: relative; display: block;
}
.hero-meter__track i {
  position: absolute; inset: 0; display: block;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
}
.hero-meter__count {
  font: 600 .66rem var(--font-body); letter-spacing: .22em;
  color: #F5F1ED; padding: .3rem .7rem; border-radius: 999px;
  background: rgba(42, 36, 30, .7);   /* guaranteed floor over variable film */
}
body.hero-static .hero-rail, body.hero-static .hero-meter { display: none; }
@media (max-width: 860px) {
  .hero-rail, .hero-meter { display: none; }
}

/* --- wheel scroll cue (zero-asset; the 0→35→100 opacity shaping) ------------ */
.hero-cue {
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
}
.hero-cue::before {
  content: ""; width: 20px; height: 32px; border-radius: 999px;
  border: 1px solid rgba(245, 241, 237, .6);
  box-shadow: 0 1px 8px rgba(42, 36, 30, .3);
}
.hero-cue::after {
  content: ""; position: absolute; top: 7px; left: 50%; width: 2px; height: 7px;
  border-radius: 4px; background: var(--gold); transform: translateX(-50%);
  animation: tgb-wheel 1.7s ease-in-out infinite;
}
.hero-cue { position: absolute; }
@keyframes tgb-wheel {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}
.reduced-motion .hero-cue::after,
body.hero-static .hero-cue::after { animation: none; opacity: .8; }
@media (prefers-reduced-motion: reduce) { .hero-cue::after { animation: none; } }

/* ===== tgb-sections.css ===== */
/* ============================================================================
 * tgb-sections.css — per-section layout for groomingboutique.org
 * Order: promise · services · configurator · overview · numbers · process
 * (scrubbed scene + steps) · craft strip · care tabs · story · proof · booking
 * ========================================================================== */

/* --- 02 services line-up ---------------------------------------------------- */
.services-grid {
  display: grid; gap: 1.3rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.svc-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--stroke);
  border-radius: var(--r); overflow: hidden;
  transition: transform .6s var(--overshoot), box-shadow .45s ease, border-color .3s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb), .55);
  box-shadow: 0 24px 44px -24px rgba(42, 36, 30, .35);
}
.svc-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.svc-card:hover .svc-card__media img { transform: scale(1.045); }
.svc-card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.svc-card__price {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--accent);
}
.svc-card__price small { font-family: var(--font-body); font-size: .8rem; color: var(--muted); }
.svc-card__desc { color: var(--muted); font-size: .95rem; flex: 1; }
.svc-card__cta { margin-top: .6rem; font-weight: 700; font-size: .9rem; text-decoration: none; }
.svc-card__cta::after { content: " →"; }
.services-note { margin-top: 1.6rem; color: var(--muted); font-size: .9rem; max-width: 44rem; }

/* --- 03 configurator ---------------------------------------------------------- */
.config { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: 1.4fr 1fr; align-items: start; }
@media (max-width: 880px) { .config { grid-template-columns: 1fr; } }
.config fieldset { border: 0; margin: 0 0 1.4rem; padding: 0; }
.config legend {
  font-size: .78rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--accent); margin-bottom: .8rem;
}
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  position: relative; display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.15rem; min-height: 44px; border-radius: 999px;
  border: 1px solid var(--stroke); background: var(--surface);
  font: 600 .92rem var(--font-body); color: var(--text);
  transition: border-color .25s ease, background .25s ease, transform .45s var(--overshoot);
}
.chip > span { cursor: default; }   /* pointer lives on the input overlay only */
.chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.chip[hidden] { display: none; }
.chip input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.chip:has(input:checked) { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.chip:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 3px; }
.chip__price { font-weight: 400; opacity: .75; font-size: .85rem; }
.config-summary {
  position: sticky; top: 5.5rem;
  background: var(--surface); border: 1px solid var(--stroke); border-radius: var(--r);
  padding: 1.6rem 1.7rem 1.8rem;
}
.config-summary h3 { margin-bottom: 1rem; }
.config-summary ul { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .45rem; font-size: .95rem; }
.config-summary li { display: flex; justify-content: space-between; gap: 1rem; }
.config-summary li span:last-child { color: var(--accent); font-weight: 700; }
.config-total {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--stroke); padding-top: 1rem; margin-bottom: .4rem;
}
.config-total output { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.config-note { color: var(--muted); font-size: .82rem; margin-bottom: 1.2rem; }
.config-summary .btn { width: 100%; }

/* --- 04 overview still ---------------------------------------------------------- */
.overview { padding: 0; }
.overview__frame { position: relative; min-height: min(88svh, 780px); overflow: hidden; }
.overview__frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.overview__caption {
  position: absolute; inset: auto 0 0;
  padding: clamp(2rem, 6vw, 4rem);
  background: linear-gradient(rgba(42, 36, 30, 0), rgba(42, 36, 30, .58));
}
.overview__caption p {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem); color: #F5F1ED; max-width: 30ch;
  display: inline-block; background-color: rgba(42, 36, 30, .8);
  padding: .7em 1em; border-radius: calc(var(--r) + 4px);
}

/* --- 05 numbers ------------------------------------------------------------------- */
.numbers-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--gold); line-height: 1;
}
.stat span { display: block; margin-top: .55rem; color: var(--muted); font-size: .92rem; letter-spacing: .06em; }
.stat .gold-rule { width: 3rem; margin: 1rem auto 0; }

/* --- 06 process: scrubbed scene + pinned steps -------------------------------------- */
.process-band { position: relative; }
/* first frame as stage background — the band is never blank while the
   sequence lazy-loads; the canvas paints over it seamlessly */
.process-band [data-steps-stage] {
  background: #EFE8DE url('/assets/frames/tgb-steps/f_001.webp') center/cover no-repeat;
}
.process-steps-list { counter-reset: step; }
[data-steps-stage] .scene-copy {
  position: absolute; inset: auto 0 0; z-index: 3;
  padding: clamp(1.6rem, 5vw, 3.2rem);
  display: grid; justify-items: start; align-items: end;
  pointer-events: none;
}
[data-step] {
  grid-area: 1 / 1;
  max-width: 34rem;
  background: radial-gradient(closest-side, rgba(245, 241, 237, .92), rgba(245, 241, 237, .7) 72%, rgba(245, 241, 237, 0));
  border-radius: calc(var(--r) + 6px);
  padding: 1.3rem 1.9rem 1.4rem;
  transition: opacity .8s ease .25s, transform .9s var(--ease-out) .25s; /* the timed tail */
}
[data-step] .step-n {
  font-size: .74rem; font-weight: 700; letter-spacing: .3em;
  color: var(--accent); text-transform: uppercase;
}
[data-step] h3 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin: .25em 0 .2em; }
[data-step] p { margin: 0; color: var(--muted); font-size: .98rem; }
.scene-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.scene-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.js .scene-fallback { display: none; }

/* --- 07 craft strip: native snap strip at every width — no pinning,
   no dead scroll; the only scroll-owned media are the hero and the scene */
.craft-strip { position: relative; }
.craft-track {
  display: flex; gap: 1.2rem;
  overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 1rem; scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.craft-card {
  flex: 0 0 clamp(260px, 38vw, 520px); margin: 0;
  border-radius: var(--r); overflow: hidden; position: relative;
  border: 1px solid var(--stroke); background: var(--surface);
  scroll-snap-align: start;
}
.craft-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 11; }
.craft-card figcaption {
  position: absolute; inset: auto 0 0; padding: 1rem 1.2rem;
  font-size: .85rem; letter-spacing: .04em; color: #F5F1ED;
  background: linear-gradient(rgba(42, 36, 30, 0), rgba(42, 36, 30, .72));
}

/* --- 08 care tabs ----------------------------------------------------------------------- */
[role="tablist"] { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
[role="tab"] {
  padding: .7rem 1.3rem; min-height: 44px; border-radius: 999px;
  border: 1px solid var(--stroke); background: transparent;
  font: 600 .92rem var(--font-body); color: var(--text); cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
[role="tab"]:hover { border-color: var(--accent); }
[role="tab"][aria-selected="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
[role="tabpanel"] {
  background: var(--surface); border: 1px solid var(--stroke);
  border-radius: var(--r); padding: clamp(1.4rem, 4vw, 2.4rem);
}
[role="tabpanel"] ul { margin: 0; padding-left: 1.2rem; display: grid; gap: .6rem; }
[role="tabpanel"] li::marker { color: var(--gold); }
.care-cta { margin-top: 1.3rem; }

/* --- 09 story ------------------------------------------------------------------------------ */
.story { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1.05fr .95fr; align-items: center; }
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }
.story__media { border-radius: var(--r); overflow: hidden; position: relative; }
.story__media img { width: 100%; }
.story-features { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1rem; }
.story-features li { display: flex; gap: .9rem; align-items: baseline; }
.story-features .dot { color: var(--accent); font-size: 1.2rem; }
.story-features b { display: block; }
.story-features span { color: var(--muted); font-size: .95rem; }

/* --- 10 proof ---------------------------------------------------------------------------------- */
.proof-grid {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  grid-auto-flow: dense;
}
.proof-item {
  border: 0; padding: 0; background: none; cursor: pointer;
  border-radius: var(--r); overflow: hidden; position: relative; display: block;
}
.proof-item img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1;
  transition: transform .7s var(--ease-out);
}
.proof-item:hover img, .proof-item:focus-visible img { transform: scale(1.05); }
.proof-item--wide { grid-column: span 2; }
.proof-item--wide img { aspect-ratio: 2 / 1; }
@media (max-width: 560px) { .proof-item--wide { grid-column: span 1; } .proof-item--wide img { aspect-ratio: 1/1; } }

/* emmi before / after compare */
.compare { display: grid; gap: clamp(1.6rem, 4vw, 3rem); grid-template-columns: .9fr 1.1fr; align-items: center; margin-block: clamp(3rem, 7vw, 5rem); }
@media (max-width: 880px) { .compare { grid-template-columns: 1fr; } }
.compare__stage { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3 / 4; }
.compare__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__after { clip-path: inset(0 0 0 var(--cut, 50%)); }
.compare__handle {
  position: absolute; inset-block: 0; left: var(--cut, 50%); width: 2px;
  background: var(--gold); pointer-events: none;
}
.compare__handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold); color: #241E18; font-size: .7rem; font-weight: 700;
  padding: .45rem .55rem; border-radius: 999px; white-space: nowrap;
}
.compare__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.compare__tag {
  position: absolute; top: .9rem; padding: .35rem .8rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(42, 36, 30, .62); color: #F5F1ED; pointer-events: none;
}
.compare__tag--before { left: .9rem; }
.compare__tag--after { right: .9rem; }

/* reviews */
.review-card {
  background: var(--surface); border: 1px solid var(--stroke); border-radius: var(--r);
  padding: clamp(1.6rem, 4vw, 2.6rem); max-width: 46rem; margin-inline: auto;
}
.review-card .stars { color: #6E5527; letter-spacing: .18em; font-size: .95rem; }
.review-card blockquote { margin: .9rem 0 1.1rem; font-family: var(--font-display); font-size: 1.08rem; line-height: 1.6; }
.review-card figcaption { color: var(--muted); font-size: .9rem; }
.review-card figcaption b { color: var(--text); }
[data-carousel] { position: relative; }
[data-carousel-prev], [data-carousel-next] {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--stroke); background: var(--bg); color: var(--text);
  font-size: 1.1rem; cursor: pointer; transition: border-color .25s, color .25s;
}
[data-carousel-prev]:hover, [data-carousel-next]:hover { border-color: var(--accent); color: var(--accent); }
[data-carousel-prev] { left: -8px; }
[data-carousel-next] { right: -8px; }
/* Dots read as 10px but carry a full 44px touch target — WCAG 2.5.8 and the
   only accessibility item Lighthouse flagged. */
[data-carousel-dots] { display: flex; justify-content: center; gap: 0; margin-top: .9rem; }
[data-carousel-dots] button {
  width: 44px; height: 44px; border: 0; padding: 0; background: none;
  cursor: pointer; display: grid; place-items: center;
}
[data-carousel-dots] button::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--stroke); transition: background .3s;
}
[data-carousel-dots] button[aria-current="true"]::after { background: var(--gold); }

/* --- 11 booking ------------------------------------------------------------------------------------ */
.booking-solo { display: grid; gap: 1.1rem; justify-items: start; }
.booking-solo .btn { font-size: 1.1rem; padding: 1.2rem 2.6rem; }
.booking-solo .fineprint { color: var(--muted); font-size: .88rem; }
.booking-alt { display: grid; gap: .5rem; margin-top: 1rem; font-size: .98rem; }
.policies { margin-top: clamp(3rem, 7vw, 5rem); max-width: 52rem; }
.policies details {
  border-bottom: 1px solid var(--stroke); padding: .9rem 0;
}
.policies summary {
  cursor: pointer; font-weight: 700; font-size: 1rem; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
}
.policies summary::after { content: "+"; color: var(--gold); font-size: 1.2rem; }
.policies details[open] summary::after { content: "–"; }
.policies p { color: var(--muted); margin: .7rem 0 0; font-size: .96rem; }

/* --- promise strip (under hero) ---------------------------------------------------------------------- */
.promise-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.promise { padding: 1.3rem 1.4rem; border-left: 1px solid var(--stroke); }
.promise b { display: block; font-family: var(--font-display); font-size: 1.08rem; margin-bottom: .3rem; }
.promise span { color: var(--muted); font-size: .92rem; }
