/* Erdwin Landingpage — handgeschriebenes CSS im Erdwin-Design-System.
   Töne aus app/tailwind.config.js (sand / erde / amber / himmel / salbei / puder). */

:root {
  --sand-50:  #faf7f1;
  --sand-100: #f4ecdd;
  --sand-200: #e9d9bb;
  --sand-300: #dcc59a;
  --sand-700: #8a6d3f;
  --erde-600: #6b4f2a;
  --erde-700: #574022;
  --erde-900: #3b2d1a;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --himmel-100: #e2edf4;
  --himmel-200: #c9deeb;
  --himmel-700: #48748f;
  --himmel-900: #2d4a5e;
  --salbei-100: #e3ede0;
  --salbei-300: #adc9a6;
  --salbei-700: #5f7d57;
  --puder-100: #f4e3de;
  --puder-300: #d9ad9f;
  --puder-700: #9c6553;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --text: #44403c;
  --radius: 20px;
  --radius-sm: 14px;
  --schatten: 0 1px 2px rgba(59, 45, 26, .05), 0 10px 30px -12px rgba(59, 45, 26, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  color: var(--erde-900);
  line-height: 1.2;
  margin: 0 0 .5em;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 750; }
h3 { font-size: 1.12rem; font-weight: 700; }

p { margin: 0 0 1em; }

a { color: var(--amber-700); text-decoration: none; }
a:hover { text-decoration: underline; }

section { padding: 84px 0; }

.vorzeile {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--sand-700);
  margin-bottom: 10px;
}

.sektion-intro { max-width: 640px; }
.sektion-intro p { color: var(--stone-600); }

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.btn-primaer {
  background: var(--amber-700);
  color: #fff;
}
.btn-primaer:hover { background: var(--amber-800); text-decoration: none; transform: translateY(-1px); }

.btn-sekundaer {
  background: transparent;
  color: var(--erde-700);
  border-color: var(--sand-300);
}
.btn-sekundaer:hover { background: var(--sand-100); text-decoration: none; }

.btn-hell {
  background: var(--sand-50);
  color: var(--erde-900);
}
.btn-hell:hover { background: #fff; text-decoration: none; transform: translateY(-1px); }

/* --- Header -------------------------------------------------------------- */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--stone-200);
}

.kopf {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--erde-700);
}
.logo:hover { text-decoration: none; }
.logo svg { display: block; }

nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }

nav a.nav-link {
  color: var(--erde-600);
  font-weight: 550;
  font-size: .98rem;
}
nav a.nav-link:hover { color: var(--amber-700); text-decoration: none; }

.kopf .btn { padding: 9px 20px; font-size: .95rem; }

/* --- Hero ----------------------------------------------------------------- */

.hero { padding: 72px 0 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: center;
}

.hero p.sub {
  font-size: 1.18rem;
  color: var(--stone-600);
  max-width: 560px;
  margin-bottom: 1.6em;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 22px; }

.hero-fakten {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--stone-500);
  font-size: .95rem;
}
.hero-fakten li::before { content: "✓"; color: var(--salbei-700); font-weight: 700; margin-right: 7px; }

.hero-maskottchen {
  justify-self: center;
  background: radial-gradient(closest-side, var(--sand-100), transparent 75%);
  padding: 10px 20px 0;
  text-align: center;
}
.hero-maskottchen svg { display: block; margin: 0 auto; }
.hero-maskottchen .huegel {
  width: 220px; height: 26px; margin: -12px auto 0;
  background: var(--sand-200);
  border-radius: 50%;
}

/* --- Browser-Rahmen für Screenshots --------------------------------------- */

.browser {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
  overflow: hidden;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--sand-100);
  border-bottom: 1px solid var(--stone-200);
}

.browser-bar .punkt { width: 11px; height: 11px; border-radius: 50%; }
.punkt.rot  { background: var(--puder-300); }
.punkt.gelb { background: var(--sand-300); }
.punkt.gruen{ background: var(--salbei-300); }

