:root {
  --auf-marke: #FFFFFF;
  --auf-ruf: #14161A;
  --grund: #FFFFFF;
  --grund-weich: #f8f9fb;
  --linie: #dfe3ea;
  --marke: #1B3A6B;
  --marke-dunst: #e8ebf0;
  --marke-hell: #cdd4de;
  --marke-tief: #122646;
  --ruf: #00A651;
  --ruf-dunst: #e6f6ee;
  --ruf-lesbar: #00803e;
  --ruf-tief: #24b269;
  --text: #14161A;
  --text-leise: #5A6270;
}

:root {
  --schrift: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --schrift-kopf: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  
  --t1: clamp(1.75rem, 1.15rem + 2.1vw, 2.75rem);  
  --t2: clamp(1.5rem, 1.2rem + 1.5vw, 2.125rem);   
  --t3: clamp(1.1875rem, 1.05rem + .7vw, 1.5rem);  
  --t4: 1.0625rem;                                 
  --t5: .9375rem;                                  
  --t6: .8125rem;                                  
  --t7: .75rem;                                    

  
  --zeile-eng: 1.25;
  --zeile-mittel: 1.45;
  --zeile-weit: 1.6;

  
  --a1: .25rem;  --a2: .5rem;   --a3: .75rem;  --a4: 1rem;
  --a5: 1.5rem;  --a6: 2rem;    --a7: 3rem;    --a8: 4rem;
  --a9: 6rem;

  
  --luft: clamp(4.5rem, 9vw, 8rem);
  --rand: clamp(1.25rem, 5vw, 4rem);
  
  --breite: 1120px;
  --breite-text: 68ch;

  --r1: .5rem;  --r2: .875rem;  --r3: 1.5rem;  --r4: 2rem;  --rrund: 999px;

  
  --r-knopf: var(--r1);

  --schatten-1: 0 1px 2px rgb(20 22 26 / .04), 0 2px 8px rgb(20 22 26 / .04);
  --schatten-2: 0 2px 4px rgb(20 22 26 / .04), 0 12px 32px rgb(20 22 26 / .09);
  --schatten-3: 0 4px 8px rgb(20 22 26 / .05), 0 24px 56px rgb(20 22 26 / .13);

  --tempo: 180ms cubic-bezier(.2, .7, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

html, body { overflow-x: clip; max-width: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--schrift);
  font-size: var(--t5);
  line-height: var(--zeile-weit);
  color: var(--text);
  background: var(--grund);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--schrift-kopf);
  font-weight: 700;
  line-height: var(--zeile-eng);
  letter-spacing: -.025em;
  margin: 0 0 var(--a4);
  text-wrap: balance;
}
h1 { font-size: var(--t1); letter-spacing: -.035em; }
h2 { font-size: var(--t2); }
h3 { font-size: var(--t3); letter-spacing: -.015em; }
p  { margin: 0 0 var(--a4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.mark { color: var(--marke); }

.huelle {
  width: min(100% - 2 * var(--rand), var(--breite));
  margin-inline: auto;
}

.huelle.eng > * { max-width: var(--breite-text); }
section { padding-block: var(--luft); }
.weich  { background: var(--grund-weich); }
.tief   { background: var(--marke-tief); color: #fff; }
.tief .mark, .tief h2 { color: #fff; }
.tief p { color: rgb(255 255 255 / .78); }

.rolle {
  font-family: var(--schrift-kopf);
  font-size: var(--t6); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--marke); margin: 0 0 var(--a3);
  display: flex; align-items: center; gap: var(--a3);
}
.rolle::before { content: ""; width: 1.75rem; height: 2px; background: var(--ruf); border-radius: 2px; }
.tief .rolle { color: rgb(255 255 255 / .7); }
.lede { font-size: var(--t4); color: var(--text-leise); line-height: var(--zeile-weit); }
.tief .lede { color: rgb(255 255 255 / .8); }
.abschnittskopf { max-width: 62ch; margin-bottom: var(--a8); }
.abschnittskopf.mitte { margin-inline: auto; text-align: center; }
.abschnittskopf.mitte .rolle { justify-content: center; }

.knopf {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--a3);
  font-family: var(--schrift-kopf); font-weight: 600; font-size: var(--t5);
  line-height: 1; text-decoration: none; cursor: pointer;
  
  min-height: 2.75rem;
  padding: 1.0625rem var(--a6); border-radius: var(--r-knopf); border: 2px solid transparent;
  background: var(--ruf); color: var(--auf-ruf);
  box-shadow: 0 1px 2px rgb(20 22 26 / .08);
  transition: transform var(--tempo), box-shadow var(--tempo), background var(--tempo);
}
.knopf:hover { background: var(--ruf-tief); transform: translateY(-2px); box-shadow: var(--schatten-2); }
.knopf:active { transform: translateY(0); }
.knopf.stil2 { background: transparent; color: var(--marke); border-color: var(--linie); box-shadow: none; }
.knopf.stil2:hover { background: var(--marke-dunst); border-color: var(--marke); transform: translateY(-2px); }

:is(.tief, .aufruf, .fuss) .knopf.stil2 {
  color: #fff; border-color: rgb(255 255 255 / .45);
}
:is(.tief, .aufruf, .fuss) .knopf.stil2:hover {
  background: rgb(255 255 255 / .12); border-color: #fff; color: #fff;
}
.knopfreihe { display: flex; flex-wrap: wrap; gap: var(--a4); margin-top: var(--a6); }

.knopf.pfeil::after { content: "\2192"; transition: transform var(--tempo); }
.knopf.pfeil:hover::after { transform: translateX(3px); }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--ruf); outline-offset: 3px; border-radius: var(--r1);
}

.kopf {
  position: sticky; top: 0; z-index: 60;
  background: rgb(255 255 255 / .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tempo), box-shadow var(--tempo);
}
.kopf.gescrollt { border-bottom-color: var(--linie); box-shadow: var(--schatten-1); }
.kopf .huelle { display: flex; align-items: center; gap: var(--a5); min-height: 5.25rem; }

.marke-schrift {
  display: flex; align-items: center; gap: var(--a3);
  margin-right: auto; text-decoration: none; color: var(--marke);
  min-width: 0; flex: 0 1 auto;
}
.marke-zeichen { flex: 0 0 auto; width: 2.75rem; height: 2.75rem; }
.marke-zeichen svg, .marke-zeichen img { width: 100%; height: 100%; display: block; }
.marke-namen { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.marke-name {
  font-family: var(--schrift-kopf); font-weight: 700;
  font-size: var(--t3);
  letter-spacing: -.02em; line-height: var(--zeile-eng); color: var(--marke);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 680px) {
  .marke-name { white-space: normal; overflow: visible; text-overflow: clip;
    font-size: var(--t4); }
  .marke-zusatz { white-space: normal; overflow: visible; text-overflow: clip; }
}
.marke-zusatz {
  font-size: var(--t6); line-height: var(--zeile-eng); color: var(--text-leise);
  font-weight: 400; letter-spacing: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.kopf nav { flex: 0 0 auto; }

.menue { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; }

.menue > li { position: relative; white-space: nowrap; flex: 0 0 auto; }
.menue > li + li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: .95rem; background: var(--linie);
}
.menue a {
  display: block; padding: var(--a3) var(--a4); text-decoration: none;
  font-weight: 500; font-size: var(--t5); line-height: var(--zeile-mittel); color: var(--text);
  transition: color var(--tempo);
}
.menue a:hover { color: var(--marke); }

.menue a[aria-current="page"] { color: var(--marke); font-weight: 600; position: relative; }
.menue a[aria-current="page"]::after {
  content: ""; position: absolute;
  left: var(--a4); right: var(--a4); bottom: .35rem; height: 2px;
  background: var(--marke); border-radius: 2px;
}
.kopf-ruf { display: inline-flex; margin-left: var(--a4); }
.kopf-ruf .knopf { padding: .8125rem var(--a5); }

.nur-schmal { display: none; }

.schalter {
  display: none; width: 2.75rem; height: 2.75rem; padding: 0;
  background: none; border: 1px solid var(--linie); border-radius: var(--r1);
  cursor: pointer; align-items: center; justify-content: center;
}
.schalter span { display: block; width: 1.125rem; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: background var(--tempo); }
.schalter span::before, .schalter span::after {
  content: ""; position: absolute; left: 0; width: 1.125rem; height: 2px;
  background: var(--text); border-radius: 2px; transition: transform var(--tempo);
}
.schalter span::before { top: -6px; } .schalter span::after { top: 6px; }
.schalter[aria-expanded="true"] span { background: transparent; }
.schalter[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.schalter[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .schalter { display: inline-flex; }
  .kopf-ruf { display: none; }
  .nur-schmal { display: block; }
  .menue > li + li::before { display: none; }
  
  .menue {
    display: none;
    position: fixed; inset: 5.25rem 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--grund); border-bottom: 1px solid var(--linie);
    padding: var(--a4) var(--rand) var(--a6);
    box-shadow: var(--schatten-2);
    max-height: calc(100svh - 5.25rem); overflow-y: auto;
  }
  .menue.offen { display: flex; animation: menue-auf 180ms cubic-bezier(.2,.7,.3,1); }
  @keyframes menue-auf {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: none; }
  }
  .menue a { padding: var(--a4) var(--a3); font-size: var(--t4); border-radius: var(--r1); }
  .menue .knopf { margin-top: var(--a4); width: 100%; }
}

