/* =========================================================================
   Healthy Me 2 Be — "The still room"
   Design contract: website-hm2b/design/design-spec.md (Gate 2, 2026-08-01)
   Mobile-first: base styles are 390px; every enhancement is min-width.
   ========================================================================= */

/* ---------- Tokens (spec 5.1) ---------- */
:root {
  --linen: #F5EDE4;
  --paper: #FBF7F2;
  --white: #FFFFFF;
  --noir: #0B0709;
  --teal: #193848;
  --bronze: #A8754D;
  --bronze-deep: #7E5638;
  --magenta: #B01563;
  --magenta-deep: #8A1050;
  --text: #2C2428;
  --text-muted: #6E5F58;
  --muted-soft: #8A7A70;
  --green: #88C888;
  --green-deep: #4F7F4F;
  --bronze-light: #C89A72;

  --hairline: rgba(168, 117, 77, 0.20);
  --hairline-dark: rgba(200, 154, 114, 0.20);

  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);

  --font-serif: 'Cormorant Garamond', 'Cormorant Fallback', Georgia, serif;
  --font-sans: 'Lato', 'Lato Fallback', system-ui, sans-serif;

  --gutter: 20px;
  --section-pad: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* The nav pill is fixed, so an in-page anchor landed its target's eyebrow behind the
   pill with zero clearance (review-6 finding 14). */
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (min-width: 1024px) { html { scroll-padding-top: 120px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

/* ---------- Grain overlay (spec 5.3) ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='128' height='128' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(1200px + 2 * var(--gutter));
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); position: relative; }
.surface-linen { background: var(--linen); }
.surface-paper { background: var(--paper); }
.surface-noir { background: var(--noir); color: var(--linen); }
.surface-teal { background: var(--teal); color: var(--linen); }

@media (min-width: 768px) { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --section-pad: 128px; } .section-lg { --section-pad: 160px; } }
@media (min-width: 1280px) { :root { --gutter: 56px; } }

/* ---------- Type (spec 5.2) ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: inherit; }
.display {
  font-size: clamp(38px, 10.6vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
h2, .h2 { font-size: 30px; line-height: 1.14; }
h3, .h3 { font-size: 22px; line-height: 1.25; }
h4, .h4 { font-size: 19px; line-height: 1.3; font-weight: 500; }
.lead { font-size: 17px; line-height: 1.65; color: var(--text-muted); max-width: 46ch; }
.body-copy { max-width: 62ch; }
.small { font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.accent-word { font-style: italic; color: var(--bronze); }
.surface-noir .accent-word, .surface-teal .accent-word { color: var(--bronze-light); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.surface-noir .eyebrow, .surface-teal .eyebrow { color: var(--bronze-light); }

.brand-device {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.brand-device .pipe { opacity: 0.55; padding: 0 0.5em; }
.surface-noir .brand-device, .surface-teal .brand-device, footer .brand-device { color: var(--bronze-light); }

@media (min-width: 1024px) {
  .display { font-size: clamp(58px, 5.7vw, 82px); line-height: 1.05; }
  h2, .h2 { font-size: clamp(42px, 3.8vw, 52px); }
  h3, .h3 { font-size: 28px; }
  h4, .h4 { font-size: 22px; }
  .lead { font-size: 19.5px; }
  body { font-size: 17.5px; line-height: 1.75; }
  .small { font-size: 13.5px; }
  .eyebrow { font-size: 11.5px; }
  .brand-device { font-size: 11px; letter-spacing: 0.34em; }
}

/* ---------- Buttons and links (spec 5.4) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 16px 30px;
  min-height: 48px;
  transition: background 420ms var(--ease), transform 420ms var(--ease),
    box-shadow 420ms var(--ease), border-color 420ms var(--ease), color 420ms var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--magenta); color: #fff; }
.btn-primary:hover {
  background: var(--magenta-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px -12px rgba(176, 21, 99, 0.45);
}
.btn-primary:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
.surface-noir .btn-primary:focus-visible, .surface-teal .btn-primary:focus-visible { outline-color: #fff; }
.btn-arrow .btn-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: -12px;
  transition: transform 420ms var(--ease);
}
.btn-circle svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 1.25; fill: none; transition: transform 420ms var(--ease); }
.btn-arrow:hover .btn-circle { transform: scale(1.06); }
.btn-arrow:hover .btn-circle svg { transform: translate(1px, -1px); }

.btn-ghost { border: 1px solid rgba(168, 117, 77, 0.35); color: var(--bronze-deep); background: transparent; }
.btn-ghost:hover { background: rgba(168, 117, 77, 0.08); border-color: rgba(168, 117, 77, 0.5); }
.btn-ghost-dark { border: 1px solid rgba(255, 255, 255, 0.20); color: var(--linen); background: transparent; }
.btn-ghost-dark:hover { background: rgba(255, 255, 255, 0.06); }
.btn-ghost:focus-visible, .btn-ghost-dark:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.text-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--bronze-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 320ms var(--ease), text-decoration-thickness 320ms var(--ease);
}
.text-link:hover { color: var(--magenta); text-decoration-thickness: 1.5px; }
.surface-noir .text-link, .surface-teal .text-link { color: var(--bronze-light); }
.surface-noir .text-link:hover, .surface-teal .text-link:hover { color: var(--linen); }
.inline-link { color: var(--magenta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.inline-link:hover { color: var(--magenta-deep); }

.ext-glyph { width: 12px; height: 12px; stroke: currentColor; stroke-width: 1.25; fill: none; }

@media (min-width: 1024px) { .btn { padding: 17px 34px; } }
@media (max-width: 767px) { .btn-block-mobile { width: 100%; } }

/* ---------- Double-bezel card (spec 5.3) ---------- */
.bezel {
  background: rgba(168, 117, 77, 0.06);
  border: 1px solid rgba(168, 117, 77, 0.18);
  padding: 6px;
  border-radius: 26px;
  box-shadow: 0 24px 60px -32px rgba(44, 36, 40, 0.28);
}
.bezel-core {
  background: var(--paper);
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  overflow: hidden;
}
.surface-noir .bezel, .surface-teal .bezel {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--hairline-dark);
}
.surface-noir .bezel-core, .surface-teal .bezel-core { background: #120D10; box-shadow: none; }
@media (hover: hover) {
  .bezel-hover { transition: border-color 500ms var(--ease); }
  .bezel-hover:hover { border-color: rgba(168, 117, 77, 0.30); }
  .bezel-hover .bezel-core { transition: transform 500ms var(--ease); }
  .bezel-hover:hover .bezel-core { transform: translateY(-2px); }
}

/* ---------- Hairlines, rules ---------- */
.hairline { border: none; border-top: 1px solid var(--hairline); }
.surface-noir .hairline, .surface-teal .hairline { border-top-color: var(--hairline-dark); }

/* ---------- Images (spec 5.5 global) ---------- */
.img-frame { border-radius: 20px; overflow: hidden; position: relative; }
.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(168, 117, 77, 0.16);
  pointer-events: none;
}
.surface-noir .img-frame::after, .surface-teal .img-frame::after { border-color: rgba(200, 154, 114, 0.16); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame-lg { border-radius: 26px; }

/* ---------- FUD row (spec 5.5) ---------- */
.fud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.fud li { display: flex; align-items: baseline; gap: 8px; }
.fud li::before { content: ""; flex: 0 0 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); transform: translateY(-2px); }
.surface-noir .fud, .surface-teal .fud { color: rgba(245, 237, 228, 0.72); }
/* Narrow contexts (offer card, booking form, services offer band) keep a single column at
   EVERY width, phones included, so a three-item list never leaves item 3 alone in column 1
   under a wrapped item 2 (review-6 finding 3; the pass-5 fix only reached 768 and up). */
.fud-stack { grid-template-columns: 1fr; gap: 8px; }
@media (min-width: 768px) {
  .fud { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 0; font-size: 12px; font-weight: 400; }
  .fud li::before { display: none; }
  .fud li { align-items: center; }
  /* Separator dots trail each item (except the last), so a wrapped line never
     OPENS with an orphan dot (review-2 finding 2). */
  .fud:not(.fud-stack) li:not(:last-child)::after {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(168, 117, 77, 0.45);
    margin: 0 10px;
    flex: 0 0 3px;
  }
  .fud-left { justify-content: flex-start; }
}
/* Between 1024 and 1199 the hero copy column cannot hold four items on one line,
   so the hero FUD reverts to the deliberate two-column dot grid; no separator can
   strand at either end of a wrapped line (review-3 finding 4). */
@media (min-width: 1024px) and (max-width: 1199.98px) {
  .fud.hero-fud { display: grid; grid-template-columns: auto auto; gap: 10px 28px; justify-content: start; font-size: 11.5px; font-weight: 600; }
  .fud.hero-fud li::before { content: ""; display: block; flex: 0 0 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); transform: translateY(-2px); }
  .fud.hero-fud li:not(:last-child)::after { display: none; }
}
@media (min-width: 768px) {
  /* Above 768 the base .fud switches to a centred flex row with separator dots, so the
     stacked variant has to re-assert the grid and its own leading dots (review-1 finding 7). */
  .fud-stack { display: grid; justify-content: start; font-weight: 600; font-size: 11.5px; }
  .fud-stack li::before { content: ""; display: block; flex: 0 0 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); transform: translateY(-2px); margin: 0; }
}

