/* ─────────────────────────────────────────────────────────────
   VENOVA · Privatpraxis Dr. Jennifer Peters
   Editorial · boutique · ruhig
   ───────────────────────────────────────────────────────────── */

:root {
  /* Background HSL — kalibriert auf Cream/Taupe-Palette (FDFBF7 → E5E0D6) */
  --bg-h:        38;      /* warm */
  --bg-s:        36%;     /* gedämpft warm — Palette-Mitte */
  --bg-l:        97%;     /* lightness */

  /* Surfaces — derived from HSL above */
  --bg:           hsl(var(--bg-h), var(--bg-s), var(--bg-l));                                                /* ≈ F8F5F0 / FDFBF7 */
  --bg-soft:      hsl(var(--bg-h), calc(var(--bg-s) - 5%), calc(var(--bg-l) - 4%));                          /* ≈ F4F0EA / EFEBE3 */
  --bg-deep:      hsl(var(--bg-h), calc(var(--bg-s) - 8%), calc(var(--bg-l) - 10%));                         /* ≈ E5E0D6 / EAE6DD */
  --bg-ink:       #1a1714;       /* near-black warm */
  --paper:        hsl(var(--bg-h), calc(var(--bg-s) + 8%), calc(var(--bg-l) + 3%));                          /* ≈ FDFBF7 */

  /* Ink */
  --ink:          #1c1916;
  --ink-soft:     #3a342c;
  --ink-mute:     #6a6258;
  --ink-thin:     #6a6258;  /* AA-konform (5.5:1) auf Sand — angehoben fuer lesbare .thin-Subtexte */
  --rule:         #d8cdb6;
  --rule-soft:    #e3d9c5;

  /* Accent — olive-gold from reference */
  --olive:        #a89968;
  --olive-deep:   #756838;  /* AA-konform (5.09:1) auf Sand-Hintergrund — fuer Text/Kleinkapitaelchen */
  --sage:         #c8cdb6;
  --sage-soft:    #dde0d0;

  /* Type — Playfair Display (display) + Poppins (everything else) */
  --serif:        "Playfair Display", Georgia, "Times New Roman", serif;
  --body:         "Poppins", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --sans:         "Poppins", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Weights */
  --w-light:      300;   /* Poppins Light for body */
  --w-regular:    400;   /* default */
  --w-medium:     500;
  --w-semi:       600;

  /* Geometry */
  --rad:          2px;
  --rad-lg:       6px;
  --maxw:         1320px;
  --maxw-wide:    1480px;
  --maxw-narrow:  860px;

  /* Spacing — generous editorial scale */
  --pad:          clamp(24px, 4vw, 64px);
  --sec-y:        clamp(96px, 12vw, 180px);

  /* Motion */
  --ease:            cubic-bezier(.2,.6,.2,1);
  --ease-out-quart:  cubic-bezier(.25,1,.5,1);
  --ease-out-expo:   cubic-bezier(.16,1,.3,1);
}

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: var(--w-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; font-weight: inherit; color: var(--olive); font-family: inherit; }
strong, b { font-weight: var(--w-medium); }
::selection { background: var(--olive); color: var(--paper); }

/* ── Atoms ────────────────────────────────────────────────── */
.container          { max-width: var(--maxw);        margin: 0 auto; padding: 0 var(--pad); }
.container--wide    { max-width: var(--maxw-wide); }
.container--narrow  { max-width: var(--maxw-narrow); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: var(--w-medium);
  margin: 0 0 28px 0;
  display: inline-block;
  position: relative;
  padding-left: 26px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--olive);
  transform: translateY(-50%);
}
.eyebrow--light { color: rgba(245, 240, 226, 0.85); }
.eyebrow--light::before { background: rgba(245, 240, 226, 0.6); }

.thin { color: var(--ink-thin); font-weight: 300; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  --btn-fg: var(--ink);
  --btn-bg: transparent;
  --btn-border: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn__icon { display: inline-flex; }

.btn--solid-light {
  --btn-fg: var(--ink);
  --btn-bg: #f5f0e2;
  --btn-border: #f5f0e2;
}
.btn--solid-light:hover { background: var(--olive); border-color: var(--olive); color: var(--paper); }

.btn--ghost-light {
  --btn-fg: rgba(245, 240, 226, 0.95);
  --btn-bg: transparent;
  --btn-border: rgba(245, 240, 226, 0.5);
}
.btn--ghost-light:hover {
  background: rgba(245, 240, 226, 0.95);
  color: var(--ink);
  border-color: rgba(245, 240, 226, 0.95);
}

/* Links */
.link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
  transition: gap .25s var(--ease);
}
.link:hover { gap: 16px; }
.link--olive { color: var(--olive-deep); }

/* ─────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled {
  background: hsl(var(--bg-h) calc(var(--bg-s) - 5%) calc(var(--bg-l) - 4%) / 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(28, 25, 22, 0.06);
}
.nav__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
/* ── Wortmarke: JP-Siegel + Schriftzug (Nav) ──────────── */
.nav__mark {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 16px;
  line-height: 1;
  color: var(--paper);
  transition: color .35s var(--ease);
}
.nav.is-scrolled .nav__mark { color: var(--ink); }

.wm-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border: 1px solid;
  border-color: color-mix(in srgb, currentColor 48%, transparent);
  border-radius: 50%;
  transition: border-color .35s var(--ease);
}
.wm-seal__jp {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--olive);
}
.wm-body {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  border-left: 1px solid;
  border-left-color: color-mix(in srgb, currentColor 28%, transparent);
  padding-left: 16px;
  transition: border-color .35s var(--ease);
}
.wm-tpp {
  font-family: "Tenor Sans", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--olive);
  padding-left: 0.34em;
  transition: color .35s var(--ease);
}
.wm-name {
  font-family: "Tenor Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
  color: currentColor;
  padding-left: 0.22em;
}
/* Solide/gescrollte Nav — exakte Design-Farben */
.nav.is-scrolled .wm-seal,
.nav.nav--solid .wm-seal { border-color: var(--ink-mute); }
.nav.is-scrolled .wm-body,
.nav.nav--solid .wm-body { border-left-color: var(--rule); }
.nav.is-scrolled .wm-tpp,
.nav.nav--solid .wm-tpp { color: var(--olive-deep); }

@media (max-width: 560px) {
  .nav__mark { column-gap: 12px; }
  .wm-seal { width: 44px; height: 44px; }
  .wm-seal__jp { font-size: 21px; }
  .wm-body { padding-left: 12px; row-gap: 4px; }
  .wm-tpp { font-size: 8px; letter-spacing: 0.3em; padding-left: 0.3em; }
  .wm-name { font-size: 12px; letter-spacing: 0.2em; padding-left: 0.2em; }
}

.nav__links {
  display: flex;
  gap: 32px;
  justify-self: center;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 240, 226, 0.85);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.nav__links a:hover { border-bottom-color: currentColor; }
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }

.nav .btn--ghost-light { justify-self: end; }
.nav.is-scrolled .btn--ghost-light {
  --btn-fg: var(--ink);
  --btn-border: var(--ink);
}

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #0d0c0a;
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Desktop-Hero: Person konsistent im rechten Drittel der sichtbaren Flaeche.
     Bei object-position 100% pinnt die Strasse rechts neben ihr den rechten
     Viewport-Rand → sie rutscht ins Bild-Zentrum/Linke. 78% schiebt das
     sichtbare Fenster leicht nach links im Video, sodass sie bei jeder
     Desktop-Breite bei rund 75 % der Viewport-Breite sitzt. */
  object-position: 78% 50%;
  filter: contrast(1.03);
}
/* Mobile-Hero ist ein eigenes Portrait-Video, das bereits Subject-zentriert
   ist — dort mittig lassen, sonst klemmen wir es seitlich an. */
@media (max-width: 720px) {
  .hero__video { object-position: 50% 50%; }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    /* zarter Voll-Wash: nur Nav oben + Fuss leicht absetzen */
    linear-gradient(180deg, rgba(13,12,10,0.30) 0%, rgba(13,12,10,0) 22%, rgba(13,12,10,0) 74%, rgba(13,12,10,0.20) 100%),
    /* Textkontrast links, laeuft nach rechts vollstaendig aus */
    linear-gradient(100deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.38) 30%, rgba(13,12,10,0.10) 52%, rgba(13,12,10,0) 66%);
}