.browser-bar .adresse {
  margin-left: 10px;
  flex: 1;
  max-width: 380px;
  background: var(--sand-50);
  border: 1px solid var(--stone-200);
  border-radius: 8px;
  font-size: .78rem;
  color: var(--stone-500);
  padding: 3px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser img { display: block; width: 100%; height: auto; }

.hero-screenshot { margin-top: 54px; }

/* --- „So einfach": 3 Schritte ---------------------------------------------- */

.schritte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.schritt {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 28px;
}

.schritt .nummer {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--erde-900);
  margin-bottom: 16px;
}
.schritt:nth-child(1) .nummer { background: var(--himmel-200); }
.schritt:nth-child(2) .nummer { background: var(--salbei-300); }
.schritt:nth-child(3) .nummer { background: var(--puder-300); }

.schritt p { color: var(--stone-600); font-size: .98rem; margin: 0; }

.schritt code {
  background: var(--sand-100);
  border-radius: 6px;
  padding: 1px 7px;
  font-size: .86em;
  color: var(--erde-700);
}

/* --- Features-Grid ---------------------------------------------------------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.feature {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 28px;
}

.feature .icon {
  display: inline-flex;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: 14px;
  margin-bottom: 16px;
}
.icon.himmel { background: var(--himmel-200); color: var(--himmel-900); }
.icon.salbei { background: var(--salbei-300); color: #2f4429; }
.icon.puder  { background: var(--puder-300); color: #5c3a2e; }
.icon.sand   { background: var(--sand-200); color: var(--erde-900); }

.feature p { color: var(--stone-600); font-size: .98rem; margin: 0; }

/* --- Einblicke (2 Screenshots) ---------------------------------------------- */

.einblicke {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}

.einblicke figure { margin: 0; }
.einblicke figcaption {
  margin-top: 12px;
  font-size: .92rem;
  color: var(--stone-500);
  text-align: center;
}

/* --- Privat & Gewerbe -------------------------------------------------------- */

.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.spalte {
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid var(--stone-200);
}
.spalte.privat  { background: var(--himmel-100); border-color: var(--himmel-200); }
.spalte.gewerbe { background: var(--salbei-100); border-color: #cbdec6; }

.spalte .abzeichen {
  display: inline-block;
  font-size: .8rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.spalte.privat .abzeichen  { background: var(--himmel-200); color: var(--himmel-900); }
.spalte.gewerbe .abzeichen { background: var(--salbei-300); color: #2f4429; }

.spalte ul { margin: 0; padding: 0; list-style: none; }
.spalte li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--stone-600);
  border-top: 1px solid rgba(59, 45, 26, .08);
  font-size: .98rem;
}
.spalte li:first-child { border-top: none; }
.spalte li::before {
  content: "✓";
  position: absolute; left: 4px;
  font-weight: 800;
}
.spalte.privat li::before  { color: var(--himmel-700); }
.spalte.gewerbe li::before { color: var(--salbei-700); }

.umschalter-hinweis {
  margin-top: 22px;
  text-align: center;
  color: var(--stone-500);
  font-size: .95rem;
}

/* --- Lokal & privat (dunkler Block) ------------------------------------------- */

.privatsphaere {
  background: var(--erde-900);
  color: var(--sand-100);
  border-radius: 28px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.privatsphaere h2 { color: var(--sand-50); }
.privatsphaere p { color: var(--sand-200); }

.privatsphaere ul { margin: 26px 0 0; padding: 0; list-style: none; }
.privatsphaere li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 11px 0;
  border-top: 1px solid rgba(244, 236, 221, .14);
  color: var(--sand-100);
}
.privatsphaere li:first-child { border-top: none; }
.privatsphaere li svg { flex: none; margin-top: 4px; color: var(--salbei-300); }
.privatsphaere li strong { color: var(--sand-50); }

.schloss {
  justify-self: center;
  background: rgba(244, 236, 221, .07);
  border: 1px solid rgba(244, 236, 221, .15);
  border-radius: 24px;
  padding: 44px 52px;
  text-align: center;
}
.schloss .schloss-text {
  margin: 18px 0 0;
  font-size: .9rem;
  color: var(--sand-200);
}

/* --- Preis ---------------------------------------------------------------------- */

.preis-karte {
  background: #fff;
  border: 1px solid var(--sand-300);
  border-radius: 28px;
  box-shadow: var(--schatten);
  max-width: 660px;
  margin: 40px auto 0;
  padding: 46px 48px;
  text-align: center;
}

.preis-karte .abzeichen {
  display: inline-block;
  background: var(--sand-100);
  color: var(--erde-700);
  font-size: .82rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.preis-karte .preis-zeile {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--erde-900);
  margin-bottom: 6px;
}

.preis-karte .preis-sub { color: var(--stone-500); margin-bottom: 26px; }

.preis-karte ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  text-align: left;
  display: inline-block;
}
.preis-karte li { padding: 7px 0 7px 30px; position: relative; color: var(--stone-600); }
.preis-karte li::before { content: "✓"; position: absolute; left: 2px; color: var(--salbei-700); font-weight: 800; }

