/* sanierungsprofi-hamburg.de — ein Stylesheet für alle Seiten.
   Statisches HTML, kein Build, kein JS für Inhalte, keine Fremd-Requests:
   System-Fonts + Georgia + selbst gehostetes Manrope (/fonts, SIL OFL) —
   kein Google-Fonts-Request, die Datenschutz-Zusage bleibt wahr.
   Neue optionale Klassen sind am Dateiende dokumentiert. */

/* Manrope (variabel, 200–800) — nur für den Header (Claude-Design-Vorlage). */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-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: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/fonts/manrope-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;
}

/* -- 1. Design-Tokens -- */
:root {
  /* Opt-out aus Chromes "Auto Dark Mode": die Palette ist bewusst hell,
     eine erzwungene Invertierung zerstoert Kontrast- und Markenfarben.
     Gleiche Angabe als <meta name="color-scheme"> in jedem <head>. */
  color-scheme: only light;
  --ink: #0a1525;        /* Basisdunkel: Hero, Footer, Überschriften */
  --ink-2: #13243b;
  --body: #37455c;       /* Fließtext         — 9,2:1 auf --paper */
  --mute: #5e6779;       /* Sekundärtext      — 5,3:1 auf --paper */
  --paper: #faf7f2;      /* Seitenhintergrund */
  --paper-2: #f1ece3;    /* section.alt */
  --paper-3: #e7dfd1;
  --line: #e4dccd;
  --line-2: #d3c9b6;
  --brand: #e23b33;      /* nur Flächen/Ränder/große Schrift (4,0:1 — nicht für Lesetext) */
  --brand-ink: #b7261f;  /* rote Schrift in Lesegröße — 6,0:1 auf --paper */
  --brand-soft: #fceae8;
  --gold: #f4c770;       /* Gold-Akzent auf dunklem Grund */
  --gold-ink: #8a6714;   /* Gold-Ton für helle Flächen — 4,8:1 auf --paper */
  --gold-soft: #fdf6e7;
  --wa: #25d366;
  --wa-ink: #07301c;
  --ok: #047857;
  --radius: 14px;
  --wrap: 1120px;
  --serif: Georgia, "Times New Roman", serif;
  --shadow-card: 0 1px 2px rgba(10, 21, 37, .05);
  --shadow-lift: 0 18px 34px -26px rgba(10, 21, 37, .55);
}

/* -- 2. Basis -- */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: clip; }          /* clip statt hidden: bricht position:sticky nicht */
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  margin: 0;
  overflow-x: clip;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--brand); color: #fff; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; letter-spacing: -.02em; margin: 0 0 12px; text-wrap: balance; }
h1 { font-size: clamp(30px, 5.2vw, 46px); line-height: 1.08; letter-spacing: -.03em; }
h2 { font-size: clamp(24px, 3.4vw, 33px); }
h3 { font-size: 19px; letter-spacing: -.015em; }
p { margin: 0 0 14px; text-wrap: pretty; }
ul, ol { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 6px; }
a { color: var(--brand-ink); }
strong, b { color: var(--ink); font-weight: 600; }
figure { margin: 0; }
img { display: block; max-width: 100%; height: auto; border-radius: var(--radius); }

.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }

:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; border-radius: 4px; }
.hero :focus-visible, .footer :focus-visible, .sticky-cta :focus-visible { outline-color: var(--gold); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* Anker-Ziele (z. B. /#kosten) nicht unter dem Sticky-Header verstecken */
[id] { scroll-margin-top: 136px; }

/* -- 3. Header / Navigation -- Claude-Design-Vorlage "Fixierter Header":
   zwei Zeilen (Logo oben, Nav darunter), Manrope, 5px-Unterkante,
   Nav horizontal scrollbar ohne Scrollbalken. */
.header {
  position: sticky; top: 0; z-index: 30;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: rgba(250, 247, 242, .94);
  border-bottom: 5px solid var(--ink-2);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
}
.header-in {
  max-width: 1400px; margin: 0 auto; padding: 16px 20px 0;
  display: flex; flex-wrap: wrap; align-items: center;
}
.logo {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.logo::before {
  content: "S"; flex: none; width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--brand);
  color: #fff; font-size: 23px; font-weight: 800; line-height: 1; letter-spacing: 0;
}
.logo .logo-name { display: block; line-height: 1.15; white-space: nowrap; }
.logo .logo-name > span { color: var(--brand-ink); }
.logo .logo-name small {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mute);
}

.nav {
  flex: 1 0 100%;                     /* eigene Zeile unter dem Logo */
  display: flex; flex-wrap: nowrap; gap: 34px;
  font-size: 17px;
  overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  /* Vertikales Padding liegt auf dem Link, nicht der Zeile:
     die komplette Zeilenhoehe ist Klickflaeche (Touch-Target > 44px). */
  flex: 0 0 auto; padding: 15px 0 17px;
  color: var(--ink-2); font-weight: 700; text-decoration: none; white-space: nowrap;
}
.nav a:hover { color: var(--brand-ink); }
.nav a[aria-current="page"] { color: var(--brand-ink); font-weight: 800; }

/* Untermenue (nur Desktop >=1200px: dort ist die Nav nicht gescrollt und darf
   ueberlaufen; darunter fuehrt der Punkt direkt auf die Seite, wo alles steht). */
.nav .has-sub { position: relative; }
/* Im Flex-Kontext werden nackte Links zu Flex-Items (Padding wirkt vertikal);
   der Link IN der Untermenue-Huelle bleibt inline — inline-block gleicht ihn an. */
.nav .has-sub > a { display: inline-block; }
.nav .sub { display: none; }
@media (min-width: 1200px) {
  .nav { overflow: visible; }
  .nav .has-sub > a::after {
    content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 8px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
  }
  .nav .has-sub:hover > .sub, .nav .has-sub:focus-within > .sub { display: block; }
  .nav .sub {
    position: absolute; top: 100%; left: -14px; z-index: 40; min-width: 265px;
    padding: 8px; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); box-shadow: var(--shadow-lift);
  }
  .nav .sub a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 15px; font-weight: 600; }
  .nav .sub a::after { content: none; }
  .nav .sub a:hover { background: var(--brand-soft); color: var(--ink); }
  .nav .sub .sub-label {
    display: block; margin: 8px 4px 2px; padding: 8px 8px 0;
    border-top: 1px solid var(--line);
    font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--mute);
  }
}

/* -- 4. Hero (dunkel) -- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: 40px 0 46px; border: none; color: #c9d6e6;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(244, 199, 112, .13), transparent 62%),
    radial-gradient(820px 480px at -8% 92%, rgba(226, 59, 51, .16), transparent 62%),
    linear-gradient(180deg, #0a1525 0%, #0c1d33 58%, #0a1525 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(700px 520px at 22% 24%, #000 25%, transparent 78%);
  mask-image: radial-gradient(700px 520px at 22% 24%, #000 25%, transparent 78%);
}
.hero h1, .hero h2 { color: #fff; }
.hero h1 .serif, .hero h2 .serif { color: var(--gold); }

.crumb { margin: 0 0 14px; font-size: 14px; color: var(--mute); }
.crumb a { display: inline-block; padding-block: 3px; color: inherit; }
.crumb strong { color: var(--ink); font-weight: 600; }
.hero .crumb, .hero .crumb a { color: #94a6be; }
.hero .crumb strong { color: #d5e0ee; }

.lede { max-width: 60ch; margin: 14px 0 4px; font-size: 19px; line-height: 1.6; color: var(--body); }
.hero .lede { color: #bfcee1; }
.hero .lede strong, .hero .lede b, .hero .lede a { color: #fff; }

.trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0;
  list-style: none; font-size: 14.5px; color: var(--body);
}
.trust span, .trust li {
  display: inline-block; margin: 0; padding: 6px 15px 6px 12px;
  border-radius: 999px; background: #fff; border: 1px solid var(--line);
}
.trust span::before, .trust li::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--brand);
}
.trust b { color: var(--ink); font-weight: 700; }
.hero .trust { color: #c9d6e6; }
.hero .trust span, .hero .trust li { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); }
.hero .trust span::before, .hero .trust li::before { background: var(--gold); }
.hero .trust b { color: #fff; }

/* -- 5. Buttons -- */
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 24px 0 4px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 13px 26px; border-radius: 999px;
  font-family: inherit; font-size: 16px; font-weight: 700; line-height: 1.25; letter-spacing: -.01em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 12px 26px -16px rgba(37, 211, 102, .8); }
