/* ==========================================================================
   Karosseriebau Meladinis – site.css
   Weiß primär, Blau als Akzent. Eine Schriftfamilie: Archivo (Variable Font,
   Breite + Stärke) – breit und kräftig für Überschriften, normal für Text.
   ========================================================================== */

/* ---------- Fonts ----------
   Archivo liegt vollständig lokal in ../fonts/ (SIL Open Font License, siehe
   fonts/OFL-Archivo.txt). Es wird kein Google-Server kontaktiert. */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('../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 800;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('../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: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url('../fonts/archivo-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cinzel-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: 'Cinzel';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/cinzel-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;
}

/* ---------- Tokens ---------- */
:root {
  /* Farben – ausschließlich Weiß- und Blautöne plus neutrale Textfarben */
  --weiss: #ffffff;
  --kalk: #f5f7fb;
  --kalk-tief: #eaf0f8;
  --blau: #1457b8;
  --blau-hell: #2f74dd;
  --blau-zart: #e9f1fc;
  --blau-tief: #0e2a54;
  --blau-nacht: #091d3b;
  --anthrazit: #142033;
  --text: #3a4556;
  --grau: #5e6673;
  --linie: #e2e8f0;
  --linie-stark: #cfd9e6;

  --ff-display: 'Archivo', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-text: 'Archivo', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-hero: 'Cinzel', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* Raster */
  --shell: 1220px;
  --gut: clamp(20px, 4vw, 40px);
  --sek: clamp(72px, 9vw, 128px);

  /* Radien – ein System für alle Bausteine */
  --r-s: 4px;
  --r-m: 6px;
  --r-l: 8px;
  --r-pill: 4px;

  /* Tiefe – weiche, neutrale Schatten */
  --schatten-1: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 8px rgba(15, 23, 42, .04);
  --schatten-2: 0 1px 2px rgba(15, 23, 42, .04), 0 14px 34px -10px rgba(15, 23, 42, .14);
  --schatten-3: 0 2px 6px rgba(15, 23, 42, .05), 0 32px 64px -22px rgba(15, 23, 42, .28);
  /* Alt-Namen, falls noch irgendwo referenziert */
  --schatten: var(--schatten-2);
  --schatten-hoch: var(--schatten-3);

  /* Bewegung – eine Kurve, kurze Dauer */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-aus: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--anthrazit);
  background: var(--weiss);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blau); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blau-tief); }

h1, h2, h3, .display {
  font-family: var(--ff-display);
  font-weight: 760;
  font-stretch: 112%;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  color: var(--blau-tief);
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.25rem); letter-spacing: -.028em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.26rem); font-weight: 700; font-stretch: 106%; letter-spacing: -.01em; line-height: 1.25; }
h4 { font-family: var(--ff-text); font-size: 1.02rem; font-weight: 700; margin: 0 0 .4em; color: var(--blau-tief); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 650; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.shell { width: min(100% - 2 * var(--gut), var(--shell)); margin-inline: auto; }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blau); color: #fff; padding: 12px 18px; font-weight: 600; border-radius: var(--r-s);
}
.skip:focus { left: 12px; top: 12px; color: #fff; }

/* ---------- Eyebrow: Überzeile – schlichter Text mit kurzem blauem Strich ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-text); font-size: .78rem; font-weight: 700;
  letter-spacing: .19em; text-transform: uppercase; line-height: 1.3;
  color: var(--blau);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px; background: currentColor; flex: none;
}
.eyebrow--hell { color: #9dc2ff; }

.lead { font-size: clamp(1.04rem, 1.35vw, 1.16rem); line-height: 1.62; color: var(--text); max-width: 60ch; }
.muted { color: var(--grau); }

/* ---------- Buttons ----------
   Pille; Pfeil-Icons sitzen in einem eigenen Kreis und schieben sich beim
   Hover leicht nach rechts – signalisiert "weiter". */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 50px;
  font-family: var(--ff-text); font-size: .95rem; font-weight: 650; letter-spacing: .005em;
  line-height: 1.2; text-align: center;
  padding: 13px 24px; border: 1.5px solid transparent; border-radius: var(--r-pill);
  text-decoration: none; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
    border-color .25s var(--ease), box-shadow .25s var(--ease), transform .2s var(--ease);
}
.btn:active { transform: scale(.98); }
.btn svg {
  width: 32px; height: 32px; padding: 8px; flex: none;
  margin: -6px -14px -6px 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .16);
  transition: transform .3s var(--ease-aus), background-color .25s var(--ease);
}
.btn:hover svg { transform: translateX(3px); }

