:root {
  /* ── Primary palette — Dr A Winter logo navy #1c3664 ── */
  --navy:    oklch(34% 0.087 261);   /* #1c3664 — exact logo navy */
  --navy-2:  oklch(28% 0.080 261);   /* hover/active — slightly darker */
  --deep:    oklch(20% 0.060 261);   /* footer, darkest surface */
  --navy-3:  oklch(40% 0.075 261);   /* mid accent */

  /* ── Silver / mist ── */
  --silver:  oklch(82% 0.010 261);
  --mist:    oklch(91% 0.006 261);

  /* ── Ivory canvas ── */
  --paper:     oklch(97% 0.009 88);   /* #F6F3ED */
  --paper-2:   oklch(93% 0.013 83);   /* #ECE7DE */
  --warm:      oklch(93% 0.013 83);
  --white:     oklch(100% 0 0);
  --blue-wash: oklch(94% 0.008 261);

  /* ── Type ── */
  --ink:      oklch(12% 0.003 237);   /* #1B1D1F */
  --ink-soft: oklch(47% 0.018 261);   /* #667078 */
  --muted:    oklch(47% 0.018 261);

  /* ── Borders ── */
  --line:     oklch(84% 0.008 80);    /* #D7D2C8 */
  --hairline: oklch(84% 0.008 80 / 0.55);

  /* ── Accent ── */
  --gold: oklch(68% 0.058 78);

  /* ── Shadows — logo-navy tint ── */
  --shadow:      0 38px 110px oklch(12% 0.045 261 / 0.16), 0 2px 0 oklch(100% 0 0 / 0.72) inset;
  --soft-shadow: 0 24px 80px oklch(12% 0.045 261 / 0.10), 0 1px 0 oklch(100% 0 0 / 0.70) inset;

  /* ── Spacing ── */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-24: 96px;

  /* ── Motion ── */
  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Typography ── */
  --font-heading: Optima, Candara, "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 17px;
  background: var(--paper);
  color: var(--ink);
  font-family: Avenir Next, Avenir, "Gill Sans", system-ui, sans-serif;
  font-kerning: normal;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background: var(--paper);
}

.topbar,
.header,
main,
.footer,
.mobile-cta {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 var(--sp-4);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(64px, 8vw, 104px);
}

.section.compact {
  padding-block: clamp(44px, 5.5vw, 68px);
}

.section.warm {
  background: var(--paper-2);
}

.section.clinic-proof {
  background: var(--paper-2);
}

.section.treatments-section {
  background: var(--paper);
}

.section.results-section {
  background: var(--paper-2);
}

.section.deep {
  background: var(--deep);
  color: var(--paper);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 560;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  line-height: 1.02;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.16;
}

p {
  margin: 0;
  text-wrap: pretty;
}

.lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.25vw, 1.22rem);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.deep h2,
.deep h3 {
  color: var(--paper);
}

.deep .lead,
.deep .muted,
.deep .eyebrow {
  color: oklch(88% 0.014 80);
}

.muted {
  color: var(--muted);
}

.topbar {
  background: var(--paper);
  color: var(--muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--line);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-2) 0;
}

.topbar a {
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  margin: 0;
  background: var(--navy);
  border-bottom: 1px solid oklch(44% 0.065 261 / 0.40);
  box-shadow: 0 2px 24px oklch(15% 0.060 261 / 0.30);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  width: 100%;
  padding: var(--sp-3) var(--sp-6);
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  padding-left: var(--sp-2);
}

.brand-mark {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid oklch(32% 0.014 163);
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 650;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  color: var(--white);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-text span {
  color: oklch(74% 0.018 261);
  font-size: 0.78rem;
}

.brand-logo {
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav-links a {
  color: oklch(82% 0.018 261);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: 4px;
  transition: color 260ms var(--ease), background 260ms var(--ease);
}

.nav-links a:hover {
  color: var(--white);
  background: oklch(100% 0 0 / 0.10);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: var(--sp-5);
  padding: 0 var(--sp-4) 0 var(--sp-6);
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--paper);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 180ms var(--ease-out-expo),
    background 220ms var(--ease-out-expo),
    border-color 220ms var(--ease-out-expo),
    color 220ms var(--ease-out-expo),
    box-shadow 220ms var(--ease-out-expo),
    opacity 220ms var(--ease-out-expo);
  box-shadow: 0 18px 44px oklch(18% 0.014 162 / 0.14), 0 1px 0 oklch(100% 0 0 / 0.16) inset;
}

.button:not(.secondary)::after {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid oklch(100% 0 0 / 0.18);
  background: oklch(100% 0 0 / 0.11);
  color: currentColor;
  content: "↗";
  font-size: 0.78rem;
  line-height: 1;
  transition: transform 420ms var(--ease), background 420ms var(--ease);
}

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible {
  outline: 2px solid oklch(50% 0.020 163);
  outline-offset: 4px;
}

.button:hover,
button.button:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  box-shadow: 0 16px 44px oklch(12% 0.045 261 / 0.16);
  transform: translate3d(0, -1px, 0);
}

.button:not(.secondary):hover::after {
  background: oklch(100% 0 0 / 0.17);
  transform: translate(2px, -1px) scale(1.04);
}

.button:active,
button.button:active {
  transform: translate3d(0, 0, 0) scale(0.985);
  box-shadow: none;
}

.button:disabled,
button.button:disabled,
.button[aria-disabled="true"] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button.secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: none;
}

.button.secondary:hover {
  background: oklch(94% 0.014 261 / 0.50);
  box-shadow: none;
}

/* On dark navy header: ghost-white variant */
.header .button.secondary {
  border-color: oklch(70% 0.030 261 / 0.50);
  color: oklch(88% 0.018 261);
}

.header .button.secondary:hover {
  background: oklch(100% 0 0 / 0.09);
  border-color: oklch(88% 0.018 261 / 0.70);
  color: var(--white);
}

.header .button.secondary::after,
.button.secondary::after {
  display: none;
}

.button.light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--navy);
}

/* ── Full-bleed cinematic hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--deep);
  overflow: hidden;
  padding: 0;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-media video,
.hero-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(
    to bottom,
    oklch(20% 0.060 261 / 0.05) 0%,
    oklch(20% 0.060 261 / 0.12) 55%,
    oklch(20% 0.060 261 / 0.42) 100%
  );
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.038;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 0 clamp(64px, 9vw, 112px) clamp(var(--sp-8), 4vw, var(--sp-16));
  text-align: left;
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  max-width: 14ch;
  font-size: clamp(2.9rem, 6.5vw, 6.8rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero-content .lead {
  max-width: 48ch;
  margin: var(--sp-6) 0 0;
  color: oklch(84% 0.022 261);
}

.hero-content .eyebrow {
  color: var(--silver);
  margin-bottom: var(--sp-5);
}

.hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

.hero-text-link {
  color: oklch(86% 0.009 220);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: oklch(86% 0.009 220 / 0.5);
  transition: color 220ms var(--ease), text-decoration-color 220ms var(--ease);
}

.hero-text-link:hover {
  color: var(--white);
  text-decoration-color: oklch(100% 0 0 / 0.5);
}

.button.button-ivory {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--navy);
  box-shadow: 0 10px 32px oklch(15% 0.020 225 / 0.22);
}

.button.button-ivory:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
  box-shadow: 0 8px 24px oklch(15% 0.020 225 / 0.18);
}

.button.button-ivory::after {
  border-color: oklch(35% 0.025 225 / 0.22);
  background: oklch(27% 0.028 226 / 0.08);
  color: var(--navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: var(--sp-16);
}

.hero-grid > *,
.split > *,
.page-hero-grid > * {
  min-width: 0;
}

.hero-copy {
  padding: var(--sp-6) 0 var(--sp-6);
}

.hero-copy .lead {
  margin-top: var(--sp-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-12);
  max-width: 100%;
}

.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  max-width: 100%;
}

.hero-reassurance span {
  max-width: 100%;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid oklch(80% 0.018 78);
  background: oklch(96% 0.009 80);
  overflow-wrap: anywhere;
}

.hero-media {
  position: relative;
  min-height: 480px;
}

.portrait-panel {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(430px, 100%);
  overflow: hidden;
  padding: var(--sp-4);
  border: 1px solid oklch(82% 0.012 78 / 0.7);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid oklch(100% 0 0 / 0.14);
}

.portrait-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, oklch(14% 0.010 163 / 0.44));
}

.hero-card {
  position: absolute;
  right: 28px;
  bottom: 34px;
  z-index: 2;
  width: min(330px, calc(100% - 56px));
  padding: var(--sp-6);
  background: oklch(99% 0.003 82);
  border: 1px solid oklch(82% 0.009 78 / 0.76);
  box-shadow: 0 16px 42px oklch(18% 0.014 162 / 0.16);
}

.hero-card strong {
  display: block;
  margin-bottom: var(--sp-2);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 560;
  line-height: 1.1;
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Align content with container edges — 24px minimum matches new calc(100% - 48px) container */
  padding-inline: max(24px, calc(50vw - 590px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: oklch(99% 0.003 82);
}

.credential {
  padding: var(--sp-5) var(--sp-6);
  border-right: 1px solid var(--line);
}

.credential:last-child {
  border-right: 0;
}

.credential strong {
  display: block;
  margin-bottom: var(--sp-1);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 620;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-12);
  align-items: center;
}