.buehne {
  position: relative;
  background:
    radial-gradient(900px 520px at 94% -4%, color-mix(in srgb, var(--marke) 22%, transparent), transparent 56%),
    radial-gradient(720px 500px at -2% 104%, color-mix(in srgb, var(--ruf) 20%, transparent), transparent 54%),
    color-mix(in srgb, var(--marke) 8%, var(--grund));
  border-bottom: 1px solid var(--linie); overflow: hidden; padding-block: 0;
}
.buehne::before, .buehne::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
}
.buehne::before {
  width: 32rem; height: 32rem; top: -11rem; right: -7rem;
  background: color-mix(in srgb, var(--marke) 7%, transparent);
}
.buehne::after {
  width: 24rem; height: 24rem; bottom: -12rem; left: -7rem;
  background: color-mix(in srgb, var(--ruf) 9%, transparent);
}
.buehne > .huelle { position: relative; z-index: 1; }

.buehne .huelle {
  
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center; gap: clamp(var(--a5), 3.5vw, var(--a7));
  padding-block: clamp(var(--a6), 4vw, var(--a8)) clamp(var(--a5), 3vw, var(--a6));
}

.buehne-text { max-width: min(27rem, 100%); }

.buehne-augenbraue {
  font-size: var(--t6); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--marke);
  margin: 0 0 var(--a3);
}

.buehne h1 {
  color: var(--marke); margin-bottom: var(--a4); text-wrap: balance;
  font-size: var(--t1);
}

.buehne .lede {
  color: var(--text-leise); max-width: 46ch; margin-bottom: var(--a5);
  font-size: var(--t4); line-height: var(--zeile-weit);
}
.buehne .knopfreihe { margin-top: 0; }
.buehne-bild { position: relative; align-self: stretch; min-height: clamp(15rem, 25vw, 23rem); }
.buehne-bild img, .buehne-bild svg { border-radius: var(--r2); }
.buehne-bild img, .buehne-bild svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r3);
}
@media (max-width: 880px) {
  .buehne .huelle { grid-template-columns: 1fr; gap: var(--a6); }
  .buehne-text { max-width: none; padding-block: 0; }
  .buehne-bild { min-height: 16rem; order: -1; }
  .buehne-bild img, .buehne-bild svg { border-radius: var(--r3); }
}

.vorteile-band { border-bottom: 1px solid var(--linie); background: var(--grund); }
.vorteile { display: grid; grid-template-columns: repeat(4, 1fr); }
.vorteil {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: var(--a6) var(--a5); position: relative;
}

.vorteil:first-child { padding-left: 0; }
.vorteil:last-child  { padding-right: 0; }
.vorteil + .vorteil::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: var(--linie);
}

.vorteil svg {
  width: 2rem; height: 2rem; flex: 0 0 auto; margin-bottom: var(--a3);
  fill: none; stroke: var(--marke); stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}
.vorteil-titel {
  display: block; font-family: var(--schrift-kopf); font-weight: 700;
  font-size: var(--t4); color: var(--marke); margin-bottom: var(--a2);
  letter-spacing: -.01em;
}
.vorteil-text {
  display: block; font-size: var(--t5); line-height: var(--zeile-weit);
  color: var(--text-leise); max-width: 32ch; margin-inline: auto;
}

@media (max-width: 900px) { .vorteile { grid-template-columns: repeat(2, 1fr); }
  .vorteil:nth-child(3)::before { display: none; }
  .vorteil:nth-child(3), .vorteil:nth-child(4) { border-top: 1px solid var(--linie); } }
@media (max-width: 460px) { .vorteile { grid-template-columns: 1fr; }
  .vorteil::before { display: none; }
  .vorteil + .vorteil { border-top: 1px solid var(--linie); } }

.kacheln { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: var(--a5); }
.kachel {
  display: flex; flex-direction: column;
  background: var(--grund); border: 1px solid var(--linie); border-radius: var(--r3);
  padding: var(--a6); text-decoration: none; color: inherit;
  transition: transform var(--tempo), box-shadow var(--tempo), border-color var(--tempo);
}
a.kachel:hover { transform: translateY(-4px); box-shadow: var(--schatten-2); border-color: var(--marke-hell); }

.kachel h3, .kachel .kachelkopf { margin-bottom: var(--a3); }
.kachel .kachelkopf { font-size: var(--t3);
  letter-spacing: -.015em; line-height: var(--zeile-eng); margin-top: 0;
  max-width: none; margin-inline: 0; }
.kachel p { color: var(--text-leise); font-size: var(--t5); }
.kachel-zeichen {
  width: 3.25rem; height: 3.25rem; margin-bottom: var(--a5);
  display: grid; place-items: center; border-radius: var(--r2);
  background: var(--marke-dunst); color: var(--marke);
}
.kachel-zeichen svg { width: 1.625rem; height: 1.625rem; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.kachel-mehr { margin-top: auto; padding-top: var(--a5); font-weight: 600; font-size: var(--t5); color: var(--marke); display: inline-flex; align-items: center; gap: var(--a2); }
.kachel-mehr::after { content: "\2192"; transition: transform var(--tempo); }
a.kachel:hover .kachel-mehr::after { transform: translateX(4px); }

.kachel.mit-bild { padding: 0; overflow: hidden; }
.kachel.mit-bild figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--marke-dunst); }
.kachel.mit-bild figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms cubic-bezier(.2,.7,.3,1); }
a.kachel.mit-bild:hover figure img { transform: scale(1.045); }
.kachel.mit-bild .inhalt { padding: var(--a6); display: flex; flex-direction: column; flex: 1; }

.paar { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(var(--a6), 5vw, var(--a9)); align-items: center; }
.paar.gedreht > figure { order: 2; }
@media (max-width: 780px) { .paar.gedreht > figure { order: 0; } }
.paar figure { margin: 0; border-radius: var(--r4); overflow: hidden; box-shadow: var(--schatten-2); }
.paar figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.schritte { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--a6); counter-reset: schritt; }
.schritt { position: relative; padding-top: var(--a7); counter-increment: schritt; }
.schritt::before {
  content: counter(schritt, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--schrift-kopf); font-size: var(--t1); font-weight: 700;
  line-height: 1; letter-spacing: -.04em;
  
  color: var(--ruf-lesbar); opacity: .9;
}
.schritt h3 { margin-bottom: var(--a2); }
.schritt p { color: var(--text-leise); font-size: var(--t5); }
.tief .schritt p { color: rgb(255 255 255 / .72); }