.hero__content {
  max-width: var(--maxw-wide);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(88px, 12vw, 140px);
  position: relative;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(54px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  max-width: 100%;
  color: #f5f0e2;
  display: flex;
  flex-direction: column;
  text-wrap: balance;
}
.hero__title em {
  color: #f5f0e2;
  font-style: italic;
  font-weight: var(--w-regular);
  font-family: var(--serif);
}

.ht-line {
  display: block;
  white-space: nowrap;
  position: relative;
}
.ht-line--a {                     /* Ästhetische — roman, baseline */
  font-style: normal;
  font-weight: var(--w-regular);
  letter-spacing: -0.025em;
}
.ht-line--b {                     /* Medizin — italic, larger, hangs left */
  font-size: 1.18em;
  margin-top: 0.04em;
  margin-left: -0.04em;
  letter-spacing: -0.03em;
}
.ht-line--b em {
  font-style: italic;
  font-weight: var(--w-regular);
}
.ht-line--c {                     /* in Düsseldorf. — smaller, indent right */
  font-size: 0.62em;
  font-style: italic;
  font-weight: var(--w-light);
  letter-spacing: -0.005em;
  margin-top: 0.18em;
  margin-left: 0.6em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: rgba(245, 240, 226, 0.92);
}
.ht-line--c .ht-prep {
  font-style: italic;
  color: rgba(245, 240, 226, 0.72);
}
.ht-line--c .ht-dot {
  color: var(--olive);
  font-style: normal;
}
.ht-ornament {
  display: inline-block;
  width: 2.4em;
  height: 1px;
  background: var(--olive);
  vertical-align: middle;
  flex-shrink: 0;
  margin-right: 0.15em;
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(245, 240, 226, 0.85);
  max-width: 48ch;
  margin: 0 0 40px 0;
  font-weight: 300;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__corner {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  padding: 0 var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.6);
  pointer-events: none;
}
.hero__corner-l { font-family: var(--serif); font-style: italic; font-size: 14px; letter-spacing: 0.02em; text-transform: none; color: rgba(245, 240, 226, 0.85); }

/* ─────────────────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────────────────── */
.trust {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.trust__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 22px var(--pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 26px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust__dot { color: var(--olive); }

/* ─────────────────────────────────────────────────────────
   SECTION HEAD
   ───────────────────────────────────────────────────────── */
.section { padding: var(--sec-y) 0; }
.section--treatments { background: var(--bg); }
.section--doctor     { background: var(--bg-soft); }
.section--flow       { background: var(--bg); }
.section--practice   { background: var(--bg-soft); }
.section--voices     { background: var(--bg); }
.section--faq        { background: var(--bg-soft); }
.section--appt       { background: var(--bg-ink); color: var(--paper); }
.section--location   { background: var(--bg); }

.sec-head { margin-bottom: clamp(56px, 7vw, 96px); }
.sec-head--centered { text-align: center; }
.sec-head--centered .eyebrow { padding-left: 0; }
.sec-head--centered .eyebrow::before { display: none; }
.sec-head__title {
  font-family: var(--serif);

  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.sec-head__meta {
  margin: 22px 0 0 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.sec-head__sub {
  margin: 22px auto 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
}
.section--appt .sec-head__sub { color: rgba(245, 240, 226, 0.75); }

/* ─────────────────────────────────────────────────────────
   BEHANDLUNGEN — Feature + Editorial Index
   ───────────────────────────────────────────────────────── */
.t-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 8px 0;
  font-weight: 500;
}

/* Featured treatment */
.t-feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(80px, 9vw, 120px);
  border-bottom: 1px solid var(--rule);
}
.t-feature__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
}
.t-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.t-feature__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--paper);
  color: var(--olive-deep);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}
.t-feature__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: var(--olive);
  margin: 0 0 14px 0;
}
.t-feature__title {
  font-family: var(--serif);

  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px 0;
}
.t-feature__copy {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 28px 0;
}
.t-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px 0;
}
.t-feature__chips li {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-soft);
}

/* Editorial index of 6 remaining treatments */
.t-index { border-top: 1px solid var(--rule); }
.t-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 1.05fr) 2fr 40px;
  gap: 36px;
  align-items: baseline;
  padding: 36px 8px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background .25s var(--ease), padding .25s var(--ease);
}
.t-row:hover { background: var(--bg-soft); padding-left: 18px; padding-right: 18px; }
.t-row__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  color: var(--olive);
}
.t-row__head { display: flex; flex-direction: column; gap: 4px; }
.t-row__title {
  font-family: var(--serif);

  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.005em;
}
.t-row__copy {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.t-row__more {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--ink-thin);
  transition: transform .25s var(--ease), color .25s var(--ease);
}
.t-row:hover .t-row__more { color: var(--olive); transform: translateX(6px); }

/* ── Mid-tier treatment highlight (between t-feature and t-row) ── */
.t-highlight {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(16px, 2vw, 28px) 0 clamp(56px, 7vw, 80px);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(40px, 5vw, 64px);
}
/* Reduzierter Abstand zwischen Polynukleotide-Trennlinie und Nefertiti-Highlight */
.t-feature:has(+ .t-highlight) {
  margin-bottom: clamp(16px, 2vw, 28px);
}
.t-highlight__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.t-highlight__badge {
  background: var(--olive);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
}
.t-highlight__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--olive);
  margin: 0;
}
.t-highlight__body { max-width: 56ch; }
.t-highlight__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 12px 0 18px 0;
}
.t-highlight__copy {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 22px 0;
}
.t-highlight__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px 0;
  padding: 0;
  list-style: none;
}
.t-highlight__chips li {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 7px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-soft);
}
@media (max-width: 720px) {
  .t-highlight { grid-template-columns: 1fr; gap: 18px; padding: 40px 0 48px; }
  .t-highlight__head { flex-direction: row; gap: 16px; align-items: center; }
}

/* ─────────────────────────────────────────────────────────
   DOCTOR
   ───────────────────────────────────────────────────────── */
.doc {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}
.doc__portrait {
  margin: 0;
  position: relative;
}
.doc__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-deep);
}
.doc__caption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.doc__title {
  font-family: var(--serif);

  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0 0 32px 0;
}
.doc__lede p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 18px 0;
  max-width: 52ch;
}
.doc__list {
  margin: 36px 0;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.doc__list li {
  position: relative;
  padding: 12px 0 12px 36px;
  font-size: 17px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.doc__list li:last-child { border-bottom: 0; }
.doc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 18px; height: 1px;
  background: var(--olive);
}

/* ─────────────────────────────────────────────────────────
   ABLAUF / FLOW
   ───────────────────────────────────────────────────────── */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.flow__step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.flow__step:last-child { border-right: 0; padding-right: 0; }
.flow__step:not(:first-child) { padding-left: 32px; }
.flow__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: var(--olive);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.flow__title {
  font-family: var(--serif);

  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 14px 0;
}
.flow__copy {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ─────────────────────────────────────────────────────────
   PRAXIS
   ───────────────────────────────────────────────────────── */
.practice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(56px, 7vw, 96px);
}
.practice__title {
  font-family: var(--serif);

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  max-width: 16ch;
}
.practice__copy-col {
  padding-bottom: 8px;
}
.practice__copy {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 18px 0;
}
.practice__copy-col .link { margin-top: 12px; }

.practice__hero {
  margin: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--bg-deep);
}
/* Drei Ebenen, je eine Transform-Verantwortung — verhindert Konflikte:
   frame = clip-path-Wipe · pan = Scroll-Parallax · img = Slow-Zoom */
.practice__hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.practice__hero-pan {
  position: absolute;
  left: 0; right: 0;
  top: -10%;
  height: 120%;            /* groesser als der Rahmen → Spielraum fuer Parallax */
}
.practice__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
/* Goldene Haarlinie — editorialer Akzent knapp ueber der Caption */
.practice__hero-rule {
  position: absolute;
  left: var(--pad);
  bottom: 44px;
  width: 44px;
  height: 1.5px;
  background: var(--olive);
  transform-origin: left center;
}
.practice__hero-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px var(--pad);
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.9);
  background: linear-gradient(180deg, transparent, rgba(13,12,10,0.55));
}
.practice__hero-cap .thin { color: rgba(245, 240, 226, 0.55); }

/* ─────────────────────────────────────────────────────────
   PLACEHOLDER (für noch fehlende Bilder)
   ───────────────────────────────────────────────────────── */
.placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background:
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(168,153,104,0.05) 20px 21px),
    linear-gradient(180deg, var(--bg-deep), var(--bg-soft));
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  aspect-ratio: auto;
}
.placeholder--portrait { aspect-ratio: 4 / 5; }
.placeholder--map { aspect-ratio: 1 / 1; min-height: 360px; color: var(--olive); }
.placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--rule);
}
.placeholder__tag {
  position: relative;
  z-index: 1;
  margin: 24px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  background: rgba(244, 237, 225, 0.85);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.placeholder__tag--map { background: rgba(244,237,225,0.95); color: var(--ink-soft); }
.map-grid {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: var(--olive);
  opacity: 0.55;
}

/* ─────────────────────────────────────────────────────────
   STIMMEN
   ───────────────────────────────────────────────────────── */
.pullquote {
  margin: 0 auto clamp(80px, 9vw, 120px);
  max-width: 24ch;
  text-align: center;
}
.pullquote p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.pullquote__open, .pullquote__close { color: var(--olive); font-style: italic; }

.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--rule);
}
.voice__quote {
  font-size: 17.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px 0;
  font-style: italic;
  font-weight: 400;
  max-width: 36ch;
}
.voice__by {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
/* FAQ-Frage als Heading (Semantik): h3-Defaults neutralisieren, der Button traegt das Styling */
.faq__qh { margin: 0; font: inherit; }
.faq__q {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 28px 0;
  font-family: var(--serif);

  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  gap: 24px;
}
.faq__q:hover { color: var(--olive-deep); }
.faq__sign {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid var(--ink-thin);
  transition: transform .35s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.faq__sign::before, .faq__sign::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--ink);
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.faq__sign::before { width: 10px; height: 1px; }
.faq__sign::after  { width: 1px; height: 10px; }
.faq__item.is-open .faq__sign { background: var(--ink); border-color: var(--ink); transform: rotate(90deg); }
.faq__item.is-open .faq__sign::before, .faq__item.is-open .faq__sign::after { background: var(--paper); }
.faq__item.is-open .faq__sign::after { transform: scaleY(0); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq__a p {
  margin: 0;
  padding: 0 0 32px 0;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.6;
}
.faq__item.is-open .faq__a { max-height: 400px; }

/* ─────────────────────────────────────────────────────────
   TERMIN-CARDS
   ───────────────────────────────────────────────────────── */
.appt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(245, 240, 226, 0.12);
  border: 1px solid rgba(245, 240, 226, 0.12);
}
.appt__card {
  background: var(--bg-ink);
  padding: 48px 40px 44px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background .3s var(--ease);
  position: relative;
}
.appt__card:hover { background: #221e19; }
.appt__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.appt__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: var(--olive);
}
.appt__icon { color: rgba(245, 240, 226, 0.6); }
.appt__title {
  font-family: var(--serif);

  font-size: 32px;
  line-height: 1.1;
  margin: 0 0 14px 0;
  color: var(--paper);
}
.appt__copy {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(245, 240, 226, 0.7);
  margin: 0 0 auto 0;
  max-width: 32ch;
}
.appt__cta {
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(245, 240, 226, 0.12);
}

/* ─────────────────────────────────────────────────────────
   STANDORT
   ───────────────────────────────────────────────────────── */
.loc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.loc__title {
  font-family: var(--serif);

  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 40px 0;
}
.loc__data {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  border-top: 1px solid var(--rule);
  padding-top: 36px;
}
.loc__data > div {}
.loc__data dt {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 8px 0;
  font-weight: 500;
}
.loc__data dd {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  /* E-Mail u. a. lange Strings duerfen umbrechen — sonst sprengt die
     min-content-Breite das Grid auf schmalen Viewports. */
  overflow-wrap: anywhere;
}
.loc__data dd a { border-bottom: 1px solid var(--rule); padding-bottom: 1px; transition: border-color .25s var(--ease); }
.loc__data dd a:hover { border-color: var(--olive); }

/* Standort-Karte: Klick-Consent-Vorschau + Google-Maps-Embed */
.map-consent {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 360px;
  color: var(--olive);
  background:
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(168,153,104,0.05) 20px 21px),
    linear-gradient(180deg, var(--bg-deep), var(--bg-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-consent .map-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.map-consent__panel {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 24px;
  padding: 28px;
  text-align: center;
  background: rgba(244, 237, 225, 0.92);
  border: 1px solid var(--rule);
  backdrop-filter: blur(2px);
}
.map-consent__label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin: 0 0 12px 0;
}
.map-consent__note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0 0 18px 0;
}
.map-consent__note a { border-bottom: 1px solid var(--rule); }
.map-consent__note a:hover { border-color: var(--olive); }
.map-consent__btn {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg-deep);
  background: var(--olive);
  border: 1px solid var(--olive);
  padding: 12px 20px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.map-consent__btn:hover { background: transparent; color: var(--olive); }
.map-embed {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.foot {
  background: #141210;                              /* einen Tick dunkler als bg-ink (#1a1714) */
  color: var(--paper);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(168, 153, 104, 0.18);  /* feiner Olive-Hairline zur Termin-Sektion */
}
.foot__top {
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: clamp(40px, 5vw, 88px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(245, 240, 226, 0.12);
}
.foot__mark {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 16px;
  color: var(--paper);
  margin: 0 0 22px 0;
}
.foot__tag {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(245, 240, 226, 0.65);
  margin: 0;
  max-width: 36ch;
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.foot__heading {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin: 0 0 20px 0;
}
.foot__col ul li { margin-bottom: 10px; }
.foot__col a {
  color: rgba(245, 240, 226, 0.78);
  font-size: 15.5px;
  transition: color .2s var(--ease);
}
.foot__col a:hover { color: var(--paper); }
.foot__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.5);
}
.foot__bottom p { margin: 0; }
/* ─────────────────────────────────────────────────────────
   TYPE HIERARCHIE — Playfair Display + Poppins
   Display: Playfair, Regular (400). Body: Poppins Light (300).
   Labels: Poppins Medium (500) uppercase tracked.
   ───────────────────────────────────────────────────────── */

/* Display headings — Playfair Display Regular */
.hero__title,
.sec-head__title,
.t-feature__title,
.doc__title,
.practice__title,
.loc__title,
.pullquote p,
.t-row__title,
.flow__title,
.appt__title,
.faq__q { font-family: var(--serif); font-weight: var(--w-regular); }

/* Body text — Poppins Light */
.hero__lede,
.sec-head__sub,
.t-feature__copy,
.t-row__copy,
.doc__lede p,
.doc__list li,
.flow__copy,
.practice__copy,
.voice__quote,
.faq__a p,
.appt__copy,
.loc__data dd,
.foot__tag { font-weight: var(--w-light); font-family: var(--body); }

/* Italic accent — Playfair italic for display em, Poppins italic for body */
.hero__title em,
.sec-head__title em,
.t-feature__title em,
.doc__title em,
.practice__title em,
.loc__title em,
.pullquote p em,
.pullquote__open,
.pullquote__close { font-family: var(--serif); font-style: italic; font-weight: var(--w-regular); }

/* ─────────────────────────────────────────────────────────
   TWEAK VARIATIONS
   ───────────────────────────────────────────────────────── */
/* Treatments — Grid variant */
body[data-treatments="grid"] .t-index {
  border-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  /* var(--bg-soft): Karten heben sich nur durch Tonalitaet ab, kein Gold —
     verhindert den Gold-„Blitz" waehrend des Reveal-Fade-Ins der Karten. */
  background: var(--bg-soft);
  border: 1px solid var(--bg-soft);
}
body[data-treatments="grid"] .t-row {
  background: var(--bg);
  padding: 36px 32px;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  border: 0;
}
body[data-treatments="grid"] .t-row:hover {
  background: var(--bg-soft);
  padding-left: 32px;
  padding-right: 32px;
}
body[data-treatments="grid"] .t-row__num {
  font-size: 20px;
  margin-bottom: 12px;
}
body[data-treatments="grid"] .t-row__title { font-size: 26px; }
body[data-treatments="grid"] .t-row__more {
  align-self: end;
  justify-self: start;
  margin-top: 12px;
}

/* ═════════════════════════════════════════════════════════
   BEHANDLUNGEN — Übersichtsseite
   ═════════════════════════════════════════════════════════ */

/* ── Hero with TOC on right ──────────────────────────── */
.b-hero .t-hero__inner { grid-template-columns: 1.15fr 1fr; align-items: start; }

.b-toc {
  margin: 0;
  padding: 32px 32px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  position: relative;
}
.b-toc__title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin: 0 0 18px 0;
  padding-left: 26px;
  position: relative;
}
.b-toc__title::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--olive);
  transform: translateY(-50%);
}
.b-toc ol { counter-reset: toc; }
.b-toc li { border-bottom: 1px solid var(--rule-soft); }
.b-toc li:last-child { border-bottom: 0; }
.b-toc a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  transition: color .2s var(--ease), padding .2s var(--ease);
}
.b-toc a:hover { color: var(--olive-deep); padding-left: 6px; }
.b-toc .n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-regular);
  font-size: 17px;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.b-toc .t {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.b-toc .k {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  white-space: nowrap;
}
.b-toc__foot {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.b-toc__foot strong { color: var(--olive-deep); font-weight: 500; }

/* ── Treatments — editorial chapter rows ─────────────── */
.section--b-index {
  background: var(--bg);
  padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 88px);
}
.b-index-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 8px;
}
.b-index-head__l {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.b-index-head__r {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-regular);
  font-size: 17px;
  color: var(--ink-soft);
}