/* ---------- Credential strip (spec 5.5) ---------- */
.cred-strip { display: flex; align-items: center; gap: 14px; }
.cred-strip img { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.cred-strip .cred-name { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.cred-strip .cred-line { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
/* Marker chips + divider join the trust strip only where the copy column is wide
   enough for a clean single row (1280+); below that they duplicate the FUD row
   anyway (review-2 findings 2 and 3). */
.cred-divider, .cred-chips { display: none; }
@media (min-width: 1024px) {
  .cred-strip img { flex: 0 0 44px; width: 44px; height: 44px; }
  .cred-strip .cred-line { white-space: nowrap; }
}
@media (min-width: 1280px) {
  .cred-divider { display: block; flex: 0 0 1px; width: 1px; height: 34px; background: var(--hairline); margin: 0 18px; }
  .cred-chips { display: flex; flex-direction: column; gap: 7px; }
  .cred-chip {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--bronze-deep);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .cred-chip::before { content: ""; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); }
}

/* ---------- Nav pill (spec 7) ---------- */
.nav-pill {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 50;
  margin: 0 auto;
  max-width: 1180px;
  height: 58px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(168, 117, 77, 0.18);
  box-shadow: 0 10px 30px -22px rgba(44, 36, 40, 0.40);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 14px;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.nav-pill.is-stuck { transform: translateY(-6px) scale(0.985); box-shadow: 0 16px 40px -22px rgba(44, 36, 40, 0.55); }
.nav-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; min-width: 0; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand .brand-word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.10em;
  color: var(--bronze);
  line-height: 1.05;
  white-space: nowrap;
}
.nav-brand .brand-sub {
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--magenta);
  display: block;
  margin-top: 2px;
}
/* Sub-360 phones: the full lockup does not fit the pill (measured 188px of content in a
   162px box at 320). Drop the sub-line and tighten the wordmark and the pill inset so the
   brand still reads as a lockup instead of being clipped. */
@media (max-width: 359px) {
  .nav-pill { left: 10px; right: 10px; padding: 0 6px 0 10px; }
  .nav-brand { gap: 6px; padding: 5px 0; }
  .nav-brand img { height: 34px; }
  .nav-brand .brand-sub { display: none; }
  .nav-brand .brand-word { font-size: 12.5px; letter-spacing: 0.05em; }
  .nav-cta { font-size: 11.5px; padding: 12px 11px; margin-right: 2px; }
}
.nav-links { display: none; }
/* The Book CTA stays visible in the mobile pill (review-1 finding 15): short label
   below 1024px, full label above. */
.nav-cta { display: inline-flex; font-size: 12.5px; padding: 12px 14px; min-height: 44px; margin-left: auto; margin-right: 4px; flex: 0 0 auto; }
.nav-cta .cta-full { display: none; }
.nav-cta .cta-short { display: inline; }
.nav-burger {
  flex: 0 0 40px;
  width: 40px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: transform 320ms var(--ease), opacity 320ms var(--ease); }
.nav-burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-pill { top: 24px; height: 70px; padding: 0 14px 0 26px; }
  .nav-brand { gap: 10px; }
  .nav-brand img { height: 48px; }
  .nav-brand .brand-word { font-size: 19px; letter-spacing: 0.14em; }
  .nav-brand .brand-sub { font-size: 9.5px; }
  .nav-links { display: flex; align-items: center; gap: 34px; }
  .nav-links a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text);
    text-decoration: none;
    position: relative;
    padding: 6px 0;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: var(--bronze);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 320ms var(--ease);
  }
  .nav-links a:hover { color: var(--bronze-deep); }
  .nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
  .nav-links a[aria-current="page"] { color: var(--bronze-deep); }
  .nav-cta { font-size: 13.5px; padding: 11px 20px; margin-left: 0; margin-right: 0; }
  .nav-cta .cta-full { display: inline; }
  .nav-cta .cta-short { display: none; }
  .nav-burger { display: none; }
}

/* Mobile overlay */
/* The overlay was the least designed surface on the site (review-6 finding 8): four serif
   words centred in the top third of the screen, roughly 320px of dead linen below them,
   three separate Book affordances on one screen, and a 98% background that leaked page
   shapes through the blur. It is now an editorial index, bottom-weighted into thumb reach,
   with a descriptor per row and the contact detail the footer otherwise buries. */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  padding: 88px 20px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms var(--ease), visibility 0s linear 320ms;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
/* The rebuilt block is 446px tall against 250px before, so on a landscape phone it ran
   past the fold and left the Book pill unreachable, with the nav pill's own Book already
   hidden by body.menu-open: no booking action on screen at all (review-7 finding N3). */
