/* ============================================================
   Baumpflege Elias Schwaiger · schwaiger.tab-log.cloud
   Mobile-first · Palette: Moosdunkel / Holz / Gelbgrün #AFC70D
   ============================================================ */

/* ---------- Fonts (lokal, DSGVO) ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/plexmono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/plexmono-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Variablen ---------- */
:root {
  --bg: #16201a;            /* Moosdunkel */
  --bg-2: #1c2820;          /* Sektion-Variante */
  --karte: #202e25;         /* Kartenfläche */
  --text: #ece7dd;          /* warmes Off-White */
  --muted: #a9b2a3;
  --akzent: #afc70d;        /* Marken-Gelbgrün */
  --akzent-dunkel: #93a70a;
  --holz: #c0a890;          /* Holz hell, Mono-Labels */
  --holz-tief: #8a5a36;     /* Jahresringe, Linien */
  --hell: #f2eee4;          /* heller Kasten (QR, Formular) */
  --tablog-blau: #1e6fa7;
  --tablog-orange: #f99c00;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-text: 'Inter', system-ui, sans-serif;
  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 64px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
::selection { background: var(--akzent); color: var(--bg); }

/* Filmkorn, ganz subtil */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ---------- Typo-Bausteine ---------- */
.kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--holz);
}
.kicker::before {
  content: '// ';
  color: var(--akzent);
}
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0.5rem 0 1.2rem;
  text-wrap: balance;
}
.abschnitt-intro { max-width: 38rem; color: var(--muted); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
section { position: relative; }

/* ---------- Topbar ---------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  /* füllt auch die iOS-Statusleiste (Safe Area) sauber aus */
  padding: 0.7rem var(--pad);
  padding-top: calc(0.7rem + env(safe-area-inset-top, 0px));
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 231, 221, 0.07);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
}
.topbar.sichtbar { transform: translateY(0); }
.topbar-marke {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.01em; text-decoration: none;
}
.topbar-marke em { font-style: normal; color: var(--akzent); }
.topbar-tel {
  font-family: var(--font-mono); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; color: var(--akzent);
  padding: 0.5rem 0.9rem; border: 1px solid rgba(175, 199, 13, 0.35);
  border-radius: 999px; min-height: 44px; display: inline-flex; align-items: center;
}
.topbar-tel:hover { background: var(--akzent); color: var(--bg); }

