/* ══════════════════════════════════════════════════════════════
   EM Hausmeisterservice
   Grund: warmes Weiß. Text: Graphit. Aktion: Orange #f47a21.
   Marine #16264c nur als tiefer Anker (Band, Anfrage, Footer).
   Schrift: Archivo / Fira Sans / Fira Mono. Kein Framework.
   ══════════════════════════════════════════════════════════════ */

/* ─── 1. Tokens ─── */
:root {
  --paper:   #faf9f6;
  --paper-2: #f2efe9;
  --paper-3: #e9e4db;
  --white:   #ffffff;

  --ink:   #191b1f;
  --ink-2: #454a52;
  --mute:  #5e646e;

  --navy:     #16264c;
  --navy-2:   #0e1a36;
  --navy-mute:#9fb0d0;

  --orange:     #f47a21;
  --orange-2:   #dd6410;
  --orange-ink: #9c4207;

  --hair:   rgba(25, 27, 31, 0.13);
  --hair-2: rgba(25, 27, 31, 0.07);
  --hair-d: rgba(255, 255, 255, 0.15);

  --f-disp: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-body: "Fira Sans", "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Fira Mono", ui-monospace, Menlo, monospace;

  --head-h: 72px;
  --gut: clamp(20px, 5vw, 72px);
  --sec: clamp(68px, 9vw, 148px);
  --r: 3px;
  --r-lg: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 1px 2px rgba(25,27,31,.05), 0 12px 32px -12px rgba(25,27,31,.18);
  --shadow-lg: 0 2px 4px rgba(25,27,31,.06), 0 30px 70px -20px rgba(25,27,31,.28);
  color-scheme: light;
}

/* ─── 2. Basis ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(16px, .35vw + 15.2px, 17.5px);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--f-disp); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.03; margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.7rem, 6.2vw, 5.1rem); letter-spacing: -0.038em; }
h2 { font-size: clamp(1.95rem, 3.8vw, 3.15rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.45rem); letter-spacing: -0.022em; }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 2px; }

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip {
  position: fixed; top: 8px; left: 8px; z-index: 300;
  padding: 11px 18px; background: var(--orange); color: var(--navy-2);
  font-weight: 700; text-decoration: none; transform: translateY(-220%);
}
.skip:focus { transform: none; }

.wrap { width: 100%; max-width: 1320px; margin-inline: auto; padding-inline: var(--gut); }

/* ─── 3. Marken-Bausteine ─── */
.kicker {
  display: flex; align-items: center; gap: 0.75em;
  font-family: var(--f-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange-ink); margin: 0 0 1.15em;
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--orange); flex: 0 0 auto;
}
.kicker-light { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.92em 1.6em;
  font-family: var(--f-disp); font-weight: 700; font-size: 0.97rem;
  text-decoration: none; white-space: nowrap;
  border: 2px solid transparent; border-radius: var(--r);
  cursor: pointer;
  transition: background-color .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn svg { transition: transform .22s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-sm { padding: 0.68em 1.15em; font-size: 0.88rem; }
.btn-lg { padding: 1.1em 2em; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--orange); color: var(--navy-2);
  box-shadow: 0 1px 2px rgba(156,66,7,.2), 0 10px 26px -10px rgba(244,122,33,.65);
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-2px); box-shadow: 0 2px 4px rgba(156,66,7,.22), 0 16px 34px -12px rgba(244,122,33,.7); }
.btn-primary:active { transform: none; }

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--navy); transform: translateY(-2px); }

