/* =============================================================
   Behandlungsraum Dr. Paul — V2 Design System
   Stille materielle Übersetzung des Behandlungsraums in Pixel.
   DSGVO: alle Ressourcen lokal, keine externen Aufrufe.
   ============================================================= */

:root {
  /* COLORS — Materialwelt */
  --color-sage-50:  #F1F4EE;
  --color-sage-100: #E2E8DB;
  --color-sage-200: #C8D4BD;
  --color-sage-300: #A6B89A;
  --color-sage-400: #8AA37C;
  --color-sage-500: #7B9E87;
  --color-moss-600: #5B7A63;
  --color-moss-700: #3C5A47;
  --color-moss-800: #2C4A3E;
  --color-moss-900: #1F2E26;

  --color-cream-50:  #FBF8F2;
  --color-cream-100: #F5F0E8;
  --color-cream-200: #ECE4D5;
  --color-cream-300: #DDD2BE;
  --color-oak-400:   #C9AC83;
  --color-oak-500:   #A6815A;
  --color-oak-600:   #7E5E3F;

  --color-stone-200: #D9D5CC;
  --color-stone-400: #9A968D;
  --color-stone-600: #5C5A53;

  --color-glow:      #F4D9A8;
  --color-glow-soft: #F9E7C2;

  /* Semantische Roles */
  --bg-page:       var(--color-cream-100);
  --bg-surface:    var(--color-cream-50);
  --bg-elevated:   #FFFFFF;
  --bg-inset:      var(--color-cream-200);
  --bg-emphasis:   var(--color-moss-800);

  --fg-primary:    var(--color-moss-900);
  --fg-secondary:  var(--color-moss-800);
  --fg-muted:      var(--color-stone-600);
  --fg-quiet:      var(--color-stone-400);
  --fg-on-dark:    var(--color-cream-50);
  --fg-on-dark-muted: var(--color-sage-200);

  --accent:        var(--color-moss-700);
  --accent-hover:  var(--color-moss-800);
  --accent-soft:   var(--color-sage-500);
  --accent-warm:   var(--color-oak-500);

  --border-quiet:   var(--color-cream-200);
  --border-default: var(--color-cream-300);
  --border-strong:  var(--color-stone-400);

  --status-success: #4F7A4D;
  --status-warning: #C68B3C;
  --status-error:   #A04A3E;

  /* TYPOGRAPHY — Cormorant Garamond als Display-Serif, DM Sans als Body */
  --font-display: 'Cormorant Garamond', 'Source Serif 4', 'Iowan Old Style', 'Georgia', serif;
  --font-body:    'DM Sans', 'Source Sans 3', 'Helvetica Neue', system-ui, sans-serif;

  --fs-caption:    14px;
  --fs-body-s:     16px;
  --fs-body:       18px;
  --fs-body-l:     20px;
  --fs-h4:         22px;
  --fs-h3:         28px;
  --fs-h2:         36px;
  --fs-h1:         48px;
  --fs-display:    64px;
  --fs-display-xl: 88px;

  --lh-tight:   1.1;
  --lh-snug:    1.25;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  --ls-tight:   -0.015em;
  --ls-normal:  0em;
  --ls-wide:    0.04em;
  --ls-tracked: 0.14em;

  /* SPACING — 4px base */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px; --sp-11: 160px;

  /* RADII */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   24px;
  --radius-pill: 999px;

  /* SHADOWS — Materialtiefe */
  --shadow-quiet:  0 1px 0 rgba(31, 46, 38, 0.04);
  --shadow-card:   0 1px 2px rgba(31, 46, 38, 0.04), 0 8px 24px -12px rgba(31, 46, 38, 0.08);
  --shadow-lift:   0 2px 4px rgba(31, 46, 38, 0.05), 0 16px 40px -16px rgba(31, 46, 38, 0.12);
  --shadow-glow:   0 0 80px -10px rgba(244, 217, 168, 0.55);
  --shadow-inset:  inset 0 1px 0 rgba(255, 255, 255, 0.6);

  /* MOTION */
  --ease-quiet: cubic-bezier(0.32, 0.08, 0.24, 1);
  --dur-1: 160ms;
  --dur-2: 260ms;
  --dur-3: 420ms;

  /* Layout */
  --header-h: 78px;
  --container-max: 1180px;
}