.nav-overlay { overflow-y: auto; -webkit-overflow-scrolling: touch; }
@media (max-height: 500px) {
  .nav-overlay { padding-top: 72px; }
  .nav-overlay .ov-contact, .nav-overlay .ov-device { display: none; }
}
/* Free space collects ABOVE the list, so the links land in the reachable lower half. */
.nav-overlay a.ov-link:first-of-type { margin-top: auto; }
.nav-overlay a.ov-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 0;
  border-top: 1px solid rgba(168, 117, 77, 0.20);
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--text);
  text-decoration: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}
.nav-overlay .ov-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-deep);
}
.nav-overlay.is-open a.ov-link { opacity: 1; transform: none; }
.nav-overlay.is-open a.ov-link:nth-of-type(2) { transition-delay: 90ms; }
.nav-overlay.is-open a.ov-link:nth-of-type(3) { transition-delay: 180ms; }
.nav-overlay .ov-contact {
  border-top: 1px solid rgba(168, 117, 77, 0.20);
  padding-top: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}
.nav-overlay .ov-device { margin-top: 24px; }
.nav-overlay .btn { margin-top: 24px; width: 100%; }
/* While the menu is open the header shows the lockup and the X, nothing else. */
body.menu-open .nav-cta { display: none; }
@media (min-width: 1024px) { .nav-overlay { display: none; } }

/* ---------- Reveal on entry (hidden state only when JS is running) ---------- */
.reveal { transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.js .reveal { opacity: 0; transform: translateY(20px); }
.no-js .reveal, .js .reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 90ms; }
.reveal-d2 { transition-delay: 180ms; }
.reveal-d3 { transition-delay: 270ms; }

/* =========================================================================
   HERO (spec 1)
   ========================================================================= */
.hero { background: var(--linen); position: relative; overflow: visible; }
.hero-inner { padding-top: calc(58px + 16px + 96px); display: flex; flex-direction: column; }
.hero-copy { padding-left: var(--gutter); padding-right: var(--gutter); }
.hero .brand-device { margin-bottom: 18px; }
.hero-h1 { color: var(--text); max-width: 15ch; }
.hero-sub { margin-top: 18px; font-size: 16.5px; line-height: 1.65; color: var(--text-muted); max-width: 34ch; }
.hero-cta-row { margin-top: 26px; display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.hero-secondary { text-align: center; }
.hero-trust { margin-top: 24px; border-top: 1px solid var(--hairline); padding-top: 22px; }
.hero-fud { margin-top: 20px; margin-bottom: 28px; }
.hero-img-mobile { margin-top: 8px; }
.hero-img-mobile img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.hero-img-desktop { display: none; }
.hero-offer-card { display: none; }

@media (min-width: 1024px) {
  .hero { min-height: min(100dvh, 900px); overflow: visible; }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 640px at 78% 8%, rgba(168, 117, 77, 0.10), transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: calc(1200px + 2 * var(--gutter));
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    min-height: inherit;
    align-items: center;
  }
  .hero-copy { grid-column: 1 / 7; padding: 180px 0 120px; }
  .hero-h1 { max-width: 18ch; }
  .hero-sub { margin-top: 22px; font-size: 19.5px; max-width: 46ch; }
  .hero-cta-row { flex-direction: row; align-items: center; gap: 24px; }
  .hero-trust { display: flex; align-items: center; margin-top: 34px; padding-top: 24px; }
  .hero-fud { margin-bottom: 0; justify-content: flex-start; }
  .hero-img-mobile { display: none; }
  .hero-img-desktop {
    display: block;
    grid-column: 8 / 13;
    position: relative;
    /* Stretch to the full hero row, then push 96px past its bottom edge so the
       panel paints INTO the noir section below (spec 1.2, review-1 finding 1). */
    align-self: stretch;
    margin-top: 112px;
    margin-bottom: -96px;
    margin-right: calc(-1 * var(--gutter)); /* bleeds off the right viewport edge */
    z-index: 2;
  }
  .hero-img-desktop .panel {
    position: relative;
    height: 100%;
    border-radius: 26px 0 0 26px;
    overflow: hidden;
  }
  .hero-img-desktop .panel img { width: 100%; height: 100%; object-fit: cover; }
  .hero-img-desktop .panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, var(--linen), transparent 14%);
    pointer-events: none;
  }
  .hero-img-desktop .panel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background: rgba(168, 117, 77, 0.30);
    z-index: 2;
  }
  .hero-offer-card {
    display: block;
    position: absolute;
    left: -64px;
    bottom: 132px;
    width: 240px;
    z-index: 3;
  }
  .hero-offer-card .bezel-core { padding: 20px; overflow: visible; }
  .hero-offer-card .offer-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-deep); }
  .hero-offer-card .offer-price { font-family: var(--font-serif); font-size: 40px; line-height: 1.1; color: var(--text); display: flex; align-items: baseline; gap: 10px; }
  .hero-offer-card .offer-value { font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); }
  .hero-offer-card .offer-line { font-size: 13px; color: var(--text); margin-top: 4px; }
  .hero-offer-card .inline-link { font-size: 13.5px; font-weight: 600; display: inline-block; margin-top: 10px; }
}

/* Hero load timeline (CSS keyframe fallback states; JS drives with GSAP) */
.js .hero-anim { opacity: 0; }
.no-js .hero-anim { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .js .hero-anim { opacity: 1 !important; transform: none !important; } }

/* =========================================================================
   HOME sections
   ========================================================================= */

/* S2 Pain — noir */
.pain { position: relative; overflow: hidden; }
.pain-bg { position: absolute; inset: 0; }
.pain-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.pain-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 45%, transparent 0%, rgba(11, 7, 9, 0.72) 68%, var(--noir) 100%);
}
.pain-copy { position: relative; z-index: 2; max-width: 62ch; }
.pain h2 { color: var(--linen); }
.pain p { color: rgba(245, 237, 228, 0.78); font-size: 17.5px; line-height: 1.75; margin-top: 36px; }
.pain .pull-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--bronze-light);
  margin-top: 48px;
  padding-top: 48px;
  position: relative;
}
.pain .pull-line::before { content: ""; position: absolute; top: 0; left: 0; width: 40px; height: 1px; background: var(--bronze); }
@media (min-width: 1024px) {
  .pain { padding-top: 200px; }
  .pain-copy { margin-left: calc(100% / 12); max-width: 62ch; }
  .pain p { margin-top: 56px; }
}

