/* ============================================================================
   COREY CREATED — site.css
   One stylesheet for the whole umbrella. Design tokens live at the top; change
   a colour or a font once here and it moves across every page and every branch.
   ========================================================================= */

/* ---------------------------------------------------------------- tokens -- */
:root{
  /* Palette — lifted directly from routinenaturalbeauty.com's own theme
     variables. These are their exact declared values, not approximations. */
  --paper:      #FFFFFF;
  --cream:      #FEF5E9;   /* their nav / footer / page cream            */
  --bone:       #FDF2E3;   /* a half-step deeper, for alternating bands  */
  --sand:       #F0E3D4;   /* their footer border tone, for soft blocks  */
  --ink:        #0E0D0C;   /* pushed to near-black: Routine's #303030 was the soft bit */
  --black:      #000000;   /* structural blocks, straight off the Deco card */
  --ink-2:      #595959;   /* their "light text"                         */
  --mute:       #A17C5E;   /* their mocha — nav + footer text            */
  --mocha:      #A17C5E;
  --cocoa:      #72523A;
  --choc:       #442515;   /* their dark header block                    */
  --butter:     #FCE7A8;   /* their "secondary elements" accent          */
  --terra:      #D1542E;   /* their accent orange                        */
  --gold:       #E3A22C;   /* the marigold jacket — second accent, POPS ONLY */
  --gold-ink:   #8A5F0C;   /* the same marigold darkened, for TEXT on cream:
                              #E3A22C as type on cream fails contrast (2.1) */
  --terra-btn:  #C24E2B;   /* same orange, a shade down. White on #D1542E is
                              4.18 — just under AA for small text; this is 4.75 */

  --line:       rgba(14,13,12,.34);
  --line-soft:  rgba(14,13,12,.16);

  --warm:       linear-gradient(180deg,#F0E3D4 0%,#FDF2E3 30%,#FEF5E9 52%,#FAEDDD 70%,#EFE0CD 100%);

  /* Type — Dressed in Lala runs on a lowercase monospace, so everything
     here is mono. `--logo` is the one exception: it renders the existing
     Deco wordmark, which is a real printed brand asset. */
  --mono:    'DM Mono',ui-monospace,'SF Mono',Menlo,Consolas,monospace;
  --display: var(--mono);
  --sans:    var(--mono);
  --logo:    'Bodoni Moda','Didot',Georgia,'Times New Roman',serif;

  /* Rhythm */
  --gut:      clamp(1.25rem, 4vw, 2.5rem);
  --sec:      clamp(4rem, 10vw, 8rem);
  --maxw:     1320px;
  --readw:    58ch;
  --head-h:   72px;

  --ease:     cubic-bezier(.22,.61,.36,1);
}

/* ------------------------------------------------------------------ base -- */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--sans);
  font-size:clamp(.875rem,.85rem + .12vw,.9375rem);
  font-weight:300;
  line-height:1.8;
  letter-spacing:0;
  -webkit-font-smoothing:antialiased;
  /* Keeps the full-bleed sections from causing a sideways scrollbar.
     Must be `hidden`, not `clip`: when <html> is `visible` the body's overflow
     propagates to the viewport, and `clip` there disables scrolling entirely.
     For the same reason, never put overflow on <html>. */
  overflow-x:hidden;
}
body.is-locked{ overflow:hidden; }

img,svg,video{ max-width:100%; display:block; }
a{ color:inherit; }
::selection{ background:var(--terra); color:#fff; }

/* ------------------------------------------------------------------ type --
   Mono throughout, the way dressedinlala.com sets its whole site. Short
   titles go uppercase and wide-tracked; sentences stay in sentence case so
   long copy stays readable at monospace widths. */
h1,h2,h3,h4{
  font-family:var(--mono);
  font-weight:400;
  line-height:1.12;
  letter-spacing:-.01em;
  margin:0 0 .5em;
  text-wrap:balance;
}
.d1{
  font-size:clamp(2.6rem,10.5vw,7.5rem); line-height:.92;
  text-transform:uppercase; letter-spacing:-.03em; font-weight:500;
}
.d2{
  font-size:clamp(1.9rem,5.6vw,4rem); line-height:1.0;
  text-transform:uppercase; letter-spacing:-.03em; font-weight:500;
}
.d3{ font-size:clamp(1.35rem,2.8vw,2.1rem); line-height:1.1; letter-spacing:-.02em; font-weight:500; }
.d4{ font-size:clamp(1.05rem,1.6vw,1.3rem); line-height:1.2; letter-spacing:-.01em; }

p{ margin:0 0 1.2em; }
.lede{
  font-size:clamp(.9375rem,.88rem + .3vw,1.0625rem);
  line-height:1.7; color:var(--ink-2);
  max-width:46ch; text-wrap:pretty;
}
.body{ max-width:var(--readw); color:var(--ink-2); }
.body p:last-child{ margin-bottom:0; }

/* the wide-tracked uppercase label, used the way Lala uses its manifesto type */
.eyebrow{
  font-family:var(--mono);
  font-size:.6875rem;
  font-weight:400;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--terra);
  margin:0 0 1.5rem;
  display:flex; align-items:center; gap:.7rem;
}
.eyebrow::before{
  content:''; width:2.2rem; height:2px; background:currentColor; flex:none;
}
.eyebrow.is-bare::before{ display:none; }
.eyebrow.on-dark{ color:rgba(254,245,233,.75); }

/* Lala's signature: a block of small uppercase mono set over the hero image */
.statement{
  font-family:var(--mono); font-size:clamp(.75rem,1.05vw,.875rem);
  text-transform:uppercase; letter-spacing:.09em; line-height:1.85;
  max-width:62ch; margin:0;
}

.mono{ font-family:var(--mono); font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; }
.serif-i{ font-family:var(--logo); font-style:italic; font-weight:400; }

