/* =========================================================
   Scheulen Dachdecker – Stylesheet
   Design: bodenständig & traditionell (warm, handwerklich)
   ========================================================= */

/* Lokale Schriften (DSGVO-konform, ohne Google-Server) */
@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/merriweather.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/source-sans-3.woff2') format('woff2');
}

:root {
  /* Farben – abgeleitet aus dem Firmenlogo (Rot + Navy) */
  --clay:        #cc1318;   /* Logo-Rot – Hauptfarbe */
  --clay-dark:   #a10e12;
  --clay-light:  #e2342f;
  --anthracite:  #161454;   /* Logo-Navy – dunkle Flächen */
  --cream:       #f4ece1;   /* heller Hintergrund */
  --sand:        #e7dac6;
  --ink:         #1c1a2e;   /* dunkles Navy-Schwarz für Text */
  --muted:       #6b6473;
  --line:        #ddd0bd;
  --white:       #ffffff;
  --gold:        #d8a23c;   /* warmer Akzent auf dunklen Flächen */

  /* Typografie */
  --font-head: "Merriweather", Georgia, serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Maße */
  --maxw: 1140px;
  --radius: 10px;
  --shadow: 0 8px 28px rgba(43, 39, 34, 0.12);
  --shadow-sm: 0 3px 12px rgba(43, 39, 34, 0.08);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--clay); text-decoration: none; }
a:hover { color: var(--clay-dark); }
img { max-width: 100%; display: block; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* ---------- Service-Leiste ---------- */
.topbar { background: var(--anthracite); color: var(--cream); font-size: .88rem; }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: .45rem 0;
  flex-wrap: wrap;
}
.topbar-emergency { color: var(--gold); font-weight: 700; }
.topbar-emergency:hover { color: #e0a943; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--clay);
  margin: 0 0 .6rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--clay); color: var(--white); }
.btn-primary:hover { background: var(--clay-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Kopfzeile ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 236, 225, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
}
.primary-nav a { color: var(--ink); font-weight: 600; }
.primary-nav a:hover { color: var(--clay); }
.nav-cta {
  background: var(--clay);
  color: var(--white) !important;
  padding: .55rem 1.1rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--clay-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .4rem;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .25s, opacity .25s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(22,20,84,.82), rgba(140,12,16,.55)),
    url("../img/hero-dachdecker.jpg") center center / cover no-repeat,
    var(--anthracite);
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 9vw, 7rem) 0;
  max-width: 720px;
}
.hero .eyebrow { color: var(--sand); }
.hero h1 { color: var(--white); }
.hero-lead { font-size: 1.18rem; max-width: 56ch; color: #f3e9dd; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 1.4rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  list-style: none; padding: 0; margin: 0;
  font-weight: 600; color: #f3e9dd;
}

/* ---------- Sektionen ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-alt { background: var(--sand); }
.section-dark { background: var(--anthracite); color: var(--cream); }
.section-dark h2, .section-dark .eyebrow { color: var(--cream); }
.section-dark .eyebrow { color: var(--gold); }

.section-head { max-width: 680px; margin: 0 auto 2.6rem; text-align: center; }
.section-intro { color: var(--muted); font-size: 1.08rem; }

/* ---------- Leistungs-Karten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 14px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  color: #fff;
  background-color: var(--anthracite);
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 18px rgba(22, 20, 84, .14);
  transition: transform .2s ease, box-shadow .2s ease;
}
/* dunkler Marken-Filter über dem Foto (Lesbarkeit) */
.card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(22,20,84,.42) 0%, rgba(22,20,84,.86) 78%);
  transition: background .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(22, 20, 84, .3); }
.card:hover::before { background: linear-gradient(180deg, rgba(140,12,16,.45) 0%, rgba(22,20,84,.9) 80%); }

