/* ==========================================================================
   pv-rotenburg.com — eigenstaendiges Stylesheet, keine externen Fonts/Deps.
   Tokens angelehnt an marketing-lp/src/styles/global.css (Marken-Trio
   Schwarz+Rostrot+Gold), aber bewusst System-Font-Stack statt Google-Fonts-
   Link — die Seite laedt explizit nichts Externes (siehe Datenschutz §4).
   Fest hell, keine prefers-color-scheme-Regel.
   ========================================================================== */
:root {
  --rust: #c06648;
  --rust-deep: #a5502f;
  --rust-deep-h: #8c4225;
  --ink: #1a1a1a;
  --ink-2: #333;
  --ink-3: #595959;
  --line: #e0e0e0;
  --bg-soft: #f7f7f7;
  --bg-soft-2: #f1e9e0;
  --white: #fff;
  --success: #2e7d32;
  --error: #c62828;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-content: 1180px;
  --gutter: 24px;
  --section-pad: clamp(56px, 7vw, 88px);
  --r-btn: 6px;
  --r-card: 8px;
  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 8px 24px rgba(0, 0, 0, 0.14);
  --ease: cubic-bezier(0.2, 0, 0, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: var(--font);
  color: var(--ink-2);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  font-size: 17px;
  color-scheme: light; /* fest hell, auch im OS-Dark-Modus */
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--rust-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
a:hover {
  color: var(--rust-deep-h);
}
:focus-visible {
  outline: 2px solid var(--rust-deep);
  outline-offset: 2px;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font);
  color: #000;
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(32px, 5.4vw, 58px);
}
h2 {
  font-size: clamp(26px, 3.6vw, 38px);
}
h3 {
  font-size: clamp(19px, 2.2vw, 23px);
}
p {
  margin: 0 0 1em;
}
ul,
ol {
  padding-left: 1.2em;
}
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-btn);
  z-index: 200;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 8px;
}

.wrap {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-pad) 0;
}
.section--soft {
  background: var(--bg-soft);
}
.section--band {
  background: var(--bg-soft-2);
}
.section__intro {
  max-width: 68ch;
}
.section__intro p {
  font-size: 17px;
  color: var(--ink-2);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 26px;
  border: 2px solid transparent;
  border-radius: var(--r-btn);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--rust-deep);
  color: #fff;
  border-color: var(--rust-deep);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--rust-deep-h);
  border-color: var(--rust-deep-h);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--ink);
  color: #fff;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

/* ---------------------------------------------------------------------- */
/* Header */
/* ---------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
}
.site-header__logo img {
  height: 34px;
  width: auto;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header__phone {
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  white-space: nowrap;
}
.site-header__phone:hover,
.site-header__phone:focus-visible {
  color: var(--rust-deep);
  border-color: var(--rust-deep);
}
@media (max-width: 560px) {
  .site-header__phone {
    display: none;
  }
}

/* ---------------------------------------------------------------------- */
/* Hero */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(18, 15, 12, 0.86) 0%,
    rgba(18, 15, 12, 0.68) 38%,
    rgba(18, 15, 12, 0.28) 68%,
    rgba(18, 15, 12, 0.12) 100%
  );
}
.hero__stage {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 700px) {
  .hero__stage {
    aspect-ratio: 4 / 3;
  }
  .hero__scrim {
    background: linear-gradient(
      to top,
      rgba(18, 15, 12, 0.92) 0%,
      rgba(18, 15, 12, 0.74) 46%,
      rgba(18, 15, 12, 0.42) 78%,
      rgba(18, 15, 12, 0.28) 100%
    );
  }
}
.hero__inner {
  padding: clamp(28px, 5vw, 56px) var(--gutter) clamp(32px, 5vw, 56px);
  max-width: var(--max-content);
  margin: 0 auto;
  width: 100%;
}
.hero__content {
  max-width: 640px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 0.4em;
}
/* "Photovoltaik in Rotenburg an der Fulda: PV-Anlage mit Montage" ist bewusst
   lang (BRIEF.md §16 Punkt 1 — Wortgleichheit mit dem Konkurrenz-Claim sticht
   die Anti-Slop-2-Zeilen-Regel). Auf sehr schmalen Screens trotzdem die
   --lang-Untergrenze aus dem Bestand nachbilden (stack_notizen "Hero-H1
   2-Zeilen vs Brand-46px-Mobil"), sonst werden es 4-5 Zeilen. */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 27px;
  }
}
.hero__lead {
  font-size: clamp(16px, 1.6vw, 18.5px);
  color: rgba(255, 255, 255, 0.94);
  max-width: 58ch;
  margin: 0 0 28px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero__trust {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  list-style: none;
  margin-left: 0;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}
.hero__projekte {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 58ch;
  margin: 0 0 26px;
}

/* ---------------------------------------------------------------------- */
/* Kosten-Block */
/* ---------------------------------------------------------------------- */
.kosten-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  counter-reset: kosten;
  border-top: 1px solid var(--line);
}
.kosten-list li {
  counter-increment: kosten;
  padding: 22px 0 22px 52px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.kosten-list li::before {
  content: counter(kosten);
  position: absolute;
  left: 0;
  top: 22px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--rust);
  color: var(--rust-deep);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kosten-list strong {
  color: #000;
}
.kosten-list p {
  margin: 4px 0 0;
  color: var(--ink-2);
  font-size: 15.5px;
}

.kosten-analyse {
  margin: 40px 0 0;
  max-width: 68ch;
}
.kosten-analyse h3 {
  margin-bottom: 0.6em;
}
.kosten-analyse p {
  font-size: 16px;
  color: var(--ink-2);
}
.kosten-analyse__vorspann {
  margin-bottom: 0.4em;
  font-weight: 500;
  color: var(--ink);
}
.kosten-analyse__hinweis {
  color: var(--ink-3);
  font-size: 15px;
}
.kosten-groessen {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  border-top: 1px solid var(--line);
}
.kosten-groessen li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--ink-2);
}
.kosten-groessen strong {
  color: #000;
}
.referenzhaus-liste {
  list-style: none;
  margin: 0 0 1em;
  padding: 0;
  border-top: 1px solid var(--line);
}
.referenzhaus-liste li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  color: var(--ink-2);
}
.referenzhaus-liste__preis {
  font-weight: 700;
  color: var(--rust-deep);
  font-size: 17px;
}