/* ---------------------------------------------------------------- layout -- */
.wrap{ width:100%; max-width:var(--maxw); margin-inline:auto; padding-inline:var(--gut); }
.wrap-narrow{ max-width:900px; }
.section{ padding-block:var(--sec); }
.section-tight{ padding-block:clamp(3rem,7vw,5.5rem); }
.center{ text-align:center; }
.center .eyebrow{ justify-content:center; }
.center .lede{ margin-inline:auto; }

.rule{ height:2px; background:var(--ink); border:0; margin:0; }

/* a word picked out of a headline. Marigold behind, ink on top — the single
   biggest "pop" available without colouring a whole surface. */
.hl{ background:var(--gold); color:var(--ink); padding:0 .12em; }
.hl-o{ background:var(--terra); color:#fff; padding:0 .12em; }
.on-dark .hl, .band-copy .hl{ color:var(--ink); }

/* --------------------------------------------------------------- buttons -- */
.btn{
  --bg:var(--terra-btn); --fg:#fff; --bd:var(--terra-btn);
  display:inline-flex; align-items:center; justify-content:center; gap:.6rem;
  font-family:var(--mono); font-size:.6875rem; font-weight:400;
  letter-spacing:.2em; text-transform:uppercase; text-decoration:none;
  padding:1.15rem 2.2rem; border:1.5px solid var(--bd); background:var(--bg); color:var(--fg);
  border-radius:0; cursor:pointer; position:relative; overflow:hidden;
  transition:color .35s var(--ease), border-color .35s var(--ease);
}
.btn::after{
  content:''; position:absolute; inset:0; background:var(--ink);
  transform:translateY(101%); transition:transform .26s var(--ease); z-index:0;
}
.btn > *{ position:relative; z-index:1; }
.btn:hover::after,.btn:focus-visible::after{ transform:translateY(0); }
.btn:hover,.btn:focus-visible{ color:var(--cream); border-color:var(--ink); }

/* SECONDARY — outline. Takes its colour from whatever surface it sits on, so
   one class works on cream, on black, and over a photo. Fills orange on hover,
   which is the same hover language as the primary. */
.btn-ghost{
  --bg:transparent;
  color:inherit;
  border-color:currentColor;
}
.btn-ghost::after{ background:var(--terra-btn); }
.btn-ghost:hover,.btn-ghost:focus-visible{ color:#fff; border-color:var(--terra-btn); }

.btn-sm{ padding:.75rem 1.35rem; font-size:.625rem; letter-spacing:.18em; }

/* The one legitimate exception: on the terracotta band an orange button would
   vanish, so the primary inverts to ink there. */
.postfoot .btn{ --bg:var(--ink); --fg:var(--cream); --bd:var(--ink); }
.postfoot .btn::after{ background:var(--cream); }
.postfoot .btn:hover{ color:var(--ink); border-color:var(--cream); }

/* text link with an animated underline */
.tlink{
  font-family:var(--mono); font-size:.6875rem; letter-spacing:.2em;
  text-transform:uppercase; text-decoration:none; color:var(--ink);
  display:inline-block; padding-bottom:.4rem; position:relative;
}
.tlink::after{
  content:''; position:absolute; left:0; bottom:0; height:1px; width:100%;
  background:currentColor; transform-origin:right; transform:scaleX(1);
  transition:transform .4s var(--ease);
}
.tlink:hover::after{ transform-origin:left; transform:scaleX(0); }
.tlink.on-dark{ color:#fff; }

:where(a,button,input,textarea,select):focus-visible{
  outline:2px solid var(--terra); outline-offset:3px;
}
.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--ink); color:#fff; padding:1rem 1.5rem;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.16em; text-transform:uppercase;
}
.skip:focus{ left:0; }

/* ---------------------------------------------------------------- header -- */
.site-head{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:var(--head-h);
  display:flex; align-items:center;
  background:transparent;
  transition:background .4s var(--ease), border-color .4s var(--ease), height .4s var(--ease);
  border-bottom:1px solid transparent;
}
.site-head .wrap{ display:flex; align-items:center; gap:2rem; }

/* over a dark hero the header goes white; it inverts once you scroll */
.site-head.is-over-hero{ color:var(--cream); }
.site-head.is-stuck{
  background:var(--black);
  border-bottom-color:transparent;
  color:var(--cream);
}
.site-head.is-stuck .bm-sub{ opacity:.5; }

.brandmark{
  display:flex; align-items:baseline; gap:.55rem; text-decoration:none;
  color:inherit; flex:none; line-height:1;
}
.brandmark .bm-name{
  font-family:var(--mono); font-size:1.02rem; letter-spacing:-.03em;
  font-weight:500; text-transform:lowercase;
}
.brandmark .bm-sub{
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.28em;
  text-transform:uppercase; opacity:.62; padding-bottom:.1rem;
}
@media (max-width:520px){ .brandmark .bm-sub{ display:none; } }

.nav{ display:flex; align-items:center; gap:1.9rem; margin-left:auto; }
.nav > a:not(.btn){
  font-family:var(--mono); font-size:.8125rem; letter-spacing:0;
  text-transform:lowercase; text-decoration:none; color:inherit;
  position:relative; padding-block:.35rem; white-space:nowrap; opacity:.85;
  transition:opacity .25s var(--ease);
}
.nav > a:not(.btn)::after{
  content:''; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:currentColor; transform:scaleX(0); transform-origin:right;
  transition:transform .35s var(--ease);
}
.nav > a:not(.btn):hover{ opacity:1; }
.nav > a:not(.btn):hover::after,
.nav > a:not(.btn)[aria-current="page"]::after{ transform:scaleX(1); transform-origin:left; }
.nav > a:not(.btn)[aria-current="page"]{ opacity:1; }
.nav .soon-dot{
  display:inline-block; width:4px; height:4px; border-radius:50%;
  background:var(--terra); margin-left:.4rem; vertical-align:middle;
}
.nav-book{ margin-left:.4rem; }
@media (max-width:1000px){ .nav{ display:none; } .nav-book{ display:none; } }

/* burger */
.burger{
  margin-left:auto; display:none; width:46px; height:46px; padding:0;
  background:none; border:0; cursor:pointer; color:inherit;
  align-items:center; justify-content:center; flex-direction:column; gap:6px;
}
.burger span{ display:block; width:22px; height:1.5px; background:currentColor; border-radius:1px;
  transition:transform .3s var(--ease), opacity .15s; }
.burger[aria-expanded="true"] span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
@media (max-width:1000px){ .burger{ display:flex; } }

/* While the drawer is open the header sits on the drawer's cream, so it must
   drop its over-the-hero cream colouring — otherwise the logo and the close
   button are cream-on-cream and vanish. body.is-locked is set by site.js
   whenever the drawer opens. */
body.is-locked .site-head{
  color:var(--ink);
  background:transparent;
  border-bottom-color:transparent;
  backdrop-filter:none; -webkit-backdrop-filter:none;
}

/* mobile drawer */
.drawer{
  position:fixed; inset:0; z-index:99; background:var(--cream); color:var(--ink);
  padding:calc(var(--head-h) + 3rem) var(--gut) 3rem;
  display:flex; flex-direction:column;
  transform:translateY(-100%); transition:transform .55s var(--ease);
  overflow-y:auto;
}
.drawer.is-open{ transform:translateY(0); }
.drawer a:not(.btn){ text-decoration:none; color:inherit; }
.drawer-list{ list-style:none; margin:0; padding:0; }
.drawer-list li{ border-top:1px solid var(--line-soft); }
.drawer-list li:last-child{ border-bottom:1px solid var(--line-soft); }
.drawer-list a{
  display:flex; align-items:baseline; justify-content:space-between; gap:1rem;
  padding:1.15rem 0; font-family:var(--mono); text-transform:lowercase;
  font-size:clamp(1.4rem,6vw,2.1rem); line-height:1.15; letter-spacing:-.03em;
}
.drawer-list .d-note{
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--mute); flex:none;
}
.drawer-foot{ margin-top:auto; padding-top:2.5rem; display:grid; gap:1.25rem; }
.drawer-foot .btn{ width:100%; }
.drawer-meta{ display:flex; flex-wrap:wrap; gap:1.4rem; }
.drawer-meta a{ font-family:var(--mono); font-size:.6875rem; letter-spacing:.18em; text-transform:uppercase; }

