/* ============================================================
   Haushaltsauflösungen Coufal – Redesign-Demo
   Helles, seriöses Layout · Marken-Gelb als veredelter Bernstein-Akzent
   Archivo (Display) + Figtree (Text) · typografisch, ohne Stockfotos
   ============================================================ */

:root {
  --ink: #191a1c;          /* Graphit, warmes Fast-Schwarz */
  --ink-soft: #2c2d30;
  --paper: #fbfaf7;        /* warmes Off-White */
  --paper-2: #f2efe8;      /* getönte Fläche */
  --line: #e2ddd2;
  --text: #26272a;
  --text-muted: #63625d;
  --text-inv: #edece7;
  --text-inv-muted: #a5a49d;
  --amber: #f2b70b;        /* Markengelb, veredelt (Flächen, dunkle Schrift darauf) */
  --amber-deep: #d99f04;
  --amber-text: #8a6503;   /* Gelbton als Text auf hell (AA) */
  --focus: #b47f00;

  --r: 10px;
  --shadow-soft: 0 12px 32px rgba(41, 36, 20, 0.10);
  --shadow-card: 0 4px 18px rgba(41, 36, 20, 0.07);

  --f-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --f-body: "Figtree", "Segoe UI", system-ui, sans-serif;

  --container: 1140px;
  --nav-h: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--amber-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }
::selection { background: #f6d97c; color: var(--ink); }

.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); }
.h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); font-weight: 750; line-height: 1.05; letter-spacing: -0.022em; }
.h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
.h3 { font-size: 1.32rem; font-weight: 700; line-height: 1.25; }
.h4 { font-size: 1.06rem; font-weight: 650; }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.2rem); line-height: 1.62; color: var(--text-muted); max-width: 64ch; }
p + p { margin-top: 0.9em; }

.mark-rule { display: inline-block; width: 54px; height: 5px; background: var(--amber); border-radius: 3px; margin-bottom: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 650; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--r); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: var(--amber-deep); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: #c9c3b4; }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.btn-inv { background: transparent; color: var(--text-inv); border-color: rgba(237, 236, 231, 0.35); }
.btn-inv:hover { border-color: rgba(237, 236, 231, 0.75); color: #fff; }

.link-more { display: inline-flex; align-items: center; gap: 7px; font-weight: 650; font-family: var(--f-display); text-decoration: none; color: var(--ink); }
.link-more::after { content: "→"; color: var(--amber-deep); transition: transform 0.18s ease; }
.link-more:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; flex-direction: column; gap: 1px; text-decoration: none; line-height: 1.05; }
.brand strong { font-family: var(--f-display); font-size: 1.28rem; font-weight: 800; letter-spacing: 0.02em; color: var(--ink); }
.brand strong span { color: var(--amber-deep); }
.brand em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 9px 12px; font-size: 0.97rem; font-weight: 500;
  color: var(--text); text-decoration: none; border-radius: 8px;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.nav-links a:hover { background: var(--paper-2); }
.nav-links a[aria-current="page"] { color: var(--amber-text); font-weight: 650; }

.nav-cta {
  display: inline-flex; align-items: center; padding: 11px 16px;
  background: var(--amber); color: var(--ink);
  font-family: var(--f-display); font-weight: 700; font-size: 0.95rem;
  border-radius: 9px; text-decoration: none; white-space: nowrap;
  transition: background-color 0.2s ease;
}
.nav-cta:hover { background: var(--amber-deep); color: var(--ink); }

.nav-toggle {
  display: none; background: none; border: 1px solid #c9c3b4; border-radius: 9px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink);
}

/* ---------- Hero ---------- */
.hero { background: var(--paper); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-block: clamp(44px, 7vh, 84px);
}
.hero-copy .h1 { margin-bottom: 18px; }
.hero-copy .h1 .amber-word { color: var(--amber-deep); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.wegweiser { display: grid; gap: 14px; }
.wegweiser a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 22px 24px;
  border-radius: var(--r);
  text-decoration: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.12rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease, background-color 0.18s ease;
}
.wegweiser a::after { content: "→"; font-size: 1.2rem; color: var(--amber-deep); }
.wegweiser a:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.wegweiser a.primary { background: var(--amber); border-color: var(--amber); }
.wegweiser a.primary::after { color: var(--ink); }
.wegweiser a.primary:hover { background: var(--amber-deep); }
.wegweiser a small { display: block; font-family: var(--f-body); font-weight: 400; font-size: 0.88rem; color: var(--text-muted); margin-top: 3px; }
.wegweiser a.primary small { color: rgba(25, 26, 28, 0.72); }
.wegweiser a > div { min-width: 0; }