/* =============================================================
   Reset + Base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--dur-1) var(--ease-quiet);
}
a:hover { color: var(--accent-hover); }

::selection { background: var(--color-sage-200); color: var(--fg-primary); }

/* Typography roles */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  color: var(--fg-secondary);
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: var(--fs-h1); line-height: 1.1; }
h2 { font-size: var(--fs-h2); line-height: 1.15; }
h3 { font-size: var(--fs-h3); font-weight: 500; line-height: 1.2; }
h4 { font-size: var(--fs-h4); font-weight: 500; line-height: 1.3; font-family: var(--font-body); letter-spacing: 0; }

p { margin: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--ls-tracked);
  color: var(--accent-soft);
}

.lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-body-l);
  line-height: 1.55;
  color: var(--fg-secondary);
  margin: 0;
}

/* Container */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }

/* Skip-link for accessibility */
.skip-link {
  position: absolute;
  left: -10000px;
  top: 8px;
  background: var(--bg-emphasis);
  color: var(--fg-on-dark);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  z-index: 100;
  border: 0;
}
.skip-link:focus { left: 8px; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 232, 0.85);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid var(--border-quiet);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: 0;
  color: inherit;
}
.brand img { height: 40px; width: auto; }
.brand__wm {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--fg-secondary);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-secondary);
  border: 0;
  padding-bottom: 2px;
}
.nav a:hover { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.nav__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--fg-on-dark) !important;
  border-radius: var(--radius-md);
  border: 0 !important;
  transition: background var(--dur-2) var(--ease-quiet);
}
.nav__cta:hover { background: var(--accent-hover); padding-bottom: 10px; }

/* Mobile menu */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--fg-secondary);
}
@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-page);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border-quiet);
  }
  .site-header.is-open .nav__cta { align-self: flex-start; }
}

/* =============================================================
   BUTTON
   ============================================================= */