.btn-wa:hover { background: #1fbf5d; }
.btn-mail { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-mail:hover { border-color: var(--ink); }
.hero .btn-mail { border-color: transparent; box-shadow: 0 12px 26px -18px rgba(0, 0, 0, .9); }

/* -- 6. Sektionen -- */
section { padding: clamp(40px, 6vw, 66px) 0; }
section.alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.sub { max-width: 62ch; margin: -2px 0 0; color: var(--mute); }

.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand-ink);
}
.sec-eyebrow::before { content: ""; flex: none; width: 26px; height: 2px; background: currentColor; }
.hero .sec-eyebrow { color: var(--gold); }

/* -- 7. Karten-Raster -- */
.grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-card);
}
.card h3 { margin-bottom: 8px; }
.card p:last-child { margin-bottom: 0; }
.card .price {
  display: inline-flex; align-items: baseline; gap: 6px;
  color: var(--ok); font-size: 17px; font-weight: 700; letter-spacing: -.01em;
}
a.card {
  display: block; color: inherit; text-decoration: none;
  transition: transform .15s ease, border-color .2s ease, box-shadow .2s ease;
}
a.card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--shadow-lift); }
.more { display: inline-block; color: var(--brand-ink); font-size: 15px; font-weight: 700; }
a.card:hover .more { text-decoration: underline; text-underline-offset: 3px; }