/* ------------------------------------------------------------------ hero -- */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:flex-end;
  padding-top:var(--head-h); overflow:hidden; isolation:isolate;
}
.hero-chrome{ background:var(--warm); }
.hero-chrome::before{
  /* fine horizontal banding, like brushed metal */
  content:''; position:absolute; inset:0; z-index:-1; opacity:.35;
  background:repeating-linear-gradient(180deg,rgba(255,255,255,.55) 0 1px,transparent 1px 3px);
}
.hero-media{ position:absolute; inset:0; z-index:-2; background:var(--sand); }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 32%; }
.hero-media::after{
  content:''; position:absolute; inset:0;
  /* two scrims: one down the left where the type sits, one top-and-bottom for
     the header and the wordmark rule. Keeps the subject's face untouched. */
  background:
    linear-gradient(90deg,rgba(0,0,0,.66) 0%,rgba(0,0,0,.42) 34%,rgba(0,0,0,.06) 64%,rgba(0,0,0,0) 100%),
    linear-gradient(180deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,.14) 32%,rgba(0,0,0,.55) 100%);
}
.hero-inner{ width:100%; padding-top:clamp(2.5rem,7vw,5rem); padding-bottom:clamp(5rem,9vw,7.5rem); }

/* manifesto pinned to the top of the hero, wordmark to the bottom */
.hero-split{ align-items:stretch; }
.hero-split .hero-inner{
  display:flex; flex-direction:column; justify-content:space-between;
  gap:2.5rem; padding-top:calc(var(--head-h) + clamp(2rem,5vw,3.5rem));
}
@media (max-width:700px){ .hero-split .statement{ font-size:.6875rem; line-height:1.9; } }

/* the wordmark, set the way the Deco brand card sets it */
.wordmark{
  font-family:var(--mono); font-weight:500;
  font-size:clamp(2.8rem,14vw,9.5rem);
  line-height:.94; letter-spacing:-.06em; margin:0;
  text-transform:lowercase;
}
/* the one place the printed Deco logo is reproduced, so it keeps its serif */
.wordmark-logo{
  font-family:var(--logo); font-weight:500;
  font-size:clamp(3.6rem,21vw,13rem);
  line-height:.86; letter-spacing:-.035em; text-transform:none;
}
.wordmark em{ font-style:normal; font-weight:400; opacity:.62; }
.wordmark-logo em{ font-style:italic; font-weight:400; opacity:1; }
.wordmark-rule{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:1rem; margin-top:1.4rem; padding-top:1.1rem;
  border-top:1px solid var(--line);
  font-family:var(--mono); font-size:.625rem; letter-spacing:.26em; text-transform:uppercase;
}
@media (max-width:600px){
  .wordmark-rule{ font-size:.5rem; letter-spacing:.15em; gap:1.1rem; }
}
.wordmark-rule.on-dark{ border-top-color:rgba(254,245,233,.42); color:rgba(254,245,233,.92); }
.wordmark-rule span:last-child{ text-align:right; }

.hero-dark{ color:var(--cream); }
.hero-dark .wordmark{ color:var(--cream); text-shadow:0 1px 24px rgba(0,0,0,.28); }
.hero-dark .statement{ color:rgba(254,245,233,.96); text-shadow:0 1px 16px rgba(0,0,0,.4); }