.stack {
  display: grid;
  gap: var(--sp-8);
}

/* Breathing room: button directly after paragraph text */
p + a.button,
p + button.button {
  margin-top: var(--sp-8);
}

/* Stack uses gap for rhythm — don't double-add margin */
.stack a.button,
.stack button.button {
  margin-top: 0;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

.fit-section {
  background: var(--navy);
  color: var(--paper);
}

.fit-section h2,
.fit-section .lead,
.fit-section .muted {
  color: var(--paper);
}

.fit-section .eyebrow {
  color: var(--silver);
}

.fit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--sp-12);
  margin-top: var(--sp-12);
  counter-reset: fit-counter;
}

.fit-item {
  padding: var(--sp-8) 0 var(--sp-6);
  border-top: 1px solid oklch(40% 0.055 261 / 0.55);
  background: none;
  counter-increment: fit-counter;
}

.fit-item::before {
  content: "0" counter(fit-counter);
  display: block;
  margin-bottom: var(--sp-4);
  font-size: 0.7rem;
  font-weight: 640;
  letter-spacing: 0.16em;
  color: oklch(62% 0.055 261);
}

.fit-item strong {
  display: block;
  margin-bottom: var(--sp-3);
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 620;
  line-height: 1.22;
}

.fit-item .muted {
  color: oklch(82% 0.012 220);
  font-size: 0.97rem;
  line-height: 1.62;
}

.media-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--blue-wash);
}

.media-tile.large {
  /* consistent with sibling tiles — no height override */
}

.media-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.media-caption {
  position: absolute;
  right: var(--sp-4);
  bottom: var(--sp-4);
  left: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: oklch(98% 0.004 82 / 0.95);
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 280px;
  padding: var(--sp-6);
  border: 1px solid oklch(83% 0.009 80 / 0.72);
  background:
    linear-gradient(180deg, oklch(99% 0.003 82), oklch(95% 0.008 80));
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.72) inset;
  text-decoration: none;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.service-card:nth-child(1),
.service-card:nth-child(2) {
  border-color: oklch(82% 0.014 80 / 0.8);
  background: linear-gradient(180deg, oklch(99% 0.004 82), oklch(95% 0.009 80));
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: oklch(72% 0.022 78);
  box-shadow: var(--soft-shadow);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--navy);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.service-card h3 {
  align-self: start;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-3);
}

.card-action {
  margin-top: var(--sp-5);
}

.wide-card {
  padding: var(--sp-8);
  border: 1px solid var(--line);
  background: oklch(99% 0.003 82);
}

.location-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.location-card,
.proof-card,
.faq-card {
  padding: var(--sp-8);
  border: 1px solid oklch(83% 0.009 80 / 0.72);
  background: linear-gradient(180deg, oklch(99% 0.003 82), oklch(96% 0.006 82));
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.72) inset;
}

.location-card {
  display: grid;
  align-content: start;
  min-height: 230px;
}

.location-card,
.result-card {
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.location-card:hover,
.result-card:hover {
  transform: translateY(-2px);
  border-color: oklch(75% 0.018 78);
  box-shadow: var(--soft-shadow);
}

.proof-card {
  background: linear-gradient(180deg, oklch(98.5% 0.004 82), oklch(95.5% 0.008 82));
  border-color: oklch(88% 0.007 80 / 0.6);
  box-shadow: none;
  transition: border-color 220ms var(--ease), background-color 220ms var(--ease);
}

.faq-card {
  border-color: oklch(88% 0.007 80 / 0.6);
  box-shadow: none;
  transition: border-color 220ms var(--ease);
}

.proof-card:hover {
  border-color: oklch(76% 0.015 78);
}

.location-card h3,
.proof-card h3,
.faq-card h3 {
  margin-bottom: var(--sp-4);
  color: var(--navy);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: oklch(99% 0.003 82);
  margin: 0;
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

.result-card:hover img {
  transform: scale(1.04);
}

.result-card figcaption {
  padding: var(--sp-4);
  color: var(--muted);
  font-size: 0.9rem;
}

.journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}

.journey-step {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: var(--sp-6);
  border: 1px solid oklch(83% 0.009 80 / 0.72);
  background: linear-gradient(180deg, oklch(99% 0.003 82), oklch(96% 0.007 82));
  box-shadow: 0 1px 0 oklch(100% 0 0 / 0.72) inset;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease);
}

.journey-step:hover {
  border-color: var(--navy-3);
  transform: translateY(-2px);
}

.journey-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: var(--sp-4);
  border: 1px solid var(--line);
  background: var(--paper-2);
  color: var(--navy);
}

.journey-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.journey-step h3 {
  margin-bottom: var(--sp-3);
  color: var(--navy);
}

.quote {
  max-width: 900px;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.35rem);
  line-height: 1.16;
}

.quote-source {
  margin-top: var(--sp-5);
  color: oklch(84% 0.015 78);
}

.review-action {
  margin-top: var(--sp-8);
}

.form-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--sp-8);
  align-items: start;
  padding: var(--sp-8);
  border: 1px solid var(--line);
  background: oklch(99% 0.003 82);
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  gap: var(--sp-4);
}

label {
  display: grid;
  gap: var(--sp-2);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: var(--sp-4);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid oklch(50% 0.020 163);
  outline-offset: 2px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  padding: var(--sp-4);
  background: oklch(94% 0.012 78);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.page-hero {
  padding: var(--sp-8) 0 var(--sp-12);
  background:
    linear-gradient(135deg, oklch(96% 0.010 82) 0%, oklch(97.5% 0.007 85) 55%, oklch(94.5% 0.010 82) 100%);
  color: var(--ink);
}

.page-hero h1 {
  font-size: clamp(1.7rem, 3.3vw, 3rem);
  max-width: 580px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-hero h1,
.page-hero .lead {
  color: var(--ink);
}

.page-hero .lead {
  margin-top: var(--sp-4);
  max-width: 52ch;
  color: var(--ink-soft);
}

.page-hero .breadcrumb {
  color: var(--muted);
}

.page-hero .eyebrow {
  color: var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: var(--sp-12);
  align-items: center;
}

.page-hero-panel {
  border: 1px solid var(--line);
  background: oklch(99% 0.003 82);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.page-hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-hero-panel-copy {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5);
}

.page-hero-panel-copy strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 620;
}

.breadcrumb {
  margin-bottom: var(--sp-8);
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumb a {
  text-decoration: none;
}

.footer {
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 6vw, 80px);
  background: var(--navy);
  color: oklch(86% 0.018 261);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.65fr));
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer h3 {
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 560;
  margin-bottom: var(--sp-4);
}

