/* Rhein Ruhr Entrümpelung – Version 4 („Gold auf Carbon“, Design nach Kundenvorlage) */

@font-face {
  font-family: "Big Shoulders";
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
  src: url("../fonts/bigshoulders-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-var.woff2") format("woff2");
}

:root {
  --ink: #0e0d0b;
  --carbon: #17150f;
  --carbon-2: #1f1c14;
  --gold: #c89b3c;
  --gold-light: #e8c97a;
  --gold-dark: #9c7623;
  --gold-ink: #7a5b14;      /* goldener Text auf hellem Grund (Kontrast ≥ 4.5:1) */
  --cream: #f3eee2;
  --paper: #f7f4ec;
  --paper-2: #efeada;
  --muted: #a39a86;
  --muted-dark: #5f5849;
  --line: rgba(243, 238, 226, 0.14);
  --line-strong: rgba(243, 238, 226, 0.26);
  --line-dark: rgba(14, 13, 11, 0.12);

  --font-display: "Big Shoulders", "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --fs-h1: clamp(2.6rem, 1.6rem + 4.4vw, 4.75rem);
  --fs-h2: clamp(2rem, 1.5rem + 2.2vw, 3rem);
  --fs-lead: clamp(1.0625rem, 1rem + 0.35vw, 1.125rem);
  --fs-body: 1rem;
  --fs-small: 0.9375rem;

  --space-section: clamp(4rem, 2.5rem + 5vw, 6rem);
  --gutter: clamp(1.25rem, 0.9rem + 1.6vw, 1.5rem);
  --container: 70rem;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--gold); text-decoration: none; text-underline-offset: 0.18em; }
a:hover { color: var(--cream); text-decoration: underline; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
figure { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.02em;
  margin: 0 0 0.4em;
  color: var(--cream);
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
  hyphenate-limit-chars: 14 6 6;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: 1.25rem; }

/* Fließtext-Überschriften (Karten, Leistungen): ruhiger, nicht in Versalien */
.h-plain, .service-row h3, .why-cell h3, .process-step h3, .value h3, .step h3, .form-card h3, .legal h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.25;
  /* nicht „balance“: sonst trennt der Umbruch Wörter, die ganz in eine Zeile passen */
  text-wrap: pretty;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }
.site-header :focus-visible, .hero :focus-visible { outline-color: var(--gold-ink); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 0.75rem 1.1rem;
  font-weight: 600; text-decoration: none; border: 1px solid var(--gold);
}
.skip-link:focus { top: 1rem; color: var(--cream); }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; margin: -1px; padding: 0; border: 0;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 48px; padding: 0.85rem 1.6rem;
  font: 700 0.9375rem/1.2 var(--font-body);
  border: 1px solid transparent; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.btn svg { width: 1.2rem; height: 1.2rem; flex: none; }
