/* =========================================================
   Praxis Tanja Fischer — Heilpraktikerin für Psychotherapie
   Stylesheet · Dunkelgrün / Salbei / viel Weißraum
   ========================================================= */

/* ---------- 1. Design-Tokens ---------- */
:root {
  /* Farben */
  --forest-deep: #14281f;
  --forest:      #1e3b31;
  --forest-700:  #2c5344;
  --sage:        #7e9a8b;
  --sage-300:    #c7d7cd;
  --sage-100:    #e6eee9;
  --sand:        #f3f0e9;
  --paper:       #fcfbf8;
  --white:       #ffffff;
  --ink:         #1b2a24;
  --ink-soft:    #56665e;
  --line:        rgba(30, 59, 49, 0.14);

  /* Typografie */
  --font-head: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --font-body: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --wrap: 1440px;
  --wrap-narrow: 920px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 18px 50px -30px rgba(20, 40, 31, 0.45);
  --header-h: 84px;
}

/* ---------- 2. Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.35rem; max-width: 70ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest-deep); }

:focus-visible {
  outline: 2px solid var(--forest-700);
  outline-offset: 3px;
  border-radius: 2px;
}

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

/* ---------- 3. Layout-Helfer ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--sand { background: var(--sand); }
.section--mint { background: var(--sage-100); }

.section--dark {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.86);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark a { color: var(--sage-300); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 0.85rem 1.4rem;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* ---------- 4. Kleinteile ---------- */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.section--dark .eyebrow { color: var(--sage-300); }

.lead {
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section--dark .lead { color: rgba(255, 255, 255, 0.82); }

.rule {
  width: 56px;
  height: 1px;
  background: var(--sage);
  border: 0;
  margin: 0 0 2rem;
}

.muted { color: var(--ink-soft); }
.small { font-size: 0.925rem; line-height: 1.7; }
.center { text-align: center; }
.center .lead, .center p { margin-inline: auto; }
.center .rule { margin-inline: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.btn:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost { background: transparent; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--white); }

.btn--light { background: var(--white); border-color: var(--white); color: var(--forest-deep); }
.btn--light:hover { background: var(--sage-100); border-color: var(--sage-100); color: var(--forest-deep); }

.btn--outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* Buttons behalten ihre Farbe auch innerhalb dunkler Abschnitte
   (sonst greift die allgemeine Linkfarbe von .section--dark a). */
.section--dark .btn--light,
.section--dark .btn--light:hover { color: var(--forest-deep); }
.section--dark .btn--outline-light,
.section--dark .btn--outline-light:hover { color: var(--white); }
.section--dark .btn:not(.btn--light):not(.btn--outline-light) { color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.25rem;
}
.center .btn-row,
.btn-row.center { justify-content: center; }

/* Textlink mit Pfeil */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--forest-700);
  border-bottom: 1px solid var(--sage-300);
  padding-bottom: 3px;
  transition: gap 0.25s ease, border-color 0.25s ease;
}
.link-arrow::after { content: "→"; transition: transform 0.25s ease; }
.link-arrow:hover { border-color: var(--forest); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- 5. Header & Navigation ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -28px rgba(20, 40, 31, 0.6);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { text-decoration: none; display: block; line-height: 1.2; }
.brand__name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--forest-deep);
  display: block;
}
.brand__role {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.25rem;
}

/* Marke als Logo statt Schriftzug – derzeit nicht im Einsatz.
   Zum Aktivieren im <header> die Klasse "brand brand--logo" setzen und den
   Schriftzug durch <img src="fotos/logo-quer.webp"> ersetzen. Braucht dann
   eine höhere Kopfzeile (--header-h). */
.brand--logo { display: block; }
.brand--logo img {
  height: 92px;
  width: auto;
  mix-blend-mode: multiply;
}
@media (max-width: 620px) { .brand--logo img { height: 58px; } }

/* Transparente Kopfzeile: oben ohne eigene Fläche, beim Scrollen
   blendet ein heller Grund ein, damit der Text darunter lesbar bleibt. */
.header--clear { background: transparent; backdrop-filter: none; }
.header--clear.is-scrolled {
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: var(--line);
}
@media (max-width: 940px) { .header--clear .nav { background: var(--paper); } }

/* ---------- Header-Farbvarianten ----------
   Eingebaut ist header--dark header--forest. Zum Wechseln genügt es, die
   Klassen am <header> zu tauschen (helle Varianten ohne header--dark). */
.header--sand     { background: rgba(237, 231, 220, 0.95); border-bottom-color: rgba(30, 59, 49, 0.10); }
.header--stone    { background: rgba(233, 232, 227, 0.94); }
.header--forest   { background: rgba(20, 40, 31, 0.96); }
.header--graphite { background: rgba(42, 46, 44, 0.96); }