.btn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--dur-2) var(--ease-quiet);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn .arrow { transition: transform var(--dur-2) var(--ease-quiet); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--accent); color: var(--fg-on-dark) !important; }
.btn-primary:hover { background: var(--accent-hover); color: var(--fg-on-dark) !important; }
.btn-secondary {
  background: transparent;
  color: var(--accent) !important;
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--fg-on-dark) !important;
}
.btn-ghost {
  background: transparent;
  color: var(--fg-secondary) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--accent-soft) !important;
  border-radius: 0;
  padding: 8px 0;
}
.btn-ghost:hover {
  color: var(--accent) !important;
  border-bottom-color: var(--accent) !important;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: -160px;
  top: -120px;
  width: 720px;
  height: 720px;
  background: radial-gradient(closest-side, rgba(244, 217, 168, 0.45), transparent 70%);
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--fg-secondary);
  margin: 24px 0 24px;
  text-wrap: balance;
}
.hero__copy h1 em { font-style: italic; font-weight: 500; color: var(--accent); }
.hero__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.55;
  color: var(--fg-secondary);
  max-width: 480px;
  margin: 0 0 36px;
}
.hero__cta-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 2px 4px rgba(31, 46, 38, 0.05), 0 24px 64px -24px rgba(31, 46, 38, 0.18);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.05);
  mix-blend-mode: multiply;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.98) brightness(1.02);
}
@media (max-width: 880px) {
  .hero { padding: 64px 0 48px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { aspect-ratio: 3/4; }
  .hero__copy h1 { font-size: clamp(34px, 7vw, 48px); margin: 16px 0 20px; }
  .hero__lede { font-size: 19px; margin-bottom: 28px; }
}

/* =============================================================
   ABOUT
   ============================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 96px;
  align-items: flex-start;
}
.about__portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-inset);
  aspect-ratio: 4/5;
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.98) brightness(1.02);
}
.about__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg-secondary);
  margin: 16px 0 24px;
}
.about__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--fs-body-l);
  line-height: 1.55;
  color: var(--fg-secondary);
  margin: 0 0 32px;
}
.about__bio {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin: 0 0 24px;
  max-width: 560px;
}
.about__cv {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.about__cv li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-quiet);
}
.about__cv li:last-child { border-bottom: 0; }
.about__cv .year { color: var(--accent-soft); font-weight: 500; }
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__cv li { grid-template-columns: 72px 1fr; gap: 16px; }
}

/* =============================================================
   SERVICES
   ============================================================= */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-quiet);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-2) var(--ease-quiet);
}
.svc-card:hover { border-color: var(--border-default); }
.svc-card .hairline {
  width: 36px;
  height: 1.5px;
  background: var(--color-oak-500);
  margin-bottom: 8px;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  color: var(--fg-secondary);
  margin: 0;
}
.svc-card p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}
.svc-card ul {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-muted);
  padding: 0;
  list-style: none;
  margin: 8px 0 0;
}
.svc-card ul li {
  padding: 4px 0 4px 18px;
  position: relative;
}
.svc-card ul li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--accent-soft);
  font-size: 22px;
  line-height: 16px;
}
@media (max-width: 880px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 320px 220px;
  grid-template-areas:
    "hero a b"
    "hero c d";
  gap: 16px;
}
.gallery .g-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-inset);
}
.gallery .g-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.05);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.gallery .g-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) contrast(0.98) brightness(1.02);
}
.gallery .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-quiet);
  background: var(--bg-inset);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 12px;
}
.gallery .g-hero { grid-area: hero; }
.gallery .g-a { grid-area: a; }
.gallery .g-b { grid-area: b; }
.gallery .g-c { grid-area: c; }
.gallery .g-d { grid-area: d; }
.gallery__note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-quiet);
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 880px) {
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 160px 160px;
    grid-template-areas:
      "hero hero"
      "a b"
      "c d";
  }
}

/* =============================================================
   BOOKING — Mail-Form statt Doc-Cirrus-Embed
   ============================================================= */
.booking__panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-quiet);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.booking__form .row { display: flex; gap: 18px; }
.booking__form .row > * { flex: 1; }
.booking__form label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 10px;
}
.booking__form input,
.booking__form select,
.booking__form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  background: var(--bg-page);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  color: var(--fg-primary);
  outline: none;
  transition: border-color var(--dur-1) var(--ease-quiet), background var(--dur-1) var(--ease-quiet);
  font-family: inherit;
}
.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  border-color: var(--accent);
  background: var(--bg-elevated);
}
.booking__form textarea { resize: vertical; min-height: 96px; }
.booking__form .field-row { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.booking__form .field-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.booking__form .field-row a { color: var(--accent); border-bottom-color: var(--accent-soft); }
.booking__form .submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.booking__form button[type="submit"] {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--fg-on-dark);
  border: 0;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease-quiet);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.booking__form button[type="submit"]:hover { background: var(--accent-hover); }
.booking__form .submit-note { font-size: 13px; color: var(--fg-quiet); }
.booking__form .honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.booking__sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.booking__sidebar .heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--fg-secondary);
  line-height: 1.3;
  margin-bottom: 6px;
}
.booking__sidebar p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin: 0 0 8px;
}
.booking__sidebar .info-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-quiet);
}
.booking__sidebar .info-row:last-child { border-bottom: 0; }
.booking__sidebar .info-row svg { color: var(--accent-soft); flex-shrink: 0; }
.booking__sidebar .info-row .label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.booking__sidebar .info-row .value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg-secondary);
  font-weight: 400;
  line-height: 1.3;
}
.booking__sidebar .info-row .value a { color: inherit; border-bottom-color: var(--border-default); }