.scroll-cue{
  position:absolute; left:50%; bottom:1.6rem; transform:translateX(-50%);
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.28em; text-transform:uppercase;
  opacity:.6; display:flex; flex-direction:column; align-items:center; gap:.6rem;
}
.scroll-cue::after{
  content:''; width:1px; height:34px; background:currentColor;
  animation:cue 2.4s var(--ease) infinite;
}
@keyframes cue{ 0%{transform:scaleY(0);transform-origin:top} 45%{transform:scaleY(1);transform-origin:top}
  55%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@media (prefers-reduced-motion:reduce){ .scroll-cue::after{ animation:none; } }
@media (max-width:700px){ .scroll-cue{ display:none; } }

/* ------------------------------------------------------------- bar links --
   The dark full-width strip of arrow links Dressed in Lala runs under its
   hero. Two or three links, split evenly, edge to edge. */
.barlinks{
  background:var(--black); color:var(--cream);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.barlinks a{
  display:flex; align-items:center; justify-content:center; gap:.75rem;
  padding:1.6rem 1.5rem; text-decoration:none; color:inherit;
  font-family:var(--mono); font-size:.75rem; letter-spacing:.16em;
  text-transform:uppercase; text-align:center;
  border-right:1px solid rgba(254,245,233,.22);
  transition:background .2s var(--ease);
}
.barlinks a:last-child{ border-right:0; }
.barlinks a:hover{ background:var(--terra); }
.barlinks a svg{ flex:none; color:var(--gold); transition:transform .3s var(--ease); }
.barlinks a:hover svg{ color:#fff; }
.barlinks a:hover svg{ transform:translateX(5px); }
/* auto-fit drops to two columns between roughly 480 and 760px, which strands a
   third link at half width. Below that, stack them full width instead. */
@media (max-width:760px){
  .barlinks{ grid-template-columns:1fr; }
  .barlinks a{
    border-right:0;
    border-bottom:1px solid rgba(254,245,233,.22);
    justify-content:space-between;
    text-align:left;
    padding-inline:var(--gut);
  }
  .barlinks a:last-child{ border-bottom:0; }
}

/* the real Deco logo card, sitting on the warm ground. multiply drops its
   off-white backing into the page cream so it reads as artwork, not a tile. */
/* the Deco wordmark, cut out of the logo artwork as a transparent PNG so it
   sits over photography without any blend-mode trickery */
.hero-mark{ margin:0; }
.hero-mark img{ width:min(400px,60vw); height:auto; }

/* a hero that is purely photographic: frame on the card, and drop the heavy
   scrims since there is no type to keep legible */
.hero-card .hero-media img{ object-position:center 62%; }
.hero-card{ background:#B39883; }   /* the photo's average tone — no white flash while it loads */
.hero-card .hero-media::after{ background:none; }
/* the scroll cue needs to hold its own against a pale photograph */
.hero-card .scroll-cue{ color:var(--ink); opacity:.55; }

/* ------------------------------------------------- marquee hero (F3) -----
   Photo behind, wordmark rows scrolling across it in opposite directions and
   inverting via mix-blend-mode. Rows live in a flex row-area and the caption
   sits below them in normal flow, so the two can never collide. */
.hero-mq{ flex-direction:column; align-items:stretch; background:var(--black); }
.mq-scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg,rgba(0,0,0,.5) 0%,rgba(0,0,0,.14) 34%,rgba(0,0,0,.55) 78%,rgba(0,0,0,.85) 100%);
}
.hero-mq .hero-media img{ object-position:center 30%; }
.mq-rows{
  position:relative; z-index:3; flex:1; min-height:0;
  display:flex; flex-direction:column; justify-content:center;
  gap:clamp(12px,2.4vw,34px);
  mix-blend-mode:difference;
}
.mq-band{ overflow:hidden; }
.mq-track{ display:flex; width:max-content; align-items:center; gap:clamp(28px,4vw,56px); }
.mq-track img{ height:clamp(58px,10.5vw,140px); width:auto; display:block; }
.mq-band:nth-child(1) .mq-track{ animation:mqslide 26s linear infinite; }
.mq-band:nth-child(2) .mq-track{ animation:mqslide 34s linear infinite reverse; }
.mq-band:nth-child(3) .mq-track{ animation:mqslide 30s linear infinite; }
@keyframes mqslide{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .mq-track{ animation:none !important; } }
.mq-foot{ position:relative; z-index:6; padding-bottom:clamp(1.5rem,3vw,2.5rem); color:var(--cream); }
.mq-foot-top{ display:flex; justify-content:space-between; align-items:flex-end; gap:1.25rem; flex-wrap:wrap; }
.mq-foot .eyebrow{ margin:0; }
.mq-rule{
  display:flex; justify-content:space-between; gap:1rem;
  margin-top:1rem; padding-top:.9rem;
  border-top:1.5px solid rgba(254,245,233,.4);
  font-family:var(--mono); font-size:.625rem; letter-spacing:.24em;
  text-transform:uppercase; color:rgba(254,245,233,.9);
}
@media (max-width:600px){ .mq-rule{ font-size:.5rem; letter-spacing:.15em; } }

/* ------------------------------------------------ service menu (SLAM) ----
   Collapsed by category. Bars are black, flood terracotta when open. */
.menu-cat details{ border-bottom:2px solid var(--ink); }
.menu-cat details:first-of-type{ border-top:2px solid var(--ink); }
.menu-cat summary{
  cursor:pointer; list-style:none;
  background:var(--black); color:var(--cream);
  display:flex; align-items:center; gap:clamp(.75rem,3vw,2.5rem);
  padding:clamp(.9rem,2.2vw,1.7rem) clamp(.9rem,3vw,2.2rem);
  transition:background .18s var(--ease);
}
.menu-cat summary::-webkit-details-marker{ display:none; }
.menu-cat summary:hover{ background:var(--terra); }
.menu-cat details[open] summary{ background:var(--terra); }
.menu-num{ font-family:var(--mono); font-size:clamp(.95rem,2vw,1.6rem); font-weight:500; opacity:.6; min-width:2.4ch; }
.menu-ttl{
  font-family:var(--mono); font-size:clamp(1.15rem,4vw,2.8rem); font-weight:500;
  text-transform:uppercase; letter-spacing:-.03em; line-height:1; margin:0; flex:1;
}
.menu-ct{
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.2em; text-transform:uppercase;
  white-space:nowrap; background:var(--gold); color:var(--ink); padding:.35rem .6rem;
}
.menu-body{ padding:clamp(.9rem,2.2vw,1.8rem) clamp(.9rem,3vw,2.2rem) clamp(1.25rem,2.6vw,2.2rem); }
/* Every menu item is a link straight to that service on Square. The whole row
   is the target (big and easy on a phone) and a small "Book" label says so,
   quiet until hover, so eighteen rows do not turn into eighteen buttons. */
.menu-item{
  position:relative; display:block; padding-block:1rem;
  border-bottom:1px solid var(--line-soft); color:inherit; text-decoration:none;
  transition:background-color .25s var(--ease);
}
.menu-book{
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--mute); display:inline-flex; align-items:center; gap:.45rem; white-space:nowrap;
  transition:color .25s var(--ease);
}
.menu-book svg{ transition:transform .3s var(--ease); }
/* Label sits bottom-right, under the price. The description stops at 62ch so
   they never meet on a wide screen; on a phone the row gets a little extra
   bottom padding to make room for it. */
.menu-item .menu-book{ position:absolute; right:0; bottom:1.05rem; }
@media (max-width:760px){
  .menu-item{ padding-bottom:2.4rem; }
  .menu-item .menu-book{ bottom:1rem; }
}
.menu-item:hover .menu-nm, .svc-row:hover .svc-name{ color:var(--terra); }
.menu-item:hover .menu-book, .svc-row:hover .menu-book,
.menu-item:focus-visible .menu-book, .svc-row:focus-visible .menu-book{ color:var(--terra); }
.menu-item:hover .menu-book svg, .svc-row:hover .menu-book svg{ transform:translateX(4px); }
.menu-item:last-child{ border-bottom:0; }
.menu-top{ display:flex; align-items:baseline; gap:.9rem; }
.menu-nm{ font-family:var(--mono); font-size:clamp(.9375rem,1.8vw,1.2rem); letter-spacing:-.01em; }
.menu-dots{ flex:1; border-bottom:2px dotted rgba(14,13,12,.3); transform:translateY(-.3em); }
.menu-pr{ font-family:var(--mono); font-size:clamp(.9375rem,1.8vw,1.2rem); font-weight:500; white-space:nowrap; }
.menu-ds{ font-size:.8125rem; line-height:1.6; color:var(--ink-2); margin:.3rem 0 0; max-width:62ch; }
.menu-du{ font-family:var(--mono); font-size:.5625rem; letter-spacing:.2em; text-transform:uppercase; color:var(--terra); }

/* --------------------------------------------------------------- marquee -- */
.marquee{
  background:var(--black); color:var(--cream);
  overflow:hidden; padding-block:1.15rem;
}
.marquee-track{ display:flex; width:max-content; animation:slide 30s linear infinite; }
.marquee:hover .marquee-track{ animation-play-state:paused; }
.marquee-track > span{
  font-family:var(--mono); font-size:.8125rem; font-weight:500; letter-spacing:.2em;
  text-transform:uppercase; color:var(--cream); padding-inline:1.5rem; white-space:nowrap;
  display:inline-flex; align-items:center; gap:1.6rem;
}
.marquee-track > span::after{ content:'✦'; color:var(--terra); font-size:.75rem; letter-spacing:0; }
@keyframes slide{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion:reduce){ .marquee-track{ animation:none; } }

/* ------------------------------------------------------ full-bleed bands --
   This is the stacked, edge-to-edge image treatment from Routine: a tall
   photo, type sitting inside it, one small button. Repeat down the page. */
.band{
  position:relative; isolation:isolate; overflow:hidden;
  min-height:clamp(520px,86vh,900px);
  display:flex; align-items:center; color:#fff;
}
.band-media{ position:absolute; inset:0; z-index:-2; background:var(--cocoa); }
.band-media img{ width:100%; height:100%; object-fit:cover; transition:transform 1.1s var(--ease); }
.band:hover .band-media img{ transform:scale(1.035); }
.band::after{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg,rgba(0,0,0,.52) 0%,rgba(0,0,0,.34) 42%,rgba(0,0,0,.74) 100%);
}
.band-inner{ width:100%; max-width:var(--maxw); margin-inline:auto; padding:var(--gut); }
.band-copy{ max-width:34ch; }
.band-copy p{ color:rgba(255,255,255,.86); }
.band-center{ text-align:center; }
.band-center .band-copy{ margin-inline:auto; }
.band-center .eyebrow{ justify-content:center; }
.band-end{ align-items:flex-end; }
.band-short{ min-height:clamp(400px,60vh,600px); }

