@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #171a18;
  --ink-soft: #292d2a;
  --forest: #20342e;
  --forest-light: #2c4740;
  --sage: #dce6df;
  --sage-soft: #edf2ee;
  --bone: #f3f0ea;
  --cream: #fbfaf7;
  --white: #ffffff;
  --line: #d4d5cf;
  --line-dark: rgba(255, 255, 255, .2);
  --muted: #646963;
  --success: #23724d;
  --danger: #a33b33;
  --sans: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --shell: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 92px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-smooth: cubic-bezier(.65, 0, .35, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, ul, ol, dl, dd, figure, address { margin: 0; }
ul, ol { padding: 0; list-style: none; }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
section[id] { scroll-margin-top: calc(var(--header-height) + 16px); }
:focus { scroll-margin-top: calc(var(--header-height) + 18px); scroll-margin-bottom: 72px; }
:focus-visible { outline: 3px solid #5a8b75; outline-offset: 4px; }
::selection { background: var(--forest); color: var(--white); }

.site-shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(90px, 10vw, 150px); }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  translate: 0 -150%;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  font-weight: 750;
}
.skip-link:focus { translate: 0; }

.kicker {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker-light { color: rgba(255, 255, 255, .74); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:active { transform: scale(.975); }
.button-dark { background: var(--ink); color: var(--white); }
.button-light { background: var(--cream); color: var(--ink); }
.button-back { border-color: var(--line); background: transparent; color: var(--ink); }
.button-large { min-height: 58px; padding-inline: 30px; font-size: 14px; }
.text-link {
  min-height: 44px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 720;
  transition: gap 180ms var(--ease-out), color 180ms ease;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-height);
  background: rgba(251, 250, 247, .95);
  border-bottom: 1px solid rgba(23, 26, 24, .12);
  backdrop-filter: blur(16px);
  transition: height 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}
.site-header.is-scrolled { height: 80px; background: rgba(255, 255, 255, .96); box-shadow: 0 10px 35px rgba(23, 26, 24, .07); }
.header-row {
  min-height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.site-nav a, .header-phone {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 680;
  letter-spacing: .015em;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right 180ms var(--ease-out);
}
.brand {
  width: 70px;
  height: 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand img { width: 58px; height: 70px; object-fit: contain; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 20px; }
.header-phone { color: var(--muted); }
.header-book { min-width: 114px; }

/* Hero */
.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  background: var(--bone);
}
.hero-copy-wrap { display: grid; align-items: center; }
.hero-copy {
  width: min(100%, 780px);
  margin-left: max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
  padding: clamp(78px, 9vw, 138px) clamp(44px, 6vw, 96px) clamp(62px, 8vw, 110px) 0;
}
.hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-enter 780ms var(--ease-out) forwards;
}
.hero-copy > :nth-child(1) { animation-delay: 60ms; }
.hero-copy > :nth-child(2) { animation-delay: 110ms; }
.hero-copy > :nth-child(3) { animation-delay: 170ms; }
.hero-copy > :nth-child(4) { animation-delay: 220ms; }
.hero-copy > :nth-child(5) { animation-delay: 280ms; }
@keyframes hero-enter { to { opacity: 1; transform: translateY(0); } }
.hero h1 {
  max-width: 720px;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(4.6rem, 6.8vw, 7.7rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.045em;
}
.hero h1 em { color: var(--forest); font-weight: 400; }
.hero-intro {
  max-width: 590px;
  margin-top: 32px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.62;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.hero-meta {
  max-width: 660px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(62px, 9vh, 104px);
  border-top: 1px solid var(--line);
}
.hero-meta p {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.hero-meta p::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--forest);
}
.hero-meta p + p { padding-left: 18px; border-left: 1px solid var(--line); }
.hero-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #d8d6cf;
  clip-path: inset(0);
  animation: image-reveal 1000ms var(--ease-smooth) both;
}
@keyframes image-reveal { from { clip-path: inset(100% 0 0); } }
.hero-media::before {
  content: "";
  position: absolute;
  inset: -28px;
  background: linear-gradient(rgba(20, 30, 27, .12), rgba(20, 30, 27, .18)), url("assets/images/glow-zone-practitioner-treatment.webp") center / cover;
  filter: blur(20px) saturate(.75);
  transform: scale(1.08);
}
.hero-media > img {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  height: 100%;
  margin-inline: auto;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 80px rgba(10, 20, 16, .14);
  animation: hero-drift 14s ease-in-out infinite alternate;
}
@keyframes hero-drift { to { transform: scale(1.025); } }
.hero-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10, 18, 15, .36));
  pointer-events: none;
}
.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(22px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.media-dot { width: 8px; height: 8px; border-radius: 50%; background: #d9ef92; box-shadow: 0 0 0 5px rgba(217, 239, 146, .18); }
.preview-image-note {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 18px;
  padding: 6px 8px 5px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(20,30,27,.46);
  color: rgba(255,255,255,.78);
  font-size: 8px;
  font-weight: 680;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.service-ribbon {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
}
.service-ribbon-track {
  min-height: 66px;
  display: flex;
  align-items: center;
}
.service-ribbon-set { width: 100%; display: flex; align-items: center; justify-content: space-around; gap: 24px; padding-inline: var(--gutter); }
.service-ribbon-set[aria-hidden="true"] { display: none; }
.service-ribbon span { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 30px); }
.service-ribbon i { width: 5px; height: 5px; flex: 0 0 auto; border-radius: 50%; background: var(--forest); }

/* Treatments */
.treatments { background: var(--cream); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  column-gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 82px);
}
.section-heading .kicker { grid-column: 1 / -1; margin-bottom: 18px; }
.section-heading h2 {
  max-width: 860px;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
}
.section-heading > p:last-child { max-width: 450px; padding-bottom: 8px; color: var(--muted); line-height: 1.65; }
.treatment-browser { border-top: 1px solid var(--ink); }
.treatment-tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.treatment-tabs button {
  position: relative;
  min-width: 0;
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 8px 12px;
  padding: 24px 24px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background-color 220ms ease, color 220ms ease;
}
.treatment-tabs button:last-child { border-right-color: var(--ink); }
.treatment-tabs button:first-child { border-left: 1px solid var(--ink); }
.tab-number { grid-column: 1; color: var(--muted); font-family: var(--serif); font-size: 17px; }
.tab-title { grid-column: 1 / -1; align-self: end; font-family: var(--serif); font-size: clamp(30px, 3vw, 46px); line-height: 1; }
.tab-copy { grid-column: 1; max-width: 180px; color: var(--muted); font-size: 11px; line-height: 1.35; }
.tab-arrow { grid-column: 2; align-self: end; font-size: 20px; transition: transform 180ms var(--ease-out); }
.treatment-tabs button[aria-selected="true"] { background: var(--forest); color: var(--white); }
.treatment-tabs button[aria-selected="true"] .tab-number,
.treatment-tabs button[aria-selected="true"] .tab-copy { color: rgba(255, 255, 255, .7); }
.treatment-tabs button[aria-selected="true"] .tab-arrow { transform: rotate(45deg); }
.treatment-panels { background: var(--sage-soft); }
.treatment-panel { min-height: 620px; display: grid; grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr); }
.js .treatment-panel:not(.is-active), .treatment-panel[hidden] { display: none; }
.treatment-panel.is-entering .panel-image { animation: panel-image 340ms var(--ease-out) both; }
.treatment-panel.is-entering .panel-content { animation: panel-copy 300ms 40ms var(--ease-out) both; }
@keyframes panel-image { from { opacity: .3; transform: scale(1.012); } }
@keyframes panel-copy { from { opacity: 0; transform: translateY(12px); } }
.panel-image { position: relative; min-height: 620px; overflow: hidden; background: #c9d2cb; }
.panel-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.panel-image-photo img { object-position: center; }
.panel-image-type {
  position: relative;
  display: grid;
  place-items: end start;
  isolation: isolate;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
}
.panel-image-type::before,
.panel-image-type::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
}
.panel-image-type::before { width: 72%; aspect-ratio: 1; top: -14%; right: -20%; border: 1px solid rgba(255,255,255,.55); }
.panel-image-type::after { width: 46%; aspect-ratio: 1; right: 12%; bottom: 12%; background: rgba(255,255,255,.16); }
.panel-image-type span {
  max-width: 100%;
  color: rgba(255,255,255,.96);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: .8;
  letter-spacing: -.055em;
  overflow-wrap: anywhere;
}
.panel-image-skin { background: #39544b; }
.panel-image-laser { background: #8b7564; }
.panel-image-injectables { background: #56625d; }
.panel-image-body { background: #726d63; }
.panel-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 108px); }
.panel-kicker { color: var(--forest-light); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.panel-content h3 {
  max-width: 650px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 6.2rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.04em;
}
.panel-content > p:not(.panel-kicker) { max-width: 520px; margin-top: 28px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.panel-content ul { max-width: 580px; display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 30px; border-top: 1px solid var(--line); }
.panel-content li { min-height: 50px; display: flex; align-items: center; padding-right: 18px; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 680; }
.panel-content li:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--line); }
.panel-content .text-link { margin-top: 34px; }
.clinical-note { margin-top: 16px; color: var(--muted); font-size: 11px; }

/* Clinic */
.clinic { background: var(--bone); }
.clinic-grid { display: grid; grid-template-columns: minmax(390px, .92fr) minmax(0, 1.08fr); gap: clamp(72px, 9vw, 138px); align-items: center; }
.clinic-gallery {
  position: relative;
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .46fr);
  grid-template-rows: 1fr auto;
  gap: 20px;
  align-items: end;
}
.clinic-gallery-main { position: relative; height: 700px; overflow: hidden; background: #d3d7d2; }
.clinic-gallery-main img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.clinic-gallery-detail { height: 330px; overflow: hidden; background: #d3d7d2; }
.clinic-gallery-detail img { width: 100%; height: 100%; object-fit: cover; }
.clinic-gallery-mark { display: grid; place-items: center; background: var(--forest); }
.clinic-gallery-mark img { width: min(62%, 122px); height: auto; filter: invert(1) brightness(3); }
.clinic-gallery > p { grid-column: 1 / -1; color: var(--muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.clinic-gallery > p a { border-bottom: 1px solid currentColor; }
.clinic-copy { max-width: 720px; }
.clinic-copy h2 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
}
.clinic-lede { max-width: 620px; margin-top: 30px; color: var(--ink-soft); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; }
.clinic-details { margin-top: 42px; border-top: 1px solid var(--ink); }
.clinic-details div { min-height: 66px; display: grid; grid-template-columns: 58px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.clinic-details dt { color: var(--muted); font-family: var(--serif); font-size: 18px; }
.clinic-details dd { font-size: 13px; font-weight: 680; }
.clinic-actions { display: flex; align-items: center; gap: 28px; margin-top: 36px; }

/* Direct booking */
.booking-callout {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  padding-block: 0;
  background: var(--forest);
  color: var(--white);
}
.booking-callout-image { position: relative; min-height: 760px; overflow: hidden; background: #243a33; }
.booking-callout-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78); }
.booking-callout-type {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  background: linear-gradient(145deg, #dce6df 0 52%, #aebdb4 52% 100%);
}
.booking-callout-type::before { content: ""; position: absolute; width: 72%; aspect-ratio: 1; top: -14%; right: -26%; border: 1px solid rgba(32,52,46,.3); border-radius: 50%; }
.booking-callout-type span { color: var(--forest); font-family: var(--serif); font-size: clamp(4.5rem, 7vw, 8rem); line-height: .78; letter-spacing: -.055em; }
.booking-callout-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 9vw, 150px); }
.booking-callout-copy h2 {
  max-width: 820px;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.04em;
}
.booking-callout-copy > p:not(.kicker) { max-width: 650px; margin-top: 30px; color: rgba(255, 255, 255, .82); font-size: 18px; line-height: 1.6; }
.booking-callout-copy .button { margin-top: 34px; align-self: flex-start; }
.call-link { width: fit-content; margin-top: 26px; color: var(--white); font-size: 14px; font-weight: 700; }
.call-link span { color: rgba(255, 255, 255, .68); font-weight: 500; }

/* Visit */
.visit { background: var(--white); }
.visit-grid { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); gap: clamp(70px, 11vw, 170px); align-items: center; }
.visit-mark { min-height: 590px; display: grid; place-items: center; background: var(--sage); }
.visit-mark img { width: min(55%, 240px); height: auto; }
.visit-copy h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 7vw, 8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.045em;
}
.visit-copy address { margin-top: 30px; font-size: clamp(18px, 1.6vw, 22px); font-style: normal; line-height: 1.5; }
.visit-links { margin-top: 44px; border-top: 1px solid var(--ink); }
.visit-links a {
  min-height: 72px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.visit-links span { color: var(--muted); font-size: 11px; }
.visit-links strong { font-size: 14px; }
.visit-links i { font-size: 20px; font-style: normal; transition: transform 180ms var(--ease-out); }

/* Complete treatment index */
.service-index { background: var(--sage-soft); }
.service-index-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  column-gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 82px);
}
.service-index-heading .kicker { grid-column: 1 / -1; margin-bottom: 18px; }
.service-index-heading h2 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.045em;
}
.service-index-heading > p:last-child { max-width: 480px; padding-bottom: 8px; color: var(--muted); line-height: 1.65; }
.service-index-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.service-index-grid article { min-width: 0; padding: 26px clamp(18px, 2.3vw, 34px) 34px; }
.service-index-grid article + article { border-left: 1px solid var(--line); }
.service-index-grid article > span { color: var(--muted); font-family: var(--serif); font-size: 16px; }
.service-index-grid h3 { margin-top: 30px; font-family: var(--serif); font-size: clamp(2.4rem, 3.6vw, 4rem); font-weight: 400; line-height: .9; }
.service-index-grid ul { margin-top: 28px; }
.service-index-grid li { min-height: 46px; display: flex; align-items: center; border-top: 1px solid var(--line); font-size: 12px; font-weight: 650; line-height: 1.35; }
.service-index-note { margin-top: 16px; color: var(--muted); font-size: 11px; }

