/* ==========================================================================
   Peglow Schrott & Metall – Relaunch 2026 · Design „Soft-Industrial"
   Nach Design-Handoff reference/design_handoff_peglow_startseite/
   Magenta #E2007A · Ink #131316 · Roboto / Roboto Slab · Radius 12/10/8
   Mobile-First · kein JavaScript erforderlich · Hover nur Farbwechsel
   ========================================================================== */

@import url('../fonts/fonts.css');

:root {
  --magenta: #e2007a;
  --magenta-deep: #b30061;
  --ink: #131316;
  --steel: #26262b;
  --steel-line: #38383f;
  --zinc: #f2f2f4;
  --zinc-hover: #e8e8ec;
  --line: #dedee3;
  --rose: #fdf2f8;
  --paper: #ffffff;
  --text: #3a3a40;
  --text-soft: #5c5c64;
  --r-card: 12px;
  --r-btn: 10px;
  --r-sm: 8px;
  --shadow: 0 2px 12px rgba(19, 19, 22, .10);
  --font-body: "Roboto", system-ui, -apple-system, sans-serif;
  --font-head: "Roboto Slab", Georgia, serif;
  --container: 1360px;
  --gutter: clamp(1rem, 3vw, 24px);
  --icon-check: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  --icon-plus: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"><line x1="12" y1="5" x2="12" y2="19"/><line x1="5" y1="12" x2="19" y2="12"/></svg>');
  --icon-arrow: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>');
  --icon-minus: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round"><line x1="5" y1="12" x2="19" y2="12"/></svg>');
}

/* ---------- 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; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--magenta-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--magenta); }
::selection { background: var(--magenta); color: #fff; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.375rem); margin-top: 2.3em; margin-bottom: .8em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.4em; }
address { font-style: normal; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 2px; border-radius: 2px; }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--magenta); color: #fff; padding: .6em 1em; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* Kicker (Eyebrow-Label) */
.kicker {
  display: block;
  font-family: var(--font-body); font-weight: 700;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin: 0 0 .4rem;
}
.kicker-dark { color: var(--magenta); }
.accent { color: var(--magenta); }

/* ---------- Buttons (Hover: nur Farbwechsel!) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.6em;
  font-weight: 700; font-size: 1.05rem; font-family: var(--font-body);
  text-decoration: none; border-radius: var(--r-btn);
  border: 2px solid transparent; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--magenta); color: #fff; }
.btn-primary:hover { background: var(--magenta-deep); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.btn-light { background: #fff; color: var(--magenta-deep); }
.btn-light:hover { background: var(--zinc); color: var(--magenta-deep); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn-outline:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.page-body .btn-outline, .danke .btn-outline { color: var(--magenta-deep); border-color: var(--magenta-deep); }
.page-body .btn-outline:hover, .danke .btn-outline:hover { background: var(--rose); }

/* ---------- Inline-Icons (feine Stroke-SVGs) ---------- */
.ic {
  display: inline-block; width: 1.05em; height: 1.05em;
  vertical-align: -0.18em; flex: none;
}
.ic-sm { width: .9em; height: .9em; vertical-align: -0.12em; }
.rel-arrow .ic { width: 1.15em; height: 1.15em; }
.feature-more .ic { vertical-align: -0.22em; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; gap: clamp(.8rem, 2vw, 28px);
  padding-block: 14px; position: relative;
}
.brand { flex: none; }
.brand img { width: 140px; height: auto; }
@media (min-width: 720px) { .brand img { width: 176px; } }

.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 9px; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--r-btn);
  margin-left: auto;
}
.nav-burger span:not(.sr-only) {
  display: block; height: 3px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-toggle:focus-visible ~ .nav-burger { outline: 3px solid var(--magenta); outline-offset: 2px; }
.main-nav {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-bottom: 3px solid var(--magenta);
  box-shadow: var(--shadow);
}
.nav-toggle:checked ~ .main-nav { display: block; }
.main-nav ul { list-style: none; margin: 0; padding: .5rem 0; }
.main-nav a {
  display: block; padding: .7rem var(--gutter);
  color: var(--ink); text-decoration: none; font-weight: 500;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--magenta-deep); background: var(--rose); }
.header-cta { display: none; font-size: 1rem; padding: 12px 22px; }

