@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 {
  --cream: #fffbf0;
  --cream-deep: #ebe5d5;
  --butter: #fdecc2;
  --peach: #ffecda;
  --brown: #6b5940;
  --brown-muted: #5f553a;
  --ink: #0c1a2e;
  --green: #315641;
  --line: rgba(12, 26, 46, 0.18);
  --line-light: rgba(255, 251, 240, 0.25);
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --max: 1440px;
  --pad: clamp(22px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  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: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.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); }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.header-inner {
  max-width: var(--max);
  min-height: 86px;
  margin: 0 auto;
  padding: 10px var(--pad);
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 24px;
}
.brand { width: 112px; display: grid; place-items: center; }
.brand img { width: 112px; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(22px, 3.2vw, 52px); }
.desktop-nav a {
  position: relative;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--brown);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-book {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.header-book:hover { background: var(--ink); color: var(--cream); }

.hero {
  position: relative;
  max-width: var(--max);
  min-height: calc(100svh - 120px);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 92px) var(--pad) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr);
  column-gap: clamp(54px, 8vw, 130px);
  align-items: center;
}
.hero-copy { align-self: center; padding-bottom: 72px; }
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero h1 { margin: 0 0 30px; font-size: clamp(66px, 7.3vw, 118px); }
.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; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 15px 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.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(--cream); 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 .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-offer {
  max-width: 590px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  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; align-self: stretch; min-height: 670px; }
.hero-frame { position: absolute; inset: 0; overflow: hidden; background: var(--cream-deep); }
.hero-frame > img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
.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: -2px;
  bottom: 0;
  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 .25s ease, background .25s ease;
}
.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;
  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-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--brown);
  color: var(--cream);
}
.proof-grid article { min-height: 190px; padding: 42px clamp(24px, 4vw, 60px); border-right: 1px solid var(--line-light); display: flex; flex-direction: column; justify-content: space-between; }
.proof-grid article:last-child { border-right: 0; }
.proof-grid strong { font-family: var(--serif); font-size: clamp(40px, 4vw, 66px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.proof-grid span { max-width: 190px; color: rgba(255,251,240,.86); font-size: 10px; letter-spacing: .12em; line-height: 1.6; text-transform: uppercase; }

.films { overflow: hidden; 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; }
.film-media { position: relative; height: min(60svh, 560px); max-height: 560px; display: block; overflow: hidden; background: #172337; }
.film-media video { width: 100%; height: 100%; object-fit: cover; }
.film-media::after { content: ""; position: absolute; inset: auto 0 0; height: 30%; background: linear-gradient(transparent, rgba(0,0,0,.54)); 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);
  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: rgba(255,255,255,.7); 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 { 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); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.treatment-card { min-height: 470px; padding: 26px 26px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.treatment-card.featured { 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: 32px; 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; }

.approach { max-width: none; padding-block: 0; display: grid; grid-template-columns: 1.04fr .96fr; background: var(--peach); }
.approach-media { position: relative; min-height: 820px; margin-left: calc(var(--pad) * -1); }
.approach-media img { width: 100%; height: 100%; object-fit: cover; }
.approach-media > span { position: absolute; right: 0; bottom: 0; padding: 18px 26px; 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 { 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%; }
.founder-tools { position: absolute; left: 0; bottom: 0; width: 54%; height: 38%; object-fit: cover; border: 14px solid var(--cream); }

.reviews { background: var(--cream-deep); }
.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); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.review-list blockquote { min-height: 370px; margin: 0; padding: 28px 32px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.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 { 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: 40px; 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; }
.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 .2s ease; }
.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); }

.booking { background: var(--brown); 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); }

.site-footer { padding: 68px var(--pad) 26px; background: var(--cream); }
.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; justify-content: space-between; gap: 30px; color: rgba(12,26,46,.7); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.mobile-book { display: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: 150px 1fr 150px; }
  .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); }
  .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) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { padding-bottom: 56px; }
  .hero h1 { font-size: clamp(70px, 13vw, 100px); }
  .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); }
  .proof-grid article:nth-child(2) { border-right: 0; }
  .proof-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .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; margin: 0 calc(var(--pad) * -1); }
  .approach-copy { max-width: none; padding: 88px 0; }
  .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; }
  html { scroll-padding-top: 10px; }
  body { padding-bottom: 76px; }
  .proof-banner { min-height: 30px; gap: 9px; padding-inline: 10px; font-size: 8px; letter-spacing: .07em; }
  .site-header { position: sticky; top: 0; }
  .header-inner { min-height: 68px; padding-block: 5px; }
  .brand { width: 92px; }
  .brand img { width: 92px; }
  .header-book { min-height: 38px; padding: 9px 12px; 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: 48px; }
  .hero-copy { padding-bottom: 44px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(57px, 17vw, 72px); }
  .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; grid-template-columns: 1fr; }
  .hero-offer strong, .hero-offer small { grid-column: 1; }
  .hero-media { min-height: 570px; margin-inline: -20px; }
  .hero-frame { height: 570px; }
  .hero-caption { top: 20px; left: 20px; }
  .round-book { width: 128px; height: 128px; right: 10px; bottom: 10px; }
  .hero-trust { margin-inline: 0; }
  .hero-trust span { min-height: 70px; padding: 14px 12px; font-size: 8px; line-height: 1.45; }
  .proof-grid article { min-height: 150px; padding: 28px 20px; }
  .proof-grid strong { font-size: 40px; }
  .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); }
  .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; }
  .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%; }
  .approach-media { min-height: 430px; }
  .approach-copy { padding-block: 78px; }
  .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%; }
  .founder-tools { width: 62%; height: 34%; border-width: 8px; }
  .reviews-heading { padding-bottom: 46px; }
  .reviews-heading h2 { font-size: 54px; }
  .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 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: 0;
    right: 0;
    bottom: 0;
    min-height: 72px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255,255,255,.15);
    background: var(--ink);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(120%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, visibility 0s linear .25s;
  }
  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 14px; 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; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}