.btn-glass {
  flex-direction: column; gap: 0.05em; line-height: 1.22;
  border-color: rgba(255,255,255,.45); color: #fff;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: #fff; color: var(--ink); border-color: #fff; }
.b-top { font-family: var(--f-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; opacity: .8; }
.b-num { font-family: var(--f-mono); font-weight: 700; font-size: 1.06rem; letter-spacing: -0.02em; }

.cta-line {
  display: inline-flex; align-items: center; gap: 0.5em;
  margin-top: 1.6em;
  font-family: var(--f-disp); font-weight: 700; font-size: 0.97rem;
  color: var(--orange-ink); text-decoration: none;
  padding-bottom: 3px; border-bottom: 2px solid var(--orange);
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.cta-line:hover { gap: 0.85em; color: var(--ink); }

.lead { font-size: clamp(1.05rem, 1.15vw, 1.22rem); color: var(--ink-2); max-width: 58ch; }
.sec-head { max-width: 70ch; margin-bottom: clamp(40px, 5vw, 78px); }
.sec-head h2 { margin-bottom: 0.72em; }

.checks { list-style: none; margin: 1.7em 0 0; padding: 0; display: grid; gap: 0.72em; }
.checks li { position: relative; padding-left: 2em; font-size: 0.97rem; color: var(--ink-2); }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 0.44em;
  width: 1.05em; height: 0.55em;
  border-left: 2.5px solid var(--orange); border-bottom: 2.5px solid var(--orange);
  transform: rotate(-45deg);
}

.note {
  margin-top: 1.7em; padding: 1.15em 1.35em;
  background: var(--paper-2); border-left: 4px solid var(--orange);
  font-size: 0.95rem; line-height: 1.56; color: var(--ink-2);
  border-radius: 0 var(--r) var(--r) 0;
}
.note b { color: var(--ink); }

.tag {
  display: inline-block; font-family: var(--f-mono); font-style: normal;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3em 0.55em; border-radius: 2px; vertical-align: 0.15em;
}
.tag-new { background: var(--orange); color: var(--navy-2); }
.tag-lim { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }

/* ─── 4. Kopf ─── */
.head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 249, 246, 0.88);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.head-row { display: flex; align-items: center; gap: clamp(14px, 2.6vw, 38px); min-height: var(--head-h); }
.logo { display: inline-flex; align-items: center; gap: 0.6em; text-decoration: none; flex: 0 0 auto; min-width: 0; }
.logo-mark { color: var(--orange); display: block; flex: 0 0 auto; }
.logo-type { font-family: var(--f-disp); font-weight: 500; font-size: 1.02rem; letter-spacing: -0.02em; white-space: nowrap; }
.logo-type b { font-weight: 800; }

.nav { display: flex; gap: clamp(11px, 1.5vw, 24px); margin-right: auto; align-items: center; }
.nav a {
  position: relative; white-space: nowrap;
  font-size: 0.92rem; font-weight: 500; text-decoration: none;
  color: var(--ink-2); padding: 0.4em 0;
  transition: color .16s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="true"]::after { transform: scaleX(1); }
.nav a[aria-current="true"] { color: var(--ink); }

.head-act { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.head-tel {
  display: inline-flex; align-items: center; gap: 0.45em; min-height: 44px;
  font-family: var(--f-mono); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.head-tel svg { color: var(--orange); }
.head-tel:hover { color: var(--orange-ink); }

.burger {
  display: none; width: 46px; height: 46px; padding: 12px;
  background: none; border: 1px solid var(--hair); border-radius: var(--r); cursor: pointer;
}
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .24s var(--ease), opacity .16s var(--ease); }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── 5. Hero ─── */
.hero { background: var(--paper); border-bottom: 1px solid var(--hair); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
}
.hero-copy {
  padding-block: clamp(52px, 7vw, 116px);
  padding-right: clamp(26px, 4vw, 76px);
  padding-left: max(var(--gut), calc((100vw - 1320px) / 2 + var(--gut)));
  align-self: center;
}
.hero h1 { margin-bottom: 0.52em; max-width: 15ch; }
.hero h1 .l { display: block; }
.hero h1 em { font-style: normal; color: var(--orange-ink); }
.hero-sub {
  font-size: clamp(1.06rem, 1.3vw, 1.28rem); line-height: 1.52;
  color: var(--ink-2); max-width: 42ch; margin-bottom: 2.1em;
}
.hero-act { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.4em; }

.btn-outline {
  flex-direction: column; gap: 0.05em; line-height: 1.22;
  border-color: var(--ink); color: var(--ink); background: transparent;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }

.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.chips li {
  display: flex; align-items: center; gap: 0.5em;
  padding: 0.45em 0.9em 0.45em 0.75em;
  font-size: 0.84rem; font-weight: 500; color: var(--ink-2);
  background: var(--white); border: 1px solid var(--hair); border-radius: 100px;
}
.chips li::before {
  content: ""; width: 0.95em; height: 0.48em; flex: 0 0 auto;
  border-left: 2px solid var(--orange); border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg) translate(1px, -2px);
}

.hero-fig { margin: 0; position: relative; }
.hero-fig img {
  width: 100%; height: 100%;
  min-height: clamp(400px, 62vh, 780px);
  object-fit: cover; object-position: 50% 32%;
}
.hero-fig figcaption {
  position: absolute; left: 0; bottom: 0; right: 0;
  padding: 2.4em clamp(18px, 2.2vw, 30px) 1.1em;
  font-family: var(--f-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(14,26,54,.82), transparent);
}

/* ─── 6. Beweis: Vorher / Nachher ─── */
.proof { padding-block: var(--sec); background: var(--paper); }
.proof-head {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(22px, 4vw, 64px); align-items: end;
  margin-bottom: clamp(28px, 3.4vw, 44px);
}
.proof-lead { font-size: 1.02rem; color: var(--mute); padding-bottom: 0.35em; }

.proof-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.proof-tabs button {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.72em 1.15em;
  font-family: var(--f-disp); font-weight: 600; font-size: 0.92rem;
  background: transparent; color: var(--mute);
  border: 1px solid var(--hair); border-radius: 100px; cursor: pointer;
  transition: background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.proof-tabs button .t-n { font-family: var(--f-mono); font-size: 0.72rem; opacity: .65; }
.proof-tabs button:hover { color: var(--ink); border-color: var(--ink); }
.proof-tabs button[aria-selected="true"] {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.proof-tabs button[aria-selected="true"] .t-n { color: var(--orange); opacity: 1; }
.t-b {
  font-family: var(--f-mono); font-style: normal;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25em 0.5em; margin-left: 0.15em;
  background: var(--paper-3); color: var(--ink-2); border-radius: 2px;
}
.proof-tabs button[aria-selected="true"] .t-b { background: var(--orange); color: var(--navy-2); }

.ba { margin: 0; }
.js .ba:not(.on) { display: none; }
.ba-frame {
  position: relative; --p: 52%;
  /* Das Verhältnis sitzt am Rahmen, nicht am Bild: so lässt sich die Höhe
     begrenzen, ohne dass ein 4:3-Paar die ganze Bildschirmhöhe frisst.
     Die Bilder decken den Rahmen mittig ab. */
  aspect-ratio: var(--ar, 16 / 9);
  max-height: min(78vh, 820px);
  margin-inline: auto;                 /* bei schmalerem Verhältnis mittig */
  overflow: hidden; background: var(--navy-2);
  touch-action: pan-y; user-select: none; cursor: ew-resize;
  box-shadow: var(--shadow-lg);
}
/* Das Seitenverhältnis kommt vom Fotopaar. Beide Bilder eines Vergleichs
   müssen dasselbe Verhältnis haben, sonst springt der Regler. */
.ba-169 .ba-frame { --ar: 16 / 9; }
.ba-43  .ba-frame { --ar: 4 / 3; }
.ba-frame img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { position: absolute; inset: 0; }
.ba-clip { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--p)) 0 0); }

