:root {
  --blue: #0F2A44;
  --blue-deep: #0a1c2e;
  --green: #4C8B3B;        /* CI-Gruen: Konturziffern, Linien, Flaechen */
  --green-ink: #3E7430;    /* dunkler fuer Text und Buttons (Kontrast >= 4.5:1) */
  --tint: #f7f5f0;
  --tint-deep: #f1efe8;
  --ink: #16273a;
  --ink-soft: #4b5966;
  --ink-mute: #6b7783;
  --rule: #e3dfd6;
  --rule-soft: #edeae2;
  --r-card: 16px;
  --r-photo: 18px;
  --r-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* Klassen wie .btn setzen display und schlagen damit das [hidden]-Attribut
   aus dem Browser-Stylesheet. Ohne diese Regel bleiben per hidden
   ausgeblendete Schaltflaechen sichtbar. */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink-soft);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga";
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
a { color: inherit; }
img { max-width: 100%; }

/* ===== HEADER: Logo links, Navigation zentriert, CTA rechts ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 15px 0;
}
.logo-link { display: block; justify-self: start; }
.logo-img { height: 42px; width: auto; display: block; }
.site-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 30px; flex-wrap: wrap;
}
.site-nav a {
  font-size: 15px; font-weight: 500; text-decoration: none;
  color: var(--ink-soft); transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--green-ink); }
.header-cta { justify-self: end; }
.nav-cta {
  display: inline-block;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff !important;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--green-ink); }

/* Menuekopf nur auf schmalen Viewports, siehe Media Query unten */
.nav-toggle { display: none; }
.nav-cta-mobil { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: inherit; font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--green-ink); color: #fff; }
.btn-primary:hover { background: var(--blue); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--rule); }
.btn-outline:hover { border-color: var(--blue); }

.textlink {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--green-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(62,116,48,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.textlink::after { content: '\2192'; font-size: 16px; }
.textlink:hover { border-bottom-color: var(--green-ink); }

/* ===== ZIFFERN =====
   Fruehere Fassung: Konturziffern per -webkit-text-stroke. Der Strich sitzt
   mittig auf der Glyphenkontur, deshalb liefen bei Montserrat 800 die Punzen
   von 0, 6, 8 und 9 zu und die Strichstaerke wirkte von Ziffer zu Ziffer
   ungleich. Jetzt gefuellt in transparentem Akzentgruen - ruhiger und ueber
   alle Ziffern gleich. Nur noch dort eingesetzt, wo die Zahl etwas aussagt:
   Perspektiven (drei benannte Perspektiven) und Kontakt (echte Reihenfolge). */
.outnum {
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(76, 139, 59, 0.34);
  display: block;
}
.outnum-sm { font-size: 28px; font-weight: 700; }

/* ===== TAG-PILLEN ===== */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; font-weight: 500; color: var(--ink-mute);
  border: 1px solid var(--rule);
  border-radius: var(--r-pill);
  /* 11px statt 13px seitlich: drei Pillen muessen auch in der schmalsten
     Dreispalten-Lage (Karte 240px breit bei ~1000px Viewport) in eine Zeile
     passen - sonst bricht eine Karte um und ihr Pillenblock sitzt hoeher
     als der der Nachbarn. */
  padding: 5px 11px;
  white-space: nowrap;
}

/* ===== FOTOS =====
   object-fit: cover, weil die Seitenverhaeltnisse in den Media Queries
   wechseln - der Ausschnitt soll mitgehen, nicht das Bild verzerren. */
.foto {
  display: block; width: 100%;
  /* height:auto ist Pflicht: das height-Attribut am <img> wirkt als
     Praesentationshinweis und wuerde aspect-ratio sonst aushebeln. */
  height: auto;
  object-fit: cover;
  border-radius: var(--r-photo);
  background: var(--tint-deep);
}
/* Querformat: die drei Personen fuellen die volle Bildbreite, ein Hochformat
   wuerde die aeusseren beiden anschneiden. */
.foto-hero { aspect-ratio: 4 / 3; }
.foto-wide { aspect-ratio: 5 / 4; object-position: 50% 55%; }
/* Bereits auf 4:3 zugeschnitten, cover greift also nicht ein. */
.foto-kontakt { aspect-ratio: 4 / 3; margin-top: 34px; }
/* Portraets sind bereits auf 4:5 zugeschnitten, cover greift also nicht ein. */
.foto-portrait { aspect-ratio: 4 / 5; }


/* ===== SEKTIONEN ===== */
section { padding: 88px 0; }
.section-tint { background: var(--tint); }

.eyebrow, .section-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
  margin-bottom: 18px;
}
h1, h2, h3 { color: var(--blue); }
.hero h1 {
  font-size: clamp(32px, 4.1vw, 52px);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -0.022em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; font-weight: 500; }