.footer-grid strong {
  display: block;
  margin-bottom: var(--sp-5);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(72% 0.010 80);
}

.footer a {
  color: oklch(84% 0.008 80);
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 220ms;
}

.footer a:hover {
  color: var(--paper);
}

.footer .muted {
  color: oklch(76% 0.011 80);
}

.footer small {
  display: block;
  margin-top: var(--sp-16);
  padding-top: var(--sp-6);
  border-top: 1px solid oklch(44% 0.055 261 / 0.35);
  color: oklch(60% 0.025 261);
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 14px, 0);
  transition: opacity 680ms var(--ease-out-expo), transform 680ms var(--ease-out-expo), filter 680ms var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .service-card,
  .location-card,
  .result-card,
  .journey-step {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-page .header,
  .home-page .nav,
  .comparison-after-wrap,
  .comparison-slider::after {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .form-panel,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: var(--sp-8);
  }

  .hero-media {
    min-height: 520px;
  }

  .portrait-panel {
    left: 0;
    width: 100%;
  }

  .credential-strip,
  .media-grid,
  .service-grid,
  .fit-list,
  .journey,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-shell {
    padding-bottom: 86px;
  }

  .topbar {
    font-size: 0.78rem;
  }

  .header {
    top: 0;
    width: 100%;
    margin: 0;
  }

  .container {
    width: calc(100% - 32px);
    max-width: 100%;
    margin-inline: auto;
  }

  .topbar .container {
    display: block;
  }

  .topbar span:last-child {
    display: none;
  }

  .brand-text span {
    display: none;
  }

  .nav {
    padding: var(--sp-2) var(--sp-4);
  }

  .nav-links {
    display: none;
  }

  .nav > .button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin-left: auto;
    border: 1px solid oklch(100% 0 0 / 0.25);
    background: oklch(100% 0 0 / 0.08);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 420ms var(--ease), opacity 420ms var(--ease);
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 35;
    display: grid;
    align-items: start;
    padding: 100px 16px 24px;
    background: oklch(34% 0.087 261 / 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 440ms var(--ease), transform 440ms var(--ease);
    backdrop-filter: blur(18px);
  }

  .mobile-menu[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-panel {
    display: grid;
    gap: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .mobile-menu-panel a {
    padding: var(--sp-5) var(--sp-4);
    color: oklch(86% 0.022 261);
    font-size: 1.08rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-bottom: 1px solid oklch(100% 0 0 / 0.10);
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 520ms var(--ease), transform 520ms var(--ease), color 220ms var(--ease);
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu-panel a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu-panel a:nth-child(2) {
    transition-delay: 60ms;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu-panel a:nth-child(3) {
    transition-delay: 110ms;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu-panel a:nth-child(4) {
    transition-delay: 160ms;
  }

  .mobile-menu[aria-hidden="false"] .mobile-menu-panel a:nth-child(5) {
    transition-delay: 210ms;
  }

  .mobile-menu-panel a:hover {
    background: oklch(94% 0.01 78);
  }

  .button {
    width: 100%;
    padding: 0 var(--sp-4);
  }

  .hero-copy,
  .hero-media,
  .portrait-panel,
  .hero-copy > *,
  .hero-actions,
  .hero-reassurance,
  .credential,
  .hero-card {
    width: 100%;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: var(--sp-12) 0 var(--sp-16);
  }

  .hero-grid {
    gap: var(--sp-8);
  }

  h1 {
    font-size: clamp(1.9rem, 7.4vw, 2.22rem);
    line-height: 1.08;
  }

  .hero-copy h1 {
    width: auto;
    max-width: 9.2ch;
  }

  .hero-media,
  .portrait-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy .lead {
    width: auto;
    max-width: 29ch;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.5vw, 3rem);
    line-height: 1.08;
  }

  .lead {
    max-width: 32ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-copy {
    padding: var(--sp-6) 0 var(--sp-8);
  }

  .hero-media {
    min-height: 500px;
  }

  .portrait-panel {
    position: relative;
    height: 420px;
  }

  .hero-card {
    right: var(--sp-4);
    bottom: 18px;
    left: var(--sp-4);
    width: auto;
    max-width: calc(100% - 32px);
    padding: var(--sp-5);
  }

  .hero-card .muted {
    max-width: 26ch;
  }

  .eyebrow {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 30px;
    padding-top: var(--sp-2);
    padding-bottom: var(--sp-2);
    font-size: 0.6rem;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-reassurance {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-reassurance span {
    width: 100%;
  }

  .credential-strip,
  .media-grid,
  .location-grid,
  .proof-grid,
  .faq-grid,
  .results-grid,
  .service-grid,
  .fit-list,
  .journey,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .credential {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    min-height: 220px;
  }

  .media-tile,
  .media-tile.large {
    min-height: auto;
  }

  .media-tile img {
    aspect-ratio: 4 / 4.8;
  }

  .page-hero-panel img,
  .result-card img {
    aspect-ratio: 1 / 1.15;
  }

  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 60;
    display: inline-flex;
    width: auto;
    max-width: 362px;
  }
}

/* ─── Menu scroll lock ─── */
body.menu-open {
  overflow: hidden;
}

/* ─── Brand logo ─── */
.brand-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ─── BCAM featured credential ─── */
.credential--featured {
  background: var(--navy);
}

.credential--featured strong {
  color: var(--paper);
}

.credential--featured span {
  color: oklch(80% 0.012 80);
}

/* ─── Hero video ─── */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid oklch(100% 0 0 / 0.14);
  display: block;
}

/* ─── Featured service grid (2 cards) ─── */
.service-grid--featured {
  grid-template-columns: 1fr 1fr;
  margin-bottom: var(--sp-6);
}

.service-grid--featured .service-card {
  grid-column: auto !important;
  min-height: 300px;
}

.treatments-more {
  margin-top: var(--sp-8);
  margin-bottom: 0;
}

/* ─── Google review cards ─── */
.reviews-section {
  background: var(--paper-2);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
}

.review-card {
  display: grid;
  align-content: start;
  gap: var(--sp-4);
  padding: var(--sp-6);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 24px oklch(11% 0.050 238 / 0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-avatar {
  display: grid;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 750;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.review-date {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.google-mark {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-stars {
  color: #FBBC05;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.review-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.62;
}

.review-action {
  margin-top: var(--sp-8);
}

/* ─── WhatsApp float ─── */
.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 60;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.36), 0 2px 8px rgba(0, 0, 0, 0.12);
  color: white;
  text-decoration: none;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 42px rgba(37, 211, 102, 0.42), 0 2px 8px rgba(0, 0, 0, 0.12);
}

.whatsapp-float:focus-visible {
  outline: 2px solid #25D366;
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@media (max-width: 980px) {
  .review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .review-grid,
  .service-grid--featured {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 14px;
    bottom: calc(86px + 14px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ── Article / Blog prose ─────────────────────────────────────────── */

.blog-content {
  max-width: 72ch;
}

.blog-content h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 580;
  line-height: 1.12;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--line);
}

.blog-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blog-content h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
}

.blog-content p {
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.1vw, 1.07rem);
  line-height: 1.72;
  margin-bottom: var(--sp-5);
}

.blog-content p:last-child {
  margin-bottom: 0;
}

.blog-content ul,
.blog-content ol {
  margin: 0 0 var(--sp-6) var(--sp-6);
  padding: 0;
}

.blog-content li {
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.1vw, 1.07rem);
  line-height: 1.65;
  margin-bottom: var(--sp-2);
}

.blog-content strong {
  color: var(--ink);
  font-weight: 640;
}

.blog-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-content a:hover {
  opacity: 0.75;
}

.blog-content .button {
  text-decoration: none;
}

.blog-content .button:not(.secondary):not(.ghost) {
  color: var(--paper);
}

.blog-content .callout {
  background: oklch(34% 0.087 261 / 0.06);
  border: 1px solid oklch(34% 0.087 261 / 0.12);
  border-radius: 2px;
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-8) 0;
}

.blog-content .callout p {
  margin: 0;
}

.form-grid.is-submitting {
  pointer-events: none;
}

.form-grid.is-submitting label {
  opacity: 0.62;
  transition: opacity 220ms var(--ease-out-expo);
}

.form-panel-success {
  animation: success-panel-in 420ms var(--ease-out-expo) both;
}

.success-state {
  animation: success-copy-in 520ms var(--ease-out-expo) 80ms both;
}

@keyframes success-panel-in {
  from {
    background: oklch(97% 0.009 84);
  }
  to {
    background: oklch(96% 0.009 84);
  }
}

@keyframes success-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--line);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.article-meta-item strong {
  color: var(--ink);
}

/* ── Practitioner page ────────────────────────────────────────────── */

.credential-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}

.credential-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-2);
  align-content: start;
}

.credential-card h4 {
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

.credential-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ── Concern pages ────────────────────────────────────────────────── */

.concern-treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.concern-treatment-card {
  background: var(--white);
  border: 1px solid oklch(87% 0.007 80 / 0.5);
  border-radius: 0;
  padding: var(--sp-8) var(--sp-8) var(--sp-8);
  display: grid;
  align-content: start;
  gap: var(--sp-5);
}

.concern-treatment-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--navy);
}

.concern-treatment-card p {
  color: var(--ink-soft);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  line-height: 1.72;
}

.concern-treatment-card .button {
  align-self: start;
  font-size: 0.88rem;
}

@media (max-width: 680px) {
  .blog-content {
    max-width: 100%;
  }

  .credential-list,
  .concern-treatment-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Ghost button (text-link CTA style) ──────────────────────────────── */
.button.ghost {
  min-height: auto;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--navy);
  box-shadow: none;
  font-size: inherit;
  font-weight: 640;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.button.ghost:hover {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
  opacity: 0.7;
}

.button.ghost::after {
  display: none;
}

/* ── Content width utilities ─────────────────────────────────────────── */
.measure-wide   { max-width: 72ch; }
.measure        { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }

/* ── Prose columns (replaces dead-zone splits on inner pages) ─────────── */
.prose-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-12);
  margin-top: var(--sp-12);
}