.ba-tag {
  position: absolute; top: 18px; z-index: 3;
  font-family: var(--f-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  padding: 0.5em 0.85em; border-radius: 2px;
  background: rgba(14,26,54,.72); backdrop-filter: blur(5px);
}
.ba-tag-l { left: 18px; }
.ba-tag-r { right: 18px; }

.ba-handle {
  position: absolute; top: 0; bottom: 0; z-index: 4; left: var(--p);
  width: 2px; margin-left: -1px; background: #fff;
  box-shadow: 0 0 0 1px rgba(14,26,54,.25);
  pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%;
  width: 62px; height: 62px; margin: -31px 0 0 -31px;
  background: var(--orange); border-radius: 50%;
  box-shadow: 0 6px 24px rgba(14,26,54,.42), inset 0 0 0 3px rgba(255,255,255,.9);
}
.ba-handle span::before, .ba-handle span::after {
  content: ""; position: absolute; top: 50%; width: 9px; height: 9px;
  border-top: 2.6px solid var(--navy-2); border-right: 2.6px solid var(--navy-2);
}
.ba-handle span::before { left: 17px; transform: translateY(-50%) rotate(-135deg); }
.ba-handle span::after  { right: 17px; transform: translateY(-50%) rotate(45deg); }

.ba-range {
  position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; background: none;
}
.ba-frame:has(.ba-range:focus-visible) { outline: 3px solid var(--orange); outline-offset: 4px; }

.ba-hint {
  position: absolute; z-index: 6; left: 50%; bottom: 22px; margin: 0;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.5em 1em;
  font-family: var(--f-mono); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy-2);
  background: #fff; border-radius: 100px;
  box-shadow: 0 4px 18px rgba(14,26,54,.3);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.ba-hint.gone { opacity: 0; transform: translateX(-50%) translateY(8px); }
@media (prefers-reduced-motion: no-preference) {
  .ba-frame.nudge .ba-hint { animation: nudge 1.5s var(--ease) 2; }
}
@keyframes nudge {
  0%, 100% { transform: translateX(-50%); }
  45%      { transform: translateX(-50%) translateX(14px); }
}

.ba figcaption { display: block; padding-top: clamp(20px, 2.4vw, 32px); }
.job { margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--hair); }
.job > div { padding: 1.1em clamp(12px, 1.6vw, 26px) 0 0; }
.job > div + div { border-left: 1px solid var(--hair); padding-left: clamp(14px, 1.8vw, 28px); }
.job dt {
  font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange-ink); margin-bottom: 0.5em;
}
.job dd { margin: 0; font-size: 0.93rem; line-height: 1.45; color: var(--ink-2); }

.proof-foot { margin-top: clamp(34px, 4vw, 56px); }
.proof-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 32px; padding: clamp(22px, 2.6vw, 34px);
  background: var(--paper-2); border-radius: var(--r-lg);
  border: 1px solid var(--hair-2);
}
.proof-cta p {
  margin: 0; font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem); letter-spacing: -0.022em;
}

/* ─── 7. Zahlenband ─── */
.facts {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--ink); color: #fff;
}
.facts li { padding: clamp(26px, 3vw, 40px) clamp(18px, 2.4vw, 34px); }
.facts li + li { border-left: 1px solid var(--hair-d); }
.f-n {
  display: block; font-family: var(--f-disp); font-weight: 800;
  font-size: clamp(1.7rem, 2.7vw, 2.5rem); letter-spacing: -0.04em;
  color: var(--orange); margin-bottom: 0.25em;
}
.f-l { display: block; font-size: 0.88rem; line-height: 1.42; color: rgba(255,255,255,.72); }

/* ─── 8. Leistungen ─── */
.lst { padding-block: var(--sec) 0; background: var(--paper); }
.row { padding-block: clamp(40px, 5vw, 76px); border-top: 1px solid var(--hair); }
.row:first-of-type { border-top: 2px solid var(--ink); }
.row-in {
  display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 4.5vw, 76px); align-items: start;
}
.row-flip .row-img { order: 2; }
.row-img { margin: 0; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.row-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .7s var(--ease); }
.row:hover .row-img img { transform: scale(1.04); }

.row-n {
  font-family: var(--f-mono); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.12em; color: var(--orange-ink); margin: 0 0 0.7em;
}
.row-body h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 1.1em; }

.items { list-style: none; margin: 0; padding: 0; }
.items li { padding-block: 0.9em; border-top: 1px solid var(--hair-2); }
.items li:first-child { border-top: 0; padding-top: 0; }
.items b {
  font-family: var(--f-disp); font-weight: 700; font-size: 1.02rem;
  letter-spacing: -0.018em; margin-right: 0.5em;
}
.items span { display: block; margin-top: 0.25em; color: var(--mute); font-size: 0.94rem; line-height: 1.5; }

.lst-tail {
  padding-block: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--hair);
  font-family: var(--f-disp); font-weight: 600;
  font-size: clamp(1.08rem, 1.6vw, 1.4rem); letter-spacing: -0.02em;
  max-width: 52ch;
}
.lst-tail a {
  display: inline-block; padding: 0.25em 0;
  font-family: var(--f-mono); white-space: nowrap;
  text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 5px;
}

/* ─── 9. Preis ─── */
.preis { padding-block: var(--sec); background: var(--paper-2); }
.preis-grid {
  list-style: none; margin: 0 0 clamp(30px, 4vw, 52px); padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.2vw, 28px);
}
.preis-grid li {
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--hair-2); box-shadow: var(--shadow);
}
.p-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; margin-bottom: 1em;
  font-family: var(--f-mono); font-weight: 700; font-size: 1rem;
  background: var(--orange); color: var(--navy-2); border-radius: 50%;
}
.preis-grid h3 { margin-bottom: 0.55em; }
.preis-grid p { color: var(--mute); font-size: 0.95rem; }

.preis-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 36px; padding-top: clamp(26px, 3vw, 38px); border-top: 1px solid var(--hair);
}
.preis-cta p { margin: 0; max-width: 62ch; color: var(--ink-2); font-size: 0.99rem; }
.preis-cta b { color: var(--ink); }

/* ─── 10. CTA-Band ─── */
.band { position: relative; isolation: isolate; overflow: hidden; color: #fff; }
.band-bg { position: absolute; inset: 0; z-index: -2; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(85deg, rgba(14,26,54,.95) 0%, rgba(14,26,54,.86) 48%, rgba(14,26,54,.42) 100%);
}
.band-in { padding-block: clamp(64px, 8.5vw, 132px); max-width: 1320px; }
.band-in h2 { margin-bottom: 0.6em; max-width: 22ch; }
.band-in > p { color: rgba(255,255,255,.86); max-width: 52ch; font-size: clamp(1rem, 1.15vw, 1.14rem); margin-bottom: 2.2em; }
.band-act { display: flex; flex-wrap: wrap; gap: 14px; }

/* ─── 11. Jahresplan ─── */
.year { padding-block: var(--sec); background: var(--paper); }
.year-scroll {
  overflow-x: auto; overflow-y: hidden; padding-bottom: 14px;
  scrollbar-width: thin; scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.year-scroll::-webkit-scrollbar { height: 8px; }
.year-scroll::-webkit-scrollbar-track { background: var(--hair-2); }
.year-scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }
.year-track {
  list-style: none; margin: 0;
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr);
  border-top: 2px solid var(--ink); min-width: max-content;
}
.year-track > li { padding: 20px clamp(13px, 1.2vw, 20px) 28px; border-right: 1px solid var(--hair); transition: background-color .2s var(--ease); }
.year-track > li:first-child { border-left: 1px solid var(--hair); }
.ym {
  font-family: var(--f-mono); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--mute); margin: 0 0 1.15em;
}
.year-track > li ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6em; }
.year-track > li ul li { position: relative; padding-left: 0.9em; font-size: 0.9rem; line-height: 1.38; color: var(--ink-2); }
.year-track > li ul li::before { content: ""; position: absolute; left: 0; top: 0.56em; width: 4px; height: 4px; background: var(--mute); }