/* ---------- Fakten ---------- */
.facts { background: var(--paper); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: 26px; border-bottom: 1px solid var(--line); }
.fact { padding-inline: clamp(14px, 2vw, 28px); border-left: 1px solid var(--line); }
.fact:first-child { border-left: none; padding-left: 0; }
.fact strong { display: block; font-family: var(--f-display); font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.fact span { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Sektionen ---------- */
.section { padding-block: clamp(60px, 8.5vw, 104px); }
.section-tinted { background: var(--paper-2); }
.section-head { max-width: 700px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head .h2 { margin-bottom: 12px; }

/* Leistungs-Zeilen (editorial) */
.service-rows { display: grid; }
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  padding-block: clamp(26px, 3.5vw, 40px);
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: background-color 0.15s ease;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { background: #fff; }
.service-row .h3 { transition: color 0.15s ease; }
.service-row:hover .h3 { color: var(--amber-text); }
.service-row p { font-size: 0.99rem; color: var(--text-muted); }
.service-row .arrow { font-size: 1.4rem; color: var(--amber-deep); font-family: var(--f-display); }

/* Ablauf */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 3vw, 36px); }
.step { border-top: 3px solid var(--amber); padding-top: 16px; background: transparent; }
.step .h4 { margin-bottom: 6px; }
.step p { font-size: 0.94rem; color: var(--text-muted); }

/* USP-Band dunkel (Verwertung) */
.usp-band { background: var(--ink); color: var(--text-inv); }
.usp-inner { padding-block: clamp(52px, 7vw, 88px); display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.usp-band .h2 { color: #fff; margin-bottom: 14px; }
.usp-band .h2 .amber-word { color: var(--amber); }
.usp-band p { color: var(--text-inv-muted); }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; list-style: none; }
.chip-list li {
  padding: 9px 15px; border: 1px solid rgba(237, 236, 231, 0.22); border-radius: 999px;
  font-size: 0.92rem; color: var(--text-inv);
}
.usp-note { margin-top: 18px; font-size: 0.9rem; color: var(--text-inv-muted); }

/* FAQ */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 4px;
  font-family: var(--f-display); font-weight: 650; font-size: 1.06rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--amber-deep); flex: none; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 4px 20px; color: var(--text-muted); max-width: 66ch; }
.faq .faq-body ul { margin: 8px 0 0 18px; display: grid; gap: 4px; }

/* Einzugsgebiet */
.orte-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 26px; max-width: 900px; }
.orte-grid span { padding: 10px 0; border-bottom: 1px solid var(--line); font-family: var(--f-display); font-weight: 600; color: var(--ink); font-size: 1.02rem; }

/* Auftraggeber / Über uns */
.about-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.client-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(22px, 3vw, 32px); }
.client-card h3 { margin-bottom: 14px; }
.client-card ul { list-style: none; display: grid; gap: 9px; }
.client-card li { display: flex; gap: 10px; align-items: baseline; font-size: 0.99rem; }
.client-card li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 2px; background: var(--amber); transform: translateY(-1px); }

