/* ==========================================================================
   New Jersey Facial — core stylesheet
   Design language: dusty rose + blush marble. Deliberately NOT the Si Glam
   Glow system (gold / Cormorant / dome arches) even though it is the same
   business — the two sites must not read as one template reskinned.
   Display face: Marcellus (inscriptional, echoes cut stone)
   Text face:    Manrope (variable)
   ========================================================================== */

/* ---------- Self-hosted fonts ---------- */
@font-face {
  font-family: 'Marcellus';
  src: url('../fonts/marcellus-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-var.woff2') format('woff2-variations'),
       url('../fonts/manrope-var.woff2') format('woff2');
  font-weight: 200 800; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* Surfaces */
  --porcelain:  #FCF8F6;   /* page ground */
  --blush:      #F5E9E6;   /* tinted band */
  --blush-deep: #EEDAD6;
  --stone:      #E4D9D4;   /* hairline borders */

  /* Dusty rose family */
  --rose:       #B07C86;   /* primary */
  --rose-deep:  #8E5C69;   /* hover / emphasis */
  --rose-soft:  #D6B3B8;
  --rose-wash:  #F7EDEE;

  /* Ink */
  --ink:        #2E2226;   /* headings — deep plum-black, never pure black */
  --ink-body:   #4A3A3F;
  --ink-soft:   #7A666C;
  --on-dark:    #F8F1EF;

  /* Type */
  --display: 'Marcellus', 'Times New Roman', serif;
  --sans:    'Manrope', -apple-system, 'Segoe UI', sans-serif;

  /* Rhythm */
  --shell:   1240px;
  --gutter:  clamp(20px, 5vw, 48px);
  --section: clamp(72px, 10vw, 132px);

  --radius:  2px;          /* stone is cut, not rounded */
  --shadow:  0 18px 50px -28px rgba(46,34,38,.38);
  --ease:    cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.005em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

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

/* ---------- Layout ---------- */
.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--blush { background: var(--blush); }

/* ---------- Marble surfaces ---------- */
.marble {
  background-color: var(--blush);
  background-image: url('../img/marble.svg');
  background-size: cover;
  background-position: center;
}
/* Veil keeps type legible over the stone without washing the veining out */
.marble--veiled { position: relative; }
.marble--veiled > * { position: relative; z-index: 1; }
.marble--veiled::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(252,248,246,.62), rgba(252,248,246,.78));
}

/* ---------- Eyebrow / rule ---------- */
.eyebrow {
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; color: var(--rose); margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--rose-soft); flex: none; }
.eyebrow--center { justify-content: center; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 54px; padding: 0 2rem;
  font-family: var(--sans); font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--rose); border-radius: var(--radius);
  background: var(--rose); color: #fff; cursor: pointer;
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--stone); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--on-dark); }
.btn:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink); color: var(--on-dark);
  font-size: .78rem; letter-spacing: .04em;
}
.topbar .shell { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; align-items: center; justify-content: space-between; min-height: 42px; }
.topbar a { border-bottom: 1px solid rgba(248,241,239,.32); }
.topbar a:hover { border-color: var(--rose-soft); color: var(--rose-soft); }
.topbar__note { color: rgba(248,241,239,.72); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(252,248,246,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--stone); }
.nav .shell { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 78px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--display); font-size: 1.4rem; color: var(--ink); letter-spacing: .02em; }
.brand__sub { font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--rose); margin-top: .35rem; }
.nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; color: var(--ink-body); padding-block: .4rem; border-bottom: 1px solid transparent; }
.nav__links a:hover { color: var(--rose); border-color: var(--rose); }

/* Below the desktop breakpoint the links collapse (a drawer replaces them in the
   WP build). Brand + CTA must then SHRINK, not force the page wider — an
   unshrinkable nav row sets a min-width on the whole document and every section
   inherits the horizontal overflow. */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav .shell { min-height: 64px; gap: 1rem; }
  .brand__name { font-size: 1.15rem; }
  .brand__sub { font-size: .55rem; letter-spacing: .2em; }
  .nav .btn { min-height: 44px; padding: 0 1.1rem; font-size: .7rem; letter-spacing: .1em; }
}
/* The booking CTA stays visible at every width — it is the point of the page.
   Do not hide it to "fix" an overflow; verify overflow with a real viewport
   first (headless Chrome on Windows floors the layout viewport at ~512px and
   simply crops the PNG, which looks identical to an overflow bug). */

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding-block: clamp(64px, 9vw, 118px); }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__figure { position: relative; }
.hero__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
/* Thin rose rule offset behind the photo — the site's signature framing device,
   deliberately squared where Glam Glow uses domed arches. */
.hero__figure::before {
  content: ''; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--rose-soft); border-radius: var(--radius); z-index: -1;
}
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  /* Text stays FIRST on mobile: this is a lead-gen page, so the headline and the
     call button must be above the fold. A 4:5 portrait ahead of them pushes both
     off a phone screen entirely. */
  .hero__figure img { aspect-ratio: 4 / 3; }
  .hero__figure::before { inset: 14px -14px -14px 14px; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--stone); background: var(--porcelain); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--stone); }
