/* ============================================================
   QLAZURO: Die Lebenslandkarte · Landingpage
   Farben: Lapis #0A1A36 · Obsidian #0E0F14 · Pyrit-Gold #D4AF37
           Quartz #F2F3F5 · Ivory #F5F1E8
   Typo:   Cinzel (Headlines) · Inter (Text)
   ============================================================ */

:root {
  --lapis: #0A1A36;
  --lapis-tief: #071127;
  --obsidian: #0E0F14;
  --gold: #D4AF37;
  --gold-hell: #E6C75C;
  --quartz: #F2F3F5;
  --ivory: #F5F1E8;
  --tinte: #1C2333;
  --grau: #5C6470;
  --linie-gold: rgba(212, 175, 55, 0.45);
  --linie-hell: rgba(242, 243, 245, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--quartz);
  background: var(--lapis);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

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

a { color: inherit; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-schmal { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ---------- Goldene Trennlinie / Ornament ---------- */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto 28px;
}
.ornament::before, .ornament::after {
  content: ""; display: block; width: 56px; height: 1px;
  background: var(--linie-gold);
}
.ornament svg { flex: none; }

/* ---------- Header ---------- */
.kopf {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  max-width: 1180px; margin: 0 auto;
}
.wortmarke {
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: 19px; letter-spacing: 0.34em;
  color: var(--quartz); text-decoration: none;
}
.wortmarke span { color: var(--gold); }
.kopf-cta {
  font-size: 13px; letter-spacing: 0.08em; text-decoration: none;
  color: var(--gold-hell);
  border: 1px solid var(--linie-gold);
  padding: 9px 18px; border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.kopf-cta:hover { background: var(--gold); color: var(--obsidian); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 110px 24px 72px;
  isolation: isolate;
  overflow: hidden;
}
.hero-bild {
  position: absolute; inset: 0; z-index: -2;
  background: url("img/hero-lapis.jpg") center 30% / cover no-repeat var(--lapis);
  background-image: image-set(url("img/hero-lapis.webp") type("image/webp"),
                              url("img/hero-lapis.jpg") type("image/jpeg"));
}
.hero-schleier {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 130% 90% at 50% 42%, rgba(7, 17, 39, 0.42) 0%, rgba(7, 17, 39, 0.82) 68%, rgba(7, 17, 39, 0.96) 100%),
    linear-gradient(to bottom, rgba(7, 17, 39, 0.55), rgba(7, 17, 39, 0.38) 40%, rgba(10, 26, 54, 0.97) 96%);
}
.hero-q { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(34px, 6.4vw, 64px);
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
  margin-bottom: 22px;
  max-width: 17ch;
}
.hero-sub {
  max-width: 620px;
  font-size: clamp(16px, 2.1vw, 19px);
  font-weight: 300;
  color: var(--quartz);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.6);
  margin-bottom: 38px;
}
.hero-marke {
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-hell); margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600; font-size: 16px; letter-spacing: 0.03em;
  text-decoration: none; text-align: center;
  padding: 17px 38px;
  border-radius: 2px;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn-gold {
  background: var(--gold); color: #14100A;
  box-shadow: 0 6px 30px rgba(212, 175, 55, 0.28);
}
.btn-gold:hover { background: var(--gold-hell); transform: translateY(-1px); }
.btn-linie {
  border: 1px solid var(--linie-gold);
  color: var(--gold-hell); background: transparent;
}
.btn-linie:hover { background: rgba(212, 175, 55, 0.1); }
.btn[aria-disabled="true"] { opacity: 0.45; pointer-events: none; }

.mikro {
  font-size: 13.5px; color: rgba(242, 243, 245, 0.75);
  margin-top: 16px; letter-spacing: 0.02em;
}
.sekundaer {
  display: inline-block; margin-top: 34px;
  font-size: 14.5px; color: rgba(242, 243, 245, 0.82);
  text-decoration: none; border-bottom: 1px solid var(--linie-gold);
  padding-bottom: 3px;
}
.sekundaer:hover { color: var(--gold-hell); }

/* ---------- Sektionen allgemein ---------- */
section { padding: 88px 0; }
.s-lapis { background: var(--lapis); }
.s-obsidian { background: var(--obsidian); }
.s-ivory { background: var(--ivory); color: var(--tinte); }

.s-kopf { text-align: center; margin-bottom: 56px; }
.s-kopf h2 {
  font-size: clamp(25px, 4vw, 38px);
  margin-bottom: 16px;
}
.s-ivory h2 { color: var(--lapis); }
.s-intro { max-width: 600px; margin: 0 auto; font-size: 17px; }
.s-ivory .s-intro { color: var(--grau); }

/* ---------- Vorrede (Problem/Haltung) ---------- */
.vorrede { padding: 96px 0; }
.vorrede p {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.85; color: var(--tinte);
  margin-bottom: 26px; font-weight: 300;
}
.vorrede p strong { font-weight: 600; color: var(--lapis); }
.vorrede p:last-child { margin-bottom: 0; }

/* ---------- Beweis: 3 Schritte ---------- */
.schritte {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  margin-bottom: 56px;
}
.schritt { border-top: 1px solid var(--linie-gold); padding-top: 26px; }
.schritt-nr {
  font-family: "Cinzel", serif; font-size: 15px; letter-spacing: 0.3em;
  color: var(--gold); margin-bottom: 12px;
}
.schritt h3 { font-size: 21px; margin-bottom: 12px; color: #fff; }
.schritt p { font-size: 15.5px; color: rgba(242, 243, 245, 0.82); }
.schritt .rechenweg {
  display: inline-block; margin-top: 10px;
  font-family: "SF Mono", "Consolas", monospace; font-size: 13px;
  color: var(--gold-hell);
  border: 1px solid var(--linie-hell); border-radius: 2px;
  padding: 8px 12px; background: rgba(14, 15, 20, 0.5);
}

.kasten {
  border: 1px solid var(--linie-hell);
  border-left: 2px solid var(--gold);
  padding: 26px 30px;
  font-size: 15px; color: rgba(242, 243, 245, 0.85);
  background: rgba(14, 15, 20, 0.35);
}
.kasten strong { color: #fff; }

/* ---------- Musterseiten-Galerie ---------- */
.galerie {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 340px);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 24px 26px;
  max-width: 1180px; margin: 0 auto;
  scrollbar-color: var(--gold) rgba(255,255,255,0.06);
}
.galerie::-webkit-scrollbar { height: 6px; }
.galerie::-webkit-scrollbar-thumb { background: rgba(212,175,55,0.5); border-radius: 3px; }
.galerie::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }

.muster { scroll-snap-align: center; }
.muster-seite {
  position: relative;
  aspect-ratio: 210 / 297;               /* A4-Hochformat wie das PDF */
  border: 1px solid var(--linie-hell);
  border-radius: 2px;
  overflow: hidden;
  background: var(--obsidian);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.muster-bild {
  position: absolute; inset: 0; z-index: 3;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.muster figcaption {
  margin-top: 16px;
  font-size: 13.5px; line-height: 1.6;
  color: rgba(242, 243, 245, 0.72);
}
.muster figcaption strong {
  display: block; font-family: "Cinzel", serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em; color: var(--quartz);
  margin-bottom: 5px;
}
.wisch-hinweis {
  text-align: center; font-size: 12.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(242,243,245,0.5);
  margin-top: 6px;
}
.muster-pdf { text-align: center; margin-top: 18px; }
.muster-pdf a {
  display: inline-block;
  font-size: 14px; letter-spacing: 0.06em;
  color: var(--gold-hell);
  border-bottom: 1px solid rgba(212,175,55,0.45);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.muster-pdf a:hover { color: #fff; border-color: var(--gold); }

/* ---------- Vergleichstabelle ---------- */
.tabelle-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vergleich {
  width: 100%; min-width: 780px;
  border-collapse: collapse;
  font-size: 14.5px; line-height: 1.55;
}
.vergleich th, .vergleich td {
  padding: 16px 18px;
  text-align: left; vertical-align: top;
  border-bottom: 1px solid rgba(28, 35, 51, 0.14);
}
.vergleich thead th {
  font-family: "Cinzel", serif; font-size: 14px; letter-spacing: 0.04em;
  color: var(--lapis); border-bottom: 2px solid var(--lapis);
}
.vergleich tbody th {
  font-weight: 600; color: var(--lapis); white-space: nowrap;
  font-size: 13.5px; letter-spacing: 0.04em;
}
.vergleich td { color: #3D4552; }
.vergleich .sp-q {
  background: rgba(212, 175, 55, 0.1);
  border-left: 1px solid rgba(212, 175, 55, 0.35);
  border-right: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--tinte); font-weight: 500;
}
.vergleich thead .sp-q { border-top: 2px solid var(--gold); color: var(--lapis); }
.vergleich tbody th,
.vergleich thead th:first-child {
  position: sticky; left: 0;
  background: var(--ivory);
  box-shadow: 1px 0 0 rgba(28,35,51,0.12);
}
.tabelle-fuss {
  max-width: 640px; margin: 34px auto 0; text-align: center;
  font-size: 15px; color: var(--grau); font-style: italic;
}

/* Mobil: Tabelle wird zu gestapelten Karten: die QLAZURO-Spalte
   bleibt immer sichtbar, kein seitliches Scrollen noetig. */
@media (max-width: 759px) {
  .vergleich { min-width: 0; }
  .vergleich thead { display: none; }
  .vergleich tbody tr {
    display: block;
    margin-bottom: 22px;
    border: 1px solid rgba(28, 35, 51, 0.16);
    border-radius: 2px;
    background: #FDFCF8;
    overflow: hidden;
  }
  .vergleich tbody th {
    display: block; position: static; box-shadow: none;
    background: var(--lapis); color: var(--ivory);
    font-family: "Cinzel", serif; letter-spacing: 0.08em;
    padding: 12px 18px; border: none; white-space: normal;
  }
  .vergleich td {
    display: block;
    padding: 12px 18px 14px;
    border-bottom: 1px solid rgba(28, 35, 51, 0.1);
  }
  .vergleich td::before {
    content: attr(data-l);
    display: block;
    font-size: 10.5px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--grau);
    margin-bottom: 3px;
  }
  .vergleich td.sp-q {
    border-left: 2px solid var(--gold);
    border-right: none; border-bottom: none;
    background: rgba(212, 175, 55, 0.12);
  }
  .vergleich td.sp-q::before { color: #8A6D14; }
}

/* ---------- Ablauf: 4 Stationen ---------- */
.route {
  display: grid; grid-template-columns: 1fr; gap: 0;
  position: relative;
}
.station {
  position: relative;
  padding: 0 0 44px 42px;
}
.station::before {                       /* vertikale Goldlinie */
  content: ""; position: absolute; left: 10px; top: 8px; bottom: -6px;
  width: 1px; background: var(--linie-gold);
}
.station:last-child::before { display: none; }
.station::after {                        /* Stations-Punkt */
  content: ""; position: absolute; left: 6px; top: 7px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lapis); border: 1.5px solid var(--gold);
}
.station h3 {
  font-size: 18px; color: #fff; margin-bottom: 8px;
}
.station h3 .st-nr { color: var(--gold); margin-right: 8px; }
.station p { font-size: 15.5px; color: rgba(242, 243, 245, 0.82); max-width: 520px; }

/* ---------- Value Stack + Preis ---------- */
/* ---------- Paket-Karten: die fuenf Bestandteile ---------- */
.pakete-intro { margin-bottom: 34px; }
.pakete {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.paket {
  border: 1px solid var(--linie-hell);
  border-radius: 3px;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
}
.paket:hover { border-color: rgba(212,175,55,0.55); transform: translateY(-2px); }
/* Der Atlas selbst ist der Kern: er bekommt die volle Breite und den Goldrand. */
.paket-haupt {
  grid-column: 1 / -1;
  border-color: rgba(212,175,55,0.5);
  background: linear-gradient(180deg, rgba(212,175,55,0.09), rgba(212,175,55,0.02));
}
.paket-kopf {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--linie-hell);
}
.paket-nr {
  font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-hell);
}
.paket-wert {
  font-family: "Cinzel", serif; font-size: 15px;
  color: rgba(242,243,245,0.6); white-space: nowrap;
}
.paket-haupt .paket-wert { color: var(--gold-hell); font-weight: 600; }
.paket h3 {
  font-family: "Cinzel", serif; font-size: 17px; font-weight: 600;
  color: #fff; margin-bottom: 8px; line-height: 1.3;
}
.paket-haupt h3 { font-size: clamp(19px, 2.6vw, 23px); }
.paket p { font-size: 14.5px; line-height: 1.6; color: rgba(242,243,245,0.78); }

/* ---------- Preis-Anker: Einzelwert gegen Early-Bird ---------- */
.preis-anker {
  text-align: center; margin: 44px 0 10px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 38px 28px 34px;
  background: linear-gradient(180deg, rgba(212,175,55,0.07), rgba(212,175,55,0.015));
}
.preis-label {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-hell); margin-bottom: 20px;
}
.preis-gegenueber {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 5vw, 40px); flex-wrap: wrap;
}
.preis-alt { display: flex; flex-direction: column; gap: 6px; }
.preis-alt-zahl {
  font-family: "Cinzel", serif; font-size: clamp(26px, 5vw, 38px);
  color: rgba(242,243,245,0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(212,175,55,0.7);
  text-decoration-thickness: 2px;
}
.preis-alt-label,
.preis-neu-label {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,243,245,0.55);
}
.preis-pfeil { font-size: 26px; color: var(--gold); line-height: 1; }
/* Schmale Screens: die beiden Stufen stapeln, der Pfeil zeigt nach unten. */
@media (max-width: 560px) {
  .preis-gegenueber { flex-direction: column; gap: 14px; }
  .preis-alt { align-items: center; }
  .preis-pfeil { transform: rotate(90deg); }
}
.preis-neu { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.preis-badge {
  align-self: center;
  font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--obsidian); background: var(--gold);
  padding: 4px 12px; border-radius: 2px;
}
.preis-zahl {
  font-family: "Cinzel", serif; font-weight: 700;
  font-size: clamp(52px, 9vw, 84px); color: #fff; line-height: 1;
}
.preis-zahl .euro { color: var(--gold); }
.preis-satz {
  margin: 22px auto 0; max-width: 560px;
  font-size: 15px; line-height: 1.65; color: rgba(242,243,245,0.8);
}
.preis-anker .cta-paar { margin-top: 26px; }
.preis-mikro {
  margin-top: 16px; font-size: 12.5px; letter-spacing: 0.06em;
  color: rgba(242,243,245,0.55);
}
.cta-paar {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
}
/* Hinweisband im Vorschau-Modus (?vorschau=1) */
.vorschau-band {
  position: sticky; top: 0; z-index: 99;
  background: var(--gold); color: #14100A;
  font-size: 13px; line-height: 1.45; text-align: center;
  padding: 9px 16px; letter-spacing: 0.02em;
}
.vorschau-band a { color: #14100A; text-decoration: underline; font-weight: 600; }

/* Kauf-Button ohne gesetzten Stripe-Link */
.btn-inaktiv {
  opacity: 0.5;
  cursor: not-allowed;
  background: transparent;
  border: 1px dashed rgba(212,175,55,0.6);
  color: var(--gold-hell);
}
.btn-inaktiv:hover { transform: none; background: transparent; }

/* Garantie */
.garantie {
  background: var(--ivory); color: var(--tinte);
  border-radius: 2px;
  padding: 38px 34px;
  margin-top: 54px;
  max-width: 660px; margin-left: auto; margin-right: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border-top: 2px solid var(--gold);
}
.garantie h3 {
  font-size: 19px; color: var(--lapis); line-height: 1.5; margin-bottom: 14px;
}
.garantie p { font-size: 15px; color: var(--grau); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(28, 35, 51, 0.16);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 22px 4px;
  font-family: "Cinzel", serif; font-weight: 600;
  font-size: 16.5px; color: var(--lapis);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: "Inter", sans-serif; font-weight: 300;
  font-size: 22px; color: var(--gold); flex: none; line-height: 1;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 4px 26px;
  font-size: 15.5px; color: #3D4552;
  max-width: 700px;
}

/* ---------- Schluss-CTA ---------- */
.schluss {
  position: relative; isolation: isolate;
  text-align: center;
  padding: 130px 24px;
  overflow: hidden;
}
.schluss-bild {
  position: absolute; inset: 0; z-index: -2;
  background: url("img/labradorit.jpg") center / cover no-repeat var(--obsidian);
  background-image: image-set(url("img/labradorit.webp") type("image/webp"),
                              url("img/labradorit.jpg") type("image/jpeg"));
}
.schluss-schleier {
  position: absolute; inset: 0; z-index: -1;
  background: rgba(7, 12, 24, 0.82);
}
.schluss-zitat {
  font-family: "Cinzel", serif; font-size: clamp(19px, 3.4vw, 28px);
  font-weight: 400; letter-spacing: 0.12em;
  color: var(--gold-hell); margin-bottom: 34px;
}
.schluss h2 { font-size: clamp(28px, 5vw, 46px); color: #fff; margin-bottom: 18px; }
.schluss-sub {
  max-width: 560px; margin: 0 auto 40px;
  font-size: 16.5px; font-weight: 300; color: rgba(242, 243, 245, 0.88);
}

/* ---------- Footer ---------- */
footer {
  background: var(--obsidian);
  border-top: 1px solid var(--linie-hell);
  padding: 60px 0 44px;
  font-size: 13px; color: rgba(242, 243, 245, 0.6);
}
.fuss-spalten {
  display: grid; grid-template-columns: 1fr; gap: 36px;
  margin-bottom: 40px;
}
.fuss-spalten h4 {
  font-family: "Cinzel", serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.fuss-spalten a { color: rgba(242, 243, 245, 0.75); text-decoration: none; }
.fuss-spalten a:hover { color: var(--gold-hell); }
.fuss-recht li { list-style: none; margin-bottom: 8px; }
.fuss-pflicht p { margin-bottom: 10px; line-height: 1.65; }
.fuss-ende {
  border-top: 1px solid var(--linie-hell);
  padding-top: 24px; text-align: center;
  font-size: 12px; color: rgba(242, 243, 245, 0.4);
  letter-spacing: 0.06em;
}

/* ============================================================
   Rechtsseiten (Impressum, Datenschutz, AGB, Widerruf)
   ============================================================ */
.rechtsseite { background: var(--ivory); color: var(--tinte); min-height: 100vh; }
.recht-kopf {
  background: var(--lapis); padding: 26px 0;
}
.recht-kopf .wrap-schmal { display: flex; justify-content: space-between; align-items: center; }
.recht-kopf a.zurueck {
  font-size: 13px; color: var(--gold-hell); text-decoration: none;
  letter-spacing: 0.06em;
}
.recht-inhalt { padding: 64px 0 90px; }
.recht-inhalt h1 {
  font-size: clamp(26px, 4.5vw, 36px); color: var(--lapis); margin-bottom: 10px;
}
.recht-stand { font-size: 13px; color: var(--grau); margin-bottom: 42px; }
.recht-inhalt h2 {
  font-size: 20px; color: var(--lapis);
  margin: 42px 0 14px;
  padding-top: 18px; border-top: 1px solid rgba(28,35,51,0.12);
}
.recht-inhalt h3 { font-size: 16px; color: var(--lapis); margin: 24px 0 8px; font-family: "Inter", sans-serif; font-weight: 600; }
.recht-inhalt p, .recht-inhalt li { font-size: 15.5px; color: #3D4552; margin-bottom: 12px; }
.recht-inhalt ul, .recht-inhalt ol { padding-left: 22px; margin-bottom: 16px; }
.recht-inhalt .platzhalter {
  background: rgba(212, 175, 55, 0.18);
  border-bottom: 1px dashed var(--gold);
  padding: 0 3px; font-weight: 600; color: #7A5E10;
}
.recht-hinweis {
  border: 1px solid var(--gold); background: rgba(212,175,55,0.08);
  padding: 16px 20px; font-size: 14px; margin-bottom: 36px; color: #6b5310;
}
.recht-kasten {
  border: 1px solid rgba(28,35,51,0.25);
  padding: 22px 26px; margin: 20px 0;
  background: #FDFCF8; font-size: 15px;
}
.recht-fuss {
  background: var(--lapis); color: rgba(242,243,245,0.6);
  padding: 30px 0; font-size: 12.5px; text-align: center;
}
.recht-fuss a { color: rgba(242,243,245,0.75); }

/* ============================================================
   Desktop
   ============================================================ */
@media (min-width: 760px) {
  section { padding: 110px 0; }

  .schritte { grid-template-columns: repeat(3, 1fr); gap: 44px; }

  .galerie { grid-auto-columns: 300px; padding-bottom: 30px; }

  .route {
    grid-template-columns: repeat(4, 1fr);
    gap: 38px;
    padding-top: 22px;
  }
  .station { padding: 30px 0 0; }
  .station::before {
    left: 12px; right: -38px; top: 0; bottom: auto;
    width: auto; height: 1px;
  }
  .station:last-child::before { display: block; right: 0; }
  .station::after { left: 0; top: -4px; }

  .preis-anker { padding: 52px 56px 46px; }

  .fuss-spalten { grid-template-columns: 1.1fr 0.9fr 1.6fr; gap: 48px; }
}

@media (min-width: 1100px) {
  .galerie { grid-auto-columns: 320px; }
}
