/* ============================================================
   ReGlow Wellness — "The Glow"
   Candlelit quiet-luxury editorial system
   Fraunces (display) + Outfit (text)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --espresso: #16100a;
  --espresso-2: #1f1710;
  --espresso-3: #2a211d;
  --ink: #211912;
  --cream: #f7f2ed;
  --cream-2: #f1e9e0;
  --sand: #e6d8c6;
  --bronze: #c08a5c;
  --bronze-ink: #8a5a2f;
  --bronze-mid: #a96f3d;
  --amber: #e9b888;
  --blush: #dfc4bb;

  --text-dim-dark: rgba(247, 242, 237, 0.64);
  --text-dim-light: rgba(33, 25, 18, 0.66);
  --line-dark: rgba(247, 242, 237, 0.16);
  --line-light: rgba(33, 25, 18, 0.16);

  --font-display: "Fraunces", "Georgia", serif;
  --font-text: "Outfit", "Helvetica Neue", sans-serif;

  --size-hero: clamp(2.85rem, 9.2vw, 8.25rem);
  --size-h1: clamp(2.5rem, 7vw, 6rem);
  --size-h2: clamp(2rem, 5vw, 4.25rem);
  --size-h3: clamp(1.5rem, 3.2vw, 2.5rem);
  --size-body-lg: clamp(1.0625rem, 1.4vw, 1.3125rem);
  --size-body: clamp(0.9688rem, 1.1vw, 1.0625rem);
  --size-label: 0.9375rem;

  --space-section: clamp(5.5rem, 12vw, 11rem);
  --space-gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 6px;
  --header-h: 4.5rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* App-shell scrolling: the window NEVER scrolls — .scroll-shell is the
   scroller. iOS 26 Safari paints whatever document content scrolled past
   into the status-bar zone (and clips fixed/sticky there), so the only
   robust fix is a canvas that never moves: the zone permanently shows the
   html/body background, reading as an extension of the header. */
html { background-color: var(--espresso); }
html, body { height: 100%; overflow: hidden; }

.scroll-shell {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.scroll-shell.lenis-smooth { scroll-behavior: auto !important; }
.scroll-shell.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-text);
  font-size: var(--size-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  background: var(--espresso);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--bronze); color: var(--espresso); }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Film grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: -4%;
  width: 108%;
  height: 108%;
  will-change: transform;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- Utilities ---------- */
.container {
  width: min(100% - 2 * var(--space-gutter), 82rem);
  margin-inline: auto;
}
.container--wide { width: min(100% - 2 * var(--space-gutter), 96rem); }

.label {
  font-family: var(--font-text);
  font-size: var(--size-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
}
.section--cream .label, .section--cream2 .label, .on-light .label { color: var(--bronze-ink); }
.label--row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.label--row::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--bronze);
  flex: none;
}

.font-display { font-family: var(--font-display); }
em.glow-accent, .glow-accent {
  font-style: italic;
  font-weight: 340;
  color: var(--amber);
}
.on-light .glow-accent, .section--cream .glow-accent, .section--cream2 .glow-accent { color: var(--bronze-mid); }

/* ---------- Sections ---------- */
.section { padding-block: var(--space-section); position: relative; }
.section--cream {
  background: var(--cream);
  color: var(--ink);
}
.section--cream2 { background: var(--cream-2); color: var(--ink); }
.section--dark { background: var(--espresso); color: var(--cream); }
.section--dark2 { background: var(--espresso-2); color: var(--cream); }