/* ---------- Schwebender Anruf-Button (Mobil) ---------- */
.anruf-fab {
  position: fixed; right: 16px; z-index: 95;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 52px; padding: 0.8rem 1.2rem;
  background: var(--akzent); color: var(--bg);
  font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.anruf-fab.sichtbar { opacity: 1; transform: none; pointer-events: auto; }
.anruf-fab svg { width: 18px; height: 18px; }
@media (min-width: 1024px) { .anruf-fab { display: none; } }

/* ---------- Marke (Logo-Präsenz) ---------- */
.hero-marke {
  position: absolute; top: 0; right: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 0.6rem; text-align: right;
  padding: clamp(18px, 3vw, 32px) var(--pad);
}
.hero-marke img {
  width: clamp(88px, 9.5vw, 132px); height: auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}
.marke-name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.1rem); line-height: 1.2;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.marke-sub {
  font-family: var(--font-mono); font-size: clamp(0.66rem, 1.4vw, 0.75rem);
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--akzent); text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  margin-top: -0.3rem;
}
@media (min-width: 1024px) {
  /* Desktop: Logo als großes Siegel mitte rechts, Gegengewicht zum Textblock */
  .hero-marke {
    top: 50%; translate: 0 -50%;
    align-items: center; text-align: center; gap: 1rem;
  }
  .hero-marke img { width: clamp(300px, 29vw, 440px); border-width: 5px; }
  .marke-name { font-size: 1.25rem; }
  .marke-sub { font-size: 0.8rem; }
}
.topbar-emblem {
  width: 30px; height: 30px; border-radius: 50%;
  margin-right: 0.6rem; vertical-align: middle; display: inline-block;
}
.topbar-marke { display: inline-flex; align-items: center; }
.footer-emblem { width: 72px; height: 72px; border-radius: 50%; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0.85rem 1.6rem;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em; text-decoration: none; border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primaer { background: var(--akzent); color: var(--bg); }
.btn-primaer:hover { background: var(--akzent-dunkel); }
.btn-ghost { border: 1px solid rgba(236, 231, 221, 0.3); color: var(--text); }
.btn-ghost:hover { border-color: var(--akzent); color: var(--akzent); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ============================================================
   AKT 1 · HERO
   ============================================================ */
.hero { height: 100svh; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.18);
  will-change: transform;
}
@media (min-width: 768px) {
  /* Bildausschnitt nach rechts: Kletterer steht frei neben der Headline */
  .hero-media img { translate: 4.5% 0; }
}
.hero-verlauf {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 32, 26, 0.42) 0%, rgba(22, 32, 26, 0) 30%),
    linear-gradient(2deg, rgba(22, 32, 26, 0.92) 8%, rgba(22, 32, 26, 0.35) 42%, rgba(22, 32, 26, 0) 68%);
}
.hero-inhalt {
  position: absolute; inset: auto 0 0 0;
  padding: 0 var(--pad) clamp(84px, 12svh, 128px);
  max-width: var(--wrap); margin-inline: auto;
}
.hero-kicker { margin-bottom: 0.9rem; color: var(--text); }
.hero-kicker::before { content: '// '; color: var(--akzent); }
.hero-headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem, 10vw, 6.2rem);
  line-height: 0.98; letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 12ch;
}
.hero-headline .zeile { display: block; overflow: hidden; }
.hero-headline .zeile > span { display: inline-block; will-change: transform; }
.hero-headline .gruen { color: var(--akzent); }
.hero-sub {
  display: block; margin-top: 1.1rem; max-width: 34rem;
  font-family: var(--font-text); font-weight: 400; text-transform: none;
  letter-spacing: 0; line-height: 1.55;
  font-size: clamp(1rem, 2.4vw, 1.2rem); color: var(--text);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.scroll-hinweis {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.scroll-hinweis::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(var(--akzent), transparent);
  animation: scrollpuls 1.8s ease-in-out infinite;
}
@keyframes scrollpuls { 50% { transform: scaleY(0.55); opacity: 0.5; } }

/* ============================================================
   AKT 2 · VERTRAUENSBAND
   ============================================================ */
.vertrauen { padding: clamp(72px, 12vw, 140px) 0; background: var(--bg); }
.vertrauen-grid {
  display: grid; gap: 2.2rem; margin-top: 2.6rem;
  grid-template-columns: 1fr;
}
.counter { border-left: 2px solid var(--holz-tief); padding-left: 1.2rem; }
.counter-zahl {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(3rem, 9vw, 5rem); line-height: 1;
  color: var(--akzent);
}
.counter-zahl sup { font-size: 0.45em; color: var(--holz); }
.counter-label {
  font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text);
  margin-top: 0.5rem;
}
.counter-sub { color: var(--muted); font-size: 0.92rem; margin-top: 0.2rem; }
@media (min-width: 720px) {
  .vertrauen-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   AKT 3 · LEISTUNGEN (gepinnter Horizontal-Scrub auf Desktop)
   ============================================================ */
.leistungen { background: var(--bg-2); padding: clamp(72px, 12vw, 140px) 0 0; }
.leistungen-kopf { padding-bottom: 2rem; }
.leistungen-buehne { position: relative; }
.panel-stapel { display: flex; flex-direction: column; gap: 1.4rem; padding: 0 var(--pad) clamp(72px, 12vw, 140px); }
.panel {
  background: var(--karte);
  border: 1px solid rgba(236, 231, 221, 0.07);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
}
.panel-bild { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.panel-bild img { width: 100%; height: 100%; object-fit: cover; }
.panel-nr {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--text);
  background: rgba(22, 32, 26, 0.72); border: 1px solid rgba(236, 231, 221, 0.18);
  padding: 0.3rem 0.65rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.panel-text { padding: 1.4rem 1.4rem 1.6rem; }
.panel h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.45rem; letter-spacing: -0.01em; margin-bottom: 0.6rem;
}
.panel-text > p { color: var(--muted); font-size: 0.98rem; }
.panel ul { margin-top: 1rem; display: grid; gap: 0.45rem; }
.panel li { font-size: 0.92rem; padding-left: 1.3rem; position: relative; }
.panel li::before {
  content: ''; position: absolute; left: 0; top: 0.52em;
  width: 14px; height: 2px; background: var(--akzent);
}
.panel-fortschritt { display: none; }
@media (min-width: 1024px) {
  .leistungen-buehne { height: 100vh; overflow: hidden; }
  .panel-stapel { position: absolute; inset: 0; padding: 0; display: block; }
  .panel {
    position: absolute; inset: 0; border: 0; border-radius: 0;
    background: var(--bg-2);
    display: grid; align-items: center; column-gap: clamp(2rem, 4vw, 4rem);
    grid-template-columns: 1fr minmax(0, 500px) minmax(0, 520px) 1fr;
    will-change: transform;
  }
  .panel + .panel { box-shadow: 0 -34px 70px rgba(0, 0, 0, 0.45); }
  .panel-bild {
    grid-column: 2; aspect-ratio: 4 / 5; max-height: 72vh; width: 100%;
    border-radius: 20px;
  }
  .panel-text { grid-column: 3; padding: 0; max-width: 34rem; }
  .panel h3 { font-size: 2rem; }
  .panel-text > p { font-size: 1.05rem; }
  .panel li { font-size: 0.98rem; }
  .panel-fortschritt {
    display: block; position: absolute; right: var(--pad); top: 50%;
    transform: translateY(-50%) rotate(90deg); transform-origin: center;
    z-index: 5; font-family: var(--font-mono); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.3em; color: var(--holz);
  }
  .panel-fortschritt [data-pf] { color: var(--akzent); }
}

/* ============================================================
   AKT 4 · DAS VERFAHREN (Plan-SVG-Scrub) + VORHER/NACHHER
   ============================================================ */
.verfahren { background: var(--bg); padding: clamp(72px, 12vw, 140px) 0; }
.verfahren-buehne { margin-top: 2.4rem; }
.verfahren-video {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 16 / 9; background: #0d1310;
  border: 1px solid rgba(236, 231, 221, 0.09);
}
.verfahren-standbild, .verfahren-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.verfahren-canvas { opacity: 0; }
html:not(.reduced-motion) .verfahren-canvas.bereit { opacity: 1; }
.schritte { display: grid; gap: 1.6rem; margin-top: 2rem; }
.schritt {
  border-left: 2px solid rgba(236, 231, 221, 0.12);
  padding-left: 1.2rem;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}
.schritt.aktiv { border-color: var(--akzent); }
.schritt-nr {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; color: var(--akzent);
}
.schritt h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  margin: 0.3rem 0 0.4rem;
}
.schritt p { color: var(--muted); font-size: 0.95rem; }
.schritt-punkte { display: none; }
@media (min-width: 1024px) {
  .verfahren-buehne {
    height: 100vh; display: flex; flex-direction: column;
    justify-content: center;
    /* Topbar (fix) nie überlappen: Puffer oben, Video skaliert nach Resthöhe */
    padding: 96px 0 3vh;
  }
  .verfahren-video {
    width: min(1040px, 92%, calc((100vh - 380px) * 16 / 9));
    margin-inline: auto; flex: none;
  }
  .schritte {
    position: relative; margin: 2.2rem auto 0; width: min(680px, 92%);
    min-height: 172px; display: block;
  }
  .schritt {
    position: absolute; inset: 0; text-align: center; border-left: 0; padding-left: 0;
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
  }
  .schritt.aktiv { opacity: 1; transform: none; }
  .schritt h3 { font-size: 1.5rem; }
  .schritt-punkte {
    display: flex; gap: 10px; justify-content: center; margin-top: 0.6rem;
  }
  .schritt-punkte span {
    width: 34px; height: 3px; border-radius: 2px;
    background: rgba(236, 231, 221, 0.18); transition: background 0.3s ease;
  }
  .schritt-punkte span.aktiv { background: var(--akzent); }
}

