/* ==========================================================================
   SHAPE ZONE — design system
   Tokens · type · buttons · navigation · components · layouts
   Mobile first (390) → desktop (1440, 12 col, 96px margins, 24px gutters)
   Rules: radius 0 (2px buttons/inputs) · no shadows · no gradients · brass ≤5%
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --ww: #FBF9F6;        /* warm white */
  --cream: #F4EFE7;
  --oat: #E9E1D4;
  --stone: #CFC5B6;
  --taupe: #9C8F7E;
  --char: #2B2926;
  --bluegrey: #343A43;
  --brass: #B3925E;
  --brassd: #C9AB7A;    /* brass on dark */
  --bark: #6E5B49;
  --char-hover: #3F3C38;

  /* contextual (flip inside .on-dark) */
  --ink: var(--char);
  --ground: var(--ww);
  --hair: var(--stone);
  --hair2: var(--stone);
  --muted: #655C50;      /* secondary text: 5.1:1 on oat, 6.2:1 on warm white (was taupe, 2.4-3.0:1) */
  --accent: var(--brass);
  --eyebrow: #655C50;
  --tlink-line: var(--stone);

  --fw: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;  /* wordmark + selected editorial display */
  --fd: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;  /* headings, treatment names, prices */
  --fb: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;  /* nav, buttons, body, labels */
  --mono: ui-monospace, Menlo, Consolas, monospace;

  --m: 24px;            /* outer margin */
  --navh: 64px;
  --sec: 72px;          /* section rhythm */
  --band-t: 64px;       /* dark/cream inner padding top */
  --band-b: 72px;
}
@media (min-width: 1024px) {
  :root { --m: 96px; --navh: 72px; --sec: 140px; --band-t: 120px; --band-b: 120px; }
}

.on-dark {
  --ink: var(--ww);
  --hair: rgba(251, 249, 246, .14);
  --hair2: rgba(251, 249, 246, .18);
  --muted: rgba(251, 249, 246, .78);
  --accent: var(--brassd);
  --eyebrow: var(--brassd);
  --tlink-line: rgba(251, 249, 246, .3);
  color: var(--ink);
}

/* Light cards sitting inside an .on-dark section: put the light-ground tokens
   back, or muted text and hairlines inherit the near-white values and vanish
   against the card's own pale background. */
.ol, .pp, .fvcard, .pcard, .finder, .pcards__c {
  --ink: var(--char);
  --muted: var(--taupe);
  --hair: var(--stone);
  --hair2: var(--stone);
  --accent: var(--brass);
  --eyebrow: var(--taupe);
  --tlink-line: var(--stone);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; } /* clip (not hidden) so position:sticky keeps working */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ww);
  color: var(--char);
  font: 400 15px/1.55 var(--fb);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 120px; /* clears the sticky bar */
}
@media (min-width: 768px) { body { font-size: 16px; } }
@media (min-width: 1024px) { body { font-size: 17px; padding-bottom: 0; } body.has-desk-sticky { padding-bottom: 96px; } }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--char); color: var(--ww); padding: 12px 16px; z-index: 1000; }
.skip:focus { left: 16px; top: 16px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- layout ---------- */
.wrap { padding-left: var(--m); padding-right: var(--m); max-width: 1440px; margin-left: auto; margin-right: auto; }
.wrap--l { padding-left: var(--m); max-width: 1440px; margin-left: auto; margin-right: auto; }
.g12 { display: grid; grid-template-columns: 1fr; gap: 32px 24px; }
@media (min-width: 1024px) {
  .g12 { grid-template-columns: repeat(12, 1fr); gap: 24px; }
  /* span via grid-column-end so .oN offsets combine cleanly (.c5.o8 → columns 8–12) */
  .c2 { grid-column-end: span 2; } .c3 { grid-column-end: span 3; } .c4 { grid-column-end: span 4; } .c5 { grid-column-end: span 5; }
  .c6 { grid-column-end: span 6; } .c7 { grid-column-end: span 7; } .c8 { grid-column-end: span 8; } .c12 { grid-column-end: span 12; }
  .o6 { grid-column-start: 6; } .o7 { grid-column-start: 7; } .o8 { grid-column-start: 8; } .o9 { grid-column-start: 9; } .o10 { grid-column-start: 10; }
  .g75 { display: grid; grid-template-columns: 7fr 5fr; gap: 24px; align-items: end; }
  .g57 { display: grid; grid-template-columns: 5fr 7fr; gap: 24px; }
  .g66 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .g84 { display: grid; grid-template-columns: 8fr 4fr; gap: 24px; }
}
.sec { margin-top: var(--sec); }
.sec--s { margin-top: 56px; }
@media (min-width: 1024px) { .sec--s { margin-top: 96px; } }
.band { padding-top: var(--band-t); padding-bottom: var(--band-b); }
.band--charcoal { background: var(--char); }
.band--bluegrey { background: var(--bluegrey); }
.band--cream { background: var(--cream); }
.band--oat { background: var(--oat); }
.hide-m { display: none !important; }
.hide-d { display: block; }
.hide-m-inline { display: none; }
@media (min-width: 1024px) { .hide-m { display: block !important; } .hide-d { display: none !important; } .hide-m-inline { display: inline; } }
.btn--full-m { width: 100%; }
@media (min-width: 1024px) { .btn--full-m { width: auto; } }
.bleed-r { margin-right: calc(var(--m) * -1); }
.bleed-l { margin-left: calc(var(--m) * -1); }
.tac { text-align: center; }
.maxw-34 { max-width: 34ch; } .maxw-36 { max-width: 36ch; } .maxw-44 { max-width: 44ch; } .maxw-48 { max-width: 48ch; } .maxw-52 { max-width: 52ch; } .maxw-62 { max-width: 62ch; }
.stack { display: flex; flex-direction: column; gap: 12px; }
.stack--20 { gap: 20px; }
.btns { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.btns .btn { width: 100%; }
@media (min-width: 1024px) { .btns { flex-direction: row; align-items: center; gap: 32px; } .btns .btn { width: auto; } }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; } .mt-20 { margin-top: 20px; } .mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-48 { margin-top: 48px; } .mt-56 { margin-top: 56px; } .mt-64 { margin-top: 64px; }
@media (min-width: 1024px) { .mt-d-96 { margin-top: 96px; } .mt-d-64 { margin-top: 64px; } .mt-d-48 { margin-top: 48px; } }

/* ---------- section header ---------- */
.sh { border-top: 1px solid var(--hair2); padding-top: 18px; display: flex; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .sh { padding-top: 20px; } }
.eyebrow { font: 500 11px/1.4 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--eyebrow); }
.eyebrow--brass { color: var(--accent); }
.micro { font: 500 10px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; }
.micro--muted { color: var(--muted); }
.caption { font: 400 13px/1.5 var(--fb); color: var(--muted); }
.muted { color: var(--muted); }
.brass { color: var(--accent); }
.dot { color: var(--accent); }