.preis-karte .klein { font-size: .88rem; color: var(--stone-500); margin: 16px 0 0; }

/* --- FAQ --------------------------------------------------------------------------- */

.faq { max-width: 760px; margin: 40px auto 0; }

.faq details {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 650;
  color: var(--erde-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--amber-700);
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 18px; margin: 0; color: var(--stone-600); }

/* --- Schluss-CTA / Footer ------------------------------------------------------------ */

.schluss {
  text-align: center;
  padding: 40px 0 96px;
}
.schluss .hero-cta { justify-content: center; }

footer {
  border-top: 1px solid var(--stone-200);
  background: var(--sand-100);
  padding: 36px 0;
  font-size: .92rem;
  color: var(--stone-500);
}

.fuss {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
.fuss .logo { font-size: 1.05rem; }
.fuss nav { margin-left: auto; gap: 22px; }
.fuss a { color: var(--stone-500); }
.fuss a:hover { color: var(--amber-700); }
.fuss .hinweis { flex-basis: 100%; margin-top: 10px; font-size: .85rem; }

/* --- Problem-Sektion ---------------------------------------------------------------- */

.problem-sektion { background: var(--sand-100); }

.probleme {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.problem {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  padding: 28px;
}

.problem .problem-zahl {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--puder-700);
  margin-bottom: 12px;
}

.problem h3 { color: var(--erde-700); }
.problem p { color: var(--stone-600); font-size: .98rem; margin: 0; }

.problem-schluss {
  margin: 34px auto 0;
  max-width: 660px;
  text-align: center;
  color: var(--stone-600);
  font-size: 1.05rem;
}
.problem-schluss strong { color: var(--erde-900); }

/* --- Erdwin als Persona -------------------------------------------------------------- */

.persona {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.persona-bild {
  justify-self: center;
  background: radial-gradient(closest-side, var(--sand-100), transparent 75%);
  padding: 10px 20px 0;
  text-align: center;
}
.persona-bild svg { display: block; margin: 0 auto; }
.persona-bild .huegel {
  width: 190px; height: 22px; margin: -10px auto 0;
  background: var(--sand-200);
  border-radius: 50%;
}

.persona > div > p { color: var(--stone-600); }

.persona-liste { margin: 24px 0 0; padding: 0; list-style: none; }
.persona-liste li {
  padding: 12px 0 12px 30px;
  position: relative;
  border-top: 1px solid var(--stone-200);
  color: var(--stone-600);
  font-size: .98rem;
}
.persona-liste li:first-child { border-top: none; }
.persona-liste li::before {
  content: "→";
  position: absolute; left: 2px;
  color: var(--sand-700);
  font-weight: 700;
}
.persona-liste strong { color: var(--erde-900); }

/* --- Gewerbe-Ausblick ---------------------------------------------------------------- */

.ausblick-sektion { padding-top: 0; }

.ausblick {
  background: var(--salbei-100);
  border: 1px solid #cbdec6;
  border-radius: var(--radius);
  padding: 44px 48px;
}
.ausblick h2 { font-size: clamp(1.4rem, 2.8vw, 1.8rem); }
.ausblick p { color: var(--stone-600); max-width: 720px; }
.ausblick p:last-child { margin-bottom: 0; }

.ausblick-ehrlich {
  border-top: 1px solid rgba(59, 45, 26, .1);
  padding-top: 16px;
  font-size: .95rem;
}
.ausblick-ehrlich strong { color: var(--erde-900); }

/* --- Warteliste ---------------------------------------------------------------------- */

.warteliste-sektion { background: var(--sand-100); }

.warteliste-form {
  background: #fff;
  border: 1px solid var(--sand-300);
  border-radius: 28px;
  box-shadow: var(--schatten);
  max-width: 660px;
  margin: 40px auto 0;
  padding: 42px 44px;
}

/* Spam-Falle — für Menschen und Screenreader unsichtbar, im DOM aber vorhanden */
.honigtopf {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.feld { margin-bottom: 8px; }

.feld label {
  display: block;
  font-weight: 650;
  color: var(--erde-900);
  margin-bottom: 8px;
}

.feld input[type="email"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--sand-50);
}
.feld input[type="email"]:focus {
  outline: 2px solid var(--amber-700);
  outline-offset: 1px;
  background: #fff;
}

.form-hinweis {
  color: var(--stone-500);
  font-size: .92rem;
  margin: 20px 0 4px;
}

.wahl {
  border: none;
  padding: 0;
  margin: 22px 0 0;
}

.wahl legend {
  font-weight: 650;
  color: var(--erde-900);
  padding: 0;
  margin-bottom: 10px;
  font-size: .98rem;
}

.optionen { display: flex; flex-wrap: wrap; gap: 8px; }

.optionen label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--stone-300);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  font-size: .94rem;
  color: var(--stone-600);
  background: var(--sand-50);
  transition: border-color .15s ease, background .15s ease;
}
.optionen label:hover { border-color: var(--sand-300); background: var(--sand-100); }
.optionen input[type="radio"] { accent-color: var(--amber-700); margin: 0; }
.optionen label:has(input:checked) {
  border-color: var(--amber-700);
  background: #fff;
  color: var(--erde-900);
  font-weight: 600;
}
.optionen label:has(input:focus-visible) { outline: 2px solid var(--amber-700); outline-offset: 2px; }