.section-head { max-width: 52rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.section-head .label { margin-bottom: 1.5rem; }
.section-title {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 320;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.section-sub {
  margin-top: 1.75rem;
  font-size: var(--size-body-lg);
  font-weight: 300;
  max-width: 44rem;
  color: var(--text-dim-dark);
}
.section--cream .section-sub, .section--cream2 .section-sub { color: var(--text-dim-light); }

.hairline { border: 0; height: 1px; background: var(--line-dark); }
.section--cream .hairline, .section--cream2 .hairline { background: var(--line-light); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  font-family: var(--font-text);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bronze);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s var(--ease-out);
  z-index: 0;
}
.btn > * { position: relative; z-index: 1; }
.btn .btn-arrow { transition: transform 0.45s var(--ease-out); }
.btn:hover { color: var(--espresso); border-color: var(--bronze); }
.btn:hover::before { transform: scaleY(1); transform-origin: top; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--solid { background: var(--cream); color: var(--espresso); border-color: var(--cream); }
.btn--solid:hover { color: var(--espresso); border-color: var(--bronze); }
.btn--bronze { background: var(--bronze); color: var(--espresso); border-color: var(--bronze); }
.btn--bronze::before { background: var(--amber); }
.on-light .btn, .section--cream .btn, .section--cream2 .btn {
  border-color: var(--line-light);
  color: var(--ink);
}
.on-light .btn:hover, .section--cream .btn:hover, .section--cream2 .btn:hover { color: var(--espresso); border-color: var(--bronze); }
.on-light .btn--solid, .section--cream .btn--solid, .section--cream2 .btn--solid {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.on-light .btn--solid:hover, .section--cream .btn--solid:hover, .section--cream2 .btn--solid:hover { color: var(--espresso); }

.link-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.link-underline:hover::after {
  transform: scaleX(0);
  transform-origin: right;
  animation: underline-back 0.4s 0.4s var(--ease-out) forwards;
}
@keyframes underline-back { to { transform: scaleX(1); transform-origin: left; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.preloader__logo {
  width: min(58vw, 21rem);
  height: auto;
  opacity: 0;
  filter: blur(14px);
  transform: scale(0.94);
}
.preloader.is-done { display: none; }

/* ---------- Header ---------- */
.site-header {
  /* fixed escapes the .scroll-shell scroller (no transformed ancestors),
     so it stays pinned while only the shell's content moves */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  transition: transform 0.5s var(--ease-out), background-color 0.5s, backdrop-filter 0.5s;
}
.site-header.is-scrolled {
  background: linear-gradient(to bottom, rgba(22, 16, 10, 0.92), rgba(22, 16, 10, 0.72));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(247, 242, 237, 0.08);
}
.site-header.is-hidden { transform: translateY(-100%); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 0 var(--space-gutter);
}
.header-logo img { height: clamp(2rem, 4vw, 2.6rem); width: auto; }

.header-nav { display: none; }
.header-cta { display: none; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  padding: 0.4rem 0.5rem;
  font-size: var(--size-label);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-toggle__icon {
  position: relative;
  width: 26px;
  height: 10px;
}
.menu-toggle__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), top 0.4s var(--ease-out), width 0.4s var(--ease-out);
}
.menu-toggle__icon span:first-child { top: 0; }
.menu-toggle__icon span:last-child { top: 8px; width: 70%; }
.menu-toggle:hover .menu-toggle__icon span:last-child { width: 100%; }

@media (min-width: 64em) {
  :root { --header-h: 5rem; }
  .header-nav {
    display: flex;
    gap: 2.4rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-drop { position: relative; display: flex; align-items: center; }
  .nav-drop > a::after {
    content: "▾";
    font-size: 0.6em;
    margin-left: 0.45em;
    color: var(--bronze);
    display: inline-block;
    transition: transform 0.3s var(--ease-out);
  }
  .nav-drop:hover > a::after, .nav-drop:focus-within > a::after { transform: rotate(180deg); }
  .nav-drop__panel {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 17.5rem;
    padding: 0.7rem;
    border-radius: 10px;
    background: rgba(26, 19, 13, 0.92);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(247, 242, 237, 0.12);
    box-shadow: 0 18px 44px rgba(22, 16, 10, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  }
  .nav-drop__panel::before {
    /* hover bridge so the panel doesn't vanish crossing the gap */
    content: "";
    position: absolute;
    left: 0; right: 0; top: -1rem; height: 1rem;
  }
  .nav-drop:hover .nav-drop__panel,
  .nav-drop:focus-within .nav-drop__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .nav-drop__panel a {
    display: block;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--text-dim-dark);
    transition: background 0.25s, color 0.25s;
    white-space: nowrap;
  }
  .nav-drop__panel a:hover { background: rgba(247, 242, 237, 0.08); color: var(--cream); }
  .nav-drop__panel a.nav-drop__alt {
    margin-top: 0.4rem;
    border-top: 1px solid rgba(247, 242, 237, 0.1);
    border-radius: 0 0 6px 6px;
    padding-top: 0.8rem;
    color: var(--amber);
  }
  .header-nav a {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dim-dark);
    transition: color 0.3s;
  }
  .header-nav a:hover, .header-nav a[aria-current="page"] { color: var(--cream); }
  .header-cta { display: inline-flex; min-height: 2.75rem; padding: 0.65rem 1.5rem; }
  .menu-toggle { display: none; }
}

/* ---------- Mobile menu overlay ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--espresso-2);
  display: flex;
  flex-direction: column;
  padding: calc(1.1rem + env(safe-area-inset-top)) var(--space-gutter) calc(2.5rem + env(safe-area-inset-bottom));
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}
.menu-overlay__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-overlay__bar img { height: 2rem; width: auto; }
.menu-close {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 48px;
  font-size: var(--size-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.menu-close svg { width: 22px; height: 22px; }
.menu-overlay__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}
.menu-overlay__nav a {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8.5vw, 3.4rem);
  font-weight: 320;
  line-height: 1.32;
  letter-spacing: -0.01em;
  padding-block: 0.35rem;
  overflow: hidden;
}
.menu-overlay__nav a sup {
  font-family: var(--font-text);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--bronze);
}
.menu-overlay__nav a[aria-current="page"] { color: var(--amber); font-style: italic; }
.menu-acc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.menu-acc > a { flex: 1; }
.menu-acc__toggle {
  flex: none;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--bronze);
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s;
}
.menu-acc__toggle svg { width: 14px; height: 14px; }
.menu-acc.open .menu-acc__toggle {
  transform: rotate(180deg);
  background: var(--bronze);
  color: var(--espresso);
  border-color: var(--bronze);
}
.menu-overlay__sub {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0 0 2.4rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.35s, padding 0.45s var(--ease-out);
}
.menu-overlay__sub.open {
  max-height: 18rem;
  opacity: 1;
  padding: 0.2rem 0 0.5rem 2.4rem;
}
.menu-overlay__nav .menu-overlay__sub a {
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: var(--text-dim-dark);
  padding-block: 0.15rem;
}
.menu-overlay__nav .menu-overlay__sub a:hover,
.menu-overlay__nav .menu-overlay__sub a[aria-current="page"] {
  color: var(--amber);
  font-style: normal;
}
.menu-overlay__foot {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9375rem;
  color: var(--text-dim-dark);
}
.menu-overlay__foot a:hover { color: var(--cream); }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--espresso);
}
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__glow canvas { width: 100%; height: 100%; }
/* CSS fallback if WebGL unavailable */
.hero__glow--fallback {
  background:
    radial-gradient(58vmax 58vmax at 72% 28%, rgba(233, 184, 136, 0.32), transparent 62%),
    radial-gradient(48vmax 48vmax at 22% 76%, rgba(223, 196, 187, 0.16), transparent 60%),
    #221a11;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.94;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 80%, transparent 100%);
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 32%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(22, 16, 10, 0.72) 4%, rgba(22, 16, 10, 0.38) 36%, rgba(22, 16, 10, 0) 62%),
    linear-gradient(to bottom, rgba(22, 16, 10, 0.3) 0%, rgba(22, 16, 10, 0) 24%, rgba(22, 16, 10, 0.12) 64%, var(--espresso) 100%);
  pointer-events: none;
}
@media (max-width: 47.99em) {
  .hero::after {
    background:
      linear-gradient(to top, var(--espresso) 4%, rgba(22, 16, 10, 0.66) 38%, rgba(22, 16, 10, 0.22) 66%, rgba(22, 16, 10, 0.32) 100%);
  }
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(2.4rem, 6vh, 5rem);
}
.hero__topline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.4rem, 3vh, 2.4rem);
}
.hero__pin {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid rgba(247, 242, 237, 0.22);
  border-radius: 999px;
  background: rgba(22, 16, 10, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__pin svg { width: 12px; height: 14px; }
.hero__pin svg { color: var(--amber); flex: none; }
.hero__sub--short { display: none; }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--size-hero);
  font-weight: 310;
  line-height: 1.0;
  letter-spacing: -0.022em;
  max-width: 11em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero__title .line > span { display: inline-block; will-change: transform; }
.hero__row {
  margin-top: clamp(1.9rem, 4.5vh, 3.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}
.hero__sub {
  font-size: var(--size-body-lg);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim-dark);
  max-width: 30.5em;
}
.hero__sub strong { color: var(--cream); font-weight: 400; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero__insurance {
  margin-top: clamp(2.2rem, 5vh, 3.6rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2.2rem;
}
.hero__insurance .label { color: var(--text-dim-dark); letter-spacing: 0.2em; }
.hero__badges { display: flex; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.hero__badges img { height: clamp(1.7rem, 3.4vw, 2.3rem); width: auto; opacity: 0.92; }

@media (min-width: 64em) {
  .hero__row { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
/* Mobile hero: simplified, decluttered fold */
@media (max-width: 47.99em) {
  .hero__sub--full { display: none; }
  .hero__sub--short { display: block; max-width: 24em; }
  .hero__row { margin-top: 1.5rem; gap: 1.5rem; }
  .hero__content { padding-bottom: 2rem; }
  .hero__ctas { gap: 0.5rem 1.5rem; }
  .hero .btn--quiet {
    border: 0;
    background: none;
    padding: 0.5rem 0.2rem;
    min-height: 44px;
    border-radius: 0;
    text-decoration: underline;
    text-underline-offset: 7px;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--bronze);
  }
  .hero .btn--quiet::before { display: none; }
  .hero__insurance { margin-top: 1.8rem; padding-top: 1.3rem; gap: 0.9rem 1.6rem; }
  .hero__badges { gap: 1.5rem; }
  .hero__badges img { height: 1.55rem; }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.3rem, 2.6vw, 2rem);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--espresso);
}
.section--cream .marquee, .marquee--light {
  border-color: var(--line-light);
  background: var(--cream);
}
.marquee__track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  will-change: transform;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 320;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--cream);
}
.marquee--light .marquee__item { color: var(--ink); }
.marquee__item .star { color: var(--bronze); font-size: 0.66em; }
.marquee__item em { font-style: italic; color: var(--amber); }
.marquee--light .marquee__item em { color: var(--bronze); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Welcome / intro split ---------- */
.intro-grid {
  display: grid;
  gap: clamp(2.6rem, 6vw, 5rem);
}
.intro-copy .label--row { margin-bottom: 1.6rem; }
.intro-copy h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 320;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 1.9rem;
}
.intro-copy p {
  color: var(--text-dim-light);
  font-size: var(--size-body-lg);
  max-width: 36em;
}
.intro-copy p + p { margin-top: 1.2rem; }
.intro-figure {
  position: relative;
}
.intro-figure figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}
.intro-figure img { width: 100%; height: 100%; object-fit: cover; }
.intro-figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  color: var(--text-dim-light);
}
.intro-quicklinks {
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
  border-top: 1px solid var(--line-light);
}
.quicklink {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line-light);
  transition: padding-left 0.4s var(--ease-out);
}
.quicklink:hover { padding-left: 0.8rem; }
.quicklink__num {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--bronze-ink);
}
.quicklink__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 350;
  line-height: 1.2;
}
.quicklink__body p {
  font-size: 0.9688rem;
  color: var(--text-dim-light);
  max-width: 34em;
  margin-top: 0.3rem;
}
.quicklink__arrow {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease-out);
}
.quicklink:hover .quicklink__arrow {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-45deg);
}

