/* ============================================================
   LEBENSKARUSSELL 2.0 — Zentrales Stylesheet
   Alle Werte laut 02_UI_UX_DESIGN_SYSTEM.
   Diese Datei ist die einzige Quelle für Farben, Schrift, Abstände.
   ============================================================ */

/* ---------- 1 · DESIGN TOKENS ---------- */
:root {
  --primaer:       #8B6B5A;
  --primaer-dunkel:#75584A;
  --hintergrund:   #FCFBF9;
  --sekundaer:     #F4EEE8;
  --text:          #2E2925;
  --text-leise:    #6B615A;
  --akzent:        #D9C8BA;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --container:    1320px;
  --header-hoehe: 104px;
  --radius-karte: 26px;
  --schatten-karte:       0 2px 24px rgba(46,41,37,.05);
  --schatten-karte-hover: 0 12px 40px rgba(46,41,37,.09);
  --abstand-sektion: 48px;
}

/* ---------- 2 · RESET & BASIS ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--hintergrund);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0;
}
h1 { font-size: 76px; }
h2 { font-size: 52px; }
h3 { font-size: 34px; }
p  { margin: 0 0 1.2em; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primaer); color: #fff;
  padding: 14px 24px; z-index: 999;
  border-radius: 0 0 12px 0; font-size: 16px;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--primaer);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* Nur für Screenreader */
.nur-sr {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- 3 · HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-hoehe);
  display: flex; align-items: center;
  z-index: 100;
  background: var(--hintergrund);
  box-shadow: 0 1px 0 rgba(217,200,186,.55);
  transition: background .35s ease, box-shadow .35s ease;
}
/* Auf der Startseite bis zum Scrollen durchsichtig */
.header--transparent { background: transparent; box-shadow: none; }
.header--transparent.ist-gescrollt {
  background: var(--hintergrund);
  box-shadow: 0 1px 0 rgba(217,200,186,.55);
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 40px;
}

.logo {
  text-decoration: none; line-height: 1.15; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.logo__bild { display: block; height: 40px; width: auto; margin-bottom: 4px; }
.logo__name {
  display: block; font-family: var(--font-display);
  font-size: 27px; letter-spacing: .01em;
}
.logo__sub {
  display: block; font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-leise); margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 24px; }
.nav ul { list-style: none; display: flex; align-items: center; gap: 24px; margin: 0; padding: 0; }
.nav a {
  text-decoration: none; font-size: 16px; color: var(--text);
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: border-color .25s ease, color .25s ease;
  white-space: nowrap; display: inline-block;
}
.nav a:hover { border-bottom-color: var(--primaer); }
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav .current-menu-parent > a,
.nav .current-page-ancestor > a,
.nav a[aria-current="page"] {
  border-bottom-color: var(--primaer);
  color: var(--primaer);
}

.menu-knopf {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
  flex-direction: column; justify-content: center; gap: 6px;
}
.menu-knopf span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-knopf.ist-offen span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-knopf.ist-offen span:nth-child(2) { opacity: 0; }
.menu-knopf.ist-offen span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 4 · BUTTONS (nur zwei Varianten) ---------- */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 17px; font-weight: 600; text-decoration: none;
  padding: 17px 38px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn--primaer {
  background: var(--primaer); color: #fff;
  box-shadow: 0 4px 14px rgba(139,107,90,.22);
}
.btn--primaer:hover {
  background: var(--primaer-dunkel);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139,107,90,.3);
}
.btn--sekundaer {
  background: transparent; color: var(--primaer);
  border-color: var(--primaer);
}
.btn--sekundaer:hover { background: rgba(139,107,90,.06); transform: translateY(-2px); }

/* ---------- 5 · SEKTIONEN ---------- */
.sektion { padding: var(--abstand-sektion) 0; }
.sektion--beige { background: var(--sekundaer); }
.sektion--oben-eng { padding-top: 0; }

.sektion__kopf { max-width: 780px; margin-bottom: 52px; }
.sektion__kopf--mitte { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--primaer); margin-bottom: 20px; font-weight: 600;
}
.lead { font-size: 22px; color: var(--text-leise); }

