:root {
  color-scheme: light;
  --forest: #303928;
  --forest-deep: #242d21;
  --forest-soft: #4a5941;
  --cream: #f3eedf;
  --cream-deep: #e5ddc9;
  --paper: #faf8f1;
  --sage: #cbd2c2;
  --ink: #1d241c;
  --muted: #62685e;
  --line: rgba(37, 51, 35, 0.18);
  --line-light: rgba(243, 238, 223, 0.24);
  --shadow: 0 28px 80px rgba(27, 39, 27, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --header-height: 78px;
  --radius-large: 30px;
  --radius-medium: 16px;
  --radius-control: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --layer-header: 20;
  --layer-fab: 30;
  --layer-dialog: 40;
  --layer-cookie: 50;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 60;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.46'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary,
a {
  outline-offset: 4px;
}

:focus-visible {
  outline: 3px solid #a9c59e;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 5.6vw, 5.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  letter-spacing: -0.025em;
  line-height: 1.18;
}

p {
  color: var(--muted);
  text-wrap: pretty;
}

ul,
ol {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-control);
  background: var(--cream);
  color: var(--forest);
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(92px, 11vw, 162px) 0;
}

.lead {
  max-width: 58ch;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.section-kicker,
.eyebrow,
.cookie-label {
  margin-bottom: 18px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker-light,
.eyebrow {
  color: rgba(243, 238, 223, 0.72);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  background: var(--forest);
  color: var(--cream);
  font: 700 0.92rem/1 var(--sans);
  white-space: nowrap;
  cursor: pointer;
  transition: transform 240ms var(--ease), background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.button:hover {
  background: var(--forest-soft);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.82rem;
}

.button-cream {
  background: var(--cream);
  color: var(--forest);
}

.button-cream:hover {
  background: #fffaf0;
}

.button-outline-light {
  border-color: rgba(243, 238, 223, 0.52);
  background: transparent;
  color: var(--cream);
}

.button-outline-light:hover {
  border-color: var(--cream);
  background: rgba(243, 238, 223, 0.1);
}

.button-text-light {
  min-height: auto;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 238, 223, 0.64);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
}

.button-text-light:hover {
  background: transparent;
  color: #fff;
  transform: none;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 700;
  transition: gap 220ms var(--ease), color 220ms ease;
}

.text-link::after {
  content: "↗";
  font-size: 0.9em;
}

.text-link:hover {
  gap: 15px;
  color: var(--forest-soft);
}

.text-link-light {
  color: var(--cream);
}

.text-link-light:hover {
  color: #fff;
}

.source-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: var(--layer-header);
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(243, 238, 223, 0.09);
  background: color-mix(in srgb, var(--forest) 92%, transparent);
  color: var(--cream);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--forest-deep) 96%, transparent);
  box-shadow: 0 12px 38px rgba(16, 25, 17, 0.22);
}

.nav-shell {
  display: grid;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.brand-logo-crop {
  position: relative;
  display: block;
  width: 150px;
  height: 36px;
  overflow: hidden;
  background: url("assets/viacura-logo-transparent.png") center / 150px auto no-repeat;
}

.brand-logo-crop img {
  visibility: hidden;
}

.price-cell strong,
.price-cell small {
  display: block;
}

.price-cell small {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.83rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a {
  color: rgba(243, 238, 223, 0.72);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--cream);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(243, 238, 223, 0.24);
  border-radius: 999px;
  background: rgba(243, 238, 223, 0.06);
}

.language-switch a {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  color: rgba(243, 238, 223, 0.7);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  transition: color 180ms ease, background 180ms ease;
}

.language-switch a:hover {
  color: var(--cream);
}

.language-switch a[aria-current="true"] {
  background: var(--cream);
  color: var(--forest-deep);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  min-height: calc(100dvh - var(--header-height));
  background: var(--forest);
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.hero-copy-panel {
  display: flex;
  min-height: inherit;
  align-items: flex-end;
  padding: clamp(72px, 8vw, 124px) max(32px, calc((100vw - 1240px) / 2)) clamp(76px, 8vw, 112px);
  padding-right: clamp(38px, 7vw, 96px);
}

.hero-copy-inner {
  width: min(620px, 100%);
}

.hero h1 {
  max-width: 12.8ch;
  margin-bottom: 30px;
  color: var(--cream);
  font-size: clamp(3.25rem, 4.25vw, 5.8rem);
}

.hero-lead {
  max-width: 50ch;
  margin-bottom: 33px;
  color: rgba(243, 238, 223, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 30px;
  padding: 0;
  color: rgba(243, 238, 223, 0.86);
  font-size: 0.78rem;
  font-weight: 650;
  gap: 10px 20px;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 18px;
}

.hero-assurances li::before {
  position: absolute;
  left: 0;
  color: #bfd1b7;
  content: "✓";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.hero-fine {
  margin: 22px 0 0;
  color: rgba(243, 238, 223, 0.66);
  font-size: 0.78rem;
}

.hero-photo-panel {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: var(--cream-deep);
}

.hero-photo-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 36, 25, 0.08), transparent 38%, rgba(25, 36, 25, 0.38));
  content: "";
  pointer-events: none;
}

.hero-photo-panel > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  filter: saturate(0.72) sepia(0.08) contrast(0.96);
  transform: scale(1.015);
}