.btn:hover { text-decoration: none; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-light); color: var(--ink); }
/* „ink“ ist die primäre Aktion – auf dem dunklen Hintergrund als Goldfläche */
.btn--ink { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--ink svg { color: var(--ink); }
.btn--ink:hover { background: var(--gold-light); color: var(--ink); border-color: var(--gold-light); }
.btn--outline { border-color: var(--gold-ink); color: var(--gold-ink); background: transparent; }
.btn--outline:hover { background: var(--gold-ink); color: var(--paper); }
.btn--outline-light { border-color: var(--line-strong); color: var(--cream); }
.btn--outline-light:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 244, 236, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { width: clamp(168px, 14vw + 70px, 215px); height: auto; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav__list { display: flex; gap: 1.6rem; list-style: none; }
.nav__list a {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav__list a:hover, .nav__list a[aria-current="page"] { color: var(--gold-ink); border-bottom-color: var(--gold); text-decoration: none; }
.nav__cta {
  min-height: 42px; padding: 0.55rem 1rem; white-space: nowrap;
  font-size: 0.9375rem; font-weight: 600;
  background: transparent; color: var(--gold-ink); border-color: var(--gold-dark);
}
.nav__cta svg { color: var(--gold-ink); width: 1rem; height: 1rem; }
.nav__cta:hover { background: var(--gold-ink); color: var(--paper); border-color: var(--gold-ink); }
.nav__cta:hover svg { color: var(--paper); }

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

@media (max-width: 960px) {
  :root { --header-h: 66px; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .burger { display: grid; }
  .nav {
    position: absolute; left: calc(var(--gutter) * -1); right: calc(var(--gutter) * -1); top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line-dark);
    padding: 0.25rem var(--gutter) 1.25rem;
    box-shadow: 0 18px 30px rgba(14, 13, 11, 0.18);
  }
  html.js .nav:not(.is-open) { display: none; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { width: 100%; min-height: 54px; border-bottom: 1px solid var(--line-dark); font-size: 1.125rem; }
  .nav__list a:hover, .nav__list a[aria-current="page"] { border-bottom-color: var(--gold); }
  .nav__cta { margin-top: 1rem; min-height: 50px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(2.75rem, 1.5rem + 4vw, 5.5rem) clamp(3rem, 2rem + 4vw, 6rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line-dark);
}
.roof {
  position: absolute; top: -2.5rem; right: -7.5rem;
  width: 40rem; height: 40rem; opacity: 0.9;
  pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 1rem + 3vw, 3rem); align-items: center; position: relative; }
.eyebrow-tag {
  display: inline-block; margin-bottom: 1.35rem; padding-bottom: 0.25rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold-ink); border-bottom: 2px solid var(--gold);
}
.hero__title { color: var(--ink); margin-bottom: 0; }
.hero__title em { font-style: normal; color: var(--gold-ink); }
.hero__lead { margin: 1.35rem 0 0; max-width: 42ch; font-size: var(--fs-lead); color: var(--muted-dark); }
.hero__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero__media { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.icon-badge {
  width: 88%; aspect-ratio: 1 / 1; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #ffffff, var(--paper-2) 75%);
  border: 1px solid rgba(14, 13, 11, 0.08);
  box-shadow: 0 0 0 1px rgba(200, 155, 60, 0.25), 0 30px 60px rgba(0, 0, 0, 0.12);
  display: grid; place-items: center;
  padding: 14%;
}
/* Das Logo-Motiv sitzt mittig im Kreis (gleicher Abstand links/rechts, optisch zentriert) */
.icon-badge img {
  width: 100%; height: auto; margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
}

/* ---------- Abschnitte ---------- */
.section { padding-block: var(--space-section); border-bottom: 1px solid var(--line); }
.section--dark { background: var(--ink); }
.section--carbon { background: var(--carbon); }
.section--paper { background: var(--paper); color: var(--ink); border-bottom-color: var(--line-dark); }
.section--paper h2, .section--paper h3 { color: var(--ink); }
.section--paper p { color: var(--muted-dark); }
.section--paper a:not(.btn) { color: var(--gold-ink); }

.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem 2rem; margin-bottom: clamp(2.25rem, 1.5rem + 2vw, 3.5rem); }
.section-head h2 { margin: 0; max-width: 24ch; }
.section-head p { margin: 0; max-width: 38ch; font-size: var(--fs-small); color: var(--muted); }
.rule { display: block; width: 3.5rem; height: 2px; background: var(--gold); margin-bottom: 1.1rem; }

/* ---------- Leistungen ---------- */
.service-list { list-style: none; border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.6rem;
  padding-block: 1.9rem; border-bottom: 1px solid var(--line);
}
.service-row h3 { margin: 0; font-size: 1.35rem; color: var(--cream); }
.service-row p { margin: 0.4rem 0 0; color: var(--muted); font-size: var(--fs-small); max-width: 62ch; }
.icon-circle {
  width: 56px; height: 56px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold) 65%, var(--gold-dark) 100%);
  color: var(--ink); display: grid; place-items: center;
}
.icon-circle svg { width: 26px; height: 26px; }
.services-cta {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem;
}
.services-cta p { margin: 0; max-width: 42rem; font-size: var(--fs-lead); color: var(--cream); }

/* ---------- Werte ---------- */
.values { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; list-style: none; background: var(--line); border: 1px solid var(--line); }
.value { background: var(--carbon); padding: 2rem 1.6rem; }
.value svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 1.1rem; }
.value h3 { margin: 0; font-size: 1.0625rem; color: var(--cream); }
.value p { margin: 0.5rem 0 0; font-size: 0.875rem; color: var(--muted); }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.5rem; list-style: none; }
.step__num { display: block; font-family: var(--font-display); font-weight: 900; font-size: 3.5rem; line-height: 1; color: var(--gold); }
.step h3 { margin: 0.8rem 0 0; font-size: 1.1875rem; color: var(--cream); }
.step p { margin: 0.5rem 0 0; font-size: 0.90625rem; color: var(--muted); }

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 1.5rem + 3vw, 4rem); align-items: center; }
.about__media { display: grid; gap: 1.5rem; justify-items: start; }
.about__media img { width: 100%; border: 1px solid var(--line); }
.about__media .shot { width: 100%; }
.about__media .shot img { aspect-ratio: 20 / 9; object-fit: cover; object-position: 50% 55%; }
.about__media .card { width: min(100%, 15rem); }
.about__media figcaption { margin-top: 0.6rem; font-size: 0.8125rem; color: var(--muted); max-width: 22rem; }
.about__text p { color: var(--muted); }
.checklist { list-style: none; margin: 1.6rem 0 1.8rem; display: grid; gap: 0.8rem; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 0.75rem; align-items: start; color: var(--cream); font-size: var(--fs-small); }
.checklist svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 0.15rem; }
.quote {
  margin: 0; padding-left: 1.1rem; border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.9rem); line-height: 1; color: var(--cream);
}

