/* ==========================================================================
   Monteurzimmer Duisburg-Hamborn – Design-System

   Aufbau nach dem Muster einer Portal-Objektseite: heller, ruhiger Grund,
   eine kraeftige Aktionsfarbe, klare Karten in Rastern. Die Farben kommen
   aus dem Laroni-Logo, nicht aus dem Vorbild – das Vorbild gibt nur den
   Aufbau vor.

   Kontraste (auf Weiss):
     --petrol      #047294  5,5:1  – als Schrift und als Knopf mit weisser Schrift ok
     --akzent      #fe4f01  3,3:1  – NUR Flaechen und Symbole, nie kleine Schrift
     --akzent-text #c43f00  5,2:1  – Orange als Schrift
     --ink         #0a2c39  15:1   – Fliesstext
   ========================================================================== */

:root {
  --petrol:       #047294;
  --petrol-tief:  #035a75;
  --petrol-dunkel:#023f52;
  --petrol-hell:  #eef6f9;
  --petrol-rand:  #cfe3ea;

  --akzent:       #fe4f01;
  --akzent-text:  #c43f00;
  --akzent-hell:  #fff1ea;

  --ink:          #0a2c39;
  --ink-soft:     #143f4f;
  --grau-text:    #4d6673;
  --grau-1:       #f7f9fa;
  --grau-2:       #eef2f4;
  --linie:        #dde5e9;
  --weiss:        #ffffff;

  --radius:       10px;
  --radius-gross: 16px;
  --schatten:     0 1px 2px rgba(10,44,57,.06), 0 8px 24px rgba(10,44,57,.07);
  --breite:       1180px;
}

/* --- Grundlagen ---------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--weiss);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-text-size-adjust: 100%;
  /* Lange Adressen (E-Mail, Domains im Impressum) sollen umbrechen statt
     die Seite auf schmalen Geraeten breiter zu machen. */
  overflow-wrap: break-word;
}

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

a { color: var(--petrol); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--petrol-tief); }

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 20px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.sprungmarke {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px;
}
.sprungmarke:focus { left: 8px; top: 8px; }

:focus-visible { outline: 3px solid var(--akzent-text); outline-offset: 2px; }

/* --- Knoepfe ------------------------------------------------------------- */

.btn {
  display: inline-block;
  background: var(--petrol);
  color: #fff;
  border: 2px solid var(--petrol);
  border-radius: var(--radius);
  padding: 11px 20px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}