@media (min-width: 560px) { .header-cta { display: inline-block; margin-left: auto; } .nav-burger { margin-left: 0; order: 3; } }
@media (min-width: 900px) {
  .nav-burger { display: none; }
  .main-nav {
    display: block; position: static; border: 0; box-shadow: none; background: none;
    margin-left: auto;
  }
  .main-nav ul { display: flex; gap: 26px; padding: 0; }
  .main-nav a { padding: .3rem 0; font-size: .97rem; }
  .main-nav a:hover, .main-nav a[aria-current="page"] { background: none; color: var(--magenta-deep); }
  .main-nav a[aria-current="page"] { box-shadow: 0 3px 0 var(--magenta); }
  .header-cta { margin-left: 0; }
}

/* ---------- Hero (Foto-Karte, Design-Handoff §2) ---------- */
.hero-wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.hero {
  position: relative; overflow: hidden;
  border-radius: var(--r-card);
  background: var(--steel);
  margin-top: clamp(12px, 2vw, 20px);
  min-height: 400px;
  display: flex; align-items: stretch;
}
.hero-big { min-height: clamp(480px, 56vw, 560px); }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}
.hero-panel {
  position: relative; z-index: 1;
  width: 100%;
  display: flex; flex-direction: column; justify-content: center;
  gap: 18px;
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 56px);
  background: linear-gradient(90deg, rgba(19, 19, 22, .9) 30%, rgba(19, 19, 22, .64) 70%, rgba(19, 19, 22, .42) 100%);
}
@media (min-width: 900px) {
  .hero-panel {
    width: 58%;
    background: linear-gradient(90deg, rgba(19, 19, 22, .9) 30%, rgba(19, 19, 22, .62) 65%, rgba(19, 19, 22, .12) 95%, transparent);
  }
}
.hero h1 {
  color: #fff; margin: 0;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  line-height: 1.05; letter-spacing: -.01em;
}
.hero-big h1 { font-size: clamp(2rem, 4.9vw, 3.7rem); }
.h1-accent { color: var(--magenta); }
.hero-panel .kicker { margin: 0; }
.hero-text { max-width: 480px; font-size: 1.15rem; line-height: 1.5; color: var(--zinc); margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: .2rem; }

/* Plakette */
@keyframes plq-in {
  from { transform: rotate(-14deg) scale(1.15); opacity: 0; }
  to { transform: rotate(-7deg) scale(1); opacity: 1; }
}
.hero-badge {
  position: absolute; right: 16px; bottom: 14px; z-index: 1;
  width: 96px; height: 96px;
  padding: 12px;
  border: 3px solid #fff; border-radius: 50%;
  background: rgba(19, 19, 22, .62);
  color: #fff; text-align: center;
  font-family: var(--font-head); font-weight: 600;
  font-size: 10px; line-height: 1.3; letter-spacing: .05em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(-7deg);
  animation: plq-in .5s ease-out both;
  pointer-events: none;
}
.hero-badge span { color: #fff; font-weight: 700; font-size: 12px; }
@media (min-width: 641px) {
  .hero-badge { right: 34px; bottom: 30px; width: 124px; height: 124px; padding: 16px; font-size: 13px; }
  .hero-badge span { font-size: 15px; }
}

/* ---------- Stats-Chips (§3) ---------- */
.stats { display: flex; flex-wrap: wrap; gap: 16px; padding-top: clamp(20px, 3vw, 36px); }
.stat-chip {
  flex: 1 1 160px; text-align: center;
  background: var(--zinc); border-radius: var(--r-card);
  padding: 22px 12px;
  transition: background-color .15s ease;
}
.stat-chip:hover { background: var(--zinc-hover); }
.stat-num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1;
  color: var(--magenta);
}
.stat-label { font-size: .94rem; margin-top: 4px; }

/* ---------- Material-Grid (§4) ---------- */
.mat-section { padding-top: 0; }
.mat-section h2 { margin: 6px 0 32px; }
/* Carousel im Apple-Stil: Scroll-Snap, versteckte Scrollbar, dezente Controls */
.mat-carousel {
  display: flex; gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px;
}
.mat-carousel::-webkit-scrollbar { display: none; }
.mat-card {
  position: relative; overflow: hidden;
  flex: 0 0 68%;
  aspect-ratio: 5 / 5.6;
  border-radius: 18px;
  text-decoration: none;
  background: var(--zinc);
}
@media (min-width: 560px) { .mat-card { flex-basis: calc((100% - 16px) / 2); } }
@media (min-width: 780px) { .mat-card { flex-basis: calc((100% - 32px) / 3); } }
@media (min-width: 1140px) { .mat-card { flex-basis: calc((100% - 64px) / 5); } }
.mat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: filter .2s ease;
}
.mat-card:hover img { filter: brightness(1.06) saturate(1.08); }
.mat-stripe {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem;
  padding: 11px 16px;
  transition: background-color .15s ease;
}
.mat-card:hover .mat-stripe { background: var(--magenta-deep); }