.trust__item { background: var(--porcelain); padding: 1.9rem 1.4rem; text-align: center; }
.trust__num { font-family: var(--display); font-size: 1.9rem; color: var(--rose-deep); line-height: 1; }
.trust__label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-top: .6rem; }
@media (max-width: 720px) { .trust__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Section heading ---------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }

/* ---------- Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1.2rem, 2.4vw, 2rem); }
.svc {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--stone); border-radius: var(--radius);
  overflow: hidden; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--rose-soft); }
.svc__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--blush); }
/* Cards keep a fixed 3:2 so the grid stays even, but bias the crop upward —
   most of this photography is portrait, and a centred crop cuts faces. */
.svc__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform .8s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.05); }
.svc__tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: rgba(252,248,246,.94); color: var(--rose-deep);
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  padding: .4rem .7rem; border-radius: var(--radius);
}
.svc__body { padding: 1.6rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { margin-bottom: .55rem; }
.svc__body p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 1.3rem; }
.svc__more {
  margin-top: auto; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--rose); display: inline-flex; align-items: center; gap: .5rem;
}
.svc:hover .svc__more { color: var(--rose-deep); gap: .8rem; }
.svc__more::after { content: '\2192'; transition: transform .35s var(--ease); }

/* Placeholder card for services not yet chosen */
.svc--tbd { border-style: dashed; background: var(--rose-wash); }
.svc--tbd .svc__media { display: grid; place-items: center; color: var(--rose); font-family: var(--display); font-size: 1.1rem; }

/* ---------- Distance / routes (the NJ differentiator) ---------- */
.routes__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .routes__grid { grid-template-columns: 1fr; } }
.routes__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--stone); }
.routes__row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: 1.05rem .2rem; border-bottom: 1px solid var(--stone);
}
.routes__town { font-family: var(--display); font-size: 1.12rem; color: var(--ink); }
.routes__via { display: block; font-family: var(--sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-top: .25rem; }
.routes__time { font-size: .82rem; font-weight: 600; letter-spacing: .1em; color: var(--rose-deep); white-space: nowrap; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(1.5rem, 3vw, 2.6rem); counter-reset: step; }
.step { counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 2rem; color: var(--rose-soft);
  display: block; margin-bottom: .7rem; line-height: 1;
}
.step h3 { font-size: 1.2rem; }
.step p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- Quote ---------- */
.quote { text-align: center; max-width: 68ch; margin-inline: auto; }
.quote blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 2.05rem); line-height: 1.42; color: var(--ink); }
.quote figcaption { margin-top: 1.6rem; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta { background: var(--ink); color: var(--on-dark); text-align: center; }
.cta h2 { color: var(--on-dark); }
.cta p { color: rgba(248,241,239,.76); margin-inline: auto; max-width: 54ch; }
.cta .btn--ghost { color: var(--on-dark); border-color: rgba(248,241,239,.4); }
.cta .btn--ghost:hover { background: var(--on-dark); color: var(--ink); border-color: var(--on-dark); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--porcelain); border-top: 1px solid var(--stone); padding-block: clamp(48px, 6vw, 76px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.2rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .7rem; font-size: .93rem; }
.footer a:hover { color: var(--rose); }
.footer address { font-style: normal; font-size: .93rem; color: var(--ink-soft); }
.footer__legal {
  margin-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--stone);
  padding-block: 1.6rem; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  justify-content: space-between; font-size: .78rem; color: var(--ink-soft);
}

/* Disclosure that this is the same studio — honest entity signalling */
.footer__entity {
  background: var(--rose-wash); border: 1px solid var(--stone); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; font-size: .85rem; color: var(--ink-soft); margin-top: 1.4rem;
}
.footer__entity strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   SERVICE PAGE
   Frames are sized to the photography we actually have (landscape hero,
   near-square ritual shot) rather than forcing portrait crops — the crop
   problem that has repeatedly bitten the Glam Glow arch images.
   ========================================================================== */

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); padding-top: 1.8rem; }
.crumb a:hover { color: var(--rose); }
.crumb span { margin-inline: .5rem; color: var(--rose-soft); }

/* ---------- Service hero ---------- */
.shero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(40px, 6vw, 76px) clamp(48px, 7vw, 88px); }
.shero h1 { font-size: clamp(2.3rem, 5vw, 3.9rem); }
/* NO fixed aspect ratio here, deliberately. Six of the ten hero photographs are
   portrait (up to 1200x1799) and three are landscape; forcing any single ratio
   center-crops most of them, and on a 3:2 frame a portrait shot loses over half
   its height — which is where the face is. Natural ratio, capped in height, so
   nothing is cropped unless the image is extremely tall. The 30% vertical
   position biases the crop toward the face on the ones that do hit the cap. */
.shero__fig img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
}
.shero__fig { position: relative; }
.shero__fig::before { content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--rose-soft); z-index: -1; }
.shero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
@media (max-width: 880px) { .shero__grid { grid-template-columns: 1fr; } }