/* FAQ */
.faq { background: var(--bone); }
.faq-grid { display: grid; grid-template-columns: minmax(260px, .6fr) minmax(0, 1.4fr); gap: clamp(60px, 10vw, 150px); }
.faq h2 { margin-top: 16px; font-family: var(--serif); font-size: clamp(3.5rem, 5vw, 6rem); font-weight: 400; line-height: .88; letter-spacing: -.04em; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--serif); font-size: 30px; font-weight: 400; transition: transform 220ms var(--ease-out); }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 46px 28px 0; color: var(--muted); line-height: 1.65; }
.faq-list details p a { border-bottom: 1px solid currentColor; }

/* Footer */
.site-footer { padding-block: 78px 26px; background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr auto; gap: 80px; }
.footer-brand img { width: 92px; height: 112px; object-fit: contain; filter: invert(1) brightness(3); }
.footer-brand p { max-width: 370px; margin-top: 24px; color: rgba(255, 255, 255, .68); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(130px, 1fr)); gap: clamp(60px, 8vw, 120px); }
.footer-links div { display: flex; flex-direction: column; gap: 12px; }
.footer-links span { margin-bottom: 8px; color: rgba(255, 255, 255, .48); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { min-height: 30px; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 68px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: rgba(255, 255, 255, .5); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

/* Booking dialog */
dialog {
  width: min(1180px, calc(100vw - 32px));
  max-width: none;
  height: min(790px, calc(100dvh - 32px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 35px 120px rgba(9, 16, 13, .28);
}
dialog::backdrop { background: rgba(10, 17, 14, .7); backdrop-filter: blur(8px); }
dialog[open] { animation: dialog-in 300ms var(--ease-out) both; }
dialog[open]::backdrop { animation: backdrop-in 250ms ease both; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.985); } }
@keyframes backdrop-in { from { opacity: 0; } }
.booking-shell { width: 100%; height: 100%; display: grid; grid-template-columns: 310px minmax(0, 1fr); background: var(--cream); }
.booking-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 38px 38px;
  background: var(--forest);
  color: var(--white);
}
.booking-aside > img { width: 72px; height: 88px; object-fit: contain; filter: invert(1) brightness(3); }
.booking-aside > div > p { color: rgba(255, 255, 255, .58); font-size: 10px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.booking-aside h2 { max-width: 230px; margin-top: 14px; font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: .9; }
.booking-aside ol { margin-top: 44px; border-top: 1px solid var(--line-dark); }
.booking-aside li { min-height: 54px; display: grid; grid-template-columns: 38px 1fr; align-items: center; border-bottom: 1px solid var(--line-dark); color: rgba(255, 255, 255, .45); font-size: 12px; transition: color 180ms ease; }
.booking-aside li span { font-family: var(--serif); font-size: 16px; }
.booking-aside li.is-current, .booking-aside li.is-complete { color: var(--white); }
.booking-aside > a { color: rgba(255, 255, 255, .62); font-size: 11px; }
.booking-aside > a strong { display: block; margin-top: 3px; color: var(--white); font-size: 14px; }
.booking-panel { position: relative; min-width: 0; overflow: auto; padding: 56px clamp(36px, 6vw, 78px) 50px; background: var(--cream); }
.dialog-close {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
  color: transparent;
  font-size: 0;
}
.dialog-close::before,
.dialog-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(45deg);
}
.dialog-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.booking-header h2 { margin-top: 12px; font-family: var(--serif); font-size: clamp(42px, 5vw, 66px); font-weight: 400; line-height: .9; }
.booking-header > p:last-child { margin-top: 14px; color: var(--muted); font-size: 14px; }
.booking-progress { margin: 34px 0 30px; }
.progress-track { height: 2px; overflow: hidden; background: var(--line); }
.progress-track i { display: block; width: 33.333%; height: 100%; background: var(--forest); transition: width 300ms var(--ease-out); }
.booking-progress p { display: flex; justify-content: space-between; margin-top: 10px; color: var(--muted); font-size: 10px; }
.booking-progress strong { color: var(--ink); font-weight: 700; }
.booking-step legend { width: 100%; margin-bottom: 24px; font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); line-height: 1; }
.step-intro { margin-top: -10px; margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choice-grid label { position: relative; min-width: 0; cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid label > span {
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 170ms ease, background-color 170ms ease, transform 170ms var(--ease-out);
}
.choice-grid label > span::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border: 1px solid #aaa;
  border-radius: 4px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.choice-grid b { font-size: 14px; }
.choice-grid small { color: var(--muted); font-size: 11px; line-height: 1.35; }
.choice-grid input:checked + span { border-color: var(--forest); background: var(--sage-soft); }
.choice-grid input:checked + span::after { content: "✓"; border-color: var(--forest); background: var(--forest); }
.choice-grid input:focus-visible + span { outline: 3px solid #5a8b75; outline-offset: 3px; }
.choice-wide { grid-column: 1 / -1; }
.choice-wide > span { min-height: 76px !important; }
.field-label, .form-field > label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 750; }
.form-field > label small { color: var(--muted); font-weight: 500; }
.text-field {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.text-field:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(32, 52, 46, .12); }
.text-field[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(163, 59, 51, .1); }
.date-control {
  position: relative;
  min-height: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.date-control:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(32, 52, 46, .12); }
.date-control:has(#preferred-date[aria-invalid="true"]) { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(163, 59, 51, .1); }
#preferred-date {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.date-display {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 15px;
  color: var(--muted);
  font-size: 15px;
  pointer-events: none;
}
.date-control.has-value .date-display { color: var(--ink); }
.date-display svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--forest); }
.date-display path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
textarea.text-field { resize: vertical; }
.time-choices { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }
.time-choices label > span { min-height: 78px; }
.form-note, .privacy-note, .preview-note { margin-top: 14px; color: var(--muted); font-size: 10px; }
.preview-note { padding: 11px 13px; border-left: 2px solid var(--forest); background: var(--sage-soft); font-weight: 650; }
.form-error, .field-error { margin-top: 10px; color: var(--danger); font-size: 12px; font-weight: 680; }
.field-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 14px; }
.form-field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field-error { margin-bottom: 2px; }
.step-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 30px; }
.step-actions-end { justify-content: flex-end; }
.submit-request.is-sending { cursor: wait; opacity: .76; }
.booking-success { min-height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 20px 3vw; }
.booking-success[hidden] { display: none; }
.success-mark { position: relative; width: 94px; height: 94px; display: grid; place-items: center; margin-bottom: 34px; }
.success-mark i { position: absolute; inset: 0; border: 1px solid var(--success); border-radius: 50%; animation: success-ring 620ms var(--ease-out) both; }
.success-mark b { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--success); color: var(--white); font-size: 25px; animation: success-check 500ms 180ms var(--ease-out) both; }
@keyframes success-ring { from { transform: scale(.55); opacity: 0; } }
@keyframes success-check { from { transform: scale(.3) rotate(-16deg); opacity: 0; } }
.booking-success h2 { margin-top: 12px; font-family: var(--serif); font-size: clamp(52px, 7vw, 82px); font-weight: 400; line-height: .9; }
.booking-success > p:not(.kicker) { max-width: 600px; margin-top: 20px; color: var(--muted); line-height: 1.6; }
.booking-success dl { width: min(100%, 620px); margin-top: 34px; border-top: 1px solid var(--ink); }
.booking-success dl div { min-height: 62px; display: grid; grid-template-columns: 150px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.booking-success dt { color: var(--muted); font-size: 11px; }
.booking-success dd { font-size: 13px; font-weight: 680; }
.booking-success .button { margin-top: 34px; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 680ms var(--ease-out), transform 680ms var(--ease-out); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (hover: hover) {
  .site-nav a:hover::after { right: 0; }
  .button:hover { transform: translateY(-2px); }
  .button-dark:hover { background: var(--forest); }
  .button-light:hover { background: var(--sage); }
  .text-link:hover { gap: 24px; color: var(--forest-light); }
  .treatment-tabs button:hover:not([aria-selected="true"]) { background: var(--sage-soft); }
  .visit-links a:hover i { transform: translate(4px, -4px); }
}

@media (max-width: 1100px) {
  :root { --header-height: 82px; }
  .site-header { height: var(--header-height); }
  .header-phone { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr); }
  .hero-copy { padding-right: 38px; }
  .hero h1 { font-size: clamp(4.2rem, 7.4vw, 6.2rem); }
  .treatment-tabs button { min-height: 168px; padding-inline: 18px; }
  .clinic-grid { grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr); gap: 60px; }
  .booking-callout-copy { padding-inline: 8vw; }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-row { grid-template-columns: auto 1fr; }
  .brand { justify-self: start; width: 58px; height: 70px; }
  .brand img { width: 49px; height: 60px; }
  .header-actions { grid-column: 2; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { width: auto; margin-left: 0; padding: 82px var(--gutter) 70px; }
  .hero h1 { font-size: clamp(4.3rem, 11vw, 7rem); }
  .hero-media { min-height: min(84vw, 760px); }
  .hero-media > img { width: min(72%, 510px); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { margin-top: 24px; }
  .treatment-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid var(--ink); }
  .treatment-tabs button { min-height: 156px; border-left: 0 !important; }
  .treatment-tabs button:nth-child(2) { border-right-color: var(--ink); }
  .treatment-panel { grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); }
  .panel-content { padding: 52px; }
  .clinic-grid { grid-template-columns: 1fr; }
  .clinic-gallery { width: min(100%, 650px); }
  .clinic-copy { max-width: 760px; }
  .booking-callout { grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); }
  .booking-callout-copy { padding: 70px 52px; }
  .visit-grid { grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: 54px; }
  .visit-mark { min-height: 500px; }
  .service-index-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-index-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--ink); }
  .service-index-grid article:nth-child(4) { border-top: 1px solid var(--ink); }
  .faq-grid { grid-template-columns: 1fr; }
  .booking-shell { grid-template-columns: 250px minmax(0, 1fr); }
  .booking-aside { padding-inline: 28px; }
}

