@font-face {
  font-family: "Luma Fraunces";
  src: url("./fonts/fraunces-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
}

@font-face {
  font-family: "Luma Manrope";
  src: url("./fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --ivory: #fbf6ee;
  --paper: #fffaf2;
  --blush: #e8c4b8;
  --clay: #c58474;
  --sage: #b5c4a8;
  --moss: #6e8a6e;
  --cocoa: #3d2f25;
  --ink: #3d2f25;
  --line: rgba(33, 29, 26, 0.18);
  --serif: "Luma Fraunces", Georgia, serif;
  --sans: "Luma Manrope", "Helvetica Neue", sans-serif;
  --page: clamp(1.25rem, 4.4vw, 5.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(232,196,184,.42), transparent 33rem),
    radial-gradient(circle at 92% 16%, rgba(181,196,168,.34), transparent 38rem),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 5.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--page);
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.26);
  backdrop-filter: none;
  transition: color .45s var(--ease), background .45s var(--ease), min-height .45s var(--ease), border-color .45s var(--ease);
}
.site-header.is-scrolled {
  min-height: 4.6rem;
  color: var(--ink);
  background: rgba(246,240,231,.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: inline-flex; align-items: center; gap: .72rem; width: fit-content; font-size: 1rem; font-weight: 650; letter-spacing: -.02em; }
.brand-orbit { position: relative; width: 1.35rem; height: 1.35rem; border: 1px solid currentColor; border-radius: 50%; transform: rotate(-27deg); }
.brand-orbit::after { content: ""; position: absolute; inset: 43% -22%; border-top: 1px solid currentColor; }
.brand-orbit i { position: absolute; width: .28rem; height: .28rem; top: -.09rem; left: 45%; background: currentColor; border-radius: 50%; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.8vw, 2.8rem); font-size: .76rem; font-weight: 600; letter-spacing: .055em; text-transform: uppercase; }
.desktop-nav a, .nav-book { position: relative; min-height: 2.75rem; display: inline-flex; align-items: center; }
.desktop-nav a::after, .nav-book::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .45rem; border-top: 1px solid currentColor; transition: right .35s var(--ease); }
.desktop-nav a:hover::after, .nav-book:hover::after { right: 0; }
.nav-book { justify-self: end; font-size: .76rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--cocoa);
}
.hero-media, .hero-veil, .hero-atmosphere { position: absolute; inset: 0; }
.hero-media { z-index: 0; overflow: hidden; }
.hero-media img { object-position: 57% center; transform: none; }
.hero-veil { z-index: 1; background: linear-gradient(90deg, rgba(31,24,20,.74) 0%, rgba(31,24,20,.31) 50%, rgba(31,24,20,.05) 76%), linear-gradient(0deg, rgba(25,20,18,.42), transparent 48%); }
.hero-atmosphere { z-index: 1; pointer-events: none; overflow: hidden; mix-blend-mode: screen; opacity: .38; }
.hero-atmosphere span { position: absolute; border: 0; border-radius: 48% 52% 63% 37% / 56% 39% 61% 44%; background: radial-gradient(circle at 35% 35%, rgba(255,244,229,.52), rgba(226,173,153,.08) 66%, transparent 72%); box-shadow: none; }
.hero-atmosphere span:first-child { width: 32rem; height: 32rem; right: -10rem; top: 12%; animation: breathe 13s ease-in-out infinite alternate; }
.hero-atmosphere span:last-child { width: 18rem; height: 18rem; left: 40%; bottom: -8rem; animation: breathe 16s 1s ease-in-out infinite alternate-reverse; }
@keyframes breathe { to { transform: translate3d(3rem,-2rem,0) rotate(14deg) scale(1.08); } }
.hero-copy { position: relative; z-index: 2; width: min(48rem, 72vw); padding: 12rem var(--page) clamp(7.5rem, 14vh, 10rem); }
.eyebrow { margin: 0 0 1.45rem; font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { margin: 0 .4rem; opacity: .58; }
.eyebrow-light { color: rgba(255,255,255,.66); }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 370; letter-spacing: -.045em; line-height: .98; }
h1 { margin: 0; font-size: clamp(3.65rem, 7.4vw, 8.4rem); }
h1 em, h2 em { color: var(--clay); font-weight: 340; }
.hero h1 em { color: var(--blush); }
.hero-lede { max-width: 35rem; margin: 2.1rem 0 0; font-size: clamp(1rem, 1.35vw, 1.25rem); line-height: 1.55; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.3rem; }
.button { min-height: 3.45rem; display: inline-flex; align-items: center; justify-content: center; gap: 1.35rem; padding: .9rem 1.3rem; border: 1px solid transparent; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; cursor: pointer; transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease); }
.button span { font-size: 1rem; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--paper); background: var(--cocoa); border-color: var(--cocoa); }
.hero .button-dark { color: var(--ink); background: var(--paper); border-color: var(--paper); box-shadow: none; }
.button-light { color: var(--cocoa); border-color: rgba(61,47,37,.38); background: rgba(255,250,242,.54); }
.hero .button-light { color: #fff; border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.05); }
.hero-proof { position: absolute; z-index: 2; right: var(--page); bottom: clamp(7.5rem, 14vh, 10rem); width: 15rem; display: grid; gap: .2rem; padding-left: 1.25rem; color: #fff; border-left: 1px solid rgba(255,255,255,.38); }
.proof-stars { letter-spacing: .15em; font-size: .72rem; }
.hero-proof strong { font-size: .82rem; }
.hero-proof span { font-size: .72rem; color: rgba(255,255,255,.68); }
.concept-line { position: absolute; z-index: 2; left: var(--page); bottom: 1.4rem; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.proof-story { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2rem,5vw,6rem); min-height: 55rem; padding: clamp(6rem,10vw,10rem) var(--page); background: radial-gradient(circle at 12% 40%, rgba(232,196,184,.42), transparent 28rem), var(--paper); }
.media-frame { position: relative; overflow: hidden; background: var(--sage); }
.proof-portrait { min-height: 42rem; align-self: center; border-radius: 46% 54% 48% 52% / 38% 44% 56% 62%; border: 1px solid rgba(255,255,255,.85); box-shadow: -14px -14px 32px rgba(255,255,255,.8), 18px 24px 48px rgba(157,105,84,.2); }
.proof-portrait img { object-position: center 32%; }
.proof-quote { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 6rem) 0; background: transparent; }
.proof-quote blockquote { max-width: 49rem; margin: 0; font-size: clamp(2.7rem, 4.6vw, 5.4rem); color: var(--cocoa); }
.quote-meta { display: flex; flex-direction: column; margin: 2.5rem 0 0; font-size: .84rem; }
.quote-meta span { color: rgba(33,29,26,.58); }
.proof-numbers { display: grid; grid-template-columns: repeat(3,1fr); margin: clamp(3rem, 7vw, 7rem) 0 2rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-numbers div { padding: 1rem 0 1.1rem; }
.proof-numbers div + div { border-left: 1px solid var(--line); padding-left: 1rem; }
.proof-numbers dt { font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(33,29,26,.56); }
.proof-numbers dd { margin: .25rem 0 0; font-family: var(--serif); font-size: 1.6rem; line-height: 1; }
.text-link { width: fit-content; min-height: 2.75rem; display: inline-flex; align-items: center; gap: 1rem; border-bottom: 1px solid var(--ink); font-size: .75rem; font-weight: 700; letter-spacing: .045em; text-transform: uppercase; }

.treatments { padding: clamp(6rem, 11vw, 11rem) var(--page); background: radial-gradient(circle at 86% 12%, rgba(181,196,168,.35), transparent 31rem), radial-gradient(circle at 15% 88%, rgba(232,196,184,.35), transparent 35rem), var(--ivory); }
.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 4rem; margin-bottom: clamp(3.5rem, 7vw, 7rem); }
.section-heading h2, .founder h2, .consultation h2, .matcher h2 { margin: 0; font-size: clamp(3.1rem, 6vw, 7.2rem); }
.section-heading h2 em, .founder h2 em { color: var(--clay); }
.section-heading > p { max-width: 25rem; margin: 0 0 .65rem auto; color: rgba(33,29,26,.65); }
.treatment-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.2rem, 2.3vw, 2.5rem); }
.treatment-card { position: relative; overflow: hidden; min-height: clamp(31rem, 53vw, 49rem); color: #fff; background: var(--cocoa); border: 1px solid rgba(255,255,255,.72); border-radius: clamp(2rem,4vw,4rem); box-shadow: -10px -10px 28px rgba(255,255,255,.65), 16px 22px 40px rgba(143,93,73,.18); isolation: isolate; }
.treatment-card::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, rgba(25,20,17,.04) 35%, rgba(25,20,17,.76) 100%); }
.treatment-card picture { position: absolute; inset: 0; }
.treatment-card img { transition: transform 1.1s var(--ease), filter .8s var(--ease); }
.treatment-card:hover img { transform: scale(1.035); filter: saturate(1.05); }
.treatment-card.card-wide { min-height: clamp(27rem, 42vw, 40rem); }
.treatment-card.card-tall { min-height: clamp(35rem, 57vw, 54rem); }
.treatment-card:nth-child(1) { border-radius: 4rem 13rem 5rem 8rem / 5rem 10rem 6rem 9rem; }
.treatment-card:nth-child(2) { border-radius: 12rem 4rem 8rem 5rem / 9rem 4rem 9rem 6rem; }
.treatment-card:nth-child(2) { transform: translateY(4rem); }
.treatment-card:nth-child(3) { margin-top: 0; border-radius: 5rem 9rem 12rem 4rem / 7rem 10rem 8rem 4rem; transform: translateY(-2rem); }
.treatment-card:nth-child(4) { border-radius: 11rem 5rem 4rem 10rem / 8rem 6rem 4rem 8rem; transform: translateY(3rem); }
.card-copy { position: absolute; z-index: 2; left: clamp(3.5rem,7vw,7rem); right: clamp(7.5rem,10vw,10rem); bottom: clamp(2.5rem,5vw,5rem); }
.card-copy small { display: block; margin-bottom: .5rem; font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.card-copy h3 { margin: 0; font-size: clamp(2.2rem, 4vw, 4.7rem); }
.card-copy p { margin: .7rem 0 0; font-size: .77rem; color: rgba(255,255,255,.75); }
.card-arrow { position: absolute; z-index: 2; right: clamp(2.75rem,5vw,5.5rem); bottom: clamp(2.25rem,4vw,4.5rem); width: 3rem; height: 3rem; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; transition: transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease); }
.treatment-card:hover .card-arrow { transform: rotate(45deg); color: var(--ink); background: var(--paper); }

