/* =========================================================
   ENZO Hausmeisterservice Wuppertal — Stylesheet
   Hierarchie: Display > H2 > H3 > Lead > Text > Label
   ========================================================= */

/* ---------- Schrift (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/geist-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: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/geist-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 {
  --red: #d1111c;
  --red-dark: #ad0c16;
  --red-tint: #fbeaea;

  --ink: #111214;
  --ink-2: #1b1c1f;
  --text: #4b4d53;
  --muted: #7c7e85;
  --line: #e5e5e7;
  --surface: #f4f4f2;
  --bg: #ffffff;

  /* Typo-Skala */
  --fs-h1: clamp(2.4rem, 5vw, 4.25rem);
  --fs-h2: clamp(2rem, 3.9vw, 3.3rem);
  --fs-h3: clamp(1.2rem, 1.6vw, 1.4rem);
  --fs-lead: clamp(1.1rem, 1.5vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: .9rem;
  --fs-label: .78rem;

  --r-s: 10px;
  --r: 18px;
  --r-l: 28px;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 44px);
  --header-h: 104px;
  --logo-h: 68px;
  --section: clamp(72px, 9vw, 128px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: var(--fs-body); line-height: 1.65; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 { color: var(--ink); text-wrap: balance; overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.02; letter-spacing: -.045em; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.05; letter-spacing: -.04em; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.25; letter-spacing: -.02em; }
p { text-wrap: pretty; }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--text); max-width: 54ch; }
.label {
  display: block; margin-bottom: 18px;
  font-size: var(--fs-label); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: var(--section) 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--ink); color: #a3a5ab; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: #b9bbc0; }