/* Gemeinsame Anpassungen für die dunklen Varianten */
.header--dark .brand__name { color: var(--white); }
.header--dark .brand__role { color: var(--sage-300); }
.header--dark .nav__link { color: rgba(255, 255, 255, 0.74); }
.header--dark .nav__link:hover { color: var(--white); border-bottom-color: var(--sage); }
.header--dark .nav__link[aria-current="page"] { color: var(--white); border-bottom-color: var(--white); }
.header--dark .nav__cta { background: var(--white); border-color: var(--white); color: var(--forest-deep); }
.header--dark .nav__cta:hover { background: var(--sage-100); border-color: var(--sage-100); color: var(--forest-deep); }
.header--dark .nav-toggle { border-color: rgba(255, 255, 255, 0.35); }
.header--dark .nav-toggle span,
.header--dark .nav-toggle span::before,
.header--dark .nav-toggle span::after { background: var(--white); }
.header--dark .nav-toggle[aria-expanded="true"] span { background: transparent; }
.header--dark.is-scrolled { border-bottom-color: rgba(255, 255, 255, 0.16); }

@media (max-width: 940px) {
  .header--forest .nav { background: var(--forest-deep); border-bottom-color: rgba(255,255,255,.16); }
  .header--graphite .nav { background: #2a2e2c; border-bottom-color: rgba(255,255,255,.16); }
  .header--dark .nav__list li { border-bottom-color: rgba(255, 255, 255, 0.16); }
  .header--sand .nav { background: #ede7dc; }
  .header--stone .nav { background: #e9e8e3; }
}

.nav { display: flex; align-items: center; gap: 2rem; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 0.925rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--forest-deep); border-bottom-color: var(--sage); }
.nav__link[aria-current="page"] { color: var(--forest-deep); border-bottom-color: var(--forest); }

.nav__cta { padding: 0.7rem 1.4rem; font-size: 0.875rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--forest-deep);
  transform: translateX(-50%);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle span { top: 50%; margin-top: -0.75px; }
.nav-toggle span::before { top: -6px; left: 0; transform: none; }
.nav-toggle span::after  { top:  6px; left: 0; transform: none; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 2.25rem;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    border-bottom: 0;
  }
  .nav__link[aria-current="page"] { border-bottom: 0; }
  .nav__cta { margin-top: 1.75rem; align-self: flex-start; }
}

/* ---------- 6. Hero ---------- */
.hero { padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3.5rem, 8vw, 7rem); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
/* Das Bild darf nicht die halbe Seite einnehmen, sonst kippt die Balance. */
.hero__media { max-width: 520px; margin-left: auto; width: 100%; }
.hero__title { margin-bottom: 1.5rem; }
.hero__title em {
  font-style: italic;
  color: var(--forest-700);
}
.hero__meta {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2.25rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__meta span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  flex: none;
}

/* Seitenkopf der Unterseiten */
.pagehead { padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3.5rem); }
.pagehead h1 { max-width: 18ch; }

/* ---------- 7. Bild-Platzhalter ---------- */
/*  Zum Austauschen: Kommentar im HTML entfernen, <img> einsetzen,
    das <span class="ph__label"> löschen.                          */
.ph {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--sage-100) 0%, var(--sage-300) 60%, #b6c9bd 100%);
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
}
/* absolut positioniert, damit das Bild exakt den Seitenverhältnis-Rahmen
   füllt und nicht seine eigene Höhe durchdrückt */
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--wide { aspect-ratio: 16 / 10; }
.ph--square { aspect-ratio: 1 / 1; }
/* füllt die volle Höhe der Textspalte daneben */
.ph--fill { aspect-ratio: auto; height: 100%; min-height: 440px; }

.ph__label {
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(30, 59, 49, 0.35);
  border-radius: 6px;
  display: grid;
  place-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--forest);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.ph__label small {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(30, 59, 49, 0.7);
}

/* Bild mit versetztem Rahmen */
.framed { position: relative; }
/* Begrenzt die Anzeigegröße – für Bilder mit geringer Auflösung
   (aktuell das Porträt mit 382 × 450 px). */