.matcher { display: grid; grid-template-columns: 1.03fr .97fr; gap: clamp(1rem,2vw,2rem); min-height: 58rem; padding: clamp(1rem,2vw,2rem); color: var(--cocoa); background: radial-gradient(circle at 78% 18%, rgba(245,221,211,.9), transparent 34rem), linear-gradient(135deg,#f8eee4,#efe1d5); }
.matcher-visual { position: relative; min-height: 58rem; overflow: hidden; background: #8f867d; border-radius: 11rem 4rem 9rem 4rem / 8rem 4rem 11rem 5rem; box-shadow: 14px 18px 38px rgba(135,83,65,.2); isolation: isolate; }
.matcher-images, .matcher-images picture { position: absolute; inset: 0; }
.matcher-images picture { visibility: hidden; opacity: 0; transform: scale(1.04); }
.matcher-images picture.is-active { visibility: visible; opacity: 1; transform: scale(1); }
.matcher-images::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(25,20,18,.08), rgba(25,20,18,.42)); }
.matcher-visual[data-scene="definition"] img, .matcher-visual[data-scene="glow"] img { object-position: center 34%; }
.matcher-panel { min-width: 0; display: flex; flex-direction: column; padding: clamp(4.5rem, 7vw, 8rem) clamp(2rem, 6vw, 6.5rem) 2rem; background: rgba(255,250,242,.64); border: 1px solid rgba(255,255,255,.8); border-radius: 4rem 11rem 4rem 9rem / 4rem 9rem 5rem 11rem; }
.matcher-heading h2 { font-size: clamp(3.1rem, 5vw, 6rem); }
.matcher-heading h2 em, .consultation h2 em { color: var(--clay); }
.matcher .eyebrow-light { color: rgba(61,47,37,.56); }
.matcher-heading > p:last-child { max-width: 38rem; margin: 1.5rem 0 0; color: rgba(61,47,37,.64); }
.matcher-progress { margin: clamp(3rem, 6vw, 6rem) 0 2rem; }
.progress-meta { display: flex; justify-content: space-between; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(61,47,37,.58); }
.progress-track { height: 1px; margin-top: .75rem; background: rgba(61,47,37,.18); }
.progress-track span { display: block; width: 25%; height: 1px; background: var(--clay); transition: width .55s var(--ease); }
.matcher-step { min-height: 26rem; }
.step-kicker { margin: 0 0 1rem; font-family: var(--serif); font-size: clamp(1.55rem, 2.2vw, 2.5rem); line-height: 1.2; }
.option-list { display: grid; }
.option-list button { min-height: 4.9rem; width: 100%; display: grid; grid-template-columns: 2rem minmax(0,1fr) auto; align-items: center; gap: 1rem; padding: .9rem 0; text-align: left; border: 0; border-top: 1px solid rgba(61,47,37,.2); background: transparent; cursor: pointer; transition: padding .35s var(--ease), color .35s var(--ease); }
.option-list button:last-child { border-bottom: 1px solid rgba(61,47,37,.2); }
.option-list button:hover { padding-left: .65rem; color: var(--clay); }
.option-list button > span { width: 1.7rem; height: 1.7rem; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .6rem; }
.option-list button strong { font-size: .85rem; font-weight: 600; }
.option-list button small { max-width: 15rem; text-align: right; font-size: .68rem; color: rgba(61,47,37,.5); }
.matcher-controls { min-height: 3.25rem; display: flex; align-items: center; justify-content: space-between; margin-top: auto; border-top: 1px solid rgba(61,47,37,.2); }
.matcher-controls button, .matcher-controls a { min-height: 2.75rem; display: inline-flex; align-items: center; padding: 0; border: 0; color: rgba(61,47,37,.62); background: transparent; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.matcher-result { padding-top: 1.1rem; }
.matcher-result .result-label { margin: 0 0 .7rem; color: var(--clay); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.matcher-result h3 { margin: 0; font-size: clamp(2.8rem, 4.2vw, 4.8rem); }
.matcher-result > p { max-width: 34rem; color: rgba(61,47,37,.64); }
.result-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.7rem; }
.result-actions .button-light { min-height: 3.15rem; }
.result-actions button { min-height: 2.75rem; padding: 0; border: 0; color: rgba(61,47,37,.68); background: transparent; font-size: .67rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.noscript-note { padding: 1rem; border: 1px solid rgba(255,255,255,.3); }
.noscript-note a { text-decoration: underline; }

.founder { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,6rem); min-height: 58rem; padding: clamp(6rem,10vw,10rem) var(--page); background: radial-gradient(circle at 88% 20%, rgba(181,196,168,.32), transparent 32rem), var(--paper); }
.founder-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 6rem) 0; }
.founder-lede { max-width: 40rem; margin: 2rem 0 0; font-size: clamp(1rem, 1.4vw, 1.25rem); color: rgba(33,29,26,.65); }
.founder blockquote { max-width: 43rem; margin: clamp(3rem, 6vw, 6rem) 0 1.2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: clamp(1.65rem, 2.65vw, 3.15rem); line-height: 1.13; }
.founder-name { display: flex; flex-direction: column; margin: 0 0 2rem; font-size: .76rem; }
.founder-name span { color: rgba(33,29,26,.55); }
.founder-image { min-height: 44rem; border-radius: 44% 56% 48% 52% / 38% 42% 58% 62%; border: 1px solid rgba(255,255,255,.85); box-shadow: -14px -14px 34px rgba(255,255,255,.8), 18px 24px 46px rgba(132,93,74,.19); }
.founder-image img { object-position: center 24%; }