/* Vorher/Nachher-Wipe */
.vergleich { margin-top: clamp(56px, 9vw, 110px); }
.vergleich-titel { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }
@media (min-width: 900px) {
  .vergleich-rahmen { aspect-ratio: 16 / 9; max-width: 980px; }
}
.vergleich-rahmen {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4 / 3; margin-top: 1.6rem;
  border: 1px solid rgba(236, 231, 221, 0.09);
}
.vergleich-rahmen img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.vergleich-nachher { clip-path: inset(0 100% 0 0); will-change: clip-path; }
.vergleich-kante {
  position: absolute; top: 0; bottom: 0; left: 0%; width: 2px;
  background: var(--akzent); will-change: left;
  box-shadow: 0 0 18px rgba(175, 199, 13, 0.55);
}
.vergleich-tag {
  position: absolute; bottom: 14px;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(22, 32, 26, 0.75); padding: 0.35rem 0.7rem; border-radius: 999px;
  border: 1px solid rgba(236, 231, 221, 0.16);
}
.vergleich-tag.vorher { left: 14px; }
.vergleich-tag.nachher { right: 14px; }

/* ============================================================
   AKT 5 · ÜBER MICH
   ============================================================ */
.ueber { background: var(--bg-2); padding: clamp(72px, 12vw, 140px) 0; overflow: hidden; }
.ueber-layout { display: grid; gap: 2.6rem; }
.ueber-bild { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; }
.ueber-foto {
  width: 100%; height: 118%; object-fit: cover; will-change: transform;
}
.ueber-emblem {
  position: absolute; right: 16px; bottom: 16px; width: 84px; height: 84px;
  border-radius: 50%;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}