@media (min-width: 64em) {
  .intro-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
  .intro-figure { position: sticky; top: 7rem; }
}

/* ---------- Services index (home) ---------- */
.services-index { position: relative; }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "num title" "num meta";
  align-items: baseline;
  gap: 0.2rem 1.4rem;
  padding-block: clamp(1.6rem, 3.4vw, 2.6rem);
  border-bottom: 1px solid var(--line-dark);
  transition: opacity 0.35s;
}
.service-row:first-child { border-top: 1px solid var(--line-dark); }
.services-index:hover .service-row:not(:hover) { opacity: 0.38; }
.service-row__num {
  grid-area: num;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--bronze);
  transform: translateY(-0.5em);
}
.service-row__title {
  grid-area: title;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 3.4rem);
  font-weight: 320;
  line-height: 1.08;
  letter-spacing: -0.015em;
  transition: color 0.35s, font-style 0.2s;
}
.service-row:hover .service-row__title { color: var(--amber); }
.service-row__meta {
  grid-area: meta;
  font-size: 0.9688rem;
  letter-spacing: 0.03em;
  color: var(--text-dim-dark);
}
.service-row__arrow {
  display: none;
}
@media (min-width: 64em) and (hover: hover) {
  .service-row { grid-template-columns: auto 1fr auto; grid-template-areas: "num title arrow" "num meta arrow"; }
  .service-row__arrow {
    grid-area: arrow;
    display: grid;
    place-items: center;
    align-self: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid var(--line-dark);
    border-radius: 50%;
    transition: background 0.35s, color 0.35s, transform 0.4s var(--ease-out);
  }
  .service-row:hover .service-row__arrow {
    background: var(--bronze);
    border-color: var(--bronze);
    color: var(--espresso);
    transform: rotate(-45deg);
  }
}