/* CTA-Band (amber) */
.cta-band { background: var(--amber); }
.cta-inner { padding-block: clamp(52px, 7vw, 84px); display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(26px, 5vw, 60px); align-items: center; }
.cta-band .h2 { color: var(--ink); margin-bottom: 10px; }
.cta-band p { color: rgba(25, 26, 28, 0.78); }
.cta-contact { display: grid; gap: 10px; }
.cta-contact a.big-line { font-family: var(--f-display); font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 750; color: var(--ink); text-decoration: none; }
.cta-contact a.big-line:hover { text-decoration: underline; }
.cta-contact .hours { font-size: 0.95rem; color: rgba(25, 26, 28, 0.75); line-height: 1.6; }
.cta-band .btn-dark { background: var(--ink); color: #fff; margin-top: 16px; }
.cta-band .btn-dark:hover { background: #000; color: #fff; }

/* ---------- Unterseiten-Kopf ---------- */
.page-head { border-bottom: 1px solid var(--line); background: var(--paper); }
.page-head .inner { padding-block: clamp(44px, 6vw, 72px); max-width: 800px; }
.page-head .h1 { margin-bottom: 14px; font-size: clamp(2rem, 3.8vw, 3rem); }

/* Inhaltsblöcke Unterseiten */
.content-narrow { max-width: 760px; }
.content-narrow ul { margin: 12px 0 0 18px; display: grid; gap: 7px; color: var(--text-muted); }
.info-panel { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--amber); border-radius: var(--r); padding: 22px 26px; margin-top: 28px; }
.info-panel .h4 { margin-bottom: 6px; }
.info-panel p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 60px); align-items: start; }
.contact-card { background: var(--ink); color: var(--text-inv); border-radius: calc(var(--r) + 4px); padding: clamp(26px, 3.5vw, 38px); display: grid; gap: 20px; }
.contact-card h2 { color: #fff; }
.contact-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-inv-muted); margin-bottom: 4px; font-weight: 600; }
.contact-item a, .contact-item span { font-family: var(--f-display); font-size: 1.22rem; font-weight: 700; color: #fff; text-decoration: none; }
.contact-item a:hover { color: var(--amber); }
.contact-item .sub { display: block; font-family: var(--f-body); font-size: 0.92rem; font-weight: 400; color: var(--text-inv-muted); margin-top: 3px; }

.form-wrap { background: #fff; border: 1px solid var(--line); border-radius: calc(var(--r) + 4px); padding: clamp(24px, 3.5vw, 36px); box-shadow: var(--shadow-card); }
.form-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 9px;
  padding: 12px 15px; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 22px;
}
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid #c9c3b4; border-radius: 9px;
  background: #fff; color: var(--text); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #8f8d84; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--amber-deep); outline-offset: 1px; border-color: var(--amber-deep); }
.field .err { display: none; font-size: 0.88rem; color: #9a3208; font-weight: 500; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #b3400f; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.check-field { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 18px; font-size: 0.95rem; color: var(--text-muted); }
.check-field input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--amber-deep); }
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 9px; background: var(--paper-2); border: 1px solid var(--line); color: var(--text); font-size: 0.95rem; }
.form-status.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-inv-muted); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr); gap: clamp(28px, 4vw, 60px); padding-block: clamp(42px, 6vw, 64px); }
.footer-brand strong { font-family: var(--f-display); font-size: 1.25rem; font-weight: 800; color: #fff; display: block; margin-bottom: 6px; }
.footer-brand strong span { color: var(--amber); }
.footer-brand p { font-size: 0.95rem; max-width: 42ch; }
.footer-col h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-inv); margin-bottom: 13px; font-weight: 650; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--text-inv-muted); text-decoration: none; font-size: 0.96rem; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; font-size: 0.96rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid #313236; padding-block: 16px;
  display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; justify-content: space-between;
  font-size: 0.87rem;
}
.footer-bottom a { color: var(--text-inv-muted); }
.footer-bottom .demo-tag { color: #7d7c76; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wegweiser a, .btn, .service-row { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 12px 20px 18px; gap: 2px;
  }
  .nav-links.open a { padding: 13px 12px; font-size: 1.05rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .facts-grid { grid-template-columns: 1fr 1fr; gap: 14px 0; padding-block: 20px; }
  .fact { border-left: none; padding: 4px 0; }
  .usp-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 8px; padding-block: 22px; }
  .service-row .arrow { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .orte-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .orte-grid { grid-template-columns: 1fr 1fr; gap: 8px 18px; }
}

/* Kompakt für flache Laptops */
@media (min-width: 900px) and (max-height: 830px) {
  .hero-grid { padding-block: 36px; }
  .hero-copy .h1 { font-size: clamp(2rem, 3.4vw, 2.7rem); }
  .wegweiser a { padding: 16px 20px; }
}

/* ============================================================
   Kundentermin-Überarbeitung
   Ruhiger Premium-Look · stärkere Vertrauens- und Kontaktführung
   ============================================================ */

:root {
  --ink: #171915;
  --ink-soft: #2b2e28;
  --paper: #faf8f2;
  --paper-2: #f1eee4;
  --line: #ded8ca;
  --text: #292b27;
  --text-muted: #66665f;
  --text-inv: #f6f3e9;
  --text-inv-muted: #b8b5aa;
  --amber: #f3bd2b;
  --amber-deep: #c98a00;
  --amber-text: #765300;
  --focus: #9b6900;
  --r: 14px;
  --shadow-soft: 0 30px 80px rgba(55, 47, 24, 0.14);
  --shadow-card: 0 14px 38px rgba(55, 47, 24, 0.10);
  --container: 1240px;
  --nav-h: 78px;
}

