@import url("fonts.css"); /* lokale Webfonts – kein Google-CDN (DSGVO) */

/* ═══════════════════════════════════════════════════════════════════
   BAUMBESTATTUNG — Base Stylesheet
   Warm-editoriale Palette, Waldgrün als Akzent.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ─── Farben ─── */
  --paper:        #f8f4ef;
  --warm:         #f0ebe4;
  --warm-2:       #e5ddd4;
  --ink:          #1e1610;
  --ink-2:        #3a2a1e;
  --muted:        #7a6a58;
  --line:         rgba(30,22,16,.11);
  --line-2:       rgba(30,22,16,.06);

  --accent:       #4a6741;   /* Waldgrün */
  --accent-deep:  #26361f;
  --accent-soft:  #7d9a72;
  --accent-wash:  #eef1ea;

  --gold:         #8a6f3a;   /* Preise / Hinweise */
  --gold-light:   #f6f1e6;

  --white:        #ffffff;

  /* ─── Farben der vier Wege ───
     Drei dunkle Flächen mit weißer Schrift, eine helle als Gegenpol.
     Dieselbe Farbe kennzeichnet einen Weg überall auf der Seite: im
     Karussell des Headers und in den Nachteil-Blöcken. */
  --weg-1:        #26361f;   /* Waldgrün tief   · Baumgrab im Wald */
  --weg-2:        #4a6741;   /* Moosgrün        · BaumFrieden */
  --weg-3:        #c9d6bd;   /* Blattgrün hell  · Evertree */
  --weg-4:        #8a6f3a;   /* Rinde, Ocker    · Naturbestattung im Ausland */

  /* ─── Typografie ─── */
  --font-body:    "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Geist", -apple-system, sans-serif;
  --font-accent:  "Instrument Serif", Georgia, serif;
  --font-mono:    "Geist Mono", ui-monospace, SFMono-Regular, monospace;

  /* ─── Maße ─── */
  --wrap:         1180px;
  --wrap-narrow:  820px;
  --radius:       14px;
  --radius-lg:    22px;
  --nav-h:        84px;

  /* ─── Easing ─── */
  --ease-spring:  cubic-bezier(.2,.8,.2,1);
  --ease-out:     cubic-bezier(.2,.7,.2,1);
}

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

html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: #fff; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ═══ Layout-Helfer ═══ */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 24px; }

section { scroll-margin-top: calc(var(--nav-h) + 12px); }

.section { padding: 118px 0; }
.section-tight { padding: 84px 0; }
.section-warm { background: var(--warm); }
.section-paper { background: var(--paper); }
.section-dark { background: var(--accent-deep); color: var(--paper); }
.section-dark .lead, .section-dark p { color: rgba(248,244,239,.78); }

/* ═══ Typografie ═══ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}
.section-dark .eyebrow { color: var(--accent-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.12;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.4vw, 74px); line-height: 1.04; }
h2 { font-size: clamp(30px, 3.6vw, 50px); }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.22; }
h4 { font-size: 17px; font-weight: 500; line-height: 1.35; letter-spacing: -.01em; }

h1 em, h2 em, h3 em, .serif {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.005em;
}

.lead {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}
p { max-width: 72ch; }
p + p { margin-top: 1em; }
strong { font-weight: 600; }

.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head .lead { margin-top: 20px; }

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  min-height: 52px;
  transition: background .3s var(--ease-out), color .3s var(--ease-out),
              transform .3s var(--ease-out), box-shadow .3s var(--ease-out), opacity .3s;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(38,54,31,.22); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(38,54,31,.28); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background: var(--white); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.34); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-light:hover { background: rgba(255,255,255,.24); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .38; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ═══ Navigation — 3 Zustände (Glass / scrolled / Fallback) ═══ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(30,22,16,.34);
  backdrop-filter: blur(12px) saturate(155%);
  -webkit-backdrop-filter: blur(12px) saturate(155%);
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out),
              height .3s var(--ease-out), border-color .35s var(--ease-out);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 19px; font-weight: 300; letter-spacing: -.01em;
  color: #fff; white-space: nowrap;
  transition: color .35s var(--ease-out);
}
.nav-logo em { font-family: var(--font-accent); font-style: italic; }
/* Die Marke erbt die Textfarbe, deshalb stimmt sie in jedem Nav-Zustand. */
.nav-logo .marke { width: 27px; height: 27px; flex-shrink: 0; }
.nav.scrolled .nav-logo .marke { width: 24px; height: 24px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; font-weight: 400; color: rgba(255,255,255,.86);
  position: relative; padding: 6px 0;
  transition: color .3s var(--ease-out), opacity .3s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }

.nav-cta {
  padding: 11px 22px; min-height: 44px;
  font-size: 14px; border-radius: 999px;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.36);
  display: inline-flex; align-items: center;
  transition: background .3s, color .3s, border-color .3s;
}
.nav-cta:hover { background: #fff; color: var(--accent-deep); border-color: #fff; }

/* Zustand 2: gescrollt — deckend */
.nav.scrolled {
  height: 66px;
  background: rgba(248,244,239,.97);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(30,22,16,.08);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.nav.scrolled .nav-logo { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--accent); }
.nav.scrolled .nav-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
.nav.scrolled .nav-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.nav.scrolled .nav-burger span { background: var(--ink); }

/* Zustand 3: kein backdrop-filter */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(30,22,16,.88); }
  .nav.scrolled { background: var(--paper); }
  .btn-light { background: rgba(255,255,255,.24); }
}

/* Burger */
.nav-burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  border-radius: 10px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease-spring), opacity .25s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile-Menü — deckende Vollfläche */
.nav-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: calc(var(--nav-h) + 16px) 28px 40px;
  gap: 2px;
  /* Scrollbar statt zentriert: bei acht Einträgen und niedrigem Viewport
     schöbe justify-content:center die ersten Links aus dem Bild. */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility .3s;
}
.nav-mobile.open { opacity: 1; visibility: visible; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 300; color: var(--ink);
  padding: 11px 0; border-bottom: 1px solid var(--line-2);
  min-height: 48px; display: flex; align-items: center;
  flex-shrink: 0;
}
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile .btn { margin-top: 20px; flex-shrink: 0; }
body.menu-open { overflow: hidden; }

/* ═══ Hero-Eyebrow ═══
   Der große Foto-Hero der Startseite ist dem hellen Wege-Header gewichen
   (assets/css/startseite.css). Übrig bleibt das Eyebrow-Label, das die
   404-Seite weiterverwendet. */
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 22px; display: block;
}

/* ═══ Karten-Raster ═══ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 20px 46px rgba(30,22,16,.07);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 58px rgba(30,22,16,.11); }
.card-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: var(--accent-soft); margin-bottom: 16px;
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--muted); flex: 1; }
.card-price {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-2);
  font-family: var(--font-display); font-size: 22px; font-weight: 400; color: var(--accent);
}
.card-price small {
  display: block; font-family: var(--font-body); font-size: 12px;
  color: var(--muted); font-weight: 400; margin-top: 3px; letter-spacing: 0;
}
.card-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--accent-wash); color: var(--accent-deep);
  margin-bottom: 14px;
}

/* ═══ Karte mit Bildband ═══
   Variante der Standardkarte: ein Foto oben, darunter der gewohnte Inhalt.
   Nur dort verwenden, wo das Bild etwas zeigt, das der Text nicht sagt. */
.card-foto { padding: 0; overflow: hidden; }
.card-foto > .card-media {
  display: block; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--warm-2); flex-shrink: 0;
}
.card-foto > .card-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.92);
  transition: transform .7s var(--ease-out);
}
.card-foto:hover > .card-media img { transform: scale(1.05); }
.card-foto > .card-inhalt {
  padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1;
}

/* ═══ Sektion mit Hintergrundfoto ═══
   Dieselbe Technik wie im Header: Das Foto liegt ruhig darunter, ein
   Verlauf hebt die Textfläche an. Sparsam einsetzen, sonst verliert es
   seine Wirkung und der Text seine Ruhe. */
.section-foto { position: relative; overflow: hidden; }
.section-foto > .wrap { position: relative; z-index: 1; }
.section-foto-bg { position: absolute; inset: 0; z-index: 0; }
.section-foto-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .62; filter: saturate(.76); }
/* Zwei Verläufe übereinander: der senkrechte blendet oben und unten in die
   Nachbarsektion aus, der waagerechte hält die linke Hälfte hell, weil dort
   der Sektionskopf steht. Rechts bleibt das Foto sichtbar. */