.frage { border-bottom: 1px solid var(--linie); }
.frage summary {
  cursor: pointer; list-style: none; padding: var(--a5) 0;
  font-family: var(--schrift-kopf); font-weight: 600; font-size: var(--t4);
  display: flex; align-items: flex-start; gap: var(--a4);
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: "+"; margin-left: auto; font-size: var(--t3); line-height: 1;
  color: var(--marke); font-weight: 400; transition: transform var(--tempo);
}
.frage[open] summary::after { transform: rotate(45deg); }

.frage-inhalt { padding-bottom: var(--a5); color: var(--text-leise);
  max-width: var(--breite-text); font-size: var(--t5); line-height: var(--zeile-weit); }

.stimme { background: var(--grund); border: 1px solid var(--linie); border-radius: var(--r3); padding: var(--a6); }
.stimme blockquote { margin: 0 0 var(--a5); line-height: var(--zeile-weit); }
.stimme blockquote::before { content: "\201E"; }
.stimme blockquote::after  { content: "\201C"; }
.sterne { color: var(--ruf-lesbar); letter-spacing: .1em; margin-bottom: var(--a3); }
.stimme cite { font-style: normal; font-weight: 600; font-size: var(--t5); }
.stimme cite span { display: block; font-weight: 400; color: var(--text-leise); }

.formular { display: grid; gap: var(--a5); }
.feld { display: grid; gap: var(--a2); }
.feld label { font-weight: 600; font-size: var(--t5); }
.feld .hinweis { font-size: var(--t6); color: var(--text-leise); }
.feld input, .feld textarea, .feld select {
  font: inherit; font-size: var(--t4); color: var(--text);
  padding: .875rem var(--a4);
  border: 1px solid var(--linie); border-radius: var(--r1);
  background: var(--grund); width: 100%;
  transition: border-color var(--tempo), box-shadow var(--tempo);
}

.feld input:focus, .feld textarea:focus, .feld select:focus {
  border-color: var(--marke);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--marke) 22%, transparent);
}
.feld textarea { min-height: 9rem; resize: vertical; }
.feld-paar { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--a5); }
.pflicht { color: var(--ruf-lesbar); }