/* Controls: Punktnavi + Pfeile, rechtsbündig (rechtes Drittel) */
.car-controls {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 8px; margin-top: 18px;
}
.car-dots { display: flex; gap: 8px; margin-right: 18px; }
.car-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0; cursor: pointer;
  background: #d2d2d7;
  transition: background-color .2s ease;
}
.car-dot:hover { background: #a1a1a6; }
.car-dot.is-active { background: var(--ink); }
.car-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--zinc); color: var(--ink);
  display: grid; place-items: center;
  transition: background-color .15s ease;
}
.car-arrow:hover { background: var(--zinc-hover); }
.car-arrow .ic { width: 18px; height: 18px; vertical-align: 0; }

/* ---------- Container-Feature (§6) ---------- */
.feature {
  display: grid; gap: 32px;
  padding-block: clamp(44px, 5vw, 72px);
  align-items: stretch;
}
@media (min-width: 860px) { .feature { grid-template-columns: 1fr 1fr; } }
.feature-img { min-height: 300px; border-radius: var(--r-card); overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.feature-body h2 { margin: 0; }
.feature-checks { list-style: none; margin: 0; padding: 0; font-size: 1.05rem; line-height: 2.1; }
.feature-checks li { position: relative; padding-left: 1.9em; }
.feature-checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 1.25em; height: 1.25em; background: var(--magenta);
  -webkit-mask: var(--icon-check) center / contain no-repeat;
  mask: var(--icon-check) center / contain no-repeat;
}
.feature-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin: .3rem 0 0; }
.feature-more { font-weight: 700; }

/* 50/50-Sektionen auf Unterseiten (Startseiten-Rhythmus) */
.feature-sec { margin-top: clamp(44px, 5vw, 72px); padding-block: 0; }
.feature-sec .feature-body h2 { margin: 0 0 .6em; }
.feature-sec .feature-img { max-height: 460px; }
@media (min-width: 860px) {
  .feature-flip .feature-img { order: 2; }
}
.content-section { margin-top: clamp(36px, 4vw, 56px); }
.content-section h2 { margin-top: 0; }
.list-cols { columns: 1; }
@media (min-width: 720px) { .list-cols { columns: 2; column-gap: 3rem; } }
.list-cols li { break-inside: avoid; }

/* ---------- Bewertungs-Karussell ---------- */
.rev-section { padding-top: clamp(44px, 5vw, 72px); }
.rev-section h2 { margin-top: 0; }
.rev-carousel {
  display: flex; gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2px;
}
.rev-carousel::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 84%;
  margin: 0;
  background: var(--zinc); border-radius: 18px;
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 640px) { .rev-card { flex-basis: calc((100% - 16px) / 2); } }
@media (min-width: 1024px) { .rev-card { flex-basis: calc((100% - 32px) / 3); } }
.rev-stars { display: flex; gap: 2px; color: #f5a623; }
.rev-stars .star { width: 19px; height: 19px; }
.rev-card blockquote {
  margin: 0; font-size: .98rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.rev-card figcaption {
  margin-top: auto; font-weight: 700; color: var(--ink);
  display: flex; align-items: baseline; gap: .6em;
}
.rev-card figcaption span { font-weight: 400; font-size: .8rem; color: var(--text-soft); }
.rev-more { margin-right: auto; font-weight: 700; text-decoration: none; }
.rev-more:hover { text-decoration: underline; }

/* ---------- 3-Schritte-Kacheln ---------- */
.steps-section { padding-top: clamp(44px, 5vw, 72px); }
.steps-section h2 { margin-top: 0; }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
  counter-reset: none;
}
@media (min-width: 860px) { .steps { grid-template-columns: 1fr 1fr 1fr; gap: 44px; } }
.step-card {
  position: relative;
  background: var(--zinc); border-radius: 18px;
  padding: 26px 24px 24px;
  transition: background-color .15s ease;
}
.step-card:hover { background: var(--zinc-hover); }
.step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--magenta); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  margin-bottom: 14px;
}
.step-card h3 { margin: 0 0 .5em; font-size: 1.12rem; }
.step-card p { margin: 0; font-size: .97rem; line-height: 1.6; }
/* Pfeil zwischen den Kacheln */
.step-card:not(:last-child)::after {
  content: ""; position: absolute;
  width: 26px; height: 26px; background: var(--magenta);
  -webkit-mask: var(--icon-arrow) center / contain no-repeat;
  mask: var(--icon-arrow) center / contain no-repeat;
  left: 50%; bottom: -37px; transform: translateX(-50%) rotate(90deg);
}
@media (min-width: 860px) {
  .step-card:not(:last-child)::after {
    left: auto; right: -35px; bottom: auto; top: 50%;
    transform: translateY(-50%);
  }
}
.steps-footer { margin-top: 1.4rem; }
.step-options { list-style: none; margin: 0; padding: 0; }
.step-options li { padding: .3em 0; border-bottom: 1px solid var(--line); }
.step-options li:last-child { border-bottom: 0; }
.step-options a { text-decoration: none; }
.step-options a:hover { text-decoration: underline; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .85rem; margin: 1.2rem 0 0; color: var(--text-soft); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .3rem; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "›"; margin-right: .3rem; color: var(--line); }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 500; }