.btn:hover { background: var(--petrol-tief); border-color: var(--petrol-tief); color: #fff; }

.btn--rand { background: transparent; color: var(--petrol); }
.btn--rand:hover { background: var(--petrol-hell); color: var(--petrol-tief); }

.btn--akzent { background: var(--akzent-text); border-color: var(--akzent-text); }
.btn--akzent:hover { background: #a33400; border-color: #a33400; }

.btn--gross { padding: 14px 26px; font-size: 1.05rem; }

.btn-reihe { display: flex; flex-wrap: wrap; gap: 12px; }

/* --- Kopfbereich --------------------------------------------------------- */

.topbar {
  background: var(--ink);
  color: #d7e6ec;
  font-size: .875rem;
}
.topbar__innen {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: #fff; }
.topbar__rechts { display: flex; align-items: center; gap: 18px; }
.topbar__sprachen a {
  display: inline-block; padding: 2px 6px; text-decoration: none;
  font-weight: 700; font-size: .8rem; opacity: .85;
}
.topbar__sprachen a:hover { opacity: 1; }
.topbar__tel { font-weight: 700; text-decoration: none; white-space: nowrap; }

.kopf {
  background: var(--weiss);
  border-bottom: 1px solid var(--linie);
  position: sticky; top: 0; z-index: 40;
}
.kopf__innen {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 78px;
}
.kopf__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.kopf__logo img { width: auto; height: 46px; }
.kopf__wortmarke {
  font-size: .8rem; line-height: 1.15; text-transform: uppercase;
  letter-spacing: .06em; color: var(--grau-text);
}
.kopf__wortmarke b { color: var(--ink); font-size: .95rem; letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 12px; border-radius: 8px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .97rem;
}
.nav a:hover { background: var(--grau-2); }
.nav a.aktiv { color: var(--petrol); box-shadow: inset 0 -3px 0 var(--akzent); border-radius: 8px 8px 0 0; }
.nav .btn { margin-left: 10px; color: #fff; }
.nav .btn:hover { background: var(--petrol-tief); }

.nav-schalter {
  display: none; width: 46px; height: 40px; background: transparent;
  border: 1px solid var(--linie); border-radius: 8px; cursor: pointer; position: relative;
}
.nav-schalter span:first-child,
.nav-schalter span:first-child::before,
.nav-schalter span:first-child::after {
  position: absolute; left: 12px; width: 20px; height: 2px;
  background: var(--ink); content: ''; transition: transform .15s;
}
.nav-schalter span:first-child { top: 19px; }
.nav-schalter span:first-child::before { top: -6px; left: 0; }
.nav-schalter span:first-child::after  { top:  6px; left: 0; }

/* --- Hero ---------------------------------------------------------------- */

.hero {
  background: linear-gradient(180deg, var(--petrol-hell), var(--weiss));
  border-bottom: 1px solid var(--linie);
  padding: 40px 0 0;
}
.hero__innen {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center;
}
.hero__kicker {
  display: inline-block; background: var(--akzent-hell); color: var(--akzent-text);
  font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 14px;
}
.hero h1 { margin-bottom: .35em; }
.hero__unter { font-size: 1.12rem; color: var(--grau-text); max-width: 46ch; }

.hero__anruf {
  display: flex; align-items: center; gap: 14px; margin: 22px 0 8px;
  background: var(--weiss); border: 1px solid var(--petrol-rand);
  border-radius: var(--radius-gross); padding: 14px 16px; box-shadow: var(--schatten);
  max-width: 460px;
}
.hero__anruf-zeichen {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--akzent); color: #fff; display: grid; place-items: center;
  font-size: 1.3rem;
}
.hero__anruf-text { font-size: .92rem; color: var(--grau-text); line-height: 1.35; }
.hero__anruf-text strong { display: block; font-size: 1.22rem; color: var(--ink); }
.hero__anruf-text a { text-decoration: none; }

.hero__bild {
  border-radius: var(--radius-gross); overflow: hidden; box-shadow: var(--schatten);
  aspect-ratio: 4 / 3;
}
.hero__bild img { width: 100%; height: 100%; object-fit: cover; }

.hero__fakten {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); box-shadow: var(--schatten);
  margin: 34px 0 -34px; position: relative; z-index: 2; overflow: hidden;
}
.hero__fakt { padding: 16px 14px; text-align: center; border-left: 1px solid var(--linie); }
.hero__fakt:first-child { border-left: 0; }
.hero__fakt b { display: block; font-size: 1.45rem; color: var(--petrol); line-height: 1.1; }
.hero__fakt span { font-size: .85rem; color: var(--grau-text); }

/* --- Schnelllinks -------------------------------------------------------- */

.schnelllinks { background: var(--grau-1); border-bottom: 1px solid var(--linie); padding: 62px 0 18px; }
.schnelllinks__innen { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; }
.schnelllinks h2 { font-size: .95rem; margin: 0 8px 0 0; color: var(--grau-text); font-weight: 700; }
.schnelllinks a {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: 999px;
  padding: 6px 14px; font-size: .9rem; text-decoration: none; color: var(--ink);
}
.schnelllinks a:hover { border-color: var(--petrol); color: var(--petrol); }

/* --- Abschnitte ---------------------------------------------------------- */

.abschnitt { padding: 52px 0; }
.abschnitt--grau { background: var(--grau-1); border-block: 1px solid var(--linie); }
.abschnitt--petrol { background: var(--petrol-hell); border-block: 1px solid var(--petrol-rand); }
.abschnitt__kopf { max-width: 62ch; margin-bottom: 28px; }
.abschnitt__kopf p { color: var(--grau-text); margin-bottom: 0; }

/* --- Zimmerkacheln ------------------------------------------------------- */

.kacheln { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kachel {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius-gross);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--schatten);
}
.kachel__bild { aspect-ratio: 4 / 3; overflow: hidden; background: var(--grau-2); }
.kachel__bild img { width: 100%; height: 100%; object-fit: cover; }
.kachel__inhalt { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.kachel h3 { margin: 0; }
.kachel__meta { font-size: .87rem; color: var(--grau-text); }
.kachel p { margin: 0; font-size: .96rem; }
.kachel__preis {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--linie);
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
}
.kachel__preis b { font-size: 1.3rem; color: var(--akzent-text); }
.kachel__preis span { font-size: .82rem; color: var(--grau-text); }

/* --- Zusagen (Dreier) ---------------------------------------------------- */

.zusagen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.zusage {
  background: var(--weiss); border: 1px solid var(--linie); border-top: 4px solid var(--akzent);
  border-radius: var(--radius); padding: 22px;
}
.zusage__kurz {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--akzent-text); display: block; margin-bottom: 6px;
}
.zusage h3 { margin-bottom: .4em; }
.zusage p { margin: 0; font-size: .96rem; color: var(--grau-text); }