/* ---------- Why / values ---------- */
.why-grid { display: grid; gap: clamp(3rem, 7vw, 6rem); }
.why-sticky .label--row { margin-bottom: 1.6rem; }
.why-sticky h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 320;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.why-sticky p {
  margin-top: 1.7rem;
  font-size: var(--size-body-lg);
  color: var(--text-dim-light);
  max-width: 30em;
}
.why-sticky figure {
  margin-top: 2.4rem;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}
.why-sticky img { width: 100%; height: 100%; object-fit: cover; }
.value-card {
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.38);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.value-card + .value-card { margin-top: 1.2rem; }
.value-card__num {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--bronze-ink);
  display: block;
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 340;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}
.value-card p { color: var(--text-dim-light); max-width: 34em; }
@media (min-width: 64em) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-sticky { position: sticky; top: 7rem; align-self: start; }
}

/* ---------- Coverage band ---------- */
.coverage {
  position: relative;
  overflow: hidden;
}
.coverage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52vmax 52vmax at 84% 12%, rgba(233, 184, 136, 0.16), transparent 60%),
    radial-gradient(40vmax 40vmax at 8% 92%, rgba(223, 196, 187, 0.08), transparent 55%);
  pointer-events: none;
}
.coverage .container { position: relative; }
.coverage__head { max-width: 56rem; }
.coverage__title {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 315;
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-top: 1.5rem;
}
.coverage__copy {
  margin-top: 1.7rem;
  font-size: var(--size-body-lg);
  color: var(--text-dim-dark);
  max-width: 42em;
}
.coverage__badges {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 3rem;
}
.coverage__badges img { height: clamp(2rem, 4.6vw, 2.9rem); width: auto; opacity: 0.94; }
.coverage__points {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.coverage__point {
  background: var(--espresso-2);
  padding: 1.7rem 1.6rem;
}
.coverage__point h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 360;
  margin-bottom: 0.55rem;
}
.coverage__point p { font-size: 0.9375rem; color: var(--text-dim-dark); }
@media (min-width: 48em) {
  .coverage__points { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Visit ---------- */
.visit-grid { display: grid; gap: clamp(2.6rem, 6vw, 5rem); }
.visit-figure { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 3; }
.visit-figure img { width: 100%; height: 100%; object-fit: cover; }
.visit-info .label--row { margin-bottom: 1.6rem; }
.visit-info h2 {
  font-family: var(--font-display);
  font-size: var(--size-h2);
  font-weight: 320;
  line-height: 1.05;
  margin-bottom: 2.2rem;
}
.info-list { border-top: 1px solid var(--line-light); }
.info-list > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
}
@media (min-width: 36em) {
  .info-list > div { grid-template-columns: 7.2rem 1fr; gap: 1rem; }
}
.info-list dt {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-ink);
}
.info-list dd { font-size: 1.0625rem; font-weight: 300; }
.info-list dd a:hover { color: var(--bronze); }
.info-list .hours-line { display: flex; justify-content: space-between; gap: 1rem; max-width: 21rem; }
.info-list .hours-line + .hours-line { margin-top: 0.35rem; }
.info-list .hours-line span:last-child { color: var(--text-dim-light); }
.visit-info .btn { margin-top: 2.2rem; }
@media (min-width: 64em) {
  .visit-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side, rgba(22, 16, 10, 0.18), rgba(22, 16, 10, 0.86));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band .label { color: var(--amber); }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  font-weight: 315;
  line-height: 1.03;
  letter-spacing: -0.018em;
  max-width: 13em;
  margin: 1.6rem auto 0;
}
.cta-band p {
  margin: 1.6rem auto 0;
  max-width: 36em;
  color: var(--text-dim-dark);
  font-size: var(--size-body-lg);
}
.cta-band__actions {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.cta-band__phone {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 340;
  color: var(--cream);
}
.cta-band__phone:hover { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso);
  color: var(--cream);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(3.6rem, 7vw, 6rem);
  overflow: hidden;
}
.footer-top {
  display: grid;
  gap: 2.6rem;
  padding-bottom: clamp(2.6rem, 5vw, 4rem);
}
.footer-brand p {
  color: var(--text-dim-dark);
  max-width: 24em;
  margin-top: 1.2rem;
  font-size: 0.9375rem;
}
.footer-brand img { height: 2.4rem; width: auto; }
.footer-col h4 {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a {
  color: var(--text-dim-dark);
  font-size: 0.9688rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }
.footer-col address { font-style: normal; color: var(--text-dim-dark); font-size: 0.9688rem; line-height: 1.8; }
.footer-col address a:hover { color: var(--cream); }
.footer-wordmark {
  display: block;
  width: min(100%, 64rem);
  height: auto;
  margin: 0 auto;
  padding-inline: var(--space-gutter);
  opacity: 0.97;
}
@media (min-width: 64em) {
  .footer-wordmark {
    width: min(42%, 36rem);
    margin-top: 1rem;
    opacity: 0.9;
  }
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding-block: 1.6rem;
  margin-top: clamp(2.2rem, 4vw, 3.4rem);
  border-top: 1px solid var(--line-dark);
  font-size: 0.9375rem;
  color: var(--text-dim-dark);
}
.footer-bottom nav { display: flex; gap: 1.6rem; }
.footer-bottom a:hover { color: var(--cream); }
@media (min-width: 48em) {
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding-top: clamp(8.5rem, 22vh, 13rem);
  padding-bottom: clamp(3.2rem, 8vh, 6rem);
  background: var(--espresso);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50vmax 50vmax at 80% 0%, rgba(233, 184, 136, 0.15), transparent 58%),
    radial-gradient(38vmax 38vmax at 6% 100%, rgba(223, 196, 187, 0.07), transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .label--row { margin-bottom: 1.7rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--size-h1);
  font-weight: 315;
  line-height: 1.02;
  letter-spacing: -0.018em;
  max-width: 12em;
}
.page-hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.page-hero h1 .line > span { display: inline-block; }
.page-hero__sub {
  margin-top: 1.9rem;
  font-size: var(--size-body-lg);
  color: var(--text-dim-dark);
  max-width: 38em;
}

/* ---------- Services page ---------- */
.treatment {
  display: grid;
  gap: 2rem;
  padding-block: clamp(3.2rem, 7vw, 5.5rem);
  border-top: 1px solid var(--line-light);
}
.treatment:first-of-type { border-top: 0; }
.treatment__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
  max-height: 34rem;
}
.treatment__media img { width: 100%; height: 100%; object-fit: cover; }
.treatment__num {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-ink);
  display: block;
  margin-bottom: 1.2rem;
}
.treatment__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 325;
  line-height: 1.06;
  letter-spacing: -0.012em;
}
.treatment__tag {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 340;
  color: var(--bronze-ink);
}
.treatment__body > p {
  margin-top: 1.4rem;
  color: var(--text-dim-light);
  max-width: 38em;
  font-size: var(--size-body-lg);
}
.treatment__coverage {
  margin-top: 1.8rem;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text-dim-light);
  background: rgba(255, 255, 255, 0.35);
}
.treatment__coverage svg { flex: none; margin-top: 0.15rem; color: var(--bronze); }
.treatment__cta { margin-top: 1.8rem; }
@media (min-width: 64em) {
  .treatment { grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 6vw, 5.5rem); align-items: center; }
  .treatment:nth-of-type(even) .treatment__media { order: 2; }
}

