/* ============================================
   Psychotherapie Dähnke — Stylesheet
   Typografie: Newsreader (Serif) + Inter (Sans)
   Palette: Weiß, kühles Greige, Schwarz, Gold, Wasserblau
   ============================================ */

:root {
  --white: #FFFFFF;
  --greige: #EDEAE2;
  --greige-strong: #E3DFD4;
  --black: #141414;
  --text-secondary: #55534E;
  --text-muted: #86847C;
  --border: #E2E0D8;
  --border-strong: #C9C5B8;
  --gold: #C7A552;
  --gold-dark: #A8894A;
  --blue: #7C93A8;
  --blue-dark: #5C7488;

  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
  --radius: 2px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Anker-Ziele: Platz für den fixierten Header lassen, damit Dachzeile + Überschrift sichtbar bleiben */
section[id] {
  scroll-margin-top: 112px;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ============================================
   Foto-Banner — echte Bilder, vereinheitlicht per Overlay
   ============================================ */

.photo-banner {
  position: relative;
  overflow: hidden;
}
.photo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(30%) brightness(1.08) contrast(1.02) saturate(1.15);
  z-index: 0;
}
.photo-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(237,234,226,0.62));
  z-index: 1;
}
.photo-banner > .container,
.photo-banner .hero-inner {
  position: relative;
  z-index: 2;
}

.photo-banner-ueber::before { background-image: url('banner-ueber-mich.jpg'); }
.photo-banner-kosten::before {
  background-image: url('banner-kostenuebernahme.jpg');
  filter: grayscale(40%) brightness(1.12) contrast(0.98) saturate(1.0);
}
.photo-banner-kontakt::before { background-image: url('banner-kontakt.jpg'); }

/* ============================================
   Header / Navigation
   ============================================ */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.2;
}
.logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav {
  font-size: 12.5px;
  padding: 9px 16px;
  white-space: nowrap;
}

.btn-nav-full { display: none; }
.btn-nav-short { display: inline; }
@media (min-width: 480px) {
  .btn-nav-full { display: inline; }
  .btn-nav-short { display: none; }
}

.nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { display: block; }

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  padding: 90px 32px 32px;
  transition: right 0.3s ease;
  border-left: 1px solid var(--border);
  z-index: 101;
}
.main-nav.open { right: 0; }

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}
.main-nav a.btn-primary {
  color: var(--white);
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.35);
  z-index: 99;
}
.nav-scrim.open { display: block; }