.pill {
  display: inline-flex; align-items: center; gap: 7px; min-height: 26px;
  padding: 4px 12px; border-radius: 999px; line-height: 1.35;
  background: var(--brand-soft); border: 1px solid #f6d6d3; color: var(--brand-ink);
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
}
.pill.gold { background: var(--gold-soft); border-color: #efdcb2; color: var(--gold-ink); }
.pill.ok { background: #e4f6ec; border-color: #bfe6d2; color: var(--ok); }

/* -- 8. Kennzahlen -- */
.stats {
  position: relative; display: flex; flex-wrap: wrap; gap: 22px 40px;
  margin: 28px 0 4px; padding: 0; list-style: none;
}
.stats::before { content: ""; position: absolute; left: 0; top: -14px; width: 38px; height: 2px; background: var(--brand); }
.stat { min-width: 96px; margin: 0; }
.stat .n {
  display: block; font-family: var(--serif); font-style: italic; color: var(--gold-ink);
  font-size: clamp(38px, 6vw, 54px); line-height: .95; letter-spacing: -.02em;
}
.stat .n sup { font-size: .42em; vertical-align: .55em; }
.stat .l { display: block; margin-top: 6px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.hero .stats::before { background: rgba(244, 199, 112, .6); }
.hero .stat .n { color: var(--gold); }
.hero .stat .l { color: #9fb1c8; }

/* -- 9. Ablauf-Schritte -- */
.steps { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; counter-reset: step; }
.step {
  position: relative; margin: 0; padding: 18px 20px 18px 66px;
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 17px; top: 18px; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--ink); color: var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1;
}
.step h3 { margin: 0 0 4px; font-size: 17px; }
.step p { margin: 0; color: var(--body); }
.step .l { display: block; margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-ink); }

/* -- 10. Zweispalter + Zitat -- */
.split { display: grid; gap: 24px; align-items: start; }

.quote {
  position: relative; margin: 24px 0 0; padding: 24px 26px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.quote::before {
  content: "\201C"; position: absolute; right: 20px; top: 4px;
  font-family: var(--serif); font-size: 62px; line-height: 1; color: var(--paper-3);
}
.quote p { position: relative; margin: 0 0 12px; font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.55; color: var(--ink-2); }
.quote cite, .quote footer { display: block; padding-top: 12px; border-top: 1px solid var(--line); font-style: normal; font-size: 14px; color: var(--mute); }
.quote cite b, .quote footer b { color: var(--ink); }

/* -- 11. Tabellen -- */
.tablewrap {
  overflow-x: auto; overscroll-behavior-x: contain;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
table { width: 100%; min-width: 460px; border-collapse: collapse; font-size: 16px; font-variant-numeric: tabular-nums; }
th, td { padding: 13px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th {
  background: var(--ink); color: #fff; border-bottom: none; white-space: nowrap;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
td strong { color: var(--ink); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--paper); }

/* -- 12. FAQ (rein CSS, ohne JS) -- */
.faq { display: grid; gap: 10px; max-width: 860px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--line-2); box-shadow: 0 16px 32px -28px rgba(10, 21, 37, .7); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 56px; padding: 14px 20px; cursor: pointer; list-style: none;
  color: var(--ink); font-size: 17px; font-weight: 700; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(var(--brand-ink), var(--brand-ink)) center / 11px 2px no-repeat,
    linear-gradient(var(--brand-ink), var(--brand-ink)) center / 2px 11px no-repeat;
  transition: transform .2s ease, border-color .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); border-color: var(--brand); }
/* Sanftes Oeffnen ohne JS: Browser mit ::details-content animieren, aeltere
   oeffnen hart wie bisher. interpolate-size erlaubt den Uebergang zu "auto". */
@media (prefers-reduced-motion: no-preference) {
  :root { interpolate-size: allow-keywords; }
  .faq details::details-content {
    opacity: 0; block-size: 0; overflow-y: clip;
    transition: content-visibility .28s allow-discrete, opacity .28s ease, block-size .28s ease;
  }
  .faq details[open]::details-content { opacity: 1; block-size: auto; }
}
.faq details > :not(summary) { margin: 0 20px 14px; max-width: 74ch; color: var(--body); }
.faq details > :last-child { margin-bottom: 18px; }

/* -- 13. Bilder / Platzhalter (feste Ratio gegen CLS) -- */
.photo-slot {
  display: grid; place-items: center; aspect-ratio: 4 / 3; padding: 24px 18px;
  text-align: center; font-size: 14px; line-height: 1.45; color: var(--body);
  border: 1px dashed var(--line-2); border-radius: var(--radius);
  background: linear-gradient(150deg, var(--paper-2), var(--paper-3));
}

/* -- 14. Hinweis-Box -- */
.note {
  padding: 18px 22px; font-size: 16px; color: var(--body);
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.note strong { color: var(--ink); }

/* -- 15. Mobile Sticky-Leiste -- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; align-items: center; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 21, 37, .97); border-top: 1px solid rgba(255, 255, 255, .14); color: #fff;
}
.sticky-cta .btn { flex: 1 1 auto; min-height: 48px; padding: 12px 18px; font-size: 15px; }
.sticky-cta .lbl { flex: 0 1 auto; font-size: 13px; line-height: 1.25; color: #b9c7da; }

/* -- 16. Footer -- */
.footer {
  padding: 46px 0 30px; font-size: 15.5px; color: #b6c3d5;
  background: radial-gradient(700px 320px at 88% -10%, rgba(244, 199, 112, .1), transparent 70%), var(--ink);
}
.footer h4 { margin: 0 0 14px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .32); text-underline-offset: 3px; }
.footer a:hover { text-decoration-color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin: 0; }
.footer ul a { display: inline-block; padding: 7px 0; }
.footer strong, .footer b { color: #fff; }
.footer .cols { display: grid; gap: 26px 30px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.footer .copy { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 14px; color: #8fa0b6; }

/* -- 17. Breakpoints -- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .header-in { padding-inline: 16px; }
  .header-in { padding-top: 12px; }
  .logo { gap: 11px; }
  .logo::before { width: 38px; height: 38px; font-size: 20px; border-radius: 10px; }
  .nav {
    gap: 22px; font-size: 15.5px; padding: 0 16px;
    margin-inline: -16px;
    -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent);
    mask-image: linear-gradient(90deg, #000 86%, transparent);
  }
  .nav a { padding: 11px 0 13px; }
  .hero { padding: 28px 0 34px; }
  .lede { font-size: 17.5px; }
  /* Kennzahlen nebeneinander statt untereinander — der Hero bleibt ein Screen */
  .stats { gap: 16px 20px; }
  .stat { flex: 1 1 0; min-width: 0; }
  .stat .n { font-size: clamp(30px, 9vw, 40px); }
  .stat .l { font-size: 11px; letter-spacing: .09em; }
  .cta { gap: 10px; }
  .cta .btn { width: 100%; }
  .grid { gap: 14px; }
  .card, .step { padding: 18px; }
  .step { padding-left: 62px; }
  .faq summary { font-size: 16px; padding: 12px 16px; }
  .faq details > :not(summary) { margin-inline: 16px; }
  th, td { padding: 11px 14px; }
  table { font-size: 15px; }
  .sticky-cta { display: flex; }
  body:has(.sticky-cta) { padding-bottom: 78px; }
}

@media (min-width: 960px) {
  .wrap, .header-in { padding-inline: 32px; }
  .grid { gap: 20px; }
  .split { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* === NEUE OPTIONALE KLASSEN — Beispiel-Markup fürs HTML ===

 .sec-eyebrow — Uppercase-Label über einer Überschrift; im Hero gold, sonst rot.
   <p class="sec-eyebrow">Ablauf</p><h2>So läuft Ihre Sanierung</h2>

 .serif — Georgia-Kursiv-Akzent in Überschrift oder Zahl.
   <h2>Sanierung, die <span class="serif">planbar</span> bleibt</h2>

 .stats / .stat / .stat .n / .stat .l — Kennzahlenreihe, im Hero gold.
   <ul class="stats">
     <li class="stat"><span class="n">2008</span><span class="l">im Handwerk seit</span></li>
     <li class="stat"><span class="n">7</span><span class="l">Gewerke aus einer Hand</span></li>
     <li class="stat"><span class="n">0<sup>€</sup></span><span class="l">Aufmaß vor Ort</span></li>
   </ul>

 .steps / .step — nummerierter Ablauf statt Tabelle; die Nummer setzt CSS per
   counter(), sie steht nicht im Markup. <ol> liefert die Semantik.
   <ol class="steps">
     <li class="step"><h3>Anfrage</h3><p>Fotos per WhatsApp.</p><span class="l">5 Minuten</span></li>
     <li class="step"><h3>Aufmaß</h3><p>…</p><span class="l">ca. 1 Stunde</span></li>
   </ol>

 .pill — Badge; Varianten .pill.gold und .pill.ok
   <span class="pill">Aufmaß kostenlos</span> <span class="pill gold">Festtermin</span>

 .split — zweispaltig ab 960px, darunter gestapelt.
   <div class="split">
     <div><h2>Altbau in Hamburg</h2><p>…</p></div>
     <figure><div class="photo-slot">Fotoplatz — Altbau</div></figure>
   </div>

 .quote — Zitat/Testimonial.
   <blockquote class="quote">
     <p>Ein Ansprechpartner, ein Ablaufplan — das Bad war in drei Wochen fertig.</p>
     <cite><b>M. Krüger</b> · Eimsbüttel · Badsanierung</cite>
   </blockquote>

 .sticky-cta — nur ≤640px sichtbar, unten fixiert. Als direktes Kind von <body>
   nach dem </footer> einsetzen: body:has(.sticky-cta) legt dann selbst Platz an,
   damit die Leiste den Footer nicht verdeckt. Ohne :has() überlappt nur die
   letzte Footer-Zeile leicht.
   <div class="sticky-cta">
     <span class="lbl">Fotos schicken,<br>Angebot bekommen</span>
     <a class="btn btn-wa" href="https://wa.me/4915218547875" rel="nofollow noopener">WhatsApp</a>
   </div>

 Farbregel: --brand (#E23B33) nur für Flächen, Ränder, große Schrift. Rote
 Schrift in Lesegröße immer --brand-ink (#B7261F) — sonst < 4.5:1 Kontrast.
 ========== */
