@charset "utf-8";
/* HAUSI24 - Stylesheet
   Marke: Schwarz, Signalrot, Warnstreifen-Gelb. Die Warnstreifen sind das
   eine wiederkehrende Motiv - sie tragen die Notdienst-Anmutung, damit die
   Seite nicht auf Stockfotos angewiesen ist. */

/* ---------- Schrift ---------- */
@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo.woff2?v=05979d6baf") format("woff2-variations");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  font-style: normal;
}

/* ---------- Token ---------- */
:root {
  --ink: #0d0d11;
  --ink-2: #17171e;
  --ink-3: #2b2b35;
  --text: #16161c;
  --muted: #5b5b67;
  --muted-dark: #a6a6b2;
  --line: #e3e3ea;
  --line-dark: #33333f;
  --paper: #fff;
  --paper-2: #f6f6f8;
  --red: #d80019;
  --red-2: #ab0014;
  --red-soft: #fdecee;
  --yellow: #fff200;

  --wrap: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.25rem);
  --pad-y: clamp(3.5rem, 8vw, 6.5rem);
  --r: 4px;

  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 1px 2px rgba(13, 13, 17, .05), 0 8px 28px -12px rgba(13, 13, 17, .16);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-variation-settings: "wght" 400, "wdth" 100;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
.ink :focus-visible, .hazard-block :focus-visible { outline-color: var(--yellow); }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute; top: -100px; left: 1rem; z-index: 200;
  background: var(--yellow); color: var(--ink);
  padding: .7rem 1.1rem; font-weight: 700; text-decoration: none;
}
.skip:focus { top: 1rem; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4, .display, .stat-n, .logo-txt {
  font-variation-settings: "wght" 800, "wdth" 79;
  letter-spacing: -.012em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.15rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.35rem); line-height: 1.2; }
h4 { font-size: 1.05rem; line-height: 1.25; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-variation-settings: "wght" 700, "wdth" 94;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 3px;
  background: currentColor; flex: none;
}
/* Rot auf Schwarz erreicht nur 3,6:1 - auf dunklem Grund traegt das
   Gelb die Vorzeile. */
.ink .eyebrow, .hero .eyebrow { color: var(--yellow); }