/* Form success state */
.booking__form.is-success .booking__form-fields { display: none; }
.booking__form .success-msg {
  display: none;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-secondary);
  background: var(--bg-page);
  border: 1px solid var(--color-sage-300);
  border-radius: var(--radius-md);
  padding: 24px;
}
.booking__form.is-success .success-msg { display: block; }

@media (max-width: 880px) {
  .booking__panel { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
  .booking__form .row { flex-direction: column; }
}

/* =============================================================
   CONTACT
   ============================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.contact__row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-quiet);
}
.contact__row:last-child { border-bottom: 0; }
.contact__row svg {
  color: var(--accent-soft);
  flex-shrink: 0;
  margin-top: 4px;
}
.contact__row .label {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.contact__row .value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--fg-secondary);
  line-height: 1.3;
}
.contact__row .value a { color: inherit; border-bottom-color: var(--border-default); }
.contact__row .value .note {
  display: block;
  font-size: 15px;
  color: var(--fg-muted);
  margin-top: 4px;
  font-family: var(--font-body);
}
.contact__map {
  background: var(--bg-inset);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__map svg { width: 100%; height: 100%; display: block; }
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   SECTION HEADS
   ============================================================= */
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head--center { margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--fg-secondary);
}
.section-head .lede {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 560px;
}
.section-head--center .lede { margin-left: auto; margin-right: auto; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--bg-emphasis);
  color: var(--fg-on-dark-muted);
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: -100px;
  top: -200px;
  width: 480px;
  height: 480px;
  background: radial-gradient(closest-side, rgba(244, 217, 168, 0.18), transparent 70%);
}
.site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-sage-300);
  margin: 0 0 16px;
  font-weight: 500;
}
.site-footer a {
  color: var(--fg-on-dark);
  border-bottom: 0;
  opacity: 0.85;
  font-size: 15px;
}
.site-footer a:hover { opacity: 1; }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer li { font-size: 15px; }
.site-footer__brand img { height: 56px; opacity: 0.95; filter: brightness(1.15); }
.site-footer__wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--fg-on-dark);
  margin-top: 12px;
}
.site-footer__about {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-sage-200);
  max-width: 280px;
  line-height: 1.6;
  margin: 12px 0 0;
}
.site-footer__legal {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 36px;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 880px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__legal { flex-direction: column; gap: 12px; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   INDIKATIONEN — Drei Anliegen-Cards mit ✦
   ============================================================= */
.indikationen {
  background: var(--bg-page);
  padding: 80px 0;
}
.indikationen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.indikation-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-quiet);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.indikation-card__icon {
  color: var(--color-oak-500);
  font-size: 22px;
  line-height: 1;
}
.indikation-card__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.4;
  color: var(--fg-secondary);
}
.indikationen__note {
  margin: 32px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.indikationen__note strong { color: var(--fg-secondary); font-weight: 500; }
@media (max-width: 880px) {
  .indikationen__grid { grid-template-columns: 1fr; gap: 16px; }
  .indikation-card { padding: 22px; }
}

/* =============================================================
   WERDEGANG — Vertikale Timeline auf dunklem Moss-Hintergrund
   ============================================================= */
.werdegang {
  background: var(--bg-emphasis);
  color: var(--fg-on-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.werdegang::before {
  content: "";
  position: absolute;
  pointer-events: none;
  right: -120px;
  top: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(244, 217, 168, 0.18), transparent 70%);
}
.werdegang .section-head { position: relative; text-align: center; margin: 0 auto 56px; max-width: 720px; }
.werdegang .section-head .eyebrow { color: var(--color-sage-300); }
.werdegang .section-head h2 { color: var(--fg-on-dark); }
.werdegang .section-head .lede { color: var(--color-sage-200); margin-left: auto; margin-right: auto; }

.timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: rgba(166, 184, 154, 0.25);
  transform: translateX(-50%);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.timeline li:last-child { margin-bottom: 0; }
.timeline .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-sage-300);
  justify-self: center;
  box-shadow: 0 0 0 4px rgba(166, 184, 154, 0.15);
  position: relative;
  z-index: 1;
}
.timeline .item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(166, 184, 154, 0.15);
  border-radius: var(--radius-lg);
  padding: 18px 22px 16px;
}
.timeline .item .year {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-sage-200);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline .item .title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--fg-on-dark);
  line-height: 1.3;
  margin-bottom: 2px;
}
.timeline .item .meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-sage-200);
  line-height: 1.5;
}
/* Explizite Spalten-Zuordnung, damit display:none nicht das Auto-Placement bricht */
.timeline .item.left  { grid-column: 1; }
.timeline .dot         { grid-column: 2; }
.timeline .item.right { grid-column: 3; }
.timeline li:nth-child(odd)  .item.right { visibility: hidden; }
.timeline li:nth-child(even) .item.left  { visibility: hidden; }
.timeline li:nth-child(odd)  .item.left  { text-align: right; }
.timeline li:nth-child(even) .item.right { text-align: left; }