/* ---------- 6 · BREADCRUMB ---------- */
.breadcrumb {
  padding-top: calc(var(--header-hoehe) + 30px);
  font-size: 14px; color: var(--text-leise);
}
.breadcrumb ol { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb li::after { content: "\203A"; margin-left: 10px; color: var(--akzent); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--primaer); }

/* ---------- 7 · HERO (Startseite) ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--header-hoehe) + 40px) 0 80px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1100px 700px at 80% 25%, rgba(244,238,232,.75), transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 80px;
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 40px;
}
.hero__text { flex: 0 0 58%; max-width: 58%; }
.hero__bild { flex: 0 0 42%; max-width: 42%; }
.hero__text p.lead { max-width: 560px; margin-top: 30px; }
.hero__aktionen { display: flex; gap: 18px; margin-top: 46px; flex-wrap: wrap; }

/* ---------- 8 · SEITEN-HERO (Unterseiten) ---------- */
.seiten-hero { padding: 54px 0 var(--abstand-sektion); position: relative; overflow: hidden; }
.seiten-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(1000px 640px at 82% 30%, rgba(244,238,232,.7), transparent 65%);
  pointer-events: none; z-index: 0;
}
.seiten-hero__inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 80px; }
.seiten-hero__text { flex: 0 0 58%; max-width: 58%; }
.seiten-hero__bild { flex: 0 0 42%; max-width: 42%; }
.seiten-hero__text .lead { max-width: 560px; margin-top: 28px; }
.seiten-hero__aktionen { display: flex; gap: 18px; margin-top: 44px; flex-wrap: wrap; }
.seiten-hero__bild .bildrahmen img { aspect-ratio: 9 / 11; }

/* ---------- 9 · BILDRAHMEN ---------- */
.bildrahmen {
  border-radius: 220px 220px 24px 24px;
  overflow: hidden; background: var(--sekundaer);
  box-shadow: var(--schatten-karte);
}
.bildrahmen img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.bildrahmen:hover img { transform: scale(1.035); }
.bildrahmen--rund { border-radius: 24px; }