.framed--narrow { max-width: 380px; }
.framed::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--sage);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ---------- 8. Raster & Karten ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split--text-right > *:first-child { order: -1; }
/* schmalere Bildspalte – für Bilder, die nicht beliebig groß werden dürfen */
.split--portrait { grid-template-columns: minmax(320px, 540px) 1fr; align-items: start; }
/* Aussage links, Vertiefung rechts – beide Spalten oben bündig */
.split--top { align-items: start; }
/* Zwei Spalten, deren Zeilen aneinander gekoppelt sind: Kennzeichnung,
   Überschrift und Liste stehen links wie rechts auf gleicher Höhe – auch
   wenn eine Überschrift zweizeilig umbricht. Jede Spalte braucht dafür
   genau drei Kinder (eyebrow, h2, Block aus Trennstrich und Liste). */
.split--aligned { align-items: start; row-gap: 0; }
@supports (grid-template-rows: subgrid) {
  .split--aligned { grid-template-rows: auto auto auto; }
  .split--aligned > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    align-content: start;
  }
}

/* Text links, schmales Bild rechts, das über die volle Texthöhe läuft */
.split--media-right {
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: stretch;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card p { font-size: 0.975rem; color: var(--ink-soft); }
.card__num {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--sage);
  display: block;
  margin-bottom: 1rem;
}

/* Kurzblöcke mit Zwischenüberschrift (statt langer Aufzählungen) */
.fact { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.fact h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.55rem;
}
.fact p { color: var(--ink-soft); font-size: 1rem; margin: 0; max-width: 46ch; }

/* Kundenstimmen — weiße Karten auf getöntem Grund, mittig gesetzt */
.stimme {
  margin: 0;
  background: var(--white);
  border-radius: 18px;
  padding: clamp(1.75rem, 2.6vw, 2.4rem);
  box-shadow: 0 18px 40px -32px rgba(20, 40, 31, 0.55);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stimme__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.stimme__score strong { font-weight: 600; color: var(--ink); }
.stimme__g { width: 18px; height: 18px; flex: none; }
.sterne { color: #f4b400; letter-spacing: 0.08em; font-size: 1.02rem; line-height: 1; }

.stimme blockquote {
  margin: 0 0 1.6rem;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--ink-soft);
  flex: 1;
  max-width: none;
}
.stimme blockquote::before { content: "„"; }
.stimme blockquote::after  { content: "“"; }

.stimme figcaption {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.stimme figcaption strong { font-weight: 500; color: var(--forest-700); }

/* Karten nicht über die volle Seitenbreite auseinanderziehen */
.stimmen__raster { max-width: 1240px; margin-inline: auto; }

/* WhatsApp-Knopf, dauerhaft unten rechts – runder Symbolknopf */
.wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 150;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.wa:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.wa svg { width: 30px; height: 30px; fill: currentColor; }

/* Solange das Einwilligungs-Banner steht, würde der Knopf darunter verschwinden */
body.banner-offen .wa { opacity: 0; pointer-events: none; }

@media (max-width: 620px) { .wa { right: 18px; bottom: 18px; width: 54px; height: 54px; } }
@media print { .wa { display: none !important; } }

/* Themenliste */
.tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.tags li {
  border: 1px solid var(--sage-300);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  font-size: 0.925rem;
}
.section--dark .tags li {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: inherit;
}

/* Aufzählung mit Häkchen */
.check { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.check li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.85rem;
  max-width: 62ch;
}
.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: var(--sage-100);
}
.section--dark .check li::before { background: transparent; border-color: var(--sage-300); }

/* Ablauf-Schritte */
.steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--sage);
  line-height: 1.2;
}
.steps h3 { margin-bottom: 0.5rem; }
.steps .step__meta {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
}
.steps p { color: var(--ink-soft); font-size: 0.975rem; }

/* Honorar */
.price-list { list-style: none; margin: 0 0 2rem; padding: 0; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list li:first-child { border-top: 1px solid var(--line); }
.price-list .price__name { font-weight: 500; }
.price-list .price__name small {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.price-list .price__value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--forest);
  white-space: nowrap;
}

.note {
  background: var(--sage-100);
  border-left: 2px solid var(--sage);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.note strong { color: var(--forest-deep); }

/* Persönlicher Gruß am Ende eines Textabschnitts */
.signature { margin-top: 2.25rem; color: var(--ink-soft); }
.signature span {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--forest-deep);
  margin-top: 0.35rem;
}

/* Leitsatz als eigenständiger, ruhiger Abschnitt */
.statement { text-align: center; }
.statement blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.35;
  color: var(--forest-deep);
  max-width: 26ch;
  margin: 0 auto;
  text-wrap: balance;
}
.statement cite {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 1.75rem;
}

/* Zitat */
.quote {
  margin: 0 0 1.75rem;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.45;
  color: var(--forest-deep);
  max-width: 22ch;
}
.section--dark .quote { color: var(--white); }