.year-track > li.is-now { background: var(--ink); border-right-color: var(--ink); color: #fff; }
.year-track > li.is-now .ym { color: var(--orange); }
.year-track > li.is-now .ym::after { content: " · jetzt"; color: #fff; letter-spacing: 0.06em; }
.year-track > li.is-now ul li { color: rgba(255,255,255,.88); }
.year-track > li.is-now ul li::before { background: var(--orange); }

.year-foot {
  margin-top: clamp(30px, 3.6vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px 40px;
}
.year-legal {
  max-width: 72ch; margin: 0; font-size: 0.92rem; line-height: 1.58; color: var(--mute);
  padding-left: 1.25em; border-left: 3px solid var(--hair);
}
.year-legal b { color: var(--ink); }

/* ─── 12. Ablauf ─── */
.flow { padding-block: var(--sec); background: var(--ink); color: #fff; }
.flow .kicker { color: var(--orange); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hair-d); }
.steps > li { position: relative; padding: clamp(28px, 3vw, 44px) clamp(18px, 2.4vw, 36px) 0 0; }
.steps > li + li { border-left: 1px solid var(--hair-d); padding-left: clamp(20px, 2.6vw, 38px); }
.steps > li::before { content: ""; position: absolute; top: -1px; left: 0; width: 52px; height: 3px; background: var(--orange); }
.steps > li + li::before { left: clamp(20px, 2.6vw, 38px); }
.st { font-family: var(--f-mono); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.17em; text-transform: uppercase; color: var(--orange); margin: 0 0 1em; }
.steps h3 { margin-bottom: 0.6em; }
.steps p { color: rgba(255,255,255,.76); font-size: 0.95rem; }

/* ─── 13. Über EM ─── */
.ueber { padding-block: var(--sec); background: var(--paper); }
.ueber-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: clamp(30px, 5vw, 82px); align-items: center; }
.ueber-copy h2 { margin-bottom: 0.8em; }
.ueber-copy > p { color: var(--ink-2); }
.ueber-copy .btn { margin-top: 2em; }
.ueber-img { margin: 0; overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.ueber-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.gal-wrap { margin-top: clamp(52px, 6.5vw, 104px); padding-top: clamp(40px, 4.6vw, 66px); border-top: 1px solid var(--hair); }
.gal-h { margin-bottom: clamp(24px, 3vw, 40px); font-size: clamp(1.3rem, 2.1vw, 1.9rem); }
/* Alle Kacheln gleich hoch und gleiches Format, sonst stehen die
   Bildunterschriften auf drei verschiedenen Höhen. */
.gal { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 26px); }
.gal figure { margin: 0; display: grid; grid-template-rows: auto 1fr; }
.gal img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow);
}
.gal figcaption { margin-top: 0.85em; font-size: 0.87rem; line-height: 1.45; color: var(--mute); }

/* ─── 14. Einsatzgebiet ─── */
.gebiet { padding-block: var(--sec); background: var(--paper-2); }
.orte { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); border-top: 1px solid var(--hair); }
.orte li {
  display: flex; align-items: center; gap: 0.6em; padding: 1em 0.4em;
  border-bottom: 1px solid var(--hair);
  font-family: var(--f-disp); font-weight: 600; font-size: 1rem; letter-spacing: -0.015em;
}
.orte li::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; background: var(--orange); border-radius: 50%; }
.orte-note { margin-top: 1.7em; color: var(--mute); font-size: 0.95rem; }
.orte-note a { display: inline-block; padding: 0.3em 0; color: var(--orange-ink); font-weight: 600; text-decoration-color: var(--orange); text-underline-offset: 4px; }

/* ─── 15. Anfrage ─── */
.anfrage { padding-block: var(--sec); background: var(--navy); color: #fff; }
.anfrage-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: clamp(32px, 5vw, 82px); align-items: start; }
.anfrage-side h2 { margin-bottom: 0.7em; }
.anfrage-lead { color: var(--navy-mute); max-width: 40ch; margin-bottom: 1.9em; }