/* --- Haekchenliste ------------------------------------------------------- */

.haken { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.haken li { position: relative; padding-left: 34px; }
.haken li::before {
  content: '✓'; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--petrol); color: #fff; font-size: .8rem;
  display: grid; place-items: center; font-weight: 700;
}

/* --- Lage ---------------------------------------------------------------- */

.lage { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.lage__bild { display: grid; place-items: center; }
.lage__bild img { max-height: 300px; width: auto; }
.lage__karte {
  background: var(--weiss); border: 1px solid var(--linie); border-radius: var(--radius);
  padding: 18px 20px;
}
.lage__karte address { font-style: normal; font-size: 1.05rem; line-height: 1.5; }

/* --- Vorteile (Sechser) -------------------------------------------------- */

.vorteile { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 34px; }
.vorteil h3 { display: flex; align-items: center; gap: 9px; margin-bottom: .35em; }
.vorteil h3::before {
  content: ''; width: 10px; height: 10px; border-radius: 2px;
  background: var(--akzent); flex: 0 0 auto;
}
.vorteil p { margin: 0; color: var(--grau-text); font-size: .96rem; }

/* --- Ausstattungsraster -------------------------------------------------- */

.ausstattung { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ausstattung h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; color: var(--grau-text); }
.ausstattung ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.ausstattung li { display: flex; align-items: center; gap: 10px; font-size: .96rem; }
.ausstattung .zeichen {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 8px;
  background: var(--petrol-hell); border: 1px solid var(--petrol-rand);
  display: grid; place-items: center; font-size: 1rem;
}

/* --- Galerie ------------------------------------------------------------- */

.galerie { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.galerie figure {
  margin: 0; background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius); overflow: hidden;
}
.galerie__rahmen { aspect-ratio: 16 / 10; overflow: hidden; background: var(--grau-2); }
.galerie__rahmen--hoch { aspect-ratio: 3 / 4; }
.galerie img { width: 100%; height: 100%; object-fit: cover; }
.galerie figcaption { padding: 12px 14px; font-size: .9rem; }
.galerie figcaption b { display: block; }
.galerie figcaption span { color: var(--grau-text); }

/* --- Langtext ------------------------------------------------------------ */

.langtext { max-width: 74ch; }
.langtext h3 { margin-top: 1.6em; }
.langtext ul { padding-left: 1.2em; }

/* --- Tabellen ------------------------------------------------------------ */

.tabelle-rahmen { overflow-x: auto; }
/* min-width, damit die Tabelle auf dem Handy im Rahmen scrollt, statt sich
   zu einer unlesbaren Quetschung zusammenzuziehen. */
table.tabelle { border-collapse: collapse; width: 100%; min-width: 560px; background: var(--weiss); font-size: .96rem; }
table.tabelle th, table.tabelle td { padding: 11px 14px; border-bottom: 1px solid var(--linie); text-align: left; }
table.tabelle th { background: var(--grau-2); font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
table.tabelle td.zahl, table.tabelle th.zahl { text-align: right; white-space: nowrap; }

/* --- Hinweiskasten ------------------------------------------------------- */

.hinweis {
  background: var(--akzent-hell); border-left: 4px solid var(--akzent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin: 22px 0;
  font-size: .96rem;
}

/* --- Aufrufband ---------------------------------------------------------- */

.band { background: var(--petrol); color: #fff; padding: 40px 0; }
.band h2 { margin-bottom: .3em; }
.band p { margin: 0; opacity: .92; max-width: 52ch; }
.band__innen { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.band .btn { background: #fff; color: var(--petrol-dunkel); border-color: #fff; }
.band .btn:hover { background: var(--akzent-hell); color: var(--akzent-text); border-color: var(--akzent-hell); }
.band .btn--rand { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.band .btn--rand:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

/* --- Fusszeile ----------------------------------------------------------- */

.fuss { background: var(--ink-soft); color: #cfe0e7; padding: 46px 0 24px; font-size: .95rem; }
.fuss a { color: #fff; }
.fuss h4 { color: #fff; margin-bottom: .7em; font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.fuss__raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px; }
.fuss__logo { height: 54px; width: auto; margin-bottom: 14px; }
.fuss__leise { opacity: .75; }
.fuss__schwestern {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16);
}
.fuss__schwestern ul { margin-top: 10px; }
.fuss__schwestern li { padding-left: 16px; position: relative; }
.fuss__schwestern li::before { content: '·'; position: absolute; left: 4px; color: var(--akzent); font-weight: 700; }
.fuss__unten {
  margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem;
}
.fuss__unten nav { display: flex; gap: 18px; }

/* --- Mobile Aktionsleiste ------------------------------------------------ */

.aktionsleiste { display: none; }

/* --- Seitenkopf der Unterseiten ------------------------------------------ */

.seitenkopf {
  background: linear-gradient(180deg, var(--petrol-hell), var(--weiss));
  border-bottom: 1px solid var(--linie);
  padding: 26px 0 30px;
}
.seitenkopf h1 { margin: 6px 0 .35em; }
.seitenkopf > .container > p { color: var(--grau-text); max-width: 68ch; margin: 0; }

.brotkrumen { font-size: .87rem; color: var(--grau-text); }
.brotkrumen a { text-decoration: none; }
.brotkrumen span { margin: 0 4px; }

/* --- Zickzack (Bild/Text im Wechsel) ------------------------------------- */

.zickzack {
  display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center;
  padding: 26px 0; border-bottom: 1px solid var(--linie);
}
.zickzack:last-child { border-bottom: 0; }
.zickzack--gedreht .zickzack__bild { order: 2; }
.zickzack__bild { border-radius: var(--radius-gross); overflow: hidden; box-shadow: var(--schatten); }
.zickzack__bild img { width: 100%; height: 100%; object-fit: cover; max-height: 420px; }
.zickzack h2 { margin-bottom: .3em; }

/* --- Schritte ------------------------------------------------------------ */

.schritte { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.schritt {
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius); padding: 20px; position: relative;
}
.schritt__nr {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--petrol); color: #fff; font-weight: 700; margin-bottom: 12px;
}
.schritt h2 { font-size: 1.1rem; margin-bottom: .35em; }
.schritt p { margin: 0; font-size: .95rem; color: var(--grau-text); }

/* --- Zwei Spalten -------------------------------------------------------- */

.zwei-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.zwei-spalten h2 { margin-top: 0; }

/* --- Preisrechner -------------------------------------------------------- */

.rechner {
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); padding: 24px; box-shadow: var(--schatten);
  max-width: 760px;
}
.rechner__felder { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rechner__ergebnis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--linie); border: 1px solid var(--linie);
  border-radius: var(--radius); overflow: hidden; margin-top: 10px;
}
.rechner__ergebnis > div { background: var(--grau-1); padding: 14px 16px; }
.rechner__ergebnis span { display: block; font-size: .85rem; color: var(--grau-text); }
.rechner__ergebnis b { font-size: 1.25rem; }
.rechner__summe { background: var(--petrol-hell) !important; }
.rechner__summe b { color: var(--akzent-text); }

/* --- FAQ ----------------------------------------------------------------- */

.faq-liste { max-width: 80ch; }
.faq-liste details {
  border: 1px solid var(--linie); border-radius: var(--radius);
  background: var(--weiss); margin-bottom: 10px;
}
.faq-liste summary {
  cursor: pointer; padding: 14px 18px; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
}
.faq-liste summary::-webkit-details-marker { display: none; }
.faq-liste summary::after { content: '+'; color: var(--akzent-text); font-size: 1.3rem; line-height: 1; }
.faq-liste details[open] summary::after { content: '–'; }
.faq-liste details[open] summary { border-bottom: 1px solid var(--linie); }
.faq-antwort { padding: 14px 18px; color: var(--grau-text); }

/* --- Meldungen ----------------------------------------------------------- */

.meldung {
  border-radius: var(--radius); padding: 14px 18px; margin: 0 0 24px;
  border-left: 4px solid var(--petrol); background: var(--petrol-hell); font-weight: 600;
}
.meldung--gut    { border-left-color: var(--petrol); }
.meldung--fehler { border-left-color: var(--akzent); background: var(--akzent-hell); }

/* --- Anfrageseite -------------------------------------------------------- */

.anfrage-raster { display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: start; }
.anfrage-form {
  background: var(--weiss); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); padding: 26px; box-shadow: var(--schatten);
}
.anfrage-form h2 {
  font-size: 1.05rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--grau-text); margin: 26px 0 14px; padding-top: 16px;
  border-top: 1px solid var(--linie);
}
.anfrage-form h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.anfrage-paar { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.anfrage-seite {
  background: var(--grau-1); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); padding: 24px;
}
.anfrage-seite h2 { font-size: 1.15rem; }
.anfrage-seite h3 { font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; color: var(--grau-text); margin-top: 22px; }
.anfrage-seite address { font-style: normal; }
.anfrage-seite hr { border: 0; border-top: 1px solid var(--linie); margin: 22px 0; }
.anfrage-seite .btn { width: 100%; }

.liste-knapp { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: .93rem; }
.liste-knapp li { padding-left: 18px; position: relative; }
.liste-knapp li::before { content: '›'; position: absolute; left: 0; color: var(--akzent-text); font-weight: 700; }

/* --- Formulare ----------------------------------------------------------- */

.feld { display: grid; gap: 6px; margin-bottom: 16px; }
.feld label { font-weight: 600; font-size: .93rem; }
.feld input, .feld select, .feld textarea {
  font: inherit; padding: 11px 12px; border: 1px solid var(--linie);
  border-radius: var(--radius); background: var(--weiss); color: var(--ink); width: 100%;
}
.feld input:focus, .feld select:focus, .feld textarea:focus { border-color: var(--petrol); }
.feld__hinweis { font-size: .85rem; color: var(--grau-text); }
.honigtopf { position: absolute; left: -9999px; }

/* Ankreuzfeld.
   Diese Regeln muessen NACH ".feld input { width: 100% }" stehen und das
   Ankreuzfeld ausdruecklich benennen. Standen sie davor, gewann die
   allgemeine Regel (gleiche Spezifitaet, spaetere Stelle): das Kaestchen
   wurde auf volle Breite gedehnt und schob den Text aus der Karte – auf
   schmalen Geraeten mit 130 px waagerechtem Ueberlauf der ganzen Seite. */
.feld--haken label {
  display: flex; gap: 10px; align-items: flex-start;
  font-weight: 400; font-size: .93rem;
}
.feld--haken label > span { flex: 1 1 auto; min-width: 0; }
.feld--haken input[type="checkbox"] {
  width: 18px; min-width: 18px; height: 18px;
  flex: 0 0 auto; margin: 3px 0 0; padding: 0; accent-color: var(--petrol);
}

/* ==========================================================================
   Schmale Bildschirme
   ========================================================================== */

@media (max-width: 1000px) {
  .hero__innen { grid-template-columns: 1fr; }
  .hero__bild { order: -1; aspect-ratio: 16 / 9; }
  .hero__fakten { grid-template-columns: repeat(3, 1fr); }
  .hero__fakt:nth-child(4) { border-left: 0; }
  .kacheln, .zusagen, .vorteile, .ausstattung, .galerie { grid-template-columns: repeat(2, 1fr); }
  .lage { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr 1fr; }
  .schritte { grid-template-columns: repeat(2, 1fr); }
  .anfrage-raster { grid-template-columns: 1fr; }

  /* Menue als Schalter. Der Umbruchpunkt liegt bei 1000 px und nicht tiefer:
     bei 878 px brachen zwei Menuepunkte und die Wortmarke zweizeilig um. */
  .nav-schalter { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--weiss); border-bottom: 1px solid var(--linie);
    box-shadow: var(--schatten); padding: 8px;
  }
  .nav.offen { display: flex; }
  .nav a { padding: 13px 12px; border-radius: 8px; }
  .nav a.aktiv { box-shadow: none; background: var(--petrol-hell); }
  .nav .btn { margin: 8px 0 4px; }
  .kopf__innen { position: relative; }
}

@media (max-width: 820px) {
  /* Bild und Text nebeneinander werden hier zu schmal. */
  .zickzack, .zwei-spalten { grid-template-columns: 1fr; }
  .zickzack--gedreht .zickzack__bild { order: 0; }

  .topbar__hinweis { display: none; }
  .topbar__innen { justify-content: flex-end; }

  body { padding-bottom: 62px; }
  .aktionsleiste {
    display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 1px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    background: var(--linie); border-top: 1px solid var(--linie);
  }
  .aktionsleiste a {
    background: var(--weiss); color: var(--ink); text-align: center;
    padding: 13px 6px; text-decoration: none; font-weight: 700; font-size: .95rem;
  }
  .aktionsleiste--haupt { background: var(--petrol); color: #fff; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .hero { padding-top: 26px; }
  .hero__fakten { grid-template-columns: repeat(2, 1fr); margin-bottom: -28px; }
  .hero__fakt { border-left: 0; border-top: 1px solid var(--linie); }
  .hero__fakt:nth-child(-n+2) { border-top: 0; }
  .schnelllinks { padding-top: 52px; }
  .kacheln, .zusagen, .vorteile, .ausstattung, .galerie { grid-template-columns: 1fr; }
  .haken { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr; }
  .abschnitt { padding: 38px 0; }
  .schritte { grid-template-columns: 1fr; }
  .rechner__felder, .anfrage-paar { grid-template-columns: 1fr; }
  .rechner__ergebnis { grid-template-columns: 1fr; }
  .rechner { padding: 18px; }
  .anfrage-form { padding: 18px; }
}

/* --- Druck --------------------------------------------------------------- */

@media print {
  .topbar, .nav, .nav-schalter, .aktionsleiste, .band { display: none; }
  body { font-size: 12pt; }
  a { color: inherit; text-decoration: none; }
}
