/* ==========================================================================
   BETONLUX — Luxury Concrete Design, Buchs ZH
   Farben abgeleitet aus dem Logo (Gold / Silber / Tiefschwarz) und dem
   cremefarbenen Hintergrund der Firmenbroschüre.
   ========================================================================== */

/* --- Schriften: selbst gehostet, kein CDN ------------------------------- */
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* --- Tokens ------------------------------------------------------------- */
:root {
  --ink: #16171a;
  --ink-soft: #34363b;
  --muted: #6e7074;
  --line: #dcd8cc;

  --gold: #d9ae38;
  --gold-light: #f3cd5b;
  --gold-deep: #866512;      /* goldener Text auf Creme, Kontrast 4.9:1 */

  --silver: #bfc0bd;
  --cream: #f7f5ef;
  --cream-2: #efece2;
  --paper: #ffffff;
  --concrete: #1c1d21;

  --wrap: 1180px;
  --gut: 20px;

  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --shadow: 0 18px 50px -22px rgba(22, 23, 26, 0.45);
}

/* --- Reset -------------------------------------------------------------- */
*, *::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-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }   /* Browser-Standard sind 40px links/rechts — killt die Musterkreise */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; margin: 0 0 0.6em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 7vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 5vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); }
p { margin: 0 0 1.1em; }
a { color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold-deep); }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
strong { font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: #fff; padding: 12px 18px; font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* --- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
section { padding: 56px 0; }
.section-dark { background: var(--concrete); color: #f2f1ee; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: #fff; }
.section-paper { background: var(--paper); }

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--gold); }
.eyebrow::after {
  content: '';
  display: block;
  width: 46px; height: 2px;
  background: var(--gold);
  margin-top: 10px;
}

.lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 60ch; }
.section-dark .lead { color: #c9c8c4; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.02em; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: 2px;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.section-dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.section-dark .btn-ghost:hover { background: #fff; color: var(--ink); }

/* --- Kopfzeile ---------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 70px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 104px; height: auto; }
.nav-desktop { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: none;
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; white-space: nowrap;
}
.header-phone span { display: block; font-family: var(--sans); font-weight: 400; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.burger {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: 2px; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: background 0.2s; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink);
  transition: transform 0.25s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  /* padding-block, nu shorthand: <nav> are si clasa .wrap, iar un `padding`
     scurt ar suprascrie padding-inline de acolo si ar lipi textul de marginea
     ecranului pe telefon. */
  padding-block: 8px 20px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 13px 0;
  font-family: var(--display); font-weight: 700; font-size: 1.1rem;
  text-decoration: none; border-bottom: 1px solid var(--line);
}
.nav-mobile .nav-cta { margin-top: 16px; border: 0; }

/* --- Hero: Bild über die ganze Fläche, Text darüber --------------------- */
.hero { position: relative; padding: 0; background: var(--concrete); overflow: hidden; }
.hero-grid { display: grid; gap: 0; }
.hero-text {
  position: relative; z-index: 2; color: #fff;
  padding: 42px 0 92px; max-width: 640px;
}
.hero h1 { margin-bottom: 18px; color: #fff; }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 1.08rem; color: rgba(255, 255, 255, 0.88); max-width: 46ch; }
.hero-rule { width: 76px; height: 5px; background: var(--gold); margin: 0 0 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-stamp {
  display: inline-block; margin: 0 0 20px;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 9px 15px; border-left: 5px solid var(--gold);
  transform: rotate(-1.2deg);
}

/* --- Hero-Slider (Bilder wechseln, reines Überblenden) ------------------ */
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slides { position: absolute; inset: 0; background: var(--concrete); }
.hero-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.is-current { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }

/* Abdunkelung, damit die Schrift auf jedem Foto lesbar bleibt */
.hero-schleier {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 16, 19, 0.82) 0%, rgba(15, 16, 19, 0.66) 45%, rgba(15, 16, 19, 0.86) 100%);
}