/* ---------- type ---------- */
.h1, h1 { font: 500 42px/1 var(--fd); letter-spacing: -.02em; text-wrap: pretty; }
.h1--xl { font-size: 44px; }
.h2, h2 { font: 500 34px/1.05 var(--fd); letter-spacing: -.015em; text-wrap: pretty; }
.h2--s { font-size: 30px; line-height: 1.08; }
.h2--m { font-size: 32px; line-height: 1.08; }
.h2--l { font-size: 38px; line-height: 1.02; }
.h3, h3 { font: 500 24px/1.1 var(--fd); }
.h3--s { font-size: 22px; line-height: 1.15; }
h1 em, h2 em, h3 em, .stmt em, .h-em em { font-style: normal; font-weight: 400; color: var(--muted); }
.stmt { font: 500 26px/1.2 var(--fd); text-wrap: pretty; }
.stmt--l { font-size: 28px; line-height: 1.2; letter-spacing: -.01em; }
.lead { font: 400 16px/1.55 var(--fb); text-wrap: pretty; }
.lead--l { font-size: 17px; }
.body { font: 400 15px/1.55 var(--fb); }
.body--l { font-size: 16px; }
.price-xl { font: 500 48px/1 var(--fd); letter-spacing: -.02em; }
.price-l { font: 500 40px/1 var(--fd); letter-spacing: -.02em; }
.price-44 { font: 500 44px/1 var(--fd); letter-spacing: -.02em; }
.price-m { font: 500 26px/1 var(--fd); letter-spacing: -.01em; }
.price-28 { font: 500 28px/1 var(--fd); }
.price-s { font: 500 22px/1 var(--fd); }
.price-24 { font: 500 24px/1 var(--fd); }
.num { font: 500 28px/1 var(--fd); color: var(--accent); }
.mono { font: 400 10px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.crumb { font: 400 12px/1 var(--fb); color: var(--muted); }
.crumb b { font-weight: 400; color: var(--char); }
.crumb .sep { margin: 0 6px; }
.meta { font: 400 13px/1 var(--fb); color: var(--muted); }
.tag { font-size: 10px; letter-spacing: .14em; border: 1px solid var(--stone); padding: 4px 6px; }
@media (min-width: 1024px) {
  .h1, h1 { font-size: clamp(56px, 6.5vw, 84px); line-height: .98; }
  .h1--page { font-size: clamp(48px, 5vw, 64px); line-height: 1; }
  /* longer entity-style H1 (homepage): keep it to ~4 lines in a 5-column well */
  .h1--xl { font-size: clamp(42px, 4.4vw, 62px); line-height: 1.02; }
  .h2, h2 { font-size: 56px; line-height: 1.02; }
  .h2--s { font-size: 48px; } .h2--m { font-size: 48px; } .h2--l { font-size: 64px; }
  .h3, h3 { font-size: 28px; line-height: 1.15; }
  .h3--s { font-size: 24px; }
  .stmt { font-size: 28px; }
  .stmt--l { font-size: 40px; }
  .lead { font-size: 18px; }
  .body { font-size: 17px; }
  .price-xl { font-size: 64px; }
  .num { font-size: 32px; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 32px; min-height: 52px;
  background: var(--char); color: var(--ww);
  font: 500 13px/1 var(--fb); letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px; border: 1px solid var(--char);
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { background: var(--char-hover); border-color: var(--char-hover); }
.btn:disabled, .btn.is-disabled { background: var(--stone); border-color: var(--stone); color: var(--ww); pointer-events: none; }
.btn--full { width: 100%; }
.btn--sm { padding: 14px 24px; min-height: 44px; }
.btn--44 { min-height: 44px; padding: 0 22px; font-size: 12px; }
.btn--outline { background: transparent; color: var(--char); border-color: var(--char); }
.btn--outline:hover { background: var(--char); color: var(--ww); }
.btn--inv { background: var(--ww); color: var(--char); border-color: var(--ww); }
.btn--inv:hover { background: var(--oat); border-color: var(--oat); }
.on-dark .btn { background: var(--ww); color: var(--char); border-color: var(--ww); }
.on-dark .btn:hover { background: var(--oat); border-color: var(--oat); }
.on-dark .btn--outline { background: transparent; color: var(--ww); border-color: rgba(251, 249, 246, .5); }
.on-dark .btn--outline:hover { border-color: var(--ww); background: transparent; }
@media (max-width: 767px) { .btn { font-size: 12px; } }

.tlink {
  display: inline-flex; gap: 8px; align-items: center; min-height: 44px; padding: 6px 0;
  font: 500 13px/1 var(--fb); letter-spacing: .12em; text-transform: uppercase; color: var(--ink);
}
.tlink--sm { font-size: 12px; }
.tlink__t { border-bottom: 1px solid var(--tlink-line); padding-bottom: 4px; transition: border-color .3s; }
.tlink__a { transition: color .3s; }
.tlink:hover .tlink__t { border-color: var(--accent); }
.tlink:hover .tlink__a { color: var(--accent); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.nav--scrolled, .nav--solid { background: var(--ww); border-bottom-color: var(--stone); }
.nav--dark { background: var(--char); color: var(--ww); }
.nav--dark.nav--scrolled { background: var(--char); border-bottom-color: rgba(251, 249, 246, .14); }
.nav__in { height: var(--navh); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
@media (min-width: 1024px) { .nav__in { display: grid; grid-template-columns: 1fr auto 1fr; } .nav--slim .nav__in { grid-template-columns: 1fr auto; } }
.wm { display: inline-flex; flex-direction: column; gap: 3px; }
.wm__n { font: 500 20px/1 var(--fw); letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.wm__d { font: 500 8px/1.4 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.nav--dark .wm__d { color: var(--brassd); }
@media (min-width: 1024px) { .wm__n { font-size: 22px; } }
.wm--foot .wm__n { font-size: 24px; } .wm--foot .wm__d { color: var(--brassd); font-size: 9px; }
@media (min-width: 1024px) { .wm--foot .wm__n { font-size: 26px; } }
.nav__links { display: none; }
@media (min-width: 1024px) { .nav__links { display: flex; gap: 18px; justify-content: center; } }
@media (min-width: 1280px) { .nav__links { gap: 24px; } }
@media (min-width: 1440px) { .nav__links { gap: 28px; } }
.nav__link { white-space: nowrap; }
.nav__link { font: 500 13px/1 var(--fb); letter-spacing: .12em; text-transform: uppercase; padding: 8px 0 4px; border-bottom: 1px solid transparent; transition: border-color .3s; }
/* below 1440 the eight links need the whole centre track: drop the phone and the descriptor */
@media (min-width: 1024px) and (max-width: 1439px) {
  /* phone now lives in the top bar; the descriptor fits again */
}
/* narrow desktops: tighten the bar so the Book Now button always fits */
@media (min-width: 1024px) and (max-width: 1279px) {
  .nav__in { padding-left: 40px; padding-right: 40px; }
  .nav__links { gap: 14px; }
  .nav__link { font-size: 12px; letter-spacing: .08em; }
}
.nav__link.is-active, .nav__link.is-open { border-bottom-color: var(--brass); }
.nav__right { display: flex; align-items: center; gap: 18px; justify-content: flex-end; }
@media (min-width: 1024px) { .nav__right { gap: 28px; } }
.nav__book { font: 500 12px/1 var(--fb); letter-spacing: .12em; text-transform: uppercase; min-height: 44px; display: inline-flex; align-items: center; }
.burger { width: 20px; display: flex; flex-direction: column; gap: 6px; padding: 12px 0; }
.burger span { height: 1px; background: currentColor; display: block; }

/* mega menu (desktop) */
.mega {
  display: none; position: absolute; left: 0; right: 0; top: 100%;
  /* one step warmer than the page ground so the panel reads as a separate layer */
  background: var(--cream); color: var(--char);
  border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone);
  box-shadow: 0 18px 44px rgba(43, 41, 38, .11);
  opacity: 0; transition: opacity .15s;
}
@media (min-width: 1024px) { .mega.is-open { display: block; opacity: 1; } }
.mega__in { padding-top: 48px; padding-bottom: 56px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.mega__g { grid-column: span 2; }
.mega__in > .mega__g { grid-row: 2; }
.mega__h { font: 500 11px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); border-top: 1px solid var(--stone); padding-top: 14px; }
.mega__items { display: flex; flex-direction: column; gap: 2px; margin-top: 14px; }
.mega__items a { font: 400 15px/1.35 var(--fb); padding: 6px 0; transition: color .2s; }
.mega__items a:hover { color: var(--brass); }
.mega__cta { grid-column: 1 / span 8; grid-row: 3; margin-top: 20px; }
.mega__g5 { grid-column: span 9; grid-row: 2; display: grid; grid-template-columns: repeat(var(--cols, 5), minmax(0, 1fr)); gap: 18px; }
.mega__g5 .mega__g { grid-column: auto; }
.mega__cta5 { grid-column: 1 / -1; margin-top: 20px; }
.mega__ph { grid-column: 9 / span 4; grid-row: 2 / span 2; }
.mega__in:has(.mega__g5) .mega__ph { grid-column: 10 / span 3; grid-row: 2; }
.mega__note { font: 400 14px/1.5 var(--fb); color: var(--muted); margin-top: 14px; }
.mega__note b { font: 500 17px/1 var(--fd); color: var(--char); }

/* drawer (mobile) */
.drawer {
  position: fixed; inset: 0; z-index: 80; background: var(--ww); color: var(--char);
  transform: translateX(100%); transition: transform .3s; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 96px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__top { height: 64px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; border-bottom: 1px solid var(--stone); }
.x { width: 20px; height: 20px; position: relative; padding: 12px; box-sizing: content-box; margin: -12px; }
.x span { position: absolute; left: 12px; right: 12px; top: 21px; height: 1px; background: var(--char); }
.x span:first-child { transform: rotate(45deg); } .x span:last-child { transform: rotate(-45deg); }
.drawer__list { padding: 24px 24px 0; display: flex; flex-direction: column; }
.drawer__item { display: flex; justify-content: space-between; align-items: center; min-height: 52px; border-bottom: 1px solid var(--stone); font: 500 24px/1 var(--fd); }
.drawer__item span:last-child { font: 400 14px/1 var(--fb); color: var(--stone); }
.drawer__addr { padding: 28px 24px 0; font: 400 14px/1.6 var(--fb); color: var(--muted); }
.drawer__addr a { color: var(--char); }
body.drawer-open { overflow: hidden; }

/* sticky bottom bar */
.sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--ww); color: var(--char); border-top: 1px solid var(--stone);
  padding: 12px 24px calc(20px + env(safe-area-inset-bottom, 0px));
  display: flex; gap: 12px; align-items: center;
  transition: transform .3s;
}
.sticky--hidden { transform: translateY(110%); }
.sticky__btn { flex: 1; min-height: 52px; padding-left: 16px; padding-right: 16px; }
.sticky__call { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1px solid var(--char); border-radius: 2px; flex: none; }
.sticky__price { flex: none; display: flex; flex-direction: column; gap: 3px; }
.sticky__l { font: 500 9px/1 var(--fb); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.sticky__p { font: 500 24px/1 var(--fd); }
.sticky--dark { background: var(--char); color: var(--ww); border-top-color: rgba(251, 249, 246, .14); }
.sticky--dark .sticky__btn { background: var(--ww); color: var(--char); border-color: var(--ww); }
.sticky--dark .sticky__call { border-color: rgba(251, 249, 246, .5); color: var(--ww); }
.sticky--in-drawer { position: absolute; }
@media (min-width: 1024px) {
  .sticky { display: none; }
  .sticky--desk { display: flex; left: auto; right: 32px; bottom: 32px; width: auto; border: 1px solid var(--stone); padding: 12px 12px 12px 20px; gap: 20px; }
  .sticky--desk .sticky__btn { flex: none; }
  .sticky--desk .sticky__call { display: none; }
}

/* ---------- photo slots ---------- */
.ph {
  position: relative; overflow: hidden; margin: 0;
  background-color: var(--tone, #C9BBA6);
  background-image: repeating-linear-gradient(135deg, rgba(251, 249, 246, .14) 0 5px, transparent 5px 13px);
}
.ph--dark { background-image: repeating-linear-gradient(135deg, rgba(251, 249, 246, .08) 0 5px, transparent 5px 13px); }
.ph--map { background-image: repeating-linear-gradient(135deg, rgba(251, 249, 246, .3) 0 5px, transparent 5px 13px); }
.ph--thumb { background-image: repeating-linear-gradient(135deg, rgba(251, 249, 246, .14) 0 4px, transparent 4px 10px); }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease-out; }
.ar-4-5 { aspect-ratio: 4 / 5; } .ar-3-2 { aspect-ratio: 3 / 2; } .ar-5-4 { aspect-ratio: 5 / 4; }
.ar-1-1 { aspect-ratio: 1 / 1; } .ar-4-3 { aspect-ratio: 4 / 3; } .ar-fill { height: 100%; min-height: 100%; }
.ph__cap { position: absolute; font: 400 10px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; color: var(--ww); pointer-events: none; }
.ph__cap--bl { left: 14px; bottom: 12px; } .ph__cap--tl { left: 14px; top: 12px; }
.ph--dark .ph__cap { color: rgba(251, 249, 246, .7); }
.ph--map .ph__cap { color: var(--bark); }
.ph--map::before { content: ""; position: absolute; left: 58%; top: 44%; width: 8px; height: 8px; border-radius: 50%; background: var(--char); }
.ph--map::after { content: ""; position: absolute; left: 58%; top: 44%; width: 24px; height: 24px; margin: -8px; border-radius: 50%; border: 1px solid var(--brass); }
.hover-zoom:hover .ph img, a:hover > .ph img { transform: scale(1.03); }
@media (min-width: 1024px) { .ph__cap { font-size: 11px; } .ph__cap--bl { left: 20px; bottom: 18px; } .ph--map::after { width: 28px; height: 28px; margin: -10px; } }

/* overlapping panels */
.ol { position: absolute; background: var(--oat); color: var(--char); padding: 18px 20px; }
.ol--home { left: 0; bottom: -28px; max-width: 250px; }
.ol--bl { left: calc(var(--m) * -1); bottom: -24px; padding: 18px 22px; display: flex; gap: 14px; align-items: baseline; }
.ol--br { right: calc(var(--m) * -1); bottom: -24px; padding: 18px 22px; display: flex; gap: 14px; align-items: baseline; }
.ol__k { display: flex; flex-direction: column; gap: 5px; }
.ol__k .micro { font-weight: 500; }
.ol__link { display: block; margin-top: 8px; font: 500 19px/1.2 var(--fd); }
.ol__link small { font: 400 14px/1 var(--fb); }
@media (min-width: 1024px) {
  .ol--home { left: -40px; bottom: 40px; padding: 24px 28px; max-width: 300px; }
  .ol__link { font-size: 22px; margin-top: 10px; } .ol__link small { font-size: 15px; }
  .ol--bl { left: -40px; bottom: 40px; } .ol--br { right: -40px; bottom: 40px; }
}
.pp { background: var(--oat); color: var(--char); padding: 24px 22px 22px; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.pp__price { font: 500 48px/1 var(--fd); letter-spacing: -.02em; margin-top: 8px; }
.pp__name { font: 500 17px/1.2 var(--fd); }
.pp__reg { font: 400 13px/1.4 var(--fb); color: var(--muted); margin-top: 4px; }
.pp__r { text-align: right; }
@media (min-width: 1024px) {
  .pp { flex-direction: column; align-items: flex-start; padding: 28px 28px 24px; }
  .pp__price { font-size: 64px; margin-top: 12px; } .pp__name { font-size: 19px; margin-top: 18px; } .pp__r { text-align: left; }
}

/* ---------- rows ---------- */
.rows { display: flex; flex-direction: column; }
.rows--t { border-top: 1px solid var(--hair); }
.row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--hair); }
.row--16 { padding: 16px 0; }
.row__n { font: 400 15px/1.3 var(--fb); flex: 1; }
.row__d { font: 400 12px/1 var(--fb); color: var(--muted); }
.row__p { font: 500 22px/1 var(--fd); text-align: right; white-space: nowrap; }
.row__p--m { font-size: 26px; letter-spacing: -.01em; }
.row__reg { font: 400 13px/1 var(--fb); color: var(--muted); text-decoration: line-through; }
.row__str { font: 400 13px/1 var(--fb); color: var(--muted); text-decoration: line-through; white-space: nowrap; }
@media (min-width: 1024px) { .row { padding: 16px 0; } .row__n { font-size: 17px; } .row__d { font-size: 13px; } .row__p { font-size: 24px; } .row__p--m { font-size: 32px; } }

.crow { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 0; border-bottom: 1px solid var(--hair); min-height: 44px; transition: border-color .3s; }
.crow__t { font: 500 20px/1.15 var(--fd); }
.crow__s { font: 400 13px/1.4 var(--fb); color: var(--muted); margin-top: 5px; }
.crow__a { color: var(--stone); font-size: 16px; transition: color .3s; flex: none; }
.crow.is-active { border-bottom-color: var(--char); }
.crow.is-active .crow__a, .crow:hover .crow__a { color: var(--brass); }
.crow--22 .crow__t { font-size: 22px; }
@media (min-width: 1024px) { .crow { padding: 22px 0; gap: 24px; } .crow__t { font-size: 28px; } .crow__s { font-size: 14px; margin-top: 6px; } .crow__a { font-size: 18px; } }

.faq { border-bottom: 1px solid var(--hair); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; min-height: 44px; text-align: left; font: 400 16px/1.4 var(--fb); }
.faq__i { color: var(--accent); font-size: 22px; font-weight: 300; flex: none; line-height: 1; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq__a p { font: 400 15px/1.55 var(--fb); color: var(--muted); max-width: 52ch; padding: 0 0 18px; }
.faq.is-open .faq__a { max-height: 400px; }
@media (min-width: 1024px) { .faq__q { padding: 18px 0; font-size: 17px; } }

.jrow { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.jrow__n { font: 500 28px/1 var(--fd); color: var(--accent); }
.jrow__t { font: 500 19px/1.2 var(--fd); }
.jrow__d { font: 400 14px/1.5 var(--fb); color: var(--muted); margin-top: 4px; }
@media (min-width: 1024px) {
  .journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; border-top: 1px solid var(--hair); padding-top: 20px; }
  .journey .jrow { display: block; padding: 0; border: 0; }
  .journey .jrow__n { font-size: 32px; } .journey .jrow__t { font-size: 17px; margin-top: 14px; } .journey .jrow__d { font-size: 13px; margin-top: 6px; }
}

.who p { padding: 14px 0; border-bottom: 1px solid var(--hair); font: 400 16px/1.4 var(--fb); }
.hl { display: flex; flex-direction: column; }
.hl > * { padding: 11px 0; border-bottom: 1px solid var(--hair); font: 400 14px/1.3 var(--fb); }
@media (min-width: 1024px) {
  .hl--inline { flex-direction: row; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
  .hl--inline > * { padding: 16px 24px 16px 0; margin-right: 24px; border-bottom: 0; border-right: 1px solid var(--hair); font-size: 15px; }
  .hl--inline > *:last-child { border-right: 0; }
}
.addons { display: flex; flex-direction: column; }
.addons > div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--hair); font: 400 14px/1.3 var(--fb); }
.addons > div span:last-child { font: 500 16px/1 var(--fd); }
@media (min-width: 1024px) { .addons--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; } .addons--2 > div { padding: 10px 0; } .addons > div { font-size: 15px; } .addons > div span:last-child { font-size: 18px; } }

.nrow { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--hair); }
.nrow__n { font: 500 14px/1 var(--fd); color: var(--accent); }
.nrow__t { font: 500 19px/1.25 var(--fd); }
@media (min-width: 1024px) { .nrow { grid-template-columns: 48px 1fr; padding: 22px 0; } .nrow__t { font-size: 24px; } }

.compare__h { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.compare__h p { font: 500 20px/1.2 var(--fd); }
.compare__r { padding: 14px 0; border-bottom: 1px solid var(--hair); }
.compare__v { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; font: 400 15px/1.3 var(--fb); }
@media (min-width: 1024px) { .compare__h { grid-template-columns: 200px 1fr 1fr; } .compare__h p:first-child { display: block; } .compare__r { display: grid; grid-template-columns: 200px 1fr 1fr; gap: 16px; align-items: baseline; padding: 16px 0; } .compare__r .micro { margin: 0; } .compare__v { display: contents; margin: 0; } }

.goal { display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--hair); padding-top: 16px; }
.goal__top { display: flex; gap: 12px; align-items: center; }
.goal__thumb { width: 44px; height: 44px; flex: none; }
.goal__w { font: 500 26px/1 var(--fd); }
.goal__t { font: 400 13px/1.45 var(--fb); color: var(--muted); }
.goals { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 16px; }
@media (min-width: 1024px) {
  .goals { grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .goal { flex-direction: row; align-items: center; gap: 24px; padding: 28px 0; }
  .goal__top { gap: 24px; } .goal__thumb { width: 72px; height: 72px; } .goal__w { font-size: 40px; } .goal__t { font-size: 14px; margin-top: 8px; }
}
.lrow { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--hair); min-height: 56px; }
.lrow__thumb { width: 40px; height: 40px; flex: none; }
.lrow__l { font: 400 16px/1.2 var(--fb); flex: 1; }
.lrow__a { color: var(--stone); transition: color .3s; }
.lrow:hover .lrow__a { color: var(--brass); }
@media (min-width: 1024px) {
  .lrows--6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
  .lrows--6 .lrow { border: 0; padding: 0; gap: 14px; min-height: 0; }
  .lrows--6 .lrow__thumb { width: 48px; height: 48px; } .lrows--6 .lrow__l { font-size: 15px; } .lrows--6 .lrow__a { display: none; }
}
.grow { display: flex; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.grow__thumb { width: 72px; flex: none; }
.grow__t { font: 500 24px/1.05 var(--fd); }
.grow__m { font: 400 13px/1.4 var(--fb); color: var(--muted); margin-top: 6px; }
.grow__a { color: var(--stone); transition: color .3s; }
.grow:hover .grow__a { color: var(--brass); }
@media (min-width: 1024px) { .grow { gap: 24px; padding: 24px 0; } .grow__t { font-size: 32px; } }

/* selector rows (funnel pages) */
.sel { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--hair); }
.sel__t { font: 500 22px/1.15 var(--fd); }
.sel__m { font: 400 13px/1.45 var(--fb); color: var(--muted); margin-top: 6px; }
.sel__a { color: var(--stone); transition: color .3s; flex: none; }
.sel:hover .sel__a { color: var(--brass); }
@media (min-width: 1024px) { .sel__t { font-size: 28px; } .sel__m { font-size: 14px; } }

/* ---------- cards ---------- */
.tcard { display: flex; flex-direction: column; }
.tcard__ph { position: relative; }
.badge { position: absolute; top: 0; left: 0; background: var(--char); color: var(--ww); font: 500 10px/1 var(--fb); letter-spacing: .14em; text-transform: uppercase; padding: 8px 10px; z-index: 1; }
.badge--outline { background: transparent; border: 1px solid var(--char); color: var(--char); padding: 7px 10px; }
.tcard__t { font: 500 24px/1.15 var(--fd); margin-top: 18px; }
.tcard__s { font: 400 14px/1.5 var(--fb); color: var(--muted); margin-top: 6px; }
.tcard__price { display: flex; gap: 12px; align-items: baseline; margin-top: 14px; }
.tcard__price .p { font: 500 32px/1 var(--fd); }
.tcard__price .p--s { font-size: 28px; }
.tcard__price .k { font: 500 10px/1 var(--fb); letter-spacing: .14em; text-transform: uppercase; }
.tcard__price .r { font: 400 13px/1 var(--fb); color: var(--muted); }
.tcard__price .soon { font: 500 20px/1 var(--fd); color: var(--muted); }
.tcard__price .bc { font: 500 10px/1 var(--fb); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.tcard .tlink { margin-top: 16px; }
.tcard--soon .tcard__ph .ph { background-image: none; background-color: var(--oat); }
.card-eyebrow { font: 500 10px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-top: 20px; }
.card-line { font: 400 14px/1.5 var(--fb); margin-top: 10px; text-wrap: pretty; }
@media (min-width: 1024px) { .card-eyebrow { margin-top: 24px; } .card-line { font-size: 15px; margin-top: 12px; } .tcard__t { font-size: 28px; margin-top: 24px; } }

.fvcard { background: var(--oat); color: var(--char); padding: 22px 22px 20px; }
.fvcard__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.fvcard__n { font: 500 19px/1.2 var(--fd); }
.fvcard__reg { font: 400 13px/1 var(--fb); color: var(--muted); text-decoration: line-through; white-space: nowrap; margin-top: 4px; }
.fvcard__bot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 14px; gap: 16px; }
.fvcard__p { font: 500 44px/1 var(--fd); letter-spacing: -.02em; }
.fvcard__h { font: 400 13px/1.45 var(--fb); margin-top: 10px; max-width: 24ch; }
@media (min-width: 1024px) { .fvcards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; } }

.pcard { background: var(--oat); color: var(--char); padding: 24px 20px; }
.pcard__n { font: 500 22px/1.15 var(--fd); margin-top: 12px; }
.pcard__p { font: 400 13px/1.5 var(--fb); color: var(--muted); margin-top: 10px; }
.pcard--soon { background: transparent; border: 1px solid var(--stone); }
.pcard--soon .pcard__n { color: var(--muted); }
.pcards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 1024px) { .pcards { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* start-here rail: edge-to-edge scroll on mobile, 4-up grid inside the margins on desktop */
.rail-wrap { }
.rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--m); padding: 0 var(--m) 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { flex: none; width: 280px; scroll-snap-align: start; }
@media (min-width: 1024px) {
  .rail-wrap { padding: 0 var(--m); max-width: 1440px; margin: 0 auto; }
  .rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; overflow: visible; padding: 0; }
  .rail > * { width: auto; }
  .rail > *:nth-child(even) { margin-top: 48px; }
}
.stagger > * + * { margin-top: 32px; }
@media (max-width: 1023px) { .stagger > *:nth-child(even) { margin-left: 48px; } }
@media (min-width: 1024px) { .stagger { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; } .stagger > * + * { margin-top: 0; } .stagger > *:nth-child(even) { margin-top: 64px; } }

/* marquee */
.marquee { border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); padding: 14px 0; overflow: hidden; white-space: nowrap; font: 500 11px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; }
.marquee__t { display: inline-flex; animation: marquee 40s linear infinite; will-change: transform; }
.marquee:hover .marquee__t { animation-play-state: paused; }
.marquee__t span { display: inline-block; padding: 0 14px; }
.marquee__t i { font-style: normal; color: var(--brass); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (min-width: 1024px) { .marquee { padding: 16px 0; font-size: 12px; } .marquee__t span { padding: 0 24px; } }
@media (prefers-reduced-motion: reduce) { .marquee__t { animation: none; } }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field__l { font: 500 11px/1 var(--fb); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); transition: color .2s; }
.field:focus-within .field__l { color: var(--char); }
.input, .select, .textarea { width: 100%; height: 48px; border: 1px solid var(--stone); border-radius: 2px; background: var(--ww); padding: 0 14px; font: 400 15px/1 var(--fb); color: var(--char); appearance: none; -webkit-appearance: none; }
.textarea { height: auto; min-height: 120px; padding: 12px 14px; line-height: 1.5; resize: vertical; }
.select { background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v9M2.5 6.5 6 10l3.5-3.5' fill='none' stroke='%239C8F7E' stroke-width='1'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--char); outline: 2px solid var(--char); outline-offset: 2px; }
.input::placeholder, .textarea::placeholder { color: var(--muted); }
.field.is-invalid .input, .field.is-invalid .textarea, .field.is-invalid .select { border-color: var(--char); }
.field__err { font: 400 13px/1.4 var(--fb); color: var(--char); display: none; }
.field.is-invalid .field__err { display: block; }
.check { display: flex; gap: 10px; align-items: flex-start; font: 400 13px/1.5 var(--fb); color: var(--muted); }
.check input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--char); flex: none; }
.check a { color: var(--char); text-decoration: underline; text-underline-offset: 3px; }
.form-ok { font: 400 16px/1.5 var(--fb); padding: 20px 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.form-err { font: 400 13px/1.5 var(--fb); color: var(--char); }

/* radio-style finder */
.finder { background: var(--cream); color: var(--char); padding: 32px 28px; }
.finder__q { font: 500 28px/1.15 var(--fd); margin-top: 14px; }
.finder__opts { display: flex; flex-direction: column; margin-top: 20px; border-top: 1px solid var(--stone); }
.finder__opt { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--stone); font: 400 15px/1.3 var(--fb); min-height: 44px; cursor: pointer; }
.finder__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.finder__ring { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--stone); display: inline-flex; align-items: center; justify-content: center; flex: none; transition: border-color .2s; }
.finder__ring::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: transparent; transition: background .2s; }
.finder__opt input:checked + .finder__ring { border-color: var(--char); }
.finder__opt input:checked + .finder__ring::after { background: var(--char); }
.finder__opt input:focus-visible + .finder__ring { outline: 2px solid var(--char); outline-offset: 2px; }
.finder__res { display: none; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--char); }
.finder__res.is-on { display: block; }
.finder__res .k { font: 500 10px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.finder__res .t { font: 500 24px/1.15 var(--fd); margin-top: 10px; }
.finder__res .d { font: 400 14px/1.5 var(--fb); color: var(--muted); margin-top: 8px; max-width: 44ch; }
.finder__res .btns { margin-top: 20px; }

/* prices anchor bar */
.anchors { position: sticky; top: var(--navh); z-index: 40; background: var(--ww); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
.anchors::-webkit-scrollbar { display: none; }
.anchors__in { display: flex; gap: 24px; padding: 0 var(--m); }
.anchors a { display: inline-flex; align-items: center; height: 44px; font: 500 11px/1 var(--fb); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; margin-bottom: -1px; transition: color .2s, border-color .2s; }
.anchors a.is-active { color: var(--char); border-bottom-color: var(--char); }
@media (min-width: 1024px) { .anchors__in { gap: 32px; width: max-content; margin-inline: auto; } }

/* ---------- reviews ---------- */
.quote { font: 500 28px/1.2 var(--fd); letter-spacing: -.01em; text-wrap: pretty; }
.quote--s { font-size: 26px; line-height: 1.25; }
.quote__m { font: 400 13px/1.4 var(--fb); color: var(--muted); margin-top: 16px; }
.quotes { display: flex; flex-direction: column; border-top: 1px solid var(--hair); }
.quotes > div { padding: 18px 0; border-bottom: 1px solid var(--hair); }
.quotes p:first-child { font: 400 15px/1.5 var(--fb); }
.quotes p + p { font: 400 12px/1.4 var(--fb); color: var(--muted); margin-top: 8px; }
@media (min-width: 1024px) {
  .quote { font-size: 40px; max-width: 26ch; } .quote--s { font-size: 32px; } .quote__m { margin-top: 20px; }
  .quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .quotes > div { padding: 24px 0 0; border-bottom: 0; }
  .quotes p:first-child { font-size: 16px; } .quotes p + p { margin-top: 10px; }
}

/* ---------- location ---------- */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.loc__k { font: 400 10px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.loc__v { font: 400 16px/1.45 var(--fb); margin-top: 10px; }
.hours { margin-top: 10px; display: flex; flex-direction: column; font: 400 14px/1.4 var(--fb); }
.hours > span { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 1px solid var(--hair); }
.hours > span:last-child { border-bottom: 0; }
.hours > span span:last-child { color: var(--muted); }
.hours--l { font-size: 15px; } .hours--l > span { padding: 8px 0; }
.loc__row { display: flex; gap: 24px; align-items: center; margin-top: 24px; }
.loc__row .btn { flex: 1; }
@media (min-width: 1024px) { .loc__v { font-size: 17px; margin-top: 12px; } .loc__row { margin-top: 36px; gap: 32px; } .loc__row .btn { flex: none; } }
.strip { border-top: 1px solid var(--hair); padding-top: 24px; font: 400 15px/1.55 var(--fb); }
.strip span { color: var(--muted); }

/* ---------- final cta + footer ---------- */
.cta-band { padding: 72px 0; }
.cta-band__btns { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
@media (min-width: 1024px) {
  .cta-band { padding: 120px 0 0; }
  .cta-band__in { display: grid; grid-template-columns: 7fr 5fr; gap: 24px; align-items: center; padding-bottom: 120px; border-bottom: 1px solid var(--hair); }
  .cta-band__btns { flex-direction: row; justify-content: flex-end; gap: 16px; margin-top: 0; }
}
.foot { background: var(--char); color: var(--ww); border-top: 1px solid var(--hair); }
.cta-band + .foot { border-top: 0; }
.foot__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 16px; padding-top: 48px; }
.foot__brand { grid-column: span 2; }
.foot__addr { font: 400 14px/1.6 var(--fb); color: rgba(251, 249, 246, .7); margin-top: 20px; }
.foot__addr span { color: var(--muted); }
.foot__h { font: 500 10px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--brassd); padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.foot__links { display: flex; flex-direction: column; gap: 2px; margin-top: 12px; }
.foot__links a { font: 400 14px/1.4 var(--fb); padding: 5px 0; transition: color .2s; }
.foot__links a:hover { color: var(--brassd); }
.foot__cta p { font: 400 15px/1.55 var(--fb); color: rgba(251, 249, 246, .7); }
.foot__meta { margin-top: 40px; padding-top: 20px; padding-bottom: 40px; border-top: 1px solid var(--hair); display: flex; flex-direction: column; gap: 14px; font: 400 12px/1.5 var(--fb); color: rgba(251, 249, 246, .6); }
.foot__soc { display: flex; gap: 16px; color: var(--ww); }
.foot__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.foot__meta a:hover { color: var(--brassd); }
@media (min-width: 1024px) {
  .foot__grid { grid-template-columns: repeat(12, 1fr); gap: 24px; padding: 72px 0 56px; }
  .foot__brand { grid-column: span 4; } .foot__col { grid-column: span 2; } .foot__cta { grid-column: 10 / span 3; }
  .foot__addr { margin-top: 24px; } .foot__links { gap: 6px; margin-top: 14px; } .foot__links a { padding: 0; }
  .foot__meta { margin-top: 0; padding: 24px 0 40px; flex-direction: row; justify-content: space-between; align-items: center; gap: 24px; }
  .foot__soc, .foot__legal { gap: 20px; }
}

/* ---------- plain Q&A (visible answers, for readers and answer engines) ---------- */
.qa { border-top: 1px solid var(--hair); padding: 20px 0; }
.qa__q { font: 500 19px/1.3 var(--fd); }
.qa__a { font: 400 15px/1.6 var(--fb); color: var(--muted); margin-top: 10px; max-width: 68ch; }
@media (min-width: 1024px) { .qas { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; } .qa__q { font-size: 20px; } }

/* ---------- reveal ---------- */
/* gated on html.js so content is never hidden without JavaScript */
.js .rv { opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; animation: rv-fallback 0s linear 2.5s forwards; }
.js .rv.in { opacity: 1; transform: none; }
@keyframes rv-fallback { to { opacity: 1; transform: none; } } /* content can never stay hidden if JS stalls */
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- legacy content pages (terms, policies, checkout) ---------- */
.prose { max-width: 62ch; }
.prose h1 { font-size: 36px; }
.prose h2 { font-size: 26px; margin-top: 40px; }
.prose h3 { font-size: 20px; margin-top: 28px; }
.prose p, .prose li { font: 400 16px/1.6 var(--fb); margin-top: 14px; }
.prose ul { list-style: disc; padding-left: 20px; }
.prose ol { list-style: decimal; padding-left: 20px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 500; }
.prose table { border-collapse: collapse; width: 100%; margin-top: 16px; }
.prose td, .prose th { border-bottom: 1px solid var(--stone); padding: 10px 8px; text-align: left; font-size: 15px; }
.legacy { padding: 40px 0 80px; }
.legacy .container { padding: 0; }
.legacy .btn-primary { display: inline-flex; align-items: center; justify-content: center; padding: 18px 32px; background: var(--char); color: var(--ww); font: 500 13px/1 var(--fb); letter-spacing: .12em; text-transform: uppercase; border-radius: 2px; }
/* compatibility shim: legacy pages (checkout, policies) reference the old variable names */
:root {
  --dark-brown: var(--char); --dark-gray: var(--char); --text-color: var(--char); --medium-gray: var(--taupe);
  --light-gray: var(--stone); --white: var(--ww); --warm-white: var(--cream); --soft-beige: var(--oat);
  --primary-gold: var(--brass); --primary-gold-light: var(--brassd); --primary-gold-dark: var(--bark); --accent-warm: var(--brassd);
  --font-primary: var(--fb); --font-heading: var(--fd);
  --border-radius: 2px; --border-radius-lg: 2px; --shadow-sm: none; --shadow-md: none; --shadow-lg: none;
  --transition: all .2s ease; --transition-fast: all .15s ease;
  --spacing-xs: 8px; --spacing-sm: 16px; --spacing-md: 24px; --spacing-lg: 40px; --spacing-xl: 64px; --spacing-xxl: 96px; --container-width: 1248px;
}

/* --- Head Spa option cards / two-way pathway cards (head-spa-london) --- */
.hs3 { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
.hs3__c { min-width: 0; display: flex; flex-direction: column; }
.hs3__c .card-line { margin-top: 8px; }
.hs3__c .btns--stack { margin-top: auto; padding-top: 20px; }
.btns--stack { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.btns--stack .btn { width: 100%; text-align: center; justify-content: center; }
@media (min-width: 768px) {
  .hs3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hs3--2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (min-width: 1024px) {
  .hs3 { gap: 32px; }
  .hs3--2 { gap: 64px; }
}

/* --- Advanced skin card row (facials-london) --- */
.adv4 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.adv4 > * { min-width: 0; }
@media (min-width: 600px)  { .adv4 { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .adv4 { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* --- Inline prose links: the tertiary-link treatment applied inside running copy.
        is text-decoration:none globally, so contextual links need this to read as links. --- */
.body a:not(.tlink):not(.btn), .caption a:not(.tlink):not(.btn), .qa__a a:not(.tlink):not(.btn),
.lead a:not(.tlink):not(.btn), .stmt a:not(.tlink):not(.btn) {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--tlink-line);
  transition: text-decoration-color .3s ease, color .3s ease;
}
.body a:not(.tlink):not(.btn):hover, .caption a:not(.tlink):not(.btn):hover, .qa__a a:not(.tlink):not(.btn):hover,
.lead a:not(.tlink):not(.btn):hover, .stmt a:not(.tlink):not(.btn):hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* --- 6-up popular treatment grid (facials-london) --- */
@media (min-width: 600px)  { .adv4--6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adv4--6 { grid-template-columns: repeat(3, 1fr); row-gap: 40px; } }
@media (min-width: 768px)  { .hs3--3 { grid-template-columns: repeat(3, 1fr); } }

/* ============ Conversion-first treatment layout ============ */

/* quick benefit strip */
.qb { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--hair); }
.qb__i { font: 400 14px/1.4 var(--fb); color: var(--ink); padding: 14px 0; flex: 1 1 240px;
         border-bottom: 1px solid var(--hair); padding-right: 24px; }
.qb__i::before { content: ''; display: inline-block; width: 14px; height: 1px; background: var(--accent);
                 vertical-align: middle; margin-right: 10px; }
.qb--stack { flex-direction: column; }
.qb--stack .qb__i { flex: none; }
@media (min-width: 1024px) { .qb__i { flex: 1 1 22%; } }

/* treatment area cards */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hair); border: 1px solid var(--hair); }
.areas__c { background: var(--ground, var(--ww)); padding: 22px 20px; font: 500 17px/1.2 var(--fd); }
@media (min-width: 768px)  { .areas { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); } }
@media (min-width: 1024px) { .areas__c { padding: 28px 22px; } }

/* price cards */
.pcards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pcards__c { background: var(--ww); padding: 24px 22px; border: 1px solid transparent; }
.pcards__c--flag { border-color: var(--accent); }
.pcards__p { font: 500 40px/1 var(--fd); letter-spacing: -.02em; margin-top: 10px; }
.pcards__c .caption { margin-top: 6px; }
@media (min-width: 600px)  { .pcards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pcards { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* before / after gallery */
.ba { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .ba { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
.ba__set { margin: 0; }
.ba__pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ba__im { position: relative; }
.ba__im img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.ba__lab { position: absolute; left: 0; bottom: 0; background: var(--char); color: var(--ww);
           font: 500 10px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; padding: 7px 10px; }
.ba__cap { display: flex; flex-wrap: wrap; gap: 6px 14px; margin-top: 14px;
           font: 400 13px/1.5 var(--fb); color: var(--muted); }
.ba__cap .ba__t { color: var(--ink); font-weight: 500; }
.ba__cap span + span::before { content: '·'; color: var(--accent); margin-right: 14px; }

/* treatment hero grid — shared by treatment.php and treatment-conversion.php */
.tp__ph { position: relative; margin: 28px 0 0 var(--m); }
@media (min-width: 1024px) {
  .tp { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: start; padding-top: 48px; }
  .tp__txt { grid-column: span 5; padding-top: 48px; }
  .tp__ph { grid-column: 7 / span 6; margin: 0; }
}

/* mega menu overview link — full-width label row above the groups */
.mega__intro {
  grid-column: 1 / -1; justify-self: start; display: inline-flex; align-items: center; gap: 10px;
  font: 500 11px/1 var(--fb); letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  transition: color .2s;
}
.mega__intro:hover { color: var(--brass); }

/* --- Editorial display type ---------------------------------------------
   Cormorant Garamond is reserved for the SHAPE ZONE wordmark and for
   headings explicitly opted in with .h-editorial. Everything else —
   navigation, buttons, treatment names, prices, labels, body copy —
   stays in Montserrat. */
.h-editorial { font-family: var(--fw); font-weight: 500; letter-spacing: 0; }

/* ---------- top bar --------------------------------------------------
   Address (to Google Maps), phone and social links. Sits above the sticky
   nav and scrolls away with the page, so the nav still pins to the top. */
.topbar { background: var(--cream); border-bottom: 1px solid var(--stone); }
.topbar__in { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar a { color: var(--muted); transition: color .2s; }
.topbar a:hover { color: var(--char); }
.topbar svg { width: 14px; height: 14px; flex: none; }
.topbar__addr, .topbar__tel { display: inline-flex; align-items: center; gap: 7px; font: 400 12px/1.2 var(--fb); white-space: nowrap; }
.topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__soc { display: inline-flex; align-items: center; gap: 14px; }
.topbar__soc a { display: inline-flex; }
.topbar__soc svg { width: 16px; height: 16px; }

/* mobile: one calm line — the address truncates, the phone always stays whole */
@media (max-width: 599px) {
  .topbar__in { min-height: 34px; gap: 10px; }
  .topbar__tel { font-size: 11px; }
  .topbar__addr { min-width: 0; flex: 1 1 0; font-size: 11px; }
  .topbar__addr span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .topbar__right { flex: none; }
  .topbar__soc { display: none; }
}

/* ---------- journal ---------- */
.jgrid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 600px)  { .jgrid { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
@media (min-width: 1024px) { .jgrid { grid-template-columns: repeat(3, 1fr); gap: 48px 24px; } }
.jcard__l { display: block; }
.jcard__l .card-line { margin-top: 8px; }
.prose h2:first-child { margin-top: 0; }

/* ---------- cookie consent bar ---------- */
.cbar { position: fixed; z-index: 80; left: 0; right: 0; bottom: 0; background: var(--ww); border-top: 1px solid var(--stone); box-shadow: 0 -8px 32px rgba(28,26,24,.10); padding: 18px var(--m) calc(18px + env(safe-area-inset-bottom)); transform: translateY(110%); transition: transform .34s cubic-bezier(.4,0,.2,1); }
.cbar.is-in { transform: none; }
.cbar__in { display: flex; flex-direction: column; gap: 14px; max-width: 1360px; margin: 0 auto; }
.cbar__t { font: 400 13px/1.65 var(--fb); color: var(--muted); margin: 0; max-width: 68ch; }
.cbar__t a { color: var(--char); text-decoration: underline; text-underline-offset: 3px; }
.cbar__b { display: flex; gap: 10px; }
.cbar__b .btn { flex: 1; }
@media (prefers-reduced-motion: reduce) { .cbar { transition: none; } }
@media (min-width: 768px) { .cbar__in { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; } .cbar__b { flex: none; } .cbar__b .btn { flex: none; } }

/* long option lists on treatment pages: full width, two columns from 1024px */
@media (min-width: 1024px) { .rows--wide { display: grid; grid-template-columns: 1fr 1fr; column-gap: 64px; align-items: start; } }
