/* =========================================================
   MEISTERWERK — Basis-Website für das Handwerk
   Konvertierungsoptimiert, barrierearm (Ziel WCAG AA),
   DSGVO-freundlich: Schriften lokal, kein Tracking,
   externe Karte erst nach Einwilligung.
   --------------------------------------------------------
   Diese Datei ist als wiederverwendbare Vorlage gedacht:
   Farben, Abstände und Radien laufen über CSS-Variablen
   in :root – für ein neues Unternehmen reicht es meist,
   dort die Marken-Farben anzupassen.
   ========================================================= */

/* ---------- Lokale Schriften (kein Google-Server) ---------- */
@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("fonts/archivo-latin-700-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Archivo"; font-style: normal; font-weight: 800;
  font-display: swap; src: url("fonts/archivo-latin-800-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Hanken Grotesk"; font-style: normal; font-weight: 700;
  font-display: swap; src: url("fonts/hanken-grotesk-latin-700-normal.woff2") format("woff2");
}

:root {
  /* --- Marken-Farben (hier anpassen für neue Kunden) --- */
  --graphite:     #1b1f27;   /* dunkle Sektionen / Header */
  --graphite-2:   #232833;
  --graphite-deep:#13161d;
  --amber:        #f4a01b;   /* Signal-Akzent / Buttons */
  --amber-strong: #e08a00;   /* Hover */
  --amber-ink:    #a35e00;   /* Akzent-Text auf hellem Grund (Kontrast ~4.7:1) */
  --bg:           #f4f1ea;   /* Papier / Beton-hell */
  --card:         #ffffff;
  --cloud:        #e8e2d6;
  --ink:          #1c2029;
  --muted:        #585f6d;   /* gedämpfter Text (~5:1 auf --bg) */
  --steel:        #3d6079;   /* zweiter, ruhiger Akzent */
  --line:         rgba(27, 31, 39, 0.14);
  --line-soft:    rgba(27, 31, 39, 0.08);
  --ok:           #2e9e5b;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 18px 44px -28px rgba(19, 22, 29, 0.5);
  --shadow-card: 0 14px 34px -22px rgba(19, 22, 29, 0.45);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-body); font-size: 18px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 700;
  line-height: 1.08; letter-spacing: -0.02em; margin: 0;
}
p { margin: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }

/* ---------- Barrierefreiheit ---------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--amber); color: var(--graphite-deep); padding: 12px 20px; border-radius: 8px;
  font-weight: 700; text-decoration: none; transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber-ink); margin: 0 0 16px;
}
.eyebrow.on-dark { color: var(--amber); }

/* ---------- Demo-Leiste ---------- */
.demo-bar {
  background: var(--graphite-deep); color: #ffd9a0; text-align: center;
  font-size: 0.82rem; letter-spacing: 0.01em; padding: 8px 18px; font-weight: 600;
}
.demo-bar span { color: rgba(255, 217, 160, 0.7); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  text-decoration: none; padding: 15px 28px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; line-height: 1;
  transition: transform .16s ease, background .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-amber { background: var(--amber); color: var(--graphite-deep); box-shadow: 0 10px 24px -12px rgba(244, 160, 27, 0.9); }
.btn-amber:hover { background: var(--amber-strong); transform: translateY(-2px); }
.btn-dark { background: var(--graphite); color: #fff; }
.btn-dark:hover { background: var(--graphite-deep); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--graphite); }
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--graphite); border-color: var(--line); }
.btn-ghost-dark:hover { border-color: var(--graphite); transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 17px; }