/* ---------- Inhalt ---------- */
.page-body { padding-block: 1.2rem 3rem; }
.page-narrow { max-width: 820px; }
.intro { font-size: 1.15rem; margin-block: 3rem 1.6rem; }
.intro-grid { display: grid; gap: 32px; align-items: center; margin-block: clamp(44px, 5vw, 72px); }
@media (min-width: 900px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
.intro-grid .intro { margin-block: 0; }
.intro-grid .intro p { margin-bottom: 1.3em; line-height: 1.75; }
.intro-grid .intro p:last-child { margin-bottom: 0; }
.owner-card { position: relative; border-radius: 18px; overflow: hidden; margin: 0; }
.owner-card > img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.owner-plaque {
  position: absolute; right: 14px; bottom: 14px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, .95);
  border-radius: 10px; padding: 9px 16px 9px 12px;
  box-shadow: 0 2px 10px rgba(19, 19, 22, .18);
}
.owner-plaque img { width: 58px; height: auto; }
.owner-plaque > span { display: flex; flex-direction: column; line-height: 1.25; }
.owner-name { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink); }
.owner-role { font-size: .76rem; color: var(--text-soft); }
.intro-lg { font-size: 1.2rem; max-width: 62ch; }
.content-section ul li, .content-section ol li { margin-bottom: .35em; }

/* Checkliste */
.checklist-wrap { margin: 2.4rem 0; }
.checklist {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .7rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .checklist { grid-template-columns: 1fr 1fr; } }
.checklist li {
  position: relative; padding: .8rem 1rem .8rem 2.7rem;
  background: var(--zinc); border-radius: var(--r-card);
  font-weight: 500; color: var(--ink);
  transition: background-color .15s ease;
}
.checklist li:hover { background: var(--zinc-hover); }
.checklist li::before {
  content: ""; position: absolute; left: 1rem; top: .95rem;
  width: 1.15em; height: 1.15em; background: var(--magenta);
  -webkit-mask: var(--icon-check) center / contain no-repeat;
  mask: var(--icon-check) center / contain no-repeat;
}