.kosten-bewegung {
  margin: 40px 0 0;
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--r-card);
}
.kosten-bewegung dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust-deep);
  margin: 0 0 4px;
}
.kosten-bewegung dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 15.5px;
}
.kosten-bewegung div + div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.kosten-kasten {
  margin: 32px 0 0;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  background: var(--white);
}
.kosten-kasten p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-2);
}
.kosten-abschluss {
  margin-top: 32px;
  font-size: 17px;
}
.kosten-abschluss a {
  font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* Split-Sektionen (Ansprechpartner / Angebot) */
/* ---------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1.35fr 1fr;
    gap: 56px;
  }
  .split--reverse {
    grid-template-columns: 1fr 1.35fr;
  }
  .split--reverse .split__media {
    order: -1;
  }
}
.split__text p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 62ch;
}
.split__list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.split__list li {
  padding-left: 26px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink-2);
}
.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
}
.split__media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-2);
}

/* ---------------------------------------------------------------------- */
/* Angebot-Liste + Technik-Absatz */
/* ---------------------------------------------------------------------- */
.angebot-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.angebot-list li {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.angebot-list li:last-child {
  border-bottom: 0;
}
.angebot-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rust-deep);
  font-weight: 700;
}
.technik-absatz {
  margin-top: 32px;
  padding: 24px 26px;
  background: var(--bg-soft);
  border-radius: var(--r-card);
}
.technik-absatz p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink-2);
}

/* ---------------------------------------------------------------------- */
/* Ablauf-Karten (Block 4) */
/* ---------------------------------------------------------------------- */
.ablauf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
  counter-reset: ablauf;
}
@media (min-width: 700px) {
  .ablauf-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .ablauf-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ablauf-card {
  counter-increment: ablauf;
  position: relative;
  padding: 28px 26px 26px;
  padding-top: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}
.ablauf-card::before {
  content: counter(ablauf, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 26px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--rust-deep);
}
.ablauf-card h3 {
  font-size: 19px;
  margin: 0 0 8px;
}
.ablauf-card p {
  margin: 0;
  color: var(--ink-3);
  font-size: 15.5px;
}

/* ---------------------------------------------------------------------- */
/* Finanzierung (Block 5) */
/* ---------------------------------------------------------------------- */
.finanzierung-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 62ch;
}
.finanzierung-list li {
  padding-left: 26px;
  position: relative;
  font-size: 15.5px;
  color: var(--ink-2);
}
.finanzierung-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rust);
}
.finanzierung-disclaimer {
  margin-top: 28px;
  max-width: 62ch;
  font-size: 15px;
  color: var(--ink-3);
}
.finanzierung-link {
  margin-top: 4px;
}
.finanzierung-link a {
  font-weight: 500;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------- */
/* Nachrüsten-Band */
/* ---------------------------------------------------------------------- */
.nachruesten .section__intro {
  max-width: 72ch;
}
.nachruesten p {
  font-size: 16.5px;
  color: var(--ink-2);
}

/* ---------------------------------------------------------------------- */
/* Fachbetrieb + Testimonials + Foto */
/* ---------------------------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 36px 0 0;
}
@media (min-width: 720px) {
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  padding: 22px 26px;
  border-radius: 0 var(--r-card) var(--r-card) 0;
}
.quote p {
  font-style: italic;
  color: var(--ink-2);
  margin: 0 0 10px;
  font-size: 16.5px;
}
.quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}
.fachbetrieb-foto {
  margin-top: 44px;
}
.fachbetrieb-foto img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-card);
}
.fachbetrieb-foto figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-3);
}

/* ---------------------------------------------------------------------- */
/* FAQ */
/* ---------------------------------------------------------------------- */
.faq {
  margin-top: 36px;
  max-width: 900px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq details[open] {
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: var(--r-card);
  border-bottom: none;
  margin-bottom: 8px;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  color: #000;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--rust-deep);
  flex-shrink: 0;
}
.faq details[open] summary::after {
  content: "\2212";
}
.faq details p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 15.5px;
}

/* ---------------------------------------------------------------------- */
/* Schlussaufruf + Formular */
/* ---------------------------------------------------------------------- */
.formular-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) {
  .formular-wrap {
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
  }
}
.formular-intro p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 52ch;
}
.formular-intro a {
  font-weight: 500;
}
.formular-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-1);
  padding: clamp(24px, 4vw, 36px);
}