.kontaktliste { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--a5); }
.kontaktliste li { display: flex; gap: var(--a4); align-items: flex-start; }
.kontaktliste svg { flex: 0 0 auto; width: 1.375rem; height: 1.375rem; margin-top: .2rem; fill: none; stroke: var(--marke); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.kontaktliste b { display: block; font-size: var(--t6); text-transform: uppercase; letter-spacing: .08em; color: var(--text-leise); font-weight: 600; }
.kontaktliste a { color: var(--marke); text-decoration: none; font-weight: 600; }
.kontaktliste a:hover { text-decoration: underline; }

.aufruf { background: var(--marke-tief); color: #fff; border-radius: var(--r4); padding: clamp(var(--a7), 6vw, var(--a9)); text-align: center; }
.aufruf h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.aufruf p { color: rgb(255 255 255 / .8); max-width: 52ch; margin-inline: auto; }
.aufruf .knopfreihe { justify-content: center; }

.fuss { background: var(--marke-tief); color: rgb(255 255 255 / .72); padding-block: var(--a9) var(--a6); font-size: var(--t5); }

.fuss-raster { display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: var(--a7); }
@media (max-width: 760px) { .fuss-raster { grid-template-columns: 1fr 1fr; gap: var(--a6); } }
@media (max-width: 480px) { .fuss-raster { grid-template-columns: 1fr; } }

.fuss .fusskopf { font-size: var(--t6); font-weight: 600; line-height: var(--zeile-eng);
  margin-top: 0; max-width: none; margin-inline: 0; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: var(--a4); }
.fuss a { color: rgb(255 255 255 / .72); text-decoration: none; }
.fuss a:hover { color: #fff; text-decoration: underline; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--a3); }
.fuss .marke-schrift { color: #fff; margin-bottom: var(--a4); }

.fuss-anmeldung { display: flex; justify-content: flex-end; align-items: flex-start; }
@media (max-width: 760px) { .fuss-anmeldung { justify-content: flex-start; } }
.fuss-login { display: inline-flex; align-items: center; gap: .5em;
  font: inherit; font-size: var(--t5); font-weight: 600; line-height: 1;
  color: #fff; background: rgb(255 255 255 / .10); border: 1px solid rgb(255 255 255 / .28);
  border-radius: var(--r-knopf); padding: .72em 1.15em; cursor: pointer;
  text-decoration: none; transition: background .14s, border-color .14s; }
.fuss-login:hover { background: rgb(255 255 255 / .18); border-color: rgb(255 255 255 / .5);
  color: #fff; text-decoration: none; }
.fuss-login:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.fuss-login svg { width: 1.05em; height: 1.05em; fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.anmeldefenster { border: 0; border-radius: var(--r2); padding: 0; width: min(26rem, calc(100vw - 2rem));
  background: var(--grund); color: var(--text); box-shadow: 0 24px 60px rgb(0 0 0 / .3); }
.anmeldefenster::backdrop { background: rgb(10 15 20 / .55); }
.anmeldefenster form { padding: var(--a6); display: grid; gap: var(--a4); margin: 0; }
.anmeldefenster h2 { font-size: var(--t3); margin: 0; max-width: none; margin-inline: 0; }
.anmeldefenster p { margin: 0; font-size: var(--t5); color: var(--text-leise); }
.anmeldefenster label { display: block; font-size: var(--t6); font-weight: 600; margin-bottom: .35em; }
.anmeldefenster input { width: 100%; font: inherit; font-size: var(--t5); padding: .7em .85em;
  border: 1px solid var(--linie); border-radius: var(--r1); background: #fff; color: var(--text); }
.anmeldefenster input:focus-visible { outline: 2px solid var(--marke); outline-offset: 1px; }
.anmeldefenster .fensterfuss { display: flex; gap: var(--a3); align-items: center; justify-content: space-between; flex-wrap: wrap; }
.anmeldefenster .anmeldefehler { color: #a4282a; font-weight: 600; }
.anmeldefenster .schliessen { background: none; border: 0; font: inherit; font-size: var(--t6);
  color: var(--text-leise); cursor: pointer; text-decoration: underline; padding: 0; }

.fuss-schluss { margin-top: var(--a8); padding-top: var(--a5); border-top: 1px solid rgb(255 255 255 / .14); display: flex; flex-wrap: wrap; gap: var(--a5); justify-content: space-between; font-size: var(--t6); align-items: center; }

.orte { display: flex; flex-wrap: wrap; gap: var(--a2); padding: 0; margin: 0; }
.orte li { list-style: none; }
.orte span, .orte a {
  display: inline-block; padding: .375rem var(--a3);
  border: 1px solid var(--linie); border-radius: var(--rrund);
  font-size: var(--t6); color: var(--text-leise); text-decoration: none;
}
.tief .orte span, .tief .orte a { border-color: rgb(255 255 255 / .2); color: rgb(255 255 255 / .78); }

.rechtstext { max-width: var(--breite-text); }

.siegel {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; color: #15181d;
  border-radius: 10px; padding: .5rem .8rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / .25);
  text-align: left;
}
.siegel-zeichen { flex: 0 0 auto; width: 1.75rem; height: 1.75rem; color: #15181d; }
.siegel-satz {
  margin: 0; color: #15181d; font-size: var(--t6); font-weight: 600; line-height: var(--zeile-eng);
  max-width: 26ch;
}
.siegel-wann { display: block; font-weight: 400; font-size: var(--t7); color: #4a5058; }
.rechtstext h2 { font-size: var(--t2); margin-top: var(--a7); }
.rechtstext h3 { font-size: var(--t3); margin-top: var(--a5); }
.rechtstext ul { padding-left: var(--a5); }
.rechtstext li { margin-bottom: var(--a2); }

.sprungmarke {
  position: absolute; left: -9999px; top: 0;
  background: var(--marke); color: #fff; padding: var(--a3) var(--a5); z-index: 100;
}
.sprungmarke:focus { left: var(--a4); top: var(--a4); }

.einwilligung {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--grund); border-top: 2px solid var(--marke);
  box-shadow: 0 -4px 24px rgb(20 22 26 / .12);
}
.einwilligung[hidden] { display: none; }
.einwilligung-inhalt {
  max-width: var(--breite); margin-inline: auto;
  padding: var(--a5) var(--rand);
}
.einwilligung p { margin: 0 0 var(--a2); font-size: var(--t5); }
.einwilligung-knoepfe {
  display: flex; flex-wrap: wrap; gap: var(--a4);
  align-items: center; margin-top: var(--a4);
}
.einwilligung-knoepfe .knopf { padding: .75rem var(--a5); }
.einwilligung-knoepfe a { font-size: var(--t6); color: var(--text-leise); }

.stellenkopf {
  background: var(--grund-weich);
  border-bottom: 1px solid var(--linie);
  padding-block: clamp(var(--a7), 6vw, var(--a9)) var(--a7);
}

.stellenkopf h1 { max-width: 34ch; margin-bottom: var(--a4); }

.stellenkopf .lede { max-width: 60ch; }
.stellenkopf .knopfreihe { margin-top: var(--a6); }

.eckdaten {
  display: grid; gap: var(--a5);
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  margin: var(--a6) 0 0; padding: var(--a5) 0 0;
  border-top: 1px solid var(--linie);
}
.eckdatum dt {
  font-size: var(--t6); font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-leise); margin-bottom: .35rem;
}
.eckdatum dd {
  margin: 0; font-family: var(--schrift-kopf); font-weight: 700;
  font-size: var(--t4); line-height: var(--zeile-eng); color: var(--marke);
}

.stellenteil .haken {
  columns: 2; column-gap: var(--a8);
  max-width: 62rem; margin-bottom: 0;
}
.stellenteil .haken li { break-inside: avoid; margin-bottom: var(--a4); }
@media (max-width: 760px) { .stellenteil .haken { columns: 1; } }

.stellenmarke { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 var(--a4); }
.stellenmarke span {
  display: inline-block; padding: .3rem .75rem; border-radius: 999px;
  font-size: var(--t6); font-weight: 600;
}
.marke-art { background: var(--marke-dunst); color: var(--marke); }
.marke-ort { background: var(--grund-weich); color: var(--text-leise); }

.haken { list-style: none; padding: 0; margin: 0 0 var(--a6); }
.haken li {
  position: relative; padding-left: 1.75rem; margin-bottom: var(--a3);
  line-height: var(--zeile-weit);
}
.haken li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 1rem; height: .55rem;
  border-left: 2px solid var(--ruf-lesbar); border-bottom: 2px solid var(--ruf-lesbar);
  transform: rotate(-45deg);
}

.bewerbung-fuer {
  background: var(--marke-dunst); border-radius: var(--r2);
  padding: var(--a4) var(--a5); margin-bottom: var(--a5);
}

.ablage {
  border: 2px dashed var(--linie); border-radius: var(--r3);
  padding: var(--a6); text-align: center;
  background: var(--grund-weich);
  transition: border-color var(--tempo), background var(--tempo);
}
.ablage.bereit { border-color: var(--marke); background: var(--marke-dunst); }
.ablage-text { margin: 0; color: var(--text-leise); }
.alslink {
  background: none; border: 0; padding: 0; font: inherit; cursor: pointer;
  color: var(--marke); text-decoration: underline;
}
.ablage-liste { list-style: none; padding: 0; margin: var(--a4) 0 0; text-align: left; }
.ablage-liste li {
  font-size: var(--t5); padding: .35rem 0; border-top: 1px solid var(--linie);
}
.ablage-liste .ablage-warnung { color: #a4161a; font-weight: 600; }

.menue > li.hat-unter { display: flex; align-items: center; }
.untermenue-schalter {
  background: none; border: 0; padding: .35rem; margin-left: -.35rem;
  cursor: pointer; color: inherit; line-height: 0;
}
.untermenue-schalter::after {
  content: ""; display: block; width: .45rem; height: .45rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform var(--tempo);
}
.untermenue {
  position: absolute; top: 100%; left: 0; z-index: 60;
  min-width: 15rem; padding-top: .5rem;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  
  transition: opacity var(--tempo), transform var(--tempo);
}
.untermenue ul {
  list-style: none; margin: 0; padding: var(--a3);
  background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r2); box-shadow: var(--schatten-2);
}
.untermenue li + li { border-top: 1px solid var(--linie); }
.untermenue a {
  display: block; padding: .6rem .75rem; white-space: nowrap;
  font-size: var(--t5); border-radius: var(--r1);
}
.untermenue a:hover { background: var(--marke-dunst); color: var(--marke); }
.hat-unter.aufgeklappt .untermenue,
.hat-unter:hover .untermenue,
.hat-unter:focus-within .untermenue {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.hat-unter.aufgeklappt .untermenue-schalter::after,
.hat-unter:hover .untermenue-schalter::after,
.hat-unter:focus-within .untermenue-schalter::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

@media (max-width: 1024px) {
  .menue > li.hat-unter { display: block; }
  .untermenue-schalter { display: none; }
  .untermenue {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; padding-top: 0;
  }
  .untermenue ul {
    border: 0; box-shadow: none; background: none;
    padding: 0 0 var(--a3) var(--a5);
    border-left: 2px solid var(--linie); margin-left: .35rem;
  }
  .untermenue li + li { border-top: 0; }
  .untermenue a { padding: .45rem .5rem; color: var(--text-leise); }
}

.zahlenband {
  background: var(--marke-tief); color: #fff;
  padding-block: clamp(var(--a7), 5vw, var(--a8));
}

.tief + .zahlenband {
  background: var(--grund-weich); color: var(--text);
  border-block: 1px solid var(--linie);
}
.zahlen {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--a5);
}
.zahl {
  display: flex; flex-direction: column; gap: .15rem;
  padding-inline: var(--a5); position: relative;
}
.zahl:first-child { padding-left: 0; }
.zahl:last-child  { padding-right: 0; }
.zahl + .zahl::before {
  content: ""; position: absolute; left: 0; top: .35rem; bottom: .35rem;
  width: 1px; background: rgb(255 255 255 / .18);
}
.tief + .zahlenband .zahl + .zahl::before { background: var(--linie); }
.zahl-wert {
  font-family: var(--schrift-kopf); font-weight: 700;
  font-size: var(--t1); line-height: 1;
  letter-spacing: -.04em; font-variant-numeric: tabular-nums;
  color: var(--ruf-lesbar);
}
.tief + .zahlenband .zahl-wert { color: var(--marke); }
.zahl-wort {
  font-weight: 600; font-size: var(--t4); margin-top: .35rem;
}
.zahl-dazu {
  font-size: var(--t6); color: rgb(255 255 255 / .68);
}
.tief + .zahlenband .zahl-dazu { color: var(--text-leise); }
@media (max-width: 860px) {
  .zahlen { grid-template-columns: repeat(2, 1fr); gap: var(--a6) var(--a5); }
  .zahl { padding-inline: 0; }
  .zahl + .zahl::before { display: none; }
}

.bildband {
  position: relative; padding-block: 0;
  min-height: clamp(20rem, 34vw, 30rem);
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.bildband > figure { position: absolute; inset: 0; margin: 0; }
.bildband > figure img,
.bildband > figure svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.bildband > figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgb(16 20 24 / .82) 0%, rgb(16 20 24 / .45) 42%, rgb(16 20 24 / .08) 100%);
}
.bildband > .huelle {
  position: relative; z-index: 1;
  padding-block: clamp(var(--a6), 5vw, var(--a8));
}
.bildband-text p {
  margin: 0; color: #fff; max-width: 30ch;
  font-family: var(--schrift-kopf); font-weight: 600;
  font-size: var(--t2);
  line-height: var(--zeile-eng); letter-spacing: -.02em;
  text-wrap: balance;
}

.gegenueber { display: grid; gap: 0; }
.gegen {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
  gap: var(--a5) clamp(var(--a5), 4vw, var(--a8));
  padding-block: var(--a5);
  border-top: 1px solid var(--linie);
  align-items: start;
}
.gegen:last-child { border-bottom: 1px solid var(--linie); }
.gegen-alt {
  color: var(--text-leise); font-size: var(--t5); line-height: var(--zeile-weit);
  display: flex; gap: var(--a3);
}
.gegen-alt::before {
  content: "\00D7"; flex: 0 0 auto;
  font-size: var(--t4); line-height: var(--zeile-eng); color: var(--text-leise); opacity: .6;
}
.gegen-neu {
  font-size: var(--t5); line-height: var(--zeile-weit);
  display: flex; gap: var(--a3);
}
.gegen-neu::before {
  content: "\2713"; flex: 0 0 auto;
  font-size: var(--t4); line-height: var(--zeile-mittel); color: var(--marke); font-weight: 700;
}
@media (max-width: 720px) {
  .gegen { grid-template-columns: 1fr; gap: var(--a3); padding-block: var(--a5); }
}

.inhaberwort { margin: 0; }
.inhaberwort p {
  font-family: var(--schrift-kopf); font-weight: 500;
  font-size: var(--t2);
  line-height: var(--zeile-mittel); letter-spacing: -.015em;
  margin: 0 0 var(--a5); text-wrap: pretty;
  border-left: 3px solid var(--ruf); padding-left: var(--a5);
}
.inhaberwort footer { font-size: var(--t5); padding-left: calc(var(--a5) + 3px); }
.inhaberwort footer b { font-weight: 600; }
.inhaberwort footer .hinweis { color: var(--text-leise); }

.flaeche { width: 100%; height: 100%; display: block; object-fit: cover; }

.knopf.leise { background: transparent; color: var(--marke); border-color: var(--linie); box-shadow: none; }
.knopf.leise:hover { background: var(--marke-dunst); border-color: var(--marke); transform: translateY(-2px); }

.formular.bewerbung { margin-top: var(--a5); }
.bewerbung-fuer { color: var(--text-leise); font-size: var(--t5); margin-bottom: var(--a5); }

.arbeiten {
  
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--a5);
}
.arbeiten figure {
  margin: 0; border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--schatten-1);
}
.arbeiten figure img, .arbeiten figure svg {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform 400ms cubic-bezier(.2,.7,.3,1);
}
.arbeiten figure:hover img { transform: scale(1.04); }
@media (max-width: 780px) {
  .arbeiten { gap: var(--a4); }
}

.gebietsbild {
  margin: var(--a6) 0 0; border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--schatten-1);
}
.gebietsbild img, .gebietsbild svg {
  width: 100%; aspect-ratio: 3 / 1; object-fit: cover; display: block;
}
@media (max-width: 780px) { .gebietsbild img, .gebietsbild svg { aspect-ratio: 2 / 1; } }

.ablaufbild {
  margin: var(--a7) 0 0; border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--schatten-1);
}
.ablaufbild img, .ablaufbild svg {
  width: 100%; aspect-ratio: 16 / 6; object-fit: cover; display: block;
}
.kontaktband { padding-block: 0; }
.kontaktband figure {
  margin: 0; height: clamp(12rem, 22vw, 20rem); overflow: hidden;
}
.kontaktband figure img, .kontaktband figure svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 780px) { .ablaufbild img, .ablaufbild svg { aspect-ratio: 3 / 2; } }