/* ----------------------------------------------------------- editorial duo -
   Two images side by side, the second dropped lower. Reads as art direction
   rather than a grid, and it is what makes the scroll feel considered. */
.duo{
  display:grid; grid-template-columns:1.15fr .85fr;
  gap:clamp(1rem,4vw,3.5rem); align-items:start;
}
.duo figure{ margin:0; }
.duo figure:nth-child(2){ margin-top:clamp(3.5rem,14vw,11rem); }
.duo img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.duo figcaption{
  margin-top:1rem; font-family:var(--mono); font-size:.625rem;
  letter-spacing:.2em; text-transform:uppercase; color:var(--ink);
}
.duo-tall img{ aspect-ratio:3/4; }
@media (max-width:640px){ .duo figure:nth-child(2){ margin-top:0; } }

/* split: image one side, copy the other */
.split{
  display:grid; grid-template-columns:1.05fr .95fr;
  gap:clamp(2rem,6vw,5.5rem); align-items:center;
}
.split-copy{ max-width:46ch; }
.split img{ width:100%; aspect-ratio:4/5; object-fit:cover; }
.split-flip .split-media{ order:2; }
@media (max-width:860px){
  .split{ grid-template-columns:1fr; }
  .split-flip .split-media{ order:0; }
}

/* ---------------------------------------------------------- branch cards -- */
/* Four branches, so the column count is set explicitly rather than left to
   auto-fit. auto-fit lands on THREE columns between roughly 900px and 1170px,
   which strands the fourth card alone on its own row. Explicit 4 / 2 / 1 keeps
   the grid square at every width.
   ADDING A FIFTH BRANCH? A 5th card will sit alone on the second row at the
   widest size. Either change the 4 below to 3 (so five reads 3 + 2), or add a
   sixth branch. Nothing breaks either way — it is only a question of balance. */