@media (min-width: 860px) {
  .nav-toggle, .nav-close, .nav-scrim { display: none; }
  .nav-mobile-only { display: none; }
  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    border-left: none;
  }
  .main-nav ul {
    flex-direction: row;
    gap: 32px;
  }
  .main-nav a { font-size: 14px; font-weight: 400; }
  .main-nav a:hover { color: var(--text-secondary); }
  .btn-nav { font-size: 13px; padding: 11px 22px; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  background:
    radial-gradient(ellipse 60% 45% at 18% 12%, rgba(120, 110, 95, 0.09), transparent 60%),
    linear-gradient(115deg, transparent 42%, rgba(120, 110, 95, 0.07) 43%, rgba(120, 110, 95, 0.07) 44%, transparent 45%),
    linear-gradient(112deg, transparent 55%, rgba(120, 110, 95, 0.05) 56%, rgba(120, 110, 95, 0.05) 57%, transparent 58%),
    var(--greige);
  padding: 64px 0;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-inner-with-photo {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.hero-text { max-width: 560px; }
.hero-image {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(14%) brightness(1.08) contrast(1.0) saturate(1.1);
}
@media (min-width: 860px) {
  .hero-inner-with-photo {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.2;
  color: var(--black);
  max-width: 15ch;
}

.signature-line {
  display: block;
  width: 130px;
  height: 18px;
  margin-top: 10px;
}
.signature-line path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw-line 1.3s ease forwards;
  animation-delay: 0.2s;
  animation-play-state: paused;
}
.signature-line circle {
  fill: var(--gold);
  opacity: 0;
  animation: fade-in-dot 0.5s ease forwards;
  animation-delay: 1.3s;
  animation-play-state: paused;
}
.signature-line.is-visible path,
.signature-line.is-visible circle {
  animation-play-state: running;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }
@keyframes fade-in-dot { to { opacity: 1; } }

.hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 46ch;
  margin-top: 20px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .signature-line path,
  .signature-line circle { animation: none; stroke-dashoffset: 0; opacity: 1; }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (min-width: 860px) {
  .hero { padding: 96px 0; min-height: 460px; }
  .hero h1 { font-size: 44px; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease, gap 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.btn-link:hover {
  text-decoration-color: var(--gold);
  gap: 8px;
}
.btn-link span {
  transition: transform 0.2s ease;
}
.btn-link:hover span {
  transform: translateX(2px);
}

/* ============================================
   Section base
   ============================================ */

section { padding: 56px 0; }

.section-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--black);
  line-height: 1.3;
}

.section-intro {
  max-width: 60ch;
  color: var(--text-secondary);
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   Willkommen
   ============================================ */

.welcome p {
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-top: 16px;
}
.welcome p:first-of-type { margin-top: 20px; }

.welcome-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.welcome-text { width: 100%; }
.welcome-image {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(14%) brightness(1.08) contrast(1.0) saturate(1.1);
}
@media (min-width: 860px) {
  .welcome-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
  .welcome-text { flex: 1.5; }
  .welcome-image {
    flex: 1;
    max-width: 260px;
    aspect-ratio: 4 / 5;
  }
}

/* ============================================
   Angebot Cards
   ============================================ */

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

@media (min-width: 720px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--greige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.offer-icon svg { width: 18px; height: 18px; }

.offer-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}

.offer-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.offer-tags {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.6;
}

.offer-link {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   Arbeitsweise / Tags
   ============================================ */

.method-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  background: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tag:hover { border-color: var(--gold); color: var(--black); }

.method-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 28px;
}
@media (min-width: 640px) {
  .method-columns { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.method-col h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}
.method-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.method-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}
.method-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

/* Verfahren-Begriffe mit Tooltip */
.term {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: help;
  position: relative;
  display: inline;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--blue);
  text-underline-offset: 3px;
  -webkit-tap-highlight-color: transparent;
}
.term:hover,
.term:focus-visible {
  color: var(--black);
}
.term::after {
  content: 'i';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 9px;
  font-style: italic;
  font-family: Georgia, serif;
  vertical-align: 1px;
  flex-shrink: 0;
}
.term-tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: min(290px, 80vw);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  text-decoration: none;
  font-style: normal;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: 0 12px 26px rgba(20, 18, 15, 0.10);
  z-index: 20;
  pointer-events: none;
}
.term:hover .term-tooltip,
.term:focus-visible .term-tooltip,
.term:focus .term-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================
   Behandlungsschwerpunkte
   ============================================ */

.focus-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.focus-text { width: 100%; }

.focus-image {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(14%) brightness(1.08) contrast(1.0) saturate(1.1);
}

@media (min-width: 860px) {
  .focus-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
  }
  .focus-text { flex: 1.5; }
  .focus-image {
    flex: 1;
    max-width: 260px;
    aspect-ratio: 4 / 5;
    margin-top: 126px;
  }
}

.focus-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
  max-width: 720px;
}

@media (min-width: 640px) {
  .focus-list { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(5, auto); grid-auto-flow: column; column-gap: 32px; }
}

.focus-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.focus-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.focus-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 56ch;
}

/* ============================================
   Formate
   ============================================ */

.bg-greige { background: var(--greige); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .format-grid { grid-template-columns: repeat(4, 1fr); }
}

.format-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.format-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(199, 165, 82, 0.14);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.format-icon svg { width: 30px; height: 30px; color: var(--gold-dark); }

.format-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}
.format-item small {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================
   Kostenübernahme Teaser
   ============================================ */

.cost-teaser-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.cost-teaser-text { width: 100%; }

.cost-teaser p {
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 16px;
}

.cost-teaser .btn-link { margin-top: 20px; display: inline-flex; }

.cost-teaser-image {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
}
.cost-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) brightness(1.12) contrast(0.98) saturate(1.0);
}

@media (min-width: 860px) {
  .cost-teaser-inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
  .cost-teaser-text { flex: 1.3; }
  .cost-teaser-image {
    flex: 1;
    max-width: 320px;
    aspect-ratio: 4 / 5;
  }
}