@media (max-width: 720px) {
  .timeline::before { left: 12px; }
  .timeline li {
    grid-template-columns: 24px 1fr;
    gap: 14px;
  }
  .timeline .dot { grid-column: 1; justify-self: start; margin-left: 5px; }
  .timeline .item.left,
  .timeline .item.right {
    grid-column: 2;
    visibility: visible !important;
    text-align: left;
  }
  .timeline li:nth-child(odd)  .item.right { display: none; }
  .timeline li:nth-child(even) .item.left  { display: none; }
}

/* =============================================================
   PATIENTENSTIMMEN — Testimonial-Cards
   ============================================================= */
.testimonials__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin: 0 0 40px;
  flex-wrap: wrap;
}
.testimonials__stars {
  display: inline-flex;
  gap: 3px;
  color: var(--color-oak-500);
  font-size: 18px;
}
.testimonials__rating-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg-secondary);
}
.testimonials__rating-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--accent);
  border-bottom: 1px solid var(--border-default);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-quiet);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.testimonial-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-oak-500);
  font-size: 14px;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-secondary);
  margin: 0;
  flex: 1;
}
.testimonial-card__source {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-quiet);
}
.testimonial-card__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-sage-100);
  color: var(--color-moss-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
}
.testimonial-card__attribution { display: flex; flex-direction: column; }
.testimonial-card__role {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-secondary);
  font-weight: 500;
}
.testimonial-card__platform {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent-soft);
}
.testimonials__cta {
  text-align: center;
  margin-top: 36px;
}
@media (max-width: 880px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ABLAUF — 5-Schritt-Prozess "So arbeite ich"
   ============================================================= */
.ablauf {
  background: var(--bg-page);
  padding: 96px 0;
}
.ablauf__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.ablauf__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  padding: 24px 0 36px;
}
.ablauf__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 60px;
  bottom: 0;
  width: 1.5px;
  background: var(--color-cream-300);
}
.ablauf__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--fg-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-page);
  /* Optisch zentrieren: Display-Serif sitzt baseline-betont; -1px Korrektur */
  padding-bottom: 1px;
}
.ablauf__step-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--fg-secondary);
  margin: 6px 0 8px;
  line-height: 1.3;
}
.ablauf__step-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 600px) {
  .ablauf__item { grid-template-columns: 44px 1fr; gap: 18px; }
  .ablauf__num { width: 36px; height: 36px; font-size: 17px; }
  .ablauf__item:not(:last-child)::before { left: 23px; top: 52px; }
}