.branches{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:clamp(1rem,1.6vw,1.25rem);
}
@media (max-width:1180px){ .branches{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){  .branches{ grid-template-columns:1fr; } }
.branch{
  position:relative; display:flex; flex-direction:column;
  text-decoration:none; color:inherit; background:var(--paper);
  border:1.5px solid var(--ink); overflow:hidden;
  transition:border-color .4s var(--ease), transform .4s var(--ease);
}
.branch::before{
  content:''; position:absolute; top:0; left:0; right:0; height:7px; z-index:3;
  background:var(--terra);
}
.branch:nth-child(even)::before{ background:var(--gold); }
.branch:hover{ transform:translateY(-6px); }
.branch:hover .branch-go{ color:var(--terra); }
.branch-media{ position:relative; overflow:hidden; aspect-ratio:4/5; background:var(--bone); }
.branch-media img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease); }
.branch:hover .branch-media img{ transform:scale(1.05); }
.branch-body{ padding:clamp(1.35rem,2.4vw,1.9rem); display:flex; flex-direction:column; flex:1; }
.branch-body h3{ font-size:clamp(1.05rem,1.5vw,1.25rem); margin-bottom:.6rem; letter-spacing:-.02em; }
.branch-body p{ font-size:.8125rem; line-height:1.75; color:var(--ink-2); margin-bottom:1.5rem; }
.branch-go{
  margin-top:auto; font-family:var(--mono); font-size:.625rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--terra);
  display:inline-flex; align-items:center; gap:.6rem;
}
.branch:nth-child(even) .branch-go{ color:var(--gold-ink); }
.branch:nth-child(even) .branch-body .eyebrow{ color:var(--gold-ink); }
.branch-go svg{ transition:transform .35s var(--ease); }
.branch:hover .branch-go svg{ transform:translateX(5px); }
.tag-soon{
  position:absolute; top:1rem; left:1rem; z-index:2;
  background:var(--terra); color:#fff; padding:.45rem .8rem;
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.2em; text-transform:uppercase;
}
.branch:nth-child(even) .tag-soon{ background:var(--gold); color:var(--ink); }
.branch.is-soon .branch-media{ opacity:.92; }
.branch.is-soon:hover .branch-media{ opacity:1; }

/* edge-to-edge: nothing says "polite" like everything living in a box */
.bleed{ width:100vw; margin-inline:calc(50% - 50vw); }

/* --------------------------------------------------------------- gallery -- */
.gallery{
  display:grid; grid-template-columns:repeat(4,1fr); gap:4px;
}
.gallery a,.gallery div{
  display:block; overflow:hidden; background:var(--sand); position:relative;
  aspect-ratio:2/3;   /* matches the source photos, so nothing is badly cropped */
}
.gallery img{ width:100%; height:100%; object-fit:cover; transition:transform .8s var(--ease), opacity .4s; }
.gallery a:hover img{ transform:scale(1.06); opacity:.92; }
@media (max-width:820px){ .gallery{ grid-template-columns:repeat(2,1fr); } }
.ig-strip{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:1.5rem; flex-wrap:wrap; margin-bottom:2.5rem;
}
.gallery.bleed{ padding-inline:0; }
.section-flush-bottom{ padding-bottom:0 !important; }

/* --------------------------------------------------------------- services -- */
.svc-group{ margin-bottom:clamp(3rem,6vw,4.5rem); }
.svc-group:last-child{ margin-bottom:0; }
.svc-head{
  display:grid; grid-template-columns:minmax(0,26ch) 1fr;
  gap:clamp(1rem,4vw,3rem); align-items:end;
  padding-bottom:1.9rem; border-bottom:2px solid var(--ink);
}
.svc-head h3{ font-size:clamp(1.15rem,2.2vw,1.6rem); margin:0; text-transform:uppercase; letter-spacing:.06em; }
.svc-head p{ margin:0; font-size:.75rem; line-height:1.8; color:var(--ink-2); max-width:54ch; }
@media (max-width:720px){ .svc-head{ grid-template-columns:1fr; align-items:start; } }

.svc-row{
  display:grid; grid-template-columns:minmax(0,26ch) 1fr auto;
  gap:clamp(1rem,4vw,3rem); align-items:baseline;
  padding-block:1.5rem; border-bottom:1px solid var(--line-soft);
}
.svc-name{ font-family:var(--mono); font-size:1rem; line-height:1.3; margin:0 0 .35rem; letter-spacing:-.01em; }
.svc-dur{ font-family:var(--mono); font-size:.625rem; letter-spacing:.2em; text-transform:uppercase; color:var(--mute); }
.svc-desc{ margin:0; font-size:.8125rem; line-height:1.75; color:var(--ink-2); max-width:60ch; }
.svc-row{ color:inherit; text-decoration:none; }
.svc-price{
  font-family:var(--mono); font-size:.8rem; letter-spacing:.1em;
  white-space:nowrap; text-align:right;
  display:flex; flex-direction:column; align-items:flex-end; gap:.6rem;
}
@media (max-width:720px){
  .svc-row{ grid-template-columns:1fr auto; row-gap:.5rem; }
  .svc-desc{ grid-column:1 / -1; }
}