.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  margin-bottom: .9rem;
  transition: transform .2s ease, background .2s ease;
}
.card-icon svg { width: 28px; height: 28px; }
.card:hover .card-icon { background: rgba(255, 255, 255, .26); transform: scale(1.05); }
.card h3 { color: #fff; margin-bottom: .35rem; font-size: 1.2rem; }
.card p { color: rgba(255, 255, 255, .92); margin: 0; }

/* Hintergrundfoto je Kachel */
.cards .card:nth-child(1)  { background-image: url('../img/cards/steildach.jpg'); }
.cards .card:nth-child(2)  { background-image: url('../img/cards/flachdach.jpg'); }
.cards .card:nth-child(3)  { background-image: url('../img/cards/fassade.jpg'); }
.cards .card:nth-child(4)  { background-image: url('../img/cards/klempnerei.jpg'); }
.cards .card:nth-child(5)  { background-image: url('../img/cards/entwaesserung.jpg'); }
.cards .card:nth-child(6)  { background-image: url('../img/cards/begruenung.jpg'); }
.cards .card:nth-child(7)  { background-image: url('../img/cards/solar.jpg'); }
.cards .card:nth-child(8)  { background-image: url('../img/cards/blitz.jpg'); }
.cards .card:nth-child(9)  { background-image: url('../img/cards/schornstein.jpg'); }
.cards .card:nth-child(10) { background-image: url('../img/cards/geruest.jpg'); }
.cards .card:nth-child(11) { background-image: url('../img/cards/beton.jpg'); }
.cards .card:nth-child(12) { background-image: url('../img/cards/winter.jpg'); }
.cards .card:nth-child(13) { background-image: url('../img/cards/sturm.jpg'); }
.cards .card:nth-child(14) { background-image: url('../img/cards/beratung.jpg'); }
.cards .card:nth-child(15) { background-image: url('../img/cards/finanz.jpg'); }

/* ---------- Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: center;
}
.about-media { position: relative; }
.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-stat {
  position: absolute;
  right: -12px; bottom: -18px;
  background: var(--clay);
  color: var(--white);
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.about-stat strong { display: block; font-family: var(--font-head); font-size: 1.9rem; }
.about-stat span { font-size: .82rem; }

.checklist { list-style: none; padding: 0; margin: 1.2rem 0; }
.checklist li { padding-left: 1.9rem; position: relative; margin-bottom: .6rem; }
.checklist li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  color: var(--clay);
  font-weight: 700;
}

.trust { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; }
.trust-item { text-align: center; }
.trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--clay);
  line-height: 1;
}
.trust-item span { font-size: .85rem; color: var(--muted); }

/* Aus unserer Geschichte */
.history { margin-top: 3rem; }
.history-title { text-align: center; margin-bottom: 1.5rem; }
.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.history-grid figure { margin: 0; }
.history-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  filter: sepia(.18);
  transition: filter .25s ease, transform .2s ease;
}
.history-grid figure:hover img { filter: sepia(0); transform: translateY(-3px); }
.history-grid figcaption { margin-top: .5rem; font-size: .85rem; color: var(--muted); text-align: center; }

/* ---------- Referenzen / Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  /* Schiefer-Platzhalter, falls ein Bild (noch) fehlt */
  background:
    linear-gradient(135deg, #5a6470 0%, #3a424c 55%, #2b323a 100%);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(43,39,34,.8) 100%);
  pointer-events: none;
}
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  padding: .9rem 1rem;
  font-size: .98rem;
}

.testimonial {
  max-width: 720px;
  margin: 3rem auto 0;
  text-align: center;
  border: 0;
  padding: 0;
}
.testimonial p {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}
.testimonial cite { color: var(--muted); font-style: normal; font-weight: 600; }

/* ---------- Partner ---------- */
.partner-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}
.partner-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 1rem 1.2rem;
  box-shadow: 0 3px 10px rgba(22, 20, 84, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.partner-grid img {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .78;
  transition: filter .25s ease, opacity .25s ease;
}
.partner-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(22, 20, 84, .13);
}
.partner-grid li:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ---------- Karriere ---------- */
.jobs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.job-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.job-card--highlight {
  border-color: var(--clay);
  box-shadow: 0 0 0 1px var(--clay), var(--shadow-sm);
}
.job-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .6rem;
}
.job-head h3 { margin: 0; font-size: 1.15rem; }
.job-badge {
  flex: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--anthracite);
  background: rgba(22, 20, 84, .1);
  padding: .25rem .55rem;
  border-radius: 999px;
}
.job-badge--accent { color: #fff; background: var(--clay); }
.job-card > p { color: var(--muted); margin: 0 0 1rem; }
.job-req { list-style: none; padding: 0; margin: 0 0 1.3rem; }
.job-req li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .4rem;
  font-size: .92rem;
}
.job-req li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  color: var(--clay);
  font-weight: 700;
}
.job-apply {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 700;
  color: var(--clay);
}
.job-apply:hover { color: var(--clay-dark); text-decoration: underline; }