/* ============================================
   Kontakt / CTA
   ============================================ */

.contact-cta {
  background: var(--black);
  color: var(--white);
}
.contact-cta h2 { color: var(--white); }
.contact-cta .section-intro { color: rgba(255,255,255,0.65); }

.contact-cta .btn-primary {
  background: var(--white);
  color: var(--black);
}

.contact-cta-button {
  margin-top: 32px;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
}
.footer-brand span {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--black); }

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ============================================
   Unterseiten — schmaler Banner
   ============================================ */

.page-banner {
  background: var(--greige);
  padding: 48px 0;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.page-banner-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--black);
}
@media (min-width: 860px) {
  .page-banner { padding: 64px 0; min-height: 240px; }
  .page-banner h1 { font-size: 34px; }
}

/* Kostenübernahme: kompakterer Banner, damit die Boxen unter der Liste
   auch bei geringerer Fensterhöhe schon anlesbar sind */
.page-banner.photo-banner-kosten { padding: 36px 0; min-height: 160px; }
@media (min-width: 860px) {
  .page-banner.photo-banner-kosten { padding: 40px 0; min-height: 180px; }
}
.cost-section { padding-top: 28px; }

/* Über mich: kompakterer Banner und knapperer Bio-Abschnitt, damit die
   Timeline (Stationen) schon anlesbar ist, ohne dass man scrollen muss */
.page-banner.photo-banner-ueber { padding: 36px 0; min-height: 160px; }
@media (min-width: 860px) {
  .page-banner.photo-banner-ueber { padding: 40px 0; min-height: 180px; }
}
.bio-section { padding: 32px 0; }

/* ============================================
   Unterseiten — allgemeine Inhalte
   ============================================ */

.page-intro {
  max-width: 62ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-top: 14px;
}

.detail-block .usp {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-dark);
  background: rgba(199, 165, 82, 0.14);
  border-radius: 20px;
  padding: 5px 14px;
}

/* Angebotskarten (Therapieangebot-Seite) */
.offer-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.offer-detail-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(20, 18, 15, 0.06);
  border-color: var(--gold);
}
.offer-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.offer-detail-card h2 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
}
.offer-detail-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.offer-detail-card ul li {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.offer-detail-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}
.offer-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============================================
   Über mich — Porträt & Bio
   ============================================ */

.bio-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 720px) {
  .bio-header { flex-direction: row; align-items: flex-start; gap: 40px; }
}

.bio-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(14%) brightness(1.08) contrast(1.0) saturate(1.1);
}

.bio-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 58ch;
}
.bio-text p:first-child { margin-top: 0; }

/* Qualifikationen — kompaktes Kartenraster */
.credential-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}
@media (min-width: 640px) {
  .credential-grid { grid-template-columns: 1fr 1fr; }
}
.credential-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}
.credential-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3px;
}
.credential-card span {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Zeitstrahl — gemeinsame Mittelachse */
.dual-timeline {
  margin-top: 8px;
}

.dt-header {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-strong);
}
.dt-header-left,
.dt-header-right {
  grid-column: 2;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dt-header-right { margin-top: 4px; }

.dt-rows {
  position: relative;
}
.dt-rows::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--border-strong);
  z-index: 0;
}

.dt-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.dt-row:first-child { padding-top: 0; }
.dt-row:last-child { border-bottom: none; padding-bottom: 0; }

.dt-spine {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  justify-content: center;
  padding-top: 3px;
}
.dt-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  flex-shrink: 0;
}
.dt-row.current .dt-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.dt-left { grid-column: 2; grid-row: 1; }
.dt-right { grid-column: 2; grid-row: 2; margin-top: 10px; }
.dt-left:empty, .dt-right:empty { display: none; }