.hero-price-card {
  position: absolute;
  z-index: 1;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(26px, 5vw, 68px);
  display: flex;
  width: min(320px, calc(100% - 48px));
  padding: 25px 27px 24px;
  border: 1px solid rgba(243, 238, 223, 0.45);
  border-radius: var(--radius-medium);
  background: rgba(28, 40, 28, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 60px rgba(21, 31, 21, 0.3);
  color: var(--cream);
  backdrop-filter: blur(16px);
  flex-direction: column;
}

.hero-price-card span,
.hero-price-card small {
  color: rgba(243, 238, 223, 0.68);
}

.hero-price-card span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-price-card strong {
  margin: 5px 0 1px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero-price-card small {
  font-size: 0.75rem;
}

.fact-strip {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-grid p {
  display: flex;
  min-height: 120px;
  margin: 0;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
  flex-direction: column;
}

.fact-grid p:first-child {
  border-left: 1px solid var(--line);
}

.fact-grid strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.fact-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-section {
  background: var(--cream);
}

.trust-heading,
.proof-heading {
  display: grid;
  margin-bottom: clamp(58px, 8vw, 96px);
  align-items: end;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(50px, 10vw, 140px);
}

.trust-heading h2,
.proof-heading h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.trust-heading h2 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 4.7vw, 4.7rem);
  line-height: 1.01;
}

.trust-heading > div:last-child > p:last-child,
.proof-heading > div:last-child > p:last-child {
  margin-bottom: 0;
}

.trust-layout {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
}

.team-figure {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  margin: 0;
}

.team-figure img {
  width: 100%;
  max-height: 780px;
  aspect-ratio: 0.76;
  border-radius: 4px var(--radius-large) 4px var(--radius-large);
  object-fit: cover;
  object-position: center 68%;
  filter: saturate(0.72) sepia(0.04);
}

.team-figure figcaption {
  max-width: 54ch;
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.75rem;
}

.trust-stack {
  display: grid;
  gap: 24px;
}

.clinic-identity,
.validation-card,
.clinic-reputation-card,
.coordinator-card {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-large) 4px var(--radius-large) 4px;
}