/* ---------- Kontakt ---------- */
.contact-box {
  background: linear-gradient(135deg, var(--carbon-2), var(--carbon));
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  align-items: start;
}
.contact__info h2 { margin-bottom: 0.5em; }
.contact__lead { color: var(--muted); font-size: var(--fs-small); }
.phone-big {
  display: inline-flex; align-items: center; gap: 0.85rem; margin: 0.5rem 0 1.6rem;
  font: 900 clamp(1.8rem, 1.5rem + 1.6vw, 2.5rem)/1 var(--font-display);
  text-transform: uppercase; letter-spacing: 0.01em;
  color: var(--cream); text-decoration: none; white-space: nowrap;
}
.phone-big:hover { color: var(--gold); text-decoration: none; }
.phone-big .icon-circle { width: 48px; height: 48px; }
.phone-big .icon-circle svg { width: 22px; height: 22px; }
.contact-list { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.contact-list li { display: grid; grid-template-columns: 22px 1fr; gap: 0.85rem; font-size: var(--fs-small); color: #cfc8b7; }
.contact-list svg { width: 20px; height: 20px; color: var(--gold); margin-top: 0.2rem; }
.contact-list strong {
  display: block; margin-bottom: 0.1rem; color: var(--cream);
  font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.contact-list a { overflow-wrap: break-word; word-break: normal; }
.hours { width: 100%; max-width: 22rem; border-collapse: collapse; font-size: var(--fs-small); font-variant-numeric: tabular-nums; }
.hours caption {
  text-align: left; margin-bottom: 0.6rem; color: var(--cream);
  font: 700 1.0625rem/1.2 var(--font-display); text-transform: uppercase; letter-spacing: 0.06em;
}
.hours th, .hours td { padding: 0.4rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 400; color: #cfc8b7; }
.hours td { text-align: right; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold); font-weight: 600; }

/* ---------- Formular ---------- */
.form-card { background: var(--ink); border: 1px solid var(--line); border-top: 3px solid var(--gold); padding: clamp(1.35rem, 1rem + 2vw, 2.25rem); }
.form-card h3 { margin: 0; font-size: 1.3rem; color: var(--cream); }
.form-card > p { margin: 0.5rem 0 1.4rem; color: var(--muted); font-size: var(--fs-small); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.875rem; color: var(--cream); }
.field .req, .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 0.7rem 0.85rem;
  font: 400 1rem/1.4 var(--font-body); color: var(--cream);
  background: var(--carbon); border: 1px solid #4b4535; border-radius: var(--radius);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.5rem;
  background: var(--carbon) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c89b3c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 0.8rem center / 18px no-repeat;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.3); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #e2726a; }
.checkbox { grid-column: 1 / -1; display: grid; grid-template-columns: 22px 1fr; gap: 0.75rem; align-items: start; font-size: 0.875rem; color: var(--muted); }
.checkbox input { width: 21px; height: 21px; min-height: 0; margin: 0.1rem 0 0; padding: 0; accent-color: var(--gold); }
.form-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: 0.3rem; }
.form-actions .btn { min-width: 13rem; }
.form-note { margin: 0; font-size: 0.8125rem; color: var(--muted); }

.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0 0 1.2rem; padding: 0.85rem 1rem; font-size: var(--fs-small); font-weight: 500; border-left: 3px solid; }
.form-status[hidden] { display: none; }
.form-status--ok { background: rgba(46, 125, 50, 0.16); border-color: #6bbf73; color: #d7f0d9; }
.form-status--error { background: rgba(179, 38, 30, 0.18); border-color: #e2726a; color: #f6d9d6; }
.form-status a { color: inherit; text-decoration: underline; }

/* ---------- Unterseiten (Kontakt, Danke) ---------- */
.page-hero {
  background: var(--paper); border-bottom: 1px solid var(--line-dark);
  padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}
.page-hero h1 { color: var(--ink); }
.page-hero__lead { max-width: 46ch; font-size: var(--fs-lead); color: var(--muted-dark); margin-bottom: 1.8rem; }
.page-hero .rule { background: var(--gold-dark); }
.page-hero .hero__actions { margin-top: 0; }
.contact-page { border-bottom: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 1.5rem + 3vw, 4rem); align-items: start; }

/* ---------- Footer ---------- */
.site-footer { background: var(--carbon); color: var(--muted); padding-top: clamp(2.5rem, 2rem + 2vw, 3.5rem); border-top: 1px solid var(--line); font-size: var(--fs-small); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem 3rem; padding-bottom: 2rem; }
.footer-brand { margin-bottom: 0.6rem; font: 900 1.5rem/1 var(--font-display); text-transform: uppercase; letter-spacing: 0.03em; color: var(--cream); }
.footer-brand span { color: var(--gold); }
.footer-title { margin: 0 0 0.5rem; font: 700 1.0625rem/1.2 var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; color: var(--cream); }
.footer-links { list-style: none; display: grid; }
.site-footer a { color: #cfc8b7; text-decoration: none; display: inline-flex; align-items: center; min-height: 40px; }
.site-footer a:hover { color: var(--gold); text-decoration: underline; }
.footer-bottom { position: relative; padding-block: 1.1rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.4rem 1.5rem; font-size: 0.8125rem; }
.footer-bottom::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; }

/* ---------- WhatsApp-Button (fix) ---------- */
.sticky-call {
  position: fixed; right: 1.35rem; bottom: 1.35rem; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; overflow: hidden;
  background: #25d366; color: #0e0d0b; text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  font-size: 0; white-space: nowrap;
}
.sticky-call svg { width: 30px; height: 30px; flex: none; }
.sticky-call:hover { color: #0e0d0b; text-decoration: none; }
.sticky-call.is-hidden { transform: translateY(160%); opacity: 0; pointer-events: none; }

/* ---------- Rechtstexte ---------- */
.legal { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem) var(--space-section); }
.legal .container, .legal > .wan-legal { width: 100%; max-width: 48rem; margin-inline: auto; padding-inline: var(--gutter); }
.legal h1 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.25rem); margin-bottom: 0.4em; }
.legal h2 { font-size: clamp(1.3rem, 1.15rem + 0.8vw, 1.7rem); margin: 2.2rem 0 0.6rem; }
.legal h3 { font-size: 1.0625rem; margin: 1.5rem 0 0.4rem; color: var(--cream); }
.legal p, .legal li { color: #d6d0c3; }
.legal ul { padding-left: 1.2rem; margin-bottom: 1em; }
.legal li { margin-bottom: 0.3rem; }
.legal .intro { font-size: var(--fs-lead); color: var(--muted); }
.legal address { font-style: normal; }
.legal strong { color: var(--cream); }
.placeholder { background: var(--gold-light); color: #3b2c07; padding: 0.05em 0.35em; font-weight: 600; }
.back-link { display: inline-flex; align-items: center; min-height: 44px; margin-top: 2rem; font-weight: 600; }

/* Hinweisbox der Vorschau-Fassungen (Impressum/Datenschutz) */
.wan-note {
  background: var(--carbon-2); border: 1px solid var(--gold-dark); border-left-width: 3px;
  padding: 1rem 1.15rem; margin-bottom: 1.5rem; font-size: var(--fs-small); color: #e5dfd0;
}
.wan-note strong { color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
}
@media (max-width: 860px) {
  .hero__grid, .about-grid, .contact-grid, .contact-box { grid-template-columns: 1fr; }
  .hero { padding-block: 2.5rem 3.25rem; }
  .roof { top: -1.5rem; right: -12rem; width: 28rem; height: 28rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__media { max-width: 220px; margin: 0 auto; }
  .about-grid .about__media { max-width: 28rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .values, .steps { grid-template-columns: 1fr; }
  .steps { gap: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions .btn { width: 100%; }
  .service-row { grid-template-columns: 48px 1fr; gap: 1.1rem; padding-block: 1.5rem; }
  .icon-circle { width: 48px; height: 48px; }
  .icon-circle svg { width: 22px; height: 22px; }
  .service-row h3 { font-size: 1.1875rem; }
  .hero__media { max-width: 180px; }
  .icon-badge { padding: 15%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .sticky-call { width: 54px; height: 54px; right: 1rem; bottom: 1rem; }
  .sticky-call svg { width: 26px; height: 26px; }
  .page-hero .hero__actions .btn { width: 100%; }
}

/* ---------- Animationen ---------- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
html.js .reveal-delay-1 { transition-delay: 0.08s; }
html.js .reveal-delay-2 { transition-delay: 0.16s; }
html.js .reveal-delay-3 { transition-delay: 0.24s; }

html.js .hero-anim { opacity: 0; transform: translateY(12px); }
html.js.is-loaded .hero-anim { opacity: 1; transform: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
html.js.is-loaded .hero-anim--2 { transition-delay: 0.08s; }
html.js.is-loaded .hero-anim--3 { transition-delay: 0.16s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  html.js .reveal, html.js .hero-anim { opacity: 1 !important; transform: none !important; }
}
@media (hover: none) {
  .btn, .sticky-call, .nav__cta { -webkit-tap-highlight-color: transparent; }
}