/* S3 The answer — linen comparison */
.answer-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.answer-col h3 { margin-bottom: 20px; }
.answer-col li { padding: 10px 0; display: flex; gap: 14px; align-items: baseline; line-height: 1.6; }
.answer-is li::before { content: ""; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); transform: translateY(-3px); }
.answer-not { color: var(--text-muted); font-size: 0.94em; }
.answer-not li::before { content: ""; flex: 0 0 10px; width: 10px; height: 1px; background: rgba(168, 117, 77, 0.4); transform: translateY(-5px); }
.answer-divider-h { margin: 0; }
@media (min-width: 1024px) {
  .answer-grid { display: grid; grid-template-columns: 5fr 1px 5fr; gap: 0 48px; align-items: start; }
  .answer-divider-h { display: none; }
  .answer-divider-v { width: 1px; align-self: stretch; background: var(--hairline); }
}
@media (max-width: 1023px) { .answer-divider-v { display: none; } }

/* S4 MIND | BODY | SPIRIT — paper, pinned split on desktop */
.mbs-rail-mobile { position: relative; padding-left: 24px; }
.mbs-rail-mobile::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--hairline); }
.mbs-panel { position: relative; margin-top: 64px; }
.mbs-panel::before { content: ""; position: absolute; left: -28px; top: 6px; width: 9px; height: 9px; border-radius: 50%; background: var(--bronze); }
.mbs-panel .mbs-word { font-family: var(--font-serif); font-size: 26px; color: var(--bronze); margin-top: 20px; }
.mbs-panel p { margin-top: 12px; max-width: 58ch; }
.mbs-panel .img-frame { aspect-ratio: 3 / 4; }
.mbs-device-lg { display: none; }
/* Below 1024 the pinned word rail is hidden, which left the section that carries the
   whole mechanism with no headline at all: an 11px eyebrow and then three photographs.
   The device leads, the eyebrow is promoted to a real H2 (review-6 finding 9). */
.mbs-device-mobile { margin-bottom: 10px; }
.mbs-h2-mobile { font-family: var(--font-serif); font-size: 30px; line-height: 1.14; max-width: 18ch; }
@media (min-width: 1024px) {
  .mbs-wrap { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .mbs-left { grid-column: 1 / 5; }
  .mbs-right { grid-column: 6 / 13; }
  .mbs-rail-mobile { padding-left: 0; }
  .mbs-rail-mobile::before { display: none; }
  .mbs-panel::before { display: none; }
  .mbs-device-lg { display: block; position: sticky; top: 160px; }
  .mbs-device-lg .word {
    font-family: var(--font-serif);
    font-size: 46px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.72; /* 3.04:1 at 46px, clears the large-text bar (review-2 finding 4) */
    display: block;
    line-height: 1.5;
    transition: opacity 400ms var(--ease), color 400ms var(--ease);
  }
  .mbs-device-lg .word.is-active { color: var(--bronze); opacity: 1; }
  /* The rail runs down the LEFT of the word stack (spec 2 S4, review-2 finding 8). */
  .mbs-device-lg { padding-left: 24px; }
  .mbs-progress { position: absolute; left: 0; top: 52px; bottom: 6px; width: 1px; height: auto; background: var(--hairline); margin: 0; }
  .mbs-progress span { position: absolute; top: 0; left: 0; width: 1px; height: 0%; background: var(--bronze); }
  .mbs-device-mobile, .mbs-h2-mobile { display: none; }
  .mbs-panel { margin-top: 0; }
  .mbs-panel + .mbs-panel { margin-top: 120px; }
  .mbs-panel:nth-child(2) { margin-left: 48px; }
  .mbs-panel .img-frame { max-width: 480px; }
}

/* S5 Founder — noir */
.founder-grid { display: flex; flex-direction: column; }
.founder-portrait { position: relative; margin: 0 calc(-1 * var(--gutter)); }
.founder-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.founder-copy { padding-top: 48px; }
.founder-copy h2 { margin-top: 14px; }
.founder-copy p { color: rgba(245, 237, 228, 0.78); margin-top: 22px; max-width: 56ch; }
.cred-list { margin-top: 36px; }
.cred-list li {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--linen);
}
.cred-list li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.10); }
.cred-list .cred-label {
  flex: 0 0 84px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-light);
  transform: translateY(3px);
}
.founder-copy .btn { margin-top: 36px; }
@media (min-width: 1024px) {
  .founder-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: center; }
  .founder-portrait { grid-column: 1 / 6; margin: 0; margin-left: calc(-1 * var(--gutter)); }
  .founder-portrait::before {
    content: "";
    position: absolute;
    inset: -60px;
    background: radial-gradient(closest-side, rgba(168, 117, 77, 0.10), transparent);
    pointer-events: none;
  }
  .founder-portrait img { border-radius: 0 26px 26px 0; position: relative; }
  .founder-portrait::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: rgba(200, 154, 114, 0.24);
  }
  .founder-portrait .edge-b { position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: rgba(200, 154, 114, 0.24); }
  .founder-copy { grid-column: 7 / 13; padding-top: 0; }
}

/* S6 Offer — linen */
.offer-card { max-width: 860px; margin: 0 auto; }
.offer-core { padding: 28px; display: flex; flex-direction: column; }
.offer-media { order: -1; margin: -28px -28px 24px; }
.offer-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.offer-name { font-size: 28px; margin-top: 6px; }
.offer-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 14px; }
.offer-price { font-family: var(--font-serif); font-size: 48px; line-height: 1; }
.offer-value { font-family: var(--font-sans); font-size: 14px; color: var(--text-muted); }
.offer-value s { text-decoration-thickness: 1px; text-decoration-color: rgba(110, 95, 88, 0.4); }
.offer-incl { margin-top: 20px; }
.offer-incl li { display: flex; gap: 12px; align-items: baseline; padding: 7px 0; }
.offer-incl li::before { content: ""; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); transform: translateY(-3px); }
.offer-cta-block { margin-top: 26px; }
.offer-cta-block .fud { margin-top: 18px; }
@media (min-width: 768px) {
  .offer-price { font-size: 56px; }
  .offer-name { font-size: 32px; }
}
/* The side-by-side split waits for 1024. At 768 the copy column was narrow and tall, so
   `height: 100%` beat the 3:2 ratio and cover-cropped the landscape photograph into a
   portrait sliver that cut out the lit red light panel, the whole subject of the shot
   (review-6 finding 6). Below 1024 the card keeps the stacked 3:2 band the spec asks for. */
@media (min-width: 1024px) {
  .offer-core { display: grid; grid-template-columns: 7fr 5fr; gap: 40px; padding: 48px; }
  .offer-media { margin: 0; order: 2; }
  .offer-media img { aspect-ratio: 3 / 2; height: 100%; border-radius: 20px; }
}