html { background: var(--paper); }
body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(243, 189, 43, 0.035), transparent 28rem),
    var(--paper);
  color: var(--text);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.11;
  background-image: radial-gradient(rgba(23, 25, 21, 0.38) 0.42px, transparent 0.42px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.container { padding-inline: clamp(22px, 4.4vw, 54px); }
.main-nav { display: flex; align-items: center; gap: 10px; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 120;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: translateY(0); }

.h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.h2 {
  font-size: clamp(2.05rem, 3.5vw, 3.15rem);
  font-weight: 735;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.h3 { letter-spacing: -0.025em; }
.lead { line-height: 1.65; text-wrap: pretty; }
.section-copy { margin-top: 18px; }
.more-wrap { margin-top: 26px; }

.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 15px;
  margin-bottom: 24px;
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 710;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(246, 243, 233, 0.7);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--amber);
}
.eyebrow > span + span::before {
  content: "·";
  margin-right: 15px;
  color: var(--amber-deep);
}
.eyebrow-dark { color: var(--amber-text); }

/* Header */
.site-header {
  background: rgba(250, 248, 242, 0.88);
  border-bottom-color: rgba(222, 216, 202, 0.72);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(250, 248, 242, 0.96);
  box-shadow: 0 12px 34px rgba(47, 41, 22, 0.07);
}
.brand { gap: 2px; }
.brand strong {
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}
.brand em {
  font-size: 0.64rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}
.nav-links { gap: 0; }
.nav-links a {
  position: relative;
  padding: 10px 11px;
  font-size: 0.91rem;
  border-radius: 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 2px;
  background: var(--amber-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover { background: transparent; }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
  padding: 12px 17px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(201, 138, 0, 0.16);
}
.nav-toggle { background: rgba(255, 255, 255, 0.55); }

/* Buttons */
.btn {
  min-height: 52px;
  padding: 16px 23px;
  border-radius: 10px;
  font-size: 0.96rem;
  box-shadow: none;
  transition:
    transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.985); }
.btn-primary {
  background: var(--amber);
  box-shadow: 0 13px 28px rgba(201, 138, 0, 0.18);
}
.btn-primary:hover {
  background: #f7c94c;
  box-shadow: 0 16px 34px rgba(201, 138, 0, 0.24);
}
.btn-outline {
  border-color: rgba(23, 25, 21, 0.24);
  background: rgba(255, 255, 255, 0.45);
}
.btn-outline:hover { background: #fff; }

/* Startseiten-Hero */
.hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(250, 248, 242, 0.98) 0%, rgba(246, 241, 226, 0.98) 58%, rgba(241, 232, 202, 0.88) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(23, 25, 21, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 21, 0.055) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to right, transparent 0%, #000 50%, #000 100%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  top: -14rem;
  right: -10rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(201, 138, 0, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(243, 189, 43, 0.04),
    0 0 0 11rem rgba(243, 189, 43, 0.025);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: clamp(48px, 7vw, 96px);
  padding-top: clamp(70px, 9vh, 108px);
  padding-bottom: clamp(62px, 8vh, 94px);
}
.hero-copy { max-width: 720px; }
.hero-copy .eyebrow { color: var(--amber-text); }
.hero-copy .h1 { margin-bottom: 26px; }
.hero-copy .amber-word {
  color: var(--amber-text);
  font-style: italic;
  font-weight: 650;
}
.hero-copy .lead {
  max-width: 58ch;
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
}
.hero-actions { margin-top: 32px; }
.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 23px;
  font-size: 0.82rem;
  font-weight: 620;
  color: var(--text-muted);
}
.hero-assurance span::first-letter { color: var(--amber-text); }

