/* =====================================================================
   KJP Moers – Praxis für Kinder- und Jugendpsychiatrie
   Design: "Ruhe & Vertrauen"  ·  Stil: Accessible & Ethical (WCAG)
   Farben: Ruhiges Teal + Heilgrün + warmer Apricot-Akzent
   Schriften: Figtree (Headlines) / Noto Sans (Fließtext)
   ===================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Primärfarben – ruhiges, klinisch-warmes Teal */
  --teal-900: #0c3a42;
  --teal-800: #0e4d57;
  --teal-700: #0e7490;
  --teal-600: #0891b2;
  --teal-500: #1aa6bd;
  --teal-100: #cfeef3;
  --teal-50:  #ecfbfd;

  /* Heilgrün – Wachstum, Entwicklung */
  --green-700: #047857;
  --green-600: #059669;
  --green-100: #d6f3e6;

  /* Warmer Apricot – Menschlichkeit, Kindgerechtheit */
  --warm-600: #c9743f;
  --warm-500: #e08a4f;
  --warm-300: #f3c3a0;
  --warm-100: #fbe9dc;

  /* Neutrale / Flächen */
  --ink:       #143c44;  /* Haupttext */
  --ink-soft:  #41666e;  /* Sekundärtext */
  --ink-faint: #6d8b91;
  --bg:        #f6fcfd;
  --surface:   #ffffff;
  --muted:     #ecf6f8;
  --border:    #d7e8eb;
  --border-strong: #bcdbe0;

  --danger: #b91c1c;

  /* Typografie-Skala */
  --font-head: "Figtree", "Segoe UI", system-ui, sans-serif;
  --font-body: "Noto Sans", "Segoe UI", system-ui, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 1.85rem);
  --step-3:  clamp(1.8rem, 1.55rem + 1.25vw, 2.55rem);
  --step-4:  clamp(2.2rem, 1.8rem + 2vw, 3.4rem);

  /* Abstände (8pt-Raster) */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;
  --sp-4: 2rem;    --sp-5: 3rem;   --sp-6: 4rem;
  --sp-7: 6rem;

  /* Radien & Schatten */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 32px;  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(13, 70, 80, 0.05), 0 2px 8px rgba(13, 70, 80, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 70, 80, 0.07), 0 12px 32px rgba(13, 70, 80, 0.08);
  --shadow-lg: 0 12px 32px rgba(13, 70, 80, 0.10), 0 28px 60px rgba(13, 70, 80, 0.12);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 600;
  color: var(--teal-900);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

p { color: var(--ink-soft); }
a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
img, svg { max-width: 100%; display: block; }
ul { padding-left: 1.1rem; }

/* ---------- Fokus / A11y ---------- */
:focus-visible {
  outline: 3px solid var(--teal-600);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  background: var(--teal-700); color: #fff; padding: 0.7rem 1.4rem;
  border-radius: var(--r-pill); z-index: 200; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout-Helfer ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--sp-7); }
.section--tight { padding-block: var(--sp-6); }
.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.6; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: var(--step--1); color: var(--teal-700);
  background: var(--teal-50); border: 1px solid var(--teal-100);
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
}
.eyebrow svg { width: 16px; height: 16px; }