.benefits {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.benefits-title { margin: 0 0 1rem; }
.benefits-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .6rem 1.6rem;
}
.benefits-list li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 600;
}
.benefits-list li::before {
  content: "✔";
  position: absolute; left: 0; top: 0;
  color: var(--clay);
  font-weight: 700;
}
.benefits-cta { margin: 1.4rem 0 0; color: var(--muted); }

/* ---------- Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-label { color: var(--gold); font-weight: 700; }
.contact-list a, .contact-list address { color: var(--cream); font-style: normal; }
.contact-list a:hover { color: var(--white); text-decoration: underline; }

.contact-form {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .95rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--clay-light);
  outline-offset: 1px;
  border-color: var(--clay);
}
.contact-form textarea { resize: vertical; }
.form-consent {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-weight: 400 !important;
  font-size: .88rem;
  margin: .2rem 0 1.2rem;
}
.form-consent input { width: auto; margin-top: .25rem; }
.form-status { margin: .9rem 0 0; font-weight: 600; min-height: 1.2em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: var(--clay); }
.field-invalid { border-color: var(--clay) !important; background: #fbeee9 !important; }

/* ---------- Karte ---------- */
.map {
  margin-top: 2.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .14);
}
.map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-link {
  display: block;
  text-align: center;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .06);
  color: var(--gold);
  font-weight: 700;
}
.map-link:hover { background: rgba(255, 255, 255, .12); color: #e7b65a; }

@media (max-width: 520px) {
  .map iframe { height: 300px; }
}

/* ---------- Ablauf (Schritte) ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 16px rgba(22, 20, 84, .05);
}
.step-num {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #211e74, #161454);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.step h3 { margin: 0 0 .35rem; font-size: 1.15rem; }
.step p { margin: 0; color: var(--muted); }

/* ---------- FAQ ---------- */
.narrow { max-width: 820px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: .8rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.2rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--clay);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--clay); }
.faq details p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
}