/* S7 Services preview — paper bento */
.bento { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.bento .bezel-core { height: 100%; }
.bento .tile-core { display: flex; flex-direction: column; height: 100%; }
/* Body grows and pins its link to the bottom, so stretched tiles read as
   intentional structure instead of a void (review-2 finding 5). */
.bento .tile-body { display: flex; flex-direction: column; }
.bento .tile-body .text-link { margin-top: auto; align-self: flex-start; padding-top: 16px; }
/* Stretched tiles absorb leftover height in the PHOTOGRAPH, not in blank paper
   (review-3 finding 5). The media-less Packages tile grows its body instead so
   its link pins to the tile bottom (review-4 finding 3). */
.bento .tile-media { flex: 1; min-height: 0; overflow: hidden; }
.bento .tile-media img { height: 100%; object-fit: cover; }
.bento .tile-packages .tile-body { flex: 1; }
.bento .tile-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.bento .tile-body { padding: 28px; }
.bento .tile-body h3 { margin-bottom: 12px; }
.bento .tile-body ul { margin: 14px 0 18px; }
.bento .tile-body ul li { padding: 4px 0; color: var(--text-muted); font-size: 15px; display: flex; gap: 10px; align-items: baseline; }
.bento .tile-body ul li::before { content: ""; flex: 0 0 4px; width: 4px; height: 4px; border-radius: 50%; background: var(--bronze); transform: translateY(-2px); }
.tile-packages .tile-body { border-top: 1px solid var(--hairline); }
.bento-cta { margin-top: 32px; display: flex; }
.bento-cta .btn { width: 100%; }
@media (min-width: 1024px) {
  .bento { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: auto; gap: 20px; }
  .tile-body-treatments { grid-column: 1 / 8; grid-row: 1 / 3; }
  /* No aspect/max-height caps: flexed media absorbs the tile's leftover height
     (review-4 finding 3). */
  .tile-beauty { grid-column: 8 / 13; grid-row: 1; }
  .tile-packages { grid-column: 8 / 13; grid-row: 2; }
  .bento-cta { justify-content: flex-end; }
  .bento-cta .btn { width: auto; }
}

/* S8 Experience — linen zig-zag */
.exp-step { margin-top: 72px; position: relative; }
.exp-num {
  font-family: var(--font-serif);
  font-size: 44px;
  color: var(--bronze);
  /* On mobile the numeral is IN FLOW above the heading with nothing behind it, so 0.22
     read as a printing fault. Desktop keeps 0.22 because there it sits behind the
     heading as texture (review-6 finding 12). */
  opacity: 0.55;
  line-height: 1;
}
.exp-step h3 { margin-top: 4px; position: relative; }
.exp-step p { margin-top: 12px; max-width: 52ch; }
.exp-step .img-frame { margin-top: 24px; aspect-ratio: 3 / 2; }
@media (min-width: 1024px) {
  .exp-steps { margin-top: 24px; }
  .exp-step { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: center; margin-top: 104px; }
  /* 1px bronze hairline between steps, 64px tall, on the left spine, absolutely
     positioned so grid item order can never displace it (spec 2 S8, review-3
     finding 3). Sits evenly inside the 104px inter-step gap. */
  .exp-step { position: relative; }
  .exp-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -84px;
    width: 1px;
    height: 64px;
    background: rgba(168, 117, 77, 0.4);
  }
  .exp-step:nth-child(even) .exp-media { order: 2; }
  .exp-step:nth-child(even) .exp-body { order: 1; }
  .exp-num { font-size: 72px; position: absolute; transform: translate(-24px, -64px); opacity: 0.22; }
  .exp-step h3 { font-size: 26px; }
  .exp-body { position: relative; padding-top: 30px; }
  .exp-step .img-frame { margin-top: 0; }
  .exp-typo-only { grid-template-columns: 1fr; max-width: 62ch; text-align: left; }
}

/* S9 Reassurance — teal */
.claims { margin-top: 48px; }
.claims li { border-top: 1px solid rgba(200, 154, 114, 0.22); padding: 24px 0; }
.claims li:last-child { border-bottom: 1px solid rgba(200, 154, 114, 0.22); }
.claims .claim-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-light); }
.claims .claim-text { margin-top: 8px; font-size: 17px; line-height: 1.7; color: var(--linen); }
.reassure-cta { margin-top: 40px; text-align: center; }
@media (min-width: 1024px) {
  .claims { max-width: 900px; margin-left: auto; margin-right: auto; }
  .claims li { display: flex; gap: 32px; align-items: baseline; padding: 28px 0; }
  .claims .claim-label { flex: 0 0 200px; }
  .claims .claim-text { margin-top: 0; }
}

/* S10 FAQ — linen accordion */
.faq-wrap { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.3;
  color: var(--text);
  transition: color 320ms var(--ease);
}
.faq-q[aria-expanded="true"] { color: var(--bronze-deep); }
.faq-icon { position: relative; flex: 0 0 20px; width: 20px; height: 20px; }
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--bronze);
  transition: transform 320ms var(--ease), opacity 320ms var(--ease);
}
.faq-icon::before { left: 0; right: 0; top: 50%; height: 1px; }
.faq-icon::after { top: 0; bottom: 0; left: 50%; width: 1px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 320ms var(--ease); }
.faq-a > div { overflow: hidden; }
.faq-a p { max-width: 62ch; padding-bottom: 24px; opacity: 0; transform: translateY(8px); transition: opacity 320ms var(--ease), transform 320ms var(--ease); }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a p { opacity: 1; transform: none; }
/* With JS off the accordion never opens, which silently removes the site's entire
   objection-handling layer. Open everything and drop the dead plus icons instead
   (review-6 finding 10). */
.no-js .faq-a { grid-template-rows: 1fr; }
.no-js .faq-a p { opacity: 1; transform: none; }
.no-js .faq-icon { display: none; }
@media (min-width: 1024px) {
  .faq-wrap { max-width: calc(100% * 8 / 12); margin-left: auto; margin-right: auto; }
  .faq-q { font-size: 24px; }
  .faq-heading { text-align: center; font-size: 34px; }
}

/* S11 Closer — linen radial */
.closer { text-align: center; position: relative; }
.closer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 420px at 50% 40%, rgba(168, 117, 77, 0.12), transparent 72%);
  pointer-events: none;
}
.closer > .container { position: relative; }
.closer h2 { margin-top: 16px; font-size: clamp(32px, 4.4vw, 60px); max-width: 22ch; margin-left: auto; margin-right: auto; }
.closer .closer-body { margin-top: 20px; max-width: 44ch; margin-left: auto; margin-right: auto; color: var(--text-muted); }
.closer .hero-cta-row { margin-top: 32px; align-items: center; }
.closer .fud { margin-top: 24px; justify-content: center; }
/* The grid stays optically centred, but each item sets flush left so a wrapped second
   line still sits under its own dot instead of floating (review-6 finding 4). */
.closer .fud li { text-align: left; }
.closer .cred-echo { margin-top: 28px; font-size: 12.5px; color: var(--text-muted); }
@media (min-width: 768px) { .closer .hero-cta-row { flex-direction: row; justify-content: center; } }

/* =========================================================================
   SERVICES page
   ========================================================================= */
.page-head { padding-top: calc(58px + 16px + 72px); }
/* 8.5vw did not reach the 44px cap until a 518px viewport, so every phone saw 34px
   against the home hero's 41px, and the 16ch measure forced ragged three-line breaks
   in a 350px column (review-6 finding 11). The measure returns at 1024. */