.b-index { list-style: none; padding: 0; margin: 0; }
.b-entry {
  display: grid;
  grid-template-columns: 110px 1fr 320px;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
  padding: clamp(36px, 4vw, 56px) clamp(8px, 1vw, 14px);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding .25s var(--ease), background .25s var(--ease);
}
.b-entry:hover { background: var(--bg-soft); padding-left: clamp(20px, 2vw, 28px); padding-right: clamp(20px, 2vw, 28px); }
.b-entry__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-light);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  color: var(--olive);
  letter-spacing: 0.01em;
}
.b-entry__main { padding-top: 6px; }
.b-entry__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 6px 0 18px 0;
  text-wrap: balance;
}
.b-entry__title a {
  color: var(--ink);
  transition: color .25s var(--ease);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .35s var(--ease), color .25s var(--ease);
  padding-bottom: 2px;
}
.b-entry:hover .b-entry__title a { color: var(--olive-deep); background-size: 100% 1px; }
.b-entry__title .thin { color: var(--olive); }
.b-entry__copy {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
  font-weight: var(--w-light);
}

.b-entry__side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 14px;
}
.b-entry__meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.b-entry__meta > div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; align-items: baseline; }
.b-entry__meta dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin: 0;
}
.b-entry__meta dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: var(--w-light);
}
.b-entry__cta {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  transition: gap .25s var(--ease);
}
.b-entry__cta:hover { gap: 16px; }

/* schwerpunkt accent on first entry */
.b-entry--lead { background: var(--bg-soft); }
.b-entry--lead .b-entry__num { color: var(--olive-deep); }
.b-entry__badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--paper);
  background: var(--olive-deep);
  padding: 5px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
}

/* ── Spectrum (editorial image break) ────────────────── */
.section--spectrum {
  background: var(--bg-soft);
  padding: clamp(36px, 4.5vw, 60px) 0;
  position: relative;
}
.spectrum__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(16px, 2vw, 26px);
}
.spectrum__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.spectrum__title em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.spectrum__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-light);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
  max-width: 36ch;
}
.spectrum__media {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.spectrum__media img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-soft);
}
.spectrum__cap {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.spectrum__cap .thin {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-thin);
  font-weight: var(--w-light);
}
.spectrum__rule {
  flex-shrink: 0;
  height: 1px;
  background: var(--olive);
  flex-grow: 1;
  margin: 0 8px;
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .spectrum__head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .spectrum__cap { flex-direction: column; gap: 6px; align-items: flex-start; }
  .spectrum__rule { display: none; }
}

/* ── Nach Anliegen ───────────────────────────────────── */
.section--concerns {
  background: var(--bg-soft);
  padding: clamp(80px, 10vw, 140px) 0;
}
.concerns__head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.concerns__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.concerns__title em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.concerns__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  font-weight: var(--w-light);
  max-width: 54ch;
}
.concerns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.concern {
  background: var(--bg);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .25s var(--ease);
  text-decoration: none;
  color: inherit;
}
.concern:hover { background: var(--paper); }
.concern:hover .concern__name { color: var(--olive-deep); }
.concern__name { transition: color .25s var(--ease); }
.concern__name {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.005em;
}
.concern__copy {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  font-weight: var(--w-light);
}
.concern__tags {
  margin: 10px 0 0;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
}
.concerns__foot {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.concerns__foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  max-width: 50ch;
  font-weight: var(--w-regular);
}

/* ── Philosophie ─────────────────────────────────────── */
.section--philo {
  background: var(--bg-ink);
  color: var(--paper);
  padding: clamp(96px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.section--philo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(168,153,104,0.10), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(168,153,104,0.06), transparent 50%);
  pointer-events: none;
}
.philo {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.philo .eyebrow { color: var(--olive); }
.philo .eyebrow::before { background: var(--olive); }
.philo__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 36px 0;
  max-width: 22ch;
  color: var(--paper);
  text-wrap: balance;
}
.philo__title em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.philo__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-top: 32px;
  border-top: 1px solid rgba(245, 240, 226, 0.15);
}
.philo__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-light);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--paper);
  margin: 0;
  text-wrap: balance;
}
.philo__lede em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.philo__body p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 226, 0.78);
  margin: 0 0 16px 0;
  font-weight: var(--w-light);
  max-width: 52ch;
}
.philo__sig {
  margin: 32px 0 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 226, 0.55);
  font-weight: 500;
}
.philo__sig span:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
  font-weight: var(--w-regular);
}
.philo__rule { width: 28px; height: 1px; background: var(--olive); display: inline-block; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .b-hero .t-hero__inner { grid-template-columns: 1fr; }
  .b-entry { grid-template-columns: 80px 1fr; }
  .b-entry__side { grid-column: 1 / -1; padding-top: 4px; margin-top: 6px; padding-left: 80px; }
  .concerns__head { grid-template-columns: 1fr; align-items: start; }
  .concerns__grid { grid-template-columns: repeat(2, 1fr); }
  .philo__cols { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .b-toc a { grid-template-columns: 28px 1fr; }
  .b-toc .k { display: none; }
  .b-entry { grid-template-columns: 60px 1fr; gap: 18px; padding-left: 4px; padding-right: 4px; }
  .b-entry__num { font-size: 36px; }
  .b-entry__title { font-size: 26px; }
  .b-entry__copy { font-size: 16px; }
  .b-entry__side { padding-left: 0; }
  .b-entry__meta > div { grid-template-columns: 80px 1fr; gap: 8px; }
  .concerns__grid { grid-template-columns: 1fr; }
  .concerns__foot { flex-direction: column; align-items: flex-start; }
  .b-index-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ═════════════════════════════════════════════════════════
   TREATMENT DETAIL PAGE
   ═════════════════════════════════════════════════════════ */

/* ── Breadcrumb ───────────────────────────────────────── */
.crumb {
  background: var(--bg);
  padding-top: 112px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule-soft);
}
.crumb__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.crumb__inner a {
  color: var(--ink-mute);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.crumb__inner a:hover { color: var(--ink); border-bottom-color: var(--olive); }
.crumb__sep {
  color: var(--olive);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  font-family: var(--serif);
  line-height: 1;
}
.crumb__here { color: var(--ink); }

/* ── Treatment Hero (editorial, light) ─────────────────── */
.t-hero {
  background: var(--bg);
  padding: clamp(48px, 6vw, 88px) 0 clamp(72px, 9vw, 120px);
  border-bottom: 1px solid var(--rule);
}
.t-hero__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: end;
}
.t-hero__body { max-width: 60ch; }
.t-hero__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(42px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 28px 0;
  text-wrap: balance;
}
.t-hero__title em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.t-hero__sub {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 32px 0;
  font-weight: var(--w-light);
  max-width: 52ch;
}
.t-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 36px 0;
}
.t-hero__chips li {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg-soft);
}
.t-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.t-hero__cta .btn { color: var(--ink); border-color: var(--ink); }
.t-hero__cta .btn:hover { background: var(--ink); color: var(--paper); }
.t-hero__cta .btn--ghost-light {
  --btn-fg: var(--ink);
  --btn-border: rgba(28,25,22,0.25);
}
.t-hero__cta .btn--ghost-light:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