.prose-columns p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.25vw, 1.12rem);
  line-height: 1.86;
  max-width: 62ch;
}

@media (max-width: 680px) {
  .prose-columns {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ── Editorial quote (inline, light bg) ──────────────────────────────── */
.editorial-quote {
  margin: var(--sp-16) 0;
  padding: var(--sp-8) 0;
  border-top: 1px solid oklch(32% 0.016 162 / 0.18);
  border-bottom: 1px solid oklch(32% 0.016 162 / 0.18);
}

.editorial-quote p {
  max-width: 52ch;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-style: italic;
  line-height: 1.44;
  color: var(--navy);
  font-weight: 380;
}

/* ── Editorial moment (cinematic dark section) ────────────────────────── */
.section.editorial-moment {
  background: oklch(20% 0.022 162);
  padding-block: clamp(80px, 12vw, 136px);
}

.section.editorial-moment blockquote {
  margin: 0 0 0 auto;
  max-width: 52ch;
}

/* ── Credential bar ────────────────────────────────────────────────────── */
.credential-bar {
  padding: var(--sp-5) 0;
  background: var(--navy);
  border-bottom: 1px solid oklch(44% 0.065 261 / 0.35);
}

.credential-line {
  margin: 0;
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: oklch(80% 0.022 261);
  text-wrap: balance;
}

/* ── Editorial split — full-height photo + copy ────────────────────────── */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(82vh, 740px);
  overflow: hidden;
}

.editorial-split-media {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.editorial-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 10s ease-out;
}

.editorial-split:hover .editorial-split-media img {
  transform: scale(1.03);
}

.editorial-split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-6);
  padding: clamp(48px, 6vw, 96px) clamp(48px, 5.5vw, 88px);
  background: var(--paper);
}

.editorial-split-copy h2 {
  max-width: 22ch;
}

/* ── Statement interlude — vast whitespace + cinematic type ────────────── */
.statement-interlude {
  padding-block: clamp(96px, 14vw, 176px);
  background: var(--paper);
}

.statement-interlude .container {
  display: flex;
  align-items: center;
  gap: clamp(var(--sp-12), 8vw, var(--sp-24));
}

.statement-text-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(var(--sp-5), 2vw, var(--sp-8));
}

.statement-composition {
  position: relative;
  width: clamp(260px, 34vw, 480px);
  aspect-ratio: 3/4;
  flex-shrink: 0;
}

.statement-composition img {
  position: absolute;
  object-fit: cover;
  border-radius: 2px;
}

.sc-img-1 {
  top: 0;
  left: 0;
  width: 74%;
  height: 78%;
  object-position: center 15%;
  z-index: 1;
  box-shadow: 0 16px 48px oklch(15% 0.060 261 / 0.20);
}

.sc-img-2 {
  bottom: 0;
  right: 0;
  width: 60%;
  height: 58%;
  object-position: center top;
  z-index: 2;
  box-shadow: 0 24px 64px oklch(15% 0.060 261 / 0.28);
}

.sc-img-3 {
  top: 35%;
  left: 52%;
  width: 28%;
  height: 22%;
  object-position: center;
  z-index: 3;
  transform: rotate(-1.5deg);
  box-shadow: 0 8px 28px oklch(15% 0.060 261 / 0.22);
}

.statement-text {
  font-family: Optima, "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.01;
  color: var(--ink);
  max-width: 14ch;
  margin: 0;
}

.statement-sub {
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.15vw, 1.1rem);
  line-height: 1.72;
  margin: 0;
}

/* ── Treatment list (editorial row style) ──────────────────────────────── */
.treatment-list {
  margin-top: var(--sp-10, 40px);
  border-top: 1px solid var(--line);
}

.treatment-list-item {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: color 220ms var(--ease);
}

.treatment-list-item:hover {
  color: var(--navy);
}

.treatment-list-copy {
  flex: 1;
  min-width: 0;
}

.treatment-list-copy h3 {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  margin-bottom: var(--sp-2);
  transition: color 220ms var(--ease);
}

.treatment-list-item:hover .treatment-list-copy h3 {
  color: var(--navy);
}

.list-arrow {
  color: var(--navy);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 220ms var(--ease);
}

.treatment-list-item:hover .list-arrow {
  transform: translateX(5px);
}

.list-link {
  display: inline;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid oklch(27% 0.028 226 / 0.35);
  padding-bottom: 2px;
  transition: border-color 220ms var(--ease);
}

.list-link:hover {
  border-color: var(--navy);
}

.review-link {
  display: inline-block;
}

/* ── Location list ──────────────────────────────────────────────────────── */
.location-list {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--sp-16);
}

.location-list-item {
  display: grid;
  align-content: start;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

.location-list-item h3 {
  color: var(--navy);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin: 0;
}

/* ── Journey list (numbered editorial steps) ────────────────────────────── */
.journey-list {
  list-style: none;
  margin: var(--sp-12) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 var(--sp-8);
}

.journey-list-item {
  display: grid;
  align-content: start;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line);
}

.journey-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--navy);
}

.journey-list-item h3 {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink);
  margin: 0;
}