.handover-card {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 24px 7px;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 189, 43, 0.16), transparent 35%),
    var(--ink);
  color: var(--text-inv);
  box-shadow: 0 34px 90px rgba(34, 31, 21, 0.24);
  transform: rotate(0.7deg);
}
.handover-card::before {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(243, 189, 43, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(243, 189, 43, 0.03);
}
.handover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-inv);
}
.status-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(243, 189, 43, 0.12);
}
.handover-title { padding: 28px 0 23px; }
.handover-title > span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.handover-title strong {
  display: block;
  max-width: 12ch;
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
}
.handover-steps { position: relative; list-style: none; }
.handover-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.handover-no {
  font-family: var(--f-display);
  font-size: 0.68rem;
  font-weight: 650;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.handover-steps strong {
  display: block;
  font-family: var(--f-display);
  font-size: 0.96rem;
  font-weight: 640;
  color: #fff;
}
.handover-steps small {
  display: block;
  margin-top: 2px;
  color: var(--text-inv-muted);
}
.handover-steps i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(243, 189, 43, 0.45);
  border-radius: 50%;
  color: var(--amber);
  font-size: 0.75rem;
  font-style: normal;
}
.handover-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.handover-footer div { display: grid; gap: 1px; }
.handover-footer strong {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: #fff;
}
.handover-footer span { font-size: 0.76rem; color: var(--text-inv-muted); }
.hero-locations {
  display: flex;
  align-items: center;
  gap: 10px 27px;
  flex-wrap: wrap;
  padding-block: 20px;
  border-top: 1px solid rgba(23, 25, 21, 0.1);
}
.hero-locations::before {
  content: "Wir kommen zu Ihnen";
  margin-right: auto;
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-locations span {
  font-family: var(--f-display);
  font-size: 0.82rem;
  font-weight: 620;
  color: var(--ink);
}

/* Vertrauen, Leistungen und Ablauf */
.facts { background: rgba(255, 255, 255, 0.52); }
.facts-grid { padding-block: 31px; }
.fact { position: relative; padding-left: clamp(18px, 2.4vw, 32px); }
.fact:first-child { padding-left: 0; }
.fact strong { font-size: 0.97rem; }
.fact strong::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 50%;
  background: rgba(243, 189, 43, 0.22);
  color: var(--amber-text);
  font-size: 0.67rem;
  vertical-align: 1px;
}
.section { padding-block: clamp(82px, 10vw, 132px); }
.section-head { margin-bottom: clamp(40px, 5vw, 66px); }
.section-head .eyebrow { margin-bottom: 19px; }
.service-row {
  grid-template-columns: 58px minmax(240px, 0.8fr) minmax(300px, 1fr) 38px;
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(28px, 3.8vw, 46px) clamp(0px, 1.4vw, 20px);
  border-color: var(--line);
  border-radius: 0;
  transition: background-color 0.2s ease, padding 0.25s ease;
}
.service-row:hover {
  padding-inline: 22px;
  background: rgba(243, 189, 43, 0.1);
}
.service-index {
  font-family: var(--f-display);
  font-size: 0.72rem;
  font-weight: 680;
  color: var(--amber-text);
  font-variant-numeric: tabular-nums;
}
.service-row .h3 { font-size: clamp(1.25rem, 2vw, 1.62rem); }
.service-row .arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.service-row:hover .arrow {
  transform: translateX(4px);
  background: var(--amber);
}

.section-tinted {
  background:
    radial-gradient(circle at 10% 110%, rgba(243, 189, 43, 0.14), transparent 26rem),
    var(--paper-2);
}
.steps {
  position: relative;
  gap: clamp(25px, 4vw, 54px);
}
.steps::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 5%;
  left: 5%;
  height: 1px;
  background: var(--line);
}
.step {
  position: relative;
  z-index: 1;
  padding-top: 0;
  border-top: 0;
}
.step:nth-child(even) { transform: translateY(24px); }
.step-no {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border: 1px solid rgba(201, 138, 0, 0.34);
  border-radius: 50%;
  background: var(--paper-2);
  font-family: var(--f-display);
  font-size: 0.7rem;
  font-weight: 720;
  color: var(--amber-text);
  box-shadow: 0 0 0 8px var(--paper-2);
}
.step .h4 { margin-bottom: 9px; font-size: 1.08rem; }