/* -------------------------------------------------------------- favorites -- */
.filters{ display:flex; flex-wrap:wrap; gap:.6rem; margin-bottom:clamp(2rem,4vw,3rem); }
.chip{
  font-family:var(--mono); font-size:.625rem; letter-spacing:.18em; text-transform:uppercase;
  padding:.75rem 1.2rem; border:1.5px solid var(--ink); background:transparent;
  color:var(--ink-2); cursor:pointer; border-radius:0;
  transition:background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.chip:hover{ border-color:var(--ink); }
.chip[aria-pressed="true"]{ background:var(--ink); border-color:var(--ink); color:#fff; }

.fav-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:clamp(1.25rem,2.6vw,2.25rem);
}
.fav{
  display:flex; flex-direction:column; background:var(--paper);
  border:1.5px solid var(--ink); text-decoration:none; color:inherit;
  transition:transform .3s var(--ease);
}
a.fav:hover{ transform:translateY(-5px); }
a.fav:hover .fav-cta{ color:var(--terra); }
.fav-media{ position:relative; aspect-ratio:1/1; overflow:hidden; background:var(--bone); }
.fav-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.fav:nth-child(even) .fav-tag{ background:var(--gold); color:var(--ink); }
a.fav:hover .fav-media img{ transform:scale(1.05); }
/* z-index is doing real work here, do not drop it. The product photo below
   scales on hover, and an element with a transform paints in the same layer as
   positioned elements — so with z-index:auto the image (later in the markup)
   covered the badge the moment you hovered the card. */
.fav-tag{
  position:absolute; z-index:2; top:.85rem; left:.85rem; background:var(--terra); color:#fff;
  padding:.35rem .65rem; font-family:var(--mono); font-size:.5rem;
  letter-spacing:.18em; text-transform:uppercase;
}
.fav-body{ padding:1.25rem 1.35rem 1.5rem; display:flex; flex-direction:column; flex:1; }
.fav-brand{ font-family:var(--mono); font-size:.5625rem; letter-spacing:.22em; text-transform:uppercase; color:var(--mute); margin-bottom:.5rem; }
.fav-name{ font-family:var(--mono); font-size:.9375rem; line-height:1.35; margin:0 0 .6rem; letter-spacing:-.01em; }
.fav-note{ font-size:.8125rem; color:var(--ink-2); margin:0 0 1.25rem; line-height:1.75; }
.fav-cta{ margin-top:auto; font-family:var(--mono); font-size:.625rem; letter-spacing:.2em; text-transform:uppercase; display:inline-flex; gap:.5rem; align-items:center; }
.fav-cta.is-off{ color:var(--mute); }

.disclosure{
  background:var(--butter); border-left:4px solid var(--terra);
  padding:1.1rem 1.35rem; font-size:.75rem; line-height:1.8; color:var(--ink);
  max-width:70ch; margin:0 0 clamp(2rem,4vw,3rem);
}

/* --------------------------------------------------------------- booking -- */
.book-frame{
  border:1px solid var(--line); background:var(--paper);
  overflow:hidden; min-height:600px;
}
.book-frame iframe{ width:100%; border:0; display:block; }
.book-fallback{
  background:var(--bone); border:1px solid var(--line);
  padding:clamp(2.5rem,6vw,4.5rem); text-align:center;
}
.book-fallback .d3{ margin-bottom:.6rem; }
.book-steps{
  list-style:none; margin:0; padding:0; display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:clamp(1.5rem,3vw,2.5rem); counter-reset:s;
}
.book-steps li{ counter-increment:s; }
.book-steps li::before{
  content:counter(s,decimal-leading-zero);
  display:block; font-family:var(--mono); font-size:.6875rem;
  letter-spacing:.2em; color:var(--terra); margin-bottom:.9rem;
}
.book-steps h4{ font-size:1rem; margin-bottom:.55rem; letter-spacing:-.01em; }
.book-steps p{ font-size:.8125rem; line-height:1.75; color:var(--ink-2); margin:0; }

/* ----------------------------------------------------------------- forms -- */
.form{ display:grid; gap:1rem; max-width:520px; }
.form-row{ display:flex; gap:.75rem; flex-wrap:wrap; }
.form-row input{ flex:1 1 220px; }
.field{ display:grid; gap:.45rem; }
.field label{
  font-family:var(--mono); font-size:.625rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--mute);
}
input,textarea,select{
  font-family:var(--mono); font-size:.875rem; font-weight:300; color:var(--ink);
  background:var(--paper); border:1.5px solid var(--ink); border-radius:0;
  padding:.95rem 1rem; width:100%;
  transition:border-color .3s var(--ease);
}
input:focus,textarea:focus,select:focus{ border-color:var(--ink); }
textarea{ min-height:150px; resize:vertical; }
.form-note{ font-size:.75rem; color:var(--mute); font-family:var(--mono); letter-spacing:.08em; }
.form-ok{
  background:var(--butter); border-left:4px solid var(--terra);
  padding:1rem 1.25rem; font-size:.9rem;
}