.feld-hinweis {
  color: var(--stone-500);
  font-size: .88rem;
  margin: 10px 0 0;
}

.einwilligung { margin: 28px 0 22px; }

.einwilligung label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--stone-600);
  cursor: pointer;
}
.einwilligung input[type="checkbox"] {
  flex: none;
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--amber-700);
}

.btn-breit { width: 100%; border: none; font-family: inherit; }

.klein-mittig {
  font-size: .86rem;
  color: var(--stone-500);
  margin: 18px 0 0;
  text-align: center;
}

.max-karte {
  max-width: 660px;
  margin: 28px auto 0;
  background: var(--himmel-100);
  border: 1px solid var(--himmel-200);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.max-karte h3 { color: var(--himmel-900); }
.max-karte p { color: var(--stone-600); font-size: .98rem; }

/* --- Bestätigungs-/Dankeseiten ------------------------------------------------------- */

.status-seite {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 90px 0 60px;
}
.status-seite .status-icon {
  display: inline-flex;
  width: 68px; height: 68px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--salbei-300);
  color: #2f4429;
  margin-bottom: 22px;
}
.status-seite p { color: var(--stone-600); }
.status-seite .status-detail {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 30px 0;
  text-align: left;
  font-size: .95rem;
}

/* --- Blog: Artikel ------------------------------------------------------------------- */

.artikel { padding: 48px 0 80px; }
.artikel .wrap { max-width: 760px; }

.brotkrumen {
  font-size: .88rem;
  color: var(--stone-500);
  margin-bottom: 22px;
}
.brotkrumen a { color: var(--stone-500); }
.brotkrumen a:hover { color: var(--amber-700); }