/* ---------- Facts ribbon ---------- */
.facts { border-block: 1px solid var(--stone); }
.facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--stone); }
.facts__item { background: var(--porcelain); padding: 1.5rem 1.2rem; }
.facts__k { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose); }
.facts__v { font-family: var(--display); font-size: 1.15rem; color: var(--ink); margin-top: .35rem; }
@media (max-width: 720px) { .facts__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Alternating split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split + .split { margin-top: clamp(3.5rem, 7vw, 6rem); }
.split--flip .split__fig { order: 2; }
.split__fig img { width: 100%; object-fit: cover; border-radius: var(--radius); }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__fig { order: 0; }
}

/* ---------- Steps (numbered, service variant) ---------- */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.6rem, 3vw, 2.6rem); counter-reset: flow; }
.flow__item { counter-increment: flow; padding-top: 1.4rem; border-top: 2px solid var(--rose-soft); }
.flow__item::before { content: 'Step ' counter(flow); display: block; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); margin-bottom: .7rem; }
.flow__item h3 { font-size: 1.18rem; }
.flow__item p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- Benefits ---------- */
.bene { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--stone); border: 1px solid var(--stone); }
.bene__item { background: var(--porcelain); padding: 1.9rem 1.6rem; }
.bene__item h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.bene__item p { font-size: .91rem; color: var(--ink-soft); }

/* ---------- Good fit / not for ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
@media (max-width: 760px) { .fit { grid-template-columns: 1fr; } }
.fit__col { background: #fff; border: 1px solid var(--stone); padding: 2rem 1.8rem; border-radius: var(--radius); }
.fit__col--no { background: var(--rose-wash); }
.fit__col ul { list-style: none; margin: 0; padding: 0; }
.fit__col li { position: relative; padding-left: 1.6rem; margin-bottom: .8rem; font-size: .95rem; }
.fit__col li::before { content: ''; position: absolute; left: 0; top: .62em; width: 8px; height: 1px; background: var(--rose); }

/* ---------- FAQ (native details — no JS, so it cannot be broken by a
   competing inline script the way the Glam Glow accordions were) ---------- */
.faq { border-top: 1px solid var(--stone); }
.faq details { border-bottom: 1px solid var(--stone); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.35rem 2.5rem 1.35rem 0; position: relative;
  font-family: var(--display); font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.4rem; font-weight: 300; color: var(--rose); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { content: '\2013'; }
.faq summary:hover { color: var(--rose-deep); }
.faq summary:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 2px; }
.faq__a { padding: 0 2.5rem 1.5rem 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Related ---------- */
.rel { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.rel__card { border: 1px solid var(--stone); padding: 1.6rem 1.5rem; background: #fff; border-radius: var(--radius); transition: border-color .35s var(--ease), transform .35s var(--ease); }
.rel__card:hover { border-color: var(--rose-soft); transform: translateY(-4px); }
.rel__card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.rel__card p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------- Sticky mobile call bar ---------- */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; display: none; background: var(--ink); padding: .7rem var(--gutter); }
.callbar .btn { width: 100%; }
@media (max-width: 760px) { .callbar { display: block; } body { padding-bottom: 76px; } }

/* ==========================================================================
   NAV END / MOBILE DRAWER / MISC
   The drawer is driven by a hidden checkbox — no JavaScript, so it cannot
   fail into an unopenable menu while a script loads or if one errors.
   ========================================================================== */

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--on-dark); padding: .8rem 1.2rem;
}
.skip-link:focus { left: 0; }

.nav__end { display: flex; align-items: center; gap: .9rem; }

/* Hamburger — desktop hides it, mobile shows it */
.burger {
  display: none; width: 44px; height: 44px; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
@media (max-width: 940px) { .burger { display: flex; } }

.drawer-toggle { position: absolute; opacity: 0; pointer-events: none; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(86vw, 380px); background: var(--porcelain);
  border-left: 1px solid var(--stone);
  padding: 2.2rem 1.8rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.drawer__scrim {
  position: fixed; inset: 0; z-index: 110; background: rgba(46,34,38,.45);
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.drawer-toggle:checked ~ .drawer { transform: translateX(0); }
.drawer-toggle:checked ~ .drawer__scrim { opacity: 1; visibility: visible; }

.drawer__close {
  align-self: flex-end; width: 44px; height: 44px; cursor: pointer;
  display: grid; place-items: center; font-size: 1.7rem; line-height: 1;
  color: var(--ink-soft);
}
.drawer__links { list-style: none; margin: 1rem 0 1.6rem; padding: 0; flex: 1; }
.drawer__links a {
  display: flex; align-items: center; min-height: 44px;
  font-size: .95rem; color: var(--ink-body); border-bottom: 1px solid var(--stone);
}
.drawer__links a:hover { color: var(--rose); }
.drawer__links li:first-child a { font-family: var(--display); font-size: 1.1rem; color: var(--ink); }

/* ---------- Prose (legal + generic pages) ---------- */
.prose h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-top: 2.4rem; }
.prose h1 + p { margin-bottom: 2rem; }
.prose a { color: var(--rose-deep); border-bottom: 1px solid var(--rose-soft); }
.prose a:hover { border-color: var(--rose-deep); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