.t-hero__meta {
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}
.t-hero__meta dt {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin: 0 0 6px 0;
}
.t-hero__meta dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--ink);
}
.t-hero__meta dd .thin {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Treatment Hero — zentrierte TEXT-Variante ──────────────
   Modifier .t-hero--text: Kicker, Eyebrow, Titel, Ornament,
   Subline, Chips und CTA stehen mittig untereinander; die
   Faktenliste sitzt als 4-spaltiger Strip in voller Breite
   darunter (.t-hero__meta--strip). */
.t-hero--text .t-hero__inner {
  display: block;
  max-width: 920px;
  text-align: center;
}
.t-hero__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--olive);
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}
.t-hero--text .t-hero__eyebrow {
  padding-left: 0;
  margin-bottom: clamp(22px, 2.6vw, 32px);
}
.t-hero--text .t-hero__eyebrow::before { display: none; }
.t-hero--text .t-hero__title {
  margin: 0 auto;
}
.t-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: clamp(20px, 2.4vw, 30px) 0 clamp(24px, 2.8vw, 34px);
}
.t-hero__ornament-line {
  width: 48px;
  height: 1px;
  background: var(--rule);
}
.t-hero__ornament-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--olive);
}
.t-hero--text .t-hero__sub {
  margin: 0 auto clamp(28px, 3.2vw, 38px);
  max-width: 52ch;
}
.t-hero--text .t-hero__chips {
  justify-content: center;
  margin: 0 auto clamp(24px, 2.8vw, 32px);
}
.t-hero--text .t-hero__cta {
  justify-content: center;
}
.t-hero__meta--strip {
  max-width: var(--maxw-wide);
  margin: clamp(48px, 6vw, 80px) auto 0;
  padding: 0 var(--pad);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.t-hero__meta--strip > div {
  padding: 26px 28px;
  border-right: 1px solid var(--rule-soft);
}
.t-hero__meta--strip > div:first-child { padding-left: 0; }
.t-hero__meta--strip > div:last-child  { padding-right: 0; border-right: 0; }

/* ── Article — medical prose ──────────────────────────── */
.section--article { background: var(--bg); padding: clamp(72px, 9vw, 120px) 0; }
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.article h2 {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: clamp(56px, 6vw, 80px) 0 24px;
  text-wrap: balance;
  position: relative;
  padding-top: 28px;
}
.article h2:first-of-type { margin-top: 0; }
.article h2::before {
  content: "";
  display: block;
  width: 36px; height: 1px;
  background: var(--olive);
  position: absolute;
  left: 0; top: 0;
}
.article p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 20px 0;
  font-weight: var(--w-light);
}
.article p strong, .article p b {
  color: var(--ink);
  font-weight: var(--w-medium);
}
.article ul {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}
.article ul li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
  font-weight: var(--w-light);
}
.article ul li:last-child { border-bottom: 0; }
.article ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 16px; height: 1px;
  background: var(--olive);
}
.article .lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: var(--w-light);
  margin-bottom: 28px;
}
.article .pull {
  margin: 32px 0;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--olive);
  background: transparent;
}
.article .pull p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  font-weight: var(--w-regular);
}

/* Step list (Ablauf) — numbered subsections */
.article .steps { counter-reset: stp; margin: 8px 0 24px; padding: 0; list-style: none; }
.article .steps li {
  border: 0;
  padding: 24px 0 24px 64px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  counter-increment: stp;
  font-weight: var(--w-light);
}
.article .steps li::before {
  content: counter(stp, decimal-leading-zero);
  position: absolute;
  left: 0; top: 24px;
  width: auto; height: auto;
  background: transparent;
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-light);
  font-size: 22px;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.article .steps li strong {
  display: block;
  color: var(--ink);
  font-weight: var(--w-medium);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article .steps li:last-child { border-bottom: 0; }

/* ── Comparison table ─────────────────────────────────── */
.compare {
  margin: 24px 0 8px;
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  border-top: 1px solid var(--ink);
}
.compare th, .compare td {
  text-align: left;
  vertical-align: top;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.5;
}
.compare thead th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.compare thead th:first-child { color: transparent; }
.compare tbody th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  width: 22%;
  white-space: nowrap;
}
.compare tbody td {
  color: var(--ink-soft);
  font-weight: var(--w-light);
}
.compare tbody td:first-of-type {
  color: var(--ink);
  font-weight: var(--w-medium);
}
.compare-wrap {
  margin: 24px 0 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-wrap .compare { min-width: 560px; }

/* ── Related box (optional querverweis) ───────────────── */
.section--related { background: var(--bg-soft); padding: clamp(64px, 7vw, 96px) 0; }
.related {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.related__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  padding: clamp(36px, 4vw, 56px);
  background: var(--bg);
  border: 1px solid var(--rule);
}
.related__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px 0;
  text-wrap: balance;
}
.related__copy {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px 0;
  font-weight: var(--w-light);
  max-width: 46ch;
}
.related__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(168,153,104,0.05) 22px 23px),
    linear-gradient(140deg, var(--bg-soft), var(--bg-deep));
  border: 1px solid var(--rule);
  overflow: hidden;
}
.related__visual::before {
  content: "";
  position: absolute; inset: 18px;
  border: 1px solid var(--rule);
}
.related__visual--photo { background: var(--bg-soft); }
.related__visual--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;  /* schneidet das AI-Wasserzeichen unten-rechts weg */
  z-index: 0;
}
.related__visual--photo::before { z-index: 1; }
.related__visual-tag {
  position: absolute; left: 18px; bottom: 18px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  background: rgba(244,237,225,0.85);
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  z-index: 2;
}