.stellenband { padding-block: 0; }
.stellenband figure {
  margin: 0; height: clamp(12rem, 24vw, 22rem); overflow: hidden;
}
.stellenband figure img, .stellenband figure svg {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.vorzugsblock { display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--a6), 5vw, var(--a9)); align-items: center; }
.vorzugsblock > figure { margin: 0; border-radius: var(--r3); overflow: hidden;
  box-shadow: var(--schatten-2); }
.vorzugsblock > figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.vorzugsliste { list-style: none; margin: var(--a5) 0 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--a4); }
.vorzug { display: flex; align-items: flex-start; gap: var(--a3);
  font-size: var(--t4); line-height: var(--zeile-mittel); }
.vorzug svg { flex: 0 0 auto; width: 1.375rem; height: 1.375rem; margin-top: .1rem;
  fill: none; stroke: var(--marke); stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 780px) { .vorzugsblock { grid-template-columns: 1fr; }
  .vorzugsblock > figure { order: -1; } }

.merkmale { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--a5); }
.merkmal { background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r3); padding: var(--a6) var(--a5);
  text-align: center; display: flex; flex-direction: column; align-items: center;
  gap: var(--a3); transition: box-shadow var(--tempo), transform var(--tempo); }
.merkmal:hover { transform: translateY(-4px); box-shadow: var(--schatten-2); }
.merkmal svg { width: 2.75rem; height: 2.75rem; fill: none; stroke: var(--marke);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.merkmal-titel { font-family: var(--schrift-kopf); font-weight: 700;
  font-size: var(--t4); color: var(--marke); line-height: var(--zeile-eng); }
.merkmal p { color: var(--text-leise); font-size: var(--t5); line-height: var(--zeile-weit); margin: 0; }
@media (max-width: 900px) { .merkmale { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .merkmale { grid-template-columns: 1fr; } }

.anfrageband { background: var(--marke-dunst); border-radius: var(--r3);
  padding: clamp(var(--a6), 4.5vw, var(--a7));
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr) auto;
  gap: clamp(var(--a5), 3vw, var(--a6)); align-items: center; }

.anfrage-bild { margin: 0; border-radius: var(--r2); overflow: hidden;
  align-self: stretch; min-height: clamp(11rem, 16vw, 15rem); }
.anfrage-bild img { width: 100%; height: 100%; object-fit: cover; display: block; }
.anfrage-text { text-align: center; }

.anfrage-text h2 { margin: 0 0 var(--a3); text-wrap: balance;
 }

.anfrage-text p { color: var(--text-leise); margin: 0 auto var(--a5);
 line-height: var(--zeile-weit);
  max-width: 42ch; }
.anfrage-liste { list-style: none; margin: 0; padding: 0 0 0 clamp(var(--a5), 4vw, var(--a7));
  border-left: 1px solid var(--linie);
  display: flex; flex-direction: column; gap: var(--a4); }

.anfrage-punkt { display: flex; align-items: center; gap: var(--a3);
  font-size: var(--t5); min-width: 0; }
@media (min-width: 681px) { .anfrage-punkt { white-space: nowrap; } }
.anfrage-punkt svg { flex: 0 0 auto; width: 1.25rem; height: 1.25rem; fill: none;
  stroke: var(--marke); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 1100px) { .anfrageband { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .anfrage-bild { grid-row: span 2; }
  .anfrage-liste { border-left: 0; padding-left: 0; border-top: 1px solid var(--linie); padding-top: var(--a5); } }
@media (max-width: 680px) { .anfrageband { grid-template-columns: minmax(0, 1fr); }
  .anfrage-bild { grid-row: auto; } }

.kachel.mit-bild .kachel-zeichen { margin-top: -3.4rem; margin-bottom: var(--a3);
  width: 3.25rem; height: 3.25rem; background: var(--grund);
  border-radius: var(--rrund); box-shadow: var(--schatten-1);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; }

.gebietskarte { background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r3); padding: clamp(var(--a5), 4vw, var(--a7));
  display: grid; grid-template-columns: minmax(220px, 1fr) 2.2fr;
  gap: clamp(var(--a5), 4vw, var(--a7)); align-items: center; }
.gebietstext h2 { margin: 0 0 var(--a3); }
.gebietstext p { color: var(--text-leise); margin: 0; }
.ortsteppich { list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: var(--a3); }
.ortsteppich li span { display: inline-block; background: var(--grund-weich);
  border: 1px solid var(--linie); border-radius: var(--r1);
  padding: var(--a3) var(--a4); font-weight: 600; font-size: var(--t5);
  color: var(--marke); white-space: nowrap; }
@media (max-width: 780px) { .gebietskarte { grid-template-columns: 1fr; } }

.frage { background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r1); margin-bottom: var(--a3); }
.frage summary { cursor: pointer; list-style: none; padding: var(--a4) var(--a5);
  font-weight: 600; color: var(--marke);
  display: flex; align-items: center; justify-content: space-between; gap: var(--a4); }
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after { content: ""; flex: 0 0 auto; width: .55rem; height: .55rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px); transition: transform var(--tempo); }
.frage[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.frage summary:hover { background: var(--marke-dunst); }
.frage-inhalt { padding: 0 var(--a5) var(--a5); color: var(--text-leise); }
.frage-inhalt p { margin: 0; }

.findeblock { display: grid; grid-template-columns: 1fr 1.15fr 1fr;
  gap: clamp(var(--a5), 4vw, var(--a7)); align-items: start; }

.findeblock.ohne-karte {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 62rem; margin-inline: auto;
}
.findetext h2 { margin: 0 0 var(--a4); }
.findetext > p { color: var(--text-leise); }
.findeliste { list-style: none; margin: var(--a5) 0 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--a4); }
.findepunkt { display: flex; align-items: center; gap: var(--a3); font-size: var(--t5); }