/* Bedienelemente: Bildtitel, Striche, Pfeile — unten rechts gebündelt */
/* Links unten, solange der Anruf-Knopf rechts unten klebt */
.hero-ctrl {
  position: absolute; left: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 12px;
}
.hero-caption {
  margin: 0; background: rgba(22, 23, 26, 0.82); color: #fff;
  font-family: var(--display); font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 12px; border-left: 3px solid var(--gold);
  max-width: min(78vw, 340px);
}
.hero-knoepfe { display: flex; align-items: center; gap: 4px; }
.hero-dots { display: flex; gap: 2px; margin-right: 6px; }
.hero-dot {
  width: 30px; height: 30px; padding: 0; border: 0; background: none;
  cursor: pointer; display: grid; place-items: center;
}
.hero-dot::before {
  content: ''; display: block; width: 20px; height: 3px;
  background: rgba(255, 255, 255, 0.55); box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: background 0.2s ease;
}
.hero-dot[aria-current="true"]::before { background: var(--gold); }
.hero-pfeil {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: rgba(22, 23, 26, 0.82); border: 0; cursor: pointer;
  transition: background 0.2s ease;
}
.hero-pfeil svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2.2; }
.hero-pfeil:hover { background: var(--gold); }
.hero-pfeil:hover svg { stroke: var(--ink); }

/* Kennzahlen-Leiste */
.facts {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 34px; max-width: 620px;
}
.fact { flex: 1 1 140px; padding: 18px 4px 18px 0; }
.fact + .fact { border-left: 1px solid rgba(255, 255, 255, 0.3); padding-left: 18px; }
.fact b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 1.75rem; line-height: 1; color: #fff;
}
.fact span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); }

/* --- Vorteile (nummerierte Liste statt Icon-Grid) ----------------------- */
.usp-list { list-style: none; padding: 0; margin: 0; }
.usp-item { display: grid; grid-template-columns: 54px 1fr; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); }
.usp-item:last-child { border-bottom: 1px solid var(--line); }
.usp-num { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--gold-deep); line-height: 1; padding-top: 4px; }
.usp-item h3 { margin-bottom: 6px; }
.usp-item p { margin: 0; color: var(--ink-soft); }

/* --- Split-Blöcke (Text + Bild, abwechselnd) ---------------------------- */
.split { display: grid; gap: 26px; align-items: stretch; }
.split-body { align-self: center; }
.split-media { display: flex; min-height: 260px; }
.split-media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.split-body .checks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.split-body .checks li { position: relative; padding-left: 28px; margin-bottom: 9px; }
.split-body .checks li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px; border-left: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