/* Tabellen */
.table-wrap { overflow-x: auto; margin: 2.4rem 0; border: 1px solid var(--line); border-radius: var(--r-card); }
table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .97rem; }
caption {
  text-align: left; font-family: var(--font-head); font-weight: 700;
  padding: .8rem 1rem; color: var(--ink); background: var(--zinc);
  border-bottom: 2px solid var(--magenta);
}
th, td { padding: .65rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
thead th {
  background: var(--ink); color: #fff; font-family: var(--font-body);
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
}
tbody tr:nth-child(even) { background: var(--zinc); }
tbody tr:last-child td { border-bottom: 0; }

/* ---------- CTA-Band (Unterseiten) ---------- */
.cta-band {
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  margin-block: 2.5rem;
}
.cta-inner {
  background: linear-gradient(115deg, var(--magenta-deep), var(--magenta) 55%);
  color: #fff; border-radius: var(--r-card);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
  justify-content: space-between;
  padding: clamp(1.8rem, 4vw, 2.8rem) clamp(1.25rem, 3vw, 2.5rem);
}
.cta-band h2 { color: #fff; margin: 0 0 .3em; }
.cta-band p { margin: 0; max-width: 58ch; color: #ffe0ef; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- FAQ (§7) ---------- */
.faq { margin-top: 2.2rem; }
.faq-nap .faq h2 { margin-top: 0; line-height: 1; }
.faq h2 { font-size: clamp(1.35rem, 2.5vw, 1.875rem); }
.faq-list { display: block; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px 2px;
  font-weight: 500; font-size: 1.03rem; color: var(--ink);
  font-family: var(--font-body);
  transition: color .15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--magenta-deep); }
.faq summary::after {
  content: ""; width: 20px; height: 20px; flex: none;
  background: var(--magenta);
  -webkit-mask: var(--icon-plus) center / contain no-repeat;
  mask: var(--icon-plus) center / contain no-repeat;
}
.faq details[open] summary::after {
  -webkit-mask-image: var(--icon-minus);
  mask-image: var(--icon-minus);
}
.faq-a { padding: 0 2px 16px; }
.faq-a p { margin: 0; font-size: .95rem; line-height: 1.6; }

/* ---------- FAQ + NAP zweispaltig ---------- */
.faq-nap { display: grid; gap: 36px; margin-top: clamp(64px, 7vw, 104px); }
@media (min-width: 900px) { .faq-nap { grid-template-columns: 1fr 1fr; align-items: stretch; } }

/* ---------- Karten-Spalte (NAP + Map) ---------- */
.nap-col { display: flex; flex-direction: column; gap: 24px; }
.faq-nap .faq { margin-top: 0; }
.faq-nap .nap-box { flex: 1; display: flex; flex-direction: column; }
.faq-nap .nap-actions { margin-top: auto; padding-top: 20px; }
.wo-grid { display: grid; gap: 40px; align-items: stretch; padding-top: clamp(44px, 5vw, 72px); }
@media (min-width: 900px) { .wo-grid { grid-template-columns: 1fr 1fr; } }
.wo-grid h2 { margin-top: 0; margin-bottom: 1em; }
.wo-grid > div:first-child { display: flex; flex-direction: column; justify-content: center; }
.wo-grid p { margin-bottom: 1.3em; line-height: 1.8; }
.wo-grid p:last-child { margin-bottom: 0; }
.intro-map { margin-top: 1.4rem; }
.intro-map .intro { margin-block: 0; }
.map-card {
  margin: 0; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: var(--zinc);
}
.map-card img { width: 100%; height: auto; display: block; }
.map-btn { border-radius: 0; width: 100%; }

/* ---------- NAP-Karte (hell, §7) ---------- */
.nap-box {
  background: var(--zinc); border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  align-self: start;
}
.nap-box h2 {
  font-size: 1.4rem; margin: 6px 0 16px;
}
.nap-box address { font-size: 1.02rem; line-height: 1.9; margin: 0 0 14px; }
.nap-line {
  display: flex; align-items: center; gap: .8em;
  margin: 0 0 .8em; font-size: 1.02rem; line-height: 1.5;
}
.nap-line .ic { flex: none; width: 1.15em; height: 1.15em; vertical-align: 0; }
.nap-line a { color: var(--ink); text-decoration: none; }
.nap-line a:hover { color: var(--magenta-deep); }
.nap-actions { display: flex; gap: 10px; margin-top: 20px; }
.nap-actions .btn {
  flex: 1; text-align: center; padding: .75em .9em; font-size: .98rem;
  color: #fff; text-decoration: none;
}
.nap-actions .btn:hover { color: #fff; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1da851; color: #fff; }
.btn-wa .ic { width: 1.2em; height: 1.2em; }

/* ---------- Related ---------- */
.related { margin-top: clamp(64px, 7vw, 104px); text-align: center; }
.related h2 { font-size: 1.3rem; margin: 0 0 1.2em; color: var(--text-soft); font-weight: 600; }
.rel-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.rel-card {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55em 1.15em; text-decoration: none;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  color: var(--text); font-weight: 500; font-size: .95rem;
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.rel-card:hover { border-color: var(--magenta); background: var(--rose); color: var(--ink); }
.rel-arrow { color: var(--magenta); display: inline-flex; }
.rel-arrow .ic { width: 1em; height: 1em; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: 2rem; margin-block: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 5fr 7fr; align-items: start; } }
.contact-form {
  background: var(--zinc); border: 1px solid var(--line);
  padding: 26px; border-radius: var(--r-card);
}
.contact-form h2 { margin-top: 0; }
.form-hint { font-size: .85rem; color: var(--text-soft); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 500; color: var(--ink); margin-bottom: .3rem; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width: 100%; padding: .7em .8em; font: inherit;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: 3px solid var(--magenta); outline-offset: 0; border-color: var(--magenta); }
.field-hp { position: absolute; left: -9999px; }
.field-check { display: flex; gap: .6rem; align-items: flex-start; }
.field-check input { width: 1.2rem; height: 1.2rem; margin-top: .2rem; accent-color: var(--magenta); }
.field-check label { font-weight: 400; margin: 0; }

/* ---------- Footer (§8) ---------- */
.site-footer {
  background: var(--ink); color: #c8c8ce;
  margin-top: 3rem;
  font-size: .91rem;
}
.footer-grid {
  display: grid; gap: 28px; padding-block: 40px 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.f-col h2 {
  color: #fff; font-family: var(--font-head); font-weight: 600;
  font-size: 1.06rem; margin: 0 0 6px; text-transform: none; letter-spacing: 0;
}
.f-col ul { list-style: none; margin: 0; padding: 0; line-height: 2; }
@media (min-width: 1024px) { .f-col:nth-child(2) ul { columns: 2; column-gap: 1.5rem; } .f-col:nth-child(2) ul li { break-inside: avoid; } }
.f-col a { color: #c8c8ce; text-decoration: none; transition: color .15s ease; }
.f-col a:hover { color: #fff; }
.f-contact address { line-height: 2; margin-bottom: .9rem; }
.f-contact strong { color: #fff; }
.f-nap { margin-bottom: 1rem; }
.f-social { display: flex; gap: 18px; margin-top: 18px; }
.f-social a { color: #c8c8ce; transition: color .15s ease; }
.f-social a:hover { color: #fff; }
.f-social .ic-brand { width: 22px; height: 22px; }
.f-certs {
  border-top: 1px solid var(--steel-line);
  padding-block: 1.1rem; font-size: .78rem; color: #9a9aa2;
}
.f-certs p { margin-bottom: .3em; }
.f-certs ul { list-style: none; margin: 0; padding: 0; }
.f-bottom { border-top: 1px solid var(--steel-line); }
.f-bottom-inner {
  display: flex; flex-wrap: wrap; gap: .5rem 2rem; align-items: center;
  justify-content: space-between; padding-block: 16px; font-size: .8rem; color: #9a9aa2;
}
.f-bottom p { margin: 0; }
.f-bottom ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; }
.f-bottom a { color: #9a9aa2; text-decoration: none; transition: color .15s ease; }
.f-bottom a:hover { color: #fff; }

/* ---------- Sticky-Kontaktleiste (mobil, CI-Pflicht) ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex;
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5em;
  text-decoration: none;
  font-weight: 700; font-size: 1.05rem;
  padding: .9em .5em;
  transition: background-color .15s ease;
}
.sticky-call { background: var(--magenta); color: #fff; }
.sticky-call:hover { background: var(--magenta-deep); color: #fff; }
.sticky-wa { background: var(--ink); color: #fff; }
.sticky-wa:hover { background: var(--steel); color: #fff; }
@media (min-width: 900px) { .sticky-bar { display: none; } }
@media (max-width: 899.98px) { body { padding-bottom: 54px; } .site-footer { margin-bottom: 0; } }

/* ---------- Danke / 404 ---------- */
.danke { padding-block: 3rem; }
.danke .btn { margin-right: .6rem; margin-top: 1rem; }

/* ---------- Druck ---------- */
@media print {
  .site-header, .cta-band, .site-footer, .hero-actions, .contact-form, .sticky-bar, .hero-badge { display: none; }
  .hero, .hero-big { min-height: 0; background: none; }
  .hero-img { display: none; }
  .hero-panel { background: none; }
  .hero h1, .hero .kicker, .hero-text { color: #000; }
  body { padding-bottom: 0; }
}