/* Wertanrechnung */
.usp-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(243, 189, 43, 0.14), transparent 28rem),
    var(--ink);
}
.usp-band::after {
  content: "WERT";
  position: absolute;
  right: -0.03em;
  bottom: -0.22em;
  font-family: var(--f-display);
  font-size: clamp(7rem, 17vw, 16rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}
.usp-inner { position: relative; z-index: 1; padding-block: clamp(76px, 9vw, 118px); }
.usp-band .eyebrow { color: var(--text-inv-muted); }
.usp-band p { max-width: 62ch; }
.chip-label {
  margin-bottom: 15px;
  color: var(--text-inv) !important;
  font-weight: 650;
}
.chip-list { gap: 9px; }
.chip-list li {
  padding: 10px 15px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

/* FAQ, Orte, Über uns */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 9vw, 116px);
  align-items: start;
}
.faq-intro { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq-intro .section-head { margin-bottom: 23px; }
.faq { max-width: none; }
.faq details {
  border: 0;
  border-bottom: 1px solid var(--line);
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  padding: 23px 0;
  font-size: 1.08rem;
}
.faq summary::after {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.15rem;
}
.faq details[open] summary { color: var(--amber-text); }
.faq .faq-body { padding-right: 54px; padding-left: 0; }

.orte-grid {
  max-width: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.orte-grid span {
  position: relative;
  min-height: 84px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.orte-grid span:nth-child(1),
.orte-grid span:nth-child(2),
.orte-grid span:nth-child(11) {
  background: var(--amber);
  border-color: var(--amber);
}
.orte-grid span:hover { transform: translateY(-3px); background: #fff; }

.about-grid { align-items: center; }
.client-card {
  position: relative;
  overflow: hidden;
  padding: clamp(27px, 4vw, 42px);
  border: 0;
  border-radius: 22px 22px 22px 7px;
  background:
    linear-gradient(145deg, rgba(243, 189, 43, 0.18), rgba(255, 255, 255, 0.92));
  box-shadow: var(--shadow-card);
}
.client-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 138, 0, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(243, 189, 43, 0.05);
}
.owner-signature {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(23, 25, 21, 0.11);
}
.owner-signature > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px 15px 15px 4px;
  background: var(--ink);
  font-family: var(--f-display);
  font-size: 0.86rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  color: var(--amber);
}
.owner-signature div { display: grid; }
.owner-signature strong { font-family: var(--f-display); color: var(--ink); }
.owner-signature small { color: var(--text-muted); }

/* Abschluss-CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.23), transparent 22rem),
    var(--amber);
}
.cta-band::after {
  content: "→";
  position: absolute;
  right: 2vw;
  bottom: -0.34em;
  font-family: var(--f-display);
  font-size: clamp(12rem, 25vw, 23rem);
  font-weight: 200;
  line-height: 1;
  color: rgba(23, 25, 21, 0.055);
}
.cta-inner { position: relative; z-index: 1; padding-block: clamp(72px, 9vw, 112px); }
.cta-band .h2 { max-width: 15ch; }
.cta-band .eyebrow { margin-bottom: 18px; }
.cta-band .btn-dark { border-color: var(--ink); }

/* Unterseiten-Heros */
.page-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(243, 189, 43, 0.2), transparent 25rem),
    linear-gradient(115deg, var(--paper), #f5f0df);
}
.page-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(23, 25, 21, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 21, 0.06) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to right, transparent 25%, #000);
}
.page-head .inner {
  max-width: var(--container);
  padding-block: clamp(70px, 9vw, 112px);
}
.page-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
.page-head .h1 {
  max-width: 14ch;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5vw, 4.65rem);
  line-height: 0.98;
}
.page-head-copy .lead { max-width: 58ch; }
.page-head-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 29px;
}
.text-call {
  font-family: var(--f-display);
  font-weight: 690;
  color: var(--ink);
  text-decoration: none;
}
.text-call::before { content: "↗ "; color: var(--amber-text); }
.page-proof {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(27px, 4vw, 42px);
  border-radius: 24px 24px 24px 7px;
  background:
    radial-gradient(circle at 90% 0%, rgba(243, 189, 43, 0.17), transparent 50%),
    var(--ink);
  color: var(--text-inv);
  box-shadow: var(--shadow-soft);
}
.page-proof::before {
  content: "C.";
  position: absolute;
  top: -0.2em;
  right: -0.08em;
  font-family: var(--f-display);
  font-size: 11rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.035);
}
.page-proof > span {
  position: relative;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.page-proof > strong {
  position: relative;
  max-width: 16ch;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}
.page-proof ul {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 24px;
  list-style: none;
}
.page-proof li {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  color: var(--text-inv-muted);
}
.page-proof li::before { content: "✓"; margin-right: 9px; color: var(--amber); }
.page-proof-person p {
  position: relative;
  max-width: 32ch;
  margin-top: 13px;
  color: var(--text-inv-muted);
}
.proof-monogram {
  position: absolute;
  top: 30px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(243, 189, 43, 0.38);
  border-radius: 18px 18px 18px 5px;
  font-family: var(--f-display);
  font-weight: 730;
  color: var(--amber);
}

/* Unterseiten-Inhalte */
.content-narrow { max-width: 940px; }
.content-narrow > .h3 {
  max-width: 28ch;
  margin-top: 54px !important;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}
.content-narrow > .h3:first-child { margin-top: 0 !important; }
.content-narrow > p { max-width: 70ch; }
.content-narrow > ul {
  max-width: 760px;
  margin: 22px 0 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
}
.content-narrow > ul li {
  position: relative;
  padding: 14px 15px 14px 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
}
.content-narrow > ul li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(243, 189, 43, 0.23);
  color: var(--amber-text);
  font-size: 0.67rem;
  font-weight: 800;
}
.info-panel {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  padding: 28px 31px;
  border: 0;
  border-radius: 16px 16px 16px 5px;
  background:
    linear-gradient(135deg, rgba(243, 189, 43, 0.22), rgba(255, 255, 255, 0.75));
  box-shadow: var(--shadow-card);
}
.info-panel::before {
  content: "✓";
  position: absolute;
  right: 26px;
  top: 20px;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 720;
  color: rgba(118, 83, 0, 0.25);
}