.section-foto-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      var(--paper) 0%, rgba(248,244,239,.42) 13%,
      rgba(248,244,239,.42) 87%, var(--paper) 100%),
    linear-gradient(96deg,
      rgba(248,244,239,.92) 0%, rgba(248,244,239,.8) 34%,
      rgba(248,244,239,.34) 70%, rgba(248,244,239,.28) 100%);
}
.section-warm.section-foto .section-foto-bg::after {
  background:
    linear-gradient(180deg,
      var(--warm) 0%, rgba(240,235,228,.44) 13%,
      rgba(240,235,228,.44) 87%, var(--warm) 100%),
    linear-gradient(96deg,
      rgba(240,235,228,.93) 0%, rgba(240,235,228,.82) 34%,
      rgba(240,235,228,.36) 70%, rgba(240,235,228,.3) 100%);
}

/* ═══ Zitatband ═══
   Ein ganzflächiges Foto mit einem einzigen Satz. Trennt die Seite in
   zwei Hälften und gibt dem Lesen eine Pause. */
.zitat-band { position: relative; overflow: hidden; color: #fff; padding: 128px 0; }
.zitat-band .bg { position: absolute; inset: 0; z-index: 0; }
.zitat-band .bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.zitat-band .bg::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 130% 100% at 50% 50%, rgba(20,26,16,.56), rgba(12,16,10,.88));
}
.zitat-band .wrap-narrow { position: relative; z-index: 1; text-align: center; }
.zitat-band .zitat-label {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  /* Nicht Akzentgrün: auf dem warmen Foto läge Grün auf Gold und würde matt. */
  color: rgba(255,255,255,.74); margin-bottom: 24px;
}
.zitat-band p {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(24px, 3.2vw, 40px); line-height: 1.22; letter-spacing: -.02em;
  color: #fff; margin: 0 auto; max-width: 20ch; text-wrap: balance;
}
.zitat-band p em { font-family: var(--font-accent); font-style: italic; color: #dfe7d6; }
.zitat-band .zitat-quelle {
  margin: 28px auto 0; font-family: var(--font-body); font-size: 15px;
  line-height: 1.6; color: rgba(255,255,255,.76); max-width: 54ch;
}

@media (max-width: 860px) {
  .zitat-band { padding: 82px 0; }
  .card-foto > .card-inhalt { padding: 22px 22px 24px; }
}

/* ═══ Vergleichstabelle ═══ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--line-2); background: var(--white); }
table.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: 14.5px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.compare thead th {
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  background: var(--warm); color: var(--ink); white-space: nowrap;
  position: sticky; top: 0;
}
table.compare tbody th { font-weight: 500; color: var(--ink-2); white-space: nowrap; }
table.compare td { color: var(--muted); }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: 0; }
table.compare .yes { color: var(--accent); font-weight: 500; }
table.compare .no { color: #a3705f; }
table.compare .price { color: var(--gold); font-weight: 500; white-space: nowrap; }

/* ═══ Ehrlichkeits-/Nachteile-Blöcke ═══ */
.honest {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--honest-farbe, var(--gold));
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 28px;
}
/* Die Farbe verbindet den Block mit derselben Karte im Header.
   Sie ersetzt die Emoji, die vorher vor den Überschriften standen. */
.honest-1 { --honest-farbe: var(--weg-1); }
.honest-2 { --honest-farbe: var(--weg-2); }
/* Nicht das helle Blattgrün der Karte: Als 3 px Linie auf Weiß wäre es
   kaum zu sehen. Der kräftigere Ton derselben Familie tut es. */
.honest-3 { --honest-farbe: var(--accent-soft); }
.honest-4 { --honest-farbe: var(--weg-4); }
.honest h4 {
  display: flex; align-items: center; gap: 11px;
  margin-bottom: 14px; color: var(--ink);
}
.honest h4::before {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--honest-farbe, var(--gold)); flex-shrink: 0;
}
.honest ul { display: grid; gap: 9px; }
.honest li {
  font-size: 14.5px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.6;
}
.honest li::before {
  content: '·'; position: absolute; left: 0; top: 0; color: var(--gold);
}

/* ═══ Schritte / Ablauf ═══ */
.steps { display: grid; gap: 2px; background: var(--line-2); border-radius: var(--radius-lg); overflow: hidden; }
.step-row {
  background: var(--paper);
  padding: 30px 30px;
  display: grid; grid-template-columns: 68px 1fr; gap: 22px; align-items: start;
}
.step-row .n {
  font-family: var(--font-accent); font-style: italic;
  font-size: 34px; color: var(--accent-soft); line-height: 1;
}
.step-row h4 { margin-bottom: 7px; }
.step-row p { font-size: 15px; color: var(--muted); }