.findepunkt svg { flex: 0 0 auto; }

.karte { border-radius: var(--r2); overflow: hidden; background: var(--grund-weich);
  border: 1px solid var(--linie); min-height: 320px;
  display: flex; align-items: center; justify-content: center; }
.karte-ruhend { text-align: center; padding: var(--a5); }
.karte-nadel { width: 2.5rem; height: 2.5rem; fill: none; stroke: var(--marke);
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.karte-ort { font-family: var(--schrift-kopf); font-weight: 700; font-size: var(--t4);
  color: var(--marke); margin: var(--a3) 0 0; }
.karte-anschrift { color: var(--text-leise); font-size: var(--t5); margin: var(--a1) 0 var(--a4); }
.karte-hinweis { font-size: var(--t6); color: var(--text-leise); margin: var(--a4) auto 0; max-width: 34ch; }
.karte.geladen { padding: 0; display: block; }
.karte iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

.findeformular { display: flex; flex-direction: column; gap: var(--a3); }
.feldkasten { display: block; }
.nurlesen { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.findeformular input, .findeformular textarea { width: 100%; font: inherit;
  padding: var(--a4); border: 1px solid var(--linie); border-radius: var(--r1);
  background: var(--grund); color: var(--text); }
.findeformular input:focus, .findeformular textarea:focus {
  outline: 2px solid var(--marke); outline-offset: 1px; border-color: var(--marke); }
.findeformular textarea { resize: vertical; min-height: 7rem; }
.findeformular .formzustimmung { display: flex; gap: var(--a3); align-items: flex-start;
  font-size: var(--t6); color: var(--text-leise); line-height: var(--zeile-mittel); }
.findeformular .formzustimmung input { width: auto; flex: 0 0 auto; margin-top: .15rem; }
.findeformular .knopf { justify-content: center; }
.formularhinweis { font-size: var(--t6); color: var(--text-leise); margin: 0; }
.honig { position: absolute; left: -9999px; }
@media (max-width: 1000px) { .findeblock { grid-template-columns: 1fr 1fr; }
  .findetext { grid-column: 1 / -1; } }
@media (max-width: 680px) { .findeblock { grid-template-columns: 1fr; }
  .findetext { grid-column: auto; } }

.fuss-marke .marke-schrift { display: flex; align-items: center; gap: var(--a3);
  color: inherit; text-decoration: none; }
.fuss-marke .marke-name, .fuss-marke .marke-zusatz { color: inherit; }

.fuss-teilwort { margin: var(--a5) 0 var(--a3); font-size: var(--t6);
  letter-spacing: .04em; text-transform: uppercase; opacity: .6; }
.fuss-teilwort + .fuss-sozial { margin-top: 0; }
.fuss-sozial { display: flex; gap: var(--a3); margin-top: var(--a5); }
.fuss-sozial a { display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border: 1px solid currentColor; border-radius: var(--rrund);
  opacity: .75; transition: opacity var(--tempo); }
.fuss-sozial a:hover { opacity: 1; }
.fuss-sozial svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.fuss-kontakt { list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--a3); }
.fuss-kontakt li { display: flex; align-items: flex-start; gap: var(--a3); }
.fuss-kontakt svg { flex: 0 0 auto; width: 1.125rem; height: 1.125rem; margin-top: .15rem;
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round; opacity: .75; }

.karte { position: relative; }
.karte-grund { position: absolute; inset: 0; }
.karte-grund img { width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: .28; filter: saturate(.5); }
.karte-ruhend { position: relative; z-index: 1;
  background: color-mix(in srgb, var(--grund) 78%, transparent);
  border-radius: var(--r2); }
.karte.geladen .karte-grund { display: none; }

.buehne .knopfreihe { align-items: stretch; flex-wrap: nowrap; }
.buehne .knopfreihe .knopf {
  flex: 1 1 0; min-width: 0; white-space: nowrap;
  justify-content: center; padding-inline: var(--a4);
}
.knopf { white-space: nowrap; }
.knopf svg { flex: 0 0 auto; width: 1.125rem; height: 1.125rem;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; }

.buehne .knopfreihe .knopf.stil2 { border-color: var(--linie); }
@media (max-width: 460px) {
  .buehne .knopfreihe { flex-direction: column; }
  .buehne .knopfreihe .knopf { min-width: 0; width: 100%; }
}

.abschnittskopf.mitte h2, .abschnittskopf.mitte .lede { margin-inline: auto; }

.stimmen { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--a5); align-items: stretch; }
.stimme { background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r3); padding: var(--a6); margin: 0;
  display: flex; flex-direction: column; gap: var(--a4); }
.stimme blockquote { margin: 0; font-size: var(--t5); line-height: var(--zeile-weit);
  color: var(--text-leise); flex: 1; }
.stimme blockquote::before { content: "\201E"; }
.stimme blockquote::after  { content: "\201C"; }
.stimme figcaption { display: flex; align-items: center; gap: var(--a3);
  font-size: var(--t6); line-height: var(--zeile-eng); }
.stimme-wer { font-weight: 700; color: var(--marke); }
.stimme figcaption span + span { color: var(--text-leise); font-weight: 400; }
.stimme figcaption span + span::before { content: "\00b7"; margin: 0 .4em; }

.stimme-quelle { margin-left: auto; width: 1.125rem; height: 1.125rem;
  flex: 0 0 auto; stroke: none; }
.sterne { color: var(--ruf-lesbar); letter-spacing: .12em; font-size: var(--t4); }
.stern.voll { opacity: 1; }
.stern.leer { opacity: .28; }
.stern.halb { opacity: .58; }
.stimme-zahl { grid-column: 1 / -1; max-width: 46rem; margin-inline: auto; text-align: center; }
.stimme-zahl .sterne { font-size: var(--t3); }
.knopfreihe.mitte { justify-content: center; }