.btn--primar { background: var(--blau); color: #fff; box-shadow: 0 1px 2px rgba(15, 23, 42, .1), 0 8px 20px -8px rgba(20, 87, 184, .55); }
.btn--primar:hover { background: var(--blau-tief); color: #fff; }

.btn--linie { background: #fff; color: var(--blau-tief); border-color: var(--linie-stark); }
.btn--linie svg { background: var(--blau-zart); color: var(--blau); }
.btn--linie:hover { border-color: var(--blau); color: var(--blau); box-shadow: var(--schatten-1); }

.btn--weiss { background: #fff; color: var(--blau-tief); }
.btn--weiss svg { background: var(--blau-zart); color: var(--blau); }
.btn--weiss:hover { background: var(--blau-zart); color: var(--blau-tief); }

.btn--geist { border-color: rgba(255, 255, 255, .34); color: #fff; background: transparent; }
.btn--geist:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .btn, .btn svg { transition: none; }
  .btn:hover svg, .btn:active { transform: none; }
}

/* ---------- Kopfbereich ---------- */
.topbar {
  background: var(--blau-nacht); color: #cfe0f7;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: 6px 28px; align-items: center; padding: 9px 0; }
.topbar a { color: #cfe0f7; text-decoration: none; transition: color .2s var(--ease); }
.topbar a:hover { color: #fff; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; flex: none; color: #6ea3ef; }
.topbar__spacer { margin-left: auto; }
.topbar__zeit { color: #9dc2ff; }

.kopf {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(170%) blur(12px);
  -webkit-backdrop-filter: saturate(170%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.kopf.ist-geklebt { border-bottom-color: var(--linie); box-shadow: 0 10px 30px -18px rgba(15, 23, 42, .25); }
.kopf__inner { display: flex; align-items: center; gap: 20px; padding: 14px 0; transition: padding .3s var(--ease); position: relative; }
.kopf.ist-geklebt .kopf__inner { padding: 9px 0; }
.marke { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.marke img { height: 92px; width: auto; max-width: 480px; object-fit: contain; transition: height .3s var(--ease); }
.kopf.ist-geklebt .marke img { height: 64px; }

.nav { margin-left: auto; }
.nav__liste { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__liste a {
  display: block; position: relative; padding: 10px 14px; font-size: .94rem; font-weight: 600;
  color: var(--anthrazit); text-decoration: none;
  transition: color .4s var(--ease);
}
/* Unterstrich: aktuelle Seite dauerhaft, beim Hover wächst er von links nach rechts */
.nav__liste a:not(.btn)::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--blau); transform: scaleX(0); transform-origin: left center;
  transition: transform .6s var(--ease);
}
.nav__liste a:not(.btn):hover { color: var(--blau); }
.nav__liste a:not(.btn):hover::after,
.nav__liste a[aria-current='page']::after { transform: scaleX(1); }
.nav__liste a[aria-current='page'] { color: var(--blau); }
.kopf .btn { min-height: 44px; padding: 10px 20px; font-size: .9rem; }
.nav__liste .btn { display: none; }
.nav__liste a.btn--primar, .nav__liste a.btn--primar[aria-current='page'] { background: var(--blau); color: #fff; }
.nav__liste a.btn--primar:hover { background: var(--blau-tief); color: #fff; }

.burger {
  display: none; margin-left: auto; width: 46px; height: 46px;
  background: #fff; border: 1px solid var(--linie-stark); border-radius: var(--r-s); cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.burger:hover { border-color: var(--blau); }
.burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--blau-tief); position: relative; transition: background-color .2s var(--ease); }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px; background: var(--blau-tief);
  transition: transform .3s var(--ease-aus);
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded='true'] span { background: transparent; }
.burger[aria-expanded='true'] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded='true'] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .burger { display: inline-flex; }
  .kopf .btn--kopf { display: none; }
  .marke img { height: 62px; max-width: 320px; }
  .kopf.ist-geklebt .marke img { height: 50px; }
  .nav {
    position: absolute; left: calc(-1 * var(--gut)); right: calc(-1 * var(--gut)); top: 100%;
    background: #fff; border-top: 1px solid var(--linie);
    border-radius: 0 0 var(--r-l) var(--r-l);
    box-shadow: var(--schatten-3);
    display: none;
  }
  .nav.ist-offen { display: block; }
  .nav__liste { flex-direction: column; align-items: stretch; gap: 4px; padding: 12px var(--gut) 22px; }
  .nav__liste a { padding: 13px 16px; border-radius: var(--r-s); font-size: 1rem; }
  .nav__liste a:not(.btn)::after { left: 16px; right: auto; width: 28px; bottom: 8px; }
  .nav__liste li:last-child { margin-top: 10px; }
  .nav__liste .btn { display: inline-flex; width: 100%; }
}
@media (max-width: 620px) {
  .topbar__item--adresse, .topbar__zeit { display: none; }
  .topbar__inner { justify-content: center; gap: 6px 22px; font-size: .8rem; }
  .topbar__spacer { margin-left: 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--weiss); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch;
  min-height: min(72vh, 560px);
}
.hero__text {
  position: relative; z-index: 2; align-self: start;
  padding: clamp(58px, 5.6vw, 106px) clamp(24px, 4vw, 64px) clamp(72px, 6.8vw, 122px) 0;
}
.hero__grid > .hero__text { padding-left: max(var(--gut), calc((100vw - var(--shell)) / 2)); }
.hero h1 {
  font-family: var(--ff-hero); font-weight: 700; font-stretch: normal;
  font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.08; letter-spacing: .005em;
  margin-bottom: .45em; text-wrap: initial; hyphens: manual;
}
.hero h1 .zeile-akzent { color: var(--blau); display: block; }
.hero .lead { max-width: 56ch; }
.hero__aktionen { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
/* Buttons im Hero: kantig, Versalien */
.hero .btn {
  border-radius: 2px; text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  font-size: .92rem; padding: 15px 26px; min-height: 0;
}
.hero .btn svg { width: 17px; height: 17px; padding: 0; margin: 0; background: none; border-radius: 0; }
.hero .btn--primar { box-shadow: none; }
.hero .btn--linie { border: 2px solid var(--blau); color: var(--blau); }
.hero .btn--linie:hover { background: var(--blau); color: #fff; box-shadow: none; }

/* Vertrauens-Chips: die drei Kernfakten auf einen Blick */
.hero__fakten {
  display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 24px;
  padding-top: 18px; border-top: 1px solid var(--linie);
  font-size: .92rem; color: var(--grau);
}
.hero__fakt { display: inline-flex; align-items: center; gap: 9px; }
.hero__fakt svg { width: 18px; height: 18px; color: var(--blau); flex: none; }

.hero__bild {
  position: relative; min-height: 340px;
  margin-left: clamp(-420px, -24vw, -140px); z-index: 1;
}
.hero__bild img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%;
  -webkit-mask-image: linear-gradient(96deg,
    transparent 0%, rgba(0, 0, 0, .04) 18%, rgba(0, 0, 0, .14) 32%,
    rgba(0, 0, 0, .34) 46%, rgba(0, 0, 0, .62) 58%, rgba(0, 0, 0, .86) 70%, #000 82%);
  mask-image: linear-gradient(96deg,
    transparent 0%, rgba(0, 0, 0, .04) 18%, rgba(0, 0, 0, .14) 32%,
    rgba(0, 0, 0, .34) 46%, rgba(0, 0, 0, .62) 58%, rgba(0, 0, 0, .86) 70%, #000 82%);
}
/* Tönung + weicher Auslauf nach unten in die nächste Section */
.hero__bild::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 78%, rgba(255, 255, 255, .92) 100%),
    linear-gradient(96deg, rgba(255, 255, 255, .5) 0%, rgba(255, 255, 255, .2) 34%,
      rgba(20, 87, 184, .08) 62%, rgba(14, 42, 84, .22) 100%);
}

/* Siegel "Seit 1999" – Kreis, statisch */
.siegel {
  position: absolute; z-index: 3;
  right: clamp(18px, 3vw, 48px); bottom: clamp(40px, 6vw, 76px);
  width: clamp(118px, 11vw, 144px); aspect-ratio: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%; text-align: center; line-height: 1;
  box-shadow: var(--schatten-3);
}
/* innerer Ring als Prägung */
.siegel::before {
  content: ''; position: absolute; inset: 8px; border-radius: 50%;
  border: 1.5px dashed rgba(20, 87, 184, .45); pointer-events: none;
}
.siegel__oben, .siegel__unten {
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blau);
}
.siegel__jahr {
  display: block; margin: 5px 0 6px;
  font-stretch: 118%; font-weight: 780; font-size: clamp(1.55rem, 2.3vw, 1.95rem);
  letter-spacing: -.02em; color: var(--blau-tief);
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__grid > .hero__text { padding: 36px var(--gut) 48px; width: min(100%, var(--shell)); margin-inline: auto; }
  .hero__bild { min-height: 320px; order: -1; margin-left: 0; }
  .hero__bild::after { background: linear-gradient(180deg, rgba(14, 42, 84, .26) 0%, rgba(20, 87, 184, .06) 50%, rgba(255, 255, 255, .8) 100%); }
  .hero__bild img {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, .55) 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, .55) 82%, transparent 100%);
  }
  .siegel { top: auto; right: 12px; bottom: 12px; width: 82px; box-shadow: var(--schatten-2); }
  .siegel::before { inset: 5px; }
  .siegel__oben, .siegel__unten { font-size: .42rem; letter-spacing: .06em; }
  .siegel__jahr { font-size: 1.08rem; margin: 2px 0 3px; }
}
@media (max-width: 480px) {
  .hero__aktionen .btn { width: 100%; }
}

/* ---------- Sektionen ---------- */
.sek { padding: var(--sek) 0; }
.sek--kalk { background: var(--kalk); }
.sek--eng { padding: clamp(52px, 6vw, 80px) 0; }
.sek__kopf { max-width: 62ch; margin-bottom: clamp(36px, 4.5vw, 60px); }
.sek__kopf h2 { margin-bottom: .45em; }
.sek__kopf--mitte { margin-inline: auto; text-align: center; }
.sek__kopf--mitte .eyebrow { justify-content: center; }

/* ---------- Leistungs-Grid (Bento) ---------- */
.karten { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.karte--breit { grid-column: span 2; }
@media (max-width: 1100px) {
  .karten { grid-template-columns: repeat(2, 1fr); }
  .karte--breit { grid-column: span 2; }
}
@media (max-width: 640px) {
  .karten { grid-template-columns: 1fr; gap: 12px; }
  .karte--breit { grid-column: span 1; }
}
.karte {
  position: relative; display: flex; flex-direction: column;
  background: #fff; padding: 30px 28px 28px;
  border: 1px solid var(--linie); border-radius: var(--r-m);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--schatten-2); border-color: var(--linie-stark); }
.karte__marke { display: none; }
.karte__icon {
  width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 22px; flex: none;
  color: var(--blau); background: var(--blau-zart); border-radius: var(--r-m);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.karte__icon svg { width: 26px; height: 26px; }
.karte:hover .karte__icon { background: var(--blau); color: #fff; }
.karte h3 { margin-bottom: .45em; }
.karte p { font-size: .95rem; color: var(--grau); margin: 0; }
.karte__mehr {
  display: inline-flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 20px;
  font-size: .9rem; font-weight: 650; color: var(--blau); text-decoration: none; align-self: flex-start;
}
.karte__mehr svg {
  width: 28px; height: 28px; padding: 7px; border-radius: 50%;
  background: var(--blau-zart); color: var(--blau);
  transition: transform .3s var(--ease-aus), background-color .25s var(--ease), color .25s var(--ease);
}
.karte__mehr:hover svg, .karte:hover .karte__mehr svg { transform: translateX(3px); background: var(--blau); color: #fff; }
@media (min-width: 1101px) {
  .karte--breit { display: grid; grid-template-columns: auto 1fr; column-gap: 26px; align-items: start; }
  .karte--breit .karte__icon { grid-row: 1 / span 3; width: 60px; height: 60px; margin-bottom: 0; border-radius: var(--r-m); }
  .karte--breit .karte__icon svg { width: 30px; height: 30px; }
  .karte--breit h3 { font-size: 1.4rem; }
  .karte--breit p { max-width: 48ch; }
  .karte--breit .karte__mehr { margin-top: 0; }
}
/* Hervorgehobene Karte: das Kerngeschäft */
.karte--stark {
  border-color: transparent;
  background: radial-gradient(120% 90% at 100% 0%, rgba(47, 116, 221, .32), transparent 58%), var(--blau-tief);
}
.karte--stark:hover { border-color: transparent; box-shadow: 0 30px 60px -24px rgba(14, 42, 84, .55); }
.karte--stark h3 { color: #fff; }
.karte--stark p { color: #bcd2f0; }
.karte--stark .karte__icon { background: rgba(255, 255, 255, .12); color: #fff; }
.karte--stark:hover .karte__icon { background: #fff; color: var(--blau-tief); }
.karte--stark .karte__mehr { color: #fff; }
.karte--stark .karte__mehr svg { background: rgba(255, 255, 255, .14); color: #fff; }
.karte--stark:hover .karte__mehr svg { background: #fff; color: var(--blau-tief); }
@media (prefers-reduced-motion: reduce) { .karte, .karte:hover { transform: none; } }

/* ---------- Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.split > *, .check > *, .chef > *, .faq > *, .kontakt-split > * { min-width: 0; }
.split--gedreht .split__bild { order: 2; }
.split__bild { position: relative; }
.split__bild img {
  width: 100%; height: 100%; max-height: 480px; aspect-ratio: 5 / 4; object-fit: cover;
  border-radius: var(--r-l); box-shadow: var(--schatten-2);
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--gedreht .split__bild { order: 0; }
  .split__bild img { aspect-ratio: 16 / 10; }
}

/* ---------- Schaden-Check (interaktive Hotspots) ---------- */
.check { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.check__buehne { position: relative; border-radius: var(--r-l); overflow: hidden; background: var(--blau-tief); box-shadow: var(--schatten-2); }
.check__buehne img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.punkt {
  position: absolute; width: 38px; height: 38px; margin: -19px 0 0 -19px; border-radius: 50%;
  border: 2px solid #fff; background: var(--blau); color: #fff;
  font-family: var(--ff-text); font-weight: 700; font-size: .88rem;
  display: grid; place-items: center; cursor: pointer; padding: 0;
  box-shadow: 0 6px 18px rgba(9, 18, 32, .35);
  transition: transform .3s var(--ease-aus), background-color .25s var(--ease), color .25s var(--ease);
}
/* Puls nur, bis der Besucher den ersten Punkt benutzt hat – zeigt "hier klicken" */
.punkt::after {
  content: ''; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .55); opacity: 0;
}
.check:not(.ist-benutzt) .punkt[aria-selected='false']::after { animation: puls 2.8s var(--ease) infinite; }
@keyframes puls { 0% { transform: scale(.75); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .punkt::after { animation: none !important; } }
.punkt:hover, .punkt[aria-selected='true'] { transform: scale(1.1); background: #fff; color: var(--blau-tief); }
.punkt--1 { left: 16%; top: 26%; }
.punkt--2 { left: 44%; top: 52%; }
.punkt--3 { left: 68%; top: 34%; }
.punkt--4 { left: 80%; top: 70%; }
.check__aktion { margin-top: 22px; }
.band__breite { max-width: 60ch; }
.faq__aktion { margin-top: 26px; }
.kontakt-zeile__ganz { width: 100%; }
.kontakt-panel__aktion { margin-top: 24px; }
.check__tafel {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-l);
  padding: clamp(26px, 3vw, 36px); box-shadow: var(--schatten-2);
}
.check__fortschritt { display: flex; gap: 6px; margin-bottom: 20px; }
.check__fortschritt span { flex: 1; height: 4px; border-radius: 4px; background: var(--linie); transition: background-color .35s var(--ease); }
.check__fortschritt[data-aktiv='1'] span:nth-child(-n+1),
.check__fortschritt[data-aktiv='2'] span:nth-child(-n+2),
.check__fortschritt[data-aktiv='3'] span:nth-child(-n+3),
.check__fortschritt[data-aktiv='4'] span:nth-child(-n+4) { background: var(--blau); }
.check__tafel h3 { margin-bottom: .45em; font-size: clamp(1.25rem, 2vw, 1.5rem); }
.check__schritt { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blau); display: block; margin-bottom: 10px; }
.check__hinweis {
  margin-top: 20px; padding: 14px 16px; font-size: .9rem; color: var(--text);
  background: var(--kalk); border-radius: var(--r-s);
}
@media (max-width: 860px) { .check { grid-template-columns: 1fr; } }

/* ---------- Chef / Zitat ---------- */
.chef { display: grid; grid-template-columns: minmax(280px, 420px) 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.chef__portrait { position: relative; }
.chef__portrait img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 22%;
  border-radius: var(--r-l); box-shadow: var(--schatten-2);
}
.chef blockquote {
  position: relative; margin: 0 0 24px; padding-left: 22px;
  border-left: 3px solid var(--blau);
  font-family: var(--ff-display); font-stretch: 104%; font-weight: 620;
  font-size: clamp(1.3rem, 2.2vw, 1.72rem); line-height: 1.34; letter-spacing: -.012em;
  color: var(--blau-tief); text-wrap: balance;
}
.chef p { color: var(--text); }
.chef__sign { height: 36px; width: auto; opacity: .75; margin: 6px 0 10px; }
.chef__name { font-weight: 700; color: var(--blau-tief); margin: 0; }
.chef__rolle { color: var(--grau); font-size: .92rem; margin: 0; }
@media (max-width: 760px) { .chef { grid-template-columns: 1fr; } .chef__portrait { max-width: 420px; } }

/* ---------- Marken-Wall ---------- */
.marken-gruppen { display: grid; gap: 24px; }
.marken-gruppe__titel {
  font-family: var(--ff-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--blau);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 10px;
}
.marken { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.marken li {
  list-style: none; padding: 10px 18px; background: #fff; border: 1px solid var(--linie);
  font-weight: 600; font-size: .92rem; color: var(--blau-tief); border-radius: var(--r-pill);
  transition: border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.marken li:hover { border-color: var(--blau); color: var(--blau); box-shadow: var(--schatten-1); }
.stempel {
  display: inline-block; margin-top: 28px; padding: 12px 22px;
  border: 2px solid var(--blau); color: var(--blau); background: #fff; border-radius: 2px;
  font-family: var(--ff-hero); font-size: 1rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transform: rotate(-1.6deg);
}

.band {
  position: relative; overflow: hidden; color: #ffffff;
  background: var(--blau-tief);
  isolation: isolate;
}
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.band::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(7, 20, 42, 0.98) 0%, rgba(9, 29, 59, 0.94) 55%, rgba(14, 42, 84, 0.85) 100%);
}
.band__inner { position: relative; padding: clamp(56px, 7vw, 100px) 0; }
.band h2 { color: #ffffff; text-shadow: 0 1px 2px rgba(0,0,0,0.4); }
.band p { color: #e2edfc; }
.band .eyebrow--hell { color: #7cb3ff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.band__aktionen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.band a.btn--weiss, .band a.btn--weiss:hover { color: var(--blau-tief); font-weight: 700; }

/* ---------- Werte ---------- */
.werte { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.wert {
  position: relative; padding: 30px 26px 26px;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-m);
}
.wert::before { content: ''; display: block; width: 32px; height: 4px; border-radius: 4px; background: var(--blau); margin-bottom: 20px; }
.wert h3 { font-size: 1.1rem; }
.wert p { font-size: .95rem; color: var(--grau); margin: 0; }
.sek:not(.sek--kalk) .wert { background: var(--kalk); border-color: transparent; }

/* ---------- Farbfächer ----------
   Hover: Musterkarte kippt leicht nach links und zeigt Farbname + Code in hohem Kontrast. */
.faecher { display: flex; gap: 6px; margin-top: 26px; }
.faecher span {
  position: relative; flex: 1; height: 64px; border-radius: var(--r-s);
  background: var(--c); color: var(--t);
  transform-origin: bottom center;
  transition: transform .45s var(--ease-aus), box-shadow .45s var(--ease);
}
.faecher span::after {
  content: attr(data-farbe) "\A" attr(data-hex);
  white-space: pre; position: absolute; inset: auto 0 8px 0;
  text-align: center; font-size: .6rem; font-weight: 700; line-height: 1.3; letter-spacing: .02em;
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.faecher span:hover {
  transform: translateY(-8px) rotate(-7deg);
  box-shadow: 0 14px 24px -12px rgba(15, 23, 42, .45);
  z-index: 1;
}
.faecher span:hover::after { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .faecher span, .faecher span::after { transition: none; }
  .faecher span:hover { transform: none; }
}

/* ---------- Formular / Kontakt ---------- */
.kontakt-split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  border: 1px solid var(--linie); border-radius: var(--r-l); overflow: hidden;
  box-shadow: var(--schatten-2); background: #fff;
}
.formular { background: #fff; padding: clamp(28px, 4vw, 52px); position: relative; }
.formular__gruppe {
  border: 0;
  padding: 0;
  margin: 0 0 16px;
}
.formular__legende {
  font-family: var(--ff-display);
  font-size: .84rem;
  font-weight: 700;
  color: var(--blau);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
  padding: 0;
  display: block;
}
.feld { margin-bottom: 18px; }
.feld label { display: block; font-size: .85rem; font-weight: 650; color: var(--blau-tief); margin-bottom: 8px; }
.feld .pflicht { color: var(--blau); }
.feld input, .feld textarea, .feld select {
  width: 100%; font-family: var(--ff-text); font-size: 1rem; color: var(--anthrazit);
  padding: 13px 15px; background: var(--kalk); border: 1px solid var(--linie);
  border-radius: var(--r-s);
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.feld input:hover, .feld textarea:hover, .feld select:hover { border-color: var(--linie-stark); }
.feld input:focus, .feld textarea:focus, .feld select:focus {
  background: #fff; border-color: var(--blau); outline: none; box-shadow: 0 0 0 4px rgba(20, 87, 184, .12);
}
.feld textarea { min-height: 140px; resize: vertical; }
.feld-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feld--honig { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.formular__hinweis {
  font-size: .86rem; line-height: 1.5; color: var(--grau);
  margin: 20px 0 22px; padding-left: 14px; border-left: 2px solid var(--linie);
}
.formular__hinweis a { color: var(--blau); }
.hinweis { padding: 14px 18px; border-radius: var(--r-s); font-size: .92rem; margin-bottom: 22px; }
.hinweis--ok { background: var(--blau-zart); border-left: 4px solid var(--blau); color: var(--blau-tief); }
.hinweis--fehler { background: #fdeced; border-left: 4px solid #c0392b; color: #8c271c; }

.kontakt-panel {
  color: #cfe0f7; padding: clamp(28px, 4vw, 52px);
  background: radial-gradient(120% 70% at 100% 0%, rgba(47, 116, 221, .3), transparent 60%), var(--blau-tief);
}
.kontakt-panel h2, .kontakt-panel h3 { color: #fff; }
.kontakt-panel h3 { font-size: 1.3rem; margin-bottom: 14px; }
.kontakt-panel a:not(.btn) { color: #fff; text-decoration: none; }
.kontakt-panel a:not(.btn):hover { text-decoration: underline; }
.kontakt-panel a.btn--weiss, .kontakt-panel a.btn--weiss:hover { color: var(--blau-tief); }
.kontakt-panel a.btn--geist:hover { color: #fff; }
.kontakt-zeile { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.kontakt-zeile:last-of-type { border-bottom: 0; }
.kontakt-zeile svg {
  width: 40px; height: 40px; padding: 10px; flex: none;
  color: #9dc2ff; background: rgba(255, 255, 255, .07); border-radius: var(--r-m);
}
.kontakt-zeile strong { display: block; color: #fff; font-size: .8rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; margin: 1px 0 2px; }
.kontakt-zeile span, .kontakt-zeile a { font-size: .97rem; }
.kontakt-zeile a { display: inline-block; padding: 6px 0; margin: -6px 0; }
.zeiten { list-style: none; margin: 8px 0 0; padding: 0; font-size: .94rem; }
.zeiten li { display: flex; justify-content: space-between; gap: 20px; padding: 7px 0; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.zeiten li:last-child { border-bottom: 0; }
@media (max-width: 900px) { .kontakt-split { grid-template-columns: 1fr; } .feld-reihe { grid-template-columns: 1fr; } }

/* ---------- Karte (Overlay & Google Maps Einbindung) ---------- */
.karte-box {
  position: relative;
  margin-top: 20px;
  border: 1px solid var(--linie);
  border-radius: var(--r-l);
  background:
    repeating-linear-gradient(90deg, rgba(20, 87, 184, .06) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(20, 87, 184, .06) 0 1px, transparent 1px 44px),
    var(--kalk);
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 340px;
  overflow: hidden;
}
@media (max-width: 620px) { .karte-box { aspect-ratio: auto; min-height: 0; height: 340px; } }
.karte-box__karte { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.karte-box iframe { display: block; width: 100%; height: 100%; border: 0; }
.karte-box__overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: clamp(16px, 3vw, 32px);
  background: rgba(245, 247, 251, .9);
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.karte-box__overlay[hidden] { display: none !important; opacity: 0; visibility: hidden; }
.karte-box__inhalt {
  max-width: 48ch; background: #fff;
  padding: clamp(22px, 3vw, 32px) clamp(20px, 3.5vw, 36px);
  border: 1px solid var(--linie); border-radius: var(--r-m);
  box-shadow: var(--schatten-3);
}
.karte-box__inhalt h3 { margin-bottom: .4em; font-size: 1.2rem; }
.karte-box__inhalt p { font-size: .92rem; color: var(--grau); line-height: 1.52; margin-bottom: 0; }
.karte-box__aktionen { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.karte-box__aktionen .btn { min-height: 44px; padding: 10px 18px; font-size: .88rem; }
.karte-box__nadel {
  width: 46px; height: 46px; margin: 0 auto 14px;
  display: grid; place-items: center;
  background: var(--blau); color: #fff; border-radius: var(--r-m);
}
.karte-box__nadel svg { width: 22px; height: 22px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(30px, 5vw, 80px); align-items: start; }
.faq__kopf { position: sticky; top: 130px; }
.faq__liste { display: grid; gap: 10px; }
.faq__eintrag {
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-m);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__eintrag:hover { border-color: var(--linie-stark); }
.faq__eintrag[open] { border-color: #c6d7ef; box-shadow: var(--schatten-1); }
.faq__eintrag summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 20px 70px 20px 24px;
  font-family: var(--ff-text); font-weight: 650; font-size: 1.02rem; line-height: 1.4; color: var(--blau-tief);
  border-radius: var(--r-m);
  transition: color .2s var(--ease);
}
.faq__eintrag summary h3,
.faq__frage {
  display: inline;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}
.faq__eintrag summary::-webkit-details-marker { display: none; }
.faq__eintrag summary:hover { color: var(--blau); }
/* Plus im Kreis, dreht sich beim Öffnen zum Kreuz */
.faq__eintrag summary::after {
  content: ''; position: absolute; right: 20px; top: 50%;
  width: 32px; height: 32px; margin-top: -16px; border-radius: 50%;
  background: var(--blau-zart) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231457b8' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .35s var(--ease-aus), background-color .25s var(--ease);
}
.faq__eintrag[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--blau);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.faq__eintrag summary:focus-visible { outline-offset: 2px; }
.faq__antwort { padding: 0 24px 22px; color: var(--text); font-size: .98rem; }
.faq__antwort p { margin: 0; max-width: 62ch; }
.faq__punkte {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  max-width: 62ch;
}
.faq__punkte li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
  font-size: .95rem;
}
.faq__punkte li::before {
  content: '›';
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--blau);
  font-weight: 700;
  font-size: 1.1rem;
}
@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; }
  .faq__kopf { position: static; }
}
@media (max-width: 520px) {
  .faq__eintrag summary { padding: 18px 60px 18px 18px; font-size: .98rem; }
  .faq__eintrag summary::after { right: 14px; }
  .faq__antwort { padding: 0 18px 20px; }
}
@media (prefers-reduced-motion: reduce) { .faq__eintrag summary::after { transition: none; } }

/* ---------- Leistungs-Detailblöcke ---------- */
.leistung { padding: clamp(52px, 7vw, 96px) 0; border-bottom: 1px solid var(--linie); scroll-margin-top: 130px; }
.leistung:last-of-type { border-bottom: 0; }
.liste-haken { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 4px; }
.liste-haken li { position: relative; padding: 6px 0 6px 26px; font-size: .97rem; color: var(--text); }
.liste-haken li strong { color: var(--anthrazit); }
.liste-haken li::before {
  content: ''; position: absolute; left: 0; top: 15px;
  width: 14px; height: 2px; border-radius: 2px; background: var(--blau);
}

/* ---------- Seitenkopf (Unterseiten): dunkle Fläche über die volle Breite ---------- */
.seitenkopf {
  position: relative; overflow: hidden; color: #fff; isolation: isolate;
  background: var(--blau-tief);
}
.seitenkopf img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.seitenkopf::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(9, 29, 59, .96) 0%, rgba(14, 42, 84, .86) 48%, rgba(14, 42, 84, .55) 100%);
}
.seitenkopf__inner { position: relative; padding: clamp(52px, 7vw, 104px) 0 clamp(56px, 7vw, 108px); }
.seitenkopf h1 { color: #fff; margin-bottom: .3em; font-size: clamp(2.3rem, 5vw, 3.9rem); }
.h1-ort {
  display: block; margin-top: .3em;
  font-size: clamp(1.02rem, 1.9vw, 1.35rem); font-weight: 560; font-stretch: 100%;
  letter-spacing: 0; line-height: 1.3; color: #9dc2ff;
}
.seitenkopf p { color: #cfe0f7; max-width: 56ch; margin: 0; }
.seitenkopf__band { display: none; }
.krumen {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; color: #9dc2ff; margin: 0 0 18px;
}
.krumen a { color: #cfe0f7; text-decoration: none; }
.krumen a:hover { color: #fff; }

/* ---------- Rechtstexte ---------- */
.recht { max-width: 74ch; color: var(--text); }
.recht h2 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); margin-top: 2.2em; }
.recht h3 { font-size: 1.05rem; margin-top: 1.6em; }
.recht ul { padding-left: 20px; }
.recht li { margin-bottom: .5em; }
.recht strong { color: var(--anthrazit); }

/* ---------- 404 ---------- */
.fehler { text-align: center; padding: clamp(72px, 11vw, 150px) 0; }
.fehler__zahl {
  font-family: var(--ff-display); font-stretch: 125%; font-weight: 800;
  font-size: clamp(5rem, 18vw, 11rem); line-height: .9; letter-spacing: -.04em;
  color: var(--kalk-tief); margin: 0 0 .1em;
}
.fehler .lead { margin-inline: auto; }
.fehler__aktionen { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

/* ---------- Footer ---------- */
.fuss { background: var(--blau-nacht); color: #a9c3e4; margin-top: 0; }
.fuss__band { display: none; }
.fuss__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(30px, 4vw, 64px); padding: clamp(56px, 6vw, 84px) 0 clamp(40px, 4vw, 56px); }
.fuss h3 {
  color: #fff; font-size: .8rem; font-weight: 700; font-stretch: 100%;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
}
.fuss a { color: #a9c3e4; text-decoration: none; transition: color .2s var(--ease); }
.fuss a:hover { color: #fff; }
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { padding: 5px 0; font-size: .95rem; }
/* Logo (JPEG mit hellem Grund) bekommt eine bewusste weiße Fläche */
.fuss__logo {
  height: 72px; width: auto; max-width: 100%; margin-bottom: 20px;
  padding: 10px 14px; background: #fff; border-radius: var(--r-m); object-fit: contain;
}
.fuss__text { font-size: .94rem; max-width: 42ch; }
.fuss__unten {
  border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; font-size: .86rem;
}
.fuss__unten .rechts { margin-left: auto; display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.fuss__link {
  background: none; border: none; padding: 0; color: #a9c3e4;
  font-family: inherit; font-size: inherit; line-height: inherit;
  cursor: pointer; text-decoration: none; transition: color .2s var(--ease);
}
.fuss__link:hover { color: #fff; }

@media (max-width: 800px) {
  .fuss__grid { grid-template-columns: 1fr 1fr; }
  .fuss__marke { grid-column: 1 / -1; }
  .fuss__unten .rechts { margin-left: 0; }
}
@media (max-width: 520px) { .fuss__grid { grid-template-columns: 1fr; } }

/* ---------- Credit unter dem Footer ---------- */
.credit { background: var(--weiss); border-top: 1px solid var(--linie); }
.credit__inner { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 22px 0; flex-wrap: wrap; }
.credit__text { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--grau); }
.credit__logo { display: inline-flex; align-items: center; line-height: 0; }
.credit__logo img { height: 26px; width: auto; opacity: .82; transition: opacity .25s var(--ease); }
.credit__logo:hover img { opacity: 1; }

/* ---------- Nach-oben ---------- */
.hoch {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  width: 46px; height: 46px; display: grid; place-items: center;
  background: var(--blau); color: #fff; border: 0; border-radius: 2px; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background-color .2s var(--ease);
  box-shadow: var(--schatten-2);
}
.hoch.ist-sichtbar { opacity: 1; visibility: visible; transform: none; }
.hoch:hover { background: var(--blau-tief); }
.hoch svg { width: 20px; height: 20px; }

/* ---------- Reveal: einmaliges, ruhiges Einblenden beim ersten Sichtkontakt ---------- */
.zeig { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-aus), transform .7s var(--ease-aus); }
.zeig.ist-da { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .zeig { opacity: 1; transform: none; transition: none; } }

/* ---------- Cookie-Banner / Einwilligungsmanagement ---------- */
.cookie-backdrop {
  position: fixed; inset: 0;
  background: rgba(9, 29, 59, .5);
  z-index: 9998; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.cookie-backdrop.ist-sichtbar { opacity: 1; visibility: visible; }

.cookie-banner {
  position: fixed; bottom: clamp(14px, 2.5vw, 28px); left: 50%;
  transform: translate(-50%, 24px);
  width: min(calc(100% - 28px), 740px); max-height: calc(100vh - 40px); overflow-y: auto;
  background: #fff; border: 1px solid var(--linie); border-radius: var(--r-l);
  box-shadow: 0 40px 80px -24px rgba(9, 18, 32, .45);
  z-index: 9999; padding: clamp(22px, 3.5vw, 34px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .35s var(--ease-aus), visibility .3s var(--ease);
}
.cookie-banner.ist-sichtbar { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cookie-banner h2 { font-size: clamp(1.2rem, 2.4vw, 1.45rem); margin: 0 0 .4em; color: var(--blau-tief); }
.cookie-banner p { font-size: .93rem; color: var(--text); margin: 0 0 1em; line-height: 1.55; }
.cookie-optionen {
  display: flex; flex-direction: column; gap: 12px;
  margin: 16px 0 22px; padding: 16px 18px;
  background: var(--kalk); border: 1px solid var(--linie); border-radius: var(--r-m);
}
.cookie-option { display: flex; align-items: flex-start; gap: 12px; }
.cookie-option input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blau); flex-shrink: 0; cursor: pointer; }
.cookie-option input[type="checkbox"]:disabled { cursor: not-allowed; opacity: .75; }
.cookie-option label { font-size: .9rem; color: var(--anthrazit); cursor: pointer; }
.cookie-option label strong { display: block; color: var(--blau-tief); font-size: .96rem; margin-bottom: 2px; }
.cookie-option label span { display: block; font-size: .85rem; color: var(--grau); line-height: 1.4; }
.cookie-aktionen { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-aktionen .btn { flex: 1 1 auto; min-height: 46px; padding: 11px 18px; font-size: .9rem; }
.cookie-links {
  margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--linie);
  font-size: .82rem; color: var(--grau); display: flex; gap: 16px; flex-wrap: wrap;
}
.cookie-links a { color: var(--blau); text-decoration: none; display: inline-block; padding: 6px 0; margin: -6px 0; }
.cookie-links a:hover { text-decoration: underline; }

/* Mobil: flacher Banner am unteren Rand statt hochkant-Block */
@media (max-width: 640px) {
  .cookie-banner {
    left: 0; right: 0; bottom: 0; width: 100%; max-width: none;
    transform: translate(0, 100%);
    border-radius: var(--r-l) var(--r-l) 0 0; border-left: 0; border-right: 0; border-bottom: 0;
    padding: 14px 16px 16px; max-height: 60vh;
  }
  .cookie-banner.ist-sichtbar { transform: translate(0, 0); }
  .cookie-banner h2 { font-size: 1rem; margin-bottom: .2em; }
  .cookie-banner p { font-size: .78rem; line-height: 1.4; margin-bottom: .5em; }
  .cookie-optionen { flex-direction: row; gap: 10px; margin: 10px 0 14px; padding: 10px 12px; border-radius: var(--r-m); }
  .cookie-option { flex: 1 1 0; gap: 9px; }
  .cookie-option input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; }
  .cookie-option label { font-size: .8rem; line-height: 1.28; }
  .cookie-option label strong { font-size: .81rem; margin-bottom: 1px; }
  .cookie-option label span { font-size: .72rem; line-height: 1.26; }
  /* Beschreibung der Pflichtkategorie spart Hoehe; der einwilligungsrelevante
     Maps-Hinweis bleibt sichtbar. */
  .cookie-option:first-child label span { display: none; }
  .cookie-aktionen { gap: 8px; }
  .cookie-aktionen .btn { flex: 1 1 calc(50% - 4px); min-height: 40px; padding: 9px 8px; font-size: .76rem; }
  .cookie-links { margin-top: 9px; padding-top: 8px; font-size: .74rem; gap: 14px; }
}
/* Sehr flache Viewports (Querformat-Handy) */
@media (max-height: 520px) and (max-width: 900px) {
  .cookie-banner { max-height: 88vh; padding: 12px 16px 14px; }
  .cookie-banner p { font-size: .8rem; margin-bottom: .5em; }
  .cookie-option label span { display: none; }
  .cookie-optionen { flex-direction: row; margin: 8px 0 12px; padding: 8px 10px; }
  .cookie-aktionen .btn { flex: 1 1 0; min-height: 40px; padding: 9px 10px; font-size: .78rem; }
}

/* ---------- Print ---------- */
@media print {
  .topbar, .kopf, .hoch, .fuss, .band, .hero__bild, .cookie-banner, .cookie-backdrop { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* ---------- Utility classes (replaces inline styles for SEO) ---------- */
.mt-0  { margin-top: 0; }
.mt-xs { margin-top: 12px; }
.mt-s  { margin-top: 22px; }
.mt-m  { margin-top: 24px; }
.mt-l  { margin-top: 26px; }
.mb-section { margin-bottom: 2em; }
.mx-auto { margin-inline: auto; }
.w-full { width: 100%; }
.max-text-60 { max-width: 60ch; }
.max-text-58 { max-width: 58ch; }
.h2-small { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.hint-small { margin-top: 12px; font-size: .9rem; }
.muted-small { margin-top: 22px; font-size: .93rem; }

/* ---------- Service card feature list ---------- */
.karte__features {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.karte__features li {
  font-size: .85rem;
  color: var(--farbe-text-weich, #4a5568);
  padding-left: 1.2em;
  position: relative;
}
.karte__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--farbe-akzent, #1457b8);
  font-weight: 700;
}

/* ---------- Check/tick list (dark bg: --hell variant) ---------- */
.liste-haken {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.liste-haken li {
  padding-left: 1.5em;
  position: relative;
  line-height: 1.45;
}
.liste-haken li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--farbe-akzent, #1457b8);
  font-weight: 700;
}
.liste-haken--hell li { color: #f0f6ff; }
.liste-haken--hell li strong { color: #ffffff; }
.liste-haken--hell li::before { color: #7cb3ff; font-weight: bold; }

/* ---------- Semantic <address> reset ---------- */
.kontakt-adresse {
  font-style: normal;
  display: block;
}