/* ═══ Bildrahmen ═══ */
.figure-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 58px rgba(30,22,16,.16);
}
.section-dark .figure-frame img { box-shadow: 0 30px 62px rgba(0,0,0,.34); }
.figure-frame figcaption {
  margin-top: 13px; font-size: 12.5px; line-height: 1.6;
  color: var(--muted); max-width: 48ch;
}
.section-dark .figure-frame figcaption { color: rgba(248,244,239,.6); }

/* ═══ Standorte / Partner ═══ */
.region-card {
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 16px 38px rgba(30,22,16,.06);
  display: flex; flex-direction: column; gap: 14px;
}
.region-card .state {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-soft);
}
.region-card h3 { font-size: 21px; }
.region-card h3 a { transition: color .25s; }
.region-card h3 a:hover { color: var(--accent); }
.region-card .partner-name { font-size: 14.5px; color: var(--ink-2); font-weight: 500; }
.region-card .partner-meta { font-size: 13.5px; color: var(--muted); }
.region-card .waelder { display: grid; gap: 7px; padding-top: 14px; border-top: 1px solid var(--line-2); }
.region-card .waelder li { font-size: 13.5px; color: var(--muted); padding-left: 22px; position: relative; }
.region-card .waelder li::before {
  content: ''; position: absolute; left: 3px; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft);
}
.region-card .contact-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 16px; }
.region-card .contact-row a svg { flex-shrink: 0; }
.region-card .contact-row a {
  font-size: 13.5px; font-weight: 500; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 44px; padding: 4px 0;
}
.region-card .contact-row a:hover { color: var(--accent-deep); text-decoration: underline; }

/* ═══ FAQ ═══ */
.faq-list { display: grid; gap: 2px; background: var(--line-2); border-radius: var(--radius); overflow: hidden; }
.faq-item { background: var(--paper); }
.faq-q {
  width: 100%; text-align: left;
  padding: 24px 54px 24px 26px;
  font-family: var(--font-display); font-size: 16.5px; font-weight: 400; line-height: 1.4;
  position: relative; min-height: 56px;
  transition: background .25s;
}
.faq-q:hover { background: var(--warm); }
.faq-q::after {
  content: ''; position: absolute; right: 26px; top: 50%;
  width: 11px; height: 11px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease-out);
}
.faq-item.open .faq-q::after { transform: translateY(-25%) rotate(-135deg); }
.faq-a { display: none; padding: 0 26px 26px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15px; color: var(--muted); }

/* ═══ Kalkulator ═══ */
.kalk {
  /* Kein Scroll-Anchoring: beim Schrittwechsel ändert sich die Höhe stark,
     Chrome würde die Scrollposition sonst gegen unsere eigene korrigieren. */
  overflow-anchor: none;
  scroll-margin-top: 96px; /* Abstand zum Sticky-Header beim Schrittwechsel */
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(30,22,16,.10);
  overflow: hidden;
}
.kalk-head {
  padding: 30px 32px 26px;
  border-bottom: 1px solid var(--line-2);
  background: var(--warm);
}
.kalk-progress { display: flex; gap: 6px; margin-top: 18px; }
.kalk-progress span {
  flex: 1; height: 3px; border-radius: 2px; background: var(--warm-2);
  transition: background .4s var(--ease-out);
}
.kalk-progress span.done { background: var(--accent); }
.kalk-body { padding: 32px; }

.kalk-step { display: none; }
.kalk-step.active { display: block; animation: kalkIn .45s var(--ease-out) both; }
@keyframes kalkIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.step-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent-soft); margin-bottom: 10px;
}
.step-title { font-family: var(--font-display); font-size: clamp(21px,2.4vw,27px); font-weight: 300; letter-spacing: -.02em; margin-bottom: 8px; }
.step-hint { font-size: 14px; color: var(--muted); margin-bottom: 24px; max-width: 60ch; }