.fuss { padding-block: var(--a8) var(--a5); }
.fuss-raster { grid-template-columns: 1.5fr .9fr 1.1fr 1.25fr auto;
  gap: var(--a6) var(--a7); align-items: start; }
.fuss ul { gap: var(--a2); }
.fuss .fusskopf { margin-bottom: var(--a4); }
.fuss .marke-schrift { margin-bottom: var(--a3); }
.fuss-teilwort { margin: var(--a4) 0 var(--a2); }
.fuss-teilwort + .fuss-sozial { margin-top: 0; }
.fuss-sozial { margin-top: var(--a4); gap: var(--a3); }
.fuss-sozial a { width: 3rem; height: 3rem; }
.fuss-kontakt { gap: var(--a2); }
.fuss-kontakt li:first-child { margin-bottom: var(--a2); line-height: var(--zeile-mittel); }
.fuss-schluss { margin-top: var(--a6); padding-top: var(--a4); }
@media (max-width: 1000px) {
  .fuss-raster { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .fuss-raster { grid-template-columns: 1fr; gap: var(--a5); }
}

.huelle.eng > * { margin-inline: auto; }

.fuss-raster { grid-template-columns: minmax(15rem, auto) minmax(8rem, auto) minmax(23rem, auto) auto;
  justify-content: space-between; gap: var(--a5) var(--a7); }
.fuss-kontakt li { line-height: var(--zeile-mittel); }
.fuss-kontakt a { white-space: nowrap; }
@media (max-width: 900px) {
  .fuss-raster { grid-template-columns: 1fr 1fr; }
  .fuss-marke { grid-column: 1 / -1; }
  .fuss-kontakt a { white-space: normal; }
}
@media (max-width: 560px) {
  .fuss-raster { grid-template-columns: 1fr; }
}

.fuss-marke .siegel { margin-top: var(--a4); padding: .45rem .7rem; }
.fuss-marke .siegel-satz { font-size: var(--t7); max-width: 22ch; }
.fuss-marke .siegel-zeichen { width: 1.5rem; height: 1.5rem; }

.markenplatte { display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; border-radius: var(--r1); padding: .3rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / .12); }
.markenplatte img { width: 100%; height: 100%; object-fit: contain; display: block; }

.fuss-sozial a { border-color: rgb(255 255 255 / .28); }
.fuss-sozial a:hover { border-color: rgb(255 255 255 / .6); background: rgb(255 255 255 / .08); }
.fuss-sozial svg { width: 1.125rem; height: 1.125rem; }
.fuss-sozial svg.gefuellt { fill: currentColor; stroke: none; }

.findeblock { display: grid; grid-template-columns: 1fr 1.05fr 1fr;
  gap: var(--a5); align-items: stretch; }
.findekarte { background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r3); padding: var(--a6);
  display: flex; flex-direction: column; }

.findemarke { display: inline-flex; align-items: center; gap: var(--a2);
  align-self: flex-start; background: var(--ruf-dunst, var(--marke-dunst));
  color: var(--marke); border-radius: var(--rrund);
  padding: .35rem .8rem; font-size: var(--t6); font-weight: 600;
  letter-spacing: .02em; margin: 0 0 var(--a5); }
.findekarte-text h2 { margin: 0 0 var(--a4); }

.findekarte-text h2::after { content: ""; display: block; width: 2.5rem;
  height: 3px; border-radius: 2px; background: var(--ruf); margin-top: var(--a4); }
.findelede { color: var(--text-leise); margin: 0; }
.findeliste { list-style: none; margin: var(--a6) 0 0; padding: var(--a5) 0 0;
  border-top: 1px solid var(--linie);
  display: flex; flex-direction: column; gap: var(--a5); }
.findepunkt { display: flex; align-items: flex-start; gap: var(--a4); }

.findezeichen { flex: 0 0 auto; width: 2.75rem; height: 2.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r2); background: var(--marke-dunst); color: var(--marke); }
.findezeichen svg { width: 1.5rem; height: 1.5rem; fill: none; stroke: var(--marke);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.findetext-zu { display: flex; flex-direction: column; gap: .15rem; }
.findetext-zu b { font-size: var(--t5); color: var(--text); }
.findetext-zu span { font-size: var(--t6); color: var(--text-leise); line-height: var(--zeile-mittel); }

.findekarte-karte { padding: 0; overflow: hidden; position: relative; }
.kartenfeld { position: relative; flex: 1; min-height: 22rem;
  background: var(--grund-weich); overflow: hidden; }
.kartengrund { position: absolute; inset: 0; display: grid;
  grid-template-columns: repeat(3, 1fr); }
.kartengrund img { width: 100%; height: 100%; display: block; }

.kartennadel { position: absolute; left: var(--nadel-x); top: var(--nadel-y);
  transform: translate(-50%, -100%); width: 2.5rem; height: 2.5rem; }
.kartennadel svg { width: 100%; height: 100%; fill: var(--marke-tief); stroke: none;
  filter: drop-shadow(0 2px 4px rgb(20 22 26 / .35)); }
.kartennadel circle { fill: #fff; }
.kartenruhe { position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--a2); text-align: center; padding: var(--a5);
  font-family: var(--schrift-kopf); font-weight: 700; font-size: var(--t4);
  color: var(--marke); }
.kartenruhe span { display: block; font-family: var(--schrift); font-weight: 400;
  font-size: var(--t6); color: var(--text-leise); max-width: 26ch; }
.kartenfeld.geladen .kartenruhe { display: none; }
.kartenrecht { position: absolute; left: 0; right: 0; top: 0; margin: 0;
  padding: .2rem .5rem; font-size: var(--t7); line-height: var(--zeile-mittel);
  background: rgb(255 255 255 / .78); color: var(--text-leise);
  display: none; }
.kartenfeld.geladen .kartenrecht { display: block; }

.kartengrund img { filter: saturate(.28) brightness(1.06) contrast(.92); }
.kartenrecht a { color: inherit; }

.kartenband { display: flex; align-items: center; gap: var(--a3);
  margin: var(--a3); padding: var(--a3) var(--a4);
  background: var(--grund); border: 1px solid var(--linie); border-radius: var(--r2);
  box-shadow: var(--schatten-1); text-decoration: none; color: inherit;
  position: absolute; left: 0; right: 0; bottom: 0;
  transition: transform var(--tempo), box-shadow var(--tempo); }
.kartenband:hover { transform: translateY(-2px); box-shadow: var(--schatten-2); }
.kartenband > svg { flex: 0 0 auto; width: 1.375rem; height: 1.375rem; fill: none;
  stroke: var(--marke); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.kartenband-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.kartenband-text b { font-size: var(--t6); color: var(--marke);
  line-height: var(--zeile-eng); }
.kartenband-text span { font-size: var(--t7); color: var(--text-leise);
  line-height: var(--zeile-eng); }
.kartenband-pfeil { margin-left: auto; flex: 0 0 auto;
  width: 2rem; height: 2rem; border-radius: var(--rrund);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ruf); color: var(--auf-ruf); font-weight: 700; }

.findekopf { display: flex; align-items: flex-start; gap: var(--a4);
  margin-bottom: var(--a5); }
.findekopf > span:last-child { display: flex; flex-direction: column; gap: .15rem; }
.findekopf b { font-family: var(--schrift-kopf); font-size: var(--t4); color: var(--marke); }
.findekopf span span { font-size: var(--t6); color: var(--text-leise); }
.findeformular { display: flex; flex-direction: column; gap: var(--a3); flex: 1; }
.feldkasten { display: block; position: relative; }
.feldkasten > svg { position: absolute; left: var(--a4); top: .95rem;
  width: 1.125rem; height: 1.125rem; fill: none; stroke: var(--text-leise);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.findeformular input, .findeformular textarea { padding-left: 2.9rem; }
.feldkasten.hoch { flex: 1; display: flex; }
.feldkasten.hoch textarea { flex: 1; }
.findeformular .knopf { margin-top: auto; justify-content: center; }
@media (max-width: 1000px) {
  .findeblock { grid-template-columns: 1fr 1fr; }
  .findekarte-text { grid-column: 1 / -1; }
  .kartenfeld { min-height: 18rem; }
}
@media (max-width: 680px) {
  .findeblock { grid-template-columns: 1fr; }
  .findekarte-text { grid-column: auto; }
}

.findekarte-form { }

.kartengegend { position: absolute; inset: 0; }
.kartengegend img { width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: .92; filter: saturate(.8); }
.kartengegend::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center,
              rgb(255 255 255 / .88) 0%, rgb(255 255 255 / .72) 45%,
              rgb(255 255 255 / .35) 100%); }