.artikel h1 { margin-bottom: .3em; }

.artikel-meta {
  color: var(--stone-500);
  font-size: .93rem;
  margin-bottom: 32px;
}

.artikel h2 {
  margin-top: 1.9em;
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}
.artikel h3 {
  margin-top: 1.7em;
  font-size: 1.1rem;
  color: var(--erde-700);
}

.artikel p { color: var(--text); }
.artikel a { text-decoration: underline; text-underline-offset: 2px; }

.artikel ul, .artikel ol { color: var(--text); padding-left: 24px; }
.artikel li { margin-bottom: .55em; }

.zusammenfassung {
  background: var(--himmel-100);
  border: 1px solid var(--himmel-200);
  border-left: 4px solid var(--himmel-700);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin: 0 0 34px;
}
.zusammenfassung p { margin: 0; }

.tabelle-scroll {
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-sm);
  background: #fff;
}

.artikel table {
  border-collapse: collapse;
  width: 100%;
  min-width: 640px;
  font-size: .93rem;
}
.artikel thead th {
  background: var(--sand-100);
  color: var(--erde-900);
  text-align: left;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid var(--stone-200);
  white-space: nowrap;
}
.artikel tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--stone-200);
  color: var(--stone-600);
  vertical-align: top;
}
.artikel tbody tr:last-child td { border-bottom: none; }

.entscheidung {
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 26px 0;
}
.entscheidung p { margin-bottom: .9em; font-size: .97rem; }
.entscheidung p:last-child { margin-bottom: 0; }
.entscheidung strong { color: var(--erde-900); }

.artikel-cta {
  background: var(--erde-900);
  color: var(--sand-100);
  border-radius: var(--radius);
  padding: 34px 36px;
  margin: 44px 0 34px;
}
.artikel-cta h3 { color: var(--sand-50); margin-top: 0; }
.artikel-cta p { color: var(--sand-200); font-size: .97rem; }

.quellen {
  border-top: 1px solid var(--stone-200);
  padding-top: 26px;
  font-size: .91rem;
  color: var(--stone-500);
}
.quellen h3 { margin-top: 0; font-size: 1rem; }
.quellen p, .quellen li { color: var(--stone-500); }
.quellen a { color: var(--stone-600); }

.offenlegung {
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-top: 20px;
}

/* --- Blog: Übersicht ------------------------------------------------------------------ */

.artikel-liste { margin-top: 40px; display: grid; gap: 22px; }

.artikel-karte {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 30px 32px;
}
.artikel-karte h3 { margin-top: .2em; font-size: 1.25rem; }
.artikel-karte h3 a { color: var(--erde-900); }
.artikel-karte h3 a:hover { color: var(--amber-700); text-decoration: none; }
.artikel-karte p { color: var(--stone-600); font-size: .98rem; }
.artikel-karte p:last-child { margin-bottom: 0; }
.artikel-datum {
  font-size: .85rem;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 0;
}

/* --- Responsiv ------------------------------------------------------------------------ */

@media (max-width: 920px) {
  section { padding: 64px 0; }
  .schritte, .features, .probleme { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-maskottchen { display: none; }
  .privatsphaere { grid-template-columns: 1fr; padding: 48px 36px; gap: 36px; }
  .schloss { justify-self: start; }
  .persona { grid-template-columns: 1fr; gap: 28px; }
  .persona-bild { display: none; }
  nav.hauptnav .nav-link { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .schritte, .features, .zwei-spalten, .einblicke, .probleme { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .preis-karte { padding: 34px 24px; }
  .privatsphaere { padding: 40px 24px; border-radius: 22px; }
  .schloss { padding: 32px 36px; }
  .fuss nav { margin-left: 0; }
  .warteliste-form { padding: 30px 22px; border-radius: 22px; }
  .ausblick { padding: 32px 24px; }
  .max-karte { padding: 26px 22px; }
  .optionen label { font-size: .9rem; padding: 7px 13px; }
}