/* ---------- 9. Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { border-top: 1px solid var(--line); }
.contact-list dt,
.contact-list .c-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
  display: block;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Einwilligungs-Banner */
.einwilligung {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -18px 40px -34px rgba(20, 40, 31, 0.6);
  padding: clamp(1.1rem, 2.5vw, 1.6rem) 0;
}
.einwilligung__inhalt {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.einwilligung__text {
  margin: 0;
  max-width: 78ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.einwilligung__knoepfe { display: flex; gap: 0.75rem; flex: none; }
.einwilligung__knoepfe .btn { padding: 0.75rem 1.6rem; font-size: 0.9rem; white-space: nowrap; }

@media (max-width: 620px) {
  .einwilligung__knoepfe { width: 100%; }
  .einwilligung__knoepfe .btn { flex: 1; }
}

/* Karte — lädt nach Einwilligung, vorher Platzhalter */
.karte {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, var(--sage-100) 0%, var(--sage-300) 100%);
  border: 1px solid var(--line);
}
.karte iframe { width: 100%; height: 100%; border: 0; display: block; }

.karte__platzhalter {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.1rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.karte__text {
  margin: 0;
  max-width: 42ch;
  font-size: 0.95rem;
  color: var(--forest-deep);
}
.karte__knopf { background: var(--white); }
.karte__knopf:hover { background: var(--forest); color: var(--white); }
.karte__hinweis { margin: 0; color: var(--ink-soft); }

@media (max-width: 620px) { .karte { aspect-ratio: 4 / 3; } }

.form { display: grid; gap: 1.35rem; max-width: 620px; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.875rem; font-weight: 500; color: var(--forest-deep); }
.field .hint { font-size: 0.8rem; color: var(--ink-soft); }

.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 0.975rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px var(--sage-100);
}
.field textarea { min-height: 160px; resize: vertical; }

.field--check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.field--check input { width: 18px; height: 18px; margin-top: 0.3rem; accent-color: var(--forest); }
.field--check label { font-weight: 400; font-size: 0.875rem; color: var(--ink-soft); line-height: 1.6; }

.form-status {
  font-size: 0.9rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: var(--sage-100);
  color: var(--forest-deep);
}
.form-status--fehler { background: #fdeceb; color: #8a2b22; }
.form-status[hidden] { display: none; }

.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ---------- 10. Footer ---------- */
.footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(3.5rem, 6vw, 5rem) 2rem;
  font-size: 0.925rem;
}
.footer h2, .footer h3 { color: var(--white); }
.footer a { color: rgba(255, 255, 255, 0.72); text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer__brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}

/* Logo auf hellem Feld – die Logodatei hat einen weißen Hintergrund
   und würde sonst als Kasten im dunklen Footer stehen. */
.footer__logo {
  display: inline-block;
  background: var(--paper);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 1.25rem;
}
.footer__logo img { display: block; height: 72px; width: auto; }
.footer__logo:hover { background: var(--white); }
.footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-300);
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }

/* ---------- 11. Rechtstexte ---------- */
.legal h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin-top: 3rem; }
.legal h3 { font-size: 1.05rem; margin-top: 2rem; }
.legal ul { padding-left: 1.2rem; max-width: 68ch; }
.legal li { margin-bottom: 0.5rem; }
.legal address { font-style: normal; margin-bottom: 1.5rem; line-height: 1.8; }

/* ---------- 12. Animation ---------- */
/* Nur ausblenden, wenn JavaScript aktiv ist – sonst bleibt alles sichtbar. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ---------- 13. Responsive ---------- */
@media (max-width: 900px) {
  .hero__grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .hero__grid > .hero__media { max-width: 460px; margin: 1rem 0 0; }
  .split--text-right > *:first-child { order: 0; }
  .split--portrait,
  .split--media-right { grid-template-columns: 1fr; }
  /* einspaltig braucht es keine gekoppelten Zeilen mehr –
     dafür wieder Abstand zwischen den gestapelten Blöcken */
  .split--aligned { grid-template-rows: none; row-gap: clamp(2.5rem, 6vw, 5rem); }
  .split--aligned > * { display: block; }
  .ph--fill { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .framed::before { inset: 16px -16px -16px 16px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 72px; }
  .grid--2,
  .grid--3 { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 1fr; gap: 0.5rem; }
  .steps li::before { font-size: 1.1rem; }
  .price-list li { flex-direction: column; gap: 0.35rem; }
  .framed::before { display: none; }   /* versetzter Rahmen nur ab Tablet */
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .nav__cta { width: auto; }
}

/* ---------- 14. Druck ---------- */
@media print {
  .header, .footer, .btn-row, .nav-toggle { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .section { padding-block: 1rem; }
}