.kartenfeld.geladen .kartengegend { display: none; }

.leistungsreihen { display: flex; flex-direction: column; gap: var(--a5); }
.leistungsreihe { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center; gap: clamp(var(--a5), 4vw, var(--a7));
  background: var(--grund-weich); border-radius: var(--r2);
  padding: clamp(var(--a5), 3vw, var(--a6));
  text-decoration: none; color: inherit; }
.leistungsreihe:nth-child(even) .leistungsbild { grid-column: 2; grid-row: 1; }
.leistungsreihe:nth-child(even) .leistungstext { grid-column: 1; grid-row: 1; }

.leistungsbild { margin: 0; border-radius: var(--r3); overflow: hidden;
  background: var(--grund); }
.leistungsbild img, .leistungsbild svg { display: block; width: 100%;
  aspect-ratio: 4 / 3; object-fit: cover; }

.leistungstext .kachelkopf { margin: 0 0 var(--a4); font-size: var(--t3); }
.leistungstext p { margin: 0 0 var(--a3); color: var(--text-leise); max-width: 60ch;
  font-size: var(--t5); line-height: var(--zeile-weit); }
.leistungstext p:last-of-type { margin-bottom: 0; }

.leistungsknopf { margin-top: var(--a5); }
.leistungstext .kachel-mehr { display: inline-block; margin-top: var(--a4);
  font-weight: 600; color: var(--marke); }
a.leistungsreihe:hover .kachelkopf { color: var(--marke); }
a.leistungsreihe:hover .leistungsbild img { transform: scale(1.02); }
.leistungsbild img { transition: transform var(--tempo); }

@media (max-width: 780px) {
  .leistungsreihe { grid-template-columns: 1fr; gap: var(--a4); }
  .leistungsreihe:nth-child(even) .leistungsbild,
  .leistungsreihe:nth-child(even) .leistungstext { grid-column: 1; grid-row: auto; }
}

.findeblock { grid-auto-rows: minmax(31rem, auto); gap: var(--a4); }
.findekarte { padding: var(--a5); }
.findekarte-text h2 { font-size: var(--t2); }
.findekarte-text h2::after { margin-top: var(--a3); }
.findemarke { margin-bottom: var(--a4); padding: .3rem .7rem; }
.findelede { font-size: var(--t5); }
.findeliste { margin-top: var(--a4); padding-top: var(--a4); gap: var(--a4); }
.findezeichen { width: 2.5rem; height: 2.5rem; }
.findezeichen svg { width: 1.375rem; height: 1.375rem; stroke-width: 1.9; }
.findetext-zu span { line-height: var(--zeile-mittel); }

.kartenfeld { min-height: 0; }
.kartenband { margin: var(--a3); padding: var(--a3) var(--a4); }
.kartenband-pfeil { width: 1.75rem; height: 1.75rem; }

.findekopf { margin-bottom: var(--a4); }
.findeformular { gap: var(--a2); }
.findeformular input, .findeformular textarea {
  padding: .7rem .9rem .7rem 2.5rem; font-size: var(--t4); }
.feldkasten > svg { top: .8rem; left: var(--a3); width: 1rem; height: 1rem; }
.findeformular textarea { min-height: 0; }
.findeformular .formzustimmung { line-height: var(--zeile-mittel); gap: var(--a2); }
.findeformular .knopf { margin-top: var(--a2); padding: .8rem var(--a5); }

@media (max-width: 1000px) { .findeblock { grid-auto-rows: auto; } }

.kartenfeld iframe { position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0; display: block;
  filter: saturate(.32) brightness(1.05) contrast(.94); }

.kartengrund, .kartennadel, .kartenrecht { display: none; }

.findeblock { grid-auto-rows: minmax(34rem, auto); }
.findekopf { margin-bottom: var(--a3); }

.findekarte-karte { padding: 0; }

.findeblock { grid-auto-rows: minmax(30rem, auto); gap: var(--a3); }
.findekarte { padding: var(--a4); }
.findekarte-karte { padding: 0; }
.findemarke { margin-bottom: var(--a3); }
.findekarte-text h2::after { margin-top: var(--a2); width: 2rem; height: 2px; }
.findeliste { margin-top: var(--a4); padding-top: var(--a3); gap: var(--a3); }

.findezeichen { width: 2.375rem; height: 2.375rem; }

.findezeichen svg { width: 1.25rem; height: 1.25rem; stroke-width: 2.2; }
.findekopf { margin-bottom: var(--a3); }
.findeformular input, .findeformular textarea { padding: .6rem .8rem .6rem 2.35rem; }
.feldkasten > svg { top: .72rem; }
.findeformular .knopf { padding: .7rem var(--a5); min-height: 2.5rem; }

.kontaktpaar { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: var(--a5); align-items: stretch; }
.kontaktlinks { display: flex; flex-direction: column; gap: var(--a5); height: 100%; }
.kontaktkarte { background: var(--grund); border: 1px solid var(--linie);
  border-radius: var(--r3); padding: clamp(var(--a5), 3vw, var(--a6)); }
.kontaktlinks .kontaktkarte { flex: 1 1 0; display: flex; flex-direction: column; }
.kontaktlinks .kontaktkarte .findeliste,
.kontaktlinks .kontaktkarte .kontaktliste { flex: 1 1 auto;
  justify-content: space-evenly; }
.kontaktkarte h2 { margin: 0 0 var(--a5); font-size: var(--t3); }
.kontaktkarte > p { margin: 0 0 var(--a5); color: var(--text-leise); }

.kontaktkarte .findeliste { margin: 0; padding: 0; border-top: 0; list-style: none;
  display: flex; flex-direction: column; gap: var(--a4); }
.kontaktkarte .kontaktliste { margin: 0; display: flex;
  flex-direction: column; gap: var(--a4); }

.kontaktformular .formular > div:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .kontaktpaar { grid-template-columns: 1fr; }
  
  .kontaktlinks { height: auto; }
  .kontaktlinks .kontaktkarte { flex: 0 0 auto; }
  .kontaktlinks .kontaktkarte .findeliste,
  .kontaktlinks .kontaktkarte .kontaktliste { justify-content: flex-start; }
}

:root {
  --handschrift: "Klarwerk";
  --kopf-sperr: -.035em;
  --kopf-stark: 700;
  --r1: .5rem;
  --r2: .875rem;
  --r3: 1.5rem;
  --r4: 2rem;
  --rrund: 999px;
  --schrift: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --schrift-kopf: "Archivo", "Inter", system-ui, sans-serif;
}
h1, h2, h3 { font-weight: var(--kopf-stark); }
h1 { letter-spacing: var(--kopf-sperr); }

@media (max-width: 880px) {
  .buehne .huelle {
    grid-template-columns: 1fr; justify-items: stretch; text-align: left;
  }
  .buehne-text { max-width: none; }
  .buehne .lede { max-width: none; margin-inline: 0; }
  .buehne-bild { order: -1; min-height: 16rem; width: 100%; }
}
@media (max-width: 460px) {
  .buehne .knopfreihe { flex-direction: column; }
  .buehne .knopfreihe .knopf { width: 100%; }
}

:root { --r-knopf: var(--r1); }