.mform {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mform__progress {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.mform__progress-bar {
  height: 100%;
  background: var(--rust);
  transition: width 0.25s ease-out;
}
.mform__steplabel {
  font-size: 13px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mform__step {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mform__step[hidden] {
  display: none;
}
.mform__step legend {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  padding: 0;
}
.mform__choices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.mform__choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.mform__choice:hover,
.mform__choice:focus-visible {
  border-color: var(--rust);
  background: #fdf5f2;
  box-shadow: inset 3px 0 0 var(--rust);
}
.mform__choice-label {
  color: var(--ink);
}
.mform__choice-arrow {
  color: var(--rust-deep);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.mform__choice:hover .mform__choice-arrow,
.mform__choice:focus-visible .mform__choice-arrow {
  transform: translateX(3px);
}
.mform__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mform__field label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.mform__input,
.mform__textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 16px;
  background: var(--white);
  color: var(--ink-2);
}
.mform__textarea {
  min-height: 96px;
  resize: vertical;
}
.mform__input:focus,
.mform__textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(192, 102, 72, 0.15);
}
.mform__hint {
  font-size: 13px;
  color: var(--ink-3);
}
.mform__optional {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 0.9em;
}
.mform__radiogroup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.mform__radiogroup:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.mform__rgroup-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.mform__radiogroup label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 6px 0;
  min-height: 44px;
}
.mform__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}
.mform__back {
  background: transparent;
  border: 0;
  color: var(--ink-3);
  cursor: pointer;
  padding: 8px 4px;
  font-size: 14px;
  font-family: var(--font);
  min-height: 44px;
}
.mform__back:hover {
  color: var(--ink);
}
.mform__submit {
  border: 0;
  cursor: pointer;
}
.mform__consent-note {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 4px 0 0;
}
.mform__consent-note a {
  color: var(--rust-deep);
}
.mform__err {
  border-color: #b91c1c !important;
}
.mform__msg {
  font-size: 13px;
  min-height: 20px;
}
.mform__msg--ok {
  color: var(--success);
}
.mform__msg--err {
  color: var(--error);
}
.mform__step--result {
  text-align: center;
  padding: 16px 0;
}
.mform__check {
  font-size: 44px;
  color: var(--success);
  line-height: 1;
  margin-bottom: 12px;
}
.mform__result h3 {
  margin: 0 0 8px;
}
.mform__step--dq {
  padding: 8px 0;
}
.mform__dq {
  border-left: 4px solid var(--rust);
  padding: 12px 0 12px 20px;
}
.mform__dq h3 {
  margin: 0 0 12px;
  font-size: 19px;
  color: #000;
}
.mform__dq p {
  margin: 0 0 12px;
  color: var(--ink-2);
  line-height: 1.5;
}
.mform__dq ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--ink-2);
}
.mform__dq ul li {
  margin-bottom: 6px;
}
.mform__dq-note {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 16px;
}

/* ---------------------------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  padding: 48px 0 28px;
  font-size: 15px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}
.site-footer a:hover {
  color: #fff;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
  }
}
.site-footer h3 {
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.site-footer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}
.site-footer__legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}
.site-footer__cookienote {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------------------- */
/* Rechtsseiten (Impressum / Datenschutz) */
/* ---------------------------------------------------------------------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--gutter);
}
.legal h1 {
  margin-bottom: 0.6em;
}
.legal h2 {
  font-size: 21px;
  margin-top: 1.6em;
}
.legal p,
.legal li {
  color: var(--ink-2);
  font-size: 16px;
}
.legal a {
  word-break: break-word;
}

/* ---------------------------------------------------------------------- */
/* 404 */
/* ---------------------------------------------------------------------- */
.notfound {
  padding: clamp(64px, 12vw, 140px) var(--gutter);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.notfound p {
  color: var(--ink-2);
  font-size: 17px;
}

/* Reduced motion: bewusst keine Motion in dieser Microsite ausser Standard-
   Transitions (Hover/Focus) — nichts abzuschalten, aber die Regel bleibt
   dokumentiert. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