.section-title {
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin-bottom: 20px;
  max-width: 780px;
}
.section-title em { font-style: italic; font-weight: 500; }
.section-intro {
  font-size: 17px; color: var(--ink-soft);
  max-width: 700px; line-height: 1.7; margin-bottom: 56px;
}

/* ===== HERO ===== */
.hero { padding: 76px 0 84px; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.hero-lede {
  font-size: clamp(17px, 1.35vw, 19px);
  color: var(--ink-soft); line-height: 1.62; margin-bottom: 16px;
}
.hero-lede-2 { font-size: 16px; color: var(--ink-mute); line-height: 1.65; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.trustline {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: 26px; border-top: 1px solid var(--rule);
}
.trustline span {
  font-size: 13px; font-weight: 500; color: var(--ink-mute);
  border: 1px solid var(--rule); border-radius: var(--r-pill);
  padding: 6px 14px;
}

/* ===== PROBLEM ===== */
.problem-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end; margin-bottom: 56px;
}
.problem-lede { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); }
.questions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 64px; }
.question {
  padding: 22px 0; border-top: 1px solid var(--rule);
}
.question p { font-size: 16px; line-height: 1.55; color: var(--ink); font-weight: 500; }
.problem-close {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--rule);
  font-size: 19px; line-height: 1.6; max-width: 820px; color: var(--ink-soft);
}
/* Kursiv und Farbe reichen als Hervorhebung - zusaetzlicher Fettdruck
   waere die dritte Auszeichnung fuer denselben Satz. */
.problem-close em { color: var(--blue); font-style: italic; }

/* ===== FORMATE ===== */
.journey { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.format-card {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 34px 34px 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.format-card:hover { border-color: #d3ccbc; box-shadow: 0 10px 30px -22px rgba(15,42,68,0.35); }
.format-head { margin-bottom: 14px; }
.format-step {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 14px;
}
.format-card h3 {
  font-size: clamp(24px, 2.3vw, 30px);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.018em;
}
.format-claim { font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.45; margin-bottom: 20px; }
.format-card > p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 22px; }
.format-list { list-style: none; margin-bottom: 26px; }
.format-list li {
  font-size: 15px; color: var(--ink-soft); line-height: 1.5;
  padding: 11px 0; border-top: 1px solid var(--rule-soft);
}
.format-facts {
  margin-top: auto; padding: 20px 0 22px;
  border-top: 1px solid var(--rule);
  display: flex; flex-wrap: wrap; gap: 10px 26px;
}
.fact .fact-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 2px;
}
.fact .fact-value { font-size: 15px; font-weight: 700; color: var(--blue); }
.journey-note {
  margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--rule);
  font-size: 16px; color: var(--ink-soft); line-height: 1.7; max-width: 820px;
}
.journey-note strong { font-weight: 700; color: var(--blue); }

/* ===== PERSPEKTIVEN ===== */
.perspectives { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.perspective {
  background: #fff; border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.perspective:hover { border-color: #d3ccbc; box-shadow: 0 10px 30px -22px rgba(15,42,68,0.35); }
.perspective .outnum { margin-bottom: 20px; }
.perspective h3 { font-size: 19px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.perspective > p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 22px; }
.perspective .tags { margin-top: auto; }
.perspectives-close {
  margin-top: 40px; font-size: 17px; color: var(--ink-soft);
  max-width: 760px; line-height: 1.65;
}

/* ===== PRINZIPIEN ===== */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 64px; }
.principle { padding: 28px 0; border-top: 1px solid var(--rule); }
.principle h3 {
  font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 10px;
}
.principle p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }

/* ===== VISION ===== */
.vision-inner { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.vision h2 {
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 700; line-height: 1.16; letter-spacing: -0.018em; margin-bottom: 22px;
}
.vision h2 em { font-style: italic; font-weight: 500; }
.vision p { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }
.vision .textlink { margin-top: 10px; }
.vision-quote {
  margin-top: 34px; padding: 26px 28px;
  background: #fff; border: 1px solid var(--rule);
  border-left: 3px solid var(--green);
  border-radius: var(--r-card);
}
.vision-quote p {
  font-size: clamp(18px, 1.7vw, 21px);
  /* Groesse, Kursivschnitt und Farbe tragen das Zitat - zusaetzlicher
     Fettdruck waere die vierte Auszeichnung fuer denselben Satz. */
  font-weight: 500; font-style: italic; line-height: 1.45;
  color: var(--blue); margin-bottom: 12px;
}
.vision-quote cite { font-style: normal; font-size: 13px; font-weight: 500; color: var(--ink-mute); }

/* ===== INITIATOREN ===== */
.initiators { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.initiator .foto { margin-bottom: 16px; }
.initiator h3 { font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 4px; }
.initiator p { font-size: 14.5px; color: var(--ink-mute); }

/* ===== FAQ ===== */
/* Akkordeon auf <details>/<summary> - klappt ohne JavaScript.
   Einspaltig, weil zwei Spalten beim Aufklappen die Nachbarzeile verschieben. */
.faq-grid { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 0;
  cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 {
  flex: 1;
  font-size: 17px; font-weight: 700; line-height: 1.4;
  transition: color 0.15s ease;
}
.faq-item summary:hover h3 { color: var(--green-ink); }
.faq-item summary:focus-visible { outline: 2px solid var(--green-ink); outline-offset: 3px; }
/* Chevron aus zwei Strichen - kein Icon-Font, keine zusaetzliche Datei */
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-mute);
  border-bottom: 2px solid var(--ink-mute);
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.15s ease;
}
.faq-item[open] summary::after { transform: translateY(1px) rotate(-135deg); }
.faq-item summary:hover::after { border-color: var(--green-ink); }
.faq-item p {
  font-size: 15.5px; color: var(--ink-soft); line-height: 1.7;
  padding: 0 44px 24px 0; margin-top: -4px;
}

/* ===== KONTAKT ===== */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact h2 {
  font-size: clamp(26px, 3.1vw, 40px);
  font-weight: 700; line-height: 1.16; letter-spacing: -0.018em; margin-bottom: 20px;
}
.contact-lede { font-size: 16.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 28px; }
.contact-list { list-style: none; }
.contact-list li {
  padding: 14px 0; border-top: 1px solid var(--rule);
  font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
}
.steps { margin-bottom: 34px; }
.step {
  display: grid; grid-template-columns: 50px 1fr; gap: 16px;
  padding: 20px 0; border-top: 1px solid var(--rule); align-items: center;
}
.step p { font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

/* ===== ANFRAGEFORMULAR ===== */
.anfrage { padding: 56px 0 88px; }
.anfrage-inner { max-width: 720px; }
.anfrage h1 {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.anfrage-lede { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 36px; }
/* Formularseiten haben keine Navigation in der Mitte - ohne eigene
   Spaltenaufteilung landet der Knopf sonst in der mittleren Spalte. */
.site-header-schlicht { grid-template-columns: 1fr auto; }
.nav-cta-zurueck { background: transparent; color: var(--blue) !important; border: 1px solid var(--rule); }
.nav-cta-zurueck:hover { background: transparent; border-color: var(--blue); }

/* Fortschritt */
.fortschritt { margin-bottom: 32px; }
.fortschritt-balken {
  height: 3px; background: var(--rule-soft);
  border-radius: var(--r-pill); overflow: hidden;
}
.fortschritt-balken span {
  display: block; height: 100%; width: 20%;
  background: var(--green-ink); border-radius: var(--r-pill);
  transition: width 0.3s ease;
}
.fortschritt-text { margin-top: 10px; font-size: 13px; color: var(--ink-mute); }
.fortschritt-text strong { color: var(--blue); font-weight: 600; }

/* Schritte */
.schritt { border: 0; padding: 0; margin: 0 0 8px; }
.schritt legend {
  padding: 0; margin-bottom: 8px;
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 700;
  line-height: 1.25; letter-spacing: -0.015em; color: var(--blue);
}
.schritt-hilfe { font-size: 15px; line-height: 1.6; color: var(--ink-mute); margin-bottom: 24px; }

/* Auswahlkacheln (Schritt 1) */
.wahl-kacheln { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.kachel { cursor: pointer; }
.kachel input { position: absolute; opacity: 0; pointer-events: none; }
.kachel-inhalt {
  display: block; height: 100%;
  padding: 20px 22px;
  border: 1px solid var(--rule); border-radius: var(--r-card);
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.kachel:hover .kachel-inhalt { border-color: #cfc7b6; }
.kachel input:checked + .kachel-inhalt { border-color: var(--green-ink); background: #f6faf4; }
.kachel input:focus-visible + .kachel-inhalt { outline: 2px solid var(--green-ink); outline-offset: 2px; }
.kachel-titel { display: block; font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.kachel-text { display: block; font-size: 14px; line-height: 1.5; color: var(--ink-mute); }

/* Auswahlliste (Radio / Checkbox) */
.wahl-liste { display: flex; flex-direction: column; gap: 0; }
.wahl {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 14px 2px;
  border-top: 1px solid var(--rule-soft);
  font-size: 15.5px; line-height: 1.55; color: var(--ink-soft);
  cursor: pointer;
}
.wahl:last-child { border-bottom: 1px solid var(--rule-soft); }
.wahl input { margin-top: 3px; accent-color: var(--green-ink); flex-shrink: 0; width: 17px; height: 17px; }
.wahl strong { color: var(--blue); font-weight: 600; }
.wahl:hover { color: var(--ink); }

/* Eingabefelder */
.feld { margin-top: 24px; }
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feld-reihe .feld { margin-top: 24px; }
/* Nur direkte Kinder: .wahl ist ebenfalls ein <label> und liegt als Enkel in
   .feld > .wahl-liste. Ohne den Kindselektor gewinnt diese Regel dort per
   Spezifitaet, macht aus dem Flex-Layout einen Block und schiebt den
   Radiobutton ueber den Text. */
.feld > label, .feld-label {
  display: block; margin-bottom: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue);
}
.feld-hilfe { font-size: 13px; line-height: 1.5; color: var(--ink-mute); margin-bottom: 8px; }
.pflicht { color: var(--green-ink); font-weight: 700; }
/* Ausdruecklich nur Texteingaben: ein pauschales .feld input traefe auch die
   Radios und Checkboxen in .wahl-liste und blaehte sie auf volle Zeilenbreite
   auf - der Auswahlknopf stuende dann mittig statt vor seinem Text. */
.feld input[type="text"],
.feld input[type="email"],
.feld input[type="tel"],
.feld select, .feld textarea {
  width: 100%; padding: 12px 14px;
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule); border-radius: 10px;
  transition: border-color 0.15s ease;
}
.feld textarea { resize: vertical; line-height: 1.6; }
.feld input[type="text"]:focus,
.feld input[type="email"]:focus,
.feld input[type="tel"]:focus,
.feld select:focus, .feld textarea:focus {
  outline: 0; border-color: var(--green-ink);
}
.feld input[type="email"]:invalid:not(:placeholder-shown) { border-color: #c0563f; }

.einwilligung { margin-top: 28px; border-top: 1px solid var(--rule-soft); font-size: 14.5px; }
.einwilligung a { color: var(--green-ink); }

/* Spamfalle: sichtbar nur fuer Bots, deshalb nicht display:none
   (manche Bots ueberspringen ausgeblendete Felder gezielt). */
.honigtopf {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}

.formular-fehler {
  margin-top: 20px; padding: 13px 16px;
  background: #fbf0ed; border: 1px solid #e5c4ba; border-radius: 10px;
  font-size: 14.5px; color: #8c3a24;
}
.formular-aktionen, .formular-aktionen-senden {
  display: flex; gap: 14px; align-items: center;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.formular-aktionen-senden { border-top: 0; padding-top: 0; }
.js .formular-aktionen-senden { margin-top: 24px; }
#weiter { margin-left: auto; }

.anfrage-danke h2 {
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 700;
  line-height: 1.2; letter-spacing: -0.018em; margin-bottom: 24px;
}
.anfrage-danke .steps { margin-bottom: 28px; }

@media (max-width: 700px) {
  .wahl-kacheln { grid-template-columns: 1fr; }
  .feld-reihe { grid-template-columns: 1fr; gap: 0; }
  .formular-aktionen { flex-direction: row; }
  .formular-aktionen .btn, .formular-aktionen-senden .btn { flex: 1; text-align: center; }
}

/* ===== RECHTSTEXT (Impressum) ===== */
.legal { padding: 64px 0 88px; }
.legal-inner { max-width: 720px; }
.legal h1 {
  font-size: clamp(30px, 3.4vw, 42px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 28px;
}
.legal h2 {
  font-size: 20px; font-weight: 700; line-height: 1.3;
  margin: 40px 0 12px; padding-top: 24px; border-top: 1px solid var(--rule);
}
.legal h3 { font-size: 16px; font-weight: 700; margin: 22px 0 8px; }
.legal p { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.legal address { font-style: normal; font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { list-style: none; margin-bottom: 14px; }
.legal li {
  font-size: 15.5px; line-height: 1.7; color: var(--ink-soft);
  padding: 10px 0; border-top: 1px solid var(--rule-soft);
}
.legal strong { color: var(--blue); font-weight: 600; }
.legal a { color: var(--green-ink); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue-deep); color: rgba(255,255,255,0.72);
  padding: 64px 0 36px; font-size: 14px; line-height: 1.75;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.footer-col p { margin-bottom: 8px; }
.footer-col strong { color: #fff; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul a { text-decoration: none; transition: color 0.2s ease; }
.footer-col ul a:hover { color: #fff; }
.footer-logo { height: 38px; width: auto; margin-bottom: 18px; display: block; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 14px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .vision-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .perspectives { grid-template-columns: 1fr; }
  .initiators { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero { padding: 48px 0 60px; }
  section { padding: 60px 0; }

  /* ===== Navigation: Menuekopf statt umbrechender Linkzeile =====
     Vorher brach die Linkliste in zwei Zeilen um und der Header wurde
     dreizeilig. Jetzt Logo links, Menuekopf rechts, Links darunter
     ausklappbar. Der Kontakt-Button wandert ans Ende der Liste. */
  .site-header-inner { grid-template-columns: 1fr auto; gap: 12px; padding: 12px 0; }
  /* Auf der Startseite wandert der Kontakt-Button ins ausklappbare Menue.
     Auf Formularseiten gibt es kein Menue - dort muss er stehen bleiben. */
  .header-cta { display: none; }
  .site-header-schlicht .header-cta { display: block; }
  .site-header-schlicht .nav-cta { padding: 9px 16px; font-size: 14px; }

  .nav-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    justify-self: end;
    padding: 9px 16px 9px 14px;
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    font-family: inherit; font-size: 14px; font-weight: 600;
    color: var(--blue); cursor: pointer;
  }
  .nav-toggle-bars {
    position: relative; display: block; width: 16px; height: 2px;
    background: currentColor; border-radius: 2px;
  }
  .nav-toggle-bars::before, .nav-toggle-bars::after {
    content: ''; position: absolute; left: 0; width: 16px; height: 2px;
    background: currentColor; border-radius: 2px;
    transition: transform 0.2s ease, top 0.2s ease;
  }
  .nav-toggle-bars::before { top: -5px; }
  .nav-toggle-bars::after  { top: 5px; }
  /* Offen: die drei Balken werden zum Kreuz */
  .nav-offen .nav-toggle-bars { background: transparent; }
  .nav-offen .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
  .nav-offen .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

  .js .site-nav { display: none; }
  .nav-offen .site-nav {
    display: flex; flex-direction: column; align-items: stretch;
    grid-column: 1 / -1; gap: 0;
    margin-top: 4px; padding-top: 8px;
    border-top: 1px solid var(--rule-soft);
  }
  .site-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--rule-soft);
    font-size: 16px;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-cta-mobil {
    display: block; text-align: center;
    margin-top: 14px; padding: 13px 22px;
  }
  .problem-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .questions { grid-template-columns: 1fr; gap: 0; }
  .journey { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .btn { padding: 14px 26px; }
  .hero-actions { gap: 18px; }
  .format-card { padding: 28px 22px 26px; }
  .outnum { font-size: 36px; }
  .step { grid-template-columns: 44px 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