/* ── Hero floating review card ──────────────────────────────────────────── */
.hero-floating-review {
  position: absolute;
  top: clamp(88px, 13vh, 148px);
  right: clamp(var(--sp-6), 5vw, var(--sp-16));
  z-index: 5;
  padding: var(--sp-4) var(--sp-5);
  background: oklch(100% 0 0 / 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  max-width: 210px;
  box-shadow: 0 8px 32px oklch(15% 0.020 225 / 0.22);
}

.hero-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}

.hero-floating-review .review-stars {
  color: #FBBC05;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.hero-review-text {
  font-size: 0.80rem;
  color: var(--ink);
  line-height: 1.54;
}

.hero-review-name {
  display: block;
  margin-top: var(--sp-2);
  font-size: 0.73rem;
  color: var(--muted);
}

/* ── Statement interlude — hairline borders for gentle section separation ─── */
.statement-interlude {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

/* ── Topbar icon links ─────────────────────────────────────────────────── */
.topbar-icons {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.topbar-icon-link {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--muted);
  border-radius: 50%;
  text-decoration: none;
  transition: color 220ms var(--ease), background 220ms var(--ease);
}

.topbar-icon-link:hover {
  color: var(--navy);
  background: oklch(93% 0.010 80);
}

.topbar-icon-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

/* ── Google review card refinements ─────────────────────────────────────── */
.review-card {
  border-radius: 16px;
}

.google-g {
  display: block;
}

/* ── Editorial new components — responsive ──────────────────────────────── */
@media (max-width: 980px) {
  .editorial-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .editorial-split-media {
    min-height: 420px;
  }

  .editorial-split-copy {
    padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 48px);
  }

  .journey-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8);
  }

  .location-list {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

@media (max-width: 680px) {
  .statement-text {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
    max-width: 100%;
  }

  .statement-composition {
    display: none;
  }

  .editorial-split-media {
    min-height: 320px;
  }

  .journey-list {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 11vw, 3.8rem);
  }

  .hero-floating-review {
    display: none;
  }
}

.section.editorial-moment blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.42;
  color: oklch(94% 0.009 80);
  letter-spacing: -0.015em;
}

.section.editorial-moment blockquote footer {
  margin-top: var(--sp-8);
  font-size: 0.8rem;
  font-weight: 640;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(57% 0.018 162);
  font-style: normal;
}

@media (max-width: 680px) {
  .section.editorial-moment blockquote {
    margin: 0;
  }
}

/* ── FAQ list (editorial — no boxes) ───────────────────────────────── */
.faq-list {
  display: grid;
  margin-top: var(--sp-12);
}

.faq-list .faq-item {
  padding: var(--sp-12) 0;
  border-top: 1px solid oklch(88% 0.007 80 / 0.35);
}

.faq-list .faq-item:last-child {
  border-bottom: 1px solid oklch(88% 0.007 80 / 0.35);
}

.faq-list .faq-item h3 {
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  margin-bottom: var(--sp-4);
}

.faq-list .faq-item p {
  color: var(--ink-soft);
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.76;
  max-width: 68ch;
}

/* ── Media system ────────────────────────────────────────────────────── */
img,
video {
  height: auto; /* complement existing display:block; max-width:100% */
}

.location-photo img,
.hero-media video,
.article-inline-img img,
.article-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Standalone body paragraph width constraint ──────────────────────── */
.section > .container > p:not([class]) {
  max-width: 72ch;
}

/* ── Blog article meta bar ─────────────────────────────────────────── */
.article-meta-wrap {
  padding: var(--sp-5) 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-meta-wrap .container {
  max-width: 72ch;
}

.article-meta-wrap .article-meta {
  margin: 0;
  padding: 0;
  border: none;
}

/* ── Blog inline image ─────────────────────────────────────────────── */
.article-inline-img {
  margin: var(--sp-8) 0;
  overflow: hidden;
}

.article-inline-img img {
  width: 100%;
  aspect-ratio: 21 / 6;
  object-fit: cover;
  display: block;
}

.article-inline-img figcaption {
  margin-top: var(--sp-3);
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* ── Blog article feature image ─────────────────────────────────────── */
.article-feature-img {
  margin: 0 0 var(--sp-8);
  overflow: hidden;
}

.article-feature-img img {
  width: 100%;
  aspect-ratio: 21 / 6;
  object-fit: cover;
  display: block;
}

/* ── Location page photo ─────────────────────────────────────────── */
.location-photo {
  margin-top: var(--sp-8);
  overflow: hidden;
}

.location-photo img {
  width: 100%;
  aspect-ratio: 21 / 6;
  object-fit: cover;
  display: block;
}

@media (max-width: 680px) {
  .article-feature-img img,
  .location-photo img {
    aspect-ratio: 16 / 9;
  }
}

/* ── Editorial quotes (reviews section) — continued below ─────────────── */

/* ── Editorial quotes (reviews section) ─────────────────────────────── */
.editorial-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 var(--sp-16);
  margin-top: var(--sp-16);
  border-top: 1px solid var(--line);
}

.editorial-quotes .editorial-quote {
  margin: 0;
  padding: var(--sp-12) 0 0;
}

.editorial-quotes .editorial-quote p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.62;
  color: var(--ink-soft);
}

.editorial-quotes .editorial-quote cite {
  display: block;
  margin-top: var(--sp-6);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Location list ───────────────────────────────────────────────────── */
.location-list {
  margin-top: var(--sp-16);
  border-top: 1px solid var(--line);
}

.location-list-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: var(--sp-4) var(--sp-8);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--line);
}

.location-list-item h3 {
  grid-column: 1;
}

.location-list-item .muted {
  grid-column: 1;
}

.list-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 220ms var(--ease);
}

.list-link:hover {
  color: var(--navy);
}

/* ── Treatment list ──────────────────────────────────────────────────── */
.treatment-list {
  margin-top: var(--sp-16);
  border-top: 1px solid var(--line);
}

.treatment-list-item {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 220ms var(--ease);
}

.treatment-list-copy {
  flex: 1;
}

.treatment-list-copy h3 {
  margin-bottom: var(--sp-2);
}

.list-arrow {
  color: var(--muted);
  font-size: 1.4rem;
  transition: transform 220ms var(--ease), color 220ms var(--ease);
}

.treatment-list-item:hover .list-arrow {
  transform: translateX(4px);
  color: var(--ink);
}

/* ── Journey numbered list ───────────────────────────────────────────── */
.journey-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-12);
  margin-top: var(--sp-16);
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.journey-list-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-8);
}

.journey-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ── Reviews section warm background ────────────────────────────────── */
.reviews-section {
  background: var(--warm);
}

/* ── review-action z-index fix ───────────────────────────────────────── */
.review-action {
  position: relative;
  z-index: 20;
}