.clinic-identity {
  border: 1px solid var(--line);
  background: var(--paper);
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-kicker-light {
  color: rgba(243, 238, 223, 0.65);
}

.clinic-identity h3,
.clinic-reputation-card h3,
.coordinator-card h3,
.review-slot h3,
.clinician-slot h3 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.clinic-reputation-card {
  background: var(--paper);
  color: var(--ink);
}

.clinic-reputation-card > p:not(.card-kicker) {
  max-width: 62ch;
}

.clinic-trust-signals {
  display: grid;
  margin: 36px 0 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clinic-trust-signals span {
  display: flex;
  min-height: 132px;
  justify-content: flex-end;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  flex-direction: column;
}

.clinic-trust-signals strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.clinic-proof-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  list-style: none;
}

.clinic-proof-list li {
  position: relative;
  padding: 11px 0 11px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
}

.clinic-proof-list a {
  color: inherit;
  text-decoration-color: rgba(48, 57, 40, 0.32);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.clinic-proof-list a:hover {
  color: var(--forest-soft);
}

.clinic-proof-list li::before {
  position: absolute;
  left: 0;
  color: var(--forest-soft);
  content: "✓";
  font-weight: 800;
}

.draft-chip {
  display: inline-flex;
  padding: 7px 9px;
  margin-bottom: 28px;
  border: 1px solid rgba(48, 57, 40, 0.28);
  border-radius: 3px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.draft-chip-light {
  border-color: rgba(243, 238, 223, 0.32);
  color: rgba(243, 238, 223, 0.8);
}

.clinic-identity dl {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.clinic-identity dl > div {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(130px, 0.4fr) 1fr;
  gap: 20px;
}

.clinic-identity dt {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.clinic-identity dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.validation-card {
  border: 1px solid var(--line);
  background: rgba(250, 248, 241, 0.48);
}

.validation-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.validation-list li {
  display: grid;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 12px;
}

.validation-list li > span {
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.validation-list strong {
  color: var(--ink);
}

.validation-list p {
  max-width: 58ch;
  margin: 4px 0 0;
  font-size: 0.86rem;
}

.coordinator-card {
  display: flex;
  background: var(--forest);
  color: var(--cream);
  flex-direction: column;
}

.coordinator-card h3,
.review-slot h3 {
  color: var(--cream);
}

.coordinator-card > p:not(.card-kicker) {
  max-width: 58ch;
  color: rgba(243, 238, 223, 0.72);
}

.coordinator-card .coordinator-disclosure {
  margin-top: 22px;
  padding: 14px 16px;
  border-left: 2px solid rgba(243, 238, 223, 0.46);
  background: rgba(243, 238, 223, 0.07);
  color: rgba(243, 238, 223, 0.66);
  font-size: 0.78rem;
}

.coordinator-proof {
  display: grid;
  margin: 32px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.coordinator-card > .button {
  align-self: flex-start;
  margin-top: auto;
}

.coordinator-proof span {
  display: flex;
  min-height: 104px;
  justify-content: center;
  padding: 20px 18px;
  border-right: 1px solid var(--line-light);
  color: rgba(243, 238, 223, 0.62);
  font-size: 0.75rem;
  flex-direction: column;
}

.coordinator-proof span:last-child {
  border-right: 0;
}

.coordinator-proof strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

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

.comparison-heading {
  display: grid;
  margin-bottom: 64px;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 10vw, 150px);
}

.comparison-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -18px;
}

.comparison-heading h2,
.comparison-heading p {
  margin-bottom: 0;
}

.comparison-heading h2 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 1.03;
}

.comparison-heading > p:last-child {
  max-width: 46ch;
  font-size: 1.08rem;
}

.price-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.price-card {
  min-height: 520px;
  padding: clamp(34px, 5vw, 60px);
}

.price-card-featured {
  border-radius: var(--radius-large) 0 0 var(--radius-large);
  background: var(--forest);
  color: var(--cream);
}

.price-card-reference {
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 var(--radius-large) var(--radius-large) 0;
  background: var(--cream);
}

.price-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 700;
}

.price-card-featured .price-card-topline {
  border-color: var(--line-light);
}

.price-card-topline small {
  padding: 5px 9px;
  border: 1px solid currentColor;
  border-radius: var(--radius-control);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-price {
  margin: 56px 0 10px;
  color: inherit;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.comparison-price span {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.price-equivalent {
  min-height: 52px;
  margin-bottom: 32px;
  color: inherit;
  font-size: 0.82rem;
  opacity: 0.66;
}

.check-list,
.plain-list {
  display: grid;
  margin-bottom: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #b9d2ad;
  font-weight: 700;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  content: "·";
  color: var(--forest);
  font-size: 1.5rem;
  line-height: 0.8;
}

.comparison-foot {
  display: grid;
  margin-top: 28px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.comparison-foot > p {
  max-width: 68ch;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.comparison-foot > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 17px 22px;
}

.scope-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scope-grid article {
  min-height: 310px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.scope-grid article:first-child {
  border-radius: var(--radius-large) 0 0 4px;
}

.scope-grid article:last-child {
  border-left: 0;
  border-radius: 0 4px var(--radius-large) 0;
  background: var(--paper);
}

.scope-grid h3 {
  max-width: 18ch;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.check-list-dark li::before {
  color: var(--forest-soft);
}

.included-package {
  display: grid;
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-large) 4px var(--radius-large) 4px;
  background: var(--cream);
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(42px, 8vw, 108px);
}

.included-package-heading h3 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.3vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.included-package-heading > p:last-child {
  max-width: 42ch;
  margin-bottom: 0;
}

.included-benefits {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  list-style: none;
}

.included-benefits li {
  position: relative;
  padding: 17px 0 17px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
}

.included-benefits li::before {
  position: absolute;
  left: 0;
  color: var(--forest-soft);
  content: "✓";
  font-weight: 800;
}

.booking-terms {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.booking-terms article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.booking-terms article > span,
.care-timeline li > span {
  display: block;
  margin-bottom: 38px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.booking-terms h3 {
  font-size: 1.08rem;
}

.booking-terms p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.process-section {
  overflow: hidden;
  background: var(--cream);
}

.process-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(64px, 10vw, 136px);
}

.process-photo {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.process-photo img {
  width: 100%;
  aspect-ratio: 0.86;
  border-radius: 4px var(--radius-large) 4px var(--radius-large);
  object-fit: cover;
  object-position: 61% center;
  filter: saturate(0.76) sepia(0.04);
}

.process-photo p {
  max-width: 56ch;
  margin: 14px 0 0;
  font-size: 0.72rem;
}

.process-copy h2 {
  max-width: 9.5ch;
  margin-bottom: 50px;
}

.numbered-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.numbered-list li {
  display: grid;
  padding: 27px 0 30px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
  gap: 18px;
}

.numbered-list li > span {
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 800;
}

.numbered-list h3,
.numbered-list p {
  margin-bottom: 0;
}

.numbered-list p {
  max-width: 46ch;
}

.process-intro {
  display: grid;
  align-items: end;
  margin-bottom: clamp(70px, 9vw, 118px);
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.64fr);
  gap: clamp(48px, 10vw, 138px);
}

.process-intro h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.process-intro > div:last-child > p {
  max-width: 52ch;
  margin-bottom: 28px;
  font-size: 1.06rem;
}

.process-entry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.patient-pathway {
  border-top: 1px solid var(--line);
}

.path-phase {
  display: grid;
  padding: clamp(48px, 6vw, 78px) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 108px);
}

.path-phase-heading {
  align-self: start;
}

.path-phase-heading > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--forest-soft);
  border-radius: 50%;
  color: var(--forest-soft);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.path-phase-heading p {
  margin-bottom: 7px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.path-phase-heading h3 {
  max-width: 13ch;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.path-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.path-steps li {
  min-height: 238px;
  padding: 25px 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 241, 0.5);
}

.path-steps li > span {
  display: block;
  margin-bottom: 48px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.path-steps h4 {
  max-width: 18ch;
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.path-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.path-phase-clinical .path-steps li {
  background: rgba(229, 221, 201, 0.34);
}

.process-medical-note {
  max-width: 75ch;
  margin: 24px 0 0 auto;
  color: var(--muted);
  font-size: 0.75rem;
}

.care-timeline {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.care-timeline li {
  min-height: 350px;
  padding: 28px 24px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 241, 0.5);
}

.care-timeline li:nth-child(even) {
  background: rgba(229, 221, 201, 0.34);
}

.care-timeline h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.care-timeline p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.process-details {
  margin-top: clamp(46px, 7vw, 82px);
  border-top: 1px solid var(--line);
}

.process-details details {
  border-bottom: 1px solid var(--line);
}

.process-details summary {
  position: relative;
  padding: 28px 64px 28px 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.process-details summary::-webkit-details-marker {
  display: none;
}

.process-details summary::after {
  position: absolute;
  right: 8px;
  content: "+";
  color: var(--forest-soft);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.process-details details[open] summary::after {
  transform: rotate(45deg);
}

.detail-content {
  max-width: 960px;
  padding: 0 54px 36px 0;
}

.detail-content > p {
  max-width: 72ch;
}

.detail-content > small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}

.method-summary,
.day-plan {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.method-summary article,
.day-plan article {
  display: flex;
  min-height: 150px;
  padding: 24px;
  background: var(--paper);
  flex-direction: column;
}

.method-summary strong {
  margin-bottom: 10px;
  color: var(--forest);
}

.method-summary span {
  color: var(--muted);
  font-size: 0.86rem;
}

.day-plan {
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.day-plan article > span {
  margin-bottom: 26px;
  color: var(--forest-soft);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.day-plan h3 {
  font-size: 1.12rem;
}

.day-plan p {
  margin-bottom: 0;
  font-size: 0.82rem;
}

.day-plan > small {
  grid-column: 1 / -1;
  padding: 15px 20px;
  background: var(--paper);
}

.proof-section {
  background: var(--forest);
  color: var(--cream);
}

.proof-section .section-kicker {
  color: rgba(243, 238, 223, 0.74);
}

.proof-heading h2 {
  color: var(--cream);
}

.proof-heading > div:last-child > p {
  color: rgba(243, 238, 223, 0.7);
}

.placeholder-notice {
  padding: 16px 18px;
  border-left: 3px solid rgba(243, 238, 223, 0.58);
  background: rgba(243, 238, 223, 0.08);
  font-size: 0.78rem;
}

.placeholder-notice strong {
  color: var(--cream);
}

.case-grid,
.proof-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 4px var(--radius-large) 4px var(--radius-large);
  background: var(--cream);
  color: var(--ink);
}

.case-visual {
  display: grid;
  min-height: 330px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  grid-template-columns: repeat(2, 1fr);
}

.case-visual span {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-visual span:first-child {
  border-right: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, rgba(48, 57, 40, 0.035) 0 10px, transparent 10px 20px);
}

.case-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.case-meta {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.case-meta li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}

.case-meta span {
  color: var(--muted);
  font-size: 0.76rem;
}

.case-meta strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.proof-support-grid {
  margin-top: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.review-slot,
.clinician-slot {
  min-height: 320px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-large) 4px var(--radius-large) 4px;
}

.review-slot {
  border: 1px solid var(--line-light);
  background: rgba(243, 238, 223, 0.06);
}

.review-slot > p:not(.card-kicker) {
  max-width: 58ch;
  color: rgba(243, 238, 223, 0.68);
}

.clinician-slot {
  background: var(--sage);
  color: var(--ink);
}

.clinician-slot > p:not(.card-kicker) {
  max-width: 54ch;
}

.protection-section {
  padding: clamp(94px, 11vw, 158px) 0 clamp(108px, 13vw, 180px);
  background: var(--forest);
  color: var(--cream);
}

.protection-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(70px, 11vw, 148px);
}

.protection-grid h2 {
  max-width: 8.6ch;
  color: var(--cream);
}

.protection-lead {
  margin-bottom: 44px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.protection-points {
  display: grid;
  margin-bottom: 34px;
  border-top: 1px solid var(--line-light);
}

.protection-points p {
  display: grid;
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 150px 1fr;
  gap: 22px;
}

.protection-points strong {
  color: var(--cream);
}

.protection-points span,
.protection-note {
  color: rgba(243, 238, 223, 0.66);
}

.protection-note {
  max-width: 70ch;
  margin-bottom: 0;
  font-size: 0.76rem;
}

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

.methods-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 11vw, 150px);
}

.methods-intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.methods-intro h2 {
  max-width: 9ch;
}

.methods-intro > p:not(.section-kicker) {
  max-width: 50ch;
  margin-bottom: 30px;
}

.method-list {
  display: grid;
  gap: 22px;
}

.method-list article {
  position: relative;
  min-height: 330px;
  padding: clamp(34px, 5vw, 54px);
  overflow: hidden;
  border-radius: 4px var(--radius-large) 4px var(--radius-large);
  background: var(--cream);
}

.method-list article:last-child {
  margin-left: 11%;
  background: var(--sage);
}

.method-list article > span {
  position: absolute;
  right: 26px;
  bottom: -30px;
  color: rgba(37, 51, 35, 0.08);
  font-family: var(--serif);
  font-size: clamp(8rem, 17vw, 15rem);
  letter-spacing: -0.08em;
  line-height: 1;
}

.method-list h3 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin-top: 80px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.method-list p {
  position: relative;
  z-index: 1;
  max-width: 47ch;
  margin-bottom: 0;
}

.journey-section {
  position: relative;
  min-height: 780px;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream);
}

.journey-section > img,
.journey-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-section > img {
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.72) sepia(0.08);
}

.journey-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(23, 34, 23, 0.9), rgba(23, 34, 23, 0.63) 55%, rgba(23, 34, 23, 0.32));
}

.journey-content {
  display: flex;
  min-height: 780px;
  justify-content: center;
  padding: 100px 0 80px;
  flex-direction: column;
}

.journey-content h2 {
  max-width: 10ch;
  color: var(--cream);
}

.journey-steps {
  display: grid;
  max-width: 980px;
  margin-top: 36px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.journey-steps article {
  padding: 30px 28px 8px 0;
  border-right: 1px solid var(--line-light);
}

.journey-steps article:not(:first-child) {
  padding-left: 28px;
}

.journey-steps article:last-child {
  border-right: 0;
}

.journey-steps span {
  display: block;
  margin-bottom: 46px;
  color: rgba(243, 238, 223, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.journey-steps h3 {
  color: var(--cream);
}

.journey-steps p,
.journey-note {
  color: rgba(243, 238, 223, 0.7);
}

.journey-note {
  margin: 40px 0 0;
  font-size: 0.75rem;
}

.role-section {
  background: var(--cream);
}

.role-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(70px, 12vw, 160px);
}

.role-statement {
  margin-bottom: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.role-grid > div {
  padding-top: 12px;
}

.role-grid > div > p:last-child {
  max-width: 56ch;
  margin-bottom: 0;
}

.faq-preview {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(60px, 11vw, 150px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.faq-intro h2 {
  max-width: 8ch;
}

.faq-intro > p:not(.section-kicker) {
  max-width: 38ch;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.8vw, 1.3rem);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  right: 8px;
  content: "+";
  color: var(--forest-soft);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 62ch;
  padding: 0 54px 28px 0;
  margin-bottom: 0;
}

.final-cta {
  padding-top: 18px;
  background: var(--paper);
}

.final-cta-panel {
  display: grid;
  padding: clamp(44px, 7vw, 86px);
  border-radius: var(--radius-large) 4px var(--radius-large) 4px;
  background: var(--forest);
  color: var(--cream);
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  gap: clamp(50px, 8vw, 110px);
}

.final-cta-panel h2 {
  max-width: 10ch;
  color: var(--cream);
}

.final-cta-panel > div:first-child > p:last-child {
  max-width: 50ch;
  margin-bottom: 0;
  color: rgba(243, 238, 223, 0.72);
}

.final-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}

.final-actions small {
  margin-top: 3px;
  color: rgba(243, 238, 223, 0.56);
  text-align: center;
}



.site-footer {
  padding: 92px 0 32px;
  background: var(--forest-deep);
  color: var(--cream);
}

.footer-main {
  display: grid;
  padding-bottom: 62px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-main > div > p {
  max-width: 44ch;
  margin-bottom: 0;
  color: rgba(243, 238, 223, 0.62);
}

.footer-links {
  display: grid;
  align-content: start;
  justify-content: end;
  grid-template-columns: repeat(2, minmax(130px, 190px));
  gap: 15px 34px;
}

.footer-links a,
.footer-links button {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: rgba(243, 238, 223, 0.78);
  font: inherit;
  font-size: 0.86rem;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--cream);
}

.legal-copy {
  display: grid;
  padding-top: 30px;
  grid-template-columns: 1.4fr 0.9fr 0.7fr;
  gap: 40px;
}

.legal-copy p {
  margin-bottom: 0;
  color: rgba(243, 238, 223, 0.68);
  font-size: 0.75rem;
}

.legal-copy p:last-child {
  text-align: right;
}











.cookie-banner {
  position: fixed;
  z-index: var(--layer-cookie);
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding: 26px 28px;
  border: 1px solid rgba(243, 238, 223, 0.22);
  border-radius: var(--radius-medium);
  background: rgba(27, 39, 27, 0.97);
  box-shadow: 0 24px 80px rgba(13, 20, 13, 0.4);
  color: var(--cream);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto;
  gap: 34px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-label {
  margin-bottom: 6px;
  color: rgba(243, 238, 223, 0.56);
}

.cookie-banner h2 {
  margin-bottom: 6px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cookie-banner p:last-child {
  max-width: 70ch;
  margin-bottom: 0;
  color: rgba(243, 238, 223, 0.64);
  font-size: 0.76rem;
}

.cookie-banner p a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.setup-dialog {
  width: min(560px, calc(100% - 36px));
  padding: 42px;
  border: 0;
  border-radius: var(--radius-large) 4px var(--radius-large) 4px;
  background: var(--paper);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.setup-dialog::backdrop {
  background: rgba(20, 29, 20, 0.68);
  backdrop-filter: blur(5px);
}

.setup-dialog h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
}

.setup-dialog .button {
  margin-top: 10px;
}























.callback-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.callback-form label > span:first-child:not(.phone-input) {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.callback-field-wide {
  grid-column: 1 / -1;
}

.callback-form input,
.callback-form select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffef9;
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.callback-form input:focus,
.callback-form select:focus {
  border-color: var(--forest-soft);
  box-shadow: 0 0 0 3px rgba(74, 89, 65, 0.12);
  outline: 0;
}

.phone-input {
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fffef9;
  grid-template-columns: auto 1fr;
}

.phone-input strong {
  padding: 0 15px;
  border-right: 1px solid var(--line);
  font-size: 0.88rem;
}

.phone-input input {
  border: 0;
  background: transparent;
}

.callback-consent {
  display: grid;
  margin-top: 22px;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}

.callback-consent input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.callback-consent span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.callback-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.callback-reassurance {
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 0.74rem;
}

.callback-submit {
  width: 100%;
}

.callback-submit:disabled {
  opacity: 0.58;
  cursor: wait;
}

.callback-status {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.callback-status[data-state="error"] {
  color: #923e32;
}

.callback-status[data-state="test"] {
  padding: 12px 14px;
  border-left: 3px solid var(--forest-soft);
  background: var(--cream);
  color: var(--ink);
}

.callback-success {
  text-align: center;
}

.callback-success > span {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 1.4rem;
}

.callback-success h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
}

.callback-success .button {
  margin-top: 12px;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 300 1.9rem/1 var(--sans);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Inner pages */
.inner-page {
  background: var(--paper);
}

.inner-hero {
  padding: clamp(88px, 10vw, 140px) 0 clamp(72px, 9vw, 116px);
  background: var(--forest);
  color: var(--cream);
}

.inner-hero .eyebrow {
  margin-bottom: 24px;
}

.inner-hero h1 {
  max-width: 12ch;
  margin-bottom: 28px;
  color: var(--cream);
  font-size: clamp(4rem, 8.5vw, 8.4rem);
}

.inner-hero p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: rgba(243, 238, 223, 0.7);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 38px;
  color: rgba(243, 238, 223, 0.66);
  font-size: 0.78rem;
  gap: 9px;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-detail {
  background: var(--paper);
}

.pricing-lead-grid {
  display: grid;
  margin-bottom: 70px;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

.pricing-lead-grid h2,
.pricing-lead-grid p {
  margin-bottom: 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-large) 4px var(--radius-large) 4px;
  background: var(--cream);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.pricing-table th,
.pricing-table td {
  padding: 23px 28px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table th {
  color: var(--forest-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table td {
  color: var(--muted);
}

.pricing-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-note {
  max-width: 78ch;
  margin: 20px 0 0;
  font-size: 0.76rem;
}

.package-section {
  background: var(--cream);
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 140px);
}

.package-grid h2 {
  max-width: 9ch;
}

.package-list {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-list li {
  display: grid;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 34px 1fr;
  gap: 16px;
}

.package-list li::before {
  content: "✓";
  color: var(--forest-soft);
  font-weight: 800;
}

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

.faq-tools {
  position: sticky;
  z-index: 5;
  top: var(--header-height);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(16px);
}

.faq-search-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.faq-search {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--cream);
  color: var(--ink);
  font: inherit;
}

.faq-result-count {
  margin: 0;
  font-size: 0.78rem;
  white-space: nowrap;
}

.faq-groups {
  display: grid;
  gap: 100px;
}

.faq-group {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(50px, 10vw, 140px);
}

.faq-group h2 {
  position: sticky;
  top: calc(var(--header-height) + 114px);
  max-width: 8ch;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.faq-group[hidden],
.faq-list details[hidden] {
  display: none;
}

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

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  display: grid;
  gap: 10px;
}

.legal-nav a {
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-nav a:hover {
  color: var(--forest);
}

.legal-content {
  max-width: 760px;
}

.legal-content section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.legal-content h3 {
  margin-top: 30px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--muted);
}

.draft-notice {
  padding: 22px 24px;
  margin-bottom: 46px;
  border-left: 4px solid var(--forest-soft);
  background: var(--cream);
}

.draft-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.draft-notice p {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding: 0 10px;
    border: 1px solid rgba(243, 238, 223, 0.25);
    border-radius: 50%;
    background: transparent;
    flex-direction: column;
    gap: 6px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--cream);
    transition: transform 220ms var(--ease);
  }

  .menu-button[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

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

  .mobile-nav {
    position: fixed;
    z-index: 10;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100dvh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 28px 24px 34px;
    overflow-y: auto;
    border-top: 1px solid rgba(243, 238, 223, 0.12);
    background: var(--forest-deep);
    gap: 22px;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a:not(.button) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(243, 238, 223, 0.14);
    font-family: var(--serif);
    font-size: 1.5rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy-panel {
    min-height: 640px;
    padding-left: max(24px, calc((100vw - 930px) / 2));
  }

  .hero-photo-panel {
    min-height: 560px;
  }

  .hero h1 {
    max-width: 12.8ch;
    font-size: clamp(3.9rem, 9vw, 6.6rem);
  }

  .trust-heading,
  .proof-heading,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .trust-heading,
  .proof-heading {
    align-items: start;
    gap: 30px;
  }

  .team-figure {
    position: static;
  }

  .team-figure img {
    max-height: 620px;
    aspect-ratio: 4 / 3;
    object-position: center 63%;
  }

  .care-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-timeline li {
    min-height: 280px;
  }

  .care-timeline li:last-child {
    min-height: 240px;
    grid-column: 1 / -1;
  }

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

  .fact-grid p:nth-child(2) {
    border-right: 0;
  }

  .fact-grid p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .process-grid,
  .protection-grid,
  .methods-grid,
  .role-grid,
  .faq-layout,
  .package-grid,
  .faq-group,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .path-phase {
    grid-template-columns: 1fr;
  }

  .process-intro {
    gap: 36px;
  }

  .path-phase {
    gap: 32px;
  }

  .path-phase-heading h3 {
    max-width: 18ch;
  }

  .path-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-photo,
  .methods-intro,
  .faq-intro,
  .faq-group h2,
  .legal-nav {
    position: static;
  }

  .process-photo img {
    aspect-ratio: 16 / 10;
  }

  .method-list article:last-child {
    margin-left: 8%;
  }

  .faq-group {
    gap: 22px;
  }

  .legal-nav {
    display: flex;
    overflow-x: auto;
    gap: 20px;
  }

  .legal-nav a {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --shell: min(100% - 32px, 1240px);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 4.2rem);
  }

  .section {
    padding: 84px 0;
  }

  .brand-logo-crop {
    width: 130px;
    height: 31px;
    background-size: 130px auto;
  }

  .nav-cta {
    display: none;
  }

  .header-actions {
    gap: 9px;
  }

  .language-switch a {
    min-width: 44px;
    min-height: 44px;
    font-size: 0.75rem;
  }

  .hero-copy-panel {
    min-height: calc(100dvh - var(--header-height));
    align-items: center;
    padding: 72px 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 11.5vw, 4.3rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-assurances {
    display: grid;
    gap: 8px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-photo-panel {
    min-height: 520px;
  }

  .hero-photo-panel > img {
    object-position: 54% center;
  }

  .hero-price-card {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .fact-grid {
    width: 100%;
  }

  .fact-grid p {
    min-height: 100px;
    padding: 18px 16px;
  }

  .fact-grid p:first-child {
    border-left: 0;
  }

  .fact-grid strong {
    font-size: 1.15rem;
  }

  .fact-grid span {
    font-size: 0.75rem;
  }

  .comparison-heading,
  .comparison-foot,
  .price-comparison,
  .scope-grid,
  .booking-terms,
  .case-grid,
  .proof-support-grid,
  .pricing-lead-grid,
  .final-cta-panel,
  .footer-main,
  .legal-copy,
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .trust-heading,
  .proof-heading {
    margin-bottom: 48px;
  }

  .trust-layout {
    gap: 36px;
  }

  .team-figure img {
    max-height: none;
    aspect-ratio: 0.92;
    object-position: center 70%;
  }

  .clinic-identity,
  .validation-card,
  .clinic-reputation-card,
  .coordinator-card {
    padding: 30px 22px;
  }

  .clinic-trust-signals,
  .clinic-proof-list,
  .included-package,
  .included-benefits {
    grid-template-columns: 1fr;
  }

  .included-package {
    padding: 32px 24px;
    gap: 28px;
  }

  .clinic-identity dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .coordinator-proof span {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .coordinator-proof span:last-child {
    border-bottom: 0;
  }

  .comparison-heading {
    margin-bottom: 44px;
    gap: 25px;
  }

  .comparison-heading .section-kicker {
    margin-bottom: -5px;
  }

  .price-card {
    min-height: 0;
    padding: 34px 26px 40px;
  }

  .price-card-featured {
    border-radius: var(--radius-large) var(--radius-large) 0 0;
  }

  .price-card-reference {
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
  }

  .scope-grid article {
    min-height: 0;
    padding: 32px 24px;
  }

  .scope-grid article:first-child {
    border-radius: var(--radius-large) var(--radius-large) 0 0;
  }

  .scope-grid article:last-child {
    border-top: 0;
    border-left: 1px solid var(--line);
    border-radius: 0 0 var(--radius-large) var(--radius-large);
  }

  .booking-terms article {
    min-height: 0;
    padding: 24px;
  }

  .booking-terms article > span,
  .care-timeline li > span {
    margin-bottom: 24px;
  }

  .comparison-price {
    margin-top: 40px;
  }

  .comparison-foot {
    gap: 24px;
  }

  .comparison-foot > div {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .process-grid,
  .protection-grid,
  .methods-grid,
  .role-grid,
  .faq-layout,
  .package-grid,
  .faq-groups,
  .legal-layout {
    gap: 50px;
  }

  .process-intro {
    margin-bottom: 56px;
  }

  .care-timeline {
    grid-template-columns: 1fr;
  }

  .care-timeline li,
  .care-timeline li:last-child {
    min-height: 0;
    padding: 26px 22px 30px;
    grid-column: auto;
  }

  .detail-content {
    padding-right: 0;
  }

  .method-summary,
  .day-plan {
    grid-template-columns: 1fr;
  }

  .day-plan > small {
    grid-column: auto;
  }

  .process-details summary {
    padding-right: 48px;
  }

  .case-card,
  .review-slot,
  .clinician-slot {
    padding: 28px 22px;
  }

  .case-visual {
    min-height: 230px;
  }

  .process-entry-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .path-phase {
    padding: 48px 0;
  }

  .path-steps {
    grid-template-columns: 1fr;
  }

  .path-steps li {
    min-height: 0;
    padding: 22px;
  }

  .path-steps li > span {
    margin-bottom: 28px;
  }

  .process-medical-note {
    margin-top: 18px;
  }

  .process-photo img {
    aspect-ratio: 0.9;
    object-position: 62% center;
  }

  .protection-section {
    padding: 86px 0 96px;
  }

  .protection-points p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .method-list article {
    min-height: 300px;
  }

  .method-list article:last-child {
    margin-left: 0;
  }

  .journey-section,
  .journey-content {
    min-height: 870px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

  .journey-steps article,
  .journey-steps article:not(:first-child) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .journey-steps span {
    margin-bottom: 10px;
  }

  .role-statement {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .final-cta {
    padding-top: 8px;
  }

  .final-cta-panel {
    padding: 48px 24px;
    gap: 38px;
  }

  .footer-main {
    gap: 42px;
  }

  .footer-links {
    justify-content: start;
  }

  .legal-copy {
    gap: 15px;
  }

  .legal-copy p:last-child {
    text-align: left;
  }



  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    padding: 22px;
    overflow-y: auto;
    gap: 20px;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .setup-dialog {
    padding: 38px 24px 28px;
  }













  .callback-form-grid {
    grid-template-columns: 1fr;
  }

  .callback-field-wide {
    grid-column: auto;
  }

  .inner-hero {
    padding: 74px 0 82px;
  }

  .inner-hero h1 {
    font-size: clamp(3.7rem, 17vw, 5.8rem);
  }

  .faq-tools {
    padding: 14px 0;
  }

  .faq-search-wrap {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-result-count {
    padding-left: 8px;
  }

  .faq-groups {
    gap: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Vera source update: preserve ViaCura's existing palette and typography. */
.clinic-trust-signals strong { font-size: clamp(1.35rem, 2.5vw, 2.2rem); }
.vera-facility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  margin-top: 64px;
}
.vera-facility figure { margin: 0; }
.vera-facility figure > img {
  width: 100%;
  height: auto;
  border-radius: 4px 30px 4px 30px;
}
.vera-facility figcaption { margin-top: 10px; color: var(--muted); font-size: 0.75rem; }
.vera-facility h3 { font: 500 clamp(2rem, 3.4vw, 3.5rem)/1.06 var(--serif); letter-spacing: -0.04em; }
.vera-awards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 30px 0 20px; padding-top: 24px; border-top: 1px solid var(--line); }
.vera-awards > div { display: flex; align-items: flex-start; flex-direction: column; gap: 16px; }
.vera-awards img { width: auto; height: 48px; object-fit: contain; }
.vera-awards span { font-size: 0.8rem; color: var(--muted); }
.vera-note { font-size: 0.78rem; line-height: 1.65; }
.vera-options { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; margin: 36px 0 20px; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vera-options p { font-size: 0.88rem; margin: 14px 0 0; }
.vera-options .card-kicker { margin-top: 0; }
.vera-options strong { display: block; min-height: 34px; font-size: 1.25rem; }
.vera-tech-logo { width: auto; height: 34px; max-width: 140px; object-fit: contain; object-position: left center; }
.vera-results-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.vera-result { margin: 0; min-width: 0; }
.vera-result > a { display: block; position: relative; border-radius: 4px 22px 4px 4px; overflow: hidden; cursor: zoom-in; }
.vera-result img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.vera-zoom { position: absolute; right: 12px; bottom: 12px; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--cream); color: var(--forest); font-size: 1.2rem; }
.vera-result figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 16px 0; color: var(--cream); font-size: 0.8rem; }
.vera-result .source-link { color: var(--cream); font-size: 0.73rem; }
.vera-more-results { margin-top: 20px; border-top: 1px solid var(--line-light); }
.vera-more-results > summary { padding: 24px 0; cursor: pointer; font-weight: 600; }
.vera-more-results[open] > summary { margin-bottom: 16px; }
.vera-section-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 60px; margin-bottom: 48px; }
.vera-section-heading h2 { max-width: 14ch; margin-bottom: 0; font-size: clamp(2.8rem, 4.8vw, 4.9rem); }
.vera-section-heading > p { margin-bottom: 0; }
.vera-team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.vera-doctor { min-width: 0; display: flex; flex-direction: column; }
.vera-doctor-photo { background: #fff; border-radius: 4px; overflow: hidden; }
.vera-doctor-photo img { display: block; width: 100%; height: auto; aspect-ratio: 10 / 11; object-fit: contain; padding: 0; }
.vera-doctor-copy { display: flex; flex-direction: column; flex: 1; padding-top: 24px; }
.vera-doctor-copy h3 { font-size: 1.12rem; line-height: 1.25; }
.vera-doctor-role { font-size: 0.73rem; font-weight: 700; color: var(--forest-soft); min-height: 38px; }
.vera-doctor-copy > p:not(.vera-doctor-role) { font-size: 0.85rem; }
.vera-doctor-copy .source-link { margin-top: auto; align-self: flex-start; }
.vera-team-note { margin: 32px 0 0; max-width: 105ch; }
.vera-reviews-section { background: var(--cream); }
.vera-review-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 70px; align-items: center; margin-bottom: 56px; }
.vera-review-heading h2 { max-width: 12ch; font-size: clamp(2.8rem, 5vw, 5rem); margin-bottom: 0; }
.vera-rating { border-left: 1px solid var(--line); padding-left: 48px; }
.vera-rating > strong { font: 500 5rem/1 var(--serif); letter-spacing: -0.05em; }
.vera-rating > strong > span:not(.vera-rating-number) { font: 400 1.5rem var(--sans); letter-spacing: 0; }
.vera-rating > p { margin: 12px 0; font-size: 1rem; }
.vera-rating > small { display: block; max-width: 38ch; margin-top: 14px; color: var(--muted); font-size: 0.72rem; }
.vera-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-bottom: 26px; }
.vera-review { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: 26px; }
.vera-review .card-kicker { font-size: 0.68rem; min-height: 32px; }
.vera-review-summary { font: 500 clamp(1.2rem, 1.8vw, 1.5rem)/1.4 var(--serif); color: var(--ink); margin: 0 0 28px; }
.vera-review-author { display: flex; flex-direction: column; gap: 4px; margin-top: auto; margin-bottom: 12px; font-size: 0.85rem; }
.vera-review-author > span { color: var(--muted); font-size: 0.73rem; }
.vera-review .source-link { align-self: flex-start; }
.vera-image-dialog { width: min(760px, calc(100vw - 24px)); max-height: 94dvh; padding: 52px 16px 16px; border: 0; border-radius: 12px; background: var(--paper); color: var(--ink); }
.vera-image-dialog::backdrop { background: rgba(12, 18, 12, 0.82); }
.vera-image-dialog img { width: 100%; height: auto; max-height: calc(94dvh - 145px); object-fit: contain; }
.vera-image-dialog p { font-size: 0.78rem; margin: 12px 0 0; text-align: center; }
.vera-image-dialog .dialog-close { top: 8px; right: 10px; }
.vera-image-dialog .source-link { display: block; margin: 8px auto 0; width: fit-content; }
@media (max-width: 1000px) {
  .vera-options, .vera-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vera-team-grid { gap: 32px 24px; }
  .vera-facility { gap: 32px; }
  .vera-review-heading, .vera-section-heading { gap: 36px; }
}
@media (max-width: 700px) {
  .vera-facility, .vera-section-heading, .vera-review-heading, .vera-review-grid { grid-template-columns: 1fr; }
  .vera-results-grid { grid-template-columns: 1fr; gap: 24px; }
  .vera-options { gap: 24px; }
  .vera-facility { margin-top: 40px; }
  .vera-facility figure { max-width: 500px; }
  .vera-team-grid { gap: 28px 16px; }
  .vera-doctor-copy h3 { font-size: 1rem; }
  .vera-doctor-copy > p:not(.vera-doctor-role) { font-size: 0.8rem; }
  .vera-doctor-role { min-height: 45px; }
  .vera-doctor-copy .source-link { font-size: 0.71rem; }
  .vera-section-heading, .vera-review-heading { margin-bottom: 36px; }
  .vera-rating { border-left: 0; border-top: 1px solid var(--line); padding: 28px 0 0; }
  .vera-review .card-kicker { min-height: 0; }
  .vera-review-summary { font-size: 1.5rem; }
}
@media (max-width: 380px) {
  .vera-team-grid, .vera-options { grid-template-columns: 1fr; }
  .vera-doctor-role { min-height: 0; }
}

/* Embedded callback form */
#kontakt { scroll-margin-top: 20px; }
.final-cta-panel h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); max-width: 16ch; }
.callback-card { align-self: center; min-width: 0; padding: clamp(22px, 3vw, 36px); border-radius: 8px; background: var(--paper); color: var(--ink); }
.callback-phone-fields { display: grid; align-items: end; grid-template-columns: 100px minmax(0, 1fr); gap: 12px; }
.callback-form label > span:first-child:not(.phone-input) { font-size: 0.875rem; }
.callback-form input { min-width: 0; font-size: 1rem; }
.callback-reassurance, .callback-privacy, .callback-status { font-size: 0.875rem; line-height: 1.6; }
.callback-privacy { margin: 16px 0 0; color: var(--muted); }
.callback-privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.callback-status:empty { display: none; }
.callback-success h3 { color: var(--ink); }
.callback-success p { color: var(--muted); }
.mobile-callback { display: none; }
[hidden] { display: none !important; }
@media (max-width: 760px) {
  .final-cta-panel { grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 30px 20px; }
  .final-cta-panel h2 { max-width: 20ch; }
  .callback-phone-fields { grid-template-columns: 90px minmax(0, 1fr); gap: 10px; }
  .callback-card { padding: 22px 18px; }
  .mobile-callback { display: flex; position: fixed; z-index: 25; bottom: max(12px, env(safe-area-inset-bottom)); left: 16px; right: 16px; box-shadow: 0 4px 20px #0002; }
  body:has(.mobile-callback) { padding-bottom: 88px; }
}

body:has(.faq-tools) #kontakt { scroll-margin-top: 130px; }