.big-tel {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--f-mono); font-weight: 700;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem); letter-spacing: -0.03em;
  color: var(--orange); text-decoration: none;
}
.big-tel:hover { color: #fff; }
.wa-line {
  display: inline-flex; align-items: center; gap: 0.55em; margin-top: 1em;
  font-weight: 600; font-size: 0.98rem; color: #fff; text-decoration: none;
  padding-bottom: 3px; border-bottom: 2px solid rgba(255,255,255,.35);
}
.wa-line:hover { border-bottom-color: var(--orange); color: var(--orange); }

.meta { margin: clamp(30px, 3.6vw, 46px) 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.meta > div { padding: 1.1em 1.4em 1.1em 0; border-top: 1px solid var(--hair-d); }
.meta dt { font-family: var(--f-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy-mute); margin-bottom: 0.55em; }
.meta dd { margin: 0; font-size: 0.94rem; line-height: 1.5; }
.meta dd a {
  display: inline-block; padding: 0.35em 0;
  text-decoration-color: var(--orange); text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

/* Formular */
.form-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--r-lg); padding: clamp(24px, 3.2vw, 42px);
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--orange);
}
.form-card h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 0.45em; }
.form-sub { color: var(--mute); font-size: 0.92rem; margin-bottom: 1.8em; }
.hp { position: absolute; left: -9999px; }
.f-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.f { display: flex; flex-direction: column; gap: 0.45em; margin-bottom: 16px; }
.f label { font-family: var(--f-disp); font-weight: 600; font-size: 0.85rem; }
.f .opt { font-family: var(--f-body); font-weight: 400; color: var(--mute); }
.f input, .f select, .f textarea {
  font-family: var(--f-body); font-size: 0.97rem; color: var(--ink);
  padding: 0.78em 0.9em;
  background: var(--paper); border: 1.5px solid var(--hair); border-radius: var(--r);
  transition: border-color .16s var(--ease), background-color .16s var(--ease);
  width: 100%;
}
.f textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.f input::placeholder, .f textarea::placeholder { color: #9aa0aa; }
.f input:hover, .f select:hover, .f textarea:hover { border-color: #b9bec6; }
.f input:focus, .f select:focus, .f textarea:focus { outline: none; border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(244,122,33,.18); }
.f input[type="file"] { padding: 0.6em; background: var(--paper-2); cursor: pointer; font-size: 0.9rem; }

.f-check { display: flex; align-items: flex-start; gap: 0.7em; margin: 4px 0 22px; }
.f-check input { width: 24px; height: 24px; margin: 1px 0 0; accent-color: var(--orange); flex: 0 0 auto; cursor: pointer; }
.f-check label { font-size: 0.88rem; line-height: 1.45; color: var(--ink-2); cursor: pointer; }
.form-foot { margin-top: 1.1em; text-align: center; font-size: 0.83rem; color: var(--mute); }
.form-status {
  margin-top: 1.1em; padding: 0.85em 1.05em;
  font-size: 0.9rem; line-height: 1.5; border-radius: var(--r);
  border-left: 4px solid var(--hair);
  background: var(--paper-2); color: var(--ink-2);
}
.form-status.is-bad { border-left-color: #c0392b; background: #fdf0ee; color: #7c2418; }
.form-status.is-wait { border-left-color: var(--orange); }
.form-card button[type="submit"]:disabled { opacity: .6; cursor: progress; transform: none; box-shadow: none; }

/* ─── 16. Footer ─── */
.foot { background: var(--navy-2); color: #fff; padding-block: clamp(44px, 5.5vw, 76px) 24px; }
.foot-top { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr)); gap: clamp(28px, 4vw, 64px); padding-bottom: clamp(30px, 3.6vw, 48px); border-bottom: 1px solid var(--hair-d); }
.foot-brand { display: flex; gap: 0.9em; align-items: flex-start; }
.foot-brand p { margin: 0; font-size: 0.92rem; line-height: 1.55; color: rgba(255,255,255,.74); }
.foot-brand b { color: #fff; font-weight: 600; }
.foot-col { display: flex; flex-direction: column; gap: 0.55em; align-items: flex-start; }
.foot-h { font-family: var(--f-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); margin: 0 0 0.5em; }
.foot-col a { font-size: 0.93rem; color: rgba(255,255,255,.74); text-decoration: none; padding: 0.15em 0; }
.foot-col a:hover { color: var(--orange); }
.foot-bot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 26px; padding-top: 22px; }
.foot-bot p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,.62); display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.foot-bot a, .linkbtn {
  display: inline-flex; align-items: center; min-height: 44px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: 0.85rem; color: rgba(255,255,255,.62);
  text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px;
}
.foot-bot a:hover, .linkbtn:hover { color: var(--orange); text-decoration-color: var(--orange); }

/* ─── 17. Sticky-Leiste (mobil) ─── */
.sticky-bar {
  display: none; position: fixed; z-index: 90;
  left: 12px; right: 12px; bottom: 12px; gap: 8px;
  transform: translateY(155%); transition: transform .3s var(--ease);
}
.sticky-bar.on { transform: none; }
.sticky-bar a {
  flex: 1 1 0; display: flex; align-items: center; justify-content: center; gap: 0.45em;
  padding: 1em 0.6em; min-height: 52px;
  text-decoration: none; text-align: center;
  font-family: var(--f-disp); font-weight: 700; font-size: 0.95rem;
  border-radius: var(--r); box-shadow: 0 8px 28px rgba(14,26,54,.34);
}
.sticky-bar .sb-call { background: var(--white); color: var(--ink); border: 1px solid var(--hair); }
.sticky-bar .sb-ask  { background: var(--orange); color: var(--navy-2); flex: 1.25 1 0; }

/* ─── 18. Dialoge ─── */
.legal {
  width: min(760px, calc(100vw - 32px)); max-height: min(86vh, 900px);
  padding: 0; border: 0; border-radius: var(--r-lg);
  background: var(--white); color: var(--ink); box-shadow: 0 34px 90px rgba(14,26,54,.36);
}
.legal::backdrop { background: rgba(14,26,54,.62); backdrop-filter: blur(3px); }
.legal-inner { padding: clamp(24px, 4vw, 48px); }
.legal h2 { margin-bottom: 1em; }
.legal h3 { font-size: 0.95rem; margin: 1.9em 0 0.5em; color: var(--orange-ink); }
.legal p { font-size: 0.93rem; line-height: 1.62; color: var(--ink-2); }
.legal .todo { font-family: var(--f-mono); font-size: 0.85em; color: var(--orange-ink); }
.close {
  position: sticky; top: 0; float: right;
  width: 42px; height: 42px; margin: -6px -6px 0 0;
  font-size: 1.5rem; line-height: 1;
  background: var(--paper-2); border: 0; border-radius: var(--r); cursor: pointer;
}
.close:hover { background: var(--orange); color: var(--navy-2); }

/* ─── 19. Motion ─── */
.js .rv { opacity: 0; transform: translateY(18px); }
.js .rv.in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .hero h1 .l { opacity: 0; transform: translateY(min(8vw, 56px)); }
.js .hero.lit h1 .l { opacity: 1; transform: none; transition: opacity .75s var(--ease), transform .85s var(--ease); }
.js .hero.lit h1 .l:nth-child(2) { transition-delay: .1s; }
.js .hero .hero-sub, .js .hero .hero-act, .js .hero .chips, .js .hero .kicker { opacity: 0; transform: translateY(14px); }
.js .hero.lit .hero-sub, .js .hero.lit .hero-act, .js .hero.lit .chips, .js .hero.lit .kicker {
  opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js .hero.lit .kicker   { transition-delay: .05s; }
.js .hero.lit .hero-sub { transition-delay: .26s; }
.js .hero.lit .hero-act { transition-delay: .36s; }
.js .hero.lit .chips    { transition-delay: .46s; }

@media (prefers-reduced-motion: reduce) {
  .js .rv, .js .hero h1 .l, .js .hero .hero-sub, .js .hero .hero-act, .js .hero .chips, .js .hero .kicker {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .btn:hover, .btn-primary:hover, .btn-dark:hover { transform: none; }
  .btn:hover svg { transform: none; }
  .row:hover .row-img img { transform: none; }
  .sticky-bar { transition: none; }
}

/* ─── 20. Breakpoints ─── */
/* Zwischen Burger-Grenze und ~1140 px wird der Kopf zu breit: Logo, Navigation,
   Telefonnummer und Schaltfläche passen nicht zusammen. Die Nummer weicht,
   die Schaltfläche bleibt — sie führt zum Formular. */
@media (max-width: 1140px) {
  .head-tel { display: none; }
}

@media (max-width: 1120px) {
  .row-in { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
  .gal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .preis-grid { grid-template-columns: 1fr; }
  .anfrage-grid { grid-template-columns: 1fr; }
  .anfrage-side { max-width: 640px; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed; inset: var(--head-h) 0 auto 0;
    flex-direction: column; align-items: stretch; text-align: left; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--hair);
    box-shadow: 0 22px 44px rgba(25,27,31,.14);
    padding: 6px var(--gut) 22px; margin: 0;
    transform: translateY(-135%); transition: transform .3s var(--ease);
    max-height: calc(100dvh - var(--head-h)); overflow-y: auto;
  }
  .nav.open { transform: none; }
  .nav a { padding: 0.9em 0; border-bottom: 1px solid var(--hair-2); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .burger { display: block; }
  .head-act .btn-primary { display: none; }
  .head-row { justify-content: space-between; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-left: var(--gut); padding-right: var(--gut); padding-bottom: clamp(36px, 5vw, 56px); }
  .hero-fig { order: -1; }
  .hero-fig img { min-height: 0; aspect-ratio: 16 / 10; }

  .proof-head { grid-template-columns: 1fr; align-items: start; }
  .job { grid-template-columns: repeat(2, 1fr); }
  .job > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .job > div:nth-child(n+3) { border-top: 1px solid var(--hair); margin-top: 0.4em; }

  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts li:nth-child(3) { border-left: 0; }
  .facts li:nth-child(n+3) { border-top: 1px solid var(--hair-d); }

  .row-in { grid-template-columns: 1fr; }
  .row-flip .row-img { order: 0; }
  .row-img img { aspect-ratio: 16 / 10; }

  .steps { grid-template-columns: 1fr; }
  .steps > li { padding-right: 0; padding-bottom: 28px; }
  .steps > li + li { border-left: 0; border-top: 1px solid var(--hair-d); padding-left: 0; }
  .steps > li + li::before { left: 0; }

  .ueber-grid { grid-template-columns: 1fr; }
  .ueber-img { order: -1; max-width: 560px; }

  .sticky-bar { display: flex; }
  .foot { padding-bottom: 100px; }
}

@media (max-width: 720px) {
  .head-row { gap: 12px; }
  .logo-type { overflow: hidden; text-overflow: ellipsis; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.35rem, 11.5vw, 3.3rem); }
  .hero h1 { max-width: none; }
  .hero h1 .l { display: inline; }
  .kicker { letter-spacing: 0.12em; font-size: 0.66rem; }
  .kicker::before { width: 18px; }
  .hero-act .btn, .band-act .btn { width: 100%; }
  .hero-fig figcaption { font-size: 0.62rem; letter-spacing: 0.08em; padding: 2em 16px 0.9em; }
  .chips li { font-size: 0.8rem; }

  .ba-43 .ba-frame { --ar: 5 / 4; }
  .ba-handle span { width: 48px; height: 48px; margin: -24px 0 0 -24px; }
  .ba-handle span::before { left: 13px; } .ba-handle span::after { right: 13px; }
  .ba-tag { font-size: 0.6rem; top: 10px; padding: 0.4em 0.6em; }
  .ba-tag-l { left: 10px; } .ba-tag-r { right: 10px; }
  .ba-hint { bottom: 14px; font-size: 0.64rem; }
  .job { grid-template-columns: 1fr; }
  .job > div, .job > div + div { border-left: 0; padding-left: 0; padding-right: 0; }
  .job > div + div { border-top: 1px solid var(--hair); margin-top: 0; }
  .proof-cta { flex-direction: column; align-items: stretch; }
  .proof-cta .btn { width: 100%; }
  .proof-tabs button { font-size: 0.85rem; padding: 0.6em 0.9em; }

  .facts { grid-template-columns: 1fr; }
  .facts li { display: flex; align-items: baseline; gap: 0.9em; padding: 18px var(--gut); }
  .facts li + li { border-left: 0; border-top: 1px solid var(--hair-d); }
  .f-n { margin-bottom: 0; min-width: 4.6em; font-size: 1.45rem; }

  .f-row { grid-template-columns: 1fr; gap: 0; }
  .meta { grid-template-columns: 1fr; }
  .meta > div { padding-right: 0; }
  .year-foot .btn { width: 100%; }
  .preis-cta .btn { width: 100%; }
  .gal { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════════
   21. Mehrseitige Struktur: Dropdown, Brotkrumen, Seitenköpfe
   ══════════════════════════════════════════════════════════════ */

/* ─── Dropdown in der Navigation ─── */
.nav-drop { position: relative; }
.nav-top {
  display: inline-flex; align-items: center; gap: 0.35em;
  background: none; border: 0; padding: 0.4em 0; cursor: pointer;
  font-family: var(--f-body); font-size: 0.92rem; font-weight: 500;
  color: var(--ink-2); white-space: nowrap;
  transition: color .16s var(--ease);
}
.nav-top:hover, .nav-top[aria-expanded="true"] { color: var(--ink); }
.nav-top svg { transition: transform .2s var(--ease); }
.nav-top[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav-top[aria-current="page"] { color: var(--ink); }

.drop {
  position: absolute; top: calc(100% + 14px); left: -18px; z-index: 120;
  width: min(760px, calc(100vw - 40px));
  background: var(--white); border: 1px solid var(--hair);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.drop::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange);
}
.drop-in {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 clamp(18px, 2vw, 34px); padding: clamp(20px, 2.2vw, 30px);
}
.drop-col { display: flex; flex-direction: column; gap: 0.1em; }
.drop-col a {
  font-size: 0.9rem; color: var(--mute); text-decoration: none;
  padding: 0.42em 0; border-radius: 2px;
  transition: color .14s var(--ease);
}
.drop-col a:hover { color: var(--orange-ink); }
.drop-h {
  font-family: var(--f-disp); font-weight: 700; font-size: 0.95rem !important;
  color: var(--ink) !important; margin-bottom: 0.3em;
  padding-bottom: 0.5em !important; border-bottom: 1px solid var(--hair-2);
}
.drop-h:hover { color: var(--orange-ink) !important; }
.drop-h-2 { margin-top: 1.1em; }
.drop-all {
  display: flex; align-items: center; justify-content: space-between; gap: 0.6em;
  padding: 1em clamp(20px, 2.2vw, 30px);
  background: var(--paper-2); border-top: 1px solid var(--hair-2);
  font-family: var(--f-disp); font-weight: 700; font-size: 0.9rem;
  color: var(--ink); text-decoration: none;
}
.drop-all:hover { background: var(--orange); color: var(--navy-2); }

/* ─── Brotkrumen ─── */
.krumen { background: var(--paper); border-bottom: 1px solid var(--hair-2); }
.krumen ol {
  list-style: none; margin: 0; padding: 0.95em 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.45em 0.7em;
  font-size: 0.83rem; color: var(--mute);
}
.krumen li { display: flex; align-items: center; gap: 0.7em; }
.krumen li + li::before {
  content: ""; width: 5px; height: 5px; flex: 0 0 auto;
  border-top: 1.6px solid var(--mute); border-right: 1.6px solid var(--mute);
  transform: rotate(45deg);
}
.krumen a { color: var(--mute); text-decoration: none; padding: 0.2em 0; }
.krumen a:hover { color: var(--orange-ink); text-decoration: underline; text-underline-offset: 3px; }
.krumen [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ─── Seitenkopf der Unterseiten ─── */
.kopf { padding-block: clamp(44px, 6vw, 88px) clamp(34px, 4.4vw, 60px); background: var(--paper); }
.kopf-in { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: clamp(24px, 4vw, 64px); align-items: end; }
.kopf h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: 0.5em; }
.kopf .lead { font-size: clamp(1.04rem, 1.2vw, 1.2rem); }
.kopf-akt { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.9em; }
.kopf-fakt { display: grid; gap: 0; border-top: 1px solid var(--hair); }
.kopf-fakt div { padding: 0.9em 0; border-bottom: 1px solid var(--hair); }
.kopf-fakt dt { font-family: var(--f-mono); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange-ink); margin-bottom: 0.3em; }
.kopf-fakt dd { margin: 0; font-size: 0.93rem; color: var(--ink-2); }

.kopf-bild { margin: 0 0 clamp(30px, 4vw, 52px); overflow: hidden; border-radius: var(--r-lg); box-shadow: var(--shadow); }
.kopf-bild img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

/* ─── Textabschnitt ─── */
.text { padding-block: clamp(44px, 5.5vw, 86px); background: var(--paper); }
.text-alt { background: var(--paper-2); }
.prosa { max-width: 68ch; }
.prosa h2 { font-size: clamp(1.6rem, 2.7vw, 2.3rem); margin: 2.2em 0 0.8em; }
.prosa h2:first-child { margin-top: 0; }
.prosa h3 { margin: 1.9em 0 0.6em; }
.prosa p, .prosa ul, .prosa ol { color: var(--ink-2); }
.prosa ul, .prosa ol { padding-left: 1.3em; margin: 0 0 1em; }
.prosa li { margin-bottom: 0.45em; }
.prosa ul li::marker { color: var(--orange); }
.prosa strong { color: var(--ink); }
.prosa a { color: var(--orange-ink); text-decoration-color: var(--orange); text-underline-offset: 3px; }

/* ─── Kachelgitter (Leistungen, Orte, Ratgeber) ─── */
.kacheln { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(14px, 1.8vw, 24px); list-style: none; margin: 0; padding: 0; }
.kachel {
  display: flex; flex-direction: column; gap: 0.5em;
  padding: clamp(20px, 2.3vw, 30px);
  background: var(--white); border: 1px solid var(--hair-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow); text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.kachel:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--hair); }
.kachel-n { font-family: var(--f-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--orange-ink); }
.kachel h3 { font-size: 1.15rem; }
.kachel p { margin: 0; font-size: 0.93rem; color: var(--mute); line-height: 1.5; }
.kachel-mehr {
  margin-top: auto; padding-top: 0.9em;
  display: inline-flex; align-items: center; gap: 0.45em;
  font-family: var(--f-disp); font-weight: 700; font-size: 0.9rem; color: var(--ink);
}
.kachel:hover .kachel-mehr { color: var(--orange-ink); }
.kachel-mehr svg { transition: transform .2s var(--ease); }
.kachel:hover .kachel-mehr svg { transform: translateX(3px); }

/* ─── FAQ ─── */
.faq { max-width: 74ch; border-top: 1px solid var(--hair); }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1em;
  padding: 1.15em 0; cursor: pointer; list-style: none;
  font-family: var(--f-disp); font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 13px; height: 13px; margin-top: 0.35em;
  border-right: 2.2px solid var(--orange); border-bottom: 2.2px solid var(--orange);
  transform: rotate(45deg); transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq summary:hover { color: var(--orange-ink); }
.faq-a { padding: 0 0 1.3em; max-width: 66ch; }
.faq-a p { color: var(--ink-2); font-size: 0.97rem; }
.faq-a p:last-child { margin-bottom: 0; }

/* ─── Nachbarseiten ─── */
.nachbar { padding-block: clamp(38px, 4.6vw, 66px); background: var(--paper-2); }
.nachbar-liste { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 1.4em 0 0; padding: 0; }
.nachbar-liste a {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.6em 1.05em; font-size: 0.9rem; font-weight: 500;
  background: var(--white); border: 1px solid var(--hair); border-radius: 100px;
  color: var(--ink-2); text-decoration: none;
}
.nachbar-liste a:hover { border-color: var(--ink); color: var(--ink); }

/* ─── Ratgeber ─── */
.artikel { padding-block: clamp(40px, 5vw, 76px); background: var(--paper); }
.artikel-meta {
  display: flex; flex-wrap: wrap; gap: 0.5em 1.2em; margin-bottom: 1.8em;
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--mute);
}
.artikel-meta time { color: var(--orange-ink); }
.rat-kachel-datum { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-ink); }

/* ══════════════════════════════════════════════════════════════
   22. Angebots-Funnel
   ══════════════════════════════════════════════════════════════ */
.funnel-abschnitt { padding-block: clamp(34px, 4.4vw, 66px) clamp(52px, 7vw, 104px); background: var(--paper-2); }
.fu { max-width: 880px; margin-inline: auto; }
.fu-kopf { margin-bottom: clamp(22px, 2.6vw, 34px); }
.fu-zaehler { margin: 0 0 0.7em; font-family: var(--f-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
.fu-bahn { height: 4px; background: var(--paper-3); border-radius: 2px; overflow: hidden; }
.fu-fort { height: 100%; background: var(--orange); border-radius: 2px; transition: width .4s var(--ease); min-width: 4px; }

.fu-buehne { background: var(--white); border: 1px solid var(--hair-2); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: clamp(22px, 3vw, 40px); }
.fu-frage-nr { margin: 0 0 0.5em; font-family: var(--f-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange-ink); }
.fu-frage { font-size: clamp(1.5rem, 2.9vw, 2.2rem); margin-bottom: 0.4em; }
.fu-hilfe { color: var(--mute); font-size: 0.95rem; max-width: 54ch; margin-bottom: 1.8em; }
.fu-frage + .fu-karten, .fu-frage + .fu-orte, .fu-frage + .fu-zus { margin-top: 1.6em; }

.fu-karten { display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); gap: 12px; }
.fu-karte {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.3em;
  padding: 1.15em 1.2em; text-align: left; cursor: pointer;
  background: var(--paper); border: 1.5px solid var(--hair); border-radius: var(--r-lg);
  transition: border-color .16s var(--ease), background-color .16s var(--ease), transform .16s var(--ease);
}
.fu-karte:hover { border-color: var(--orange); background: var(--white); transform: translateY(-2px); }
.fu-ik { color: var(--orange); margin-bottom: 0.35em; }
.fu-t { font-family: var(--f-disp); font-weight: 700; font-size: 1rem; letter-spacing: -0.015em; color: var(--ink); }
.fu-u { font-size: 0.85rem; line-height: 1.4; color: var(--mute); }

.fu-orte { display: flex; flex-wrap: wrap; gap: 9px; }
.fu-ort {
  padding: 0.68em 1.15em; cursor: pointer;
  font-family: var(--f-body); font-size: 0.93rem; font-weight: 500; color: var(--ink-2);
  background: var(--paper); border: 1.5px solid var(--hair); border-radius: 100px;
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.fu-ort:hover { border-color: var(--orange); color: var(--ink); }
.fu-ort-frei { border-style: dashed; }
.fu-frei { display: grid; gap: 0.5em; margin-top: 1.4em; max-width: 420px; }
.fu-frei label { font-family: var(--f-disp); font-weight: 600; font-size: 0.85rem; }
.fu-frei input {
  font-family: var(--f-body); font-size: 0.97rem; padding: 0.78em 0.9em;
  background: var(--paper); border: 1.5px solid var(--hair); border-radius: var(--r);
}
.fu-frei input:focus { outline: none; border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(244,122,33,.18); }

.fu-zus { list-style: none; margin: 0 0 1.8em; padding: 0; border-top: 1px solid var(--hair); }
.fu-zus li { display: flex; flex-wrap: wrap; gap: 0.3em 1em; justify-content: space-between; padding: 0.7em 0; border-bottom: 1px solid var(--hair-2); font-size: 0.93rem; }
.fu-zus span { color: var(--mute); }
.fu-zus b { color: var(--ink); font-weight: 600; }

.fu-fuss { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 20px; margin-top: 18px; }
.fu-zurueck {
  display: inline-flex; align-items: center; gap: 0.45em; min-height: 44px;
  background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--f-disp); font-weight: 600; font-size: 0.9rem; color: var(--mute);
}
.fu-zurueck:hover { color: var(--ink); }
.fu-wahl { margin: 0; font-family: var(--f-mono); font-size: 0.74rem; color: var(--mute); text-align: right; }

@media (max-width: 980px) {
  .kopf-in { grid-template-columns: 1fr; align-items: start; }
  .drop {
    position: static; width: auto; box-shadow: none; border: 0;
    border-radius: 0; background: transparent; margin: 0 0 0.6em;
  }
  .drop::before { display: none; }
  .drop-in { grid-template-columns: 1fr; padding: 0 0 0 0.9em; gap: 0; border-left: 2px solid var(--hair); }
  .drop-h { border-bottom: 0; padding-bottom: 0.35em !important; }
  .drop-h-2 { margin-top: 0.8em; }
  .drop-all { padding: 0.8em 0; background: none; border-top: 0; }
  .drop-all:hover { background: none; color: var(--orange-ink); }
  .nav-top { padding: 0.9em 0; border-bottom: 1px solid var(--hair-2); width: 100%; justify-content: space-between; font-size: 1.05rem; }
}

@media (max-width: 640px) {
  .kopf-bild img { aspect-ratio: 16 / 10; }
  .fu-karten { grid-template-columns: 1fr; }
  .fu-wahl { display: none; }
  .faq summary { font-size: 0.98rem; }
}

.sec-h { font-size: clamp(1.6rem, 2.7vw, 2.3rem); margin-bottom: clamp(20px, 2.4vw, 32px); }
.text .sec-h { max-width: 60ch; }