@media (max-width: 980px) {
  .editorial-quotes {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .journey-list {
    grid-template-columns: 1fr;
  }

  .location-list-item {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────────────────────────────────
   2026-05-17 Luxury editorial override
   Campaign-like homepage layer inspired by hospitality/editorial/skincare.
   ────────────────────────────────────────────────────────────────────── */

.home-page::after {
  position: fixed;
  inset: 0;
  z-index: 80;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.72' numOctaves='3' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E");
  opacity: 0.026;
  mix-blend-mode: multiply;
}

.home-page .header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  transition:
    background-color 280ms var(--ease-out-expo),
    border-color 280ms var(--ease-out-expo),
    box-shadow 280ms var(--ease-out-expo),
    backdrop-filter 280ms var(--ease-out-expo),
    transform 280ms var(--ease-out-expo);
}

.home-page .nav {
  width: min(1420px, calc(100% - 56px));
  padding: clamp(18px, 2.8vw, 34px) 0;
  transition: padding 280ms var(--ease-out-expo), width 280ms var(--ease-out-expo);
}

.home-page .brand {
  gap: var(--sp-4);
  padding-left: 0;
}

.home-page .brand-logo {
  display: none;
}

.home-page .brand-text strong,
.home-page .brand-text span,
.home-page .nav-links a,
.home-page .header .button.secondary {
  color: oklch(97% 0.006 88);
  text-shadow: 0 2px 18px oklch(8% 0.05 261 / 0.45);
}

.home-page .brand-text strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
}

.home-page .brand-text span {
  color: oklch(89% 0.012 88 / 0.78);
}

.home-page .nav-links {
  gap: clamp(var(--sp-3), 2vw, var(--sp-6));
}

.home-page .nav-links a {
  padding: 0;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .nav-links a:hover {
  background: transparent;
  color: var(--white);
}

.home-page .header .button.secondary {
  border-color: oklch(100% 0 0 / 0.42);
  background: oklch(100% 0 0 / 0.06);
  color: var(--white);
}

.home-page.has-scrolled .header {
  position: fixed;
  background: oklch(20% 0.060 261 / 0.92);
  border-bottom: 1px solid oklch(100% 0 0 / 0.10);
  box-shadow: 0 18px 54px oklch(8% 0.05 261 / 0.34);
  backdrop-filter: blur(18px);
}

.home-page.has-scrolled .nav {
  padding: 12px 0;
}

.home-page.has-scrolled .brand-text span {
  color: oklch(82% 0.012 88 / 0.76);
}

.home-page.has-scrolled .header .button.secondary {
  background: oklch(100% 0 0 / 0.04);
}

.home-page .hero {
  min-height: 100dvh;
  align-items: center;
}

.home-page .hero-bg-media video,
.home-page .hero-bg-media img {
  width: 100%;
  height: 100%;
  object-position: 56% 22%;
  transform: scale(1.035);
}

.home-page .hero::before {
  background:
    radial-gradient(circle at 76% 34%, oklch(95% 0.015 80 / 0.18), transparent 34%),
    linear-gradient(90deg, oklch(12% 0.07 261 / 0.76) 0%, oklch(18% 0.06 261 / 0.46) 42%, transparent 74%),
    linear-gradient(180deg, oklch(8% 0.05 261 / 0.38) 0%, transparent 38%, oklch(8% 0.05 261 / 0.58) 100%);
}

.home-page .hero-content {
  width: min(1280px, calc(100% - 112px));
  padding: clamp(150px, 16vh, 210px) 0 clamp(64px, 9vw, 116px);
}

.home-page .hero-content h1 {
  max-width: 11ch;
  font-size: clamp(3.7rem, 7.8vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.home-page .hero-content .lead {
  max-width: 38ch;
  color: oklch(91% 0.012 88);
}

.home-page .hero-content .eyebrow {
  color: oklch(88% 0.018 80);
}

.home-page .hero-floating-review {
  top: auto;
  right: clamp(24px, 7vw, 118px);
  bottom: clamp(84px, 11vh, 142px);
  max-width: 250px;
  border-radius: 2px;
  border: 1px solid oklch(100% 0 0 / 0.28);
  background: oklch(98% 0.006 82 / 0.82);
  box-shadow: 0 28px 80px oklch(8% 0.05 261 / 0.34);
}

.hero-mobile-proof {
  display: none;
  margin-top: var(--sp-4);
  color: oklch(91% 0.012 88);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px oklch(8% 0.05 261 / 0.42);
}

.credential-marquee {
  position: relative;
  overflow: hidden;
  padding: var(--sp-8) 0;
  background: oklch(95% 0.008 84);
  border: 0;
}

.credential-marquee::before,
.credential-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 18vw;
  content: "";
  pointer-events: none;
}

.credential-marquee::before {
  left: 0;
  background: linear-gradient(90deg, oklch(95% 0.008 84), transparent);
}

.credential-marquee::after {
  right: 0;
  background: linear-gradient(270deg, oklch(95% 0.008 84), transparent);
}

.credential-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(46px, 6vw, 96px);
  animation: credential-drift 42s linear infinite;
}

.credential-marquee span {
  color: oklch(47% 0.018 225 / 0.62);
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 2.2vw, 2.1rem);
  font-weight: 420;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes credential-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.editorial-split {
  min-height: min(88vh, 820px);
  background: var(--paper);
}

.editorial-split-media {
  margin: clamp(34px, 5vw, 72px) 0 clamp(34px, 5vw, 72px) clamp(24px, 4vw, 72px);
}

.editorial-split-media img {
  object-position: center 35%;
}

.editorial-split-copy {
  max-width: 680px;
  background:
    radial-gradient(circle at 90% 12%, oklch(85% 0.018 80 / 0.28), transparent 34%),
    var(--paper);
}

.statement-interlude {
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, oklch(96% 0.006 84) 100%);
}

.statement-composition img {
  will-change: transform;
}

.clinic-proof .media-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.88fr;
  align-items: end;
  gap: 0;
  min-height: 600px;
  margin-top: clamp(var(--sp-16), 8vw, var(--sp-24));
}

.clinic-proof .media-tile {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.clinic-proof .media-tile:nth-child(1) {
  z-index: 2;
  width: min(430px, 100%);
  align-self: start;
}

.clinic-proof .media-tile:nth-child(2) {
  z-index: 3;
  width: min(340px, 100%);
  margin-left: -16%;
  margin-bottom: 12%;
}

.clinic-proof .media-tile:nth-child(3) {
  z-index: 1;
  width: min(390px, 100%);
  margin-left: -8%;
  align-self: center;
}

.clinic-proof .media-tile img {
  aspect-ratio: 4 / 5.2;
  box-shadow: 0 34px 90px oklch(12% 0.04 261 / 0.22);
}

.clinic-proof .media-caption {
  right: auto;
  bottom: var(--sp-5);
  left: var(--sp-5);
  max-width: 260px;
  border-left: 1px solid oklch(100% 0 0 / 0.42);
  background: oklch(10% 0.045 261 / 0.52);
  color: var(--paper);
}

.service-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.74fr);
  gap: clamp(var(--sp-6), 5vw, var(--sp-16));
  margin-top: clamp(var(--sp-16), 8vw, var(--sp-24));
}

.service-panel {
  position: relative;
  display: block;
  min-height: 620px;
  overflow: hidden;
  color: var(--paper);
  text-decoration: none;
  background: var(--deep);
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
  transition: transform 1200ms var(--ease-out-expo), filter 1200ms var(--ease-out-expo);
}

.service-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 24%, oklch(8% 0.05 261 / 0.68) 100%);
}

.service-panel:hover img {
  transform: scale(1.045);
  filter: saturate(0.9) contrast(1.04);
}

.service-panel-offset {
  min-height: 470px;
  margin-top: clamp(80px, 10vw, 142px);
}

.service-panel-copy {
  position: absolute;
  right: clamp(var(--sp-5), 4vw, var(--sp-10, 40px));
  bottom: clamp(var(--sp-5), 4vw, var(--sp-10, 40px));
  left: clamp(var(--sp-5), 4vw, var(--sp-10, 40px));
  z-index: 2;
  max-width: 430px;
}