/* ---------- About page ---------- */
.about-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: -0.005em;
  max-width: 30em;
}
.about-statement p + p { margin-top: 1.6em; }
.about-statement .small {
  font-family: var(--font-text);
  font-size: var(--size-body-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-dim-light);
  max-width: 40em;
}
.values-grid {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.values-grid .value-cell {
  background: var(--cream);
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  transition: background 0.4s;
}
.values-grid .value-cell:hover { background: var(--cream-2); }
.value-cell__num {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--bronze-ink);
  margin-bottom: 2.6rem;
}
.value-cell h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 335;
  margin-bottom: 0.9rem;
  line-height: 1.1;
}
.value-cell p { color: var(--text-dim-light); }
@media (min-width: 48em) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: clamp(2.8rem, 6vw, 4.5rem); }
.form-card h2 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 330;
  margin-bottom: 0.6rem;
}
.form-card > p { color: var(--text-dim-light); margin-bottom: 2.2rem; max-width: 36em; }
.field { position: relative; margin-bottom: 1.7rem; }
.field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze-ink);
  margin-bottom: 0.55rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  padding: 0.65rem 0 0.8rem;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  font-weight: 300;
  color: inherit;
  border-radius: 0;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.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='%23c08a5c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.6rem;
}
.field textarea { min-height: 7.5rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(33, 25, 18, 0.34); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--bronze);
}
.field--row { display: grid; gap: 1.7rem 2rem; margin-bottom: 1.7rem; }
.field--row .field { margin-bottom: 0; }
@media (min-width: 48em) { .field--row { grid-template-columns: 1fr 1fr; } }

.consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin: 1.9rem 0;
}
.consent input {
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2rem;
  accent-color: var(--bronze);
}
.consent label {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dim-light);
}
.consent label a { text-decoration: underline; text-underline-offset: 2px; }
.form-success {
  display: none;
  padding: 2.4rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  text-align: center;
}
.form-success.is-visible { display: block; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--size-h3);
  font-weight: 330;
  margin-bottom: 0.7rem;
}
.form-success p { color: var(--text-dim-light); }
form.is-hidden { display: none; }

.contact-cards { display: grid; gap: 1rem; align-content: start; }
.contact-card {
  padding: 1.6rem 1.7rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
}
.contact-card h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-ink);
  margin-bottom: 0.6rem;
}
.contact-card p, .contact-card a { font-size: 1.0625rem; font-weight: 300; }
.contact-card a:hover { color: var(--bronze); }
.contact-card .sub { display: block; margin-top: 0.4rem; font-size: 0.9375rem; color: var(--text-dim-light); }
.contact-card--dark {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.contact-card--dark h3 { color: var(--amber); }
.contact-card--dark .hours-line {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding-block: 0.55rem;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.9688rem;
}
.contact-card--dark .hours-line:last-child { border-bottom: 0; }
.contact-card--dark .hours-line span:last-child { color: var(--text-dim-dark); }
@media (min-width: 64em) {
  .form-grid { grid-template-columns: 1.25fr 0.75fr; }
}

/* ---------- Careers ---------- */
.job-card {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}
.job-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line-light);
}
.job-card__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 330;
  line-height: 1.1;
}
.job-card__tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.job-tag {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: var(--text-dim-light);
}
.job-card__body { padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; gap: 1.9rem; }
.job-card__body h3 {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-ink);
  margin-bottom: 0.7rem;
}
.job-card__body p { color: var(--text-dim-light); max-width: 46em; }
.job-card__body ul { display: grid; gap: 0.55rem; }
.job-card__body li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-dim-light);
}
.job-card__body li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.7em;
  color: var(--bronze);
}