/* ---------- Schnellkontakt (Floating Buttons) ---------- */
.fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.fab-btn {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
  transition: transform .15s ease, filter .15s ease;
}
.fab-btn:hover { color: #fff; filter: brightness(1.08); transform: translateY(-2px); }
.fab-btn svg { width: 22px; height: 22px; flex: none; }
.fab-phone { background: var(--clay); }
.fab-wa { background: #25D366; }
@media (max-width: 560px) {
  .fab-btn span { display: none; }
  .fab-btn { padding: .9rem; }
}

/* ---------- Rechtliche Seiten ---------- */
.legal-main { padding: clamp(2.4rem, 6vw, 4rem) 0; background: var(--cream); }
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.legal-main h2 { font-size: 1.25rem; margin: 2rem 0 .5rem; }
.legal-main p, .legal-main li { color: var(--ink); }
.legal-note {
  background: #fbeee9;
  border-left: 4px solid var(--clay);
  padding: .9rem 1.1rem;
  border-radius: 6px;
  color: var(--ink);
  font-size: .95rem;
}
.back-link { font-weight: 700; }

/* ---------- Fußzeile ---------- */
.site-footer { background: var(--clay-dark); color: #f0e3d6; padding: 2.6rem 0 1.6rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.footer-brand strong { font-family: var(--font-head); font-size: 1.25rem; color: var(--white); }
.footer-logo { height: 66px; width: auto; display: block; margin-bottom: .9rem; }
.footer-brand p { color: #e3d2c1; margin: .4rem 0 0; }
.footer-nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a, .footer-legal a { color: #f0e3d6; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--white); text-decoration: underline; }
.footer-legal { display: flex; flex-direction: column; gap: .4rem; }
.footer-legal p { font-size: .82rem; color: #d8c4b2; margin-top: .5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .primary-nav.open { max-height: 320px; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem 1.25rem 1rem;
  }
  .primary-nav li { border-bottom: 1px solid var(--line); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: .85rem 0; }
  .nav-cta { text-align: center; margin-top: .6rem; }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-stat { right: 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 520px) {
  .form-row.two-col { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: .1rem; }
  .hero-badges { gap: .4rem 1.2rem; }
}

/* Reduzierte Bewegung respektieren */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* =========================================================
   Zusatz-Komponenten (Verbesserungen)
   ========================================================= */

/* --- Gütesiegel-Leiste --- */
.trust-bar { background: var(--sand); border-bottom: 1px solid var(--line); }
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem 2rem;
  padding: .85rem 0;
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.trust-bar span { white-space: nowrap; }
.trust-bar span::first-letter { color: var(--clay); font-weight: 900; }

/* --- Aktive Navigation --- */
.primary-nav a.active { color: var(--clay); }

/* --- Kennzahlen-Band --- */
.stats-band { background: var(--anthracite); color: var(--cream); padding: clamp(2.2rem, 5vw, 3.2rem) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.9rem);
  color: #fff;
  line-height: 1;
}
.stat-label { display: block; margin-top: .45rem; font-size: .9rem; color: var(--sand); }

/* --- Bewertungen --- */
.reviews { margin-top: 3rem; }
.reviews-title { text-align: center; margin-bottom: .4rem; }
.reviews-source { text-align: center; color: #f5a623; font-weight: 700; letter-spacing: 1px; margin: 0 0 1.6rem; }
.reviews-cta { text-align: center; margin-top: 1.8rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.review { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: 1.6rem; box-shadow: var(--shadow-sm); }
.review-stars { color: #f5a623; letter-spacing: 2px; margin-bottom: .55rem; font-size: 1.05rem; }
.review blockquote { margin: 0 0 .8rem; font-style: italic; color: var(--ink); }
.review figcaption { font-weight: 700; color: var(--muted); font-size: .9rem; }
.review-src { font-weight: 600; color: var(--clay); }

/* --- Vorher/Nachher-Slider --- */
.ba-slider { position: relative; max-width: 900px; margin: 0 auto 2.4rem; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); touch-action: none; }
.ba-slider img { display: block; width: 100%; }
.ba-before { position: absolute; top: 0; left: 0; height: 100%; width: 50%; overflow: hidden; }
.ba-before img { position: absolute; top: 0; left: 0; height: 100%; width: auto; max-width: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 8px rgba(0,0,0,.45); pointer-events: none; }
.ba-handle::after {
  content: "⟷";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: var(--anthracite);
  display: grid; place-items: center; font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba-tag { position: absolute; top: 12px; padding: .25rem .6rem; border-radius: 6px; font-size: .78rem; font-weight: 700; color: #fff; pointer-events: none; }
.ba-tag-before { left: 12px; background: rgba(22,20,84,.8); }
.ba-tag-after { right: 12px; background: rgba(204,19,24,.85); }

/* --- Maps-Consent --- */
.map-consent {
  background: linear-gradient(135deg, #1b1850, #161454);
  color: var(--cream);
  min-height: 380px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1rem; padding: 2rem 1.5rem;
}
.map-consent-title { font-weight: 700; color: #fff; font-size: 1.05rem; margin: 0; }
.map-consent p { max-width: 48ch; margin: 0; color: var(--sand); }

/* --- Nach-oben-Button --- */
.to-top {
  position: fixed; left: 18px; bottom: 18px; z-index: 200;
  width: 46px; height: 46px; border: 0; border-radius: 50%;
  background: var(--anthracite); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--clay); }
.to-top svg { width: 22px; height: 22px; }

/* --- Scroll-Einblendungen --- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* --- Mobile-Feinschliff --- */
@media (max-width: 600px) {
  .section { padding: 2.8rem 0; }
  .hero-content { padding: 3rem 0; }
  .topbar-inner { justify-content: center; font-size: .8rem; gap: .4rem 1rem; }
  .trust-bar-inner { gap: .5rem 1.2rem; font-size: .85rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 1rem; }
  .partner-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .7rem; }
  .partner-grid li { height: 80px; padding: .8rem; }
  .to-top { left: 12px; bottom: 12px; }
  .fab { right: 12px; bottom: 12px; }
  .ba-handle::after { width: 36px; height: 36px; }
  .section-head { margin-bottom: 2rem; }
}

/* --- Datei-Upload im Formular --- */
.contact-form input[type="file"] {
  padding: .55rem;
  font-size: .9rem;
  cursor: pointer;
  background: var(--white);
}
.contact-form input[type="file"]::file-selector-button {
  margin-right: .8rem;
  padding: .45rem .9rem;
  border: 0;
  border-radius: 6px;
  background: var(--anthracite);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.contact-form input[type="file"]::file-selector-button:hover { background: var(--clay); }
.form-hint { display: block; margin-top: .4rem; font-size: .82rem; color: var(--muted); }
