@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Arimo";
  src: url("assets/fonts/Arimo-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --forest: #0d3e24;
  --green: #006b3c;
  --fresh: #6db219;
  --mint: #dce9df;
  --paper: #f4f2ed;
  --white: #fff;
  --ink: #10241a;
  --muted: #617067;
  --line: rgba(13, 62, 36, .18);
  --frame: min(100% - 96px, 1420px);
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arimo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure, p, h1, h2, h3, blockquote { margin: 0; }
.frame { width: var(--frame); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--fresh); outline-offset: 4px; }

.demo-note {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 5px 24px;
  background: #081e12;
  color: rgba(255,255,255,.74);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.demo-note span { color: #b9df76; }
.demo-note strong { font-weight: 400; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); }
.site-header__inner {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 36px;
}
.brand { width: 190px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(20px, 3vw, 52px); }
.desktop-nav > a,
.services-nav > summary {
  position: relative;
  padding: 30px 0;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .035em;
}
.services-nav > summary { list-style: none; cursor: pointer; }
.services-nav > summary::-webkit-details-marker { display: none; }
.desktop-nav > a::after,
.services-nav > summary::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--fresh);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.desktop-nav > a:hover::after,
.services-nav > summary:hover::after,
.services-nav[open] > summary::after,
.services-nav > summary[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.services-nav { position: static; }
.services-mega {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 62px);
  padding: 42px clamp(28px, 4vw, 62px) 48px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 22px 40px rgba(6,35,20,.12);
}
.services-mega__intro,
.services-mega section { display: flex; flex-direction: column; align-items: flex-start; }
.services-mega__intro > span,
.services-mega section > span {
  margin-bottom: 19px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.services-mega__intro strong { max-width: 210px; color: var(--forest); font-size: 29px; font-weight: 400; letter-spacing: -.04em; line-height: 1.02; }
.services-mega a { min-height: 33px; display: flex; align-items: center; padding: 0; color: #405047; font-size: 14px; font-weight: 400; line-height: 1.25; }
.services-mega a::after { content: none; }
.services-mega a:hover { color: var(--green); }
.services-mega__intro a { margin-top: auto; padding-top: 28px; color: var(--green); font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.phone-link {
  padding: 11px 19px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}
.phone-link:hover { background: var(--forest); color: var(--white); }
.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle svg, .modal__close svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.mobile-nav {
  display: none;
  max-height: calc(100dvh - 112px);
  overflow-y: auto;
  padding: 8px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.mobile-nav.is-open { display: grid; }
.mobile-nav > a,
.mobile-services > summary { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 18px; }
.mobile-services > summary { position: relative; justify-content: space-between; list-style: none; cursor: pointer; }
.mobile-services > summary::-webkit-details-marker { display: none; }
.mobile-services > summary::after { color: var(--green); content: "+"; font-size: 22px; font-weight: 400; }
.mobile-services[open] > summary::after { content: "−"; }
.mobile-services > div { display: grid; padding: 8px 0 16px 18px; border-bottom: 1px solid var(--line); }
.mobile-services > div a { min-height: 42px; display: flex; align-items: center; color: #405047; font-size: 15px; }
.mobile-services > div .mobile-services__all { margin-top: 5px; color: var(--green); font-weight: 700; }

.hero {
  min-height: min(820px, calc(100svh - 118px));
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  grid-template-rows: 1fr auto;
  background: var(--forest);
  color: var(--white);
}
.hero__copy {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(58px, 7vw, 112px) clamp(48px, 7vw, 126px) clamp(58px, 7vw, 104px) max(48px, calc((100vw - 1420px) / 2));
}
.hero__copy-inner { width: min(100%, 680px); }
.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.overline--green { color: var(--green); }
.hero h1 {
  max-width: 680px;
  margin-top: 38px;
  font-size: clamp(58px, 6.3vw, 108px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .88;
}
.hero__lead {
  max-width: 570px;
  margin-top: 38px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.button--light { background: var(--white); color: var(--forest); }
.button--light:hover { background: #dfe9e1; }
.button--green { background: var(--green); color: var(--white); }
.button--green:hover { background: var(--forest); }
.button--outline { border-color: var(--green); background: transparent; color: var(--green); }
.button--outline:hover { background: var(--pale); }
.button--full { width: 100%; }
.line-link {
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}
.line-link--light { color: rgba(255,255,255,.88); }
.founder-sign {
  display: grid;
  gap: 1px;
  margin-top: 54px;
  padding-left: 56px;
  position: relative;
}
.founder-sign::before { position: absolute; top: 12px; left: 0; width: 38px; height: 1px; background: var(--fresh); content: ""; }
.founder-sign span { font-size: 14px; font-weight: 700; }
.founder-sign small { color: rgba(255,255,255,.58); font-size: 12px; }
.hero__portrait { position: relative; min-width: 0; overflow: hidden; background: #0b4227; }
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 51% 20%; }
.hero__portrait figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 8px 10px;
  background: rgba(8, 30, 18, .86);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}
.medical-note {
  grid-column: 1 / -1;
  padding: 7px 24px;
  background: var(--white);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .04em;
  text-align: center;
  text-transform: uppercase;
}

.proof {
  padding-block: clamp(18px, 2.5vw, 36px);
  background: #e9efe9;
  border-bottom: 1px solid var(--line);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.proof__item {
  position: relative;
  min-width: 0;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 32px clamp(24px, 2.5vw, 40px);
  overflow: hidden;
  background: var(--white);
  border-top: 3px solid var(--green);
  transition: background-color .2s ease, transform .2s ease;
}
.proof__item--clients { background: var(--mint); border-top-color: var(--fresh); }
.proof__item--reviews { background: var(--forest); border-top-color: #b9df76; color: var(--white); }
.proof__item--reviews:hover { background: #082f1b; transform: translateY(-3px); }
.proof__label {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof strong {
  margin-top: auto;
  color: var(--green);
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
.proof span { max-width: 225px; font-size: 15px; line-height: 1.25; }
.proof__meta { color: var(--muted); font-size: 10px; }
.proof__item--reviews strong { color: var(--white); }
.proof__item--reviews span { color: rgba(255,255,255,.78); }
.proof__item--reviews .proof__label, .proof__item--reviews .proof__meta { color: #b9df76; }

.philosophy {
  min-height: 720px;
  display: grid;
  grid-template-columns: 2fr 10fr;
  align-items: start;
  gap: 30px;
  padding-block: clamp(100px, 11vw, 180px);
}
.margin-note {
  padding-top: 15px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.philosophy__body { display: grid; grid-template-columns: 7fr 3fr; gap: clamp(50px, 8vw, 140px); }
.philosophy h2,
.directions__heading h2,
.contact h2 {
  font-size: clamp(52px, 7.4vw, 118px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .94;
}
.philosophy__copy { align-self: end; display: grid; gap: 28px; padding-bottom: 8px; color: #405047; }
.philosophy__copy p:first-child { color: var(--ink); font-size: 21px; }

.concierge { padding-block: clamp(90px, 10vw, 150px); background: var(--white); }
.concierge__intro {
  display: grid;
  grid-template-columns: 2fr 6fr 3fr;
  align-items: end;
  gap: 30px;
}
.concierge__intro h2 {
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .88;
}
.concierge__intro > p:last-child { max-width: 330px; padding-bottom: 6px; color: var(--muted); }
.concierge__workbench {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(70px, 10vw, 165px);
  margin-top: clamp(80px, 9vw, 130px);
}
.concierge__selector { align-self: start; }
.concierge__choices { display: grid; }
.concierge__choices button {
  min-height: 67px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: #829087;
  cursor: pointer;
  font-size: clamp(25px, 2.4vw, 39px);
  line-height: 1.15;
  text-align: left;
  transition: color .2s ease, padding-left .2s ease;
}
.concierge__choices button:first-child { border-top: 1px solid var(--line); }
.concierge__choices button:hover { color: var(--forest); }
.concierge__choices button[aria-selected="true"] { padding-left: 28px; color: var(--forest); }
.concierge__choices button[aria-selected="true"]::before { display: inline-block; width: 9px; height: 9px; margin: 0 19px 5px -28px; border-radius: 50%; background: var(--fresh); content: ""; }
.concierge__answer { min-height: 460px; display: flex; flex-direction: column; align-items: flex-start; padding-top: 10px; }
.concierge__kicker { color: var(--green); font-size: 13px; font-weight: 700; }
.concierge__answer h3 { max-width: 720px; margin-top: 25px; font-size: clamp(38px, 4vw, 64px); font-weight: 400; letter-spacing: -.045em; line-height: 1.03; }
.concierge__answer > p:not(.concierge__kicker):not(.concierge__methods) { max-width: 650px; margin-top: 36px; color: #405047; font-size: 19px; }
.concierge__methods { max-width: 600px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.concierge__all { width: fit-content; display: inline-flex; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid currentColor; color: var(--green); font-size: 13px; font-weight: 700; }
.line-button {
  min-height: 45px;
  margin-top: auto;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font-weight: 700;
}
.line-button--dark { color: var(--forest); }

.clinic-window { position: relative; height: min(76vw, 890px); min-height: 600px; overflow: hidden; scroll-margin-top: 118px; background: #cfd4cf; }
.clinic-window > img { width: 100%; height: 100%; object-fit: cover; }
.clinic-window__caption {
  position: absolute;
  bottom: 36px;
  left: max(48px, calc((100vw - 1420px) / 2));
  width: min(470px, 42vw);
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px 26px;
  padding: 24px 28px;
  background: var(--forest);
  color: var(--white);
}
.clinic-window__caption span { color: #b9df76; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.clinic-window__caption p { grid-column: 1 / -1; font-size: clamp(22px, 2.2vw, 32px); line-height: 1.08; }
.clinic-window__caption address { grid-column: 2; grid-row: 1; color: rgba(255,255,255,.78); font-size: 12px; font-style: normal; }

.directions { background: var(--paper); }
.directions__heading {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 30px;
  padding-block: clamp(110px, 11vw, 180px);
}
.practice {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(420px, .72fr);
  overflow: hidden;
}
.practice__name {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  padding: 30px 0 6px max(48px, calc((100vw - 1420px) / 2));
  font-size: clamp(96px, 14.2vw, 260px);
  letter-spacing: -.08em;
  line-height: .76;
  white-space: nowrap;
}
.practice__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px) max(48px, calc((100vw - 1420px) / 2)) clamp(60px, 8vw, 130px) clamp(48px, 6vw, 105px);
}
.practice__copy h3 { max-width: 610px; margin-top: 38px; font-size: clamp(38px, 4vw, 64px); font-weight: 400; letter-spacing: -.05em; line-height: 1.02; }
.practice__copy > p:not(.overline) { max-width: 590px; margin-top: 34px; font-size: 18px; }
.practice__copy .line-button { margin-top: 48px; }
.practice--beauty { background: var(--forest); color: var(--white); }
.practice--beauty .practice__name { color: rgba(255,255,255,.09); }
.practice--beauty .practice__copy { border-left: 1px solid rgba(255,255,255,.16); }
.practice--beauty .practice__copy > p:not(.overline) { color: rgba(255,255,255,.7); }
.practice--beauty .line-button { color: #b9df76; }
.practice--health { background: var(--mint); color: var(--forest); }
.practice--health .practice__name { color: rgba(13,62,36,.1); order: 2; padding-left: 50px; }
.practice--health .practice__copy { order: 1; padding-left: max(48px, calc((100vw - 1420px) / 2)); border-right: 1px solid rgba(13,62,36,.14); }
.practice--health .practice__copy > p:not(.overline) { color: #405047; }

.manifesto {
  position: relative;
  min-height: 800px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 130px 48px;
  background: var(--white);
}
.manifesto__word { position: absolute; color: rgba(13,62,36,.035); font-size: 29vw; font-weight: 700; letter-spacing: -.09em; line-height: 1; }
.manifesto blockquote { position: relative; width: min(100%, 1020px); text-align: center; }
.manifesto blockquote p { font-size: clamp(42px, 5.4vw, 82px); letter-spacing: -.055em; line-height: 1.03; }
.manifesto blockquote footer { margin-top: 42px; color: var(--green); font-size: 13px; font-weight: 700; }
.manifesto__aside { position: absolute; right: 38px; bottom: 42px; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.reviews {
  padding-block: clamp(96px, 10vw, 158px);
  background: var(--mint);
  color: var(--forest);
}
.reviews__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: end;
  gap: clamp(70px, 9vw, 150px);
}
.reviews__score { min-width: 0; display: grid; align-content: end; padding-right: clamp(28px, 4vw, 62px); border-right: 1px solid rgba(13,62,36,.18); }
.reviews__score strong {
  font-size: clamp(108px, 15vw, 236px);
  font-weight: 400;
  letter-spacing: -.09em;
  line-height: .72;
}
.reviews__stars {
  margin-top: 42px;
  color: var(--fresh);
  font-size: clamp(26px, 2.7vw, 42px);
  letter-spacing: .12em;
  line-height: 1;
}
.reviews__score p { margin-top: 14px; color: #405047; font-size: 13px; }
.reviews__maps-link {
  width: fit-content;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, transform .2s ease;
}
.reviews__score:hover .reviews__maps-link { color: var(--fresh); transform: translateX(4px); }
.reviews__copy h2 {
  margin-top: 28px;
  font-size: clamp(50px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .94;
}
.reviews__copy > p:not(.overline) { max-width: 680px; margin-top: 38px; color: #405047; font-size: 19px; }
.reviews__copy .line-link { display: inline-flex; margin-top: 34px; color: var(--green); }

.contact {
  display: grid;
  grid-template-columns: 7fr 5fr;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.contact__statement { padding: clamp(90px, 9vw, 150px) clamp(50px, 8vw, 140px) clamp(90px, 9vw, 150px) max(48px, calc((100vw - 1420px) / 2)); }
.contact h2 { margin-top: 34px; }
.contact h2 em { color: var(--green); font-style: normal; }
.contact__action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(90px, 9vw, 150px) max(48px, calc((100vw - 1420px) / 2)) clamp(90px, 9vw, 150px) clamp(50px, 7vw, 115px);
  background: var(--forest);
  color: var(--white);
}
.contact__action > p { max-width: 510px; color: rgba(255,255,255,.72); font-size: 19px; }
.contact__booking {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 90px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: clamp(24px, 2.5vw, 38px);
  text-align: left;
}
.contact__booking svg { width: 40px; flex: 0 0 40px; fill: none; stroke: #b9df76; stroke-width: 1.4; }
.contact__details {
  grid-column: 1 / -1;
  min-height: 170px;
  display: grid;
  grid-template-columns: 4fr 5fr 3fr;
  align-items: center;
  gap: 30px;
  padding-inline: max(48px, calc((100vw - 1420px) / 2));
  background: var(--white);
  color: var(--forest);
  font-style: normal;
}
.contact__details a { font-size: clamp(26px, 3vw, 46px); font-weight: 700; }
.contact__details span { font-size: 18px; }
.contact__details small { color: var(--muted); font-size: 11px; text-align: right; }

.site-footer { padding-block: 62px 26px; background: #081e12; color: rgba(255,255,255,.62); }
.site-footer__top { display: grid; grid-template-columns: 3fr 5fr 3fr; align-items: end; gap: 30px; padding-bottom: 55px; }
.site-footer__top img {
  width: 180px;
  height: auto;
  aspect-ratio: 977 / 270;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.site-footer__top p { font-size: 13px; }
.site-footer__top a { justify-self: end; border-bottom: 1px solid rgba(255,255,255,.4); font-size: 12px; }
.site-footer__bottom { display: grid; grid-template-columns: 3fr 4fr 4fr; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; letter-spacing: .035em; text-transform: uppercase; }
.site-footer__bottom span:last-child { text-align: right; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 18px; font-size: 10px; }
.site-footer__legal a { border-bottom: 1px solid rgba(255,255,255,.28); }

.mobile-cta { display: none; }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}
.motion-ready [data-reveal="image"] { transform: none; }
.motion-ready [data-reveal="image"] img { transform: scale(1.025); }
.motion-ready [data-reveal="solid"] { opacity: 1; }
.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="image"].is-visible img {
  transform: scale(1);
  transition: transform .72s cubic-bezier(.22, 1, .36, 1);
}
.concierge__answer.is-refreshing { animation: answer-enter .36s cubic-bezier(.22, 1, .36, 1); }

@keyframes answer-enter {
  from { opacity: .15; transform: translate3d(0, 10px, 0); }
  to { opacity: 1; transform: none; }
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  visibility: hidden;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(4,22,12,.78); cursor: pointer; }
.modal__dialog {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: 52px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}
.modal__dialog h2 { margin-top: 14px; font-size: clamp(34px, 4vw, 52px); font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.modal__dialog > p:not(.overline) { margin-top: 18px; color: var(--muted); }
.modal__close { position: absolute; top: 18px; right: 18px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 0; background: transparent; cursor: pointer; }
.contact-actions { display: grid; gap: 14px; margin-top: 32px; }
.contact-actions__chat { justify-self: center; margin-top: 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--green); cursor: pointer; }
.demo-form { display: grid; gap: 18px; margin-top: 32px; }
.demo-form label { display: grid; gap: 7px; }
.demo-form label span { color: var(--forest); font-size: 12px; font-weight: 700; }
.demo-form input, .demo-form textarea { width: 100%; border: 0; border-bottom: 1px solid #9ea9a2; border-radius: 0; background: transparent; color: var(--ink); outline: 0; }
.demo-form input { min-height: 44px; }
.demo-form textarea { padding-block: 12px; resize: vertical; }
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.demo-form small { color: var(--muted); font-size: 10px; text-align: center; }
.demo-success { padding-block: 30px 10px; text-align: center; }
.demo-success > svg { width: 60px; fill: none; stroke: var(--fresh); stroke-width: 2; }
.demo-success h3 { margin-top: 18px; font-size: 28px; font-weight: 400; }
.demo-success p { margin: 10px auto 24px; color: var(--muted); }

.clinic-chat { position: fixed; z-index: 160; right: 24px; bottom: 24px; }
.clinic-chat__toggle {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 14px 38px rgba(8, 58, 34, .28);
  color: var(--white);
  cursor: pointer;
}
.clinic-chat__toggle svg { width: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.clinic-chat__panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(13, 62, 36, .14);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(4, 22, 12, .24);
}
.clinic-chat__head { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 18px; background: var(--forest); color: var(--white); }
.clinic-chat__head div { display: grid; gap: 2px; }
.clinic-chat__head strong { font-size: 15px; letter-spacing: .08em; }
.clinic-chat__head span { color: rgba(255,255,255,.7); font-size: 11px; }
.clinic-chat__head button { width: 36px; height: 36px; padding: 0; border: 0; background: transparent; color: var(--white); font-size: 26px; line-height: 1; cursor: pointer; }
.clinic-chat__messages { height: min(350px, 46vh); overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding: 18px; background: #f4f6f2; }
.clinic-chat__message { max-width: 84%; margin: 0; padding: 10px 13px; border-radius: 15px; font-size: 14px; line-height: 1.4; white-space: pre-wrap; }
.clinic-chat__message--bot { align-self: flex-start; border-bottom-left-radius: 4px; background: var(--white); color: var(--ink); }
.clinic-chat__message--user { align-self: flex-end; border-bottom-right-radius: 4px; background: var(--green); color: var(--white); }
.clinic-chat__message--status { align-self: center; padding: 4px 8px; background: transparent; color: var(--muted); font-size: 11px; }
.clinic-chat__form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--white); }
.clinic-chat__form input { min-width: 0; height: 44px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); outline: 0; }
.clinic-chat__form input:focus { border-color: var(--green); box-shadow: 0 0 0 2px rgba(22, 137, 78, .12); }
.clinic-chat__form button { min-height: 44px; padding: 0 14px; border: 0; border-radius: 999px; background: var(--green); color: var(--white); font-size: 12px; font-weight: 700; cursor: pointer; }

@media (max-width: 1120px) {
  :root { --frame: min(100% - 56px, 1420px); }
  .site-header__inner { grid-template-columns: 190px 1fr auto; gap: 20px; }
  .desktop-nav { gap: 20px; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr); }
  .hero__copy { padding-right: 52px; }
  .hero h1 { font-size: clamp(54px, 7vw, 76px); }
  .philosophy__body { grid-template-columns: 1fr; }
  .philosophy__copy { max-width: 600px; padding-left: 25%; }
  .concierge__intro { grid-template-columns: 1fr 5fr 3fr; }
  .practice { min-height: 620px; grid-template-columns: 1fr 1fr; }
  .practice__name { font-size: 13vw; }
  .contact__details { grid-template-columns: 1fr 1fr; }
  .contact__details small { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .brand { width: 168px; }
  .menu-toggle { display: grid; }
  .hero { min-height: 680px; grid-template-columns: 1.05fr .95fr; }
  .hero__copy { padding: 56px 34px 56px 28px; }
  .hero h1 { margin-top: 26px; font-size: clamp(46px, 7.3vw, 62px); }
  .hero__lead { margin-top: 26px; font-size: 15px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 13px; margin-top: 26px; }
  .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .founder-sign { margin-top: 34px; }
  .philosophy { min-height: 600px; grid-template-columns: 1fr 7fr; }
  .philosophy h2, .directions__heading h2, .contact h2 { font-size: clamp(52px, 9vw, 82px); }
  .concierge__intro { grid-template-columns: 1fr; }
  .concierge__intro > p:last-child { margin-top: 26px; }
  .concierge__workbench { grid-template-columns: 1fr 1.1fr; gap: 48px; }
  .concierge__choices button { min-height: 61px; font-size: 24px; }
  .concierge__answer { min-height: 490px; }
  .clinic-window { min-height: 550px; }
  .clinic-window__caption { left: 28px; width: min(470px, calc(100% - 56px)); padding: 24px 28px; }
  .directions__heading { grid-template-columns: 1fr 7fr; }
  .practice { grid-template-columns: 1fr; }
  .practice__name { min-height: 230px; padding-left: 28px; font-size: 22vw; }
  .practice__copy { min-height: 540px; padding: 70px 28px; border: 0 !important; }
  .practice--health .practice__name { order: 1; padding-left: 28px; }
  .practice--health .practice__copy { order: 2; }
  .manifesto { min-height: 650px; }
  .reviews__grid { grid-template-columns: 1fr 1.25fr; gap: 48px; }
  .contact { grid-template-columns: 1fr; }
  .contact__statement, .contact__action { padding-inline: 28px; }
  .contact__action { min-height: 480px; }
  .contact__details { min-height: 220px; padding: 40px 28px; }
}

@media (max-width: 680px) {
  :root { --frame: calc(100% - 40px); }
  body { font-size: 16px; padding-bottom: 64px; }
  .demo-note { min-height: 42px; align-items: flex-start; flex-direction: column; gap: 0; padding: 6px 20px; line-height: 1.35; }
  .modal { padding: 16px; }
  .modal__dialog { padding: 44px 24px 34px; }
  .clinic-chat { right: 16px; bottom: 86px; }
  .clinic-chat__toggle { width: 56px; height: 56px; }
  .clinic-chat__panel { bottom: 68px; }
  .site-header__inner { min-height: 70px; }
  .brand { width: 145px; }
  .phone-link { display: none; }
  .hero { display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 0; }
  .hero__portrait { grid-row: 1; height: 116vw; min-height: 430px; max-height: 610px; }
  .hero__portrait img { object-position: 50% 15%; }
  .hero__portrait figcaption { right: 16px; bottom: 14px; color: var(--white); }
  .hero__copy { grid-row: 2; padding: 52px 20px 58px; }
  .hero h1 { margin-top: 28px; font-size: clamp(49px, 15vw, 67px); }
  .hero__lead { font-size: 17px; }
  .hero__actions { align-items: stretch; }
  .hero__actions .line-link { align-self: center; }
  .founder-sign { margin-top: 42px; }
  .medical-note { grid-row: 3; padding-inline: 18px; }
  .proof { padding-block: 12px; }
  .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .proof__item { min-height: 184px; gap: 5px; padding: 20px; }
  .proof strong { font-size: clamp(34px, 10.5vw, 46px); }
  .proof__item--clients strong { font-size: clamp(33px, 9.4vw, 42px); white-space: nowrap; }
  .proof__item--experts strong { font-size: clamp(27px, 7.6vw, 31px); }
  .proof span { font-size: 13px; }
  .philosophy { min-height: 0; grid-template-columns: 1fr; gap: 40px; padding-block: 96px; }
  .margin-note { padding-top: 0; }
  .philosophy__body { gap: 48px; }
  .philosophy h2, .directions__heading h2, .contact h2 { font-size: clamp(47px, 13.2vw, 64px); }
  .philosophy__copy { gap: 22px; padding-left: 0; }
  .philosophy__copy p:first-child { font-size: 19px; }
  .concierge { padding-block: 90px; }
  .concierge__intro h2 { font-size: clamp(48px, 13vw, 62px); line-height: .94; }
  .concierge__workbench { grid-template-columns: 1fr; gap: 65px; margin-top: 68px; }
  .concierge__choices button { min-height: 64px; font-size: 25px; }
  .concierge__answer { min-height: 490px; }
  .concierge__answer h3 { font-size: 40px; }
  .concierge__answer > p:not(.concierge__kicker):not(.concierge__methods) { font-size: 17px; }
  .clinic-window { height: 134vw; min-height: 590px; max-height: 760px; }
  .clinic-window > img { object-position: 52% center; }
  .clinic-window__caption { right: 20px; bottom: 20px; left: 20px; width: auto; padding: 18px 20px; }
  .clinic-window__caption p { font-size: 23px; }
  .clinic-window__caption address { font-size: 11px; }
  .directions__heading { grid-template-columns: 1fr; gap: 38px; padding-block: 98px; }
  .practice__name { display: none; }
  .practice__copy { min-height: 0; padding: 88px 20px 104px; }
  .practice__copy h3 { font-size: clamp(36px, 10.5vw, 44px); line-height: 1.04; }
  .practice__copy > p:not(.overline) { font-size: 17px; }
  .practice--health .practice__name { display: none; }
  .manifesto { min-height: 640px; padding: 100px 20px; }
  .manifesto__word { display: none; }
  .manifesto blockquote p { font-size: clamp(38px, 11vw, 46px); }
  .manifesto__aside { right: 20px; bottom: 28px; }
  .reviews { padding-block: 92px; }
  .reviews__grid { grid-template-columns: 1fr; align-items: start; gap: 70px; }
  .reviews__score { padding-right: 0; padding-bottom: 50px; border-right: 0; border-bottom: 1px solid rgba(13,62,36,.18); }
  .reviews__score strong { font-size: clamp(112px, 39vw, 156px); }
  .reviews__stars { margin-top: 34px; }
  .reviews__copy h2 { font-size: clamp(46px, 13vw, 62px); }
  .reviews__copy > p:not(.overline) { margin-top: 30px; font-size: 17px; }
  .contact__statement, .contact__action { padding: 90px 20px; }
  .contact__action { min-height: 500px; }
  .contact__action > p { font-size: 17px; }
  .contact__booking { margin-top: 80px; font-size: 28px; }
  .contact__details { min-height: 260px; grid-template-columns: 1fr; gap: 18px; padding: 48px 20px; }
  .contact__details small { grid-column: auto; }
  .site-footer { padding-bottom: calc(30px + env(safe-area-inset-bottom)); }
  .site-footer__top, .site-footer__bottom { grid-template-columns: 1fr; gap: 26px; }
  .site-footer__top { align-items: start; }
  .site-footer__top img { width: 156px; height: auto; max-height: 44px; }
  .site-footer__top a { justify-self: start; }
  .site-footer__bottom span:last-child { text-align: left; }
  .site-footer__legal { align-items: flex-start; flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: auto;
    min-width: 154px;
    min-height: 50px;
    display: block;
    border: 0;
    border-radius: 999px;
    background: var(--fresh);
    color: #0b2b18;
    box-shadow: 0 12px 30px rgba(13,62,36,.22);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .show-mobile-cta:not(.hide-mobile-cta):not(.suppress-mobile-cta):not(.inline-mobile-cta) .mobile-cta { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .modal { padding: 10px; }
  .modal__dialog { max-height: calc(100dvh - 20px); padding: 42px 20px 24px; }
}

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