/* ---------- Legal ---------- */
.legal-body { max-width: 46rem; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 350;
  margin: 2.6rem 0 0.8rem;
  line-height: 1.2;
}
.legal-body h3 { font-size: 1.05rem; font-weight: 500; margin: 1.8rem 0 0.5rem; }
.legal-body p, .legal-body li { color: var(--text-dim-light); margin-bottom: 0.9rem; font-size: 0.9688rem; }
.legal-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-body a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Liquid-glass enhancements (html.lg = iOS 26+ Safari) ---------- */
html.lg .site-header.is-scrolled {
  /* gradient top edge tone-matches the espresso status zone above it,
     so status bar + header read as one continuous surface */
  background: linear-gradient(to bottom, rgba(22, 16, 10, 0.95), rgba(22, 16, 10, 0.62));
  -webkit-backdrop-filter: blur(16px) saturate(170%);
  backdrop-filter: blur(16px) saturate(170%);
  border-bottom-color: rgba(247, 242, 237, 0.14);
  box-shadow: inset 0 1px 0 rgba(247, 242, 237, 0.08);
}
html.lg .menu-overlay {
  background: rgba(26, 19, 13, 0.68);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}
html.lg .hero__pin {
  background: rgba(22, 16, 10, 0.38);
  -webkit-backdrop-filter: blur(12px) saturate(170%);
  backdrop-filter: blur(12px) saturate(170%);
  border-color: rgba(247, 242, 237, 0.28);
  box-shadow: inset 0 1px 0 rgba(247, 242, 237, 0.18);
}