/* =============================================================
   FAQ — Häufige Fragen, accordion-style
   ============================================================= */
.faq {
  padding: 96px 0;
  background: var(--bg-surface);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-quiet);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--fg-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--accent-soft);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--dur-2) var(--ease-quiet);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--border-quiet); }

.faq-item__body {
  padding: 18px 22px 22px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FAQ-Akkordeon Animation: moderne CSS via ::details-content + interpolate-size.
   Browser ohne Support (Chrome <129, Firefox alt, Safari <18.4): kein Wackler,
   nur instant-toggle. name="faq" sorgt nativ für Exklusivität (nur eines offen). */
@supports (interpolate-size: allow-keywords) {
  .faq-item {
    interpolate-size: allow-keywords;
  }
  .faq-item::details-content {
    block-size: 0;
    overflow: clip;
    opacity: 0;
    transition:
      block-size 340ms var(--ease-quiet),
      opacity 240ms var(--ease-quiet),
      content-visibility 340ms var(--ease-quiet) allow-discrete;
    transition-behavior: allow-discrete;
  }
  .faq-item[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}
.faq-item__body p { margin: 0 0 12px; }
.faq-item__body p:last-child { margin: 0; }

/* =============================================================
   MAP — OSM-Embed mit Privacy-Notice (click to load)
   ============================================================= */
.contact__map {
  background: var(--bg-inset);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.contact__map svg { width: 100%; height: 100%; display: block; }
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(245, 240, 232, 0.86);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  text-align: center;
  padding: 24px;
  font-family: var(--font-body);
  z-index: 2;
}
.map-placeholder__overlay p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 280px;
  margin: 0;
}
.map-placeholder__overlay button {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--fg-on-dark);
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur-2) var(--ease-quiet);
}
.map-placeholder__overlay button:hover { background: var(--accent-hover); }
.contact__map.is-loaded .map-placeholder__overlay { display: none; }

/* =============================================================
   DESKTOP-Font-Bump (ab 881px)
   Mobile bleibt unverändert. Texte werden ab Desktop-Breakpoint
   spürbar größer für bessere Lesbarkeit auf 1080–1400px Screens.
   ============================================================= */
@media (min-width: 881px) {
  .faq-item summary           { font-size: 22px; }
  .faq-item__body             { font-size: 17px; line-height: 1.75; }
  .faq-item__body p           { font-size: 17px; }

  .svc-card p                 { font-size: 18px; line-height: 1.65; }
  .svc-card ul                { font-size: 16px; }
  .svc-card h3                { font-size: 28px; }

  .section-head .lede         { font-size: 22px; }

  .about__cv                  { font-size: 17px; }
  .about__cv li               { padding: 16px 0; }
  .about__bio                 { font-size: 19px; line-height: 1.75; }
  .about__quote               { font-size: 22px; }

  .ablauf__step-title         { font-size: 24px; }
  .ablauf__step-body          { font-size: 17px; line-height: 1.75; }

  .testimonial-card__quote    { font-size: 19px; line-height: 1.6; }

  .booking__sidebar p         { font-size: 17px; }
  .booking__sidebar .heading  { font-size: 28px; }

  .indikation-card__text      { font-size: 20px; }
  .indikationen__note         { font-size: 16px; }

  .timeline .item .title      { font-size: 21px; }
  .timeline .item .meta       { font-size: 15px; }
}

/* =============================================================
   Reveal-on-scroll (opt-in, JS-gesteuert — Default: sichtbar)
   JS markiert Elemente initial mit .is-pending um sie zu verstecken,
   und entfernt das wieder beim Einscrollen via .is-visible.
   Ohne JS: alles sichtbar (kein Content-Verlust).
   ============================================================= */
.reveal {
  transition: opacity 420ms var(--ease-quiet), transform 420ms var(--ease-quiet);
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(8px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
  }
  .reveal, .reveal.is-pending { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