.consultation { position: relative; min-height: 62rem; display: grid; grid-template-columns: 1fr minmax(27rem,.62fr); align-items: end; gap: clamp(3rem, 6vw, 7rem); padding: clamp(6rem, 10vw, 10rem) var(--page); color: #fff; background: var(--cocoa); isolation: isolate; }
.consultation-bg { position: absolute; z-index: -2; inset: 0; }
.consultation-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(35,27,23,.79), rgba(35,27,23,.25) 58%, rgba(35,27,23,.18)); }
.consultation-copy { max-width: 50rem; padding-bottom: 2rem; }
.consultation-copy > p:nth-of-type(2) { max-width: 38rem; color: rgba(255,255,255,.73); }
.visit-facts { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.visit-facts span { padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.42); border-radius: 999px; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.consultation-form { position: relative; padding: clamp(1.5rem, 3.5vw, 3rem); color: var(--ink); background: rgba(255,250,243,.96); border: 1px solid rgba(255,255,255,.78); border-radius: 3rem 3rem 7rem 3rem; box-shadow: 18px 24px 50px rgba(54,37,29,.24); backdrop-filter: blur(10px); }
.form-heading { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.form-heading span { font-size: .65rem; color: rgba(33,29,26,.5); }
.consultation-form label { display: grid; gap: .35rem; margin-top: 1.15rem; font-size: .69rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.consultation-form input, .consultation-form select, .consultation-form textarea { width: 100%; min-height: 3rem; padding: .7rem 0; border: 0; border-bottom: 1px solid rgba(33,29,26,.32); border-radius: 0; color: var(--ink); background: transparent; font-size: .9rem; letter-spacing: 0; text-transform: none; outline: 0; }
.consultation-form textarea { resize: vertical; }
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { border-bottom-color: var(--clay); }
.form-notice, .form-error { margin: .85rem 0; font-size: .65rem; color: rgba(33,29,26,.76); }
.form-error { color: #8a2f23; }
.consultation-form .button { width: 100%; }
.form-success { position: absolute; inset: 0; padding: 3rem; color: var(--paper); background: var(--moss); display: flex; flex-direction: column; justify-content: center; }
.form-success[hidden] { display: none; }
.form-success strong { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.2rem); font-weight: 380; line-height: 1; }
.form-success p { max-width: 28rem; color: rgba(255,255,255,.73); }

.site-footer { padding: clamp(4rem, 7vw, 7rem) var(--page) 1.5rem; color: #fff; background: #2f2825; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: clamp(2rem, 5vw, 6rem); }
.footer-main > div, .footer-main nav { display: flex; flex-direction: column; align-items: flex-start; gap: .35rem; }
.footer-main > div:first-child > p { max-width: 21rem; color: rgba(255,255,255,.55); }
.footer-main p, .footer-main nav p { margin: 0 0 1rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.48); }
.footer-main a, .footer-main span { min-height: 1.7rem; font-size: .77rem; color: rgba(255,255,255,.75); }
.footer-logo { margin-bottom: 1.25rem; color: #fff !important; font-size: 1.15rem !important; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; margin-top: clamp(4rem, 8vw, 8rem); padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.17); font-size: .62rem; color: rgba(255,255,255,.48); }
.footer-bottom a { color: #fff; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .18em; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-book { display: none; }
  .mobile-menu { display: block; justify-self: end; }
  .mobile-menu summary { min-height: 2.75rem; display: flex; align-items: center; gap: .7rem; list-style: none; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary i, .mobile-menu summary i::after { width: 1.25rem; border-top: 1px solid currentColor; }
  .mobile-menu summary i { position: relative; }
  .mobile-menu summary i::after { content: ""; position: absolute; top: .35rem; right: 0; width: .8rem; }
  .mobile-menu[open] nav { position: fixed; inset: 4.6rem 0 auto; display: grid; padding: 1.5rem var(--page) 2rem; color: var(--ink); background: var(--ivory); border-bottom: 1px solid var(--line); }
  .mobile-menu nav a { min-height: 3.5rem; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.7rem; }
  .hero-copy { width: min(47rem, 88vw); }
  .hero-proof { display: none; }
  .proof-story, .founder { grid-template-columns: 1fr 1fr; }
  .proof-quote, .founder-copy { padding: clamp(2rem, 5vw, 4rem) 0; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-heading > p { margin-left: 0; }
  .matcher { grid-template-columns: 1fr; }
  .matcher-visual { min-height: 72svh; }
  .matcher-panel { min-height: 50rem; }
  .consultation { grid-template-columns: 1fr minmax(24rem,.75fr); }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 3; }
}

@media (max-width: 720px) {
  .site-header { min-height: 4.6rem; }
  .hero { min-height: 49rem; }
  .hero-media { inset: 0; width: auto; height: auto; border-radius: 0; }
  .hero-media img { object-position: 61% center; }
  .hero-veil { background: linear-gradient(0deg, rgba(30,23,20,.8), rgba(30,23,20,.1) 75%); }
  .hero-atmosphere span:first-child { width: 20rem; height: 20rem; right: -9rem; top: 18%; }
  .hero-atmosphere span:last-child { width: 12rem; height: 12rem; left: 38%; bottom: -5rem; }
  .hero-copy { width: 100%; padding: 8rem var(--page) 6.5rem; }
  h1 { font-size: clamp(3.35rem, 15vw, 5rem); }
  .hero-lede { max-width: 29rem; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .concept-line { bottom: .9rem; }
  .proof-story, .founder { grid-template-columns: 1fr; gap: 2rem; padding: 5rem var(--page); }
  .proof-portrait { min-height: 34rem; }
  .proof-quote, .founder-copy { padding: 2rem 0; }
  .proof-quote blockquote { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .proof-numbers { margin-top: 3.5rem; }
  .treatments { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-heading h2, .founder h2, .consultation h2, .matcher h2 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card, .treatment-card.card-wide, .treatment-card.card-tall { min-height: 32rem; }
  .treatment-card:nth-child(1), .treatment-card:nth-child(2), .treatment-card:nth-child(3), .treatment-card:nth-child(4) { margin-top: 0; border-radius: 2.5rem 5rem 2.5rem 5rem / 3rem 4.5rem 3rem 4.5rem; transform: none; }
  .card-copy { left: 2rem; right: 6rem; bottom: 2rem; }
  .card-arrow { right: 2rem; bottom: 2rem; }
  .matcher { padding: .75rem; gap: .75rem; }
  .matcher-visual { min-height: 40rem; border-radius: 5rem 2.5rem 5rem 2.5rem; }
  .matcher-panel { min-height: auto; padding: 4.5rem var(--page) 2rem; border-radius: 2.5rem 5rem 2.5rem 5rem; }
  .matcher-heading h2 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .matcher-progress { margin-top: 3rem; }
  .matcher-step { min-height: 29rem; }
  .option-list button { grid-template-columns: 2rem minmax(0,1fr); }
  .option-list button small { grid-column: 2; text-align: left; margin-top: -.8rem; }
  .founder-image { min-height: 42rem; grid-row: 1; }
  .consultation { min-height: 78rem; grid-template-columns: 1fr; align-content: end; gap: 2rem; padding-top: 7rem; }
  .consultation-bg::after { background: linear-gradient(0deg, rgba(35,27,23,.88), rgba(35,27,23,.18) 80%); }
  .consultation-copy { padding: 0; }
  .consultation-form { padding: 1.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-main > div:last-child { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: .4rem; }
}

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

@media (prefers-reduced-data: reduce) {
  .hero-atmosphere { display: none; }
  .consultation-bg img { visibility: hidden; }
}

/* Multi-page LumaSkin system */
.shell { padding-left: var(--page); padding-right: var(--page); }
.page-sub { background: radial-gradient(circle at 6% 10%, rgba(232,196,184,.38), transparent 34rem), radial-gradient(circle at 94% 22%, rgba(181,196,168,.28), transparent 38rem), var(--ivory); }
.subpage-header { color: var(--ink); background: rgba(251,246,238,.9); border-color: var(--line); backdrop-filter: blur(14px); }
.desktop-nav a[aria-current="page"]::after { right: 0; }
.page-sub h1, .page-sub h2, .page-sub h3 { font-family: var(--serif); font-weight: 380; letter-spacing: -.045em; }
.page-sub h1 { margin: 0; font-size: clamp(4.2rem, 8.5vw, 9.5rem); line-height: .84; }
.page-sub h2 { margin: 0; font-size: clamp(3rem, 6vw, 7rem); line-height: .92; }
.page-sub h3 { margin: 0; font-size: clamp(2rem, 3.4vw, 4.2rem); line-height: .96; }
.page-sub em { color: var(--clay); font-weight: 350; }
.page-sub .eyebrow { color: rgba(61,47,37,.62); }
.status-dot { width: .45rem; height: .45rem; display: inline-block; margin-right: .55rem; border-radius: 50%; background: var(--moss); box-shadow: 0 0 0 .38rem rgba(110,138,110,.12); }
.text-link, .back-link { min-height: 2.75rem; display: inline-flex; align-items: center; gap: .7rem; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.sub-hero { min-height: 52rem; padding-top: 10rem; padding-bottom: 4rem; }
.sub-hero-split { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: clamp(2rem, 6vw, 7rem); }
.sub-hero-copy { max-width: 46rem; }
.sub-hero-copy > p:nth-of-type(2) { max-width: 37rem; margin: 2rem 0; color: rgba(61,47,37,.68); font-size: clamp(1rem,1.5vw,1.25rem); }
.sub-hero-photo { height: min(67vw, 47rem); border-radius: 12rem 3rem 12rem 3rem / 8rem 3rem 9rem 3rem; overflow: hidden; box-shadow: -16px -16px 36px rgba(255,255,255,.8), 20px 26px 54px rgba(116,81,65,.18); }
.section-intro { display: grid; grid-template-columns: minmax(15rem,.7fr) 1.2fr 1fr; align-items: end; gap: clamp(1.5rem,4vw,5rem); margin-bottom: clamp(3rem,7vw,7rem); }
.section-intro > p:last-child { margin: 0; max-width: 34rem; color: rgba(61,47,37,.66); }
.treatment-menu { padding-top: clamp(6rem,10vw,10rem); padding-bottom: clamp(7rem,12vw,12rem); background: rgba(255,250,242,.66); border-top: 1px solid var(--line); }
.menu-row { position: relative; min-height: 14rem; display: grid; grid-template-columns: 1.1fr 1fr .58fr 3.5rem; align-items: center; gap: clamp(1rem,3vw,4rem); padding: 2.2rem 0; border-top: 1px solid var(--line); transition: padding .45s var(--ease), background .45s var(--ease); }
.menu-row:last-child { border-bottom: 1px solid var(--line); }
.menu-row:hover { padding-left: 1.2rem; padding-right: 1.2rem; background: rgba(232,196,184,.13); }
.menu-row span, .menu-row dt { font-size: .65rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: rgba(61,47,37,.55); }
.menu-row h3 { margin-top: .35rem; }
.menu-row > p { max-width: 30rem; color: rgba(61,47,37,.66); }
.menu-row dl { display: grid; gap: .7rem; margin: 0; }
.menu-row dl div { display: flex; justify-content: space-between; gap: 1rem; }
.menu-row dd { margin: 0; font-size: .76rem; }
.round-arrow { width: 3.25rem; height: 3.25rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink) !important; font-size: 1rem !important; transition: color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease); }
.menu-row:hover .round-arrow { color: #fff !important; background: var(--moss); transform: rotate(45deg); }
.quiet-cta { min-height: 45rem; display: grid; justify-items: center; align-content: center; gap: 2rem; padding: 7rem var(--page); text-align: center; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.7), transparent 23rem), radial-gradient(circle at 70% 70%, rgba(181,196,168,.35), transparent 26rem), var(--blush); }
.quiet-cta h2 { max-width: 65rem; }

.detail-hero { min-height: 61rem; display: grid; grid-template-columns: .86fr 1.14fr; align-items: end; gap: clamp(2rem,5vw,6rem); padding-top: 10rem; padding-bottom: 3rem; }
.detail-title { padding-bottom: clamp(2rem,5vw,5rem); }
.detail-title .eyebrow { margin-top: 4rem; }
.detail-title h1 { font-size: clamp(4.1rem,8vw,8.2rem); }
.detail-title > p:last-child { max-width: 36rem; margin: 2rem 0 0; font-size: clamp(1.1rem,1.7vw,1.5rem); color: rgba(61,47,37,.68); }
.detail-photo { height: 48rem; overflow: hidden; border-radius: 3rem 12rem 3rem 12rem / 3rem 9rem 3rem 8rem; box-shadow: 18px 24px 54px rgba(98,67,53,.19); }
.page-filler .detail-photo { border-radius: 12rem 3rem 8rem 3rem / 9rem 3rem 7rem 3rem; }
.page-needling .detail-photo { border-radius: 3rem 3rem 11rem 3rem / 3rem 3rem 8rem 3rem; }
.page-facial .detail-photo { border-radius: 11rem 11rem 3rem 3rem / 8rem 8rem 3rem 3rem; }
.fact-ribbon { display: grid; grid-template-columns: repeat(3,1fr) 1.3fr; background: var(--moss); color: #fff; }
.fact-ribbon > div, .fact-ribbon > a { min-height: 8rem; display: flex; flex-direction: column; justify-content: center; padding: 1.3rem clamp(1rem,2.5vw,2.5rem); border-right: 1px solid rgba(255,255,255,.22); }
.fact-ribbon span { font-size: .61rem; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.fact-ribbon strong { margin-top: .3rem; font-family: var(--serif); font-size: clamp(1.3rem,2vw,2.1rem); font-weight: 400; }
.fact-ribbon > a { flex-direction: row; align-items: center; justify-content: space-between; gap: 1rem; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; border: 0; }
.detail-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(3rem,8vw,10rem); padding-top: clamp(8rem,13vw,13rem); padding-bottom: clamp(8rem,13vw,13rem); }
.detail-intro h2 { max-width: 56rem; font-size: clamp(3rem,5.6vw,6.4rem); }
.detail-intro > p { align-self: end; margin: 0; max-width: 36rem; color: rgba(61,47,37,.68); font-size: clamp(1rem,1.4vw,1.2rem); }
.fit-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding-top: 1px; padding-bottom: 1px; background: var(--line); }
.fit-pair article { min-height: 34rem; padding: clamp(2rem,5vw,5rem); background: var(--paper); }
.fit-pair article:last-child { background: #dfe6d7; }
.fit-pair ul { margin: 4rem 0 0; padding: 0; list-style: none; }
.fit-pair li { position: relative; padding: 1.2rem 0 1.2rem 2rem; border-top: 1px solid var(--line); }
.fit-pair li::before { content: ""; position: absolute; left: 0; top: 1.7rem; width: .55rem; height: .55rem; border-radius: 50%; background: var(--clay); }
.care-flow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,9vw,12rem); padding-top: clamp(8rem,13vw,13rem); padding-bottom: clamp(8rem,13vw,13rem); }
.care-flow h2 { font-size: clamp(2.9rem,5vw,5.8rem); }
.care-flow > div > p:last-child { max-width: 35rem; margin-top: 2rem; color: rgba(61,47,37,.67); }
.detail-quote { min-height: 43rem; display: grid; justify-items: center; align-content: center; padding: 6rem var(--page); text-align: center; color: #fff; background: #3d322d; }
.detail-quote blockquote { max-width: 72rem; margin: 0; font-family: var(--serif); font-size: clamp(3rem,6.5vw,7.5rem); line-height: .95; font-weight: 350; }
.detail-quote p { margin: 2rem 0 .2rem; }
.detail-quote span { font-size: .66rem; color: rgba(255,255,255,.55); }

.stories-hero { min-height: 54rem; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 4rem; padding-top: 11rem; padding-bottom: 7rem; }
.stories-hero > div > p:last-child { max-width: 39rem; margin-top: 2rem; color: rgba(61,47,37,.66); }
.stories-hero blockquote { margin: 0 0 3rem; padding: 2rem 0 2rem 2rem; border-left: 1px solid var(--clay); font-family: var(--serif); font-size: clamp(2rem,3.4vw,4rem); line-height: 1.08; }
.story-feature { min-height: 64rem; display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(3rem,8vw,10rem); align-items: center; padding-top: clamp(6rem,10vw,10rem); padding-bottom: clamp(6rem,10vw,10rem); border-top: 1px solid var(--line); }
.story-reverse { grid-template-columns: 1.08fr .92fr; }
.story-reverse .story-portrait { grid-column: 2; }
.story-reverse article { grid-row: 1; grid-column: 1; }
.story-portrait { height: 52rem; overflow: hidden; border-radius: 10rem 3rem 10rem 3rem / 8rem 3rem 8rem 3rem; }
.story-reverse .story-portrait { border-radius: 3rem 10rem 3rem 10rem / 3rem 8rem 3rem 8rem; }
.story-feature article > p:nth-of-type(2) { max-width: 37rem; color: rgba(61,47,37,.68); }
.story-feature dl { display: grid; gap: .8rem; margin: 3rem 0; }
.story-feature dl div { display: grid; grid-template-columns: 8rem 1fr; padding-top: .8rem; border-top: 1px solid var(--line); }
.story-feature dt { font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(61,47,37,.52); }
.story-feature dd { margin: 0; }
.story-feature blockquote { margin: 3rem 0 0; font-family: var(--serif); font-size: clamp(1.9rem,3vw,3.5rem); line-height: 1.05; }
.outcome-note { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2rem; padding-bottom: 2rem; color: rgba(61,47,37,.64); background: rgba(181,196,168,.28); font-size: .75rem; }
.outcome-note p { max-width: 52rem; }
.outcome-note a { font-weight: 700; }

.about-hero { min-height: 64rem; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(2rem,6vw,7rem); align-items: center; padding-top: 10rem; padding-bottom: 5rem; }
.about-copy > p:last-child { max-width: 37rem; margin-top: 2rem; color: rgba(61,47,37,.68); font-size: clamp(1rem,1.4vw,1.2rem); }
.about-wide { height: 46rem; overflow: hidden; border-radius: 3rem 12rem 3rem 12rem / 3rem 9rem 3rem 9rem; }
.belief-line { padding-top: clamp(8rem,14vw,15rem); padding-bottom: clamp(8rem,14vw,15rem); border-top: 1px solid var(--line); }
.belief-line h2 { max-width: 76rem; }
.team { display: grid; grid-template-columns: .62fr 1fr 1fr; gap: clamp(2rem,4vw,5rem); align-items: start; padding-top: 8rem; padding-bottom: 10rem; background: rgba(255,250,242,.72); }
.team .section-intro { display: block; position: sticky; top: 7rem; }
.team .section-intro h2 { font-size: clamp(3rem,4.8vw,5.8rem); }
.team-member picture { height: 42rem; overflow: hidden; border-radius: 9rem 3rem 9rem 3rem / 7rem 3rem 7rem 3rem; }
.team-member-lower { margin-top: 10rem; }
.team-member-lower picture { border-radius: 3rem 9rem 3rem 9rem / 3rem 7rem 3rem 7rem; }
.team-member h3 { margin-top: 1.7rem; font-size: clamp(2rem,2.8vw,3.2rem); }
.team-member div > p:first-of-type { margin: .25rem 0 1rem; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--moss); }
.team-member div > p:last-child { color: rgba(61,47,37,.66); }
.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; padding-top: 1px; padding-bottom: 1px; background: var(--line); }
.principles article { min-height: 25rem; padding: clamp(2rem,4vw,4rem); background: var(--ivory); }
.principles article:nth-child(2) { background: #e5c9c0; }
.principles article:nth-child(3) { background: #dfe6d7; }
.principles h3 { font-size: clamp(2rem,3vw,3.8rem); }
.principles p { margin-top: 3rem; color: rgba(61,47,37,.67); }

.page-visit .subpage-header:not(.is-scrolled) { color: #fff; background: transparent; border-color: rgba(255,255,255,.3); backdrop-filter: none; }
.visit-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; background: var(--cocoa); }
.visit-hero-photo { position: absolute; inset: 0; }
.visit-hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(35,27,23,.73),rgba(35,27,23,.08) 72%),linear-gradient(0deg,rgba(35,27,23,.5),transparent 50%); }
.visit-hero-copy { position: relative; z-index: 1; padding: 10rem var(--page) 7rem; }
.visit-hero-copy p:last-child { max-width: 36rem; }
.arrival { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem,8vw,10rem); align-items: center; padding-top: clamp(8rem,12vw,12rem); padding-bottom: clamp(8rem,12vw,12rem); }
.arrival > div > p:nth-of-type(2) { max-width: 34rem; color: rgba(61,47,37,.67); }
.address-list { margin: 3rem 0 0; }
.address-list div { display: grid; grid-template-columns: 9rem 1fr; padding: 1rem 0; border-top: 1px solid var(--line); }
.address-list dt { font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(61,47,37,.52); }
.address-list dd { margin: 0; }
.real-map { margin: 0; overflow: hidden; border-radius: 3rem 10rem 3rem 10rem / 3rem 8rem 3rem 8rem; box-shadow: 18px 24px 54px rgba(96,70,57,.17); }
.real-map img { height: auto; }
.real-map figcaption { padding: .7rem 1rem; background: var(--paper); font-size: .62rem; color: rgba(61,47,37,.55); }
.hours-band { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem,8vw,10rem); padding: clamp(6rem,10vw,10rem) var(--page); color: #fff; background: var(--moss); }
.hours-band dl { margin: 0; }
.hours-band dl div { display: flex; justify-content: space-between; gap: 2rem; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.25); }
.hours-band dd { margin: 0; }
.visit-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(2rem,5vw,6rem); padding-top: 8rem; padding-bottom: 8rem; }
.visit-notes article { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.visit-notes h3 { font-size: clamp(2rem,3vw,3.5rem); }
.visit-notes p { color: rgba(61,47,37,.67); }

.faq-hero, .legal-hero { min-height: 50rem; display: flex; flex-direction: column; justify-content: flex-end; padding-top: 11rem; padding-bottom: 7rem; }
.faq-hero > p:last-child, .legal-hero > p:last-child { max-width: 42rem; margin-top: 2rem; color: rgba(61,47,37,.67); }
.faq-list { padding-bottom: 10rem; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 7rem; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; list-style: none; cursor: pointer; font-family: var(--serif); font-size: clamp(1.6rem,2.7vw,3.2rem); line-height: 1; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { transition: transform .35s var(--ease); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 54rem; margin: 0; padding: 0 4rem 2.5rem 0; color: rgba(61,47,37,.67); }
.legal-copy { max-width: 78rem; padding-bottom: 10rem; }
.legal-copy h2 { margin: 5rem 0 1rem; padding-top: 2rem; border-top: 1px solid var(--line); font-size: clamp(2.4rem,4vw,4.8rem); }
.legal-copy p { max-width: 58rem; color: rgba(61,47,37,.7); }

@media (max-width: 980px) {
  .section-intro { grid-template-columns: 1fr 1fr; }
  .section-intro > p:last-child { grid-column: 2; }
  .sub-hero-split, .detail-hero, .about-hero { grid-template-columns: 1fr 1fr; }
  .menu-row { grid-template-columns: 1fr 1fr 3rem; }
  .menu-row > p { grid-row: 2; }
  .menu-row dl { grid-column: 2; grid-row: 1 / 3; }
  .menu-row .round-arrow { grid-column: 3; grid-row: 1 / 3; }
  .team { grid-template-columns: 1fr 1fr; }
  .team .section-intro { grid-column: 1 / -1; position: static; }
}

@media (max-width: 720px) {
  .page-sub h1 { font-size: clamp(3.5rem,16vw,5.3rem); }
  .sub-hero { min-height: auto; padding-top: 8rem; }
  .sub-hero-split, .detail-hero, .about-hero, .stories-hero, .story-feature, .story-reverse, .detail-intro, .care-flow, .arrival, .hours-band { grid-template-columns: 1fr; }
  .sub-hero-photo, .detail-photo, .about-wide { height: 31rem; border-radius: 6rem 2rem 6rem 2rem / 5rem 2rem 5rem 2rem; }
  .section-intro { display: block; }
  .section-intro > p:last-child { margin-top: 1.5rem; }
  .menu-row { min-height: 20rem; grid-template-columns: 1fr 3rem; align-content: center; gap: 1rem; }
  .menu-row > div, .menu-row > p, .menu-row dl { grid-column: 1; grid-row: auto; }
  .menu-row .round-arrow { grid-column: 2; grid-row: 1; }
  .fact-ribbon { grid-template-columns: 1fr 1fr; }
  .fact-ribbon > div, .fact-ribbon > a { min-height: 6.8rem; }
  .fact-ribbon > a { grid-column: 1 / -1; }
  .fit-pair, .principles, .visit-notes { grid-template-columns: 1fr; }
  .fit-pair article { min-height: auto; }
  .stories-hero { min-height: auto; padding-top: 9rem; }
  .stories-hero blockquote { margin-top: 1rem; }
  .story-feature, .story-reverse { min-height: auto; }
  .story-reverse .story-portrait, .story-reverse article { grid-column: 1; grid-row: auto; }
  .story-portrait { height: 36rem; }
  .outcome-note { align-items: flex-start; flex-direction: column; }
  .team { grid-template-columns: 1fr; padding-top: 6rem; padding-bottom: 6rem; }
  .team-member-lower { margin-top: 2rem; }
  .team-member picture { height: 38rem; }
  .visit-hero { min-height: 48rem; }
  .visit-hero-photo img { object-position: 64% center; }
  .visit-hero-photo::after { background: linear-gradient(0deg,rgba(35,27,23,.76),rgba(35,27,23,.08) 78%); }
  .visit-hero-copy { padding-top: 9rem; padding-bottom: 5rem; }
  .arrival, .hours-band { gap: 3rem; }
  .real-map { border-radius: 2rem 5rem 2rem 5rem; }
  .faq-hero, .legal-hero { min-height: 42rem; }
  .faq-list summary { min-height: 6rem; font-size: clamp(1.5rem,7vw,2.2rem); }
}

/* --- fluted glass over the hero ------------------------------------------ */

/* Sits above the photograph and below the veil and copy. The <picture> keeps
   fetchpriority and stays the LCP element; this fades in once the shader has
   mounted, so the hero is never waiting on WebGL to look finished. */
.hero-glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-glass[data-glass-ready='true'] {
  opacity: 1;
}

.hero-glass canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* --- hero entrance -------------------------------------------------------- */

/* Slow and soft rather than bouncy. A skin studio sells calm, and an easing
   curve that overshoots reads as an app onboarding screen. Each line clears a
   mask rather than sliding on the page, so nothing ever overlaps the veil. */
[data-rise] > * {
  --rise-delay: 0ms;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1) var(--rise-delay),
    transform 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) var(--rise-delay);
}

[data-rise][data-risen] > * {
  opacity: 1;
  transform: none;
}

[data-rise] > *:nth-child(1) {
  --rise-delay: 90ms;
}
[data-rise] > *:nth-child(2) {
  --rise-delay: 220ms;
}
[data-rise] > *:nth-child(3) {
  --rise-delay: 360ms;
}
[data-rise] > *:nth-child(4) {
  --rise-delay: 500ms;
}

@media (prefers-reduced-motion: reduce) {
  .hero-glass {
    transition: none;
  }
  [data-rise] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