/* Abschnittskopf: Label → H2 → Lead */
.sec-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head .lead { margin-top: 20px; }
.sec-head--row { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.sec-head--row > div { max-width: 720px; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; letter-spacing: -.01em; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #2b2c30; }
.btn--ghost { background: transparent; color: var(--ink); border-color: #d4d4d7; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.2); }
.btn--light:hover { background: rgba(255,255,255,.16); }
.btn--wa { background: #25d366; color: #073b1d; }
.btn--wa:hover { background: #1fc05b; }
.btn--lg { height: 58px; padding: 0 30px; font-size: 1.05rem; }
.btn--sm { height: 44px; padding: 0 20px; font-size: .95rem; }

.link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); white-space: nowrap; border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.link:hover { color: var(--red); }
.link:hover svg { transform: translateX(3px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900; height: var(--header-h);
  display: flex; align-items: center; background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; gap: 40px; width: 100%; }
.header__logo { flex: none; }
.header__logo img { height: var(--logo-h); width: auto; }
.nav__list { display: flex; gap: 6px; }
.nav__link { position: relative; display: block; white-space: nowrap; padding: 10px 14px; font-size: 1.02rem; font-weight: 500; color: var(--text); transition: color .2s var(--ease); }
.nav__link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px; background: var(--red); transform: scaleX(0); transition: transform .25s var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: none; }
.header__actions { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.header__tel { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); white-space: nowrap; line-height: 1.2; }
.header__tel > svg { width: 20px; height: 20px; color: var(--red); }
.header__tel small { display: block; font-size: .76rem; color: var(--muted); font-weight: 500; }
.header__tel b { font-weight: 700; font-size: 1.05rem; }
.burger { display: none; width: 46px; height: 46px; border-radius: 999px; border: 1.5px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.burger span { display: block; width: 18px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero (Startseite) — Ebene 1 ---------- */
.hero { position: relative; isolation: isolate; background: #f7f7f5; padding: clamp(48px, 7vw, 96px) 0 0; overflow: hidden; }
.hero > .container { position: relative; z-index: 1; }

/* Bewegter Verlauf: drei weichgezeichnete Farbflächen + Lichtschein, der der Maus folgt */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__bg i { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.hero__bg i:nth-child(1) { width: 62vmax; height: 62vmax; top: -34vmax; right: -14vmax; background: radial-gradient(circle, rgba(209,17,28,.26), rgba(209,17,28,0) 64%); animation: blob-a 24s ease-in-out infinite alternate; }
.hero__bg i:nth-child(2) { width: 48vmax; height: 48vmax; bottom: -30vmax; left: -12vmax; background: radial-gradient(circle, rgba(255,122,89,.24), rgba(255,122,89,0) 64%); animation: blob-b 28s ease-in-out infinite alternate; }
.hero__bg i:nth-child(3) { width: 36vmax; height: 36vmax; top: 10%; left: 38%; background: radial-gradient(circle, rgba(255,184,150,.3), rgba(255,184,150,0) 64%); animation: blob-c 20s ease-in-out infinite alternate; }
/* Technisches Raster (Millimeterpapier): feine 24er- und kräftigere 120er-Linien */
.hero__lines, .hero__lines--hot {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--gl-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--gl-strong) 1px, transparent 1px),
    linear-gradient(var(--gl-fine) 1px, transparent 1px),
    linear-gradient(90deg, var(--gl-fine) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
  background-position: -1px -1px;
}
.hero__lines {
  --gl-strong: rgba(17,18,20,.075); --gl-fine: rgba(17,18,20,.035);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 55% 35%, #000 35%, transparent 90%);
          mask-image: radial-gradient(ellipse 90% 80% at 55% 35%, #000 35%, transparent 90%);
}
/* Rotes Raster, das nur rund um den Mauszeiger sichtbar wird */
.hero__lines--hot {
  --gl-strong: rgba(209,17,28,.55); --gl-fine: rgba(209,17,28,.22);
  -webkit-mask-image: radial-gradient(240px circle at var(--mx, 70%) var(--my, 30%), #000, transparent 70%);
          mask-image: radial-gradient(240px circle at var(--mx, 70%) var(--my, 30%), #000, transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.hero.is-lit .hero__lines--hot { opacity: 1; }

/* Passermarken auf Rasterkreuzungen */
.hero__cross { position: absolute; width: 17px; height: 17px; margin: -8px 0 0 -8px; }
.hero__cross::before, .hero__cross::after { content: ''; position: absolute; background: var(--red); }
.hero__cross::before { left: 8px; top: 0; width: 1.5px; height: 17px; }
.hero__cross::after { top: 8px; left: 0; height: 1.5px; width: 17px; }
.hero__cross--ink::before, .hero__cross--ink::after { background: rgba(17,18,20,.35); }

/* Koordinaten-/Maßangabe */
.hero__coords {
  position: absolute; top: 20px; right: var(--gutter); z-index: 1;
  font: 500 .72rem/1 ui-monospace, 'SF Mono', Menlo, Consolas, monospace; letter-spacing: .08em;
  color: rgba(17,18,20,.45); display: flex; gap: 18px;
}
.hero__coords span::before { content: ''; display: inline-block; width: 6px; height: 6px; margin-right: 8px; border: 1.5px solid var(--red); border-radius: 50%; vertical-align: 0; }
.hero__dim {
  position: absolute; left: var(--gutter); bottom: 20px; z-index: 1;
  display: flex; align-items: center; gap: 10px;
  font: 500 .72rem/1 ui-monospace, 'SF Mono', Menlo, Consolas, monospace; letter-spacing: .08em; color: rgba(17,18,20,.4);
}
.hero__dim i { display: block; width: 120px; height: 9px; border-left: 1.5px solid currentColor; border-right: 1.5px solid currentColor; background: linear-gradient(currentColor, currentColor) center / 100% 1px no-repeat; }
@media (max-width: 960px) { .hero__coords, .hero__dim { display: none; } }

.hero__glow { position: absolute; inset: 0; background: radial-gradient(520px circle at var(--mx, 72%) var(--my, 30%), rgba(209,17,28,.08), transparent 62%); opacity: 0; transition: opacity .6s var(--ease); }
.hero.is-lit .hero__glow { opacity: 1; }
@keyframes blob-a { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-9vmax, 7vmax) scale(1.12); } 100% { transform: translate(-3vmax, 13vmax) scale(.94); } }
@keyframes blob-b { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(12vmax, -6vmax) scale(1.15); } 100% { transform: translate(20vmax, -2vmax) scale(1); } }
@keyframes blob-c { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-10vmax, 8vmax) scale(.9); } 100% { transform: translate(6vmax, -6vmax) scale(1.1); } }

.hero__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero__text { padding-bottom: clamp(48px, 6vw, 88px); }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.9rem); line-height: 1; letter-spacing: -.05em; }
.hero h1 em { font-style: normal; color: var(--red); }
.hero .lead { margin-top: 28px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 40px; }
.hero__cta .btn--primary { box-shadow: 0 12px 30px rgba(209,17,28,.25); }
.hero__tel { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); line-height: 1.25; }
.hero__tel span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.7); border: 1.5px solid rgba(17,18,20,.12); color: var(--red); transition: background .2s, color .2s, border-color .2s; }
.hero__tel svg { width: 18px; height: 18px; }
.hero__tel small { display: block; font-size: .8rem; color: var(--muted); }
.hero__tel b { font-size: 1.12rem; }
.hero__tel:hover span { background: var(--red); border-color: var(--red); color: #fff; }
.hero__img { position: relative; border-radius: var(--r-l) var(--r-l) 0 0; overflow: hidden; background: #fff; aspect-ratio: 4/5; box-shadow: 0 -10px 60px rgba(209,17,28,.12); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; transition: transform .8s var(--ease); }
.hero__media:hover .hero__img img { transform: scale(1.03); }
@media (prefers-reduced-motion: reduce) { .hero__bg i { animation: none; } .hero__glow, .hero__lines--hot { display: none; } }

.hero-facts { background: var(--ink); color: #a3a5ab; }
.hero-facts ul { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-facts li { padding: 26px 24px 26px 0; display: flex; align-items: center; gap: 14px; font-size: .92rem; line-height: 1.35; }
.hero-facts li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.1); }
.hero-facts svg { width: 22px; height: 22px; color: var(--red); flex: none; }
.hero-facts b { display: block; color: #fff; font-weight: 600; font-size: 1rem; }

/* ---------- Leistungen (Start) — Hauptkachel + Nebenkacheln ---------- */
.feature-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 20px; }
.card { position: relative; display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 28px; transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
a.card:hover { border-color: transparent; box-shadow: 0 18px 50px rgba(17,18,20,.1); transform: translateY(-3px); }
.card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--red-tint); color: var(--red); display: grid; place-items: center; margin-bottom: 40px; }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; }
.card__more { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.card__more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
a.card:hover .card__more { color: var(--red); }
a.card:hover .card__more svg { transform: translateX(3px); }

.card--feature { grid-row: span 2; padding: 0; overflow: hidden; background: var(--ink); border: 0; color: #b9bbc0; }
.card--feature .card__img { aspect-ratio: 4/3; overflow: hidden; }
.card--feature .card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card--feature:hover .card__img img { transform: scale(1.04); }
.card--feature .card__body { padding: 32px; display: flex; flex-direction: column; flex: 1; }
.card--feature .tag { align-self: flex-start; font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--red); padding: 5px 10px; border-radius: 6px; margin-bottom: 18px; }
.card--feature h3 { color: #fff; font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -.03em; }
.card--feature .card__more { color: #fff; }

.also { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; margin-top: 20px; padding: 22px 28px; border-radius: var(--r); background: var(--surface); }
.also p { color: var(--ink); }
.also b { font-weight: 600; }

/* ---------- Ablauf (dunkel) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 56px); }
.step { border-top: 1px solid rgba(255,255,255,.14); padding-top: 28px; }
.step__num { display: block; font-size: clamp(3rem, 5vw, 4.25rem); font-weight: 700; line-height: 1; letter-spacing: -.05em; color: var(--red); margin-bottom: 28px; }
.step h3 { margin-bottom: 10px; }
.step p { font-size: .98rem; max-width: 36ch; }

/* ---------- Über-uns-Teaser ---------- */
.teaser { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.teaser__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.teaser__imgs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r); }
.teaser__imgs img:last-child { margin-top: 48px; }
.big-quote { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 600; line-height: 1.2; letter-spacing: -.035em; color: var(--ink); }
.big-quote::before { content: '„'; color: var(--red); }
.big-quote::after { content: '“'; color: var(--red); }
.signature { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.signature img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center 10%; background: var(--surface); }
.signature b { display: block; color: var(--ink); font-weight: 600; }
.signature span { font-size: .9rem; color: var(--muted); }
.teaser .link { margin-top: 32px; }

/* ---------- CTA-Box ---------- */
.cta-box {
  display: grid; grid-template-columns: minmax(0, 1.2fr) auto; align-items: center; gap: 32px;
  background: var(--surface); border-radius: var(--r-l); padding: clamp(36px, 6vw, 72px);
}
.cta-box h2 { max-width: 16ch; }
.cta-box .lead { margin-top: 16px; }
.cta-box__actions { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }

/* ---------- Unterseiten-Kopf ---------- */
.page-hero { background: var(--surface); padding: clamp(56px, 8vw, 112px) 0 clamp(48px, 6vw, 80px); }
.page-hero .lead { margin-top: 24px; }
.page-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.page-hero--split .container { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.page-hero__img { border-radius: var(--r-l); overflow: hidden; aspect-ratio: 4/5; background: #fff; max-width: 460px; justify-self: end; width: 100%; }
.page-hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }

/* ---------- Leistungen: Kategorien ---------- */
.cat { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: clamp(32px, 5vw, 80px); padding: clamp(40px, 5vw, 64px) 0; border-top: 1px solid var(--line); }
.cat:first-child { border-top: 0; padding-top: 0; }
.cat__head { position: sticky; top: calc(var(--header-h) + 32px); align-self: start; }
.cat__num { display: block; font-size: .9rem; font-weight: 600; color: var(--red); margin-bottom: 12px; }
.cat__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cat__head p { margin-top: 14px; max-width: 32ch; }
.cat__list { display: grid; gap: 16px; }
.svc { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 28px; border-radius: var(--r); background: var(--surface); }
.svc__icon { width: 56px; height: 56px; border-radius: 14px; background: #fff; color: var(--red); display: grid; place-items: center; }
.svc__icon svg { width: 26px; height: 26px; }
.svc h3 { margin-bottom: 8px; }
.svc p { font-size: .98rem; }
.svc ul { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.svc li { font-size: .82rem; font-weight: 500; color: var(--ink); background: #fff; padding: 5px 11px; border-radius: 999px; }

.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.audience li { padding: 24px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); }
.audience b { display: block; color: var(--ink); font-weight: 600; font-size: 1.1rem; letter-spacing: -.02em; margin-bottom: 6px; }
.audience span { font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: clamp(32px, 5vw, 80px); }
.faq-wrap .sec-head { margin-bottom: 0; }
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none; font-weight: 600; font-size: 1.1rem; letter-spacing: -.015em; color: var(--ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: ''; flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--surface) center / 12px no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v10M1 6h10' stroke='%23111214' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  transition: transform .25s var(--ease), background-color .2s;
}
.faq__q:hover::after { background-color: #e8e8e6; }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 56px 26px 0; }

/* ---------- Über uns ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: clamp(28px, 4vw, 48px) 24px clamp(28px, 4vw, 48px) 0; }
.stat + .stat { padding-left: 32px; border-left: 1px solid var(--line); }
.stat b { display: block; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; line-height: 1; letter-spacing: -.05em; color: var(--ink); }
.stat b em { font-style: normal; color: var(--red); }
.stat span { display: block; margin-top: 10px; font-size: .98rem; }

.story { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.6fr); gap: clamp(32px, 5vw, 80px); }
.story__text p + p { margin-top: 16px; }
.story__text .big-quote { margin-top: 40px; }

.area { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.places h3 { font-size: 1rem; margin: 28px 0 12px; }
.places h3:first-of-type { margin-top: 0; }
.places ul { display: flex; flex-wrap: wrap; gap: 8px; }
.places li { font-size: .9rem; font-weight: 500; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.map-wrap { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: #e9e9e6; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-consent { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 12px; padding: 28px; text-align: center; font-size: .92rem; }
.map-consent svg { width: 30px; height: 30px; color: var(--red); }
.map-consent strong { color: var(--ink); font-weight: 600; font-size: 1.05rem; }
.map-consent p { max-width: 38ch; }
.map-consent a { text-decoration: underline; }

/* ---------- Kontakt ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-side { position: sticky; top: calc(var(--header-h) + 24px); background: var(--ink); color: #a3a5ab; border-radius: var(--r-l); padding: 32px; }
.contact-side h3 { color: #fff; }
.contact-side__tel { display: block; margin: 18px 0 4px; font-size: clamp(1.7rem, 2.6vw, 2.2rem); font-weight: 700; letter-spacing: -.04em; color: #fff; }
.contact-side__tel:hover { opacity: .85; }
.contact-side .btn { width: 100%; margin-top: 20px; }
.contact-side dl { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 16px; font-size: .95rem; }
.contact-side dt { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #7c7e85; margin-bottom: 2px; }
.contact-side dd { margin: 0; color: #fff; overflow-wrap: anywhere; }
.contact-side dd a:hover { text-decoration: underline; }

/* ---------- Formular ---------- */
.form-wrap { border: 1px solid var(--line); border-radius: var(--r-l); padding: clamp(24px, 4vw, 48px); background: var(--bg); box-shadow: 0 30px 80px rgba(17,18,20,.06); }
.progress { display: flex; align-items: center; margin-bottom: 36px; }
.progress__step { display: flex; align-items: center; gap: 10px; flex: none; }
.progress__dot { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); color: var(--muted); font-weight: 600; font-size: .85rem; transition: all .3s var(--ease); }
.progress__label { font-size: .92rem; font-weight: 500; color: var(--muted); }
.progress__bar { flex: 1; height: 2px; border-radius: 2px; background: var(--line); margin: 0 14px; position: relative; overflow: hidden; }
.progress__bar::after { content: ''; position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.progress__step.is-active .progress__dot { background: var(--red); color: #fff; }
.progress__step.is-active .progress__label { color: var(--ink); font-weight: 600; }
.progress__step.is-done .progress__dot { background: var(--ink); color: #fff; font-size: 0; }
.progress__step.is-done .progress__dot::after { content: '✓'; font-size: .9rem; }
.progress__step.is-done + .progress__bar::after { transform: scaleX(1); }

.fstep { display: none; animation: fade .3s var(--ease); }
.fstep.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.fstep h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 700; letter-spacing: -.035em; margin-bottom: 6px; }
.fstep__hint { color: var(--muted); margin-bottom: 26px; }

.pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pick input { position: absolute; opacity: 0; pointer-events: none; }
.pick label { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px; border-radius: var(--r-s); border: 1.5px solid var(--line); background: var(--bg); cursor: pointer; font-weight: 500; font-size: .95rem; line-height: 1.3; color: var(--ink); transition: border-color .15s, background .15s, color .15s; }
.pick label svg { width: 22px; height: 22px; color: var(--muted); }
.pick label:hover { border-color: #c4c4c8; }
.pick input:checked + label { border-color: var(--red); background: var(--red-tint); }
.pick input:checked + label svg { color: var(--red); }
.pick input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
.pick--row label { flex-direction: row; align-items: center; gap: 10px; }
.pick--row label svg { width: 18px; height: 18px; }

.field { margin-bottom: 18px; }
.field label, .flabel { display: block; font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 8px; }
.req { color: var(--red); }
.input, .textarea, .select { width: 100%; padding: 14px 16px; border-radius: var(--r-s); border: 1.5px solid var(--line); background: var(--bg); color: var(--ink); font-size: 1rem; transition: border-color .15s, box-shadow .15s; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(17,18,20,.06); }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--red); }
.textarea { min-height: 130px; resize: vertical; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.fgrid--top { margin-top: 22px; }
.err { display: block; color: var(--red); font-size: .84rem; font-weight: 500; margin-top: 6px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--text); font-weight: 400 !important; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--red); }
.check a { text-decoration: underline; }
.fnav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.form-note { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .84rem; color: var(--muted); }
.form-note svg { width: 14px; height: 14px; flex: none; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-alert { display: none; padding: 16px 18px; border-radius: var(--r-s); font-size: .95rem; margin-bottom: 20px; }
.form-alert.is-error { display: block; background: var(--red-tint); color: var(--red-dark); }
.form-alert a { text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.is-active { display: block; animation: fade .4s var(--ease); }
.form-success h3 { font-size: 1.8rem; font-weight: 700; letter-spacing: -.035em; }
.form-success p { margin-top: 12px; }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: #e7f6ec; color: #16a34a; display: grid; place-items: center; margin: 0 auto 22px; }
.form-success__icon svg { width: 30px; height: 30px; }
.form-success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #8d8f96; font-size: .95rem; }
.footer__top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; padding: clamp(56px, 7vw, 88px) 0 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__top h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 18ch; }
.footer__tel { font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 700; letter-spacing: -.04em; color: #fff; line-height: 1.05; }
.footer__tel:hover { color: var(--red); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 32px; padding: 48px 0; }
.footer__logo { height: 64px; width: auto; margin-bottom: 18px; }
.footer h4 { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: #fff; }
.footer address { font-style: normal; line-height: 1.8; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 22px 0 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; color: #6d6f76; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer .cookie__link { color: #6d6f76; }
.footer .cookie__link:hover { color: #fff; }

/* Namensschild im Porträt */
.hero__name {
  position: absolute; left: 16px; bottom: 16px;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 16px 12px 14px; border-radius: 12px; border-left: 3px solid var(--red);
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  line-height: 1.25; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.hero__name b { color: var(--ink); font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }
.hero__name span { color: var(--text); font-size: .82rem; }

/* ---------- Mobile Leiste ---------- */
.mobilebar { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 880; display: none; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.mobilebar .btn { flex: 1; height: 46px; padding: 0 10px; font-size: .92rem; }
.mobilebar .btn--ghost { border-color: transparent; background: var(--surface); }
.mobilebar { transition: transform .35s var(--ease), opacity .35s var(--ease); }
.mobilebar.is-hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }

/* ---------- Cookie-Hinweis ---------- */
.cookie { position: fixed; right: 20px; bottom: 20px; z-index: 1000; width: min(410px, calc(100% - 24px)); background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); box-shadow: 0 24px 60px rgba(0,0,0,.16); padding: 24px; display: none; animation: fade .35s var(--ease); }
.cookie.is-open { display: block; }
.cookie h3 { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; margin-bottom: 8px; }
.cookie h3 svg { width: 20px; height: 20px; color: var(--red); }
.cookie p { font-size: .88rem; }
.cookie p a { text-decoration: underline; }
.cookie__actions { display: grid; gap: 8px; margin-top: 18px; }
.cookie__actions .btn { height: 44px; font-size: .92rem; }
.cookie__row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cookie__link { font-size: .86rem; text-decoration: underline; padding: 0; color: var(--muted); }
.cookie__prefs { display: none; margin-top: 16px; padding-top: 10px; border-top: 1px solid var(--line); }
.cookie__prefs.is-open { display: block; }
.cookie__opt { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; }
.cookie__opt b { display: block; color: var(--ink); font-size: .92rem; font-weight: 600; }
.cookie__opt span { font-size: .82rem; }
.switch { position: relative; flex: none; width: 40px; height: 24px; margin-top: 2px; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch i { position: absolute; inset: 0; background: #dcdcdf; border-radius: 999px; transition: background .2s; pointer-events: none; }
.switch i::after { content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); transition: transform .2s var(--ease); }
.switch input:checked + i { background: var(--red); }
.switch input:checked + i::after { transform: translateX(16px); }
.switch input:disabled + i { opacity: .5; background: var(--ink); }

/* ---------- Rechtsseiten ---------- */
.legal { padding: clamp(56px, 7vw, 96px) 0 110px; }
.legal__inner { max-width: 780px; margin-inline: auto; }
.legal .eyebrow { display: block; font-size: var(--fs-label); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.legal h1 { margin-bottom: 14px; font-size: clamp(2rem, 5vw, 4.25rem); }
.legal__meta { color: var(--muted); margin-bottom: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); letter-spacing: -.03em; margin: 48px 0 14px; }
.legal h3 { font-size: 1.12rem; margin: 26px 0 8px; }
.legal p { margin-bottom: 14px; }
.legal a { text-decoration: underline; }
.legal a.btn { text-decoration: none; }
.legal ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; display: grid; gap: 6px; }
.legal address { font-style: normal; background: var(--surface); border-radius: var(--r-s); padding: 22px 24px; line-height: 1.85; margin-bottom: 18px; }
.legal address strong { color: var(--ink); font-weight: 600; }
.legal__toc { background: var(--surface); border-radius: var(--r-s); padding: 22px 24px; margin-bottom: 40px; }
.legal__toc h2 { font-size: var(--fs-label); color: var(--muted); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 12px; }
.legal__toc ul { list-style: none; padding: 0; }
.legal ul.chips, .chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li a { display: block; padding: 9px 16px; border: 1.5px solid var(--line); border-radius: 999px; font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--ink) !important; }
.chips li a:hover { border-color: var(--ink); }

/* ---------- Helfer ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .header__tel small { display: none; }
  .header__inner { gap: 24px; }
}
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .card--feature { grid-row: auto; grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .card--feature .card__img { aspect-ratio: auto; min-height: 280px; }
  .hero-facts ul { grid-template-columns: repeat(2, 1fr); }
  .hero-facts li:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-facts li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 960px) {
  :root { --header-h: 84px; --logo-h: 56px; }
  .header__tel, .header__actions .btn { display: none; }
  .burger { display: flex; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px; display: none; box-shadow: 0 20px 40px rgba(0,0,0,.08); }
  .nav.is-open { display: block; animation: fade .2s var(--ease); }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--line); }
  .nav__link { padding: 16px 0; font-size: 1.35rem; font-weight: 600; color: var(--ink); letter-spacing: -.02em; }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--red); }
  .nav__cta { display: grid; gap: 10px; margin-top: 16px; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__text { padding-bottom: 0; }
  .hero__media { max-width: 420px; width: 100%; }
  .sec-head--row { flex-direction: column; align-items: flex-start; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .step__num { margin-bottom: 16px; }
  .teaser, .page-hero--split .container, .cat, .faq-wrap, .story, .area, .contact-layout { grid-template-columns: 1fr; }
  .cat__head, .contact-side { position: static; }
  .page-hero__img { justify-self: start; max-width: 420px; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-box__actions { min-width: 0; flex-direction: row; flex-wrap: wrap; }
  .audience { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1 / -1; }
  .mobilebar { display: flex; }
  body { padding-bottom: 86px; }
  .cookie { right: 12px; bottom: 86px; }
}
@media (max-width: 620px) {
  :root { --header-h: 76px; --logo-h: 50px; }
  body { font-size: 1rem; }
  .hero__cta .btn { width: 100%; }
  .hero-facts ul { grid-template-columns: 1fr; }
  .hero-facts li, .hero-facts li + li { padding: 16px 0; border-left: 0; }
  .hero-facts li + li { border-top: 1px solid rgba(255,255,255,.1); }
  .feature-grid { grid-template-columns: 1fr; }
  .card--feature { display: flex; }
  .card--feature .card__img { aspect-ratio: 16/10; min-height: 0; }
  .card__icon { margin-bottom: 24px; }
  .teaser__imgs img:last-child { margin-top: 24px; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .svc { grid-template-columns: 1fr; padding: 22px; gap: 14px; }
  .audience { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .pick { grid-template-columns: repeat(2, 1fr); }
  .pick--row { grid-template-columns: 1fr; }
  .progress__label { display: none; }
  .cookie__row { grid-template-columns: 1fr; }
  .faq__a { padding-right: 0; }
  .fnav { flex-direction: column-reverse; }
  .fnav .btn { width: 100%; }
  .cta-box__actions .btn, .page-hero__cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Unterseiten (SEO-Seiten): Brotkrumen, Checklisten, Raster, Artikel
   ========================================================= */
.breadcrumb { margin-bottom: 28px; font-size: .88rem; color: var(--muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; }
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before { content: ''; width: 6px; height: 6px; margin: 0 10px; border-top: 1.5px solid #b8b9be; border-right: 1.5px solid #b8b9be; transform: rotate(45deg); }
.breadcrumb a { color: var(--text); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500; }
.page-hero--split .breadcrumb { margin-bottom: 24px; }

.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.split .checkbox { position: sticky; top: calc(var(--header-h) + 24px); }
.checkbox { background: var(--surface); border-radius: var(--r-l); padding: clamp(24px, 3vw, 36px); }
.checkbox h3 { margin-bottom: 18px; }
.checklist { display: grid; gap: 12px; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; color: var(--ink); }
.checklist svg { width: 20px; height: 20px; color: var(--red); margin-top: 2px; }
.prose h2 { margin-bottom: 20px; }
.prose p + p { margin-top: 14px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.info-grid h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 16px; }

.grid-2, .grid-3, .grid-4 { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section--surface .card { border-color: transparent; }

.chip-links { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-links a { display: inline-flex; align-items: center; padding: 10px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .95rem; font-weight: 500; color: var(--ink); transition: border-color .2s, color .2s; }
.chip-links a:hover { border-color: var(--red); color: var(--red); }
.section:not(.section--surface) .chip-links a { background: var(--surface); border-color: transparent; }
.section:not(.section--surface) .chip-links a:hover { border-color: var(--red); }
.also .chip-links { margin-top: 0; }
.also .chip-links a { padding: 7px 13px; font-size: .88rem; }

a.svc { color: inherit; transition: box-shadow .25s var(--ease), transform .25s var(--ease), background .2s; }
a.svc:hover { background: #fff; box-shadow: 0 18px 50px rgba(17,18,20,.08); transform: translateY(-2px); }
.svc__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: .9rem; font-weight: 600; color: var(--ink); }
.svc__more svg { width: 15px; height: 15px; transition: transform .2s var(--ease); }
a.svc:hover .svc__more { color: var(--red); }
a.svc:hover .svc__more svg { transform: translateX(3px); }

.audience li a { display: block; height: 100%; padding: 24px; margin: -24px; border-radius: inherit; color: inherit; }
.audience li:has(a) { transition: border-color .2s; }
.audience li:has(a:hover) { border-color: var(--red); }

.article-meta { margin-top: 22px; font-size: .9rem; color: var(--muted); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(32px, 5vw, 80px); align-items: start; }
.article { max-width: 70ch; font-size: 1.08rem; line-height: 1.75; }
.article h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin: 44px 0 14px; letter-spacing: -.03em; }
.article h2:first-child { margin-top: 0; }
.article p + p { margin-top: 14px; }
.article ul { display: grid; gap: 10px; margin: 18px 0; }
.article ul li { position: relative; padding-left: 26px; color: var(--ink); }
.article ul li::before { content: ''; position: absolute; left: 4px; top: .7em; width: 8px; height: 8px; border-radius: 2px; background: var(--red); }
.article .note { margin-top: 36px; padding: 18px 20px; border-radius: var(--r-s); background: var(--surface); font-size: .95rem; color: var(--text); border-left: 3px solid var(--red); }
.article-side { position: sticky; top: calc(var(--header-h) + 24px); }
.article-side .btn { width: 100%; margin-top: 20px; }

@media (max-width: 1080px) {
  .grid-4, .grid-3.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .info-grid, .article-layout, .split { grid-template-columns: 1fr; }
  .split .checkbox { position: static; }
  .article-side { position: static; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .grid-3.grid-4 { grid-template-columns: 1fr; gap: 10px; }
  .breadcrumb { margin-bottom: 20px; font-size: .82rem; }
  .article { font-size: 1.02rem; }
  .checkbox { border-radius: var(--r); }
  .chip-links a { padding: 8px 13px; font-size: .88rem; }
}

/* Kopfzeile mit 5 Menüpunkten: früher auf Burger-Menü umschalten */
@media (max-width: 1180px) {
  .header__tel { display: none; }
  .nav__link { padding: 10px 11px; }
  .nav__link::after { left: 11px; right: 11px; }
}
@media (max-width: 1060px) and (min-width: 961px) {
  .header__actions .btn { display: none; }
  .burger { display: flex; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; margin: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 24px; display: none; box-shadow: 0 20px 40px rgba(0,0,0,.08); }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li + li { border-top: 1px solid var(--line); }
  .nav__link { padding: 16px 0; font-size: 1.35rem; font-weight: 600; color: var(--ink); }
  .nav__link::after { display: none; }
  .nav__cta { display: grid; gap: 10px; margin-top: 16px; }
}

/* ---------- Handy: entschlackt ---------- */
@media (max-width: 620px) {
  :root { --logo-h: 44px; --header-h: 68px; --section: 64px; }
  .burger { width: 42px; height: 42px; }
  .hero { padding-top: 36px; }
  .hero .label { margin-bottom: 14px; }
  .hero h1 { font-size: clamp(2.2rem, 10.5vw, 2.8rem); }
  .hero .lead { font-size: 1.02rem; margin-top: 18px; }
  .hero__cta { margin-top: 28px; }
  .hero__tel { display: none; }
  .hero__grid { gap: 32px; }
  .hero__text { padding-bottom: 0; }
  .hero__media { max-width: none; }
  .hero__img { aspect-ratio: 5/4; border-radius: 22px 22px 0 0; }
  .hero__img img { object-position: center 8%; }
  .hero__name { left: 12px; bottom: 12px; padding: 10px 14px 10px 12px; }
  .hero__name b { font-size: .95rem; }
  .hero__name span { font-size: .78rem; }
  .hero__lines { --gl-strong: rgba(17,18,20,.05); --gl-fine: rgba(17,18,20,.022); }
  .hero__cross { display: none; }

  .hero-facts ul { grid-template-columns: 1fr 1fr; }
  .hero-facts li, .hero-facts li + li { padding: 16px 12px 16px 0; border: 0; gap: 10px; font-size: .8rem; align-items: flex-start; }
  .hero-facts li:nth-child(even) { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.1); }
  .hero-facts li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .hero-facts svg { width: 18px; height: 18px; margin-top: 1px; }
  .hero-facts b { font-size: .88rem; }

  .sec-head { margin-bottom: 28px; }
  .sec-head .lead, .cta-box .lead, .page-hero .lead { font-size: 1rem; }
  .feature-grid { gap: 10px; }
  .card { display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; row-gap: 2px; align-items: center; padding: 16px 18px; }
  .card__icon { width: 40px; height: 40px; margin: 0; grid-row: span 2; align-self: center; }
  .card__icon svg { width: 20px; height: 20px; }
  .card h3 { font-size: 1.05rem; margin: 0; }
  .card p { font-size: .86rem; margin-top: 2px; }
  .card__more { display: none; }
  .card--feature { display: flex; flex-direction: column; align-items: stretch; padding: 0; gap: 0; }
  .card--feature .card__img { aspect-ratio: 16/9; }
  .card--feature .card__body { padding: 20px; }
  .card--feature h3 { font-size: 1.35rem; margin-bottom: 6px; }
  .card--feature .card__more { display: inline-flex; padding-top: 12px; }
  .also { padding: 16px 18px; font-size: .9rem; }
  .step { padding-top: 18px; }
  .step__num { font-size: 2.4rem; margin-bottom: 10px; }
  .teaser__imgs { display: none; }
  .big-quote { font-size: 1.4rem; }
  .cta-box { padding: 28px 22px; border-radius: var(--r); }
  .footer__top { padding: 48px 0 32px; }
  .footer__logo { height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
@media print {
  .header, .mobilebar, .cookie { display: none !important; }
  body { padding: 0; }
}