.service-panel-copy span {
  display: block;
  margin-bottom: var(--sp-3);
  color: oklch(88% 0.018 80 / 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.service-panel-copy h3 {
  margin-bottom: var(--sp-3);
  color: var(--paper);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 430;
}

.service-panel-copy p,
.service-panel-text p:not(.eyebrow) {
  color: oklch(88% 0.012 84);
  line-height: 1.7;
}

.service-panel-text {
  position: absolute;
  right: 22%;
  bottom: -44px;
  z-index: 4;
  width: min(420px, 36vw);
  padding: clamp(var(--sp-6), 3vw, var(--sp-8));
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 30px 80px oklch(12% 0.04 261 / 0.24);
}

.service-panel-text .eyebrow,
.service-panel-text .list-link {
  color: oklch(90% 0.018 80);
}

.before-after-story {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: clamp(var(--sp-8), 6vw, var(--sp-16));
  margin-top: clamp(var(--sp-16), 8vw, var(--sp-24));
}

.comparison-slider {
  --position: 52%;
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 28px 86px oklch(12% 0.04 261 / 0.16);
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.comparison-before {
  position: absolute;
  inset: 0;
}

.comparison-after-wrap {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
  border-right: 1px solid oklch(100% 0 0 / 0.74);
  transition: width 160ms var(--ease-out-expo);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.comparison-slider::after {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid oklch(100% 0 0 / 0.70);
  background:
    linear-gradient(90deg, transparent 0 17px, oklch(100% 0 0 / 0.82) 17px 18px, transparent 18px 28px, oklch(100% 0 0 / 0.82) 28px 29px, transparent 29px),
    oklch(13% 0.055 261 / 0.78);
  content: "";
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 34px oklch(8% 0.04 261 / 0.25);
  transition:
    transform 180ms var(--ease-out-expo),
    background-color 180ms var(--ease-out-expo),
    border-color 180ms var(--ease-out-expo);
}

.comparison-slider:hover::after,
.comparison-slider:focus-within::after,
.comparison-slider.is-active::after,
.comparison-slider.is-dragging::after {
  border-color: oklch(100% 0 0 / 0.92);
  transform: translate(-50%, -50%) scale(1.06);
}

.comparison-slider.is-dragging::after {
  transform: translate(-50%, -50%) scale(0.96);
}

.comparison-slider:focus-within {
  outline: 2px solid oklch(34% 0.087 261 / 0.62);
  outline-offset: 5px;
}

.comparison-label {
  position: absolute;
  top: var(--sp-5);
  z-index: 3;
  padding: var(--sp-2) var(--sp-3);
  background: oklch(8% 0.05 261 / 0.46);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-label-before {
  left: var(--sp-5);
}

.comparison-label-after {
  right: var(--sp-5);
}

.before-after-copy h3 {
  margin-bottom: var(--sp-5);
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.scrolling-cta {
  display: flex;
  gap: var(--sp-6);
  width: min(420px, 100%);
  margin-top: var(--sp-12);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--sp-4) 0;
}

.scrolling-cta span {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: cta-drift 18s linear infinite;
}

@keyframes cta-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-210%); }
}

.founder-feature {
  position: relative;
  overflow: hidden;
  padding-block: clamp(96px, 12vw, 168px);
  background:
    radial-gradient(circle at 72% 24%, oklch(38% 0.045 261 / 0.24), transparent 28%),
    oklch(12% 0.055 261);
  color: var(--paper);
}

.founder-feature::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, oklch(8% 0.045 261 / 0.74), transparent 72%);
}

.founder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(var(--sp-12), 8vw, var(--sp-24));
}

.founder-feature h2,
.founder-feature .lead {
  color: var(--paper);
}

.founder-feature h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.founder-feature .lead {
  max-width: 49ch;
  margin-top: var(--sp-8);
  color: oklch(86% 0.014 84);
}

.founder-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin: var(--sp-12) 0;
  padding-top: var(--sp-6);
  border-top: 1px solid oklch(100% 0 0 / 0.16);
}

.founder-metrics span {
  color: oklch(82% 0.012 84);
  font-size: 0.86rem;
  line-height: 1.45;
}

.founder-metrics strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.6vw, 2.8rem);
  font-weight: 430;
  line-height: 1;
}

.founder-portrait {
  margin: 0;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.82) contrast(1.05);
  box-shadow: 0 36px 100px oklch(4% 0.04 261 / 0.42);
}

.editorial-footer {
  padding: clamp(88px, 12vw, 150px) 0 clamp(44px, 6vw, 72px);
  background:
    linear-gradient(180deg, oklch(17% 0.058 261), oklch(12% 0.052 261));
  color: var(--paper);
  text-align: center;
}

.footer-editorial-inner {
  display: grid;
  justify-items: center;
  gap: var(--sp-8);
}

.footer-logo {
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.95;
  text-decoration: none;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4) clamp(var(--sp-5), 4vw, var(--sp-12));
}

.footer-nav a,
.footer-contact a {
  color: oklch(84% 0.014 84);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-contact a {
  color: oklch(72% 0.014 84);
  font-size: 0.76rem;
  text-transform: none;
  letter-spacing: 0.06em;
}

.editorial-footer small {
  width: min(680px, 100%);
  margin: var(--sp-8) auto 0;
  padding-top: var(--sp-8);
  border-top: 1px solid oklch(100% 0 0 / 0.12);
  color: oklch(64% 0.014 84);
}

@media (prefers-reduced-motion: reduce) {
  .credential-marquee-track,
  .scrolling-cta span {
    animation: none;
  }
}

@media (max-width: 980px) {
  .home-page .header {
    position: absolute;
  }

  .home-page.has-scrolled .header {
    position: fixed;
  }

  .home-page .nav {
    width: min(100% - 32px, 720px);
  }

  .home-page .menu-toggle {
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 70;
    display: grid !important;
    border-color: oklch(100% 0 0 / 0.35);
    background: oklch(100% 0 0 / 0.10);
  }

  .home-page .hero {
    min-height: 100dvh;
    padding: 0;
  }

  .home-page .hero-content {
    padding-top: 160px;
  }

  .editorial-split,
  .service-editorial,
  .before-after-story,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split-media {
    margin: 0;
    min-height: 460px;
  }

  .clinic-proof .media-grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    gap: var(--sp-5);
  }

  .clinic-proof .media-tile:nth-child(n) {
    width: auto;
    margin: 0;
  }

  .service-panel,
  .service-panel-offset {
    min-height: 520px;
    margin-top: 0;
  }

  .service-panel-text {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .comparison-slider {
    min-height: 560px;
  }

  .founder-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .home-page::after {
    display: none;
  }

  .home-page .brand-logo {
    display: none;
  }

  .home-page .brand-text strong {
    font-size: 0.92rem;
  }

  .home-page .hero {
    min-height: 100dvh;
  }

  .home-page .hero-bg-media video,
  .home-page .hero-bg-media img {
    object-position: 58% 20%;
  }

  .home-page .hero::before {
    background:
      linear-gradient(180deg, oklch(8% 0.05 261 / 0.56) 0%, transparent 38%, oklch(8% 0.05 261 / 0.72) 100%),
      linear-gradient(90deg, oklch(8% 0.05 261 / 0.58), transparent);
  }

  .home-page .hero-content {
    width: calc(100% - 36px);
    padding: 150px 0 70px;
  }

  .home-page .hero-content h1 {
    max-width: 9.6ch;
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .home-page .hero-content .lead {
    max-width: 29ch;
  }

  .credential-marquee {
    padding: var(--sp-6) 0;
  }

  .credential-marquee span {
    font-size: 1rem;
  }

  .editorial-split-media {
    min-height: 340px;
  }

  .editorial-split-copy {
    padding: var(--sp-12) var(--sp-4);
  }

  .statement-interlude .container {
    display: block;
  }

  .clinic-proof .media-grid {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .service-panel-offset {
    min-height: 430px;
  }

  .service-panel-copy {
    inset-inline: var(--sp-5);
    bottom: var(--sp-5);
  }

  .service-panel-text {
    padding: var(--sp-6);
  }

  .comparison-slider {
    min-height: 430px;
  }

  .before-after-copy h3 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .founder-feature h2 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .founder-metrics {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }
}

@media (max-width: 680px) {
  .home-page .menu-toggle {
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 120;
    display: grid !important;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(10, 17, 35, 0.22);
    color: #fff;
  }
}

/* ── Sitewide luxury consistency pass ─────────────────────────────────── */
.luxury-site .header {
  background: oklch(12% 0.052 261 / 0.94);
  border-bottom: 1px solid oklch(100% 0 0 / 0.10);
  box-shadow: none;
}

.luxury-site.home-page .header {
  background: transparent;
  border-bottom: 0;
}

.luxury-site .brand-logo {
  display: none;
}

.luxury-site .brand {
  padding-left: 0;
}

.luxury-site .brand-text strong {
  color: var(--paper);
  font-family: var(--font-heading);
  font-weight: 430;
}

.luxury-site .brand-text span {
  color: oklch(82% 0.012 84);
}

.luxury-site .nav-links a {
  color: oklch(87% 0.012 84);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
}

.luxury-site .nav-links a:hover {
  background: transparent;
  color: var(--white);
}

.luxury-site .button,
.luxury-site button.button {
  border-radius: 0;
}

.luxury-site .header .button.secondary {
  border-color: oklch(100% 0 0 / 0.32);
  color: var(--paper);
}

.luxury-site .page-hero {
  position: relative;
  overflow: hidden;
  --hero-art: url("clinic-diagnostic-2.png");
  padding: clamp(96px, 12vw, 160px) 0 clamp(84px, 10vw, 136px);
  background:
    radial-gradient(circle at 78% 18%, oklch(52% 0.045 261 / 0.26), transparent 28%),
    linear-gradient(135deg, oklch(13% 0.056 261) 0%, oklch(19% 0.058 261) 58%, oklch(10% 0.044 261) 100%);
  color: var(--paper);
}

.luxury-site .page-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(58vw, 920px);
  content: "";
  background-image:
    linear-gradient(90deg, oklch(13% 0.056 261) 0%, oklch(13% 0.056 261 / 0.65) 18%, transparent 52%),
    linear-gradient(180deg, oklch(8% 0.05 261 / 0.26), oklch(8% 0.05 261 / 0.62)),
    var(--hero-art);
  background-size: cover;
  background-position: center;
  opacity: 0.46;
  filter: grayscale(0.2) saturate(0.68) contrast(1.06);
  transform: scale(1.04);
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, black 28%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 28%, black 100%);
}

.luxury-site .page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.68' numOctaves='4' stitchTiles='stitch' type='fractalNoise'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
}