/* Kontakt */
.contact-grid { grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr); }
.contact-card {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
  overflow: hidden;
  border-radius: 22px 22px 22px 7px;
  background:
    radial-gradient(circle at 100% 0%, rgba(243, 189, 43, 0.17), transparent 40%),
    var(--ink);
  box-shadow: var(--shadow-soft);
}
.contact-card::after {
  content: "C.";
  position: absolute;
  right: -0.06em;
  bottom: -0.24em;
  font-family: var(--f-display);
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
}
.contact-item { position: relative; z-index: 1; }
.form-wrap {
  padding: clamp(28px, 4vw, 44px);
  border: 0;
  border-radius: 22px 22px 22px 7px;
  box-shadow: var(--shadow-card);
}
.form-wrap > .h3 { font-size: 1.65rem; }
.form-note {
  display: block;
  padding: 15px 17px;
  border-radius: 10px;
  background: rgba(243, 189, 43, 0.1);
}
.form-note strong { color: var(--ink); }
.field input,
.field select,
.field textarea {
  border-color: var(--line);
  border-radius: 9px;
  background: var(--paper);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #b9b09c; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--amber-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(243, 189, 43, 0.18);
}
.check-field.invalid {
  padding: 12px;
  border: 1px solid #b3400f;
  border-radius: 9px;
  background: #fff5ef;
}

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 8% 0%, rgba(243, 189, 43, 0.08), transparent 24rem),
    var(--ink);
}
.footer-grid { padding-block: clamp(58px, 7vw, 82px); }
.footer-brand strong { font-size: 1.45rem; }
.footer-col a { transition: color 0.18s ease, transform 0.18s ease; }
.footer-col a:hover { color: var(--amber); }
.demo-tag {
  max-width: 46ch;
  text-align: right;
}

/* Sicheres Reveal: ohne JS bleibt alles sichtbar */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* Mobile Kontaktleiste */
.mobile-action-bar { display: none; }