/* --- Muster (Kreise) ---------------------------------------------------- */
.muster-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
.muster { text-align: center; }
.muster img { width: 100%; aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.muster h3 { font-size: 0.92rem; margin: 12px 0 2px; }
.muster p { font-size: 0.82rem; color: var(--muted); margin: 0; }
.muster-note { margin-top: 26px; padding: 16px 18px; background: var(--cream-2); border-left: 5px solid var(--gold); }
.muster-note p { margin: 0; font-size: 0.95rem; }

/* --- „Was wir machen": Text links, Bild bis an den Rand, Leiste unten ---- */
.machen { position: relative; overflow: hidden; padding-bottom: 0; }
.machen-grid { display: grid; gap: 0; }
.machen-text { padding-bottom: 34px; }
.machen h2 { margin-bottom: 18px; }
.machen h2 .gold { color: var(--gold-deep); }
.machen .lead { margin-bottom: 26px; }

.machen-bild { position: relative; margin-inline: calc(var(--gut) * -1); }
.machen-bild img { width: 100%; height: 300px; object-fit: cover; object-position: center 65%; }
/* Weicher Übergang vom Papierweiss ins Bild — nur dort, wo das Bild neben dem Text steht. */
.machen-bild::before { content: none; }

.punkte { list-style: none; padding: 0; margin: 0 0 30px; }
.punkte li {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.punkte li:first-child { padding-top: 6px; }
.punkte p { margin: 0; color: var(--ink-soft); }
.punkt-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
}
.punkt-icon svg {
  width: 21px; height: 21px; fill: none; stroke: var(--ink);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

.btn-linie {
  background: transparent; color: var(--gold-deep); border-color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.86rem;
  justify-content: space-between; min-width: 300px;
}
.btn-linie svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-linie:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.merkmale {
  list-style: none; margin: 0; padding: 26px 22px;
  background: var(--concrete); color: #e8e7e4;
  display: grid; gap: 22px; position: relative; z-index: 2;
}
.merkmale li { display: flex; align-items: center; gap: 15px; }
.merkmale svg {
  width: 30px; height: 30px; flex: none; fill: none; stroke: var(--gold);
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}
.merkmale b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
}
.merkmale span { font-size: 0.88rem; color: #a9a8a4; }

/* --- Referenz-Mosaik auf der Startseite --------------------------------- */
.ref-mosaik { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ref-mosaik a { display: block; position: relative; overflow: hidden; background: var(--cream-2); }
.ref-mosaik img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.ref-mosaik a:hover img { transform: scale(1.04); }
.ref-mosaik a:nth-child(1),
.ref-mosaik a:nth-child(6),
.ref-mosaik a:nth-child(7) { grid-column: span 2; }
.ref-mehr { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 26px; }
.ref-mehr p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* --- Prozess-Streifen (drei Baustellenbilder) --------------------------- */
.prozess { display: grid; gap: 16px; margin-top: 40px; }
.prozess figure { margin: 0; }
.prozess img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.prozess figcaption {
  margin-top: 10px; font-family: var(--display); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: #a3a29f;
}
.prozess figcaption b { display: block; color: var(--gold); font-weight: 700; }

/* --- Referenzseite: Galerie --------------------------------------------- */
.galerie-gruppe + .galerie-gruppe { margin-top: 54px; }
.galerie-kopf { margin-bottom: 20px; }
.galerie-kopf h2 { margin-bottom: 6px; }
.galerie-kopf p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.galerie { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.galerie a { display: block; position: relative; overflow: hidden; background: var(--cream-2); }
.galerie img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.galerie a:hover img { transform: scale(1.04); }
.galerie a::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 0 var(--gold); transition: box-shadow 0.2s ease;
}
.galerie a:hover::after { box-shadow: inset 0 0 0 3px var(--gold); }

/* --- Referenzseite: Projekte -------------------------------------------- */
.projekt-liste { display: grid; gap: 40px; }
.projekt { border-top: 1px solid var(--line); padding-top: 24px; }
.projekt-kopf { margin-bottom: 18px; }
.projekt-kopf h3 { margin-bottom: 8px; }
.projekt-kopf p { color: var(--ink-soft); margin-bottom: 10px; }
.projekt-daten { font-size: 0.85rem; color: var(--muted); margin: 0; }
.projekt-daten b { font-family: var(--display); font-weight: 700; color: var(--gold-deep); }

/* --- Referenzseite: Vorher / Nachher ------------------------------------ */
.vn-liste { display: grid; gap: 34px; }
.vn { border-top: 1px solid var(--line); padding-top: 22px; }
.vn h3 { margin-bottom: 4px; }
.vn > p { color: var(--ink-soft); max-width: 62ch; }
.vn-paar { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.vn-paar figure { margin: 0; position: relative; }
.vn-paar img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.vn-paar figcaption {
  position: absolute; left: 0; top: 0;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 11px;
}
.vn-paar figure:last-child figcaption { background: var(--gold); color: var(--ink); }

/* --- Lightbox ----------------------------------------------------------- */
.lightbox {
  border: 0; padding: 0; max-width: 100vw; max-height: 100vh;
  width: 100%; height: 100%; background: rgba(12, 12, 14, 0.96); color: #fff; overflow: hidden;
}
.lightbox::backdrop { background: rgba(12, 12, 14, 0.96); }
.lb-buehne { height: 100%; display: grid; grid-template-rows: 1fr auto; padding: 12px; }
.lb-bild { display: grid; place-items: center; min-height: 0; overflow: hidden; }
.lb-bild img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.lb-leiste {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 4px 4px;
}
.lb-text { font-size: 0.88rem; color: #d7d6d2; margin: 0; }
.lb-zaehler { font-family: var(--display); font-size: 0.75rem; letter-spacing: 0.18em; color: var(--gold); display: block; }
.lb-knoepfe { display: flex; gap: 6px; flex: none; }
.lb-knoepfe button {
  width: 46px; height: 46px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.1); border: 0; cursor: pointer;
  transition: background 0.2s ease;
}
.lb-knoepfe button:hover { background: var(--gold); }
.lb-knoepfe svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.2; }
.lb-knoepfe button:hover svg { stroke: var(--ink); }

/* --- Ablauf ------------------------------------------------------------- */
.ablauf { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.ablauf li { counter-increment: step; position: relative; padding: 0 0 26px 42px; border-left: 2px solid rgba(217, 174, 56, 0.35); margin-left: 12px; }
.ablauf li:last-child { border-left-color: transparent; padding-bottom: 0; }
.ablauf li::before {
  content: counter(step); position: absolute; left: -15px; top: 0;
  width: 28px; height: 28px; display: grid; place-items: center;
  background: var(--gold); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 0.85rem; border-radius: 50%;
}
.ablauf h3 { margin-bottom: 4px; }
.ablauf p { margin: 0; color: var(--ink-soft); }
.section-dark .ablauf p { color: #c9c8c4; }

/* --- Einsatzbereiche ---------------------------------------------------- */
/* Der dunkle Ton dieses Blocks haengt an einer Variablen — eine Zeile
   aendern und Band, Ecke und Icons ziehen mit. */
.einsatz { --tief: var(--concrete); position: relative; overflow: hidden; }
.einsatz-grid { display: grid; gap: 34px; position: relative; z-index: 1; }

/* Dunkle Ecke oben rechts, gepunktet — nur Deko, ab Tablet sichtbar */
.einsatz-ecke { display: none; }

/* Kicker mit goldener Kapsel davor, statt der Linie darunter */
.eyebrow-pill { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.eyebrow-pill::after { display: none; }
.eyebrow-pill::before {
  content: ''; flex: none;
  width: 30px; height: 13px;
  border: 2px solid var(--gold); border-radius: 7px;
}

/* Pinselstrich unter dem letzten Wort der Ueberschrift */
.strich { position: relative; white-space: nowrap; }
.strich::after {
  content: ''; position: absolute; left: -3px; right: -7px; bottom: -0.06em;
  height: 0.2em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18' preserveAspectRatio='none'%3E%3Cpath d='M3 11C58 3 148 2 297 7 148 14 58 16 3 11Z' fill='%23d9ae38'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.einsatz-lead { color: var(--ink-soft); max-width: 46ch; margin-bottom: 30px; }

/* Die sechs Karten */
.bereich-karten {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
.bereich-karten li {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px 16px 16px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
}
.bereich-karten img {
  width: 46px; height: 46px; flex: none;
  opacity: 0.86;
}
.bereich-karten span {
  font-family: var(--display); font-weight: 500; font-size: 0.98rem; line-height: 1.35;
}
/* geschuetztes Leerzeichen — sonst steht der Strich in engen Spalten allein
   auf der ersten Zeile */
.bereich-karten span::before { content: '—\00A0'; color: var(--gold); }

/* Dunkles Band unter den Karten */
.einsatz-band {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px; border-radius: 14px;
  background: var(--tief); color: #efeee9;
}
.einsatz-band svg {
  width: 34px; height: 34px; flex: none; margin-top: 2px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.einsatz-band strong {
  display: block; font-family: var(--display); font-size: 1.04rem;
  color: var(--gold-light); margin-bottom: 3px;
}
.einsatz-band span { display: block; font-size: 0.92rem; color: #c9c8c4; }

/* Foto plus schwebende Plakette */
.einsatz-media { position: relative; margin: 0; }
.einsatz-media img {
  width: 100%; border-radius: 16px;
  aspect-ratio: 4 / 3; object-fit: cover;
}
/* position + z-index, sonst malt das Bild (ersetztes Element) ueber den
   Hintergrund der Plakette und das Icon steht auf dem Foto */
.einsatz-badge {
  position: relative; z-index: 2;
  margin: -34px 0 0 14px; max-width: 260px;
  padding: 18px 20px; border-radius: 14px;
  background: var(--paper); border: 1px solid var(--gold);
  box-shadow: 0 12px 30px rgba(22, 23, 26, 0.09);
}
.einsatz-badge svg {
  width: 30px; height: 30px; display: block; margin-bottom: 10px;
  stroke: var(--gold-deep); fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.einsatz-badge b { display: block; font-family: var(--display); font-size: 1rem; margin-bottom: 4px; }
.einsatz-badge span { display: block; font-size: 0.92rem; color: var(--ink-soft); }

/* --- Orte / Einzugsgebiet ----------------------------------------------- */
.orte { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.orte li {
  font-size: 0.85rem; padding: 6px 13px;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 2px; color: #d6d5d1;
}

/* --- Kontakt / Formular ------------------------------------------------- */
.kontakt-grid { display: grid; gap: 32px; }
.kontakt-karte { background: var(--paper); border: 1px solid var(--line); padding: 24px; }
.kontakt-zeile { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.kontakt-zeile:last-child { border-bottom: 0; }
.kontakt-zeile svg { width: 22px; height: 22px; flex: none; stroke: var(--gold-deep); fill: none; stroke-width: 1.6; margin-top: 3px; }
.kontakt-zeile b { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.kontakt-zeile a, .kontakt-zeile span { font-family: var(--display); font-weight: 500; font-size: 1.02rem; text-decoration: none; }

form { display: grid; gap: 16px; }
.feld-reihe { display: grid; gap: 16px; }
label { display: block; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px; font-weight: 600; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; min-height: 50px; padding: 12px 14px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 2px;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-deep); outline: 2px solid rgba(134, 101, 18, 0.25); outline-offset: 0; }
.dsgvo { display: flex; gap: 11px; align-items: flex-start; }
.dsgvo input { width: 20px; height: 20px; margin-top: 3px; flex: none; accent-color: var(--gold-deep); }
.dsgvo label { text-transform: none; letter-spacing: 0; font-size: 0.88rem; font-weight: 400; margin: 0; line-height: 1.5; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-hinweis { font-size: 0.85rem; color: var(--muted); margin: 0; }
.form-fehler {
  background: #fdecec; border-left: 5px solid #c0392b; padding: 13px 16px; margin: 0 0 18px;
  font-size: 0.93rem;
}

/* --- Zahlen-Band (Text ohne Bild, füllt die Breite) --------------------- */
.zahlen-band { display: grid; gap: 26px; }
.zahlen { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 0; }
.zahlen div { border-top: 3px solid var(--gold); padding-top: 12px; }
.zahlen dt {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1; color: var(--ink);
}
.zahlen dd { margin: 6px 0 0; font-size: 0.88rem; color: var(--muted); }

/* --- Schluss-CTA (Gold, damit er sich vom Fuss absetzt) ----------------- */
.cta-band { background: var(--gold); color: var(--ink); padding: 48px 0; }
.cta-band h2 { color: var(--ink); margin-bottom: 10px; }
.cta-band p { color: #4a3c12; max-width: 52ch; }
.cta-band .btn-gold { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-band .btn-gold:hover { background: #000; border-color: #000; color: #fff; }
.cta-band .btn-ghost { color: var(--ink); border-color: var(--ink); }
.cta-band .btn-ghost:hover { background: var(--ink); color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* --- Zweispaltiger Abschnittskopf --------------------------------------- */
.kopf-2 { margin-bottom: 34px; }
.kopf-2 h2 { margin-bottom: 14px; }
.kopf-2 .lead { margin-bottom: 0; }

/* --- Fusszeile ---------------------------------------------------------- */
.footer { background: var(--concrete); color: #b9b8b4; padding: 46px 0 0; font-size: 0.92rem; }
.footer a { color: #e6e5e2; text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; gap: 30px; }
.footer img { width: 170px; margin-bottom: 16px; }
.footer .footer-titel {
  font-family: var(--display); font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: #fff; margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer-bottom {
  margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0 26px; font-size: 0.82rem; color: #8d8c89;
  display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between;
}

/* --- Sticky Anruf-Knopf (mobil) ----------------------------------------- */
.call-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 56px; padding: 0 20px;
  background: var(--gold); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border-radius: 2px;
  box-shadow: 0 10px 26px -8px rgba(22, 23, 26, 0.6);
}
.call-fab svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 1.9; }

/* --- Cookie-Banner ------------------------------------------------------ */
.cookie {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 80;
  background: var(--ink); color: #e8e7e4; padding: 18px;
  border-left: 5px solid var(--gold); box-shadow: var(--shadow);
  font-size: 0.9rem;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0 0 14px; }
.cookie a { color: var(--gold); }
.cookie-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie button {
  min-height: 44px; padding: 10px 18px; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: 0.88rem;
  border-radius: 2px; border: 1px solid var(--gold);
}
.cookie .c-all { background: var(--gold); color: var(--ink); }
.cookie .c-min { background: transparent; color: var(--gold); }

/* --- Seitenkopf (Unterseiten) ------------------------------------------- */
.seiten-kopf { background: var(--cream); border-bottom: 1px solid var(--line); padding: 38px 0 32px; }
.seiten-kopf h1 { margin-bottom: 12px; font-size: clamp(1.9rem, 6vw, 3.1rem); }
.seiten-kopf .lead { max-width: 58ch; }

/* --- Leistungs-Zeilen (asymmetrisch) ------------------------------------ */
.leistung-liste { margin: 0; }
.leistung { padding: 26px 0; border-top: 1px solid var(--line); }
.leistung:last-child { border-bottom: 1px solid var(--line); }
.leistung h3 { margin-bottom: 6px; }
.leistung p { margin: 0; color: var(--ink-soft); max-width: 62ch; }
.leistung .ort { display: block; margin-top: 8px; font-size: 0.85rem; color: var(--muted); }

/* --- Datenliste --------------------------------------------------------- */
.daten { margin: 0; }
.daten > div { display: grid; gap: 3px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.daten dt { font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); }
.daten dd { margin: 0; font-family: var(--display); font-weight: 500; font-size: 1.02rem; }
.section-dark .daten > div { border-bottom-color: rgba(255,255,255,0.14); }
.section-dark .daten dt { color: #a3a29f; }
.section-dark .daten dd { color: #fff; }

/* --- Ehrlicher Hinweis-Kasten ------------------------------------------- */
.hinweis-kasten { background: var(--cream-2); border-left: 5px solid var(--gold); padding: 20px 22px; }
.hinweis-kasten h3 { margin-bottom: 8px; }
.hinweis-kasten p:last-child { margin-bottom: 0; }

/* --- Rechtstexte -------------------------------------------------------- */
.legal { max-width: 760px; padding-block: 46px; }
.legal h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); margin-bottom: 8px; }
.legal h2 { font-size: 1.18rem; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 0.97rem; color: var(--ink-soft); }
.legal .stand { color: var(--muted); font-size: 0.87rem; }
.todo { background: var(--cream-2); border-left: 5px solid var(--gold); padding: 3px 8px; font-weight: 600; }

/* --- 404 / Danke -------------------------------------------------------- */
.mitteilung { min-height: 58vh; display: grid; align-content: center; padding-block: 60px; }
.mitteilung h1 { margin-bottom: 12px; }

/* ==========================================================================
   Ab 640px
   ========================================================================== */
@media (min-width: 640px) {
  :root { --gut: 28px; }
  section { padding: 72px 0; }
  .hero-text { padding: 60px 0 104px; }
  .hero-ctrl { padding: 16px; }
  .prozess { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .machen-bild img { height: 420px; }
  .merkmale { grid-template-columns: repeat(2, 1fr); gap: 26px 34px; padding: 30px 30px; }
  .galerie { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .ref-mosaik { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .ref-mosaik a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .ref-mosaik a:nth-child(1) img { aspect-ratio: auto; height: 100%; }
  .vn-paar { gap: 12px; }
  .lb-buehne { padding: 20px; }
  .feld-reihe { grid-template-columns: 1fr 1fr; }
  .muster-grid { grid-template-columns: repeat(3, 1fr); gap: 26px 22px; }
  .bereich-karten { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
  .einsatz-badge { position: absolute; left: 22px; bottom: -26px; margin: 0; }
  .einsatz-media { margin-bottom: 44px; }
  .fact b { font-size: 2rem; }
}

/* ==========================================================================
   Ab 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  section { padding: 92px 0; }
  .burger { display: none; }
  .nav-mobile { display: none !important; }
  .nav-desktop { display: flex; align-items: center; gap: 26px; }
  .nav-desktop a {
    font-family: var(--display); font-weight: 500; font-size: 0.94rem;
    text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent;
  }
  .nav-desktop a:hover, .nav-desktop a[aria-current="page"] { border-bottom-color: var(--gold); color: var(--ink); }
  .header-phone { display: block; text-align: right; }
  .header-inner { min-height: 88px; }
  .brand img { width: 130px; }

  .hero-grid { min-height: min(86vh, 760px); align-content: center; }
  .hero-text { padding: 84px 0 104px; max-width: 680px; }
  .hero-stamp { font-size: 0.76rem; padding: 11px 18px; }
  /* Links dunkler, rechts bleibt das Foto offen */
  .hero-schleier {
    background: linear-gradient(90deg, rgba(15, 16, 19, 0.93) 0%, rgba(15, 16, 19, 0.86) 34%, rgba(15, 16, 19, 0.58) 62%, rgba(15, 16, 19, 0.28) 100%);
  }
  .hero-ctrl {
    left: auto; right: 0; align-items: flex-end;
    padding: 20px; gap: 10px;
  }
  .hero-caption { font-size: 0.73rem; padding: 8px 14px; }

  .galerie { grid-template-columns: repeat(4, 1fr); }
  .galerie-gruppe + .galerie-gruppe { margin-top: 72px; }
  .projekt-liste { gap: 54px; }
  .projekt { display: grid; grid-template-columns: 0.3fr 0.7fr; gap: 40px; align-items: start; padding-top: 30px; }
  .projekt-kopf { margin-bottom: 0; }
  .projekt-bilder { grid-template-columns: repeat(4, 1fr); }
  .vn-liste { gap: 46px; }
  .vn { display: grid; grid-template-columns: 0.34fr 0.66fr; gap: 40px; align-items: start; padding-top: 28px; }
  .vn > p { margin-bottom: 0; }
  .ref-mehr { gap: 26px; margin-top: 34px; }

  /* Bild rechts bis an den Fensterrand, Text links, dunkle Leiste überlappt */
  .machen { padding-bottom: 92px; }
  .machen-grid { grid-template-columns: 0.54fr 0.46fr; gap: 56px; align-items: stretch; }
  .machen-text { padding: 0 0 76px; align-self: center; }
  .machen-bild { margin-inline: 0; margin-right: calc((100vw - var(--wrap)) / -2 - 24px); }
  .machen-bild img { height: 100%; min-height: 620px; }
  .machen-bild::before {
    content: ''; position: absolute; inset: 0 auto 0 0; width: 30%;
    background: linear-gradient(90deg, var(--paper) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }
  .merkmale {
    grid-template-columns: repeat(4, 1fr); gap: 0; padding: 26px 0;
    margin-top: -72px; box-shadow: var(--shadow);
  }
  .merkmale li { padding: 4px 24px; align-items: center; }
  .merkmale span { display: block; line-height: 1.4; }
  .merkmale li + li { border-left: 1px solid rgba(255, 255, 255, 0.14); }

  .split { grid-template-columns: 1fr 1fr; gap: 54px; }
  .split-reverse .split-media { order: 2; }
  .split-wide { grid-template-columns: 1.15fr 0.85fr; }

  .einsatz-grid { grid-template-columns: 1.02fr 0.98fr; gap: 58px; align-items: center; }
  .einsatz-text h2 { font-size: clamp(2.2rem, 3.6vw, 3.1rem); }
  .bereich-karten { margin-bottom: 30px; }
  .einsatz-media img { aspect-ratio: 3 / 4; }

  /* Dunkle Ecke erst hier — darunter steht sie ohne Foto daneben allein
     in der Gegend herum */
  .einsatz-ecke {
    display: block; position: absolute; z-index: 0;
    top: -80px; right: -90px; width: 320px; height: 320px;
    border-radius: 0 0 0 160px; background: var(--concrete);
  }
  .einsatz-ecke::after {
    content: ''; position: absolute; right: 94px; bottom: 66px; width: 116px; height: 96px;
    background-image: radial-gradient(var(--gold) 1.4px, transparent 1.4px);
    background-size: 15px 15px; opacity: 0.55;
  }

  /* Zwei goldene Haarlinien als Klammer um das Foto */
  .einsatz-media::before, .einsatz-media::after { content: ''; position: absolute; }
  .einsatz-media::before {
    left: -24px; top: -24px; width: 52%; height: 76px;
    border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
    border-radius: 20px 0 0 0;
  }
  .einsatz-media::after {
    right: -24px; bottom: -24px; width: 38%; height: 104px;
    border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold);
    border-radius: 0 0 20px 0;
  }

  .seiten-kopf { padding: 64px 0 54px; }
  .leistung { display: grid; grid-template-columns: 0.36fr 0.64fr; gap: 34px; align-items: start; padding: 30px 0; }
  .leistung h3 { margin-bottom: 0; }
  .daten > div { grid-template-columns: 0.38fr 0.62fr; align-items: baseline; gap: 16px; }
  .kontakt-grid { grid-template-columns: 0.85fr 1.15fr; gap: 54px; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
  .call-fab { display: none; }
  /* links unten — rechts unten sitzen die Slider-Knöpfe im Hero */
  .cookie { left: 24px; right: auto; bottom: 24px; max-width: 430px; }
  .muster-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 44px; }
  .muster h3 { font-size: 1rem; margin-top: 16px; }
  .muster p { font-size: 0.86rem; }
  .usp-item { grid-template-columns: 84px 1fr; gap: 22px; padding: 28px 0; }
  .usp-num { font-size: 2rem; }
  .usp-item p { max-width: 78ch; }

  .kopf-2 {
    display: grid; grid-template-columns: 0.52fr 0.48fr; gap: 54px;
    align-items: end; margin-bottom: 46px;
  }
  .kopf-2 h2 { margin-bottom: 0; }
  .kopf-2 .lead { padding-bottom: 6px; }

  .zahlen-band { grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: center; }
  .zahlen { grid-template-columns: repeat(4, 1fr); gap: 26px; }
}

/* ==========================================================================
   Ab 1280px
   ========================================================================== */
@media (min-width: 1280px) {
  :root { --gut: 34px; }
  .hero-text { padding: 104px 0; }
}

/* --- Sprachumschalter ---------------------------------------------------- */
.lang-switch{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:44px; height:44px; padding:0 12px;
  font-family:var(--display); font-weight:700; font-size:.82rem; letter-spacing:.08em;
  text-decoration:none; color:var(--ink);
  border:1px solid var(--line); border-radius:2px; background:transparent;
}
.lang-switch:hover,.lang-switch:focus-visible{ border-color:var(--ink); background:var(--paper); }
.vn-paar--einzeln { grid-template-columns: 1fr; }
.vn-paar--einzeln img { aspect-ratio: 16/10; }