/* ── Cost box ─────────────────────────────────────────── */
.section--cost { background: var(--bg); padding: clamp(72px, 8vw, 110px) 0; }
.cost {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.cost__head .eyebrow { margin-bottom: 18px; }
.cost__head h2 {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.cost__head h2 em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.cost__data {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.cost__data > div { display: flex; flex-direction: column; gap: 8px; }
.cost__data dt {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0;
  font-weight: 500;
}
.cost__data dd {
  margin: 0;
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: 32px;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cost__data dd .unit {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0;
  font-weight: 400;
  text-transform: none;
}
.cost__data dd.cost__txt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.cost__note {
  margin: 24px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-mute);
  font-weight: var(--w-light);
  max-width: 56ch;
}
.cost__note strong { color: var(--ink-soft); font-weight: var(--w-medium); }

/* ── Dr. Peters strip ─────────────────────────────────── */
.section--docstrip {
  background: var(--bg-soft);
  padding: clamp(64px, 8vw, 110px) 0;
}
.dstrip {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.dstrip__portrait {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-deep);
  filter: grayscale(1);
}
.dstrip__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.dstrip__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 22px 0;
  text-wrap: balance;
}
.dstrip__title em { color: var(--olive); font-style: italic; }
.dstrip__copy {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px 0;
  font-weight: var(--w-light);
  max-width: 58ch;
}
.dstrip__meta {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 28px 0;
  font-weight: 500;
}
.dstrip__meta span { white-space: nowrap; }
.dstrip__meta i {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--olive);
  margin: 0 14px;
  vertical-align: middle;
  font-style: normal;
}

/* ── Section heading inside FAQ on detail page (left-aligned, narrower) ── */
.section--faq.section--faq-detail .container { max-width: 920px; }

/* FAQ on detail pages — sanfter, leicht wärmerer Ton */
.section--faq.section--faq-detail {
  background: hsl(var(--bg-h), 26%, 97%);
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — detail page
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .t-hero__inner { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .t-hero__meta--strip { grid-template-columns: 1fr 1fr; }
  .t-hero__meta--strip > div { padding: 22px 24px; }
  .t-hero__meta--strip > div:nth-child(2) { padding-right: 0; border-right: 0; }
  .t-hero__meta--strip > div:nth-child(3) { padding-left: 0; border-top: 1px solid var(--rule-soft); }
  .t-hero__meta--strip > div:nth-child(4) { border-top: 1px solid var(--rule-soft); }
  .related__inner { grid-template-columns: 1fr; }
  .related__visual { order: -1; aspect-ratio: 16 / 10; }
  .cost { grid-template-columns: 1fr; gap: 32px; }
  .dstrip { grid-template-columns: 220px 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .crumb { padding-top: 96px; }
  .crumb__inner { font-size: 10px; gap: 6px; }
  .article h2 { font-size: 26px; }
  .article p, .article ul li, .article .steps li { font-size: 16.5px; }
  .article .steps li { padding-left: 48px; }
  .t-hero__meta { grid-template-columns: 1fr 1fr; }
  .cost__data { grid-template-columns: 1fr 1fr; }
  .cost__data dd { font-size: 26px; }
  .dstrip { grid-template-columns: 1fr; gap: 28px; }
  .dstrip__portrait { max-width: 220px; }
  .related__inner { padding: 28px; }
  .compare { font-size: 14px; }
  .compare th, .compare td { padding: 14px 10px 14px 0; }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__links { display: none; }
  .t-feature { grid-template-columns: 1fr; }
  /* Behandlungs-Raster: 3 Spalten sprengen schmale Viewports — 2 Spalten ab Tablet */
  body[data-treatments="grid"] .t-index { grid-template-columns: 1fr 1fr; }
  .doc, .loc { grid-template-columns: 1fr; }
  .practice { grid-template-columns: 1fr; gap: 24px; }
  .practice__hero { aspect-ratio: 16 / 11; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__step:nth-child(2) { border-right: 0; padding-right: 0; }
  .flow__step:nth-child(3), .flow__step:nth-child(4) { padding-top: 0; }
  .flow__step:nth-child(3) { border-right: 1px solid var(--rule); padding-left: 0; }
  .voices { grid-template-columns: 1fr; }
  .appt { grid-template-columns: 1fr; }
  .loc__data { grid-template-columns: 1fr; }
  /* Footer: Brand + 4-Spalten-Nav passen ab Tablet-Portrait nicht mehr
     nebeneinander (Min-Content > Containerbreite). Brand oben stapeln. */
  .foot__top { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav { padding: 12px 0; }
  .hero__corner { display: none; }
  .t-row { grid-template-columns: 50px 1fr 24px; row-gap: 8px; }
  .t-row__copy { grid-column: 2 / 4; }
  /* Behandlungs-Raster: auf dem Smartphone einspaltig */
  body[data-treatments="grid"] .t-index { grid-template-columns: 1fr; }
  /* aspect-ratio:1/1 + min-height:360px erzwingt sonst eine 360px-Mindestbreite,
     die Viewports < ~408px sprengt — Hoehe aus der Breite ableiten lassen. */
  .map-consent { min-height: 0; }
  .flow { grid-template-columns: 1fr; }
  .flow__step { border-right: 0 !important; padding: 32px 0 !important; border-bottom: 1px solid var(--rule); }
  .flow__step:last-child { border-bottom: 0; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: 1fr 1fr; }
  .foot__bottom { flex-direction: column; gap: 12px; }
  .trust__inner { font-size: 10px; gap: 10px 16px; }
}

/* ═════════════════════════════════════════════════════════
   ASTRO-IMPLEMENTIERUNG — Ergänzungen
   ═════════════════════════════════════════════════════════ */

/* ── Detailseiten-Nav: immer "solid" ── */
.nav.nav--solid {
  background: hsl(var(--bg-h) calc(var(--bg-s) - 5%) calc(var(--bg-l) - 4%) / 0.92);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 1px 0 rgba(28, 25, 22, 0.06);
}
.nav.nav--solid .nav__mark { color: var(--ink); }
.nav.nav--solid .nav__links a { color: var(--ink-soft); }
.nav.nav--solid .btn--ghost-light { --btn-fg: var(--ink); --btn-border: var(--ink); }

/* ── Nav-Dropdown „Behandlungen" ── */
.nav__group { position: relative; display: flex; align-items: center; }
.nav__group-trigger { display: inline-flex !important; align-items: center; gap: 5px; }
.nav__caret { transition: transform .25s var(--ease); margin-top: 1px; }
.nav__group:hover .nav__caret,
.nav__group:focus-within .nav__caret { transform: rotate(180deg); }
.nav__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  box-shadow: 0 26px 50px -26px rgba(28, 25, 22, 0.32);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav__group:hover .nav__menu,
.nav__group:focus-within .nav__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__menu .nav__menu-head {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep) !important;
  font-weight: 500;
  margin: 0 0 8px;
  padding: 0 12px;
  display: block;
  white-space: nowrap;
  border-bottom: 0 !important;
  transition: color .2s var(--ease);
}
.nav__menu a.nav__menu-head:hover { color: var(--ink) !important; background: transparent; }
.nav__menu-col ul { list-style: none; margin: 0; padding: 0; }
.nav__menu a {
  display: block;
  padding: 9px 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  color: var(--ink-soft) !important;
  border-bottom: 0 !important;
}
.nav__menu a:hover { background: var(--bg-soft); color: var(--ink) !important; }

/* ── t-row als ganzflächiger Link (Homepage-Raster) ── */
body[data-treatments="grid"] .t-index > li { display: flex; }
body[data-treatments="grid"] .t-index > li > .t-row { width: 100%; }

/* ── Behandlungs-Raster: „Alle ansehen"-Link ── */
.t-index-foot { margin-top: clamp(36px, 5vw, 56px); text-align: center; }

/* ── Markdown-Artikel: native Elemente auf Design-Komponenten mappen ── */
.article blockquote {
  margin: 32px 0;
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--olive);
}
.article blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  font-weight: var(--w-regular);
}
.article ol {
  counter-reset: stp;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}
.article ol li {
  border: 0;
  padding: 24px 0 24px 64px;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  counter-increment: stp;
  font-weight: var(--w-light);
}
.article ol li::before {
  content: counter(stp, decimal-leading-zero);
  position: absolute;
  left: 0; top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-light);
  font-size: 22px;
  color: var(--olive);
  letter-spacing: 0.02em;
}
.article ol li strong {
  display: block;
  color: var(--ink);
  font-weight: var(--w-medium);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.article ol li:last-child { border-bottom: 0; }
.article ol li::marker { content: none; }
.article table {
  margin: 24px 0 8px;
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  border-top: 1px solid var(--ink);
}
.article table th,
.article table td {
  text-align: left;
  vertical-align: top;
  padding: 18px 16px 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  line-height: 1.5;
}
.article table thead th {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--olive);
}
.article table thead th:first-child { color: transparent; }
.article table tbody td { color: var(--ink-soft); font-weight: var(--w-light); }
/* Zeilenkopf (1. Spalte, jetzt <th scope="row">) — gleiche Optik wie zuvor td:first-child */
.article table tbody th,
.article table tbody td:first-child {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .article table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Rechtsseiten (Impressum / Datenschutz) ───────────── */
.section--legal { background: var(--bg); padding: clamp(88px, 10vw, 132px) 0 clamp(72px, 9vw, 120px); }
.legal-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin: 0 0 14px;
}
.article h1 {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.legal-meta {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
  font-weight: var(--w-light);
  margin: 0 0 8px;
}
.section--legal .article h2:first-of-type { margin-top: clamp(48px, 5vw, 72px); }
.article h3 {
  font-family: var(--sans);
  font-weight: var(--w-medium);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  margin: 34px 0 12px;
}
.article h4 {
  font-family: var(--sans);
  font-weight: var(--w-medium);
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--ink);
  margin: 22px 0 8px;
}
.article a {
  color: var(--olive-deep);  /* funktionale Links AA-konform (5.1:1) statt hellem Deko-Gold */
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.article a:hover { text-decoration: none; }
.article address {
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  font-weight: var(--w-light);
  margin: 0 0 22px;
  padding-left: 20px;
  border-left: 1px solid var(--olive);
}
.article .legal-emph {
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: var(--ink-mute);
}

/* ═══════════════════════════════════════════════════════
   SYMPTOM-/ANLIEGEN-SEITEN (/falten/…)
   ═══════════════════════════════════════════════════════ */

/* Anliegen-Hero — Quick-Facts unter den Chips, mit Trennregel */
.a-hero .t-hero__inner { grid-template-columns: 1.15fr 1fr; align-items: start; }
.a-quick {
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}
.a-quick > div { display: block; }
.a-quick dt {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
  margin: 0 0 6px 0;
}
.a-quick dd {
  margin: 0;
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: 19px;
  line-height: 1.35;
  color: var(--ink);
}

/* ── KERNSTÜCK · Behandlungsmöglichkeiten ──────────────── */
.section--tx-options {
  background: var(--bg-soft);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.tx-options__head {
  max-width: 1040px;
  margin: 0 auto clamp(56px, 6vw, 80px);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.tx-options__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.tx-options__title em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.tx-options__lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-regular);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
  text-wrap: pretty;
}
.tx-options__index {
  max-width: 1040px;
  margin: 0 auto 28px;
  padding: 0 var(--pad) 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
}
.tx-options__index em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  font-weight: var(--w-regular);
}
.tx-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  gap: 20px;
  list-style: none;
}
.tx-grid[data-count="1"] { grid-template-columns: 1fr; }
.tx-grid[data-count="2"] { grid-template-columns: 1fr 1fr; }
.tx-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.tx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: clamp(32px, 3.4vw, 44px) clamp(28px, 3vw, 40px) clamp(28px, 3vw, 36px);
  transition: background .25s var(--ease), border-color .25s var(--ease);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.tx-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s var(--ease);
}
.tx-card:hover { background: var(--paper); border-color: var(--olive); }
.tx-card:hover::before { transform: scaleX(1); }
.tx-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.tx-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-regular);
  font-size: 44px;
  line-height: 1;
  color: var(--olive);
  letter-spacing: 0.01em;
}
.tx-card__role {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  padding: 7px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  white-space: nowrap;
}
.tx-card--primary .tx-card__role {
  color: var(--paper);
  background: var(--olive-deep);
  border-color: var(--olive-deep);
}
.tx-card .t-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
  margin: 0 0 8px 0;
}
.tx-card__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 14px 0;
  color: var(--ink);
}
.tx-card__title .thin { color: var(--olive); }
.tx-card__copy {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: var(--w-light);
  margin: 0 0 28px 0;
  flex: 1;
}
.tx-card__cta {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.tx-card__cta svg { transition: transform .3s var(--ease); }
.tx-card:hover .tx-card__cta { color: var(--olive-deep); gap: 16px; }
.tx-card:hover .tx-card__cta svg { transform: translateX(2px); }
.tx-note {
  max-width: 1040px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  padding: 0 var(--pad);
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  text-wrap: pretty;
}
.tx-note strong {
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
  display: inline-block;
  margin-right: 10px;
  vertical-align: 0.12em;
}

/* ── Abschluss-Block (vor Termin) ───────────────────────── */
.section--closer { background: var(--bg); padding: clamp(72px, 9vw, 120px) 0 clamp(24px, 4vw, 56px); }
.closer {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.closer .eyebrow { position: relative; left: 50%; transform: translateX(-50%); }
.closer__title {
  font-family: var(--serif);
  font-weight: var(--w-regular);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.closer__title em { color: var(--olive); font-style: italic; font-weight: var(--w-regular); }
.closer__copy {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: var(--w-light);
  max-width: 56ch;
  margin: 0 auto;
  text-wrap: pretty;
}

@media (max-width: 1100px) {
  .a-hero .t-hero__inner { grid-template-columns: 1fr; }
  .tx-options__head { grid-template-columns: 1fr; gap: 20px; }
  .tx-grid[data-count="3"] { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .a-quick { grid-template-columns: 1fr; gap: 18px; }
  .tx-grid[data-count="2"],
  .tx-grid[data-count="3"] { grid-template-columns: 1fr; }
  .tx-card__num { font-size: 36px; }
  .tx-card__title { font-size: 26px; }
  .tx-options__index { font-size: 10px; letter-spacing: 0.18em; }
  .tx-options__index em { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE-MENÜ (Burger)
   ═══════════════════════════════════════════════════════ */
.nav__burger { display: none; }
.nav-mobile { display: none; }

@media (max-width: 1024px) {
  .nav .btn--ghost-light { display: none; }   /* Termin → ins Panel */
  .nav__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--paper);
    transition: color .35s var(--ease);
  }
  .nav.is-scrolled .nav__burger,
  .nav.nav--solid .nav__burger { color: var(--ink); }

  .nav__burger-box { position: relative; width: 22px; height: 12px; }
  .nav__burger-box span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
  }
  .nav__burger-box span:nth-child(1) { top: 0; }
  .nav__burger-box span:nth-child(2) { top: 5px; }
  .nav__burger-box span:nth-child(3) { top: 10px; }

  .nav-mobile {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--bg);
    padding: 100px var(--pad) 48px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), visibility .28s;
  }
}

/* Offener Zustand */
body.is-menu-open { overflow: hidden; }
body.is-menu-open .nav {
  background: hsl(var(--bg-h) calc(var(--bg-s) - 5%) calc(var(--bg-l) - 4%) / 0.97);
  box-shadow: 0 1px 0 rgba(28, 25, 22, 0.06);
}
body.is-menu-open .nav__mark,
body.is-menu-open .nav__burger { color: var(--ink); }
body.is-menu-open .wm-tpp { color: var(--olive-deep); }
body.is-menu-open .nav-mobile { opacity: 1; visibility: visible; }
body.is-menu-open .nav__burger-box span:nth-child(1) { top: 5px; transform: rotate(45deg); }
body.is-menu-open .nav__burger-box span:nth-child(2) { opacity: 0; }
body.is-menu-open .nav__burger-box span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

/* ─── Panel-Inhalt — V2 (Editorial Hierarchy) ─────────────────────────
   Architektur: Primary-Nav (groß) → Accordions (gruppiert) → CTA-Cluster.
   Hierarchie geführt durch Typo-Skalierung statt durch flache Listen. */
.nav-mobile__inner {
  max-width: 480px;
  margin: 0 auto;
  min-height: calc(100vh - 148px); /* Top-Padding 100 + Bottom 48 vom Panel-Container */
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.nav-mobile__inner > nav { display: contents; }

/* Primary navigation — Über · Praxis · Ratgeber · Kontakt */
.nav-mobile__primary {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-mobile__primary li { border-top: 1px solid var(--rule); }
.nav-mobile__primary li:last-child { border-bottom: 1px solid var(--rule); }
.nav-mobile__primary a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: var(--w-regular);
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color .25s var(--ease);
}
.nav-mobile__primary a em {
  font-style: italic;
  color: var(--olive);
  font-weight: var(--w-regular);
}
.nav-mobile__primary a:hover,
.nav-mobile__primary a:focus-visible { color: var(--olive-deep); }
.nav-mobile__hint {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-thin);
  font-weight: 400;
  flex-shrink: 0;
  align-self: center;
}

/* Accordions: Behandlungen + Anliegen — native <details>/<summary> */
.nav-mobile__accordion { display: flex; flex-direction: column; }
.nav-mobile__acc { border-bottom: 1px solid var(--rule); }
.nav-mobile__acc-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  text-align: left;
  list-style: none;
}
.nav-mobile__acc-trigger::-webkit-details-marker { display: none; }
.nav-mobile__acc-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.nav-mobile__acc-eyebrow {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
}
.nav-mobile__acc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: var(--w-regular);
  color: var(--ink);
  line-height: 1;
}
.nav-mobile__acc-title em {
  font-style: italic;
  color: var(--olive);
  font-weight: var(--w-regular);
}
.nav-mobile__acc-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-mobile__acc-chev {
  width: 14px;
  height: 14px;
  color: var(--olive);
  transition: transform .3s var(--ease);
}
.nav-mobile__acc[open] .nav-mobile__acc-chev { transform: rotate(180deg); }
.nav-mobile__acc-list {
  list-style: none;
  margin: 0;
  padding: 0 0 28px;
  display: flex;
  flex-direction: column;
}
.nav-mobile__acc-list li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 10px 0;
}
.nav-mobile__acc-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: var(--w-regular);
  font-size: 13px;
  color: var(--olive);
  letter-spacing: 0.04em;
  min-width: 22px;
  text-align: right;
  flex-shrink: 0;
}
.nav-mobile__acc-list a {
  flex: 1;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: var(--w-regular);
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 1.3;
  transition: color .25s var(--ease);
}
.nav-mobile__acc-list a:hover,
.nav-mobile__acc-list a:focus-visible { color: var(--olive-deep); }

