@charset "UTF-8";
/* ==========================================================================
   Weigola Raumpflege — styles.css
   Ein Stylesheet für alle Seiten. Keine externen Requests.

   Aufbau nach dem Vorbild suedwest-reinigung.de (Kundenwunsch), Farbwelt
   aus dem Weigola-Logo: Rot #DA2234 und Schwarz, exakt aus der Wortmarke
   ausgelesen.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften — lokal, DSGVO-konform, kein CDN
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Token — die einzige Stelle, an der Farben definiert werden
   -------------------------------------------------------------------------- */
:root {
  /* Aus PX_Weigolafont_Web_rob.png ausgelesen: das Logo kennt genau zwei
     Farben. Alles Weitere sind Abstufungen davon. */
  --rot: #DA2234;
  --rot-hell: #F04255;      /* aufgehellt für dunkle Flächen und Verläufe */
  --rot-dunkel: #B91D2C;    /* 6,2:1 auf Weiß — für Text auf hellem Grund */

  --ink: #131313;
  --ink-70: #4A4A4A;
  --ink-50: #6E6E6E;

  --papier: #FFFFFF;
  --flaeche: #F5F4F2;       /* helle Sektionen */
  --nacht: #101010;         /* Kopf, Fuß, dunkle Sektionen */
  --nacht-alt: #1B1B1B;     /* Karten auf dunklem Grund */

  --linie: #E5E3E0;
  --linie-stark: #CFCCC8;
  --linie-dunkel: rgba(255, 255, 255, .14);
  --dim: #B6B6B6;           /* 8.9:1 auf --nacht */

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;
  --sp-12: 96px; --sp-16: 128px;

  --section: 72px;
  --gutter: 20px;
  --content: 1200px;
  --kopf-h: 68px;

  --ease: cubic-bezier(.2, .7, .3, 1);
  --radius: 10px;
  --radius-gross: 16px;
  --schatten: 0 1px 2px rgba(16,16,16,.04), 0 8px 24px rgba(16,16,16,.06);
  --schatten-stark: 0 2px 4px rgba(16,16,16,.06), 0 16px 40px rgba(16,16,16,.10);
}
@media (min-width: 768px)  { :root { --section: 96px;  --gutter: 32px; --kopf-h: 76px; } }
@media (min-width: 1280px) { :root { --section: 120px; --gutter: 48px; --kopf-h: 82px; } }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--kopf-h) + 20px);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 16.5px;
  line-height: 1.62;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.022em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}
@media (max-width: 1023px) { h1, h2, h3 { hyphens: auto; } }

h1 { font-size: clamp(2.1rem, 1.3rem + 3.4vw, 3.75rem); font-weight: 700; letter-spacing: -.032em; }
h2 { font-size: clamp(1.65rem, 1.15rem + 2.1vw, 2.5rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.375rem); line-height: 1.25; }
h4 { font-size: 1.0625rem; letter-spacing: -.015em; line-height: 1.3; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; }
strong, b { font-weight: 600; }
::selection { background: var(--rot); color: #fff; }

:focus-visible {
  outline: 2px solid var(--rot-dunkel);
  outline-offset: 3px;
  border-radius: 3px;
}
.auf-dunkel :focus-visible, .kopf :focus-visible, .fuss :focus-visible,
.hero :focus-visible, .mobilnav :focus-visible { outline-color: var(--rot-hell); }

a, button, input, select, textarea, label, summary { touch-action: manipulation; }

.springlink {
  position: absolute; left: var(--gutter); top: 0; z-index: 200;
  transform: translateY(-140%);
  background: var(--ink); color: #fff;
  padding: 13px 20px; font-size: .875rem; font-weight: 500;
  text-decoration: none; border-radius: 0 0 var(--radius) var(--radius);
  transition: transform .16s var(--ease);
}
.springlink:focus-visible { transform: translateY(0); }

/* --------------------------------------------------------------------------
   4. Layout-Primitive
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%; min-width: 0;
  max-width: calc(var(--content) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--breit { max-width: calc(1360px + var(--gutter) * 2); }
.wrap--schmal { max-width: calc(760px + var(--gutter) * 2); }

.abschnitt { padding-block: var(--section); }
.abschnitt--eng { padding-block: calc(var(--section) * .66); }
.abschnitt--flaeche { background: var(--flaeche); }
.abschnitt--dunkel { background: var(--nacht); color: #fff; }
.abschnitt--dunkel h1, .abschnitt--dunkel h2,
.abschnitt--dunkel h3, .abschnitt--dunkel h4 { color: #fff; }

/* Sektionskopf: Kicker, Überschrift, Einleitung */
.skopf { max-width: 62ch; margin-bottom: var(--sp-8); }
.skopf--mitte { margin-inline: auto; text-align: center; }
.kicker {
  display: block;
  font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rot-dunkel);
  margin-bottom: var(--sp-2);
}
.abschnitt--dunkel .kicker, .hero .kicker, .seitenkopf .kicker { color: var(--rot-hell); }
/* Über einem Foto trägt Rot nicht: gemessen nur 2,5:1 gegen das abgedunkelte
   Bild, nötig sind 4,5:1 für die kleine Versalzeile. Dort steht sie weiß.
   Auf dem einfarbigen Seitenkopf bleibt Rot (5,3:1 auf #141414). */
.seitenkopf--bild .kicker { color: rgba(255,255,255,.88); }
.seitenkopf--bild .kicker,
.seitenkopf--bild .seitenkopf__sub,
.seitenkopf--bild .krumen { text-shadow: 0 1px 3px rgba(0,0,0,.75), 0 0 14px rgba(0,0,0,.5); }
.seitenkopf--bild h1 { text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4); }
.skopf p {
  margin-top: var(--sp-3);
  font-size: 1.0625rem;
  color: var(--ink-70);
}
.abschnitt--dunkel .skopf p { color: rgba(255,255,255,.72); }

.messtext { max-width: 68ch; }

/* --------------------------------------------------------------------------
   5. Schaltflächen und Links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 24px;
  border: 1px solid transparent; border-radius: 8px;
  background: var(--rot); color: #fff;
  font-family: var(--font-text); font-size: .9375rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  text-align: center; text-wrap: balance;
  transition: background .16s var(--ease), border-color .16s var(--ease),
              color .16s var(--ease), transform .16s var(--ease);
}
/* Weiß auf #DA2234 erreicht 4,93:1. Beim Überfahren wird abgedunkelt statt
   aufgehellt — aufgehellt fiele der Kontrast unter die geforderten 4,5:1. */