.luxury-site .page-hero.location-hero-prestwich {
  --hero-art: url("dr-winter-treating.jpg");
}

.luxury-site .page-hero.location-hero-warrington {
  --hero-art: url("clinic-consultation-room.png");
}

.luxury-site .page-hero .container {
  position: relative;
  z-index: 1;
}

.luxury-site .page-hero h1,
.luxury-site .page-hero .lead {
  color: var(--paper);
}

.luxury-site .page-hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 6vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.luxury-site .page-hero .lead {
  max-width: 46ch;
  margin-top: var(--sp-8);
  color: oklch(86% 0.012 84);
}

.luxury-site .page-hero .eyebrow,
.luxury-site .page-hero .breadcrumb {
  color: oklch(82% 0.018 80);
}

.luxury-site .page-hero-panel {
  border: 0;
  background: transparent;
  box-shadow: 0 34px 96px oklch(5% 0.04 261 / 0.36);
}

.luxury-site .page-hero-panel-copy {
  background: oklch(96% 0.008 84);
}

.logo-marquee {
  padding: clamp(22px, 3vw, 34px) 0;
  background: oklch(94% 0.007 84);
}

.logo-marquee .credential-marquee-track {
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.logo-marquee span {
  display: grid;
  min-width: clamp(108px, 10vw, 168px);
  min-height: 54px;
  place-items: center;
}

.logo-marquee img {
  display: block;
  width: auto;
  max-width: clamp(96px, 10vw, 158px);
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.66;
  mix-blend-mode: multiply;
}

.luxury-site .service-card,
.luxury-site .proof-card,
.luxury-site .faq-card,
.luxury-site .location-card,
.luxury-site .result-card,
.luxury-site .form-panel {
  border-radius: 0;
  box-shadow: none;
}

.luxury-site .service-card,
.luxury-site .proof-card,
.luxury-site .faq-card {
  background: transparent;
  border-color: oklch(82% 0.008 80 / 0.62);
}

.luxury-site .service-card {
  min-height: 300px;
}

.luxury-site .service-icon {
  border-radius: 0;
  background: oklch(12% 0.052 261);
  color: var(--paper);
}

.luxury-site .footer-icon-links {
  gap: var(--sp-3);
}

.luxury-site .footer-icon-links a {
  display: inline-grid;
  grid-template-columns: 38px auto;
  align-items: center;
  gap: var(--sp-3);
  min-height: 42px;
  padding-right: var(--sp-4);
  border: 1px solid oklch(100% 0 0 / 0.13);
  color: oklch(82% 0.012 84);
  text-transform: none;
  letter-spacing: 0.04em;
}

.luxury-site .footer-icon-links svg {
  width: 38px;
  height: 38px;
  padding: 10px;
  border-right: 1px solid oklch(100% 0 0 / 0.13);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.luxury-site .footer-seo-links {
  width: min(940px, 100%);
  gap: var(--sp-2);
}

.luxury-site .footer-seo-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 var(--sp-4);
  border: 1px solid oklch(100% 0 0 / 0.13);
  color: oklch(86% 0.012 84);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
}

.luxury-site .footer-seo-links a:hover,
.luxury-site .footer-icon-links a:hover {
  border-color: oklch(100% 0 0 / 0.32);
  color: var(--paper);
}

.luxury-site .footer-logo {
  max-width: 12ch;
}

@media (min-width: 981px) {
  .luxury-site .fit-list {
    grid-template-columns: 1.18fr 0.86fr 1fr;
    align-items: start;
  }

  .luxury-site .fit-item:nth-child(2) {
    margin-top: var(--sp-8);
  }

  .luxury-site .fit-item:nth-child(3) {
    margin-top: var(--sp-16);
  }

  .luxury-site .review-grid {
    grid-template-columns: 0.94fr 1.14fr 0.96fr;
    align-items: start;
    gap: clamp(18px, 2.2vw, 34px);
  }

  .luxury-site .review-card:nth-child(2) {
    margin-top: var(--sp-8);
  }

  .luxury-site .review-card:nth-child(3) {
    margin-top: var(--sp-5);
  }

  .luxury-site .proof-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: start;
  }

  .luxury-site .proof-card:nth-child(3) {
    margin-left: clamp(0px, 4vw, 72px);
  }
}

@media (max-width: 980px) {
  .luxury-site .page-hero h1 {
    max-width: 13ch;
  }
}

@media (max-width: 680px) {
  .luxury-site .header {
    position: sticky;
    top: 0;
  }

  .luxury-site.home-page .header {
    position: absolute;
  }

  .luxury-site.home-page.has-scrolled .header {
    position: fixed;
  }

  .home-page .hero-bg-media video {
    display: none;
  }

  .home-page .hero-bg-media::before {
    position: absolute;
    inset: 0;
    content: "";
    background: url("dr-winter-portrait.jpg") center 18% / cover no-repeat;
    transform: scale(1.02);
  }

  .home-page .hero-mobile-proof {
    display: block;
  }

  .luxury-site .page-hero {
    padding: var(--sp-16) 0 var(--sp-12);
  }

  .luxury-site .page-hero::before {
    width: 100%;
    opacity: 0.22;
    mask-image: linear-gradient(180deg, black 0%, transparent 84%);
    -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 84%);
  }

  .luxury-site .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .logo-marquee span {
    min-width: 112px;
  }

  .logo-marquee img {
    max-width: 104px;
    max-height: 34px;
  }

  .luxury-site .footer-icon-links {
    display: grid;
    width: 100%;
  }

  .luxury-site .footer-icon-links a {
    justify-content: start;
  }

  .luxury-site .footer-seo-links {
    justify-content: flex-start;
  }
}