/* ---------------------------------------------------------------- footer -- */
.site-foot{ background:var(--black); color:var(--cream); padding-block:clamp(3.5rem,8vw,6rem) 2rem; }
.site-foot a{ text-decoration:none; }
.foot-top{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:clamp(2rem,5vw,3.5rem); padding-bottom:clamp(3rem,6vw,4.5rem);
}
@media (max-width:900px){ .foot-top{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .foot-top{ grid-template-columns:1fr; } }
.foot-mark{ font-family:var(--mono); text-transform:lowercase; letter-spacing:-.03em; font-size:clamp(1.6rem,3.4vw,2.2rem); line-height:1.15; margin:0 0 .9rem; }
.foot-tag{ color:rgba(254,245,233,.62); font-size:.8125rem; line-height:1.75; max-width:34ch; margin:0; }
.foot-h{
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.24em;
  text-transform:uppercase; color:rgba(254,245,233,.5); margin:0 0 1.2rem;
}
.foot-list{ list-style:none; margin:0; padding:0; display:grid; gap:.7rem; }
.foot-list a,.foot-list span{
  font-size:.8125rem; color:rgba(254,245,233,.85);
  transition:color .25s var(--ease);
}
.foot-list a:hover{ color:var(--butter); }
.foot-list .soon{ color:rgba(254,245,233,.42); font-family:var(--mono); font-size:.5625rem; letter-spacing:.18em; text-transform:uppercase; margin-left:.4rem; }
.foot-bottom{
  border-top:1px solid rgba(254,245,233,.16); padding-top:1.75rem;
  display:flex; flex-wrap:wrap; gap:1rem 2rem; justify-content:space-between;
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.2em;
  text-transform:uppercase; color:rgba(254,245,233,.5);
}
.foot-bottom a:hover{ color:#fff; }

/* a bare list used outside the footer (contact page details) */
.plain-list{ list-style:none; margin:0; padding:0; display:grid; gap:1rem; }

/* --------------------------------------------------------- footer reveal --
   The pinned block sits behind the page; <main> rides over it on an opaque
   background and slides up to uncover it at the end of the scroll.
   .has-reveal is only set by site.js when the block fits the window. */
.foot-reveal{ position:relative; z-index:0; }
body.has-reveal .foot-reveal{
  position:fixed; left:0; right:0; bottom:0; z-index:0;
}
body.has-reveal main{
  position:relative; z-index:1;
  background:var(--cream);
  box-shadow:0 24px 40px -10px rgba(0,0,0,.35);
}

/* phone variant: only the email band is pinned, and the footer rides over it */
body.has-reveal-post .postfoot{
  position:fixed; left:0; right:0; bottom:0; z-index:0;
}
body.has-reveal-post main,
body.has-reveal-post .site-foot{ position:relative; z-index:1; }
body.has-reveal-post main{ background:var(--cream); }
body.has-reveal-post .site-foot{ box-shadow:0 24px 40px -10px rgba(0,0,0,.35); }

/* ---------------------------------------------------- below the footer ----
   Terracotta so it lands as a jolt after the black footer rather than
   blending into it. Only seen by scrolling past everything. */
.postfoot{ background:var(--terra); color:var(--cream); padding-block:clamp(2.5rem,6vw,4.5rem); }
.postfoot-in{
  display:grid; grid-template-columns:1fr minmax(300px,.9fr);
  gap:clamp(1.5rem,5vw,4rem); align-items:center;
}
.postfoot-h{
  font-family:var(--mono); font-size:clamp(1.5rem,3.6vw,2.6rem); font-weight:500;
  text-transform:uppercase; letter-spacing:-.03em; line-height:1; margin:0 0 .5rem;
}
.postfoot-p{ margin:0; font-size:.8125rem; line-height:1.7; color:rgba(254,245,233,.88); max-width:44ch; }
.postfoot-form{ max-width:none; }
.postfoot-form input{
  background:transparent; border:1.5px solid rgba(254,245,233,.55); color:var(--cream);
}
.postfoot-form input::placeholder{ color:rgba(254,245,233,.6); }
.postfoot-form input:focus{ border-color:var(--cream); }
.postfoot .form-ok{ background:rgba(0,0,0,.22); border-left-color:var(--cream); color:var(--cream); }
@media (max-width:760px){ .postfoot-in{ grid-template-columns:1fr; } }

/* ------------------------------------------------------------ wave motif --
   Echoes the squiggle mural on the studio wall. Used as a section divider. */
.wave{ display:block; width:100%; height:clamp(34px,5vw,64px); color:var(--ink); opacity:1; }
.wave path{ stroke:currentColor; stroke-width:2.5; fill:none; }

/* --------------------------------------------------------------- reveals -- */
.rv{ opacity:0; transform:translateY(22px); }
.rv.in{ opacity:1; transform:none; transition:opacity .85s var(--ease), transform .85s var(--ease); }
.rv-d1.in{ transition-delay:.09s; } .rv-d2.in{ transition-delay:.18s; } .rv-d3.in{ transition-delay:.27s; }
@media (prefers-reduced-motion:reduce){ .rv{ opacity:1; transform:none; } }

/* --------------------------------------------------------- misc + utils -- */
.pill{
  display:inline-block; border:1px solid var(--line); padding:.45rem .85rem;
  font-family:var(--mono); font-size:.5625rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--mute);
}
.stat-row{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:2rem; }
.stat-n{ font-family:var(--mono); font-size:clamp(2.6rem,5.4vw,4rem); font-weight:500;
  line-height:1; margin:0 0 .6rem; letter-spacing:-.04em; color:var(--terra); }
.stat-row > *:nth-child(even) .stat-n{ color:var(--gold-ink); }
.stat-l{ font-family:var(--mono); font-size:.6875rem; letter-spacing:.22em; text-transform:uppercase; color:var(--ink); font-weight:500; }
.bg-bone{ background:var(--sand); }
.bg-ink{ background:var(--black); color:var(--cream); }
.bg-ink .lede,.bg-ink .body{ color:rgba(254,245,233,.78); }
.bg-ink .eyebrow{ color:rgba(254,245,233,.6); }
.quote{
  font-family:var(--mono); font-size:clamp(1.5rem,4.4vw,3.1rem); text-transform:uppercase;
  line-height:1.3; letter-spacing:-.03em; font-weight:500; max-width:none; margin:0;
  text-wrap:balance;
}
.quote-attr{ font-family:var(--mono); font-size:.6875rem; letter-spacing:.24em; text-transform:uppercase; color:var(--terra); margin-top:2.4rem; }
.faq{ border-top:1px solid var(--line-soft); }
.faq details{ border-bottom:1px solid var(--line-soft); }
.faq summary{
  cursor:pointer; list-style:none; padding:1.4rem 0;
  font-family:var(--mono); font-size:clamp(.9375rem,1.5vw,1.125rem); letter-spacing:-.01em;
  display:flex; justify-content:space-between; gap:1.5rem; align-items:baseline;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:'+'; font-family:var(--mono); font-size:1.1rem; color:var(--terra); flex:none; }
.faq details[open] summary::after{ content:'–'; }
.faq details p{ padding-bottom:1.4rem; margin:0; max-width:66ch; color:var(--ink-2); font-size:.8125rem; line-height:1.8; }
.hide{ display:none !important; }
.vh{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
