@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}

:root {
  --white: #ffffff;
  --tint: #faf7ef;
  --tint-deep: #f4efe2;
  --cream: #fffbf0;
  --butter: #fdecc2;
  --peach: #ffecda;
  --brown: #6b5940;
  --brown-muted: #5f553a;
  --ink: #0c1a2e;
  --green: #315641;
  --line: rgba(12, 26, 46, 0.12);
  --line-light: rgba(255, 251, 240, 0.25);
  --shadow-soft: 0 18px 50px rgba(12, 26, 46, 0.08);
  --ease-out: cubic-bezier(0.22, 0.61, 0.2, 1);
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --max: 1440px;
  --pad: clamp(22px, 4vw, 64px);
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body, button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--brown); color: var(--cream); }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-260%);
}
.skip-link:focus { transform: none; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.booking :focus-visible, .mobile-book :focus-visible { outline-color: var(--butter); }
.eyebrow {
  margin: 0 0 24px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
h1 em, h2 em { color: var(--brown); font-weight: 400; }
h2 { margin-bottom: 28px; font-size: clamp(52px, 6vw, 94px); }
.section { padding: clamp(88px, 10vw, 160px) var(--pad); }

.proof-banner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 18px;
  background: var(--ink);
  color: rgba(255, 251, 240, 0.84);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.proof-banner strong { color: var(--butter); font-weight: 600; }
.proof-divider { width: 1px; height: 12px; background: rgba(255,255,255,.28); }

/* ---------- liquid glass nav ---------- */

.nav-wrap {
  position: sticky;
  top: 14px;
  z-index: 90;
  display: flex;
  justify-content: center;
  padding: 12px 16px;
}
.nav {
  width: min(1240px, 100%);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 10px 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  -webkit-backdrop-filter: blur(22px) saturate(1.7);
  backdrop-filter: blur(22px) saturate(1.7);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 12px 40px rgba(12, 26, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.5s var(--ease-out), background 0.5s var(--ease-out);
}
.nav.is-scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.64));
  box-shadow:
    0 16px 48px rgba(12, 26, 46, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}
.brand { display: grid; place-items: center; }
.brand img { width: 84px; height: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.nav-links a {
  position: relative;
  padding: 8px 2px;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-book {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
}
.header-book:hover { background: var(--brown); transform: translateY(-1px); }

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

.hero {
  position: relative;
  max-width: var(--max);
  min-height: calc(100svh - 200px);
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 68px) var(--pad) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr);
  column-gap: clamp(54px, 8vw, 130px);
  align-items: center;
}
.hero-glow {
  position: absolute;
  z-index: 0;
  top: -6%;
  left: -10%;
  width: min(560px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--butter), var(--peach) 55%, transparent 72%);
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(70px, 46px) scale(1.12); }
}
.hero-copy { position: relative; z-index: 1; align-self: center; padding-bottom: 72px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 { margin: 0 0 22px; font-size: clamp(58px, 6.1vw, 96px); }
.hero-mantra { margin: 0 0 24px; color: var(--brown); font-family: var(--serif); font-size: clamp(24px, 2.3vw, 36px); line-height: 1.1; }
.hero-lead { max-width: 610px; margin-bottom: 34px; color: rgba(12,26,46,.72); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.68; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.js .hero-copy > * { animation: rise .85s var(--ease-out) backwards; }
.js .hero-copy > h1 { animation: none; }
.js .hero-copy > *:nth-child(1) { animation-delay: .05s; }
.js .hero-copy > *:nth-child(2) { animation-delay: .14s; }
.js .hero-copy > *:nth-child(3) { animation-delay: .23s; }
.js .hero-copy > *:nth-child(4) { animation-delay: .32s; }
.js .hero-copy > *:nth-child(5) { animation-delay: .41s; }
.js .hero-media { animation: rise 1s .3s var(--ease-out) backwards; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(12,26,46,.14); }
.button-dark { background: var(--ink); color: var(--cream); }
.button-dark:hover { background: var(--brown); }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--cream); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--butter); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 8px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1;
}
.text-link span { transition: transform .25s var(--ease-out); }
.text-link:hover span { transform: translateX(4px); }
.hero-offer {
  max-width: 590px;
  margin-top: 42px;
  padding: 20px 24px;
  border-radius: 18px;
  background: var(--tint);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 7px 22px;
}
.hero-offer span, .hero-offer small { font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.hero-offer span { color: var(--brown); font-weight: 600; }
.hero-offer strong { font-size: 13px; letter-spacing: .05em; }
.hero-offer small { grid-column: 2; color: rgba(12,26,46,.7); letter-spacing: .06em; text-transform: none; }
.hero-media { position: relative; z-index: 1; align-self: stretch; min-height: 670px; }
.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--tint-deep);
  box-shadow: var(--shadow-soft);
}
.hero-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.js .hero-frame > img { animation: settle 2.2s var(--ease-out) both; }
@keyframes settle {
  from { transform: scale(1.07); }
  to { transform: scale(1); }
}
.hero-caption {
  position: absolute;
  top: 28px;
  left: 28px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,.6);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.15;
}
.round-book {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.round-book::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(253, 236, 194, 0.9);
  border-radius: 50%;
  animation: pulse 3.6s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(.94); opacity: 0; }
  35% { opacity: .8; }
  100% { transform: scale(1.16); opacity: 0; }
}
.round-book b { font-size: 18px; font-weight: 400; }
.round-book:hover { transform: scale(1.04); background: var(--peach); }
.hero-trust {
  grid-column: 1 / -1;
  min-height: 68px;
  margin-top: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-trust span {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  color: rgba(12,26,46,.7);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-trust span:first-child { padding-left: 0; }
.hero-trust span:last-child { border-right: 0; }

/* ---------- proof ---------- */

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 60px) var(--pad) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.proof-grid article {
  min-height: 190px;
  padding: 30px clamp(24px, 2.4vw, 36px);
  border-radius: 22px;
  background: var(--tint);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.proof-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.proof-grid strong { color: var(--brown); font-family: var(--serif); font-size: clamp(38px, 3.6vw, 60px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.proof-grid span { max-width: 200px; color: rgba(12,26,46,.62); font-size: 10px; letter-spacing: .12em; line-height: 1.6; text-transform: uppercase; }

/* ---------- films ---------- */

.films { overflow: hidden; margin-block: clamp(56px, 7vw, 104px) 0; background: var(--ink); color: var(--cream); }
.films .eyebrow { color: var(--butter); }
.section-heading { max-width: var(--max); margin: 0 auto 66px; display: grid; grid-template-columns: 1.1fr .6fr; column-gap: 80px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin-bottom: 0; }
.section-heading h2 em { color: var(--butter); }
.section-heading > p:last-child { max-width: 470px; margin: 0 0 10px; color: rgba(255,251,240,.68); font-size: 17px; line-height: 1.7; }
.film-rail { width: 100%; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.film-card {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
}
.film-card:focus-visible { outline: 2px solid var(--butter); outline-offset: 5px; border-radius: 20px; }
.film-media { position: relative; height: min(60svh, 560px); max-height: 560px; display: block; overflow: hidden; border-radius: 20px; background: #172337; }
.film-media video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.film-card:hover .film-media video { transform: scale(1.03); }
.film-card.is-playing .film-media video, .film-card.is-playing:hover .film-media video { transform: none; }
.film-media::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; background: linear-gradient(transparent, rgba(0,0,0,.7)); pointer-events: none; }
.play-disc {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(12,26,46,.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity .22s ease, transform .22s ease;
}
.play-disc span { width: 0; height: 0; margin-left: 4px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid var(--cream); }
.film-card.is-playing .play-disc { opacity: 0; transform: translate(-50%, -50%) scale(.82); }
.film-card:hover .play-disc { transform: translate(-50%, -50%) scale(1.06); }
.film-card.is-playing:hover .play-disc { transform: translate(-50%, -50%) scale(.82); }
.film-index { position: absolute; z-index: 2; left: 16px; bottom: 14px; color: #fff; font-size: 10px; letter-spacing: .12em; }
.film-copy { display: block; padding: 18px 0 0; }
.film-copy b { display: block; font-family: var(--serif); font-size: 25px; font-weight: 400; line-height: 1.1; }
.film-copy small { display: block; margin-top: 7px; color: rgba(255,251,240,.72); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.results-note { max-width: var(--max); margin: 34px auto 0; color: rgba(255,251,240,.62); font-size: 11px; }

/* ---------- treatments ---------- */

.treatments { max-width: var(--max); margin: 0 auto; }
.treatment-intro { max-width: 920px; margin-bottom: 76px; }
.treatment-intro > p:last-child { max-width: 650px; color: rgba(12,26,46,.68); font-size: 18px; line-height: 1.7; }
.treatment-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.treatment-card {
  min-height: 470px;
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}
.treatment-card:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-soft); }
.treatment-card.featured { border-color: transparent; background: var(--butter); }
.treatment-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 74px; color: var(--brown); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.treatment-top small { font-size: 9px; letter-spacing: .1em; }
.treatment-card h3 { margin: 0 0 20px; font-size: clamp(32px, 2.7vw, 46px); }
.treatment-card > p { min-height: 104px; margin-bottom: 26px; color: rgba(12,26,46,.66); font-size: 14px; line-height: 1.65; }
.treatment-card dl { margin: auto 0 24px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
.treatment-card dl div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.treatment-card dt { color: rgba(12,26,46,.72); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.treatment-card dd { margin: 5px 0 0; font-family: var(--serif); font-size: 21px; }
.treatment-card > a { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.treatment-card > a span { transition: transform .2s; }
.treatment-card > a:hover span { transform: translate(3px, -3px); }
.treatment-footer { margin-top: 36px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.treatment-footer p { margin: 0; color: rgba(12,26,46,.62); font-size: 14px; }

/* ---------- local service guides ---------- */

.home-guides { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.home-guide-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-guides-footer { margin-top: 34px; display: flex; justify-content: flex-end; }

/* ---------- approach ---------- */

.approach {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 0;
  border-radius: 36px;
  overflow: hidden;
  background: var(--peach);
  display: grid;
  grid-template-columns: 1.04fr .96fr;
}
.approach-media { position: relative; min-height: 820px; }
.approach-media img { width: 100%; height: 100%; object-fit: cover; }
.approach-media > span { position: absolute; right: 0; bottom: 0; padding: 18px 26px; border-top-left-radius: 20px; background: var(--butter); font-family: var(--serif); font-size: 21px; }
.approach-copy { align-self: center; max-width: 650px; padding: 90px clamp(50px, 7vw, 120px); }
.approach-copy h2 { font-size: clamp(54px, 5.5vw, 88px); }
.approach-lead { margin-bottom: 44px; color: rgba(12,26,46,.7); font-size: 17px; line-height: 1.75; }
.approach-steps { margin: 0 0 36px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.approach-steps li { display: grid; grid-template-columns: 38px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.approach-steps > li > span { padding-top: 3px; color: var(--brown); font-size: 10px; letter-spacing: .12em; }
.approach-steps b { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.approach-steps p { margin: 6px 0 0; color: rgba(12,26,46,.62); font-size: 13px; line-height: 1.6; }

/* ---------- founder ---------- */

.founder { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 10vw, 160px); align-items: center; }
.founder-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(12,26,46,.68); font-size: 17px; line-height: 1.78; }
.founder-signoff { margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 95px 1fr; gap: 22px; }
.founder-signoff span { color: var(--brown); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.founder-signoff strong { font-family: var(--serif); font-size: 20px; font-weight: 400; line-height: 1.25; }
.founder-images { position: relative; min-height: 720px; }
.founder-portrait { position: absolute; top: 0; right: 0; width: 66%; height: 82%; object-fit: cover; object-position: 50% 28%; border-radius: 26px; }
.founder-tools { position: absolute; left: 0; bottom: 0; width: 54%; height: 38%; object-fit: cover; border: 12px solid var(--white); border-radius: 26px; box-shadow: var(--shadow-soft); }

/* ---------- reviews ---------- */

.reviews { background: var(--tint); }
.reviews-heading, .review-list { max-width: var(--max); margin-inline: auto; }
.reviews-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; padding-bottom: 70px; }
.reviews-heading .eyebrow { grid-column: 1 / -1; }
.reviews-heading h2 { margin-bottom: 0; }
.rating-lockup { padding-left: 30px; border-left: 1px solid var(--line); display: flex; align-items: center; gap: 20px; }
.rating-lockup > strong { font-family: var(--serif); font-size: 54px; font-weight: 400; line-height: 1; }
.rating-lockup span { display: grid; gap: 7px; color: rgba(12,26,46,.72); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.rating-lockup b { color: var(--brown); font-size: 12px; letter-spacing: .18em; }
.review-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-list blockquote {
  min-height: 370px;
  margin: 0;
  padding: 30px 34px 34px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(12, 26, 46, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.review-list blockquote:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.review-list blockquote > span { color: var(--brown); font-size: 10px; letter-spacing: .14em; }
.review-list blockquote p { margin: auto 0; font-family: var(--serif); font-size: clamp(24px, 2.2vw, 34px); letter-spacing: -.025em; line-height: 1.15; }
.review-list cite { color: rgba(12,26,46,.72); font-size: 10px; font-style: normal; letter-spacing: .15em; text-transform: uppercase; }

/* ---------- faq ---------- */

.faq { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 10vw, 150px); }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading h2 { font-size: clamp(52px, 5vw, 80px); }
.faq-heading > p:last-child { max-width: 390px; color: rgba(12,26,46,.62); font-size: 15px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 54px 25px 0; list-style: none; cursor: pointer; font-family: var(--serif); font-size: 25px; line-height: 1.25; transition: color .3s var(--ease-out); }
.faq-list summary:hover { color: var(--brown); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; top: 50%; right: 4px; width: 16px; height: 1px; background: var(--ink); content: ""; transition: transform .3s var(--ease-out); }
.faq-list summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details > div { max-width: 700px; padding: 0 60px 26px 0; color: rgba(12,26,46,.65); font-size: 14px; line-height: 1.75; }
.faq-list details > div p { margin: 0; }
.faq-list details a { border-bottom: 1px solid currentColor; color: var(--brown); }
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq-list details::details-content {
    block-size: 0;
    overflow: clip;
    transition: block-size .45s var(--ease-out), content-visibility .45s allow-discrete;
  }
  .faq-list details[open]::details-content { block-size: auto; }
}

/* ---------- booking ---------- */

.booking {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto clamp(56px, 7vw, 104px);
  border-radius: 36px;
  background: linear-gradient(150deg, #75634a, var(--brown) 45%, #57482f);
  color: var(--cream);
  text-align: center;
}
.booking-inner { max-width: 960px; margin: 0 auto; }
.booking .eyebrow { color: var(--butter); }
.booking h2 { margin-bottom: 28px; font-size: clamp(58px, 7vw, 106px); }
.booking h2 em { color: var(--butter); }
.booking-inner > p:not(.eyebrow) { max-width: 640px; margin: 0 auto 34px; color: rgba(255,251,240,.84); font-size: 17px; line-height: 1.7; }
.booking-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 28px; }
.booking-contact { padding-bottom: 3px; border-bottom: 1px solid rgba(255,251,240,.6); font-family: var(--serif); font-size: 18px; }
.booking ul { margin: 50px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-light); list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 50px; color: rgba(255,251,240,.82); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.booking li::before { content: "·"; margin-right: 12px; color: var(--butter); }

/* ---------- footer ---------- */

.site-footer { padding: 68px var(--pad) 26px; border-top: 1px solid var(--line); background: var(--white); }
.footer-main { max-width: var(--max); margin: 0 auto 60px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 50px; }
.footer-brand { width: 132px; display: grid; place-items: center; }
.footer-brand img { width: 132px; height: auto; }
.footer-contact > span { display: block; margin-bottom: 14px; color: var(--brown); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-contact p { margin: 0; color: rgba(12,26,46,.62); font-size: 13px; line-height: 1.8; }
.footer-links { display: grid; align-content: start; gap: 12px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a { width: fit-content; padding-bottom: 3px; border-bottom: 1px solid var(--line); }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 30px; color: rgba(12,26,46,.7); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-credit { padding-bottom: 2px; border-bottom: 1px solid currentColor; }

.mobile-book { display: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--reveal-delay, 0s); }
.js .reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, .75fr); column-gap: 50px; }
  .hero-media { min-height: 610px; }
  .treatment-list { grid-template-columns: repeat(2, 1fr); }
  .home-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .treatment-card { min-height: 420px; }
  .film-rail { width: calc(100% + var(--pad)); max-width: none; margin-right: calc(var(--pad) * -1); padding-right: var(--pad); display: flex; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: none; }
  .film-rail::-webkit-scrollbar { display: none; }
  .film-card { width: min(38vw, 340px); min-width: min(38vw, 340px); scroll-snap-align: start; }
  .approach-copy { padding-inline: 60px; }
  .founder { gap: 70px; }
}

@media (max-width: 850px) {
  html { scroll-padding-top: 96px; }
  .nav-links { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 44px; }
  .hero-copy { padding-bottom: 56px; }
  .hero h1 { font-size: clamp(62px, 11vw, 88px); }
  .hero-media { min-height: 760px; }
  .hero-frame { position: relative; height: 760px; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  .hero-trust span:nth-child(2) { border-right: 0; }
  .hero-trust span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .hero-trust span:nth-child(3) { padding-left: 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 28px; }
  .film-card { width: 38vw; min-width: 38vw; }
  .approach { grid-template-columns: 1fr; }
  .approach-media { min-height: 620px; }
  .approach-copy { max-width: none; padding: 72px clamp(26px, 5vw, 50px); }
  .founder { grid-template-columns: 1fr; }
  .founder-images { min-height: 680px; }
  .reviews-heading { grid-template-columns: 1fr; }
  .rating-lockup { padding: 22px 0 0; border: 0; border-top: 1px solid var(--line); }
  .review-list { grid-template-columns: 1fr; }
  .review-list blockquote { min-height: 310px; }
  .faq { grid-template-columns: 1fr; gap: 54px; }
  .faq-heading { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; --nav-h: 56px; }
  html { scroll-padding-top: 84px; }
  body { padding-bottom: 96px; }
  .proof-banner { min-height: 30px; gap: 9px; padding-inline: 10px; font-size: 8px; letter-spacing: .07em; }
  .nav-wrap { top: 8px; padding: 8px 10px; }
  .nav { padding: 0 8px 0 16px; }
  .brand img { width: 72px; }
  .header-book { min-height: 40px; padding: 9px 16px; gap: 10px; font-size: 9px; }
  .section { padding-block: 84px; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: .16em; }
  h2 { font-size: 54px; }
  .hero { padding-top: 32px; }
  .hero-copy { padding-bottom: 44px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(50px, 14.5vw, 62px); }
  .hero-mantra { margin-bottom: 20px; font-size: 24px; }
  .hero-lead { margin-bottom: 26px; font-size: 15px; line-height: 1.65; }
  .hero-actions { align-items: flex-start; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { font-size: 17px; }
  .hero-offer { margin-top: 32px; padding: 18px 20px; grid-template-columns: 1fr; }
  .hero-offer strong, .hero-offer small { grid-column: 1; }
  .hero-media { min-height: 570px; }
  .hero-frame { height: 570px; border-radius: 24px; }
  .hero-caption { top: 20px; left: 20px; }
  .round-book { width: 128px; height: 128px; right: 18px; bottom: 18px; }
  .hero-trust { margin-inline: 0; }
  .hero-trust span { min-height: 70px; padding: 14px 12px; font-size: 8px; line-height: 1.45; }
  .proof-grid { gap: 10px; }
  .proof-grid article { min-height: 150px; padding: 24px 20px; border-radius: 18px; }
  .proof-grid strong { font-size: 38px; }
  .proof-grid span { font-size: 8px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2 { font-size: 58px; }
  .section-heading > p:last-child { font-size: 15px; }
  .film-rail { width: auto; margin: 0 -20px; padding: 0 20px 12px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .film-rail::-webkit-scrollbar { display: none; }
  .film-card { width: 78vw; min-width: 78vw; scroll-snap-align: start; }
  .film-media { height: min(61svh, 520px); border-radius: 18px; }
  .film-copy b { font-size: 23px; }
  .results-note { font-size: 10px; }
  .treatment-intro { margin-bottom: 48px; }
  .treatment-intro > p:last-child { font-size: 15px; }
  .treatment-list { grid-template-columns: 1fr; gap: 12px; }
  .treatment-card { min-height: 400px; padding: 24px; }
  .treatment-top { margin-bottom: 60px; }
  .treatment-card h3 { font-size: 44px; }
  .treatment-card > p { min-height: 75px; }
  .treatment-footer { align-items: stretch; flex-direction: column; }
  .treatment-footer .button { width: 100%; }
  .home-guide-grid { grid-template-columns: 1fr; }
  .home-guides-footer { justify-content: stretch; }
  .home-guides-footer .button { width: 100%; }
  .approach { width: calc(100% - 24px); padding-block: 0; border-radius: 28px; }
  .approach-media { min-height: 430px; }
  .approach-copy { padding: 64px 24px; }
  .approach-copy h2 { font-size: 56px; }
  .approach-lead { font-size: 15px; }
  .approach-steps b { font-size: 21px; }
  .founder { gap: 50px; }
  .founder h2 { font-size: 54px; }
  .founder-copy > p:not(.eyebrow) { font-size: 15px; }
  .founder-signoff { grid-template-columns: 1fr; }
  .founder-images { min-height: 500px; }
  .founder-portrait { width: 78%; height: 82%; border-radius: 20px; }
  .founder-tools { width: 62%; height: 34%; border-width: 8px; border-radius: 18px; }
  .reviews-heading { padding-bottom: 46px; }
  .reviews-heading h2 { font-size: 54px; }
  .review-list { gap: 12px; }
  .review-list blockquote { min-height: 290px; padding: 24px; }
  .review-list blockquote p { font-size: 27px; }
  .faq { gap: 40px; }
  .faq-heading h2 { font-size: 54px; }
  .faq-list summary { padding-block: 22px; font-size: 22px; }
  .faq-list details > div { padding-right: 32px; font-size: 13px; }
  .booking { width: calc(100% - 24px); border-radius: 28px; }
  .booking h2 { font-size: 58px; }
  .booking-inner > p:not(.eyebrow) { font-size: 15px; }
  .booking-actions { align-items: stretch; flex-direction: column; }
  .booking-actions .button { width: 100%; }
  .booking ul { gap: 12px 20px; }
  .site-footer { padding-top: 54px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; }
  .mobile-book {
    position: fixed;
    z-index: 50;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 72px;
    padding: 10px 12px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(12, 26, 46, 0.78);
    -webkit-backdrop-filter: blur(18px) saturate(1.5);
    backdrop-filter: blur(18px) saturate(1.5);
    box-shadow: 0 16px 40px rgba(12, 26, 46, 0.28);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(140%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease-out), visibility 0s linear .3s;
  }
  body.sticky-active:not(.sticky-hidden) .mobile-book { transform: none; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .mobile-book > span { display: grid; line-height: 1.2; }
  .mobile-book b { font-family: var(--serif); font-size: 16px; font-weight: 400; }
  .mobile-book small { margin-top: 4px; color: rgba(255,251,240,.8); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-book a { min-height: 46px; display: flex; align-items: center; gap: 13px; padding: 10px 18px; border-radius: 999px; background: var(--butter); color: var(--ink); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; transition-delay: 0s !important; animation-duration: .01ms !important; animation-delay: 0s !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-glow, .round-book::after { animation: none; }
  .faq-list details::details-content { transition: none; }
}