.lede {
  font-size: clamp(1.075rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
  margin: 1.1rem 0 0;
}
.ink .lede { color: #c9c9d4; }

p { margin: 0 0 1.05em; max-width: 72ch; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
@media (max-width: 560px) { .wrap { width: min(100% - 2rem, var(--wrap)); } }

section { padding-block: var(--pad-y); }
.sec-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.ink { background: var(--ink); color: #f2f2f5; }
.ink h1, .ink h2, .ink h3, .ink h4 { color: #fff; }
.tint { background: var(--paper-2); }

.head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.head.center { margin-inline: auto; text-align: center; }
.head.center .eyebrow { justify-content: center; }

/* Warnstreifen - das Leitmotiv */
.hazard {
  height: 7px; flex: none;
  background: repeating-linear-gradient(-58deg,
    var(--yellow) 0 14px, var(--ink) 14px 28px);
}
.hazard-thin { height: 5px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--red); --fg: #fff; --bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .6rem;
  padding: .95rem 1.5rem;
  background: var(--bg); color: var(--fg);
  border: 2px solid var(--bd); border-radius: var(--r);
  font-variation-settings: "wght" 700, "wdth" 92;
  font-size: 1rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background .16s, border-color .16s, color .16s, transform .16s;
}
.btn:hover { --bg: var(--red-2); --bd: var(--red-2); transform: translateY(-1px); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn-ink   { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn-ink:hover { --bg: #000; --bd: #000; }
.btn-ghost { --bg: transparent; --fg: var(--text); --bd: #cfcfd8; }
.btn-ghost:hover { --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.ink .btn-ghost, .hero .btn-ghost, .band .btn-ghost { --fg: #fff; --bd: #4a4a58; }
.ink .btn-ghost:hover, .hero .btn-ghost:hover, .band .btn-ghost:hover {
  --bg: #fff; --fg: var(--ink); --bd: #fff;
}
.btn-yellow { --bg: var(--yellow); --fg: var(--ink); --bd: var(--yellow); }
.btn-yellow:hover { --bg: #e6da00; --bd: #e6da00; }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.075rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }
@media (max-width: 560px) {
  .btn-row { flex-direction: column; align-items: stretch; }
  .band .actions { flex-direction: column; align-items: stretch; }
}

/* ---------- Kopf ---------- */
.top {
  background: var(--ink); color: #cfcfda;
  font-size: .8rem; letter-spacing: .02em;
}
.top .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 2.4rem;
}
.top-l { display: inline-flex; align-items: center; gap: .45rem; }
.top-dot {
  width: .5rem; height: .5rem; border-radius: 50%;
  background: #2ecc71; flex: none;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, .22);
}
.top a { color: #fff; text-decoration: none; font-variation-settings: "wght" 700, "wdth" 96; }
.top a:hover { color: var(--yellow); }
@media (max-width: 720px) { .top-r { display: none; } }

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-head .bar {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 4.5rem;
}
.brand { display: inline-flex; align-items: center; margin-right: auto; text-decoration: none; }
.brand img { height: 2.15rem; width: auto; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a, .nav > .drop > button {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .55rem .7rem;
  background: none; border: 0; border-radius: var(--r);
  color: var(--text); text-decoration: none;
  font-variation-settings: "wght" 600, "wdth" 96;
  font-size: .97rem; cursor: pointer;
  white-space: nowrap;
}
.nav a:hover, .nav > .drop > button:hover { background: var(--paper-2); color: var(--red); }
.nav a[aria-current="page"] {
  color: var(--red);
  box-shadow: inset 0 -3px 0 var(--red);
  border-radius: 0;
}

.drop { position: relative; }
.drop > button svg { width: .7rem; height: .7rem; transition: transform .18s; }
.drop[data-open="true"] > button svg { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + .45rem); left: 0;
  min-width: 16rem; padding: .4rem;
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  box-shadow: var(--shadow);
  display: none; flex-direction: column;
}
.drop[data-open="true"] .drop-menu { display: flex; }
.drop-menu a {
  padding: .55rem .7rem; font-size: .94rem;
  font-variation-settings: "wght" 500, "wdth" 100;
}
.drop-menu a:hover { background: var(--paper-2); }
.drop-menu .sep {
  margin: .35rem .7rem; border-top: 1px solid var(--line);
}
.drop-menu strong {
  padding: .5rem .7rem .2rem; font-size: .7rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  font-variation-settings: "wght" 700, "wdth" 96;
}

.head-cta { display: flex; align-items: center; gap: .6rem; }
.head-tel {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .6rem .95rem;
  border: 2px solid var(--ink); border-radius: var(--r);
  text-decoration: none; line-height: 1.15;
}
.head-tel:hover { background: var(--ink); color: #fff; }
.head-tel svg { width: 1.25rem; height: 1.25rem; color: var(--red); flex: none; }
.head-tel:hover svg { color: var(--yellow); }
.head-tel span { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.head-tel:hover span { color: var(--muted-dark); }
.head-tel b { font-variation-settings: "wght" 700, "wdth" 92; font-size: .98rem; }

.burger {
  display: none;
  width: 2.9rem; height: 2.9rem;
  align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  border: 0; border-radius: var(--r); cursor: pointer;
}
.burger svg { width: 1.35rem; height: 1.35rem; }
.burger .x, .burger[aria-expanded="true"] .m { display: none; }
.burger[aria-expanded="true"] .x { display: block; }

@media (max-width: 1040px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .head-tel span { display: none; }
}
@media (max-width: 620px) {
  .head-tel b { display: none; }
  .head-tel { padding: .6rem .7rem; }
}

/* Mobilmenue */
.mnav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
}
.mnav[data-open="true"] { display: block; }
.mnav ul { list-style: none; margin: 0; padding: .5rem 0 1.25rem; }
.mnav a {
  display: block; padding: .8rem .25rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-variation-settings: "wght" 600, "wdth" 96;
}
.mnav a[aria-current="page"] { color: var(--red); }
.mnav .sub a {
  padding-left: 1.1rem; font-size: .95rem;
  font-variation-settings: "wght" 400, "wdth" 100;
  border-left: 3px solid var(--line);
}
.mnav .lbl {
  padding: 1.1rem .25rem .35rem;
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  font-variation-settings: "wght" 700, "wdth" 96;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink); color: #fff;
  padding-block: clamp(3.25rem, 7vw, 5.75rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60rem 32rem at 88% -12%, rgba(216, 0, 25, .38), transparent 62%),
    radial-gradient(40rem 26rem at 6% 108%, rgba(255, 242, 0, .09), transparent 60%);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero h1 { color: #fff; }
.hero .lede { color: #cdcdd8; }

.hero-grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: start;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-big h1 { font-size: clamp(2.6rem, 7.6vw, 5.1rem); }
.hero h1 .red { color: var(--red); }
.hero h1 em {
  font-style: normal;
  display: inline-block;
  background: var(--yellow); color: var(--ink);
  padding: 0 .3em; margin-inline: -.06em;
  transform: rotate(-1.2deg);
}

.badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .4rem .75rem;
  border: 1px solid #3a3a48; border-radius: 100px;
  font-size: .82rem; color: #dedee7;
}
.badge svg { width: .95rem; height: .95rem; color: var(--yellow); flex: none; }

/* Notrufkarte im Hero */
.callcard {
  background: #fff; color: var(--text);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, .6);
}
.callcard-in { padding: clamp(1.5rem, 2.6vw, 2rem); }
.callcard .kicker {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
  font-variation-settings: "wght" 700, "wdth" 96;
}
.callcard .num {
  display: block; margin: .35rem 0 .1rem;
  font-variation-settings: "wght" 800, "wdth" 76;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  line-height: 1.05; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none;
}
.callcard .num:hover { color: var(--red); }
.callcard .note { font-size: .92rem; color: var(--muted); margin: .5rem 0 0; }
.callcard .btn { width: 100%; margin-top: 1.15rem; }
.callcard ul {
  list-style: none; margin: 1.15rem 0 0; padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: .55rem;
  font-size: .93rem;
}
.callcard li { display: flex; gap: .6rem; align-items: flex-start; }
.callcard li svg { width: 1.05rem; height: 1.05rem; color: var(--red); flex: none; margin-top: .22rem; }

/* Kompakter Seitenkopf der Unterseiten */
.phead { padding-block: clamp(2.75rem, 5.5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem); }
.phead .crumb {
  display: flex; flex-wrap: wrap; gap: .4rem;
  font-size: .82rem; color: #a2a2b0; margin-bottom: 1.4rem;
}
.phead .crumb a { color: #cfcfda; text-decoration: none; }
.phead .crumb a:hover { color: var(--yellow); text-decoration: underline; }
.phead-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
@media (max-width: 860px) { .phead-grid { grid-template-columns: 1fr; align-items: start; } }
.phead-ico {
  width: 5.5rem; height: 5.5rem; flex: none;
  display: grid; place-items: center;
  background: var(--red); border-radius: 6px;
}
.phead-ico svg { width: 2.9rem; height: 2.9rem; color: #fff; }
@media (max-width: 860px) { .phead-ico { display: none; } }

/* ---------- Karten und Raster ---------- */
.grid { display: grid; gap: var(--gap); }
.g1 { grid-template-columns: minmax(0, 23rem); }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 940px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

.card {
  display: flex; flex-direction: column;
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  background: #fff;
  border: 1px solid var(--line); border-radius: 6px;
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .97rem; color: var(--muted); }
.card-ico {
  width: 3.1rem; height: 3.1rem; margin-bottom: 1.1rem;
  display: grid; place-items: center;
  background: var(--ink); border-radius: 5px;
}
.card-ico svg { width: 1.65rem; height: 1.65rem; color: var(--yellow); }

/* Leistungskarte mit Link */
a.svc {
  position: relative;
  display: flex; flex-direction: column; gap: .7rem;
  padding: clamp(1.35rem, 2.2vw, 1.75rem);
  background: #fff; color: inherit; text-decoration: none;
  border: 1px solid var(--line); border-radius: 6px;
  transition: border-color .16s, transform .16s, box-shadow .16s;
}
a.svc::after {
  content: ""; position: absolute; left: -1px; top: -1px; bottom: -1px;
  width: 4px; background: var(--red);
  border-radius: 6px 0 0 6px;
  opacity: 0; transition: opacity .16s;
}
a.svc:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfcfd8; }
a.svc:hover::after { opacity: 1; }
a.svc .card-ico { margin-bottom: .2rem; }
a.svc h3 { display: flex; align-items: center; gap: .5rem; }
a.svc h3 svg { width: .85rem; height: .85rem; color: var(--red); transition: transform .16s; }
a.svc:hover h3 svg { transform: translateX(4px); }
a.svc p { font-size: .95rem; color: var(--muted); margin: 0; }
.ink a.svc { background: var(--ink-2); border-color: var(--line-dark); }
.ink a.svc p { color: #b3b3c0; }
.ink a.svc:hover { border-color: #4d4d5e; }
.ink a.svc .card-ico { background: #000; }

/* Versprechen: grosse Nummer */
.promise {
  position: relative; overflow: hidden;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: var(--ink-2);
  border: 1px solid var(--line-dark); border-radius: 6px;
}
.promise .n {
  position: absolute; top: .18em; right: .16em;
  font-variation-settings: "wght" 800, "wdth" 68;
  font-size: 5.5rem; line-height: 1;
  color: #fff; opacity: .085;
  pointer-events: none;
}
.promise .card-ico { background: var(--red); }
.promise .card-ico svg { color: #fff; }
.promise h3 { color: #fff; margin: 1rem 0 .55rem; }
.promise p { color: #b6b6c4; font-size: .97rem; }

/* Ablauf */
.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  counter-increment: s;
  display: grid; grid-template-columns: 3.4rem 1fr; gap: 1.15rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: counter(s, decimal-leading-zero);
  font-variation-settings: "wght" 800, "wdth" 74;
  font-size: 1.6rem; line-height: 1.1;
  color: var(--red);
}
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .99rem; }
.ink .step { border-color: var(--line-dark); }
.ink .step::before { color: var(--yellow); }
.ink .step p { color: #b6b6c4; }

/* Zahlen */
.stats {
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; gap: 1.25rem; } }
.stat { border-top: 4px solid var(--yellow); padding-top: 1.1rem; }
.stat-n {
  display: block;
  font-variation-settings: "wght" 800, "wdth" 72;
  font-size: clamp(2.9rem, 6vw, 4.25rem);
  line-height: 1; letter-spacing: -.03em;
}
.stat p { margin: .5rem 0 0; color: var(--muted); font-size: .97rem; }
.ink .stat p { color: #b6b6c4; }

/* Stimme */
.quote {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: #fff; border: 1px solid var(--line);
  border-left: 5px solid var(--yellow); border-radius: 6px;
}
.quote blockquote {
  margin: 0;
  font-variation-settings: "wght" 500, "wdth" 100;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.5;
}
/* In der schmalen Seitenspalte ergibt die grosse Zitatschrift nur noch
   drei Woerter pro Zeile - dort eine Stufe kleiner. */
.aside .quote blockquote { font-size: 1.02rem; line-height: 1.55; }
.quote figcaption { margin-top: 1rem; font-size: .92rem; color: var(--muted); }
.quote figcaption b { font-variation-settings: "wght" 700, "wdth" 96; color: var(--text); }
.quote .stars { display: flex; gap: .15rem; margin-bottom: .9rem; color: var(--red); }
.quote .stars svg { width: 1.05rem; height: 1.05rem; }

/* ---------- Fliesstext der Leistungsseiten ---------- */
.prose { max-width: 68ch; }
.prose > * + * { margin-top: 1.05em; }
.prose h2 { margin-top: 2.4em; }
.prose h3 { margin-top: 1.9em; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: .45rem; }
.prose a { color: var(--red); text-underline-offset: 3px; }

.split {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 21rem);
  align-items: start;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; } }

.aside { position: sticky; top: 6.5rem; display: grid; gap: 1.25rem; }
@media (max-width: 940px) { .aside { position: static; } }

.box {
  padding: 1.4rem;
  background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 6px;
}
.box h3 { font-size: 1.05rem; margin-bottom: .7rem; }
.box p, .box li { font-size: .94rem; color: var(--muted); }
.box ul { margin: 0; padding-left: 1.2rem; }
.box li + li { margin-top: .45rem; }
.box-red { background: var(--red-soft); border-color: #f6c9ce; }
.box-red h3 { color: #96000f; }
.box-ink { background: var(--ink); border-color: var(--ink); }
.box-ink h3 { color: #fff; }
.box-ink p, .box-ink li { color: #bcbcc9; }

/* Sofortmassnahmen */
.selfhelp {
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 6px;
}
.selfhelp h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-bottom: 1.1rem; }
.selfhelp ol { margin: 0; padding: 0; list-style: none; counter-reset: sh; }
.selfhelp li {
  counter-increment: sh;
  display: grid; grid-template-columns: 1.9rem 1fr; gap: .85rem;
  padding: .8rem 0;
  border-top: 1px dashed #d3d3dd;
  font-size: .99rem;
}
.selfhelp li:first-child { border-top: 0; padding-top: 0; }
.selfhelp li::before {
  content: counter(sh);
  display: grid; place-items: center;
  width: 1.55rem; height: 1.55rem; margin-top: .12rem;
  background: var(--ink); color: var(--yellow);
  border-radius: 50%;
  font-variation-settings: "wght" 700, "wdth" 96;
  font-size: .82rem; line-height: 1;
}

/* Warnhinweis */
.warn {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem;
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  background: var(--yellow); color: var(--ink);
  border-radius: 6px;
  border-left: 6px solid var(--ink);
}
.warn svg { width: 2.1rem; height: 2.1rem; flex: none; }
.warn h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); margin-bottom: .4rem; }
.warn p { font-size: .99rem; color: #26260c; }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.15rem .25rem;
  cursor: pointer; list-style: none;
  font-variation-settings: "wght" 700, "wdth" 94;
  font-size: 1.05rem; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none;
  width: 1rem; height: 1rem; margin-left: auto; margin-top: .3rem;
  background: currentColor;
  clip-path: polygon(45% 0, 55% 0, 55% 45%, 100% 45%, 100% 55%, 55% 55%, 55% 100%, 45% 100%, 45% 55%, 0 55%, 0 45%, 45% 45%);
  transition: transform .2s;
  color: var(--red);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--red); }
.faq .a { padding: 0 2.25rem 1.35rem .25rem; color: var(--muted); }
.faq .a p { font-size: .99rem; }

/* ---------- CTA-Band ---------- */
.band { position: relative; overflow: hidden; }
.band-in {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
@media (max-width: 860px) { .band-in { grid-template-columns: 1fr; } }
.band h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.band p { color: #c2c2ce; margin: .75rem 0 0; }
.band .actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Formulare ---------- */
.form { display: grid; gap: 1.1rem; }
.frow { display: grid; gap: 1.1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 620px) { .frow { grid-template-columns: 1fr; } }

/* align-content: sonst dehnt sich in einer Zeile das Feld ohne Hinweistext
   auf die Hoehe des Nachbarn mit Hinweistext. */
.field { display: grid; gap: .4rem; align-content: start; }
.field label {
  font-variation-settings: "wght" 600, "wdth" 96;
  font-size: .88rem;
}
.field .req { color: var(--red); }
.field .hint { font-size: .82rem; color: var(--muted); }

input, select, textarea {
  width: 100%;
  padding: .78rem .9rem;
  background: #fff; color: var(--text);
  border: 1px solid #c9c9d4; border-radius: var(--r);
  font: inherit; font-size: 1rem;
}
textarea { min-height: 9rem; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #9c9caa; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); }
input[type="file"] { padding: .55rem; background: var(--paper-2); }
::placeholder { color: #9494a2; }

.check {
  display: grid; grid-template-columns: auto 1fr; gap: .7rem;
  align-items: start;
  font-size: .92rem; color: var(--muted);
}
.check input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; accent-color: var(--red); }
.check a { color: var(--red); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 23rem);
  align-items: start;
}
@media (max-width: 940px) { .form-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: grid; grid-template-columns: 2.6rem 1fr; gap: .9rem; align-items: start; }
.contact-list .ic {
  width: 2.6rem; height: 2.6rem; display: grid; place-items: center;
  background: var(--ink); border-radius: 5px;
}
.contact-list .ic svg { width: 1.3rem; height: 1.3rem; color: var(--yellow); }
.contact-list b { display: block; font-variation-settings: "wght" 700, "wdth" 96; font-size: .95rem; }
.contact-list span, .contact-list a { font-size: .97rem; color: var(--muted); }
.contact-list a { color: var(--red); text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ---------- Jobs ---------- */
.job {
  display: grid; grid-template-columns: 3.4rem 1fr auto; gap: 1.25rem;
  align-items: center;
  padding: 1.35rem clamp(1.1rem, 2vw, 1.6rem);
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
}
@media (max-width: 760px) {
  .job { grid-template-columns: 3.4rem 1fr; }
  .job .btn { grid-column: 1 / -1; }
}
.job-ico {
  width: 3.4rem; height: 3.4rem; display: grid; place-items: center;
  background: var(--ink); border-radius: 5px;
}
.job-ico svg { width: 1.8rem; height: 1.8rem; color: var(--yellow); }
.job h3 { margin-bottom: .35rem; }
.job p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 70ch; }
.legal h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin-top: 2.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 {
  font-size: 1.05rem; margin-top: 1.9rem;
  font-variation-settings: "wght" 700, "wdth" 94;
}
.legal p, .legal li { font-size: .99rem; }
.legal p { margin: .8rem 0; }
.legal ul { padding-left: 1.3rem; }
.legal a { color: var(--red); }
.legal .toc {
  margin: 0 0 2.5rem; padding: 1.25rem 1.4rem;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px;
}
.legal .toc ol { margin: .6rem 0 0; padding-left: 1.3rem; }
.legal .toc li { font-size: .95rem; }
.legal .toc a { text-decoration: none; }
.legal .toc a:hover { text-decoration: underline; }

/* ---------- Fuss ---------- */
.site-foot { background: var(--ink); color: #a8a8b6; font-size: .95rem; }
.foot-top {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  padding-block: clamp(3rem, 5vw, 4.25rem);
}
@media (max-width: 1000px) { .foot-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .foot-top { grid-template-columns: 1fr; } }
.foot-brand img { height: 3.1rem; width: auto; margin-bottom: 1.15rem; }
.foot-brand p { font-size: .95rem; color: #a8a8b6; max-width: 34ch; }
.site-foot h3 {
  font-size: .76rem; letter-spacing: .15em; text-transform: uppercase;
  color: #fff; margin-bottom: 1rem;
  font-variation-settings: "wght" 700, "wdth" 96;
}
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-foot a { color: #c6c6d2; text-decoration: none; }
.site-foot a:hover { color: var(--yellow); text-decoration: underline; }
.foot-tel {
  display: block; margin: .2rem 0 .1rem;
  font-variation-settings: "wght" 800, "wdth" 80;
  font-size: 1.5rem; color: #fff !important; letter-spacing: -.01em;
}
.foot-tel:hover { color: var(--yellow) !important; text-decoration: none !important; }
.foot-bot {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line-dark);
  font-size: .88rem;
}
.foot-bot ul { display: flex; flex-wrap: wrap; gap: .4rem 1.15rem; }

/* ---------- Mobile Anrufleiste ---------- */
.callbar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; gap: .5rem;
  padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
  background: rgba(13, 13, 17, .97);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--line-dark);
}
.callbar .btn { flex: 1; padding: .85rem .5rem; font-size: .97rem; }
@media (max-width: 760px) {
  .callbar { display: flex; }
  body { padding-bottom: 4.6rem; }
}

/* ---------- Druck ---------- */
@media print {
  .site-head, .top, .callbar, .band, .hazard, .site-foot ul { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .ink, .hero { background: #fff !important; color: #000 !important; }
  .ink h1, .ink h2, .hero h1 { color: #000 !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