.page-head h1 { font-size: clamp(34px, 9.8vw, 44px); line-height: 1.05; letter-spacing: -0.015em; max-width: none; margin-top: 16px; }
.page-head .lead { margin-top: 20px; }
@media (min-width: 1024px) {
  .page-head { padding-top: calc(70px + 24px + 104px); }
  .page-head h1 { font-size: clamp(34px, 4.6vw, 62px); max-width: 16ch; }
}
.services-hero-img { margin-top: 56px; }
/* Spec 5.3: full-bleed panels carry no radius on the bleeding edge. Below 768 this image
   runs edge to edge, so the 26px corners left linen triangles (review-6 finding 15). */
.services-hero-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 0; }
/* Full-bleed at every width below 1024 (the element is a direct child of the section,
   never inside .container), so the radius waits for 1024 where the 1024 block sets it
   (review-7 finding N6). */
@media (min-width: 1024px) {
  /* Already a full-width child of the section; no negative margins (review-1 finding 13). */
  .services-hero-img { margin-top: 96px; }
  .services-hero-img img { aspect-ratio: 21 / 9; border-radius: 26px 26px 0 0; }
}

.offer-band-core { padding: 28px; display: flex; flex-direction: column; gap: 20px; text-align: center; align-items: center; }
.offer-band .band-price { font-family: var(--font-serif); font-size: 40px; line-height: 1; }
.offer-band .band-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-deep); margin-bottom: 8px; }
.offer-band .band-desc { max-width: 44ch; color: var(--text-muted); }
.offer-band { max-width: 1080px; margin: 0 auto; }
@media (min-width: 1024px) {
  .offer-band-core { flex-direction: row; text-align: left; padding: 32px 40px; gap: 0; }
  .offer-band-core > * { padding: 0 36px; }
  .offer-band-core > *:first-child { padding-left: 0; }
  .offer-band-core > *:last-child { padding-right: 0; }
  .offer-band-core .band-desc { flex: 1; max-width: none; }
  .offer-band-core .band-sep { width: 1px; align-self: stretch; background: var(--hairline); padding: 0; }
}

.treatment-row { padding: 48px 0; border-bottom: 1px solid rgba(168, 117, 77, 0.18); }
.treatment-row:last-child { border-bottom: none; }
.treatment-row h3 { font-size: 24px; }
.treatment-row .t-benefit { margin-top: 10px; font-size: 16.5px; color: var(--text); max-width: 58ch; }
.treatment-row .t-spec { margin-top: 10px; font-size: 13px; color: var(--text-muted); }
/* Below 1024 the zig-zag DOM order carried straight through, so alternate rows opened
   with an unlabelled photograph. Spec S3 mobile rule: image above text on every row that
   has one (review-6 findings 7 and 16). The 1024 grid rules override this display. */
.treatment-row { display: flex; flex-direction: column; }
.treatment-row .img-frame { order: -1; margin: 0 0 24px; aspect-ratio: 4 / 3; }
@media (min-width: 1024px) {
  .treatment-row { display: grid; grid-template-columns: 7fr 5fr; gap: 56px; align-items: center; padding: 56px 0; }
  .treatment-row .img-frame { margin-bottom: 0; }
  .treatment-row.t-img-left { grid-template-columns: 5fr 7fr; }
  .treatment-row.t-img-left .img-frame { order: 1; }
  .treatment-row.t-img-left .t-body { order: 2; }
  .treatment-row.t-typo { display: block; max-width: 62ch; }
  .treatment-row h3 { font-size: 26px; }
}

.beauty-list { margin-top: 40px; }
.beauty-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.beauty-list li:first-child { border-top: 1px solid var(--hairline); }
.beauty-list .b-name { font-family: var(--font-serif); font-size: 22px; }
.beauty-list .b-desc { font-size: 13.5px; color: var(--text-muted); text-align: right; }
/* Below 1024 the two lists stack, so the second list's top margin plus its first-child
   border-top produced an empty hairline-bounded band that read as a missing service, and
   the right-aligned descriptor ragged against the screen edge. Below 1024 the seven
   services read as one continuous two-line editorial list (review-6 finding 2). */
@media (max-width: 1023px) {
  .beauty-cols .beauty-list + .beauty-list { margin-top: 0; }
  .beauty-cols .beauty-list + .beauty-list li:first-child { border-top: none; }
  .beauty-list li { display: block; padding: 18px 0; }
  /* Both spans must go block-level too. Turning the flexbox off took the 24px gap with
     it, and margin-top on an inline span does nothing, so name and descriptor rendered
     with zero space between them ("Facial treatmentsCustomized care...") on all seven
     rows (review-7 finding N1). */
  .beauty-list .b-name, .beauty-list .b-desc { display: block; }
  .beauty-list .b-desc { text-align: left; margin-top: 4px; }
}
@media (min-width: 1024px) {
  .beauty-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; margin-top: 40px; }
  .beauty-cols .beauty-list { margin-top: 0; }
  .beauty-list li { min-height: 64px; }
}

.packages-rows { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.packages-rows li { display: flex; flex-direction: column; gap: 6px; padding: 26px 0; border-top: 1px solid rgba(200, 154, 114, 0.22); }
.packages-rows li:last-child { border-bottom: 1px solid rgba(200, 154, 114, 0.22); }
/* Centred setting works for an eyebrow, an H2 and a two-line note. It does not work for
   a seven-line paragraph on a 350px measure (review-6 finding 17). */
@media (max-width: 767px) { .packages-philosophy { text-align: left; } }
.packages-rows .p-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 237, 228, 0.72); }
.packages-rows .p-price { font-family: var(--font-serif); font-size: 34px; color: var(--bronze-light); line-height: 1.15; }
@media (min-width: 768px) {
  .packages-rows li { flex-direction: row; align-items: baseline; justify-content: space-between; }
}

.skincare-note { max-width: 56ch; }
.skincare-note .img-frame { width: 160px; aspect-ratio: 1; margin-bottom: 20px; }
@media (min-width: 1024px) {
  .skincare-note .img-frame { float: right; width: 200px; margin: 0 0 20px 32px; }
}

/* =========================================================================
   ABOUT page
   ========================================================================= */
.story-copy { max-width: 60ch; }
.story-copy p { margin-top: 32px; }
.story-copy p:first-of-type { margin-top: 40px; }
@media (min-width: 1024px) {
  .story-copy { margin-left: calc(100% / 12); }
  .story-copy .story-body p:first-child::first-letter {
    font-family: var(--font-serif);
    font-size: 4.6em;
    line-height: 0.82;
    float: left;
    color: var(--bronze);
    margin: 6px 8px 0 0;
  }
}
.why-grid { display: flex; flex-direction: column; gap: 24px; }
.why-copy p { margin-top: 22px; max-width: 56ch; }
.why-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.45;
  color: var(--bronze-deep);
  max-width: 44ch;
  position: relative;
  padding-top: 24px;
  margin-top: 12px;
}
.why-quote::before { content: ""; position: absolute; top: 0; left: 0; width: 56px; height: 1px; background: var(--bronze); }
@media (min-width: 1024px) {
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .why-quote { font-size: 30px; margin-top: 0; }
}
.about-cred-grid .founder-portrait { margin: 0 calc(-1 * var(--gutter)); }
/* The section clips its own bleed (the portrait margin AND its ::before glow), so
   the mirrored right-bleed works at every desktop width without scrollable
   overflow (review-3 finding 1). Never solved at body level. */