/* ---------- FAQ accordion + service detail helpers ---------- */
.faq-list { max-width: 46rem; }
details.faq {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff9f2;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
details.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.3rem;
  font-weight: 500;
  font-size: 1.0313rem;
  color: var(--ink);
  position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--bronze-ink);
  transition: transform 0.3s var(--ease-out);
}
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details.faq > p {
  padding: 0 1.3rem 1.2rem;
  color: var(--text-dim-light);
  line-height: 1.7;
  max-width: 42em;
}
.helps-list { display: grid; gap: 0.55rem; max-width: 36em; }
.helps-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-dim-light);
}
.helps-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 0.72em;
  color: var(--bronze-ink);
}
.section--dark .quicklink { border-color: var(--line-dark); }
.section--dark .quicklink__num { color: var(--bronze); }
.section--dark .quicklink__body p { color: var(--text-dim-dark); }
.section--dark .quicklink__arrow { border-color: var(--line-dark); }
.section--dark .quicklink:hover .quicklink__arrow { background: var(--bronze); color: var(--espresso); }
.section--dark .intro-quicklinks { border-top: 1px solid var(--line-dark); margin-top: 0; }
.section--dark .quicklink { border-bottom-color: var(--line-dark); }

/* ---------- Reveal defaults (GSAP enhances) ---------- */
[data-reveal] { will-change: transform, opacity; }
html.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .marquee__track { animation: none; transform: none; width: auto; flex-wrap: wrap; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