.ueber-text p + p { margin-top: 1rem; }
.ueber-text .claim {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; line-height: 1.3; color: var(--holz);
  border-left: 2px solid var(--akzent); padding-left: 1.1rem;
  margin-top: 1.6rem;
}
@media (min-width: 900px) {
  .ueber-layout { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
}

/* ============================================================
   AKT 6 · EINZUGSGEBIET + FIRMEN
   ============================================================ */
.gebiet { background: var(--bg); padding: clamp(72px, 12vw, 140px) 0; }
.gebiet-layout { display: grid; gap: 2.6rem; margin-top: 2rem; }
.maps-kachel {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--karte);
  border: 1px solid rgba(236, 231, 221, 0.09);
}
.maps-kachel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.maps-consent {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  text-align: center; padding: 1.6rem;
  background:
    radial-gradient(ellipse at center, rgba(175, 199, 13, 0.06), transparent 65%),
    linear-gradient(rgba(175, 199, 13, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 199, 13, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px, 44px 44px;
}
.maps-emblem { width: 88px; height: 88px; border-radius: 50%; box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35); }
.maps-adresse { font-family: var(--font-mono); font-size: 0.9rem; color: var(--text); line-height: 1.7; }
.maps-hinweis { font-size: 0.78rem; color: var(--muted); max-width: 30rem; }
.maps-hinweis a { color: var(--holz); }
.orte { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.4rem; }
.orte li {
  font-family: var(--font-mono); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; padding: 0.45rem 0.85rem;
  border: 1px solid rgba(236, 231, 221, 0.16); border-radius: 999px;
  color: var(--muted);
}
.orte-hinweis {
  margin-top: 1rem; font-size: 0.9rem; color: var(--muted); font-style: italic;
}
.firmen {
  margin-top: 2.2rem; padding: 1.6rem;
  background: var(--karte); border: 1px solid rgba(236, 231, 221, 0.07);
  border-radius: 20px;
}
.firmen h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.firmen p { color: var(--muted); font-size: 0.97rem; }
@media (min-width: 900px) {
  .gebiet-layout { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
}

/* ============================================================
   AKT 7 · KONTAKT + FOOTER
   ============================================================ */
.kontakt {
  background: var(--bg-2);
  padding: clamp(80px, 13vw, 150px) 0 clamp(56px, 8vw, 90px);
}
.kontakt-headline {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 7.5vw, 4.6rem); line-height: 1.02;
  letter-spacing: -0.02em; text-transform: uppercase; text-wrap: balance;
}
.kontakt-headline .gruen { color: var(--akzent); }
.kontakt-intro { margin-top: 1rem; max-width: 36rem; color: var(--muted); }
.tel-riesig {
  display: inline-block; margin-top: 2rem;
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(1.9rem, 7.5vw, 4.4rem); letter-spacing: 0.01em;
  color: var(--akzent); text-decoration: none; line-height: 1.1;
  border-bottom: 3px solid rgba(175, 199, 13, 0.3);
  padding-bottom: 0.15em;
}
.tel-riesig:hover { border-color: var(--akzent); }
.kontakt-wege { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.btn-whatsapp { border: 1px solid rgba(236, 231, 221, 0.3); color: var(--text); }
.btn-whatsapp svg { fill: #25d366; }
.btn-whatsapp:hover { border-color: #25d366; }

.kontakt-unten { display: grid; gap: 2.6rem; margin-top: clamp(48px, 7vw, 80px); }
.formular {
  background: var(--karte); border: 1px solid rgba(236, 231, 221, 0.07);
  border-radius: 20px; padding: clamp(1.4rem, 3vw, 2.2rem);
}
.formular h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.feld { margin-bottom: 1rem; }
.feld label {
  display: block; font-family: var(--font-mono); font-size: 0.75rem;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--holz); margin-bottom: 0.4rem;
}
.feld input, .feld textarea {
  width: 100%; min-height: 52px; padding: 0.85rem 1rem;
  background: var(--bg); color: var(--text);
  border: 1px solid rgba(236, 231, 221, 0.14); border-radius: 12px;
  font-family: var(--font-text); font-size: 1rem;
}
.feld textarea { min-height: 130px; resize: vertical; }
.feld input:focus, .feld textarea:focus {
  outline: 2px solid var(--akzent); outline-offset: 1px; border-color: transparent;
}
.formular .btn { width: 100%; margin-top: 0.4rem; }
.formular-hinweis { font-size: 0.8rem; color: var(--muted); margin-top: 0.8rem; }

.qr-kasten {
  display: none;
}
.bewertung {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.sterne { display: inline-flex; gap: 3px; }
.sterne svg { width: 22px; height: 22px; fill: var(--akzent); }
.bewertung-text { font-size: 0.95rem; color: var(--text); }
.bewertung-text a { color: var(--holz); }
.bewertung-text a:hover { color: var(--akzent); }
.bewertung-badge {
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(236, 231, 221, 0.16); padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.stimmen { display: grid; gap: 1rem; margin-top: 1.6rem; }
.stimme {
  font-size: 0.95rem; color: var(--muted); font-style: italic;
  border-left: 2px solid var(--holz-tief); padding-left: 1rem;
}
.stimme-quelle {
  display: block; font-style: normal; font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--holz); margin-top: 0.3rem;
}
.vertrauen .stimmen { margin-top: 3rem; max-width: 44rem; }
@media (min-width: 900px) {
  .vertrauen .stimmen { grid-template-columns: repeat(3, 1fr); max-width: none; gap: 1.6rem; }
}

@media (min-width: 1024px) {
  .kontakt-unten { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
  .qr-kasten {
    display: block; background: var(--hell); color: #16201a;
    border-radius: 20px; padding: 1.8rem; text-align: center;
  }
  .qr-kasten img, .qr-kasten svg { width: 180px; height: 180px; margin-inline: auto; }
  .qr-kasten figcaption {
    margin-top: 1rem; font-family: var(--font-mono); font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: #3d4a41;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg); border-top: 1px solid rgba(236, 231, 221, 0.07);
  padding: 2.2rem 0 5.5rem;
}
.footer-zeile {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  align-items: center;
}
.footer nav { display: flex; gap: 1.4rem; }
.footer nav a {
  font-size: 0.9rem; color: var(--muted); text-decoration: none;
  min-height: 44px; display: inline-flex; align-items: center;
}
.footer nav a:hover { color: var(--text); }
.footer-adresse { font-size: 0.9rem; color: var(--muted); }
.footer-adresse a { color: var(--muted); }
.footer-adresse a:hover { color: var(--text); }
.footer-claim {
  font-size: 0.88rem; font-style: italic; color: var(--holz); margin-top: 0.5rem;
}
.tablog-credit { font-size: 0.85rem; color: var(--muted); margin-top: 1.6rem; }
.tablog-credit a {
  color: var(--tablog-blau); text-decoration: none; font-weight: 600;
}
.tablog-credit a:hover { color: var(--tablog-orange); }
@media (min-width: 1024px) { .footer { padding-bottom: 2.2rem; } }

/* ============================================================
   Rechtsseiten (Impressum / Datenschutz)
   ============================================================ */
.recht-page { background: var(--bg); }
.recht-header { padding: 1.4rem var(--pad); }
.recht-header .zurueck {
  font-family: var(--font-mono); font-size: 0.9rem; text-decoration: none;
  color: var(--holz); min-height: 44px; display: inline-flex; align-items: center;
}
.recht-header .zurueck:hover { color: var(--akzent); }
.recht-main {
  max-width: 46rem; margin-inline: auto;
  padding: 1rem var(--pad) 4rem;
}
.recht-main h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.6rem;
}
.recht-main h2 {
  font-size: 1.25rem; margin: 2rem 0 0.6rem; letter-spacing: 0;
}
.recht-main p, .recht-main li { color: var(--muted); font-size: 0.98rem; }
.recht-main p + p { margin-top: 0.7rem; }
.recht-main ul { list-style: disc; padding-left: 1.3rem; }
.recht-main a { color: var(--holz); }
.recht-main a:hover { color: var(--akzent); }
.recht-main address { font-style: normal; color: var(--text); line-height: 1.7; }
.recht-footer {
  border-top: 1px solid rgba(236, 231, 221, 0.07);
  padding: 1.6rem var(--pad); display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}
.recht-footer nav a { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-hinweis::after { animation: none; }
}
html.reduced-motion .hero-media img { transform: none; }
html.reduced-motion .hero-headline .zeile > span { transform: none !important; }
html.reduced-motion .schritt { opacity: 1; }
@media (min-width: 1024px) {
  html.reduced-motion .schritte { display: grid; min-height: 0; gap: 1.6rem; width: min(680px, 92%); }
  html.reduced-motion .schritt {
    position: static; transform: none; text-align: left;
    border-left: 2px solid rgba(236, 231, 221, 0.12); padding-left: 1.2rem;
    pointer-events: auto;
  }
  html.reduced-motion .schritt-punkte { display: none; }
}
html.reduced-motion .vergleich-nachher { clip-path: inset(0 50% 0 0); }
html.reduced-motion .vergleich-kante { left: 50%; }
html.reduced-motion .ueber-foto { height: 100%; }