.opt-grid { display: grid; gap: 12px; }
.opt-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.opt {
  text-align: left; width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: var(--paper);
  display: flex; gap: 15px; align-items: flex-start;
  transition: border-color .25s, background .25s, box-shadow .25s, transform .25s var(--ease-out);
}
.opt:hover { border-color: var(--accent-soft); transform: translateY(-1px); }
.opt.sel { border-color: var(--accent); background: var(--accent-wash); box-shadow: 0 0 0 1px var(--accent) inset; }
.opt .ico { font-size: 22px; line-height: 1.2; flex-shrink: 0; }
.opt .body { flex: 1; min-width: 0; }
.opt .t { display: block; font-weight: 500; font-size: 15.5px; margin-bottom: 3px; }
.opt .d { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.opt .p { font-family: var(--font-display); font-size: 15px; color: var(--gold); font-weight: 500; white-space: nowrap; flex-shrink: 0; }

.kalk-note {
  margin-top: 18px; padding: 15px 17px;
  background: var(--gold-light);
  border: 1px solid rgba(138,111,58,.22);
  border-radius: var(--radius);
  font-size: 13px; color: var(--ink-2); line-height: 1.65;
}
.kalk-note b { color: var(--gold); }

.kalk-sub {
  margin-top: 14px; padding: 18px 20px;
  background: var(--warm); border: 1px solid var(--line-2); border-radius: var(--radius);
}
.kalk-sub-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 11px;
}
.radio-list { display: grid; gap: 8px; }

/* Regionen-Auswahlfeld in Schritt 1 */
#k-region-select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234a6741' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
#k-region-preview .waelder li {
  font-size: 13.5px; color: var(--muted); padding-left: 22px; position: relative;
}
#k-region-preview .waelder li::before {
  content: ''; position: absolute; left: 3px; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft);
}
.radio-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 15px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--white); cursor: pointer; text-align: left; width: 100%;
  transition: border-color .25s, background .25s;
  min-height: 46px;
}
.radio-item:hover { border-color: var(--accent-soft); }
.radio-item.sel { border-color: var(--accent); background: var(--accent-wash); }
.radio-dot {
  width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--line);
  flex-shrink: 0; margin-top: 3px; position: relative; transition: border-color .25s;
}
.radio-item.sel .radio-dot { border-color: var(--accent); }
.radio-item.sel .radio-dot::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent);
}
.radio-item .body { flex: 1; min-width: 0; }
.radio-item .rt { display: block; font-size: 14.5px; font-weight: 500; }
.radio-item .rt .tree { display: inline-block; margin-right: 9px; font-size: 13px; }
.radio-item .rs { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.5; }

.kalk-nav { display: flex; gap: 12px; margin-top: 28px; }
.kalk-nav .btn { flex: 0 0 auto; }
.kalk-nav .btn-ghost { padding-inline: 24px; }

/* Ergebnis */
.result-box {
  border: 1px solid var(--line-2); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 22px;
}
.result-row {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 14px 20px; font-size: 14.5px;
  border-bottom: 1px solid var(--line-2);
  background: var(--white);
}
.result-row .lbl { color: var(--muted); min-width: 0; }
.result-row .lbl b { color: var(--ink); font-weight: 500; display: block; }
.result-row .val { font-family: var(--font-display); font-weight: 500; white-space: nowrap; }
.result-row.total {
  background: var(--accent-deep); color: #fff; border-bottom: 0;
  padding: 22px 20px; font-size: 17px;
}
.result-row.total .lbl { color: rgba(255,255,255,.8); }
.result-row.total .val { font-size: 26px; font-weight: 400; }

.result-partner {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--accent-wash);
  border: 1px solid rgba(74,103,65,.2); border-radius: var(--radius); margin-bottom: 22px;
}
.result-partner .rp-ico { font-size: 26px; flex-shrink: 0; }
.result-partner .rp-name { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 400; margin-bottom: 4px; }
.result-partner .rp-meta { display: block; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.result-partner a { color: var(--accent); font-weight: 500; }
.result-partner a:hover { text-decoration: underline; }

/* ═══ Formular ═══ */

/* ─── Kostenübersicht mitnehmen: PDF und E-Mail ─── */
.mitnehmen {
  margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line);
}
.mit-kopf { margin-bottom: 22px; }
.mit-titel {
  font-family: var(--font-display); font-size: clamp(19px, 2.1vw, 23px);
  font-weight: 300; letter-spacing: -.02em; margin-bottom: 8px;
}
.mit-kopf p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 62ch; }