@media (max-width: 680px) {
  :root { --header-height: 72px; }
  .section { padding-block: 82px; }
  .site-header.is-scrolled { height: 68px; }
  .header-book { min-width: 102px; min-height: 44px; padding-inline: 18px; }
  .hero-copy { padding-top: 70px; padding-bottom: 58px; }
  .hero h1 { font-size: clamp(3.65rem, 16.5vw, 5.2rem); line-height: .86; }
  .hero-intro { margin-top: 26px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: center; }
  .hero-meta { grid-template-columns: 1fr; margin-top: 54px; }
  .hero-meta p { min-height: 54px; padding: 0; }
  .hero-meta p + p { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .hero-media { min-height: 116vw; max-height: 720px; }
  .hero-media > img { width: min(86%, 510px); }
  .service-ribbon-track { width: 100%; }
  .service-ribbon-set { width: 100%; gap: 10px; padding-inline: 18px; }
  .service-ribbon span { font-size: clamp(17px, 5.5vw, 22px); }
  .service-ribbon i { width: 4px; height: 4px; }
  .section-heading h2 { font-size: clamp(3.4rem, 15vw, 5rem); }
  .treatment-tabs button { min-height: 150px; padding: 18px 15px; }
  .tab-title { font-size: 34px; }
  .tab-copy { font-size: 10px; }
  .treatment-panel { min-height: 0; grid-template-columns: 1fr; }
  .panel-image { min-height: 108vw; max-height: 610px; }
  .panel-content { padding: 48px 22px 58px; }
  .panel-content h3 { font-size: clamp(3.2rem, 14vw, 4.6rem); }
  .panel-content ul { grid-template-columns: 1fr; }
  .panel-content li:nth-child(even) { padding-left: 0; border-left: 0; }
  .clinic-gallery { min-height: 570px; grid-template-columns: minmax(0, 1fr) 34%; gap: 12px; }
  .clinic-gallery-main { height: 540px; }
  .clinic-gallery-detail { height: 220px; }
  .clinic-copy h2 { font-size: clamp(3.7rem, 16vw, 5.4rem); }
  .clinic-lede { font-size: 17px; }
  .clinic-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .clinic-actions .button { width: 100%; }
  .booking-callout { min-height: 0; grid-template-columns: 1fr; }
  .booking-callout-image { min-height: 105vw; max-height: 620px; }
  .booking-callout-copy { padding: 70px var(--gutter) 78px; }
  .booking-callout-copy h2 { font-size: clamp(3.7rem, 16vw, 5.5rem); }
  .booking-callout-copy > p:not(.kicker) { font-size: 16px; }
  .booking-callout-copy .button { width: 100%; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-mark { min-height: 92vw; }
  .visit-copy h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .visit-links a { grid-template-columns: 84px 1fr auto; gap: 12px; }
  .service-index-heading { grid-template-columns: 1fr; }
  .service-index-heading > p:last-child { margin-top: 24px; }
  .service-index-grid { grid-template-columns: 1fr; }
  .service-index-grid article + article { border-top: 1px solid var(--ink); border-left: 0; }
  .service-index-grid h3 { font-size: 3.4rem; }
  .faq-list summary { min-height: 76px; font-size: 14px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }

  dialog { width: 100vw; height: 100dvh; border-radius: 0; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-aside { display: none; }
  .booking-panel { padding: 74px 20px 42px; }
  .dialog-close { position: fixed; top: 14px; right: 14px; }
  .booking-header h2 { font-size: 48px; }
  .choice-grid { grid-template-columns: 1fr; }
  .choice-wide { grid-column: auto; }
  .time-choices { grid-template-columns: 1fr; }
  .choice-grid label > span { min-height: 74px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: 1; }
  .step-actions { align-items: stretch; flex-direction: column-reverse; }
  .step-actions .button { width: 100%; }
  .step-actions-end { flex-direction: column; }
  .booking-success { padding: 32px 2px 54px; }
  .booking-success dl div { grid-template-columns: 110px 1fr; }

}

@media (max-width: 360px) {
  .site-shell { padding-inline: 16px; }
  .footer-links { grid-template-columns: 1fr; }
  .service-ribbon-set { padding-inline: 10px; }
  .service-ribbon span { font-size: 16px; }
  .panel-image-type span { font-size: clamp(3.8rem, 20vw, 5rem); }
}

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