/* CTA cluster — primärer Button + Telefon-Sekundärlink */
.nav-mobile__cta-wrap {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nav-mobile__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.nav-mobile__cta:hover,
.nav-mobile__cta:focus-visible {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--paper);
}
.nav-mobile__cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
}
.nav-mobile__cta-secondary svg {
  width: 13px;
  height: 13px;
  color: var(--olive);
}

/* Footer signature */
.nav-mobile__marker {
  text-align: center;
  padding: 4px 0 0;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--olive-deep);
  letter-spacing: 0.04em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.nav-mobile__marker-dot {
  font-style: normal;
  color: var(--olive);
}

/* ═════════════════════════════════════════════════════════
   MOTION — Entrance-Choreografie · Scroll-Reveals · Micro
   Ruhig, langsam, editorial. Eine geprobte Bewegung statt
   verstreuter Effekte. Alles unter no-preference gekapselt.
   ═════════════════════════════════════════════════════════ */

@keyframes hero-rise {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-rule {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
/* Praxis-Foto: Bild driftet beim Scrollen langsamer als der Rahmen */
@keyframes praxis-parallax {
  from { transform: translate3d(0, -8%, 0); }
  to   { transform: translate3d(0,  8%, 0); }
}

@media (prefers-reduced-motion: no-preference) {

  /* ── Hero-Load: gestaffelter Auftritt ─────────────────── */
  .hero .eyebrow,
  .hero__lede,
  .hero__cta,
  .hero__corner,
  .ht-line {
    animation: hero-rise 1s var(--ease-out-expo) both;
  }
  .hero .eyebrow { animation-delay: .12s; }
  .ht-line--a    { animation-delay: .26s; }
  .ht-line--b    { animation-delay: .39s; }
  .ht-line--c    { animation-delay: .52s; }
  .hero__lede    { animation-delay: .66s; }
  .hero__cta     { animation-delay: .78s; }
  .hero__corner  { animation-delay: 1s; animation-duration: 1.3s; }

  /* Zierlinie zieht sich aus der Mitte des Satzes auf */
  .ht-ornament {
    transform-origin: left center;
    animation: hero-rule .8s var(--ease-out-quart) .7s both;
  }

  /* Mobile: dem Hero-Video einen Atemzug Solo-Zeit vor dem Text-Einblenden
     geben — ~1,4 s extra Delay auf alle zentralen Hero-Texte/CTAs.
     Die Nav-Wortmarke ist nicht Teil dieser Gruppe und bleibt sofort sichtbar. */
  @media (max-width: 720px) {
    .hero .eyebrow { animation-delay: 1.52s; }
    .ht-line--a    { animation-delay: 1.66s; }
    .ht-line--b    { animation-delay: 1.79s; }
    .ht-line--c    { animation-delay: 1.92s; }
    .ht-ornament   { animation-delay: 2.10s; }
    .hero__lede    { animation-delay: 2.06s; }
    .hero__cta     { animation-delay: 2.18s; }
  }

  /* Hero-CTA: kein Vorwärts-Fill — sonst hält die Einblend-Animation
     opacity:1 fest und blockiert das weiche Scroll-Ausfaden (Transition).
     Optisch identisch (Endzustand = natürlicher Zustand der Buttons). */
  .hero__cta { animation-fill-mode: backwards; }

  /* ── Scroll-Reveal ────────────────────────────────────── */
  html.reveal-on [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition:
      opacity .85s var(--ease-out-quart),
      transform .85s var(--ease-out-quart);
    transition-delay: var(--reveal-delay, 0s);
  }
  html.reveal-on [data-reveal].is-in {
    opacity: 1;
    transform: none;
  }

  /* ── Praxis-Foto · Full Choreography ──────────────────── */
  /* Die Figur selbst nicht ein-/ausblenden — nur die Bildebenen
     und die Caption werden choreografiert. */
  html.reveal-on .practice__hero[data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* 1 · Vorhang — der Rahmen wischt von oben nach unten auf */
  html.reveal-on .practice__hero[data-reveal] .practice__hero-frame {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.15s var(--ease-out-expo);
  }
  html.reveal-on .practice__hero[data-reveal].is-in .practice__hero-frame {
    clip-path: inset(0 0 0 0);
  }

  /* 2 · Slow-Zoom — das Bild setzt sich aus leichtem Heranzoomen */
  html.reveal-on .practice__hero[data-reveal] .practice__hero-img {
    transform: scale(1.08);
    transition: transform 1.8s var(--ease-out-quart);
  }
  html.reveal-on .practice__hero[data-reveal].is-in .practice__hero-img {
    transform: scale(1);
  }

  /* 3 · Goldene Haarlinie zieht sich aus dem linken Rand auf */
  html.reveal-on .practice__hero[data-reveal] .practice__hero-rule {
    transform: scaleX(0);
    transition: transform .7s var(--ease-out-expo) .7s;
  }
  html.reveal-on .practice__hero[data-reveal].is-in .practice__hero-rule {
    transform: scaleX(1);
  }

  /* 4 · Caption — gestaffelter Auftritt nach dem Vorhang */
  html.reveal-on .practice__hero[data-reveal] .practice__hero-cap > span {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition:
      opacity .6s var(--ease-out-quart),
      transform .6s var(--ease-out-quart);
  }
  html.reveal-on .practice__hero[data-reveal].is-in .practice__hero-cap > span {
    opacity: 1;
    transform: none;
  }
  html.reveal-on .practice__hero[data-reveal].is-in .practice__hero-cap > span:nth-child(1) { transition-delay: .82s; }
  html.reveal-on .practice__hero[data-reveal].is-in .practice__hero-cap > span:nth-child(2) { transition-delay: .94s; }

  /* 5 · Scroll-Parallax — laeuft nativ off-main-thread; wo nicht
     unterstuetzt, bleibt das Bild schlicht statisch im Rahmen. */
  @supports (animation-timeline: view()) {
    .practice__hero-pan {
      animation: praxis-parallax linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
    }
  }
}

/* ── Micro-Interactions ─────────────────────────────────── */
/* Schwerpunkt-Bild: ruhiger Slow-Zoom beim Hover */
.t-feature__media img {
  transition: transform 1.1s var(--ease-out-quart);
}
.t-feature__media:hover img,
.t-feature__media:focus-visible img {
  transform: scale(1.045);
}
/* Termin-Karte: Icon nimmt beim Hover die Goldnote auf */
.appt__icon { transition: color .35s var(--ease); }
.appt__card:hover .appt__icon,
.appt__card:focus-visible .appt__icon {
  color: var(--olive);
}

/* ── Hero-Choreografie · Unterseiten ────────────────────── */
/* Gilt fuer alle t-hero-Seiten (Behandlungen, Falten, Detail).
   Reines CSS, laeuft beim Laden, kein Flackern. */
@media (prefers-reduced-motion: no-preference) {
  .t-hero__body > *,
  .t-hero--text .t-hero__inner > *,
  .t-hero__meta,
  .b-toc,
  .a-quick {
    animation: hero-rise 1s var(--ease-out-expo) both;
  }
  .t-hero__body > :nth-child(1) { animation-delay: .08s; }
  .t-hero__body > :nth-child(2) { animation-delay: .20s; }
  .t-hero__body > :nth-child(3) { animation-delay: .32s; }
  .t-hero__body > :nth-child(4) { animation-delay: .42s; }
  .t-hero__body > :nth-child(n+5) { animation-delay: .50s; }

  /* Zentrierter Text-Hero — gestaffelter Auftritt von oben nach unten */
  .t-hero--text .t-hero__inner > :nth-child(1) { animation-delay: .08s; }
  .t-hero--text .t-hero__inner > :nth-child(2) { animation-delay: .18s; }
  .t-hero--text .t-hero__inner > :nth-child(3) { animation-delay: .28s; }
  .t-hero--text .t-hero__inner > :nth-child(4) { animation-delay: .40s; }
  .t-hero--text .t-hero__inner > :nth-child(5) { animation-delay: .50s; }
  .t-hero--text .t-hero__inner > :nth-child(6) { animation-delay: .60s; }
  .t-hero--text .t-hero__inner > :nth-child(7) { animation-delay: .70s; }
  /* Ornament-Linien ziehen sich aus der Mitte auf */
  .t-hero__ornament-line {
    transform-origin: center;
    animation: hero-rule .7s var(--ease-out-quart) .52s both;
  }

  .t-hero__meta,
  .b-toc,
  .a-quick { animation-delay: .34s; animation-duration: 1.1s; }

  /* Ueber-Seite — Drop-Cap-Hero */
  .bio-hero__copy > * { animation: hero-rise 1s var(--ease-out-expo) both; }
  .bio-hero__copy > :nth-child(1) { animation-delay: .10s; }
  .bio-hero__copy > :nth-child(2) { animation-delay: .26s; }
  .bio-hero__copy > :nth-child(3) { animation-delay: .36s; }
  .bio-hero__copy > :nth-child(n+4) { animation-delay: .46s; }
  .bio-hero__media { animation: hero-rise 1.15s var(--ease-out-expo) .3s both; }
}

/* ── Reduced Motion: alles still ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════
   STICKY MOBILE CTA-DOCK — Anrufen + WhatsApp (nur Mobil)
   Sleek-integriert (Whiteloft-Prinzip): durchgehende Leiste,
   nahtlose Segmente mit feiner Trennlinie — keine Einzel-Buttons.
   Erscheint ≤760px, weicht bei offenem Mobile-Menü.
   ═══════════════════════════════════════════════════════ */
.cta-dock { display: none; }

@media (max-width: 760px) {
  .cta-dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: var(--ink);
    border-top: 1px solid rgba(166, 151, 106, 0.5);
    box-shadow: 0 -10px 30px -16px rgba(0, 0, 0, 0.55);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transition: transform .6s var(--ease-out-quart), opacity .6s var(--ease-out-quart);
    /* Startzustand: ausgeblendet — erscheint erst beim Scrollen (.is-revealed) */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  /* Eingeblendet ab Scroll > 40px — synchron zur Nav-Solid-Logik */
  .cta-dock.is-revealed {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .cta-dock__btn {
    position: relative;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    height: 60px;
    color: rgba(245, 240, 226, 0.94);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s var(--ease), color .25s var(--ease);
  }
  .cta-dock__btn svg {
    width: 18px;
    height: 18px;
    flex: none;
    color: var(--olive);
    transition: color .25s var(--ease);
  }
  .cta-dock__btn:active { background: rgba(245, 240, 226, 0.07); }
  .cta-dock__btn:active svg { color: #c9b988; }

  /* Feine, eingerückte Trennlinie zwischen den Segmenten */
  .cta-dock__btn + .cta-dock__btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(245, 240, 226, 0.16);
  }

  /* Bodenfreiheit, damit Footer/letzter Block nicht verdeckt wird */
  body { padding-bottom: calc(61px + env(safe-area-inset-bottom, 0px)); }

  /* Leiste weicht nach unten, wenn das Mobile-Menü offen ist */
  body.is-menu-open .cta-dock {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }

  /* Hero-CTAs faden aus, sobald die Leiste einfährt (synchron, scrollY > 40).
     !important schlägt die Hero-Rise-Einblendanimation (animation-fill: both),
     die sonst opacity:1 festhalten würde. */
  .hero__cta {
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  }
  body.is-scrolled-down .hero__cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