@media (hover: hover) { .btn:hover { background: #C41F2F; } }
.btn:active { background: #AE1B2A; }

.btn--weiss { background: #fff; color: var(--ink); }
@media (hover: hover) { .btn--weiss:hover { background: #F0EFED; } }

.btn--rand { background: transparent; border-color: var(--linie-stark); color: var(--ink); }
@media (hover: hover) { .btn--rand:hover { border-color: var(--ink); background: transparent; } }

.btn--rand-hell { background: transparent; border-color: rgba(255,255,255,.34); color: #fff; }
@media (hover: hover) { .btn--rand-hell:hover { border-color: #fff; background: rgba(255,255,255,.08); } }

.btn--dunkel { background: var(--nacht); color: #fff; }
@media (hover: hover) { .btn--dunkel:hover { background: #2A2A2A; } }

.btn--breit { width: 100%; }
.btn .pfeil { transition: transform .24s var(--ease); }
@media (hover: hover) { .btn:hover .pfeil { transform: translateX(3px); } }

/* Textlink mit Pfeil */
.tlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9375rem; font-weight: 600;
  color: var(--rot-dunkel); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
@media (hover: hover) { .tlink:hover { border-bottom-color: currentColor; } }
.tlink .pfeil { transition: transform .24s var(--ease); }
@media (hover: hover) { .tlink:hover .pfeil { transform: translateX(3px); } }

.rte a:not(.btn):not(.tlink), .prosa a:not(.btn):not(.tlink) {
  color: var(--rot-dunkel); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-thickness: 1px;
}

.aktionen { display: flex; flex-wrap: wrap; gap: 12px; }
.aktionen--mitte { justify-content: center; }

/* Symbole aus dem Sprite */
.sym { width: 20px; height: 20px; flex: none; stroke-width: 1.7; }
.sym--klein { width: 16px; height: 16px; }
.sym--gross { width: 24px; height: 24px; }

/* --------------------------------------------------------------------------
   6. Kopfzeile
   Dauerhaft dunkel — anders als bisher gibt es keinen transparenten Zustand
   mehr. Das Vorbild macht es genauso und es erspart die Sonderbehandlung
   für helle Titelbilder.
   -------------------------------------------------------------------------- */
.kopf {
  position: sticky; top: 0; z-index: 100;
  background: var(--nacht);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.kopf__innen {
  position: relative;
  max-width: calc(1360px + var(--gutter) * 2);
  margin-inline: auto; padding-inline: var(--gutter);
  min-height: var(--kopf-h);
  display: flex; align-items: center; gap: var(--sp-3);
}
.marke { flex: none; display: flex; align-items: center; margin-right: auto; line-height: 0; }
.marke img { width: clamp(116px, 11vw, 146px); height: auto; }

.hauptnav { display: none; }
@media (min-width: 1080px) {
  .hauptnav { display: block; }
  .hauptnav__liste { display: flex; align-items: center; gap: clamp(2px, .8vw, 14px); list-style: none; }
  .hauptnav__punkt { position: relative; }
  .hauptnav__link {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 9px 8px; border-radius: 7px;
    font-size: .9375rem; font-weight: 500; color: rgba(255,255,255,.82);
    text-decoration: none; white-space: nowrap;
    background: none; border: 0; font-family: inherit; cursor: pointer;
    transition: color .18s var(--ease), background .18s var(--ease);
  }
  @media (hover: hover) { .hauptnav__link:hover { color: #fff; background: rgba(255,255,255,.07); } }
  .hauptnav__link[aria-current='page'] { color: #fff; }
  .hauptnav__link[aria-current='page']::after {
    content: ''; position: absolute; left: 8px; right: 8px; bottom: 2px;
    height: 2px; border-radius: 2px; background: var(--rot);
  }
  /* flex: none ist nötig — ohne das quetscht der Flexbox-Kontext den Pfeil
     in einer engen Menüzeile auf Breite 0 und er verschwindet. */
  .hauptnav__pfeil { width: 13px; height: 13px; flex: none;
                     transition: transform .22s var(--ease); }
  .hauptnav__punkt.ist-offen .hauptnav__pfeil { transform: rotate(180deg); }

  /* Aufklapper mit Symbolen — wie beim Vorbild */
  .hauptnav__sub {
    position: absolute; top: calc(100% + 8px); left: -8px;
    min-width: 288px; list-style: none;
    background: var(--papier);
    border: 1px solid var(--linie);
    border-radius: 12px; padding: 8px;
    box-shadow: var(--schatten-stark);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  }
  .hauptnav__punkt.ist-offen > .hauptnav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
  @media (hover: hover) {
    .hauptnav__punkt:hover > .hauptnav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
  }
  /* Mega-Menü: Gruppen als Spalten, rechts ein Feld mit Kontakt und
     Handlungsaufforderung — nach dem Vorbild suedwest-reinigung.de */
  .hauptnav__punkt--mega { position: static; }
  .hauptnav__sub--mega {
    left: 50%; transform: translate(-50%, -6px);
    width: min(1120px, calc(100vw - 2 * var(--gutter)));
    padding: 0; display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.05fr);
    overflow: hidden;
  }
  .hauptnav__punkt.ist-offen > .hauptnav__sub--mega { transform: translate(-50%, 0); }
  @media (hover: hover) {
    .hauptnav__punkt:hover > .hauptnav__sub--mega { transform: translate(-50%, 0); }
  }
  .mega__spalte { padding: 22px 18px 20px; border-right: 1px solid var(--linie); min-width: 0; }
  .mega__spalte:nth-child(3) { border-right: 0; }
  .mega__spalte h3 {
    font-family: var(--font-text);
    font-size: .75rem; font-weight: 600; letter-spacing: .13em;
    text-transform: uppercase; color: var(--ink-50);
    margin: 0 0 10px; padding-inline: 10px;
  }
  .mega__spalte ul { list-style: none; }

  .mega__info {
    padding: 22px 20px 20px; background: var(--flaeche);
    display: flex; flex-direction: column; gap: 12px; min-width: 0;
  }
  .mega__info h3 {
    font-family: var(--font-text); font-size: .75rem; font-weight: 600;
    letter-spacing: .13em; text-transform: uppercase; color: var(--ink-50); margin: 0;
  }
  .mega__info p { font-size: .875rem; color: var(--ink-70); margin: 0; }
  .mega__kontakt { list-style: none; display: grid; gap: 4px; }
  .mega__kontakt a, .mega__kontakt span {
    display: flex; align-items: center; gap: 10px;
    min-height: 32px; font-size: .875rem; color: var(--ink);
    text-decoration: none; padding: 0;
  }
  .mega__kontakt .sym { color: var(--rot); flex: none; }
  @media (hover: hover) { .mega__kontakt a:hover { color: var(--rot-dunkel); background: none; } }
  .mega__info .btn { width: 100%; min-height: 42px; font-size: .875rem; }
  .mega__info .btn + .btn { margin-top: -4px; }
  .hauptnav__gruppe {
    font-size: .75rem; font-weight: 600; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink-50);
    padding: 10px 12px 6px; margin: 0;
    break-after: avoid;
  }
  .hauptnav__sub li { break-inside: avoid; }
  .hauptnav__sub a:not(.btn) {
    display: flex; align-items: center; gap: 11px;
    padding: 9px 12px; border-radius: 8px;
    font-size: .9375rem; font-weight: 500; color: var(--ink);
    text-decoration: none;
    transition: background .14s var(--ease), color .14s var(--ease);
  }
  .hauptnav__sub a .sym { color: var(--rot); transition: transform .18s var(--ease); }
  @media (hover: hover) {
    .hauptnav__sub a:not(.btn):hover { background: var(--flaeche); }
    .hauptnav__sub a:not(.btn):hover .sym { transform: scale(1.08); }
  }
  .hauptnav__sub a[aria-current='page'] { background: var(--flaeche); box-shadow: inset 2px 0 0 var(--rot); }
}

.kopf__aktionen { display: flex; align-items: center; gap: 10px; flex: none; }
.kopf__kontakt { display: none; }
@media (min-width: 1240px) {
  .kopf__kontakt {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.78);
    text-decoration: none; white-space: nowrap;
    transition: color .18s var(--ease);
  }
  .kopf__kontakt .sym { color: var(--rot-hell); }
  @media (hover: hover) { .kopf__kontakt:hover { color: #fff; } }
}
/* Instagram und Facebook in der Kopfzeile. Erst ab 1400px sichtbar: Gemessen
   passt die Zeile mit Navigation, Telefonnummer und Handlungsaufforderung bis
   1240px gerade so — die beiden Zeichen brauchen weitere 96px. Darunter
   stehen sie im mobilen Menü. */
.kopf__sozial { display: none; }
@media (min-width: 1400px) {
  .kopf__sozial {
    display: grid; place-items: center;
    width: 38px; height: 38px; flex: none;
    border: 1px solid rgba(255,255,255,.18); border-radius: 8px;
    color: rgba(255,255,255,.78);
    transition: color .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
  }
  @media (hover: hover) {
    .kopf__sozial:hover { color: #fff; border-color: var(--rot); background: rgba(218,34,52,.16); }
  }
}

/* Im mobilen Menü als Paar unter der Handlungsaufforderung */
.mobilnav__sozial { display: flex; gap: 10px; list-style: none; margin-top: var(--sp-2); }
.mobilnav__sozial a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--linie-dunkel); border-radius: 9px; color: #fff;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
@media (hover: hover) {
  .mobilnav__sozial a:hover { border-color: var(--rot); background: rgba(218,34,52,.16); }
}

.kopf__cta { display: none; }
@media (min-width: 1080px) {
  .kopf__cta { display: inline-flex; min-height: 42px; padding: 10px 18px; font-size: .875rem; }
}

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 10px; margin-right: -10px;
  background: none; border: 0; cursor: pointer;
}
@media (min-width: 1080px) { .burger { display: none; } }
.burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.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); }

/* --------------------------------------------------------------------------
   7. Mobiles Menü
   -------------------------------------------------------------------------- */
.mobilnav {
  position: fixed; inset: var(--kopf-h) 0 0 0; z-index: 99;
  background: var(--nacht); color: #fff;
  display: flex; flex-direction: column;
  padding: var(--sp-4) var(--gutter) calc(var(--sp-6) + env(safe-area-inset-bottom));
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden;
  transition: opacity .26s var(--ease), visibility .26s;
}
.mobilnav.ist-offen { opacity: 1; visibility: visible; }
@media (min-width: 1080px) { .mobilnav { display: none; } }

.mobilnav__liste { list-style: none; }
.mobilnav__liste > li { border-bottom: 1px solid var(--linie-dunkel); }
.mobilnav__link, .mobilnav__schalter {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; min-height: 56px; padding: 14px 0;
  background: none; border: 0; color: #fff;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  letter-spacing: -.02em; text-align: left; text-decoration: none; cursor: pointer;
}
.mobilnav__link[aria-current='page'] { color: var(--rot-hell); }
.mobilnav__schalter .hauptnav__pfeil { width: 16px; height: 16px; }
.mobilnav__schalter[aria-expanded='true'] .hauptnav__pfeil { transform: rotate(180deg); }

.mobilnav__sub { list-style: none; overflow: hidden; max-height: 0; transition: max-height .34s var(--ease); }
.mobilnav__sub.ist-offen { max-height: 1400px; }
.mobilnav__gruppe {
  padding: 14px 0 4px 18px; margin: 0;
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--dim);
  border-left: 2px solid var(--linie-dunkel);
}
.mobilnav__sub a {
  display: flex; align-items: center; gap: 11px;
  min-height: 46px; padding: 10px 0 10px 18px;
  border-left: 2px solid var(--linie-dunkel);
  color: rgba(255,255,255,.8); font-size: 1rem; font-weight: 500; text-decoration: none;
}
.mobilnav__sub a .sym { color: var(--rot-hell); }
.mobilnav__sub a[aria-current='page'] { color: var(--rot-hell); border-left-color: var(--rot); }
.mobilnav__sub li:last-child a { margin-bottom: 12px; }

.mobilnav__fuss { margin-top: auto; padding-top: var(--sp-6); display: grid; gap: 12px; }
.mobilnav__fuss a { color: #fff; text-decoration: none; font-size: 1rem; }
.mobilnav__fuss .zeile { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }
.mobilnav__fuss .zeile .sym { color: var(--rot-hell); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative; isolation: isolate;
  background: var(--nacht); color: #fff;
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(56px, 8vw, 92px);
  text-align: center;
  overflow: hidden;
}
.hero__bild { position: absolute; inset: 0; z-index: -2; }
.hero__bild img { width: 100%; height: 100%; object-fit: cover; }
.hero__schleier {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(16,16,16,.78) 0%, rgba(16,16,16,.62) 46%, rgba(16,16,16,.86) 100%),
    radial-gradient(120% 90% at 50% 0%, rgba(218,34,52,.20) 0%, rgba(16,16,16,0) 62%);
}
/* Ohne Bild: ruhige Fläche mit feinem Raster statt einer leeren Wand */
.hero--ohne-bild .hero__schleier {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(218,34,52,.22) 0%, rgba(16,16,16,0) 60%),
    linear-gradient(to bottom, #171717 0%, #101010 100%);
}
.hero--ohne-bild::before {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero__innen { position: relative; max-width: 860px; margin-inline: auto; }

/* Das Weigola-Männchen steht links und weist mit dem ausgestreckten Arm auf
   die Überschrift. Ab 900px rückt der Text dafür nach rechts und wird
   linksbündig — darunter bleibt alles mittig und die Figur entfällt, sie
   würde dort nur Höhe kosten. */
@media (min-width: 900px) {
  .hero--figur .hero__innen {
    max-width: 1060px;
    display: grid; grid-template-columns: clamp(150px, 15vw, 215px) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px); align-items: center; text-align: left;
  }
  .hero--figur .hero__text { margin-inline: 0; }
  .hero--figur .hero__cta,
  .hero--figur .hero__belege { justify-content: flex-start; }
}
.hero__figur { display: none; }
@media (min-width: 900px) {
  .hero__figur { display: block; }
  .hero__figur img { width: 100%; height: auto; }
}
.hero h1 { color: #fff; margin-bottom: var(--sp-3); }
.hero__text {
  font-size: clamp(1.0625rem, 1rem + .4vw, 1.1875rem);
  line-height: 1.6; color: rgba(255,255,255,.82);
  max-width: 62ch; margin-inline: auto; margin-bottom: var(--sp-6);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero__cta .btn { flex: 1 1 auto; }
@media (min-width: 520px) { .hero__cta .btn { flex: 0 0 auto; } }

.hero__belege {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px clamp(18px, 3vw, 34px);
  list-style: none; margin-top: var(--sp-6);
  font-size: .875rem; color: rgba(255,255,255,.74);
}
.hero__belege li { display: inline-flex; align-items: center; gap: 8px; }
.hero__belege .sym { color: var(--rot-hell); }

/* Seitenkopf der Unterseiten — flacher, mit rotem Keil rechts */
.seitenkopf {
  position: relative; isolation: isolate;
  background: var(--nacht); color: #fff;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(40px, 5.5vw, 64px);
  text-align: center; overflow: hidden;
}
.seitenkopf::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(218,34,52,.30) 0%, rgba(16,16,16,0) 58%),
    linear-gradient(to bottom, #191919 0%, #101010 100%);
}
.seitenkopf__bild { position: absolute; inset: 0; z-index: -2; }
.seitenkopf__bild img { width: 100%; height: 100%; object-fit: cover; }
.seitenkopf--bild::before {
  background:
    linear-gradient(to bottom, rgba(16,16,16,.74) 0%, rgba(16,16,16,.60) 50%, rgba(16,16,16,.84) 100%),
    radial-gradient(90% 120% at 100% 0%, rgba(218,34,52,.26) 0%, rgba(16,16,16,0) 60%);
}
.seitenkopf h1 { color: #fff; }
.seitenkopf__sub {
  margin-top: var(--sp-3); margin-inline: auto;
  max-width: 58ch; font-size: 1.0625rem; color: rgba(255,255,255,.80);
}

/* Brotkrümel */
.krumen {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 6px;
  margin-top: var(--sp-5);
  font-size: .8125rem; color: rgba(255,255,255,.62);
}
.krumen li { display: flex; align-items: center; gap: 6px; }
.krumen li:not(:last-child)::after { content: '›'; opacity: .6; }
.krumen a { text-decoration: none; }
@media (hover: hover) { .krumen a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; } }

/* --------------------------------------------------------------------------
   9. Partner-Laufband
   Zwei identische Spuren laufen nebeneinander; sobald die erste vollständig
   durchgelaufen ist, steht die zweite exakt an ihrer Stelle — dadurch wirkt
   es endlos, ohne dass JavaScript nachhelfen muss.
   -------------------------------------------------------------------------- */
.laufband {
  border-block: 1px solid var(--linie);
  background: var(--papier);
  padding-block: var(--sp-5);
  overflow: hidden;
}
.laufband__titel {
  text-align: center; margin-bottom: var(--sp-4);
  font-size: .75rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-50);
}
.laufband__fenster {
  position: relative;
  /* Weiche Kanten links und rechts, damit die Logos nicht abgeschnitten
     wirken, sondern aus- und einblenden */
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.laufband__spur {
  display: flex; width: max-content;
  animation: laufband 46s linear infinite;
}
.laufband__fenster:hover .laufband__spur,
.laufband__fenster:focus-within .laufband__spur { animation-play-state: paused; }
.laufband__spur li {
  flex: none; list-style: none;
  display: grid; place-items: center;
  width: clamp(150px, 16vw, 200px); height: 64px;
  padding-inline: clamp(14px, 2vw, 26px);
}
.laufband__spur img {
  max-width: 100%; max-height: 52px;
  width: auto; height: auto; object-fit: contain;
  /* Farbig, wie vom Kunden gewünscht — die Marken sollen erkennbar sein */
}
@keyframes laufband { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .laufband__spur { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  /* Ohne Bewegung steht das Band still. Die zweite, doppelte Spur
     entfällt dann — sonst stünde jedes Logo zweimal da.
     Die Zahl ist die Anzahl der Partner + 1 (siehe PARTNER in teile.py). */
  .laufband__spur li:nth-child(n+21) { display: none; }
  .laufband__fenster { mask-image: none; -webkit-mask-image: none; }
}

/* --------------------------------------------------------------------------
   10. Gegenüberstellung — was oft fehlt / unser Ansatz
   -------------------------------------------------------------------------- */
.gegenueber { display: grid; gap: var(--sp-4); }
@media (min-width: 900px) { .gegenueber { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }
.gkarte {
  border-radius: var(--radius-gross);
  padding: clamp(24px, 3vw, 38px);
  background: var(--flaeche);
  border: 1px solid var(--linie);
}
.gkarte--dunkel { background: var(--nacht); border-color: transparent; color: #fff; }
.gkarte--dunkel h3 { color: #fff; }
.gkarte > .kicker { margin-bottom: var(--sp-1); }
.gkarte--dunkel > .kicker { color: var(--rot-hell); }
.gkarte > h3 { margin-bottom: var(--sp-5); font-size: clamp(1.25rem, 1.1rem + .7vw, 1.5rem); }
.gliste { list-style: none; display: grid; gap: var(--sp-4); }
.gliste li { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; align-items: start; }
.gliste li > div { min-width: 0; overflow-wrap: break-word; }
.gliste .sym-kasten {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--papier); border: 1px solid var(--linie);
  color: var(--rot);
}
.gkarte--dunkel .sym-kasten { background: rgba(255,255,255,.07); border-color: var(--linie-dunkel); color: var(--rot-hell); }
.gliste b { display: block; font-weight: 600; margin-bottom: 3px; font-size: .9688rem; }
.gliste p { margin: 0; font-size: .9375rem; color: var(--ink-70); }
.gkarte--dunkel .gliste p { color: rgba(255,255,255,.70); }

/* --------------------------------------------------------------------------
   10b. Zeitleiste — 143 Jahre Firmengeschichte
   Der Block, der diesen Auftritt von anderen unterscheidet: keine
   Gegenüberstellung von Problem und Lösung, sondern die eigene Geschichte
   als durchgehende Linie. Waagerecht ab 900px, darunter senkrecht.
   -------------------------------------------------------------------------- */
.zeitleiste { position: relative; list-style: none; display: grid; gap: var(--sp-6); }
@media (min-width: 900px) {
  .zeitleiste { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
  /* Die durchgehende Linie liegt hinter den Punkten */
  .zeitleiste::before {
    content: ''; position: absolute; left: 0; right: 0; top: 11px;
    height: 2px;
    background: linear-gradient(to right,
      rgba(218,34,52,0) 0%, var(--rot) 8%, var(--rot) 92%, rgba(218,34,52,0) 100%);
  }
}
.station { position: relative; padding-top: 34px; }
.station::before {
  content: ''; position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--papier); border: 3px solid var(--rot);
}
.abschnitt--dunkel .station::before { background: var(--nacht); }
/* Senkrechte Führung auf schmalen Schirmen */
@media (max-width: 899px) {
  .station { padding-top: 0; padding-left: 34px; }
  .station::before { top: 4px; }
  .station::after {
    content: ''; position: absolute; left: 7px; top: 22px; bottom: -34px;
    width: 2px; background: rgba(218,34,52,.28);
  }
  .station:last-child::after { display: none; }
}
.station__jahr {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); font-weight: 700;
  letter-spacing: -.035em; line-height: 1;
  color: var(--rot); margin-bottom: 10px;
}
.abschnitt--dunkel .station__jahr { color: var(--rot-hell); }
.station h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.station p { font-size: .9375rem; color: var(--ink-70); margin: 0; }
.abschnitt--dunkel .station p { color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------------------
   11. Leistungskarten mit Umschalter
   -------------------------------------------------------------------------- */
.reiter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--sp-6); }
.reiter__knopf {
  min-height: 44px; padding: 10px 18px;
  border: 1px solid var(--linie-stark); border-radius: 999px;
  background: transparent; color: var(--ink-70);
  font-family: var(--font-text); font-size: .9375rem; font-weight: 500;
  cursor: pointer;
  transition: background .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease);
}
@media (hover: hover) { .reiter__knopf:hover { border-color: var(--ink); color: var(--ink); } }
.reiter__knopf[aria-selected='true'] {
  background: var(--nacht); border-color: var(--nacht); color: #fff;
}

.karten { display: grid; gap: var(--sp-4); }
@media (min-width: 640px)  { .karten { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .karten { grid-template-columns: repeat(3, 1fr); } }
.karten[hidden] { display: none; }
/* Vier gleichwertige Karten (Risiken auf den Leistungsseiten) — im
   Dreierraster bliebe sonst eine Karte allein in der zweiten Zeile. */
@media (min-width: 1100px) { .karten--vier { grid-template-columns: repeat(4, 1fr); } }
.karten--vier .karte__text { font-size: .875rem; }

.karte {
  display: flex; flex-direction: column;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .2s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}
@media (hover: hover) {
  .karte:hover { border-color: var(--linie-stark); box-shadow: var(--schatten); transform: translateY(-2px); }
}
.karte__bild { position: relative; aspect-ratio: 16 / 10; background: var(--flaeche); overflow: hidden; }
.karte__bild img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
@media (hover: hover) { .karte:hover .karte__bild img { transform: scale(1.04); } }
.karte__marke {
  position: absolute; top: 12px; right: 12px;
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 9px; background: rgba(255,255,255,.92); color: var(--rot);
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.karte__körper { padding: clamp(18px, 2vw, 26px); display: flex; flex-direction: column; flex: 1; }
.karte h3 { margin-bottom: 8px; }
.karte__text { font-size: .9375rem; color: var(--ink-70); margin-bottom: var(--sp-3); }
.karte__punkte { list-style: none; display: grid; gap: 7px; margin-bottom: var(--sp-4); }
.karte__punkte li {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 9px; align-items: start;
  font-size: .875rem; color: var(--ink-70); overflow-wrap: break-word;
}
.karte__punkte .sym { color: var(--rot); margin-top: 2px; }
.karte__mehr { margin-top: auto; }

/* Platzhalterfläche, solange kein Foto vorliegt */
.platz {
  position: relative; display: grid; place-items: center;
  background-color: var(--flaeche);
  background-image:
    linear-gradient(to right, var(--linie) 1px, transparent 1px),
    linear-gradient(to bottom, var(--linie) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--ink-50);
}
.platz__text {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px; background: var(--papier);
  border: 1px solid var(--linie); border-radius: 7px;
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; text-align: center;
}
.platz__text .sym { color: var(--rot); }
.platz--16x10 { aspect-ratio: 16 / 10; }
.platz--4x3 { aspect-ratio: 4 / 3; }
.platz--3x2 { aspect-ratio: 3 / 2; }
.platz--4x5 { aspect-ratio: 4 / 5; }
.platz--hoch { aspect-ratio: 3 / 4; }

/* --------------------------------------------------------------------------
   12. Merkmal-Kacheln (Symbol, Titel, Text)
   -------------------------------------------------------------------------- */
.merkmale { display: grid; gap: var(--sp-4); }
@media (min-width: 640px)  { .merkmale { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .merkmale { grid-template-columns: repeat(3, 1fr); } }
.merkmal {
  background: var(--papier); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); padding: clamp(20px, 2.2vw, 28px);
  /* Spalte, damit sich eine Schaltfläche am Fuß verankern lässt */
  display: flex; flex-direction: column;
}
/* Vier gleichwertige Karten (offene Stellen) — im Dreierraster bliebe eine
   allein in der zweiten Zeile. Zu zweit stehen sie paarweise und haben
   zugleich mehr Breite für den Fließtext. */
@media (min-width: 700px) { .merkmale--zwei { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .merkmale--zwei { grid-template-columns: repeat(2, 1fr); } }
/* Die Schaltfläche sitzt unabhängig von der Textlänge immer unten —
   sonst tanzen die Knöpfe über die Reihe hinweg. */
/* Höhere Spezifität als .merkmal p { margin: 0 } — sonst greift das auto nicht */
.merkmal .merkmal__fuss { margin-top: auto; margin-bottom: 0; padding-top: var(--sp-5); }
.merkmal__fuss .btn { width: 100%; }
@media (min-width: 480px) { .merkmal__fuss .btn { width: auto; } }
.abschnitt--flaeche .merkmal { background: var(--papier); }
.merkmal .sym-kasten {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 10px; background: rgba(218,34,52,.08); color: var(--rot);
  margin-bottom: var(--sp-3);
}
.merkmal h3 { margin-bottom: 8px; font-size: 1.0625rem; }
.merkmal p { font-size: .9375rem; color: var(--ink-70); margin: 0; }

/* --------------------------------------------------------------------------
   13. Referenzwand
   -------------------------------------------------------------------------- */
.refwand {
  display: grid; gap: var(--sp-5) var(--sp-4);
  grid-template-columns: repeat(2, 1fr);
  list-style: none; align-items: center;
}
@media (min-width: 560px)  { .refwand { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .refwand { grid-template-columns: repeat(4, 1fr); } }
.refwand li { display: grid; place-items: center; min-height: 76px; }
.refwand img {
  max-width: 148px; max-height: 52px; width: auto; height: auto; object-fit: contain;
  filter: grayscale(1) contrast(1.15); opacity: .78;
  transition: filter .28s var(--ease), opacity .28s var(--ease);
}
@media (hover: hover) { .refwand li:hover img { filter: grayscale(0); opacity: 1; } }
.refwand__letzte {
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-50); text-align: center;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. Ablauf in Schritten
   -------------------------------------------------------------------------- */
.schritte { display: grid; gap: var(--sp-4); counter-reset: schritt; list-style: none; }
@media (min-width: 768px)  { .schritte { grid-template-columns: repeat(3, 1fr); } }
.schritt {
  position: relative;
  background: var(--papier); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); padding: clamp(22px, 2.4vw, 30px);
}
.schritt__zahl {
  display: block; font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem); font-weight: 700;
  letter-spacing: -.04em; line-height: 1;
  color: rgba(218,34,52,.22); margin-bottom: var(--sp-3);
}
.schritt__sym { position: absolute; top: clamp(22px, 2.4vw, 30px); right: clamp(22px, 2.4vw, 30px); color: rgba(218,34,52,.30); }
.schritt .kicker { margin-bottom: 6px; }
.schritt h3 { margin-bottom: 10px; font-size: 1.0625rem; }
.schritt p { font-size: .9375rem; color: var(--ink-70); margin: 0; }

/* --------------------------------------------------------------------------
   15. Zwei Spalten Text mit Bild (Ansatz-Block)
   -------------------------------------------------------------------------- */
.zweispalt { display: grid; gap: var(--sp-6); align-items: start; }
.zweispalt > * { min-width: 0; }
@media (min-width: 960px) {
  .zweispalt { grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); }
  .zweispalt--bild-links .zweispalt__bild { order: -1; }
}
.zweispalt__bild img, .zweispalt__bild .platz {
  width: 100%; border-radius: var(--radius-gross);
}
.zweispalt__bild img { aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 959px) { .zweispalt__bild img { aspect-ratio: 3 / 2; } }

.mini-merkmale { display: grid; gap: var(--sp-4); margin-top: var(--sp-5); }
@media (min-width: 560px) { .mini-merkmale { grid-template-columns: 1fr 1fr; } }
.mini-merkmal .sym-kasten {
  display: grid; place-items: center; width: 34px; height: 34px;
  border-radius: 9px; background: rgba(218,34,52,.08); color: var(--rot);
  margin-bottom: 12px;
}
.mini-merkmal b { display: block; font-weight: 600; margin-bottom: 5px; font-size: .9688rem; }
.mini-merkmal p { font-size: .9063rem; color: var(--ink-70); margin: 0; }

/* Ohne Bildspalte läuft der Ansatz-Block einspaltig; die Merkmale stehen
   dann zu viert nebeneinander statt zu zweit. */
.einspalt { max-width: 76ch; }
@media (min-width: 900px) {
  .mini-merkmale--vier { grid-template-columns: repeat(4, 1fr); }
  .einspalt { max-width: none; }
}

/* Karten ohne Bild tragen ein Symbol über der Überschrift */
.karte__körper > .sym-kasten {
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 10px; background: rgba(218,34,52,.08); color: var(--rot);
  margin-bottom: var(--sp-3);
}

/* Aufzählung mit Haken */
.haken { list-style: none; display: grid; gap: 11px; }
.haken li {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 11px; align-items: start;
  font-size: .9688rem;
  overflow-wrap: break-word;
}
.haken .sym { color: var(--rot); margin-top: 3px; }
@media (min-width: 640px) { .haken--zwei { grid-template-columns: 1fr 1fr; column-gap: var(--sp-5); } }

/* --------------------------------------------------------------------------
   16. Leistungsumfang — Karten mit ausklappbaren Zeilen
   -------------------------------------------------------------------------- */
.umfang { display: grid; gap: var(--sp-4); }
@media (min-width: 640px)  { .umfang { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .umfang { grid-template-columns: repeat(4, 1fr); } }
.ukarte {
  background: var(--papier); border: 1px solid var(--linie);
  border-radius: var(--radius-gross); overflow: hidden;
  display: flex; flex-direction: column;
}
.ukarte__bild { aspect-ratio: 16 / 11; background: var(--flaeche); }
.ukarte__bild img { width: 100%; height: 100%; object-fit: cover; }
.ukarte__körper { padding: 18px; }
.ukarte h3 { font-size: 1rem; margin-bottom: 12px; }
.ukarte details {
  border-top: 1px solid var(--linie);
}
.ukarte details summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 44px; padding: 10px 0;
  font-size: .875rem; color: var(--ink-70);
  cursor: pointer; list-style: none;
}
.ukarte details summary::-webkit-details-marker { display: none; }
.ukarte details summary .hauptnav__pfeil { width: 14px; height: 14px; color: var(--ink-50); transition: transform .24s var(--ease); }
.ukarte details[open] summary .hauptnav__pfeil { transform: rotate(180deg); }
.ukarte details p { font-size: .875rem; color: var(--ink-70); padding-bottom: 12px; margin: 0; }

/* Prozessgrafik in Originalgröße — sie trägt ihren Text im Bild und wird
   deshalb nie hochskaliert. Die Aussage steht daneben zusätzlich als Text. */
.grafik { margin: 0; }
.grafik picture { display: block; }
.grafik img {
  width: 100%; max-width: 600px; height: auto;
  border: 1px solid var(--linie); border-radius: var(--radius); background: #fff;
}
.grafik figcaption { margin-top: var(--sp-2); font-size: .875rem; color: var(--ink-70); max-width: 600px; }

/* --------------------------------------------------------------------------
   16b. Preistabelle
   Bewusst eine echte Tabelle statt eines PDF-Downloads: So findet Google die
   Preise, sie sind am Telefon lesbar und für Vorleseprogramme zugänglich.
   Auf schmalen Schirmen wird jede Zeile zu einem kleinen Block, damit nichts
   quer scrollen muss.
   -------------------------------------------------------------------------- */
.preise { margin-bottom: var(--sp-8); }
.preise:last-child { margin-bottom: 0; }
.preise__kopf { margin-bottom: var(--sp-4); }
.preise__kopf h3 { margin-bottom: 6px; }
.preise__kopf p { font-size: .9375rem; color: var(--ink-70); margin: 0; max-width: 62ch; }

.preistabelle { width: 100%; border-collapse: collapse; }
.preistabelle th {
  text-align: left; font-family: var(--font-text);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-50);
  border-bottom: 2px solid var(--ink); padding: 0 0 10px;
}
.preistabelle th:last-child, .preistabelle td:last-child { text-align: right; }
.preistabelle td {
  border-bottom: 1px solid var(--linie);
  padding: 13px 0; font-size: .9688rem; vertical-align: top;
}
.preistabelle .bezeichnung { padding-right: var(--sp-3); }
.preistabelle .einheit { display: block; font-size: .8125rem; color: var(--ink-50); margin-top: 2px; }
.preistabelle .betrag { font-weight: 600; white-space: nowrap; }
/* Fortsetzungszeile einer Position, etwa „… mit Wollpflegeausrüstung" */
.preistabelle .fort .bezeichnung { padding-left: var(--sp-3); color: var(--ink-70); }

@media (max-width: 639px) {
  .preistabelle, .preistabelle tbody, .preistabelle tr, .preistabelle td { display: block; width: 100%; }
  .preistabelle thead { display: none; }
  .preistabelle tr { border-bottom: 1px solid var(--linie); padding: 12px 0; }
  .preistabelle td { border: 0; padding: 0; }
  .preistabelle td:last-child { text-align: left; margin-top: 4px; }
  .preistabelle .fort .bezeichnung { padding-left: var(--sp-2); }
}

/* --------------------------------------------------------------------------
   17. Häufige Fragen — zweispaltig als Text, keine Klappen
   -------------------------------------------------------------------------- */
.fragen { display: grid; gap: var(--sp-6) var(--sp-8); }
@media (min-width: 820px) { .fragen { grid-template-columns: 1fr 1fr; } }
.frage h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.frage p { font-size: .9375rem; color: var(--ink-70); margin: 0; }

/* --------------------------------------------------------------------------
   18. Kennzahlen
   -------------------------------------------------------------------------- */
.zahlen { display: grid; gap: var(--sp-5); list-style: none; }
@media (min-width: 560px)  { .zahlen { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .zahlen { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); } }
.zahl__wert {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.25rem); font-weight: 700;
  letter-spacing: -.04em; line-height: 1; color: var(--rot);
  margin-bottom: 10px;
}
.abschnitt--dunkel .zahl__wert { color: var(--rot-hell); }
.zahl__text { font-size: .9375rem; color: var(--ink-70); max-width: 26ch; }
.abschnitt--dunkel .zahl__text { color: rgba(255,255,255,.72); }

/* --------------------------------------------------------------------------
   19. CTA-Band
   -------------------------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, #C41F2F 0%, var(--rot) 48%, #E8394B 100%);
  color: #fff; text-align: center;
  padding-block: clamp(48px, 6vw, 80px);
}
.cta h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta p {
  margin-top: var(--sp-3); margin-inline: auto;
  max-width: 56ch; color: rgba(255,255,255,.90); font-size: 1.0625rem;
}
.cta .aktionen { margin-top: var(--sp-6); }
.cta__tel {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.125rem; color: #fff; text-decoration: none;
  min-height: 48px; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.4);
}
@media (hover: hover) { .cta__tel:hover { border-bottom-color: #fff; } }

/* --------------------------------------------------------------------------
   20. Fußbereich
   -------------------------------------------------------------------------- */
.fuss { background: var(--nacht); color: #fff; }
.fuss__raster {
  display: grid; gap: var(--sp-6);
  padding-block: var(--sp-10) var(--sp-8);
}
@media (min-width: 700px)  { .fuss__raster { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .fuss__raster { grid-template-columns: 1fr 1fr 1fr 1.2fr; gap: var(--sp-5); } }
.fuss h2, .fuss h3 {
  font-family: var(--font-text); font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--dim);
  margin-bottom: var(--sp-3);
}
.fuss a { color: rgba(255,255,255,.82); text-decoration: none; }
@media (hover: hover) { .fuss a:hover { color: #fff; } }
.fuss__links { list-style: none; display: grid; gap: 2px; font-size: .9063rem; }
.fuss__links a {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 32px; padding-block: 2px;
}
.fuss__links .sym { color: rgba(218,34,52,.85); }

.fuss__marke img { width: 148px; margin-bottom: var(--sp-4); }
.fuss__adresse { font-style: normal; display: grid; gap: 10px; font-size: .9063rem; color: rgba(255,255,255,.82); }
.fuss__adresse .zeile { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px; align-items: start; }
/* Telefon und E-Mail sind eigenständige Ziele und brauchen Höhe */
.fuss__adresse a { display: inline-flex; align-items: center; min-height: 32px; }
.fuss__adresse .sym { color: var(--rot-hell); margin-top: 3px; }

.fuss__sozial { display: flex; gap: 9px; list-style: none; margin-top: var(--sp-4); }
.fuss__sozial a {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1px solid var(--linie-dunkel); border-radius: 9px;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
@media (hover: hover) { .fuss__sozial a:hover { border-color: var(--rot); background: rgba(218,34,52,.14); } }

/* Ortsband für die lokale Sichtbarkeit */
.fuss__orte {
  border-top: 1px solid var(--linie-dunkel);
  padding-block: var(--sp-5);
}
.fuss__orte h2 { margin-bottom: var(--sp-3); }
.fuss__orte ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px 18px;
  font-size: .8125rem; color: rgba(255,255,255,.62);
}
.fuss__orte a { color: rgba(255,255,255,.62); }
.fuss__orte li { display: inline-flex; align-items: center; }
/* 24×24 ist das Mindestmaß aus WCAG 2.5.8; mit 34px liegen wir sicher darüber,
   auf Zeigegeräten ohne feine Auflösung greifen zusätzlich die 44px unten. */
.fuss__orte a { min-height: 34px; display: inline-flex; align-items: center; }

.fuss__unten {
  border-top: 1px solid var(--linie-dunkel);
  padding-block: var(--sp-4);
  display: grid; gap: 12px; justify-items: center; text-align: center;
  font-size: .8438rem; color: var(--dim);
}
@media (min-width: 768px) {
  .fuss__unten { grid-template-columns: 1fr auto; justify-items: start; text-align: left; align-items: center; }
}
.fuss__recht { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; align-items: center; }
@media (min-width: 768px) { .fuss__recht { justify-content: flex-start; } }
.fuss__recht a { min-height: 32px; display: inline-flex; align-items: center; }
.wowobot { color: var(--dim); }
.wowobot a { color: #22b8e0; font-weight: 500; }
@media (hover: hover) { .wowobot a:hover { color: #22b8e0; text-decoration: underline; text-underline-offset: 3px; } }

/* --------------------------------------------------------------------------
   21. Formular
   -------------------------------------------------------------------------- */
.formular { display: grid; gap: var(--sp-3); }
.feld { display: grid; gap: 7px; }
.feld label { font-size: .8125rem; font-weight: 600; letter-spacing: .06em; color: var(--ink-70); }
.feld .pflicht { color: var(--rot-dunkel); }
.feld input, .feld select, .feld textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  font-family: var(--font-text); font-size: 1rem; line-height: 1.5; color: var(--ink);
  background: var(--papier); border: 1px solid var(--linie-stark); border-radius: 8px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.feld textarea { min-height: 140px; resize: vertical; }
.feld select {
  appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234A4A4A' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px;
}
.feld input:focus, .feld select:focus, .feld textarea:focus {
  border-color: var(--rot); box-shadow: 0 0 0 3px rgba(218,34,52,.14); outline: none;
}
.feld input[aria-invalid='true'], .feld textarea[aria-invalid='true'] { border-color: #B02A1E; }
.feld__fehler { display: none; font-size: .875rem; color: #8E2118; }
.feld.hat-fehler .feld__fehler { display: block; }
.feld--haken { grid-template-columns: auto 1fr; gap: 12px; align-items: start; padding-top: var(--sp-1); }
.feld--haken input { width: 24px; height: 24px; min-height: 0; margin: 2px 0 0; padding: 0; accent-color: var(--rot); }
.feld--haken label { font-size: .9375rem; font-weight: 400; letter-spacing: 0; color: var(--ink-70); line-height: 1.55; }
.feld--haken .feld__fehler { grid-column: 1 / -1; }
.formular__reihe { display: grid; gap: var(--sp-3); }
@media (min-width: 560px) { .formular__reihe { grid-template-columns: 1fr 1fr; } }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formular__hinweis { font-size: .875rem; color: var(--ink-70); }
.formular__status {
  padding: 14px 16px; border: 1px solid var(--linie-stark);
  border-left: 3px solid var(--rot); border-radius: 8px;
  background: var(--flaeche); font-size: .9375rem;
}
.formular__status:empty { display: none; }

/* Datenliste (Kontakt, Impressum) */
.datenliste { list-style: none; display: grid; }
.datenliste > li { display: grid; gap: 3px; padding: 14px 0; border-bottom: 1px solid var(--linie); min-width: 0; overflow-wrap: break-word; }
.datenliste > li:first-child { border-top: 1px solid var(--linie); }
@media (min-width: 480px) { .datenliste > li { grid-template-columns: 160px 1fr; gap: 18px; align-items: baseline; } }
.datenliste dt, .datenliste__k {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-50);
}
.datenliste dd, .datenliste__v { margin: 0; }
.datenliste a { text-decoration: none; }
@media (hover: hover) { .datenliste a:hover { color: var(--rot-dunkel); text-decoration: underline; text-underline-offset: 3px; } }

/* --------------------------------------------------------------------------
   22. Team
   -------------------------------------------------------------------------- */
.team { display: grid; gap: var(--sp-5); }
@media (min-width: 640px)  { .team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team { grid-template-columns: repeat(3, 1fr); } }
.person__bild { border-radius: var(--radius-gross); overflow: hidden; background: var(--flaeche); margin-bottom: var(--sp-3); }
.person__bild img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.person h3 { margin-bottom: 3px; }
.person__rolle { font-size: .9375rem; color: var(--ink-70); }

/* --------------------------------------------------------------------------
   23. Hinweisblock, Ortschips, Kleinigkeiten
   -------------------------------------------------------------------------- */
.hinweis {
  border: 1px solid var(--linie-stark); border-left: 3px solid var(--rot);
  border-radius: 10px; background: var(--flaeche);
  padding: clamp(18px, 2.4vw, 28px);
}
.hinweis h2, .hinweis h3 { margin-bottom: 10px; }
.hinweis p { color: var(--ink-70); }

.orte { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; }
.orte li {
  border: 1px solid var(--linie-stark); border-radius: 999px;
  font-size: .875rem; color: var(--ink-70);
}
.orte li:not(:has(a)) { padding: 9px 15px; }
.orte a { display: flex; align-items: center; min-height: 44px; padding: 0 15px; text-decoration: none; }
@media (hover: hover) { .orte a:hover { color: var(--rot-dunkel); } }

.prosa > * + * { margin-top: 1.05em; }
.prosa p { max-width: 68ch; }
.prosa h3 { margin-top: 1.8em; margin-bottom: .5em; }
.prosa h3:first-child { margin-top: 0; }

.vh {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}
.mt-3 { margin-top: var(--sp-3); } .mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); } .mt-8 { margin-top: var(--sp-8); }
.mb-0 { margin-bottom: 0; }
.dim { color: var(--ink-70); }
.abschnitt--dunkel .dim { color: rgba(255,255,255,.72); }

/* Fehlerseite */
.fehler { min-height: 62svh; display: grid; align-content: center; text-align: center; padding-block: var(--sp-12); }
.fehler__code {
  font-family: var(--font-display); font-size: clamp(3.5rem, 2rem + 9vw, 7rem);
  font-weight: 700; letter-spacing: -.05em; line-height: .9;
  color: var(--rot); margin-bottom: var(--sp-3);
}

/* --------------------------------------------------------------------------
   24. Einblenden beim Scrollen — nur mit JavaScript, einmalig
   -------------------------------------------------------------------------- */
.js .zeig { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.js .zeig.ist-da { opacity: 1; transform: none; }
.js .zeig:nth-child(2) { transition-delay: 60ms; }
.js .zeig:nth-child(3) { transition-delay: 120ms; }
.js .zeig:nth-child(4) { transition-delay: 180ms; }
.js .zeig:nth-child(n+5) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .zeig { opacity: 1 !important; transform: none !important; }
}

/* --------------------------------------------------------------------------
   25. Touch — Mindestgrößen und Rückmeldung beim Antippen
   -------------------------------------------------------------------------- */
@media (pointer: coarse), (max-width: 1079px) {
  .marke { min-height: 44px; }
  .tlink, .cta__tel, .krumen a, .fuss__recht a, .fuss__links a,
  .wowobot a, .datenliste a { min-height: 44px; display: inline-flex; align-items: center; }
  .prosa a:not(.btn):not(.tlink), .rte a:not(.btn):not(.tlink),
  .feld--haken label a { min-height: 0; display: inline; }
}
@media (hover: none) {
  .karte:active, .merkmal:active, .schritt:active,
  .fuss__links a:active, .mobilnav__link:active, .mobilnav__sub a:active,
  .tlink:active, .datenliste a:active { opacity: .58; transition: opacity .08s var(--ease); }
  .btn:active, .burger:active, .reiter__knopf:active { transform: scale(.97); transition: transform .08s var(--ease); }
}

@media print {
  .kopf, .mobilnav, .laufband, .cta, .fuss__sozial, .burger { display: none !important; }
  body { color: #000; background: #fff; }
  .js .zeig { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: ' (' attr(href) ')'; font-size: .8em; }
}

/* Sicherheitsfrage im Kontaktformular. Bleibt versteckt, bis das Skript die
   Aufgabe geholt hat — sonst stünde dort ohne JavaScript ein leeres Feld,
   das niemand ausfüllen kann. */
.feld--rechnen input { max-width: 9rem; }
.feld--rechnen strong { font-variant-numeric: tabular-nums; white-space: nowrap; }