/* 404 */
.error-page { padding: 0; }
.error-main {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    radial-gradient(circle at 75% 20%, rgba(243, 189, 43, 0.24), transparent 27rem),
    linear-gradient(135deg, var(--paper), #f3edd8);
}
.error-main::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(23, 25, 21, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 21, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
}
.error-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(32px, 7vw, 70px);
  border: 1px solid rgba(23, 25, 21, 0.09);
  border-radius: 28px 28px 28px 8px;
  background: rgba(250, 248, 242, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.error-brand { margin-bottom: 76px; }
.error-code {
  position: absolute;
  top: 20px;
  right: 34px;
  font-family: var(--f-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(201, 138, 0, 0.12);
}
.error-card .h1 { max-width: 12ch; margin-bottom: 23px; }
.error-card .lead { max-width: 55ch; }

@media (max-width: 1120px) {
  body.nav-open { overflow: hidden; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px clamp(22px, 4.4vw, 54px) 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 248, 242, 0.98);
    box-shadow: 0 24px 45px rgba(34, 30, 18, 0.12);
  }
  .nav-links.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: inline-flex; }
}

@media (max-width: 940px) {
  .hero-grid,
  .page-head-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 48px; }
  .hero-copy { max-width: 740px; }
  .handover-card { max-width: 660px; transform: none; }
  .faq-intro { position: static; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { border-left: 0; padding: 8px 0; }
  .service-row {
    grid-template-columns: 48px minmax(0, 0.9fr) minmax(0, 1.1fr) 38px;
  }
  .page-proof { min-height: 290px; max-width: 660px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { position: relative; top: auto; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  :root { --nav-h: 68px; }
  body { padding-bottom: 72px; }
  body.error-page { padding-bottom: 0; }
  .container { padding-inline: 20px; }
  .brand strong { font-size: 1.22rem; }
  .brand em { max-width: 220px; font-size: 0.57rem; }
  .nav-cta { display: none; }
  .h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .h2 { font-size: clamp(1.9rem, 9vw, 2.7rem); }
  .section { padding-block: 76px; }
  .hero-grid {
    gap: 38px;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .hero::before { background-size: 52px 52px; }
  .hero-copy .h1 { margin-bottom: 22px; }
  .hero-copy .lead { font-size: 1.05rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; white-space: normal; }
  .hero-assurance { display: grid; gap: 7px; }
  .handover-card {
    margin-inline: -4px;
    padding: 24px 21px;
    border-radius: 19px 19px 19px 6px;
  }
  .handover-title strong { font-size: 1.85rem; }
  .handover-steps li { grid-template-columns: 26px minmax(0, 1fr) 22px; gap: 10px; }
  .handover-footer { gap: 10px; }
  .hero-locations { gap: 9px 16px; }
  .hero-locations::before { flex-basis: 100%; margin-bottom: 5px; }
  .facts-grid { grid-template-columns: 1fr; gap: 0; padding-block: 18px; }
  .fact { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .service-row {
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 10px 12px;
    padding: 25px 0;
  }
  .service-row p { grid-column: 2 / -1; }
  .service-row .arrow { grid-column: 3; grid-row: 1; }
  .service-row:hover { padding-inline: 12px; }
  .steps { grid-template-columns: 1fr; gap: 35px; }
  .steps::before { top: 0; bottom: 0; left: 19px; width: 1px; height: auto; }
  .step,
  .step:nth-child(even) {
    min-height: 64px;
    padding-left: 62px;
    transform: none;
  }
  .step-no {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .usp-inner { padding-block: 72px; }
  .faq-layout { gap: 36px; }
  .faq summary { font-size: 1rem; }
  .faq .faq-body { padding-right: 10px; }
  .orte-grid { grid-template-columns: 1fr 1fr; }
  .orte-grid span { min-height: 70px; padding: 13px; font-size: 0.88rem; }
  .cta-inner { padding-block: 74px; }
  .page-head .inner { padding-block: 58px; }
  .page-head-grid { gap: 36px; }
  .page-head .h1 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .page-head-actions { display: grid; align-items: stretch; }
  .page-head-actions .btn { width: 100%; }
  .text-call { padding: 8px 2px; }
  .page-proof { min-height: 280px; padding: 25px 22px; }
  .content-narrow > ul { grid-template-columns: 1fr; }
  .contact-card,
  .form-wrap { border-radius: 17px 17px 17px 5px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { padding-bottom: 25px; }
  .demo-tag { text-align: left; }
  .mobile-action-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8px;
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(23, 25, 21, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -10px 30px rgba(23, 25, 21, 0.16);
  }
  .mobile-action-bar a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: var(--f-display);
    font-size: 0.82rem;
    font-weight: 680;
    text-decoration: none;
  }
  .mobile-action-bar .mobile-call {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
  }
  .mobile-action-bar .mobile-request {
    background: var(--amber);
    color: var(--ink);
  }
}

@media (min-width: 941px) and (max-height: 850px) {
  .hero-grid {
    padding-top: 52px;
    padding-bottom: 50px;
  }
  .hero-copy .h1 { font-size: clamp(3.15rem, 4.7vw, 4.3rem); }
  .handover-card { padding-block: 25px; }
  .handover-title { padding-block: 21px 18px; }
  .handover-steps li { padding-block: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .handover-card,
  .step:nth-child(even) { transform: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
