:root {
  --bg: #e6ebf0;
  --bg-soft: #dfe6ee;
  --card: #ffffff;
  --ink: #1c2833;
  --muted: #5c6b78;
  --navy: #1a3654;
  --navy-deep: #10263c;
  --green: #3e6b58;
  --green-soft: #e7f2ec;
  --line: #d5dde6;
  --shadow: 0 12px 32px rgba(16, 38, 60, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }

a:hover { color: var(--green); }

h1, h2, h3 {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h1 { font-size: clamp(2rem, 4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 2.5vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 14px; }

.sprung {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.sprung:focus { top: 12px; color: #fff; }

.rahmen {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.kopf {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.kopf-innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.marke {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-family: Georgia, Palatino, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.marke span { color: var(--green); }

.marke-zeichen {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--navy);
  display: grid;
  place-items: center;
}

.nav-schalt {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.nav-schalt span,
.nav-schalt span::before,
.nav-schalt span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  margin: 0 auto;
}

.nav-schalt span::before,
.nav-schalt span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-schalt span::before { top: -6px; }
.nav-schalt span::after { top: 6px; }

.nav-liste {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-liste a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.98rem;
}

.nav-liste a[aria-current="page"] {
  color: var(--green);
  box-shadow: inset 0 -2px 0 var(--green);
}

.kopf-telefon {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

.block { padding: 28px 0; }

.karte {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.kicker {
  color: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.zweispalt {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.bild {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.bild-gross { height: 390px; }

.raster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.raster-2 { grid-template-columns: repeat(2, 1fr); }
.raster-4 { grid-template-columns: repeat(4, 1fr); }

.mini {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mini p:last-child { margin-bottom: 0; }

.nummer {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 700;
  margin-bottom: 10px;
}

.leiste {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.leiste a, .schalt, button.schalt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.leiste a.still, .schalt.still {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--line);
}

.leiste a:hover, .schalt:hover, button.schalt:hover {
  background: var(--green);
  color: #fff;
}

.ablauf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.frage {
  border-top: 1px solid var(--line);
  padding: 14px 0;
}

.frage h3 { margin-bottom: 6px; }

.daten {
  display: grid;
  gap: 8px;
}

.daten div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.daten dt { color: var(--muted); }
.daten dd { margin: 0; text-align: right; }

.formular { display: grid; gap: 14px; }

label { display: grid; gap: 6px; font-weight: 600; color: var(--navy); }

input, select, textarea {
  width: 100%;
  border: 1px solid #c9d3de;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfd;
}

textarea { min-height: 140px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--green);
  border-color: var(--green);
  background: #fff;
}

.wahl {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
}

.wahl input { width: auto; margin-top: 4px; }

.fehler {
  color: #8a2f2f;
  margin: 0;
  font-size: 0.92rem;
}

.erfolg {
  background: var(--green-soft);
  border-radius: 14px;
  padding: 16px;
  color: var(--navy-deep);
}

.fuss {
  margin-top: 20px;
  background: var(--navy-deep);
  color: #d7e1ea;
  padding: 36px 0 22px;
}

.fuss a { color: #fff; }

.fuss-raster {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 24px;
}

.fuss h2 {
  color: #fff;
  font-size: 1.2rem;
}

.fuss-links {
  display: grid;
  gap: 8px;
}

.klein {
  width: min(var(--max), calc(100% - 32px));
  margin: 22px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #b7c5d1;
  font-size: 0.92rem;
}

.hinweis {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
}

.hinweis p { margin: 0; }

.hinweis-aktionen {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.liste { margin: 0; padding-left: 18px; }
.liste li { margin: 6px 0; }

.prosa p:last-child { margin-bottom: 0; }

[hidden] { display: none !important; }

@media (max-width: 980px) {
  .raster, .ablauf, .raster-4 { grid-template-columns: 1fr 1fr; }
  .fuss-raster { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 800px) {
  .nav-schalt { display: inline-flex; align-items: center; justify-content: center; }
  .kopf-innen { position: relative; }
  .nav-liste {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-liste.offen { display: flex; }
  .nav-liste a { padding: 10px 8px; }
  .kopf-telefon { display: none; }
  .zweispalt, .raster, .raster-2, .raster-4, .ablauf, .fuss-raster, .hinweis {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hinweis { display: grid; }
  .bild-gross { height: 230px; }
  .karte { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