.dt-year {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.dt-left h4, .dt-right h4 {
  font-family: var(--font-serif);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}
.dt-left p, .dt-right p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.dt-left p + h4, .dt-right p + h4,
.dt-left h4 + h4, .dt-right h4 + h4 {
  margin-top: 12px;
}

@media (min-width: 760px) {
  .dt-header { grid-template-columns: 1fr 32px 1fr; column-gap: 28px; }
  .dt-header-left { grid-column: 1; text-align: right; }
  .dt-header-right { grid-column: 3; text-align: left; margin-top: 0; }

  .dt-rows::before { left: 50%; transform: translateX(-50%); }
  .dt-row {
    grid-template-columns: 1fr 32px 1fr;
    column-gap: 28px;
    border-bottom: none;
    padding: 14px 0;
  }
  .dt-spine { grid-column: 2; grid-row: 1; padding-top: 3px; }
  .dt-left { grid-column: 1; grid-row: 1; text-align: right; margin-top: 0; }
  .dt-right { grid-column: 3; grid-row: 1; text-align: left; margin-top: 0; }
}

/* ============================================
   Kostenübernahme
   ============================================ */

.cost-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .cost-list { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, auto); grid-auto-flow: column; column-gap: 48px; }
}
.cost-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 640px) {
  .cost-item:nth-child(2),
  .cost-item:nth-child(4) { border-bottom: none; }
}
.cost-item:last-child { border-bottom: none; }

.cost-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--greige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cost-icon svg { width: 18px; height: 18px; color: var(--black); }

.cost-item h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.cost-item p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.cost-item a { color: var(--black); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 3px; }

.fee-stat {
  text-align: center;
  padding: 36px 24px;
  background: var(--greige);
  border-radius: 12px;
  margin-top: 32px;
}
.fee-stat .amount {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.4;
  max-width: 32ch;
  margin: 0 auto;
}
.fee-stat .caption {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}
.fee-stat .note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Tooltip-Varianten für längere Infotexte (z. B. GOP-Details) */
.term-tooltip-wide { max-width: min(340px, 86vw); }
.term-tooltip-center {
  left: 50%;
  transform: translateX(-50%) translateY(4px);
}
.term:hover .term-tooltip-center,
.term:focus-visible .term-tooltip-center,
.term:focus .term-tooltip-center {
  transform: translateX(-50%) translateY(0);
}

/* Kostenloser Erstkontakt — hervorgehobene Box unter der Aufzählung */
.erstkontakt-box {
  text-align: center;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 32px 28px;
  border: 1.5px dashed var(--gold);
  background: rgba(199, 165, 82, 0.08);
  border-radius: 12px;
}
.erstkontakt-box h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}
.erstkontakt-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 auto 20px;
}

/* ============================================
   Kontakt
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "booking"
    "message"
    "details"
    "map";
  gap: 40px;
  margin-top: 8px;
}
.booking-box { grid-area: booking; }
.contact-message { grid-area: message; }
.contact-details { grid-area: details; }
.map-box { grid-area: map; }

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
      "booking message"
      "details message"
      "map message";
  }
}

.booking-box {
  border: 1.5px dashed var(--gold);
  background: rgba(199, 165, 82, 0.08);
  border-radius: 12px;
  padding: 24px;
}
.booking-box h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 8px;
}
.booking-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }

.booking-widget {
  max-width: 480px;
  overflow-x: auto;
  border-radius: 8px;
  background: var(--white);
}
.booking-widget iframe {
  max-width: 100%;
  display: block;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-details h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}
.contact-details p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.contact-details a { color: var(--black); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 3px; }

.map-box {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-box iframe { display: block; }

/* ============================================
   Rechtstexte (Impressum, Datenschutz)
   ============================================ */

.legal-content {
  max-width: 74ch;
  margin-top: 8px;
}
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-top: 10px;
}
.legal-content ul {
  margin-top: 10px;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.8;
}
.legal-content a { color: var(--black); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 3px; }
.legal-note {
  margin-top: 32px;
  padding: 16px 18px;
  background: var(--greige);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Impressum — Definitionsliste */
.info-grid { margin-top: 8px; }
.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-row:first-child { padding-top: 0; }
@media (min-width: 640px) {
  .info-row { flex-direction: row; gap: 24px; }
}
.info-row dt {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex: 0 0 180px;
}
.info-row dd {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.info-row dd a { color: var(--black); text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 3px; }

/* Datenschutz — Akkordeon */
.accordion { margin-top: 8px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 2px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  list-style: none;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary .chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--text-muted);
}
.accordion-item[open] summary .chev { transform: rotate(180deg); }
.accordion-item .accordion-body {
  padding: 0 2px 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 68ch;
}
.accordion-item .accordion-body p + p { margin-top: 10px; }
