@charset "utf-8";
/* Praxis Dr. med. Octavian Minciu - Entwurf
   Mobile first. Keine fremden Server, keine style-Attribute im HTML
   (die Content-Security-Policy verbietet sie). */

/* ------------------------------------------------------------- Schriften */
@font-face {
  font-family: "Source Serif 4";
  src: url("/schriften/source-serif-4-latin.woff2") format("woff2");
  font-weight: 200 900; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("/schriften/source-serif-4-latin-ext.woff2") format("woff2");
  font-weight: 200 900; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/schriften/source-sans-3-latin.woff2") format("woff2");
  font-weight: 200 900; font-style: normal; font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  src: url("/schriften/source-sans-3-latin-ext.woff2") format("woff2");
  font-weight: 200 900; font-style: normal; font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------------------------------------------------------------- Marken */
:root {
  --tinte: #1d2a27;
  --tinte-leise: #4d5d59;
  --petrol: #1f544c;
  --petrol-dunkel: #163c36;
  --petrol-hell: #e4efec;
  --salbei: #8fb3aa;
  --papier: #fbfaf7;
  --sand: #f2efe8;
  --linie: #ddd8cd;
  --notfall: #9c2c1c;
  --notfall-hell: #fdf1ee;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --huelle: 74rem;
  --luft: clamp(1rem, 4vw, 2rem);
  --rund: 6px;
  --kopfhoehe: 4.25rem;
}

/* ------------------------------------------------------------- Grundlage */
*, *::before, *::after { box-sizing: border-box; }

html {
  /* Keine feste Pixelgroesse: die Schriftgroesse des Browsers muss wirken. */
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Sprungziele nicht unter die klebende Kopfzeile schieben. */
  scroll-padding-top: calc(var(--kopfhoehe) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  /* Kein overflow-x:hidden am body - das hebelt position:sticky aus.
     Ueberlaeufe werden dort behandelt, wo sie entstehen. */
}

img, picture, svg, video { max-width: 100%; }
/* Browser setzen <address> kursiv - hier ist es eine Anschrift, kein Zitat. */
address { font-style: normal; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--tinte);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.85rem, 1.25rem + 2.7vw, 3rem); letter-spacing: -.012em; }
h2 { font-size: clamp(1.45rem, 1.1rem + 1.5vw, 2.1rem); letter-spacing: -.008em; }
h3 { font-size: clamp(1.15rem, 1.03rem + .55vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p, ul, ol, dl { margin: 0 0 1em; }
p { max-width: 62ch; text-wrap: pretty; }
strong { font-weight: 650; }

a { color: var(--petrol); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--petrol-dunkel); }

:focus-visible {
  outline: 3px solid var(--petrol);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Auf dunklem Grund muss der Fokusrahmen hell sein, sonst verschwindet er. */
.fuss :focus-visible, .kopf__tat .knopf:focus-visible,
.notfallband :focus-visible, .dunkel :focus-visible {
  outline-color: #fff;
}

.huelle {
  width: min(100% - 2 * var(--luft), var(--huelle));
  margin-inline: auto;
}
.sprung {
  position: absolute; left: .5rem; top: -4rem; z-index: 100;
  background: var(--petrol-dunkel); color: #fff;
  padding: .7rem 1.1rem; border-radius: var(--rund);
  transition: top .15s;
}
.sprung:focus { top: .5rem; color: #fff; }

.kleintext { font-size: .9375rem; color: var(--tinte-leise); }
.visuell-versteckt {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
/* Muss nach allen display-Regeln stehen und sie schlagen: sonst bleibt ein
   Element mit [hidden] sichtbar, weil eine eigene display-Regel gewinnt. */
[hidden] { display: none !important; }

/* ------------------------------------------------------------------ Marke */
.marke { display: inline-flex; align-items: center; gap: .6rem; color: inherit; }
.signet { width: 2rem; height: 2rem; flex: 0 0 auto; color: var(--petrol); }
.marke--hell .signet { color: var(--salbei); }
.marke__text { display: flex; flex-direction: column; min-width: 0; }
.marke__haupt {
  font-family: var(--serif); font-weight: 650;
  font-size: 1.0625rem; line-height: 1.15; letter-spacing: -.01em;
  color: var(--tinte);
}
.marke__zusatz {
  font-size: .6875rem; line-height: 1.3; letter-spacing: .055em;
  text-transform: uppercase; color: var(--tinte-leise);
}
.marke--hell .marke__haupt { color: #fff; }
.marke--hell .marke__zusatz { color: var(--salbei); }

/* ---------------------------------------------------------------- Knoepfe */
.knopf {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  min-height: 2.875rem;
  padding: .7rem 1.35rem;
  border: 1px solid transparent; border-radius: var(--rund);
  font: inherit; font-weight: 600; line-height: 1.25;
  text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
.knopf--primaer { background: var(--petrol); color: #fff; }
.knopf--primaer:hover { background: var(--petrol-dunkel); color: #fff; }
.knopf--zweit {
  background: transparent; color: var(--petrol); border-color: var(--petrol);
}
.knopf--zweit:hover { background: var(--petrol-hell); color: var(--petrol-dunkel); }
.knopf--hell { background: #fff; color: var(--petrol-dunkel); }
.knopf--hell:hover { background: var(--petrol-hell); color: var(--petrol-dunkel); }
.knopf--rand-hell {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.55);
}
.knopf--rand-hell:hover { background: rgba(255,255,255,.12); color: #fff; }
.knopf--notfall { background: var(--notfall); color: #fff; }
.knopf--notfall:hover { background: #7d2216; color: #fff; }
.knopf--klein { min-height: 2.5rem; padding: .5rem .85rem; font-size: .9375rem; }
.knopf--voll { width: 100%; }
.knopf__lang { display: none; }
.knopf__kurz { display: inline; }
@media (min-width: 26.25rem) {
  .knopf__lang { display: inline; }
  .knopf__kurz { display: none; }
}

.knopfreihe {
  display: flex; flex-wrap: wrap; gap: .75rem; margin: 0 0 1rem;
}
.knopfreihe .knopf { flex: 1 1 auto; }
@media (min-width: 30rem) { .knopfreihe .knopf { flex: 0 0 auto; } }

/* ------------------------------------------------------------------- Kopf */
.kopf {
  position: sticky; top: 0; z-index: 40;
  background: var(--papier);
  border-bottom: 1px solid var(--linie);
}
.kopf__reihe {
  display: flex; align-items: center; gap: .75rem;
  min-height: var(--kopfhoehe);
}
.kopf__marke { text-decoration: none; flex: 1 1 auto; min-width: 0; }
/* Bei 320 px darf die Marke den Menueknopf nicht hinausdruecken.
   .marke ist inline-flex und schrumpft ohne max-width NICHT mit dem
   Verweis darum - der Text lief dann unsichtbar hinter die Knoepfe, und
   das Abschneiden mit Ellipse griff nie. Nur der Kasten des Textknotens
   verriet es: er reichte bis unter den Knopf. */
.kopf__marke .marke { max-width: 100%; min-width: 0; overflow: hidden; }
.kopf__marke .marke__haupt,
.kopf__marke .marke__zusatz { overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; }
/* Auf sehr schmalen Schirmen bleibt fuer die Unterzeile kein Platz. Lieber
   ganz weg als als Fragment. */
@media (max-width: 23.4375rem) {
  .kopf__marke .marke__zusatz { display: none; }
}
.kopf__tat { display: flex; align-items: center; gap: .5rem; flex: 0 0 auto; }
.kopf__nav { display: none; }

.menuknopf {
  display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .2rem;
  min-width: 2.75rem; min-height: 2.75rem;
  padding: .3rem .4rem;
  background: transparent; border: 1px solid var(--linie);
  border-radius: var(--rund); color: var(--tinte);
  font: inherit; font-size: .625rem; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
}
.menuknopf__balken {
  position: relative; display: block; width: 1.15rem; height: 2px;
  background: currentColor;
}
.menuknopf__balken::before, .menuknopf__balken::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; transition: transform .18s, opacity .18s;
}
.menuknopf__balken::before { top: -.34rem; }
.menuknopf__balken::after { top: .34rem; }
.menuknopf[aria-expanded="true"] .menuknopf__balken { background: transparent; }
.menuknopf[aria-expanded="true"] .menuknopf__balken::before {
  transform: translateY(.34rem) rotate(45deg);
}
.menuknopf[aria-expanded="true"] .menuknopf__balken::after {
  transform: translateY(-.34rem) rotate(-45deg);
}

.mobilnav {
  border-top: 1px solid var(--linie);
  background: var(--papier);
  padding: .5rem var(--luft) 1.25rem;
  max-height: calc(100dvh - var(--kopfhoehe)); overflow-y: auto;
}
.mobilnav ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.mobilnav li + li { border-top: 1px solid var(--linie); }
.mobilnav a {
  display: block; padding: .85rem .25rem; font-size: 1.0625rem;
  font-weight: 600; text-decoration: none; color: var(--tinte);
}
.mobilnav a[aria-current="page"] { color: var(--petrol); }
.mobilnav .nav__notfall { color: var(--notfall); }
.mobilnav__fuss { display: grid; gap: .6rem; }
.mobilnav__mail { text-align: center; font-size: .9375rem; }

@media (min-width: 60rem) {
  .kopf__reihe { gap: 1.5rem; }
  .kopf__marke { flex: 0 0 auto; }
  .kopf__marke .marke__haupt, .kopf__marke .marke__zusatz {
    overflow: visible; text-overflow: clip;
  }
  .kopf__nav { display: block; flex: 1 1 auto; min-width: 0; }
  .kopf__nav ul {
    display: flex; flex-wrap: wrap; justify-content: flex-end;
    gap: .25rem 1.1rem; list-style: none; margin: 0; padding: 0;
  }
  .kopf__nav a {
    display: block; padding: .4rem 0; font-size: .9688rem; font-weight: 600;
    text-decoration: none; color: var(--tinte);
    border-bottom: 2px solid transparent;
  }
  .kopf__nav a:hover { color: var(--petrol); border-bottom-color: var(--salbei); }
  .kopf__nav a[aria-current="page"] {
    color: var(--petrol); border-bottom-color: var(--petrol);
  }
  .kopf__nav .nav__notfall { color: var(--notfall); }
  .kopf__nav .nav__notfall:hover { color: #7d2216; }
  .menuknopf { display: none; }
  .mobilnav { display: none; }
}

/* ------------------------------------------------------------- Hinweisband */
.band { background: var(--petrol-hell); border-bottom: 1px solid #cfe0db; }
.band__inhalt { display: flex; flex-wrap: wrap; gap: .2rem .7rem; padding: .7rem 0; }
.band__titel { color: var(--petrol-dunkel); }
.band__text { color: var(--tinte); font-size: .9688rem; }

/* -------------------------------------------------------------- Brotkrumen */
.krume { border-bottom: 1px solid var(--linie); background: var(--papier); }
.krume__liste {
  display: flex; flex-wrap: wrap; gap: .3rem .5rem;
  list-style: none; margin: 0; padding: .6rem 0;
  font-size: .875rem; color: var(--tinte-leise);
}
.krume__liste li + li::before { content: "›"; margin-right: .5rem; color: var(--salbei); }
.krume__liste a { color: var(--tinte-leise); }
.krume__liste [aria-current] { color: var(--tinte); font-weight: 600; }

/* ------------------------------------------------------------------ Blöcke */
.block { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.block--eng { padding: clamp(1.75rem, 4vw, 3rem) 0; }
.block--sand { background: var(--sand); }
.block--zart { background: var(--petrol-hell); }
.dunkel { background: var(--petrol-dunkel); color: #fff; }
.dunkel h2, .dunkel h3 { color: #fff; }
.dunkel p { color: #e7efed; }
.dunkel a { color: #fff; }
/* Ein heller Kasten IN einem dunklen Block erbt sonst die helle Schrift -
   weiss auf weiss, und keine Pruefung, die nur Elternfarben liest, meldet
   es. Darum hier ausdruecklich zuruecksetzen. */
.dunkel .kasten {
  background: #fff; border-color: rgba(255,255,255,.2); color: var(--tinte);
}
.dunkel .kasten h2, .dunkel .kasten h3 { color: var(--tinte); }
.dunkel .kasten p, .dunkel .kasten li, .dunkel .kasten dd { color: var(--tinte-leise); }
.dunkel .kasten a { color: var(--petrol); }
.dunkel .kasten :focus-visible { outline-color: var(--petrol); }

.blockkopf { max-width: 44rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.blockkopf p { color: var(--tinte-leise); font-size: 1.0938rem; }
.dunkel .blockkopf p { color: #cfdedb; }

.augbraue {
  display: block; margin-bottom: .55rem;
  font-family: var(--sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--petrol);
}
.dunkel .augbraue { color: var(--salbei); }

/* --------------------------------------------------------------- Startbild */
.held {
  background: var(--petrol-dunkel); color: #fff;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2rem, 5vw, 3.5rem);
}
.held__raster { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
.held__text { min-width: 0; }
.held h1 { color: #fff; }
.held__lead { color: #dbe7e4; font-size: 1.0938rem; max-width: 56ch; }
.held__augbraue { color: var(--salbei); }
.held__bildhof { justify-self: start; }
.held__portrait {
  display: block; width: clamp(9.5rem, 34vw, 13.75rem);
  border-radius: var(--rund);
  border: 1px solid rgba(255,255,255,.28);
  overflow: hidden;
  background: var(--petrol);
}
.held__portrait img { display: block; width: 100%; height: auto; }
.held__bildunterschrift {
  margin: .65rem 0 0; font-size: .875rem; color: var(--salbei);
  max-width: 18rem;
}
/* Kleintext unter den Knoepfen im dunklen Startbild: der Verweis darin
   erbt sonst das dunkle Petrol und verschwindet fast im Grund. */
.held .kleintext { color: #cfdedb; max-width: 42ch; }
.held .kleintext a { color: #fff; }
.dunkel .kleintext { color: #cfdedb; }
.dunkel .kleintext a { color: #fff; }
.dunkel .kasten .kleintext { color: var(--tinte-leise); }
.dunkel .kasten .kleintext a { color: var(--petrol); }
@media (min-width: 52rem) {
  .held__raster {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
  .held__bildhof { justify-self: end; }
}

.versprechen {
  display: grid; gap: 1rem; list-style: none; margin: 2rem 0 0; padding: 0;
}
.versprechen li {
  min-width: 0;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--rund);
}
.versprechen h2 {
  font-size: 1.0625rem; margin: 0 0 .25rem; color: #fff;
}
.versprechen p { margin: 0; font-size: .9375rem; color: #cfdedb; max-width: none; }
@media (min-width: 46rem) {
  .versprechen { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ----------------------------------------------------------- Schnellfinder */
.finder { background: var(--sand); border-bottom: 1px solid var(--linie); }
.finder__liste {
  display: grid; gap: 1px; list-style: none; margin: 0; padding: 0;
  background: var(--linie);
}
.finder__karte { min-width: 0; background: var(--sand); }
.finder__link {
  display: grid; gap: .15rem; height: 100%;
  padding: 1.15rem var(--luft); text-decoration: none; color: var(--tinte);
  transition: background-color .15s;
}
.finder__link:hover { background: #fff; color: var(--tinte); }
.ikone { width: 1.5rem; height: 1.5rem; color: var(--petrol); margin-bottom: .3rem; }
.finder__titel { font-family: var(--serif); font-size: 1.125rem; font-weight: 650; }
.finder__zeile { font-size: .875rem; color: var(--tinte-leise); }
.finder__tat {
  margin-top: .35rem; font-size: .9375rem; font-weight: 600;
  color: var(--petrol); text-decoration: underline;
  text-underline-offset: .18em;
}
.finder__karte--notfall .ikone { color: var(--notfall); }
.finder__karte--notfall .finder__tat { color: var(--notfall); }
@media (min-width: 34rem) { .finder__liste { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 62rem) {
  .finder__liste {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(100% - 2 * var(--luft), var(--huelle)); margin-inline: auto;
    background: transparent; gap: 1rem; padding: 1.5rem 0;
  }
  .finder__karte {
    background: #fff; border: 1px solid var(--linie); border-radius: var(--rund);
  }
  .finder__link { padding: 1.15rem 1.25rem; }
}

/* ------------------------------------------------------------- Sprechzeiten */
.zeiten dl { margin: 0; }
.zeiten__titel { font-size: 1.0625rem; margin: 0 0 .6rem; }
.zeiten__zeile {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .25rem 1rem;
  padding: .55rem 0; border-bottom: 1px solid var(--linie);
}
.zeiten__zeile:last-child { border-bottom: 0; }
.zeiten__zeile dt { font-weight: 600; }
.zeiten__zeile dd { margin: 0; text-align: right; }
.zeiten__spanne { display: block; font-variant-numeric: tabular-nums; }
.zeiten__notiz, .zeiten__zu { display: block; font-size: .875rem; color: var(--tinte-leise); }
.zeiten__zeile--heute { position: relative; }
.zeiten__zeile--heute dt { color: var(--petrol); }
.zeiten__zeile--heute dt::after {
  content: "heute"; display: inline-block; margin-left: .5rem;
  padding: .05rem .4rem; border-radius: 999px;
  background: var(--petrol); color: #fff;
  font-family: var(--sans); font-size: .6875rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; vertical-align: .1em;
}
.zeiten--hell .zeiten__zeile { border-bottom-color: rgba(255,255,255,.16); }
.zeiten--hell .zeiten__titel, .zeiten--hell dt { color: #fff; }
.zeiten--hell dd, .zeiten--hell .zeiten__notiz, .zeiten--hell .zeiten__zu {
  color: #cfdedb;
}
.zeiten--hell .zeiten__zeile--heute dt { color: var(--salbei); }
.zeiten--hell .zeiten__zeile--heute dt::after {
  background: var(--salbei); color: var(--petrol-dunkel);
}
.zeiten--eng .zeiten__zeile { padding: .35rem 0; font-size: .9375rem; }

.zustand {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .85rem; border-radius: 999px;
  font-size: .9375rem; font-weight: 600;
  background: var(--sand); color: var(--tinte-leise);
}
.zustand::before {
  content: ""; width: .6rem; height: .6rem; border-radius: 50%;
  background: currentColor; flex: 0 0 auto;
}
.zustand--offen { background: var(--petrol-hell); color: #14483f; }
.zustand--zu { background: var(--sand); color: #6a4a34; }

/* ------------------------------------------------------------------ Karten */
.karten { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 40rem) { .karten { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .karten--drei { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.karte {
  position: relative;
  display: flex; flex-direction: column; min-width: 0;
  background: #fff; border: 1px solid var(--linie);
  border-radius: var(--rund); padding: 1.25rem 1.35rem;
  transition: border-color .15s, box-shadow .15s;
}
/* Die ganze Karte ist das Tippziel, nicht nur die Zeile der Ueberschrift.
   Der Verweis bleibt ein echter Verweis - nur seine Flaeche waechst. */
.karte h3 a::after { content: ""; position: absolute; inset: 0; }
.karte:has(a:focus-visible) { outline: 3px solid var(--petrol); outline-offset: 2px; }
.karte:hover { border-color: var(--salbei); }
.karte h3 { margin: 0 0 .4rem; font-size: 1.1875rem; }
.karte h3 a { text-decoration: none; color: var(--tinte); }
.karte:hover h3 a { color: var(--petrol); }
.karte p { margin: 0 0 .9rem; font-size: .9688rem; color: var(--tinte-leise); max-width: none; }
.karte__pfeil {
  margin-top: auto; font-size: .9375rem; font-weight: 600; color: var(--petrol);
}
.karte__pfeil::after { content: " →"; }
.block--sand .karte { background: var(--papier); }

/* ------------------------------------------------------------------ Listen */
.haken { list-style: none; margin: 0 0 1rem; padding: 0; }
.haken li {
  position: relative; padding-left: 1.6rem; margin-bottom: .45rem;
}
.haken li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .5rem; height: .5rem; border-radius: 50%;
  background: var(--salbei);
}
.gruppen { display: grid; gap: 1.75rem; }
@media (min-width: 46rem) { .gruppen { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.gruppe { min-width: 0; }
.gruppe h3 {
  padding-bottom: .5rem; margin-bottom: .85rem;
  border-bottom: 2px solid var(--petrol-hell);
}

/* ------------------------------------------------------------ Zwei Spalten */
.zwei { display: grid; gap: clamp(1.75rem, 4vw, 3rem); }
.zwei > * { min-width: 0; }
@media (min-width: 54rem) {
  .zwei { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); align-items: start; }
  .zwei--gleich { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.kasten {
  background: #fff; border: 1px solid var(--linie);
  border-radius: var(--rund); padding: clamp(1.25rem, 3vw, 1.75rem);
}
.kasten > :last-child { margin-bottom: 0; }
.kasten--zart { background: var(--petrol-hell); border-color: #cfe0db; }
.block--sand .kasten { background: var(--papier); }

.hinweis {
  border-left: 3px solid var(--salbei);
  padding: .25rem 0 .25rem 1rem; margin: 0 0 1rem;
  color: var(--tinte-leise); font-size: .9688rem;
}

/* ------------------------------------------------------------------ Räume */
/* Die Quellbilder sind 150 x 113 Pixel. Sie werden nie groesser gezeigt -
   hochgerechnet waeren sie unscharf, und Unschaerfe liest sich als
   Nachlaessigkeit. */
.raeume {
  display: grid; gap: 1.25rem; list-style: none; margin: 0; padding: 0;
  grid-template-columns: repeat(auto-fill, minmax(9.375rem, 9.375rem));
  justify-content: start;
}
.raum { min-width: 0; }
.raum__bild {
  display: block; width: 9.375rem; height: 7.03rem;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--linie); background: var(--sand);
}
.raum__bild img { display: block; width: 100%; height: 100%; object-fit: cover; }
.raum__name {
  display: block; margin-top: .5rem; font-size: .875rem; font-weight: 600;
}

/* ------------------------------------------------------------ Notfallseite */
.notfallband { background: var(--notfall-hell); border-top: 1px solid #f0d5cd; }
.notfallband__inhalt {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .35rem .75rem;
  padding: .85rem 0;
}
.notfallband__marke {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--notfall);
  border: 1px solid currentColor; border-radius: 3px; padding: .05rem .4rem;
}
.notfallband__text { font-size: .9375rem; color: #5f2318; }
.notfallband__text a { color: var(--notfall); }
.notfallband__mehr { font-size: .9375rem; font-weight: 600; color: var(--notfall); }

.stufen { display: grid; gap: 1rem; list-style: none; margin: 0 0 1.5rem; padding: 0; }
.stufe {
  min-width: 0; background: #fff; border: 1px solid var(--linie);
  border-left: 4px solid var(--salbei);
  border-radius: var(--rund); padding: 1.25rem 1.35rem;
}
.stufe--dringend { border-left-color: var(--notfall); background: var(--notfall-hell); }
.stufe h3 { margin: 0 0 .35rem; }
.stufe p { margin: 0 0 .9rem; color: var(--tinte-leise); max-width: none; }
.stufe--dringend p { color: #5f2318; }
.stufe > :last-child { margin-bottom: 0; }
.nummer {
  display: inline-block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.25rem); line-height: 1.1;
  letter-spacing: -.01em; text-decoration: none; color: var(--petrol);
  font-variant-numeric: tabular-nums;
}
.stufe--dringend .nummer { color: var(--notfall); }

/* -------------------------------------------------------------------- FAQ */
.fragen { border-top: 1px solid var(--linie); }
.frage { border-bottom: 1px solid var(--linie); }
.frage summary {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; padding: 1rem 0; cursor: pointer;
  font-family: var(--serif); font-size: 1.0938rem; font-weight: 650;
  list-style: none;
}
.frage summary::-webkit-details-marker { display: none; }
.frage summary::after {
  content: "+"; flex: 0 0 auto; font-family: var(--sans); font-weight: 400;
  font-size: 1.5rem; line-height: 1; color: var(--petrol);
}
.frage[open] summary::after { content: "–"; }
.frage__text { padding: 0 0 1.1rem; }
.frage__text p { margin: 0; color: var(--tinte-leise); }

/* ------------------------------------------------------------- Formular */
.formular { display: grid; gap: 1rem; }
.feld { display: grid; gap: .35rem; min-width: 0; }
.feld label { font-size: .9375rem; font-weight: 600; }
.feld input, .feld textarea, .feld select {
  width: 100%; min-height: 2.875rem;
  padding: .6rem .8rem;
  font: inherit; font-size: 1rem; color: var(--tinte);
  background: #fff; border: 1px solid #c6bfb2; border-radius: var(--rund);
}
.feld textarea { min-height: 8rem; resize: vertical; }
.feld input:focus-visible, .feld textarea:focus-visible, .feld select:focus-visible {
  border-color: var(--petrol);
}
.feld__hilfe { font-size: .875rem; color: var(--tinte-leise); }
@media (min-width: 40rem) {
  .formular--zwei { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .formular--zwei .feld--breit { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------- Karte/Ort */
.ortkarte {
  display: block; border: 1px solid var(--linie); border-radius: var(--rund);
  overflow: hidden; background: var(--sand); text-decoration: none;
  color: var(--tinte);
}
.ortkarte__flaeche {
  display: grid; place-items: center; gap: .5rem;
  padding: clamp(2rem, 6vw, 3.5rem) 1.25rem; text-align: center;
}
.ortkarte__flaeche .ikone { width: 2rem; height: 2rem; margin: 0; }
.ortkarte:hover { border-color: var(--salbei); }
.ortkarte strong { font-family: var(--serif); font-size: 1.125rem; }
.ortkarte span { font-size: .9375rem; color: var(--tinte-leise); }

/* ------------------------------------------------------------------- Prosa */
.prosa { max-width: 44rem; }
.prosa h2 { margin-top: 2rem; }
.prosa h3 { margin-top: 1.5rem; }
.prosa ul { padding-left: 1.25rem; }
.prosa li { margin-bottom: .4rem; }
.prosa dl { display: grid; gap: .1rem .75rem; }
@media (min-width: 34rem) {
  .prosa dl { grid-template-columns: minmax(0, 14rem) minmax(0, 1fr); }
}
.prosa dt { font-weight: 650; }
.prosa dd { margin: 0 0 .5rem; color: var(--tinte-leise); }

/* -------------------------------------------------------------------- Fuss */
.fuss { background: var(--petrol-dunkel); color: #dbe7e4; padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; }
.fuss a { color: #fff; }
.fuss__raster { display: grid; gap: 2rem; }
.fuss__spalte { min-width: 0; }
.fuss__titel {
  font-family: var(--sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--salbei);
  margin: 0 0 .75rem;
}
.fuss__titel--zweit { margin-top: 1.5rem; }
.fuss__satz { font-size: .9375rem; color: #bdd1cd; margin-top: 1rem; max-width: 34ch; }
.fuss address { font-style: normal; font-size: .9375rem; }
.fuss__liste { list-style: none; margin: 0; padding: 0; font-size: .9375rem; }
.fuss__liste li { margin-bottom: .4rem; }
.fuss__unten {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: .5rem 1rem;
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .875rem; color: #bdd1cd;
}
.fuss__unten p { margin: 0; }
.fuss__recht { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 40rem) { .fuss__raster { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 64rem) { .fuss__raster { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; } }

/* --------------------------------------------------------------- Fussleiste */
.fussleiste {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--papier); border-top: 1px solid var(--linie);
  padding-bottom: env(safe-area-inset-bottom);
}
.fussleiste__tat {
  display: flex; align-items: center; justify-content: center;
  min-height: 3.25rem; padding: .5rem .35rem;
  font-size: .9375rem; font-weight: 650; text-decoration: none;
  color: var(--tinte); border-right: 1px solid var(--linie);
}
.fussleiste__tat:last-child { border-right: 0; }
.fussleiste__tat--haupt { background: var(--petrol); color: #fff; }
.fussleiste__tat--notfall { color: var(--notfall); }
body { padding-bottom: 3.25rem; }
@media (min-width: 60rem) {
  .fussleiste { display: none; }
  body { padding-bottom: 0; }
}

/* ------------------------------------------------------------------ Druck */
@media print {
  .kopf, .mobilnav, .fussleiste, .finder, .krume, .sprung { display: none !important; }
  body { padding-bottom: 0; background: #fff; color: #000; }
  .fuss, .dunkel, .held { background: #fff !important; color: #000 !important; }
  .held h1, .dunkel h2, .dunkel h3, .fuss a, .dunkel p, .held__lead { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}