.mit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; align-items: stretch; }
.mit-karte {
  background: var(--white); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 22px 22px 24px; display: flex; flex-direction: column;
}
/* Der PDF-Knopf sitzt unten, damit beide Karten gleich hoch wirken */
.mit-karte > .btn-block:last-child { margin-top: auto; }
.mit-karte-titel {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.mit-karte > p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.mit-karte .btn-block { min-height: 50px; }
.mit-karte .field label { font-size: 12.5px; }
.mit-karte .consent { font-size: 12.5px; }
.mit-karte .form-status { margin-top: 14px; font-size: 13.5px; }

@media (max-width: 720px) {
  .mit-grid { grid-template-columns: 1fr; }
}

.form-grid { display: grid; gap: 16px; }
.form-grid.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field label {
  display: block; font-size: 13px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 7px; letter-spacing: .01em;
}
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px; /* iOS-Zoom verhindern */
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  transition: border-color .25s, box-shadow .25s;
  min-height: 50px;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(74,103,65,.13);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a3705f; }
.field .err { display: none; font-size: 13px; color: #8f5a48; margin-top: 6px; }
.field .err.show { display: block; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.consent input { width: 19px; height: 19px; margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.consent a { color: var(--accent); text-decoration: underline; }

.form-status { margin-top: 16px; font-size: 14.5px; line-height: 1.6; display: none; padding: 14px 16px; border-radius: 10px; }
.form-status.show { display: block; }
.form-status.ok { background: var(--accent-wash); color: var(--accent-deep); border: 1px solid rgba(74,103,65,.25); }
.form-status.err { background: #f8eeea; color: #7d4736; border: 1px solid rgba(163,112,95,.3); }

/* ═══ CTA-Band ═══ */
.cta-band { position: relative; overflow: hidden; color: #fff; padding: 110px 0; }
.cta-band .bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(16,20,12,.62), rgba(16,20,12,.86));
}
.cta-band .wrap-narrow { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 20px; }
.cta-band p { color: rgba(255,255,255,.86); margin: 0 auto 34px; max-width: 56ch; }
.cta-band .btn-row { justify-content: center; }

/* ═══ Footer ═══ */
.footer { background: var(--accent-deep); color: rgba(248,244,239,.72); padding: 72px 0 34px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer h4 { color: var(--paper); font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400; margin-bottom: 16px; }
.footer-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-size: 22px; font-weight: 300;
  color: var(--paper); margin-bottom: 14px;
}
.footer-logo .marke { width: 30px; height: 30px; flex-shrink: 0; }
.footer-logo em { font-family: var(--font-accent); font-style: italic; }
.footer p { color: rgba(248,244,239,.66); font-size: 14px; max-width: 44ch; }
.footer ul { display: grid; gap: 10px; }
.footer a { color: rgba(248,244,239,.78); transition: color .25s; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(248,244,239,.14); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px; color: rgba(248,244,239,.55);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* ═══ Scroll-Reveals ═══ */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ═══ Responsive ═══ */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-h: 66px; }
  .nav-links, .nav > .wrap > .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav.scrolled { height: 60px; }

  .section { padding: 76px 0; }
  .section-tight { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
  .opt-grid.cols-2 { grid-template-columns: minmax(0,1fr); }
  .form-grid.cols-2 { grid-template-columns: minmax(0,1fr); }

  .kalk-head, .kalk-body { padding: 24px 20px; }
  .card { padding: 26px 22px; }
  .step-row { grid-template-columns: 46px 1fr; gap: 16px; padding: 24px 22px; }
  .step-row .n { font-size: 27px; }
  .footer-grid { grid-template-columns: minmax(0,1fr); gap: 34px; }
  .cta-band { padding: 80px 0; }
}

@media (max-width: 400px) {
  .wrap, .wrap-narrow { padding: 0 18px; }
  .kalk-head, .kalk-body { padding: 20px 16px; }
  .opt { padding: 15px 15px; gap: 12px; }
  .result-row { padding: 13px 15px; }
  .btn { padding: 15px 24px; font-size: 14.5px; }
  .kalk-nav { flex-direction: column; }
  .kalk-nav .btn { width: 100%; }
}

/* ═══ Reduced Motion — alle Bewegung aus ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .kalk-step.active { animation: none; }
  .card:hover, .opt:hover, .btn:hover { transform: none; }
}

/* ═══ Print ═══ */
@media print {
  .nav, .nav-mobile, .cta-band, .footer, .kalk-nav { display: none !important; }
  body { background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