.section-head { max-width: 60ch; margin-bottom: var(--sp-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.8rem; }
.section-head p { margin-top: 1rem; font-size: var(--step-1); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600; font-size: var(--step-0);
  padding: 0.85rem 1.5rem; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  min-height: 48px; transition: transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn--primary { background: var(--teal-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--green-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: #fff; color: var(--teal-800); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--teal-600); color: var(--teal-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.45); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.9rem; font-size: var(--step-1); min-height: 56px; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 252, 253, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px rgba(13, 70, 80, 0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--teal-900); letter-spacing: -0.01em; }
.brand__sub { font-size: 0.72rem; color: var(--ink-faint); letter-spacing: 0.03em; }

.nav__links { display: flex; align-items: center; gap: 0.25rem; list-style: none; padding: 0; margin: 0; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.98rem;
  color: var(--ink); text-decoration: none; padding: 0.55rem 0.85rem; white-space: nowrap;
  border-radius: var(--r-pill); transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav__links a:hover { background: var(--muted); color: var(--teal-700); }
.nav__links a[aria-current="page"] { color: var(--teal-700); background: var(--teal-50); }

.nav__actions { display: flex; align-items: center; gap: 0.7rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none; white-space: nowrap;
  font-family: var(--font-head); font-weight: 600; color: var(--teal-800);
  padding: 0.5rem 0.6rem; border-radius: var(--r-pill);
}
.nav__phone svg { width: 20px; height: 20px; color: var(--teal-600); }
.nav__phone:hover { color: var(--teal-600); }

.nav__toggle {
  display: none; width: 48px; height: 48px; border: 1.5px solid var(--border-strong);
  background: #fff; border-radius: var(--r-md); cursor: pointer; align-items: center; justify-content: center;
}
.nav__toggle svg { width: 26px; height: 26px; color: var(--teal-800); }

@media (max-width: 940px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__actions .btn { display: none; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0; background: var(--surface);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem 1.75rem; transform: translateY(-12px); opacity: 0;
    pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  }
  .nav__menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__menu .nav__links { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .nav__menu .nav__links a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .nav__menu .nav__mobile-cta { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }
  .nav__menu .nav__mobile-cta .btn { display: inline-flex; }
}
@media (min-width: 941px) { .nav__menu { display: contents; } .nav__mobile-cta { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: var(--sp-6) var(--sp-7); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__blob { position: absolute; filter: blur(2px); opacity: 0.55; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-5); align-items: center; }
.hero__content { max-width: 36rem; }
.hero h1 { margin-top: 1.2rem; }
.hero__lead { margin-top: 1.3rem; font-size: var(--step-1); color: var(--ink-soft); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.hero__trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: var(--step--1); color: var(--ink-soft); }
.hero__trust-item svg { width: 22px; height: 22px; color: var(--green-600); flex: none; }
.hero__trust-item strong { color: var(--teal-900); font-family: var(--font-head); display: block; font-size: 0.98rem; }

.hero__art { position: relative; }
.hero__card {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 0.9rem 1.1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.hero__card svg { width: 28px; height: 28px; flex: none; }
.hero__card-title { font-family: var(--font-head); font-weight: 600; color: var(--teal-900); font-size: 0.95rem; line-height: 1.2; }
.hero__card-sub { font-size: 0.78rem; color: var(--ink-faint); }
.hero__card--a { top: 8%; left: -4%; }
.hero__card--b { bottom: 10%; right: -2%; }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__card--a { left: 2%; }
  .hero__card--b { right: 2%; }
}

/* ---------- Trust-Strip ---------- */
.trust-strip { background: var(--teal-900); color: #fff; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding-block: var(--sp-4); }
.trust-strip__item { text-align: center; }
.trust-strip__num { font-family: var(--font-head); font-weight: 700; font-size: var(--step-2); color: #fff; }
.trust-strip__label { font-size: var(--step--1); color: var(--teal-100); margin-top: 0.2rem; }
@media (max-width: 760px) { .trust-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; } }

/* ---------- Cards / Leistungen ---------- */
.grid { display: grid; gap: var(--sp-3); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.9rem; box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md); display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 28px; height: 28px; }
.icon-teal { background: var(--teal-50); color: var(--teal-600); }
.icon-green { background: var(--green-100); color: var(--green-700); }
.icon-warm { background: var(--warm-100); color: var(--warm-600); }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: var(--step-0); }
.card__link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.1rem;
  font-family: var(--font-head); font-weight: 600; text-decoration: none; color: var(--teal-700);
}
.card__link svg { width: 18px; height: 18px; transition: transform 0.18s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- Feature / Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--sp-4); } .split--reverse .split__media { order: 0; } }
.split__media img, .split__media svg { width: 100%; border-radius: var(--r-lg); }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.feature-list svg { width: 26px; height: 26px; flex: none; color: var(--green-600); margin-top: 2px; }
.feature-list strong { font-family: var(--font-head); color: var(--teal-900); display: block; }
.feature-list span { font-size: var(--step-0); color: var(--ink-soft); }

/* Weiches Panel mit Verlauf */
.panel-soft {
  background: linear-gradient(160deg, var(--teal-50), #ffffff 60%);
  border: 1px solid var(--border); border-radius: var(--r-xl);
}
.media-frame {
  background: linear-gradient(160deg, var(--teal-100), var(--warm-100));
  border-radius: var(--r-xl); padding: 1.4rem; box-shadow: var(--shadow-md);
}
.media-frame svg { border-radius: var(--r-lg); }

/* ---------- Schritte / Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); }
.step__num {
  width: 44px; height: 44px; border-radius: var(--r-pill); background: var(--teal-600); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; display: grid; place-items: center;
  margin-bottom: 1rem;
}
.step h3 { font-size: var(--step-1); margin-bottom: 0.4rem; }
.step p { font-size: var(--step-0); }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.doctor { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.doctor:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doctor__photo { aspect-ratio: 4/3; display: grid; place-items: center; background: linear-gradient(150deg, var(--teal-100), var(--warm-100)); }
.doctor__photo svg { width: 96px; height: 96px; color: var(--teal-700); }
.doctor__body { padding: 1.6rem 1.7rem 1.9rem; }
.doctor__role { font-size: var(--step--1); color: var(--teal-700); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.doctor h3 { margin: 0.3rem 0 0.7rem; }
.doctor__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.tag { font-size: 0.8rem; background: var(--muted); color: var(--teal-800); padding: 0.32rem 0.8rem; border-radius: var(--r-pill); border: 1px solid var(--border); }

/* ---------- Sprechzeiten-Tabelle ---------- */
.hours { width: 100%; border-collapse: collapse; }
.hours caption { text-align: left; }
.hours th, .hours td { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--border); text-align: left; font-variant-numeric: tabular-nums; }
.hours th { font-family: var(--font-head); color: var(--teal-900); font-weight: 600; width: 8.5rem; }
.hours td { color: var(--ink-soft); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours .closed { color: var(--ink-faint); }

/* ---------- Kontakt-Karten / Info ---------- */
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.7rem; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.7rem 0; }
.info-row + .info-row { border-top: 1px solid var(--border); }
.info-row svg { width: 24px; height: 24px; color: var(--teal-600); flex: none; margin-top: 2px; }
.info-row a { color: var(--ink); text-decoration: none; font-weight: 500; }
.info-row a:hover { color: var(--teal-700); }
.info-row span.lbl { display: block; font-size: 0.8rem; color: var(--ink-faint); }

/* ---------- Formular ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-head); font-weight: 600; color: var(--teal-900); font-size: 0.95rem; }
.field .req { color: var(--danger); }
.field .hint { font-size: 0.8rem; color: var(--ink-faint); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: var(--step-0); color: var(--ink);
  padding: 0.8rem 0.95rem; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  background: #fff; min-height: 48px; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 4px rgba(8,145,178,0.14);
}
.checkbox { display: flex; gap: 0.7rem; align-items: flex-start; }
.checkbox input { width: 22px; height: 22px; min-height: auto; accent-color: var(--teal-600); margin-top: 2px; flex: none; }
.checkbox label { font-weight: 400; font-family: var(--font-body); color: var(--ink-soft); font-size: 0.92rem; }
.form-status { margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: var(--r-sm); display: none; font-size: 0.95rem; }
.form-status.ok { display: block; background: var(--green-100); color: var(--green-700); border: 1px solid #aee5cc; }
.form-status.err { display: block; background: #fde8e8; color: var(--danger); border: 1px solid #f5c2c2; }

/* ---------- FAQ / Accordion ---------- */
.faq { display: grid; gap: 0.8rem; max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s var(--ease); }
.faq__item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq__q {
  font-family: var(--font-head); font-weight: 600; font-size: var(--step-1); color: var(--teal-900);
  padding: 1.2rem 1.4rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q svg { width: 24px; height: 24px; color: var(--teal-600); flex: none; transition: transform 0.25s var(--ease); }
.faq__item[open] .faq__q svg { transform: rotate(45deg); }
.faq__a { padding: 0 1.4rem 1.3rem; }
.faq__a p { font-size: var(--step-0); }

/* ---------- CTA-Band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); background: linear-gradient(135deg, var(--teal-700), var(--teal-900)); color: #fff; padding: clamp(2.5rem, 5vw, 4.5rem); text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--teal-100); font-size: var(--step-1); max-width: 50ch; margin: 1rem auto 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 2rem; }
.cta-band__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.25; }

/* ---------- Hinweis-Box ---------- */
.note {
  background: var(--warm-100); border: 1px solid var(--warm-300); border-left: 4px solid var(--warm-500);
  border-radius: var(--r-md); padding: 1.1rem 1.3rem; display: flex; gap: 0.8rem; align-items: flex-start;
}
.note svg { width: 24px; height: 24px; color: var(--warm-600); flex: none; margin-top: 2px; }
.note p { color: var(--ink); font-size: var(--step-0); margin: 0; }
.note strong { color: var(--teal-900); }

/* Akzent-Box neutral (Notfall etc.) */
.note--teal { background: var(--teal-50); border-color: var(--teal-100); border-left-color: var(--teal-600); }
.note--teal svg { color: var(--teal-600); }

/* ---------- Page Hero (Unterseiten) ---------- */
.page-hero { background: linear-gradient(170deg, var(--teal-50), var(--bg)); padding-block: var(--sp-6) var(--sp-5); border-bottom: 1px solid var(--border); }
.breadcrumb { font-size: var(--step--1); color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--teal-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { max-width: 20ch; }
.page-hero p { margin-top: 1.1rem; max-width: 60ch; font-size: var(--step-1); }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-900); color: #cfe7ec; padding-block: var(--sp-6) var(--sp-4); margin-top: var(--sp-6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--sp-4); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: var(--teal-100); }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-head); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.site-footer a { color: #cfe7ec; text-decoration: none; transition: color 0.15s var(--ease); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-500); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: var(--sp-4); padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: var(--step--1); color: var(--teal-100); }
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .doctor:hover { transform: none; }
}

/* ---------- Map / Iframe ---------- */
.map-frame { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Prose (Impressum/Datenschutz) ---------- */
.prose { max-width: 75ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; margin-bottom: 0.8rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; margin-bottom: 0.5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p { margin-bottom: 1rem; }
.prose ul { display: grid; gap: 0.4rem; margin-bottom: 1rem; }
.prose a { color: var(--teal-700); }
.prose strong { color: var(--teal-900); }