.about-cred-section { overflow-x: clip; }
@media (min-width: 1024px) {
  .about-cred-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; align-items: center; }
  .about-cred-grid .founder-portrait { grid-column: 8 / 13; margin: 0; margin-right: calc(-1 * var(--gutter)); order: 2; }
  .about-cred-grid .founder-portrait img { border-radius: 26px 0 0 26px; }
  .about-cred-grid .founder-portrait::after { left: 0; right: auto; }
  .about-cred-grid .founder-copy { grid-column: 1 / 7; order: 1; }
}
.cred-list-numbered li .cred-num {
  font-family: var(--font-serif);
  flex: 0 0 36px;
  font-size: 20px;
  color: var(--bronze-light);
  opacity: 0.4;
  transform: translateY(1px);
}
.sanctuary-img img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.sanctuary-copy { margin-top: 40px; }
.sanctuary-copy p { margin-top: 18px; max-width: 58ch; }
@media (min-width: 1024px) {
  .sanctuary-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; }
  .sanctuary-copy p { margin-top: 0; }
}
.ecosystem-band { padding: 36px var(--gutter); text-align: center; }
.ecosystem-band .eco-label { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze-light); }
.ecosystem-band .eco-line { font-family: var(--font-serif); font-style: italic; font-size: 20px; line-height: 1.5; color: var(--linen); margin-top: 10px; max-width: 52ch; margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .ecosystem-band { padding: 26px var(--gutter); } .ecosystem-band .eco-line { font-size: 24px; } }

/* =========================================================================
   BOOK page
   ========================================================================= */
.book-grid { display: flex; flex-direction: column; gap: 40px; }
/* Same defect as .page-head h1: 8vw did not reach the 44px cap until a 550px viewport,
   so every phone saw the floor (review-6 finding 11, book page instance). */
.book-copy h1 { font-size: clamp(34px, 9.8vw, 44px); line-height: 1.05; letter-spacing: -0.015em; margin-top: 16px; max-width: 15ch; }
.book-copy .lead { margin-top: 18px; }
.expect-list { margin-top: 28px; }
.expect-list li { display: flex; gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--hairline); font-size: 15.5px; }
.expect-list li:first-child { border-top: 1px solid var(--hairline); }
.expect-list li::before { content: ""; flex: 0 0 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--bronze); transform: translateY(-3px); }
.book-copy .cred-strip { margin-top: 28px; }
.form-card .bezel-core { padding: 28px; overflow: visible; }
@media (min-width: 1024px) {
  .book-grid { display: grid; grid-template-columns: 5fr 1fr 6fr; gap: 0; align-items: start; }
  .book-copy { grid-column: 1; }
  .book-copy h1 { font-size: clamp(32px, 4.2vw, 54px); }
  .form-card { grid-column: 3; }
  .form-card .bezel-core { padding: 40px; }
}

.field { margin-top: 20px; }
/* 12.5px is right for the label; the COLOUR was the fault. Label and placeholder both
   sat on --text-muted while the placeholder rendered at 16px, so the ghost text outranked
   the field's own name (review-6 finding 13). */
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(110, 95, 88, 0.62); }
.field .req { color: var(--bronze-deep); font-size: 11px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  background: var(--white);
  border: 1px solid rgba(168, 117, 77, 0.28);
  border-radius: 12px;
  padding: 15px 16px;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  transition: border-color 240ms var(--ease), box-shadow 240ms var(--ease);
  appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(176, 21, 99, 0.14);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8754D' stroke-width='1.25'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field .field-error { display: none; font-size: 12.5px; color: var(--magenta-deep); margin-top: 6px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--magenta-deep); }
.field.has-error .field-error { display: block; }
.form-actions { margin-top: 28px; }
.form-actions .btn { width: 100%; }
.form-actions .fud { margin-top: 18px; }
.form-fallback { margin-top: 14px; font-size: 12px; color: var(--text-muted); text-align: left; }
.form-success { text-align: left; padding: 12px 0; }
.form-success .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-deep); display: inline-block; margin-bottom: 16px; }
.form-success .success-line { font-family: var(--font-serif); font-size: 24px; line-height: 1.3; }
.form-success p { margin-top: 12px; color: var(--text-muted); }
.btn[disabled] { opacity: 0.7; pointer-events: none; }
@media (min-width: 1024px) {
  .form-actions { display: flex; flex-direction: column; align-items: flex-end; }
  .form-actions .btn { width: auto; }
  .form-actions .fud { justify-content: flex-end; }
  .form-fallback { text-align: right; }
}

.book-band { margin-top: var(--section-pad); }
.book-band img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 768px) { .book-band img { aspect-ratio: 21 / 9; } }

.next-steps { margin-top: 40px; position: relative; padding-left: 24px; }
.next-steps::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--hairline); }
.next-step { position: relative; padding: 18px 0; }
.next-step::before { content: ""; position: absolute; left: -28px; top: 28px; width: 9px; height: 9px; border-radius: 50%; background: var(--bronze); }
.next-step .exp-num { font-size: 32px; opacity: 0.3; }
.next-step h3 { font-size: 21px; margin-top: 4px; }
.next-step p { margin-top: 8px; max-width: 52ch; color: var(--text-muted); }
@media (min-width: 1024px) {
  .next-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; padding-left: 0; }
  .next-steps::before { display: none; }
  .next-step::before { display: none; }
  .next-step { padding: 0 32px; border-left: 1px solid var(--hairline); }
  .next-step:first-child { border-left: none; padding-left: 0; }
}

.location-band { }
.location-grid { display: flex; flex-direction: column; gap: 32px; }
.location-grid .loc-city { font-family: var(--font-serif); font-size: 28px; color: var(--linen); }
.location-grid .loc-appt { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bronze-light); margin-top: 10px; }
.location-grid .loc-note { color: rgba(245, 237, 228, 0.78); margin-top: 12px; max-width: 48ch; }
@media (min-width: 1024px) { .location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; } }

/* =========================================================================
   Legal pages
   ========================================================================= */
.legal { max-width: calc(720px + 2 * var(--gutter)); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.legal h1 { font-size: 40px; }
.legal .updated { font-size: 12.5px; color: var(--text-muted); margin-top: 10px; }
.legal h2 { font-size: 26px; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--hairline); }
.legal h2:first-of-type { margin-top: 40px; }
.legal p, .legal li { font-size: 17px; line-height: 1.8; max-width: 68ch; margin-top: 16px; color: var(--text); }
.legal ul { padding-left: 20px; }
.legal ul li { list-style: disc; margin-top: 8px; }