/* ---------- 10 · KARTEN ---------- */
.karten-gitter { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.karten-gitter.gitter-zwei { grid-template-columns: repeat(2, 1fr); gap: 34px; }

.karte {
  background: var(--hintergrund); border-radius: var(--radius-karte);
  padding: 44px 38px; box-shadow: var(--schatten-karte);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.karte:hover { transform: translateY(-5px); box-shadow: var(--schatten-karte-hover); }
.karte h3 { font-size: 27px; margin-bottom: 14px; }
.karte p  { font-size: 18px; color: var(--text-leise); margin: 0; }
.karte--auf-beige { background: #fff; }
.karte--gross { padding: 56px 48px; }
.karte--gross h3 { font-size: 32px; }
.karte--gross p  { flex: 1; margin-bottom: 34px; }

/* ---------- 11 · WECHSEL (Bild/Text) ---------- */
.wechsel { display: flex; align-items: center; gap: 72px; }
.wechsel + .wechsel { margin-top: 72px; }
.wechsel--gedreht { flex-direction: row-reverse; }
.wechsel__bild { flex: 0 0 48%; max-width: 48%; }
.wechsel__text { flex: 1; }
.wechsel__text h3 { margin-bottom: 20px; }
.wechsel__text p  { color: var(--text-leise); margin: 0 0 1.2em; }
.wechsel__text p:last-of-type { margin-bottom: 0; }
.wechsel__bild .bildrahmen--rund img { aspect-ratio: 4 / 3; }
.wechsel--portraet .bildrahmen--rund img { aspect-ratio: 9 / 10; }

/* ---------- 12 · VERBINDER ---------- */
.verbinder { text-align: center; }
.verbinder p {
  font-family: var(--font-display); font-size: 42px;
  line-height: 1.35; max-width: 940px; margin: 0 auto;
}
.verbinder--leise p { font-size: 30px; color: var(--text-leise); }

/* ---------- 13 · SCHRITTE ---------- */
.schritte { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.schritt__zahl {
  font-family: var(--font-display); font-size: 60px;
  color: var(--akzent); line-height: 1; margin-bottom: 18px;
}
.schritt h3 { font-size: 28px; margin-bottom: 12px; }
.schritt p  { font-size: 18px; color: var(--text-leise); margin: 0; }

/* ---------- 14 · WERTE ---------- */
.werte { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 60px; }
.wert { padding: 26px 0; border-top: 1px solid var(--akzent); }
.wert h3 { font-size: 25px; margin-bottom: 8px; }
.wert p  { font-size: 17px; color: var(--text-leise); margin: 0; }

/* ---------- 15 · STIMMEN ---------- */
.stimme {
  background: #fff; border-radius: var(--radius-karte);
  padding: 46px 40px; box-shadow: var(--schatten-karte); margin: 0;
}
.stimme p { font-family: var(--font-display); font-size: 25px; line-height: 1.45; margin: 0; }

/* ---------- 16 · ABSCHLUSS ---------- */
.abschluss { text-align: center; }
.abschluss h2 { max-width: 820px; margin: 0 auto 34px; }
.abschluss .lead { max-width: 620px; margin: 0 auto 44px; }

/* ---------- 17 · GEDANKEN & IMPULSE ---------- */
.blog-gitter { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.beitrag {
  background: var(--hintergrund); border-radius: var(--radius-karte); overflow: hidden;
  box-shadow: var(--schatten-karte); transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.beitrag:hover { transform: translateY(-5px); box-shadow: var(--schatten-karte-hover); }
.beitrag__bild { aspect-ratio: 3 / 2; overflow: hidden; background: var(--sekundaer); }
.beitrag__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.beitrag:hover .beitrag__bild img { transform: scale(1.04); }
.beitrag__inhalt { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.beitrag__meta {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--primaer); margin-bottom: 12px; font-weight: 600;
}
.beitrag h3 { font-size: 25px; margin-bottom: 10px; line-height: 1.25; }
.beitrag h3 a { text-decoration: none; }
.beitrag h3 a:hover { color: var(--primaer); }
.beitrag p { font-size: 17px; color: var(--text-leise); margin: 0 0 18px; flex: 1; }
.beitrag__mehr { font-size: 15px; font-weight: 600; color: var(--primaer); text-decoration: none; }
.beitrag__mehr:hover { text-decoration: underline; }

.leer-hinweis {
  background: var(--sekundaer); border-radius: var(--radius-karte);
  padding: 44px 40px; text-align: center; max-width: 620px; margin: 0 auto;
}
.leer-hinweis h3 { margin-bottom: 12px; }
.leer-hinweis p { color: var(--text-leise); margin: 0; }

/* Artikelseite */
.artikel { max-width: 760px; margin: 0 auto; }
.artikel__kopf { text-align: center; margin-bottom: 44px; }
.artikel__meta { font-size: 14px; color: var(--text-leise); margin-top: 18px; }
.artikel__bild { border-radius: var(--radius-karte); overflow: hidden; margin-bottom: 44px; }
.artikel__bild img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.artikel__text p  { font-size: 19px; color: var(--text-leise); }
.artikel__text h2 { font-size: 32px; margin: 44px 0 16px; }
.artikel__text h3 { font-size: 25px; margin: 32px 0 12px; }
.artikel__text ul, .artikel__text ol { padding-left: 22px; color: var(--text-leise); font-size: 19px; }
.artikel__text li { margin-bottom: 10px; }
.artikel__text strong { color: var(--text); }
.artikel__text a { color: var(--primaer); }
.artikel__text img { border-radius: 20px; margin: 32px 0; }
.artikel__text blockquote {
  margin: 32px 0; padding: 24px 30px; background: var(--sekundaer);
  border-radius: 20px; border-left: 3px solid var(--primaer);
}
.artikel__text blockquote p:last-child { margin-bottom: 0; }

.infobox {
  background: var(--sekundaer); border-radius: 20px; padding: 30px 32px; margin: 36px 0;
  border-left: 3px solid var(--primaer);
}
.infobox p { margin: 0; font-size: 17px; }

/* Blätterlinks */
.blaettern {
  display: flex; justify-content: center; gap: 10px; margin-top: 44px; flex-wrap: wrap;
}
.blaettern .page-numbers {
  display: inline-block; padding: 10px 16px; border-radius: 999px;
  text-decoration: none; font-size: 16px; color: var(--text-leise);
  border: 1px solid var(--akzent);
}
.blaettern .page-numbers:hover { color: var(--primaer); border-color: var(--primaer); }
.blaettern .page-numbers.current { background: var(--primaer); color: #fff; border-color: var(--primaer); }

/* ---------- 18 · FORMULAR ---------- */
.formular-block { display: flex; gap: 72px; align-items: flex-start; }
.formular-block__haupt { flex: 1 1 58%; min-width: 0; }
.formular-block__neben { flex: 0 0 34%; }

.info-karte { background: var(--sekundaer); border-radius: var(--radius-karte); padding: 36px 32px; }
.info-karte + .info-karte { margin-top: 20px; }
.info-karte h3 { font-size: 22px; margin-bottom: 14px; }
.info-karte p  { font-size: 16px; color: var(--text-leise); margin: 0 0 .8em; }
.info-karte p:last-child { margin-bottom: 0; }
.info-karte a { color: var(--primaer); }

.ablauf { list-style: none; margin: 0; padding: 0; counter-reset: schritt; }
.ablauf li {
  counter-increment: schritt; position: relative;
  padding: 0 0 20px 40px; font-size: 16px; color: var(--text-leise);
}
.ablauf li::before {
  content: counter(schritt); position: absolute; left: 0; top: -2px;
  font-family: var(--font-display); font-size: 21px; color: var(--primaer);
}
.ablauf li:last-child { padding-bottom: 0; }

/* ---------- 19 · RECHTSTEXTE ---------- */
.rechtstext { max-width: 780px; }
.rechtstext h2 { font-size: 34px; margin: 52px 0 18px; }
.rechtstext h2:first-of-type { margin-top: 0; }
.rechtstext h3 { font-size: 24px; margin: 32px 0 12px; }
.rechtstext p, .rechtstext li { font-size: 18px; color: var(--text-leise); }
.rechtstext ul { padding-left: 22px; margin: 0 0 1.2em; }
.rechtstext li { margin-bottom: 8px; }
.rechtstext a { color: var(--primaer); }
.rechtstext strong { color: var(--text); font-weight: 600; }
.rechtstext dl { margin: 0 0 1.2em; }
.rechtstext dt { font-weight: 600; color: var(--text); margin-top: 14px; }
.rechtstext dd { margin: 2px 0 0; color: var(--text-leise); font-size: 18px; }

/* ---------- 20 · 404 ---------- */
.vierhundert {
  min-height: calc(100vh - var(--header-hoehe));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 60px 0;
}
.vierhundert__inner { max-width: 620px; }
.vierhundert__zahl {
  font-family: var(--font-display); font-size: 128px; line-height: 1;
  color: var(--akzent); margin-bottom: 18px;
}
.vierhundert h1 { font-size: 46px; margin-bottom: 22px; }
.vierhundert p { color: var(--text-leise); margin-bottom: 38px; }
.vierhundert__aktionen { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.vierhundert__links { margin-top: 40px; font-size: 16px; color: var(--text-leise); }
.vierhundert__links a { color: var(--primaer); margin: 0 10px; }

/* ---------- 21 · FOOTER ---------- */
.footer { background: var(--sekundaer); padding: 64px 0 36px; font-size: 16px; }
.footer__gitter { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; }
.footer h4 {
  font-family: var(--font-body); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primaer); margin: 0 0 22px; font-weight: 700;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 13px; }
.footer a {
  text-decoration: none; color: var(--text-leise);
  padding: 3px 0; display: inline-block; transition: color .2s ease;
}
.footer a:hover { color: var(--primaer); }
.footer__marke p { font-size: 16px; color: var(--text-leise); max-width: 320px; margin-top: 18px; }
.footer__unten {
  margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--akzent);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 14px; color: var(--text-leise);
}

/* ---------- 22 · ANIMATION ---------- */
.fade-up { opacity: 0; transform: translateY(26px); transition: opacity .85s ease, transform .85s ease; }
.fade-up.ist-sichtbar { opacity: 1; transform: none; }

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

/* ---------- 23 · WORDPRESS-EIGENHEITEN ---------- */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }

.alignleft  { float: left;  margin: 6px 28px 20px 0; }
.alignright { float: right; margin: 6px 0 20px 28px; }
.aligncenter { margin: 24px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 14px; color: var(--text-leise); text-align: center; margin-top: 8px; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* WPForms an das Design anpassen */
.wpforms-container .wpforms-form input[type=text],
.wpforms-container .wpforms-form input[type=email],
.wpforms-container .wpforms-form input[type=tel],
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  color: var(--text) !important;
  padding: 15px 18px !important;
  border: 1px solid var(--akzent) !important;
  border-radius: 14px !important;
  background: #fff !important;
  width: 100% !important;
  max-width: 100% !important;
  box-shadow: none !important;
}
.wpforms-container .wpforms-form input:focus,
.wpforms-container .wpforms-form select:focus,
.wpforms-container .wpforms-form textarea:focus {
  border-color: var(--primaer) !important;
  box-shadow: 0 0 0 3px rgba(139,107,90,.12) !important;
  outline: none !important;
}
.wpforms-container .wpforms-form textarea { min-height: 165px !important; }
.wpforms-container .wpforms-form .wpforms-field-label {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--text) !important;
}
.wpforms-container .wpforms-form .wpforms-field-sublabel,
.wpforms-container .wpforms-form .wpforms-field-description {
  font-size: 14px !important;
  color: var(--text-leise) !important;
}
.wpforms-container .wpforms-form button[type=submit] {
  font-family: var(--font-body) !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  background: var(--primaer) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 17px 38px !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 14px rgba(139,107,90,.22) !important;
  transition: transform .25s ease, background .25s ease !important;
}
.wpforms-container .wpforms-form button[type=submit]:hover {
  background: var(--primaer-dunkel) !important;
  transform: translateY(-2px) !important;
}
.wpforms-container .wpforms-form label.wpforms-error {
  color: #A3564A !important; font-size: 14px !important;
}
.wpforms-container .wpforms-form input.wpforms-error,
.wpforms-container .wpforms-form textarea.wpforms-error {
  border-color: #A3564A !important;
}
.wpforms-confirmation-container-full {
  background: #fff !important;
  border: 0 !important;
  border-left: 3px solid var(--primaer) !important;
  border-radius: var(--radius-karte) !important;
  padding: 40px 36px !important;
  box-shadow: var(--schatten-karte) !important;
  color: var(--text-leise) !important;
}

/* ---------- 24 · TABLET ---------- */
/* Navigation: Hamburger schon ab 1350px, damit die Menüzeile nie gedrängt wirkt */
@media (max-width: 1450px) {
  .nav { display: none; }
  .nav.ist-offen {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: fixed; top: var(--header-hoehe); left: 0; right: 0;
    background: var(--hintergrund); padding: 26px 32px 34px;
    box-shadow: 0 18px 40px rgba(46,41,37,.1); border-top: 1px solid var(--akzent);
    max-height: calc(100vh - var(--header-hoehe)); overflow-y: auto;
  }
  .nav.ist-offen ul { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav.ist-offen a { font-size: 19px; padding: 12px 0; width: 100%; }
  .menu-knopf { display: flex; }
  .header__cta { display: none; }
}

@media (max-width: 1024px) {
  :root { --abstand-sektion: 40px; }
  h1 { font-size: 54px; } h2 { font-size: 40px; } h3 { font-size: 28px; }
  body { font-size: 18px; } .lead { font-size: 19px; }
  .container, .header__inner, .hero__inner { padding: 0 32px; }


  .karten-gitter { grid-template-columns: repeat(2, 1fr); }
  .blog-gitter { grid-template-columns: repeat(2, 1fr); }
  .schritte { grid-template-columns: 1fr; gap: 44px; }
  .werte { grid-template-columns: 1fr; gap: 0 40px; }
  .seiten-hero__inner, .wechsel { gap: 50px; }
  .wechsel + .wechsel { margin-top: 56px; }
  .verbinder p { font-size: 32px; }
  .verbinder--leise p { font-size: 25px; }
  .formular-block { flex-direction: column; gap: 40px; }
  .formular-block__haupt, .formular-block__neben { flex: 1 1 auto; width: 100%; }
  .footer__gitter { grid-template-columns: 1fr 1fr; gap: 44px; }
}

/* ---------- 25 · MOBIL ---------- */
@media (max-width: 720px) {
  :root { --abstand-sektion: 32px; }
  h1 { font-size: 42px; } h2 { font-size: 32px; } h3 { font-size: 25px; }
  body { font-size: 17px; } .lead { font-size: 18px; }
  .container, .header__inner, .hero__inner { padding: 0 22px; }

  /* Blueprint-Reihenfolge: Headline > Bild > Text > CTA */
  .hero { min-height: auto; padding: calc(var(--header-hoehe) + 40px) 0 60px; }
  .hero__inner { flex-direction: column; gap: 0; }
  .hero__text { display: contents; }
  .hero__text .eyebrow { order: 1; }
  .hero__text h1 { order: 2; }
  .hero__bild { order: 3; flex: 1 1 auto; max-width: 100%; width: 100%; margin: 30px 0; }
  .hero__text .lead { order: 4; margin-top: 0; }
  .hero__aktionen { order: 5; margin-top: 30px; }
  .hero__aktionen .btn { flex: 1 1 100%; text-align: center; }

  .breadcrumb { padding-top: calc(var(--header-hoehe) + 22px); }
  .seiten-hero { padding: 30px 0 var(--abstand-sektion); }
  .seiten-hero__inner { flex-direction: column; gap: 0; }
  .seiten-hero__text { display: contents; }
  .seiten-hero__text .eyebrow { order: 1; }
  .seiten-hero__text h1 { order: 2; }
  .seiten-hero__bild { order: 3; flex: 1 1 auto; max-width: 100%; width: 100%; margin: 30px 0; }
  .seiten-hero__text .lead { order: 4; margin-top: 0; }
  .seiten-hero__aktionen { order: 5; margin-top: 30px; }
  .seiten-hero__aktionen .btn { flex: 1 1 100%; text-align: center; }

  .karten-gitter, .karten-gitter.gitter-zwei { grid-template-columns: 1fr; gap: 18px; }
  .blog-gitter { grid-template-columns: 1fr; gap: 18px; }
  .karte { padding: 34px 28px; }
  .karte--gross { padding: 40px 30px; }

  .wechsel, .wechsel--gedreht { flex-direction: column; gap: 28px; }
  .wechsel + .wechsel { margin-top: 44px; }
  .wechsel__bild { flex: 1 1 auto; max-width: 100%; width: 100%; }

  .verbinder p { font-size: 25px; }
  .verbinder--leise p { font-size: 21px; }
  .sektion__kopf { margin-bottom: 34px; }
  .footer__gitter { grid-template-columns: 1fr; gap: 40px; }
  .bildrahmen { border-radius: 160px 160px 24px 24px; }

  .artikel__text p, .artikel__text ul, .artikel__text ol { font-size: 17px; }
  .artikel__text h2 { font-size: 25px; }
  .rechtstext h2 { font-size: 26px; margin: 38px 0 14px; }
  .rechtstext h3 { font-size: 21px; }
  .rechtstext p, .rechtstext li, .rechtstext dd { font-size: 17px; }

  .vierhundert__zahl { font-size: 88px; }
  .vierhundert h1 { font-size: 32px; }
  .vierhundert__aktionen .btn { flex: 1 1 100%; text-align: center; }
}

/* ---------- STICKY KONTAKT-BUTTONS ---------- */
.sticky-kontakt {
  position: fixed; right: 20px; bottom: 28px; z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
}
.sticky-kontakt a {
  width: 56px; height: 56px; min-width: 56px; min-height: 56px;
  max-width: 56px; max-height: 56px; flex: 0 0 56px;
  border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--primaer); color: #fff;
  box-shadow: 0 6px 20px rgba(139,107,90,.35);
  transition: transform .25s ease, background .25s ease;
  text-decoration: none;
}
.sticky-kontakt a:hover { background: var(--primaer-dunkel); transform: translateY(-3px) scale(1.05); }
.sticky-kontakt svg { width: 24px !important; height: 24px !important; flex: 0 0 24px; fill: #fff; display: block; }
/* Handy: kleiner und ins zweite Drittel (gut für den Daumen) */
@media (max-width: 720px) {
  .sticky-kontakt { right: 14px; top: 58%; bottom: auto; gap: 12px; }
  .sticky-kontakt a {
    width: 50px; height: 50px; min-width: 50px; min-height: 50px;
    max-width: 50px; max-height: 50px; flex: 0 0 50px;
  }
  .sticky-kontakt svg { width: 22px !important; height: 22px !important; flex: 0 0 22px; }
}