/* ---------- Status-Chip (Erreichbarkeit) ---------- */
.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; padding: 8px 16px 8px 13px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); color: #fff;
}
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: #aeb6c7; flex: none; }
.status.is-open .dot { background: #5ed18a; animation: pulse 2.6s infinite; }
.status.is-closed .dot { background: #e8a86f; }
.status.on-light { color: var(--graphite); border-color: var(--line); background: #fff; }
.status.on-light .dot { background: #7e879b; }
.status.on-light.is-open .dot { background: var(--ok); }
.status.on-light.is-closed .dot { background: var(--amber-ink); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(94,209,138,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(94,209,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(94,209,138,0); }
}

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--graphite); box-shadow: 0 1px 0 rgba(255,255,255,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 15px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.brand .logo-mark {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  background: var(--amber); border-radius: 9px; color: var(--graphite-deep);
}
.brand .logo-mark svg { width: 22px; height: 22px; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .word { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: 0.06em; }
.brand .word .dot { color: var(--amber); }
.brand .sub { font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: rgba(255,255,255,0.86); text-decoration: none; font-size: 15.5px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-links .btn { font-size: 14.5px; padding: 11px 20px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(180deg, #222732 0%, var(--graphite) 58%, var(--graphite-deep) 100%);
}
/* Blaupausen-Raster als dezente Handwerk-Signatur */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 38px 38px, 38px 38px;
  mask-image: radial-gradient(120% 90% at 75% 0%, #000 35%, transparent 80%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 75% at 82% -8%, rgba(244,160,27,0.18), transparent 60%);
}
.hero-inner { position: relative; z-index: 1; padding-block: 80px 88px; max-width: 920px; }
.hero .rating {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px; padding: 7px 17px 7px 15px;
  font-size: 14px; font-weight: 600; margin-bottom: 26px; color: rgba(255,255,255,0.95);
}
.hero .rating .stars { color: var(--amber); letter-spacing: 1px; }
.hero h1 { font-size: clamp(2.7rem, 7.5vw, 5.2rem); font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; color: #f6f3ec; }
.hero h1 .amber { color: var(--amber); }
.hero-lede { margin-top: 24px; font-size: clamp(1.08rem, 2.2vw, 1.34rem); color: rgba(255,255,255,0.84); max-width: 50ch; line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-status { margin-top: 24px; }

/* Trust-Reihe direkt im Hero */
.hero-trust {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 26px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust .ht { display: inline-flex; align-items: center; gap: 9px; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.hero-trust .ht svg { width: 19px; height: 19px; color: var(--amber); flex: none; }

/* ---------- Highlights / USP-Band ---------- */
.highlights { background: var(--card); border-bottom: 1px solid var(--line-soft); }
.highlights .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.highlight { padding: 26px 20px; display: flex; align-items: center; gap: 14px; }
.highlight + .highlight { border-left: 1px solid var(--line-soft); }
.highlight .hi-ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; background: #fbeed6; border-radius: 10px; }
.highlight .hi-ico svg { width: 22px; height: 22px; color: var(--amber-ink); }
.highlight .hi-t { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--graphite); line-height: 1.15; }
.highlight .hi-s { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 3px; }

/* ---------- Sektionen ---------- */
.section { padding-block: 92px; }
.section-paper { background: var(--bg); }
.section-card { background: var(--card); }
.section-cloud { background: var(--cloud); }
.section-dark { background: var(--graphite); color: #fff; }

.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.12rem; }
.section-dark .section-head p { color: rgba(255,255,255,0.78); }

/* ---------- Leistungen ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 30px 28px 28px; box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -28px rgba(19,22,29,0.5); border-color: var(--line); }
.service-card .sc-ico { width: 54px; height: 54px; display: grid; place-items: center; background: #fbeed6; border-radius: 13px; margin-bottom: 20px; }
.service-card .sc-ico svg { width: 28px; height: 28px; color: var(--amber-ink); }
.service-card h3 { font-size: 1.32rem; color: var(--graphite); margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.98rem; }
.service-card ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.service-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); }
.service-card li svg { width: 18px; height: 18px; color: var(--ok); flex: none; margin-top: 3px; }

/* ---------- Ablauf / Prozess ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 24px 26px; }
.step .step-num {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: var(--graphite); color: var(--amber); font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem; margin-bottom: 18px;
}
.step h3 { font-size: 1.16rem; color: var(--graphite); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.95rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 52px; right: -12px; width: 24px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 6px, transparent 6px 11px);
  z-index: 1;
}

/* ---------- Über uns / Stat-Band ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.about-copy h2 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: 22px; }
.about-copy p { color: rgba(255,255,255,0.82); margin-bottom: 16px; }
.about-copy p.lede { font-size: 1.16rem; color: #fff; }
.about-copy .btn { margin-top: 12px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 24px 24px; }
.about-stat .fig { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--amber); line-height: 1; }
.about-stat .lab { display: block; margin-top: 8px; color: rgba(255,255,255,0.82); font-size: 0.95rem; }

/* ---------- Galerie / Referenzen ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-tile {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 20px; border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, var(--graphite-2), var(--graphite));
  color: #ece7dc;
}
.gallery-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.gallery-tile .ph-icon { width: 40px; height: 40px; color: var(--amber); }
.gallery-tile .ph-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.gallery-tile .ph-chip { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,0.12); color: #ece7dc; }

/* ---------- Bewertungen ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 14px;
}
.review .stars { color: var(--amber); letter-spacing: 1px; font-size: 1.05rem; }
.review p { color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--cloud); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--graphite); flex: none; }
.review .who .nm { font-weight: 700; color: var(--graphite); font-size: 0.98rem; }
.review .who .src { font-size: 0.82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.14rem; color: var(--graphite);
  padding: 22px 44px 22px 0; position: relative; line-height: 1.3;
}
.faq-q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 2.5px solid var(--amber-ink); border-bottom: 2.5px solid var(--amber-ink);
  transform: translateY(-65%) rotate(45deg); transition: transform .25s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-35%) rotate(-135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding: 0 44px 22px 0; font-size: 1rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.contact-form { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: 32px 30px; box-shadow: var(--shadow-card); }
.contact-form h3 { font-size: 1.5rem; color: var(--graphite); margin-bottom: 6px; }
.contact-form .fnote { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--graphite); margin-bottom: 6px; }
.field label .req { color: var(--amber-ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: #fdfcfa;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(244,160,27,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); margin: 4px 0 20px; }
.form-consent input { margin-top: 3px; flex: none; width: 17px; height: 17px; accent-color: var(--amber-strong); }
.form-consent a { color: var(--amber-ink); }
.contact-form .btn { width: 100%; }
.form-status { margin-top: 14px; font-size: 0.92rem; font-weight: 600; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: #c0392b; }

.contact-aside { display: grid; gap: 22px; }
.contact-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 24px; box-shadow: var(--shadow-card); }
.contact-card h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber-ink); margin: 0 0 16px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 13px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-row .ico { width: 21px; height: 21px; flex: none; color: var(--amber-ink); margin-top: 3px; }
.contact-row a { color: var(--graphite); text-decoration: none; font-weight: 600; }
.contact-row a:hover { color: var(--amber-ink); text-decoration: underline; }
.contact-row .lab { display: block; font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.96rem; }
.hours-table th { font-weight: 500; }
.hours-table td { text-align: right; color: var(--muted); }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today th, .hours-table tr.today td { color: var(--amber-ink); font-weight: 700; }

/* Karte mit Klick-zum-Laden-Einwilligung */
.map-card { background: var(--cloud); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-height: 260px; position: relative; }
.map-frame { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }
.map-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 26px;
  background-color: var(--cloud);
  background-image:
    linear-gradient(transparent 0 49.5%, var(--line-soft) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(90deg, transparent 0 49.5%, var(--line-soft) 49.5% 50.5%, transparent 50.5%);
  background-size: 56px 56px, 56px 56px;
}
.map-consent.hidden { display: none; }
.map-consent .pin svg { width: 36px; height: 36px; color: var(--amber-ink); }
.map-consent p { color: var(--muted); font-size: 0.86rem; max-width: 36ch; }
.map-consent .addr { font-weight: 700; color: var(--graphite); font-size: 0.98rem; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--graphite-deep); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(50% 120% at 85% 50%, rgba(244,160,27,0.16), transparent 60%);
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-block: 56px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 22ch; color: #f6f3ec; }
.cta-band p { margin-top: 10px; color: rgba(255,255,255,0.78); }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite-deep); color: rgba(255,255,255,0.72); padding-block: 56px 30px; font-size: 0.95rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-top .brand { margin-bottom: 14px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col button.linklike {
  color: rgba(255,255,255,0.78); text-decoration: none; background: none; border: 0;
  font: inherit; padding: 0; cursor: pointer; text-align: left;
}
.footer-col a:hover, .footer-col button.linklike:hover { color: #fff; text-decoration: underline; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 0.86rem; }
.footer-bottom a { color: rgba(255,255,255,0.78); }
.credit { color: rgba(255,255,255,0.5); }
.credit a { color: var(--amber); text-decoration: none; }

/* ---------- Schwebender Button (Mobil-CTA) ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber); color: var(--graphite-deep); text-decoration: none;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 12px 30px -8px rgba(19,22,29,0.6);
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .16s ease;
}
.fab.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab:hover { background: var(--amber-strong); }
.fab svg { width: 19px; height: 19px; }
body.banner-open .fab { display: none; }
@media (max-width: 520px) { .fab { right: 16px; bottom: 16px; padding: 13px 20px; } }

/* ---------- Cookie-Banner ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: var(--graphite); color: #fff; box-shadow: 0 -12px 34px -14px rgba(0,0,0,0.5);
  transform: translateY(110%); transition: transform .3s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 26px; justify-content: space-between; flex-wrap: wrap; padding-block: 20px; }
.cookie-text { font-size: 0.93rem; color: rgba(255,255,255,0.85); max-width: 64ch; line-height: 1.55; }
.cookie-text strong { color: #fff; }
.cookie-text a { color: var(--amber); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 12px 22px; font-size: 15px; }
@media (max-width: 640px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- Scroll-Fortschritt (Balken oben) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), #ffd28a);
  z-index: 80; pointer-events: none;
}

/* ---------- Scroll-Leiste (Desktop): Zollstock-Zickzack + Kapitel ---------- */
.scroll-rail { position: fixed; left: 18px; top: 96px; height: calc(100vh - 140px); width: 40px; z-index: 40; display: none; }
@media (min-width: 1240px) { .scroll-rail { display: block; } }
.scroll-rail svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.scroll-rail .track { fill: none; stroke: rgba(244,160,27,0.20); stroke-width: 2; }
.scroll-rail .draw  { fill: none; stroke: var(--amber); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.rail-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--amber); transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(244,160,27,0.20); pointer-events: none;
}
.rail-station {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  transform: translate(-50%, -50%); background: var(--bg);
  border: 2px solid var(--amber); transition: background .2s ease;
}
.rail-station:hover { background: #f7d9a6; }
.rail-station.passed { background: var(--amber); }
.rail-station::after {
  content: attr(data-label);
  position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  background: var(--graphite); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  font-family: var(--font-body); font-size: 13px; font-weight: 600; line-height: 1;
  padding: 7px 13px; border-radius: 999px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s ease;
}
.rail-station:hover::after, .rail-station:focus-visible::after { opacity: 1; }

/* Anker unter dem festen Header */
section[id] { scroll-margin-top: 86px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Rechtsseiten ---------- */
.legal { background: var(--bg); padding-block: 64px 88px; }
.legal .container { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: 12px; }
.legal .back { display: inline-block; margin-bottom: 26px; color: var(--amber-ink); text-decoration: none; font-weight: 700; font-size: 0.95rem; }
.legal .back:hover { text-decoration: underline; }
.legal h2 { font-size: 1.28rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; margin-bottom: 12px; }
.legal a { color: var(--amber-ink); }
.legal ul { padding-left: 20px; }
.demo-banner { background: #fbeed6; border: 1px solid var(--amber); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 32px; font-size: 0.95rem; color: var(--ink); }
.demo-banner strong { font-weight: 700; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .highlights .container { grid-template-columns: repeat(2, 1fr); }
  .highlight:nth-child(3) { border-left: none; }
  .highlight { border-top: 1px solid var(--line-soft); }
  .highlight:nth-child(1), .highlight:nth-child(2) { border-top: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 2px;
    background: var(--graphite); padding: 12px 26px 24px;
    border-top: 1px solid rgba(255,255,255,0.1); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; width: 100%; }
  .nav-links .btn { margin-top: 8px; width: 100%; }
  .services-grid, .reviews-grid, .gallery-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  body { font-size: 17px; }
  .section { padding-block: 62px; }
  .highlights .container { grid-template-columns: 1fr; }
  .highlight { border-left: none; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band .container { padding-block: 44px; }
}

/* ---------- Fokus / Zugänglichkeit ---------- */
a:focus-visible, .btn:focus-visible, button:focus-visible, .nav-toggle:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 6px;
}
.section-dark a:focus-visible, .hero a:focus-visible, .cookie-banner *:focus-visible, .site-footer *:focus-visible, .cta-band *:focus-visible {
  outline-color: var(--amber);
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .scroll-rail, .scroll-progress, .fab, .cookie-banner, .demo-bar { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