/* =========================================================================
   Footer (spec 7)
   ========================================================================= */
.site-footer { background: var(--noir); color: var(--linen); padding: 64px 0 32px; }
.footer-grid { display: flex; flex-direction: column; gap: 0; }
.footer-col { padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-col:last-of-type { border-bottom: none; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { font-size: 14.5px; color: rgba(245, 237, 228, 0.72); text-decoration: none; line-height: 2; display: block; }
.footer-col a:hover { color: var(--linen); text-decoration: underline; text-decoration-color: var(--bronze-light); text-underline-offset: 4px; }
.footer-plate { width: 148px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(200, 154, 114, 0.22); }
.footer-plate img { width: 100%; display: block; mix-blend-mode: screen; }
.footer-blurb { margin-top: 18px; max-width: 34ch; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 320ms var(--ease), transform 320ms var(--ease);
}
.footer-social a:hover { border-color: var(--bronze-light); transform: translateY(-1px); }
.footer-social svg { width: 16px; height: 16px; stroke: rgba(245, 237, 228, 0.85); stroke-width: 1.25; fill: none; }
.footer-gotl {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-top: 40px;
  text-align: center;
}
.footer-device { text-align: center; margin-top: 18px; }
.footer-device .brand-device { font-size: 11px; letter-spacing: 0.34em; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 12.5px;
  color: rgba(245, 237, 228, 0.55);
}
/* The copyright sat flush left directly above centred legal links. Below 768 the footer
   resolves its left-aligned columns into one centred sign-off (review-6 finding 18). */
@media (max-width: 767px) { .footer-bottom { text-align: center; } }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--linen); }
.footer-bottom .legal-links { display: flex; gap: 20px; }
@media (min-width: 1024px) {
  .site-footer { padding: 88px 0 40px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .footer-col { padding: 0; border-bottom: none; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- Tablet tier, 768 to 1023 (review-6 finding 5) ----------
   Every structural rule on this site fired at 1024, so the tablet band was the phone
   layout stretched: the home page was TALLER at 768 than at 390, headlines stayed at
   their 44px phone cap in a 728px column, and the primary pills spanned the full width
   as banners, which is the one register spec section 0 rules out. This tier owns it. */
@media (min-width: 768px) and (max-width: 1023px) {
  .display { font-size: clamp(44px, 7.2vw, 58px); }
  .page-head h1 { font-size: clamp(40px, 6.2vw, 52px); max-width: 16ch; }
  .hero-copy, .page-head .lead { max-width: 620px; }
  .hero-cta-row { align-items: flex-start; }
  .hero-secondary { text-align: left; }
  .btn-block-mobile, .form-actions .btn, .bento-cta .btn { width: auto; }
  .bento-cta { justify-content: flex-end; }
  /* Media was the thing making the tablet page LONGER than the phone: every in-container
     image simply doubled in height. On a wide, short screen the answer is landscape, not
     bigger portraits, so the tablet gets its own crops and the page compacts. */
  .mbs-panel .img-frame { max-width: 460px; aspect-ratio: 4 / 3; }
  .mbs-panel p { max-width: 460px; }
  .hero-img-mobile img, .services-hero-img img { aspect-ratio: 21 / 9; }
  /* The founder portrait is deliberately NOT in the tablet re-crop list: the source is a
     1000x1241 portrait, and cover-cropping it to 16/10 showed only the middle 50 percent
     and sliced through her forehead (review-7 finding N2). It keeps its 4/5 crop, and the
     390 > 768 > 1440 height ladder still holds without it. */
  .bento .tile-media img, .treatment-row .img-frame, .exp-media.img-frame { aspect-ratio: 16 / 9; }
  .sanctuary-img img, .book-band img { aspect-ratio: 21 / 9; }
}

/* ---------- Touch targets (mobile ergonomics pass, review-6) ----------
   Every tappable element reaches ~44px on touch widths. Where real padding would move
   the design (standalone text links sitting on a measured baseline), the hit area is
   expanded with an invisible ::after instead, so the layout does not shift a pixel. */
@media (max-width: 1023px) {
  .footer-col a { padding: 8px 0; }
  .footer-social a { width: 44px; height: 44px; }
  .footer-bottom .legal-links { gap: 16px; }
  .footer-bottom .legal-links a { display: block; padding: 11px 6px; }
  .bento .tile-body .text-link { padding-bottom: 6px; }
}
@media (hover: none) {
  /* The hero secondary link is the last child of a flex column with a 14px gap, so an
     11px expansion is bounded by that gap and overlaps no other target. */
  .hero-cta-row .text-link { position: relative; }
  .hero-cta-row .text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -11px;
    bottom: -11px;
  }
  /* Standalone email link on the book page: real padding, inside its own generous gaps. */
  .location-grid .text-link { display: inline-block; padding: 7px 0; }
}

/* ---------- EHG credit (light variant, tuned per spec 7) ---------- */
.ehg-credit-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 8px 10px;
  background: var(--ehg-credit-bg, #0a0a0a);
  --ehg-credit-bg: #F5EDE4;
  --ehg-credit-fg: #2C2428;
  --ehg-credit-btn-bg: rgba(0, 0, 0, 0.04);
  --ehg-credit-btn-hover: rgba(0, 0, 0, 0.08);
  --ehg-credit-border: rgba(0, 0, 0, 0.10);
  --ehg-credit-border-hover: rgba(0, 0, 0, 0.20);
  --ehg-credit-accent: #B01563;
}
.ehg-credit-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ehg-credit-fg, #f5f5f5);
  background: var(--ehg-credit-btn-bg, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--ehg-credit-border, rgba(255, 255, 255, 0.12));
  text-decoration: none;
  transition: background 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.ehg-credit-btn:hover {
  background: var(--ehg-credit-btn-hover, rgba(255, 255, 255, 0.12));
  border-color: var(--ehg-credit-border-hover, rgba(255, 255, 255, 0.24));
  transform: translateY(-1px);
}
.ehg-credit-highlight { color: var(--ehg-credit-accent, #fbbf24); font-weight: 700; }

/* ---------- Reduced motion (spec 6) ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .bezel-hover, .footer-social a, .nav-pill { transition-duration: 120ms !important; }
  .btn-primary:hover, .footer-social a:hover { transform: none; }
  .nav-pill.is-stuck { transform: none; }
  .nav-overlay a.ov-link { transition: none; }
  /* S4 rail stays fully legible with the pin and scrub disabled. */
  .mbs-device-lg .word { color: var(--bronze) !important; opacity: 1 !important; }
  .mbs-progress span { height: 100% !important; }
}

/* Service sub-page links on the beauty list (added 2026-08-06) */
.beauty-list .b-name a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(168, 117, 77, 0.35); transition: color 0.2s ease, border-color 0.2s ease; }
.beauty-list .b-name a:hover { color: var(--magenta); border-color: var(--magenta); }
