/* ==========================================================================
   Everglade GmbH – Designsystem
   CI-Farben: Grün #8DC043 · Rot #D30505 · Blau #00B7FF · Orange #D96C1F
              Anthrazit #616466 · Grau #C5C3C3 · Braun #3A2E24
   Alle weiteren Töne sind Mischungen dieser Farben mit Weiß/Schwarz.
   ========================================================================== */

/* ---------- Schriften (lokal gehostet, keine Verbindung zu Google) ---------- */
@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-var.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-italic-var.woff2") format("woff2");
  font-weight: 400 600;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* CI */
  --ci-green: #8DC043;
  --ci-red: #D30505;
  --ci-blue: #00B7FF;
  --ci-orange: #D96C1F;
  --ci-anthracite: #616466;
  --ci-grey: #C5C3C3;
  --ci-brown: #3A2E24;

  /* Flächen & Text (hell) */
  --bg: #F5F6F7;
  --bg-2: #ECEEF0;
  --surface: #FFFFFF;
  --surface-2: #F9FAFA;
  --ink: #1C1E20;
  --text: #45484A;
  --muted: #616466;
  --line: rgba(28, 30, 32, 0.12);
  --line-strong: rgba(28, 30, 32, 0.22);
  --dark: #1C1E20;
  --dark-2: #141517;
  --on-dark: #F6F8F3;
  --on-dark-muted: rgba(246, 248, 243, 0.74);
  --ink-deep: #141517;
  --shadow-color: 58, 46, 36;

  /* Bereichsfarben (Standard = Gartenbau) */
  --accent: var(--ci-green);
  --accent-ink: #5F7032;
  --on-accent: #141517;
  --accent-soft: rgba(141, 192, 67, 0.16);
  --accent-glow: rgba(141, 192, 67, 0.45);

  --green-ink: #5F7032;
  --orange-ink: #995321;
  --blue-ink: #1D7291;
  --red-ink: #D30505;

  /* Typo */
  --font-display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-s: 0.9375rem;
  --fs-m: 1.0625rem;
  --fs-l: clamp(1.125rem, 0.9rem + 0.6vw, 1.3rem);
  --fs-h4: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);
  --fs-h3: clamp(1.3rem, 1.05rem + 0.9vw, 1.7rem);
  --fs-h2: clamp(1.9rem, 1.3rem + 2.2vw, 3.1rem);
  --fs-h1: clamp(2.4rem, 1.4rem + 4vw, 4.6rem);
  --fs-display: clamp(2.9rem, 1.2rem + 6.6vw, 7rem);

  /* Maße */
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --section: clamp(64px, 5rem + 4vw, 136px);
  --header-h: 76px;
  --r-xs: 8px;
  --r-s: 12px;
  --r-m: 18px;
  --r-l: 28px;
  --r-xl: 40px;
  --r-leaf: 28px 28px 28px 6px;
  --r-leaf-l: 40px 40px 40px 8px;

  --shadow-s: 0 1px 2px rgba(var(--shadow-color), 0.06), 0 2px 8px -2px rgba(var(--shadow-color), 0.08);
  --shadow-m: 0 1px 2px rgba(var(--shadow-color), 0.06), 0 12px 32px -12px rgba(var(--shadow-color), 0.22);
  --shadow-l: 0 2px 4px rgba(var(--shadow-color), 0.06), 0 28px 64px -24px rgba(var(--shadow-color), 0.35);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 160ms;
  --t: 280ms;
  --t-slow: 600ms;

  color-scheme: light;
}

/* Dunkelmodus – automatisch oder per Schalter */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #151618;
    --bg-2: #1C1E20;
    --surface: #232528;
    --surface-2: #1E2023;
    --ink: #F6F8F3;
    --text: #DCDDD6;
    --muted: #C5C3C3;
    --line: rgba(246, 248, 243, 0.12);
    --line-strong: rgba(246, 248, 243, 0.24);
    --dark: #111213;
    --dark-2: #0C0D0E;
    --shadow-color: 0, 0, 0;
    --accent-ink: var(--accent);
    --green-ink: #8DC043;
    --orange-ink: #E08A4F;
    --blue-ink: #00B7FF;
    --red-ink: #F07070;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #151618;
  --bg-2: #1C1E20;
  --surface: #232528;
  --surface-2: #1E2023;
  --ink: #F6F8F3;
  --text: #DCDDD6;
  --muted: #C5C3C3;
  --line: rgba(246, 248, 243, 0.12);
  --line-strong: rgba(246, 248, 243, 0.24);
  --dark: #111213;
  --dark-2: #0C0D0E;
  --shadow-color: 0, 0, 0;
  --accent-ink: var(--accent);
  --green-ink: #8DC043;
  --orange-ink: #E08A4F;
  --blue-ink: #00B7FF;
  --red-ink: #F07070;
  color-scheme: dark;
}

/* Bereichs-Themes */
[data-division="baumdienst"] {
  --accent: var(--ci-orange);
  --accent-ink: var(--orange-ink);
  --on-accent: #141517;
  --accent-soft: rgba(217, 108, 31, 0.15);
  --accent-glow: rgba(217, 108, 31, 0.45);
}
[data-division="dienstleistungen"] {
  --accent: var(--ci-blue);
  --accent-ink: var(--blue-ink);
  --on-accent: #141517;
  --accent-soft: rgba(0, 183, 255, 0.14);
  --accent-glow: rgba(0, 183, 255, 0.42);
}
[data-division="transporte"] {
  --accent: var(--ci-red);
  --accent-ink: var(--red-ink);
  --on-accent: #FFFFFF;
  --accent-soft: rgba(211, 5, 5, 0.12);
  --accent-glow: rgba(211, 5, 5, 0.38);
}
[data-division="gartenbau"],
[data-division="karriere"] {
  --accent: var(--ci-green);
  --accent-ink: var(--green-ink);
  --on-accent: #141517;
  --accent-soft: rgba(141, 192, 67, 0.16);
  --accent-glow: rgba(141, 192, 67, 0.45);
}

/* ---------- Reset & Basis ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-m);
  line-height: 1.65;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.is-locked { overflow: hidden; }
main { flex: 1 0 auto; display: block; }

img, svg, video, picture { display: block; max-width: 100%; }
img { height: auto; }
img[loading="lazy"] { background: var(--bg-2); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
address { font-style: normal; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: 1.18; }
h4 { font-size: var(--fs-h4); line-height: 1.25; letter-spacing: -0.01em; }
p, li { text-wrap: pretty; }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--ink-deep);
  color: #fff;
  border-radius: var(--r-s);
  transform: translateY(-160%);
  transition: transform var(--t) var(--ease);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { transform: none; }

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: calc(820px + 2 * var(--gutter)); }
.container--wide { max-width: calc(1440px + 2 * var(--gutter)); }

.section { padding-block: var(--section); position: relative; }
.section--tight { padding-block: calc(var(--section) * 0.6); }
.section--flush-top { padding-top: 0; }
.section--tint { background: var(--bg-2); }
.section--surface { background: var(--surface); }
.section--dark {
  background: var(--dark);
  color: var(--on-dark-muted);
  --ink: var(--on-dark);
  --text: var(--on-dark-muted);
  --muted: var(--on-dark-muted);
  --line: rgba(246, 248, 243, 0.14);
  --line-strong: rgba(246, 248, 243, 0.26);
  --surface: rgba(246, 248, 243, 0.06);
  --surface-2: rgba(246, 248, 243, 0.04);
  --accent-ink: var(--accent);
}
[data-division="transporte"] .section--dark { --accent-ink: #F07070; }
.section--accent {
  background: var(--accent);
  color: var(--on-accent);
  --ink: var(--on-accent);
  --text: var(--on-accent);
  --muted: var(--on-accent);
  --accent-ink: var(--on-accent);
}
.section--rounded {
  border-radius: var(--r-xl);
  margin-inline: clamp(8px, 1.5vw, 24px);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head--split > div { max-width: 720px; }
.section-head p { font-size: var(--fs-l); color: var(--muted); }
.section-head h2 { margin-bottom: 0.35em; }

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--min, 280px)), 1fr));
}
.grid--2 { --min: 420px; }
.grid--3 { --min: 300px; }
.grid--4 { --min: 230px; }
.grid--dense { gap: 12px; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.25fr 1fr; }
  .split--wide-right { grid-template-columns: 1fr 1.25fr; }
  .split--top { align-items: start; }
  .split--reverse > :first-child { order: 2; }
}

.stack > * + * { margin-top: var(--stack, 1rem); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--gap, 12px); align-items: center; }

.text-center { text-align: center; }
.lead { font-size: var(--fs-l); color: var(--muted); line-height: 1.6; }
.muted { color: var(--muted); }
.small { font-size: var(--fs-s); }
.xsmall { font-size: var(--fs-xs); }
.accent-text { color: var(--accent-ink); }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mt-4 { margin-top: 64px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 40px; }
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem); margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose a { color: var(--accent-ink); text-underline-offset: 3px; }
.prose ul li, .prose ol li { margin-bottom: 0.35em; }
.prose table td, .prose table th { border-bottom: 1px solid var(--line); padding: 10px 8px; text-align: left; vertical-align: top; }

/* ---------- Eyebrow / Swoosh / Badges ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 8px;
  border-radius: 8px 8px 8px 2px;
  background: var(--accent);
  flex: none;
}
.section--accent .eyebrow::before { background: var(--on-accent); }

.swoosh {
  position: relative;
  white-space: nowrap;
  z-index: 0;
  display: inline-block;
}
.swoosh::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: -0.2em;
  height: 0.42em;
  z-index: -1;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M2 4c30 9 90 12 150 10 12-1 20-5 24-12l20-2c-3 12-8 20-22 21C112 25 38 22 2 4z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 24' preserveAspectRatio='none'%3E%3Cpath d='M2 4c30 9 90 12 150 10 12-1 20-5 24-12l20-2c-3 12-8 20-22 21C112 25 38 22 2 4z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  transform-origin: left center;
  transform: scaleX(0);
  animation: swoosh-in 900ms var(--ease) 300ms forwards;
}
@keyframes swoosh-in { to { transform: scaleX(1); } }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: var(--fs-xs);
  font-weight: 600;
  line-height: 1.3;
  background: var(--accent-soft);
  color: var(--accent-ink);
  white-space: nowrap;
}
.badge--solid { background: var(--accent); color: var(--on-accent); }
.badge--dark { background: rgba(31, 24, 18, 0.72); color: #fff; backdrop-filter: blur(8px); }
.badge--gartenbau { --accent: var(--ci-green); --accent-ink: var(--green-ink); --accent-soft: rgba(141,192,67,.16); }
.badge--baumdienst { --accent: var(--ci-orange); --accent-ink: var(--orange-ink); --accent-soft: rgba(217,108,31,.15); }
.badge--dienstleistungen { --accent: var(--ci-blue); --accent-ink: var(--blue-ink); --accent-soft: rgba(0,183,255,.14); }
.badge--transporte { --accent: var(--ci-red); --accent-ink: var(--red-ink); --accent-soft: rgba(211,5,5,.12); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: var(--fs-s);
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
a.chip:hover, button.chip:hover { border-color: var(--accent); background: var(--accent-soft); }
.chip .icon { color: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
  --btn-border: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  border: 1.5px solid var(--btn-border);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px var(--accent-glow); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn .icon { width: 1.15em; height: 1.15em; transition: transform var(--t) var(--ease); }
.btn:hover .icon--move { transform: translateX(4px); }

.btn--dark { --btn-bg: var(--ink-deep); --btn-fg: #fff; }
.btn--dark:hover { box-shadow: 0 10px 24px -10px rgba(31, 24, 18, 0.6); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-border: var(--line-strong); }
.btn--ghost:hover { --btn-border: var(--ink); box-shadow: none; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--ink-deep); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-border: rgba(255, 255, 255, 0.45); }
.btn--ghost-light:hover { --btn-border: #fff; box-shadow: none; }
.btn--whatsapp { --btn-bg: #25D366; --btn-fg: #0B2E17; }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: 0.9375rem; }
.btn--lg { min-height: 60px; padding: 18px 32px; font-size: 1.0625rem; }
.btn--block { width: 100%; }
.btn--icon { width: 48px; min-height: 48px; padding: 0; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent-ink);
  text-decoration: none;
}
.link-arrow .icon { transition: transform var(--t) var(--ease); }
.link-arrow:hover .icon, a:hover > .link-arrow .icon, .card:hover .link-arrow .icon { transform: translateX(5px); }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.icon-btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.icon-btn .icon { width: 20px; height: 20px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background var(--t), box-shadow var(--t), transform var(--t) var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
  z-index: -1;
}
.site-header.is-scrolled::before { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 90%, transparent); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
  margin-right: auto;
}
.brand img { height: 30px; width: auto; }
.brand .brand__dark { display: none; }
:root[data-theme="dark"] .brand .brand__light { display: none; }
:root[data-theme="dark"] .brand .brand__dark { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand .brand__light { display: none; }
  :root:not([data-theme="light"]) .brand .brand__dark { display: block; }
}
.brand__tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  line-height: 1.2;
}

.main-nav { display: none; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.975rem;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-link:hover, .nav-item.is-open > .nav-link { background: var(--accent-soft); }
.nav-link[aria-current="page"], .nav-link.is-active { color: var(--ink); }
.nav-link[aria-current="page"]::after, .nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: var(--dot, var(--accent));
}
.nav-link .icon { width: 14px; height: 14px; transition: transform var(--t) var(--ease); }
.nav-item.is-open > .nav-link .icon { transform: rotate(180deg); }
.nav-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dot); flex: none; }

.nav-item { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(760px, 92vw);
  translate: -50% 0;
  padding: 22px;
  border-radius: var(--r-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-l);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top center;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility 0s linear var(--t);
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav-item.is-open > .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility 0s;
}
.mega__links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-content: start;
}
.mega__links a {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: var(--r-s);
  text-decoration: none;
  color: var(--ink);
  transition: background var(--t-fast);
}
.mega__links a:hover, .mega__links a:focus-visible { background: var(--accent-soft); }
.mega__links .icon { margin-top: 2px; color: var(--accent-ink); }
.mega__links strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; line-height: 1.25; }
.mega__links span { display: block; font-size: 0.8125rem; color: var(--muted); line-height: 1.35; margin-top: 2px; }
.mega__feature {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  min-height: 260px;
  color: #fff;
  text-decoration: none;
  background: var(--dark);
}
.mega__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.mega__feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,24,18,.88), rgba(31,24,18,.1) 65%); }
.mega__feature > *:not(img) { position: relative; z-index: 1; }
.mega__feature:hover img { transform: scale(1.05); }
.mega__feature strong { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.2; }
.mega__feature span { font-size: 0.875rem; opacity: 0.85; }
.mega__all {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-m);
  background: var(--bg-2);
  font-size: var(--fs-s);
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 8px 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: var(--fs-s);
  transition: border-color var(--t-fast);
}
.search-trigger:hover { border-color: var(--accent); }
.search-trigger kbd, .kbd {
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--muted);
}
.search-trigger .label { display: none; }
.header-cta { display: none; }

.burger {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: var(--ink-deep);
  color: #fff;
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  position: relative;
  transition: transform var(--t) var(--ease), background var(--t-fast);
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 720px) {
  .search-trigger .label { display: inline; }
  .header-cta { display: inline-flex; }
}
@media (min-width: 1180px) {
  .main-nav { display: block; }
  .burger { display: none; }
  .brand { margin-right: 0; }
  .main-nav { margin-inline: auto; }
  .search-trigger .label { display: none; }
}
@media (min-width: 1320px) {
  .search-trigger .label { display: inline; }
}

/* Scroll-Fortschritt */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100%;
  transform-origin: left;
  transform: scaleX(var(--progress, 0));
  background: linear-gradient(90deg, var(--ci-green), var(--ci-blue), var(--ci-orange), var(--ci-red));
  pointer-events: none;
}

/* Mobile Navigation */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--bg);
  padding: 16px var(--gutter) calc(20px + env(safe-area-inset-bottom));
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility 0s linear var(--t);
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility 0s;
}
.drawer__top { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.drawer__top img { height: 28px; width: auto; }
.drawer__body { overflow-y: auto; padding-block: 16px; overscroll-behavior: contain; }
.drawer__group { border-bottom: 1px solid var(--line); }
.drawer__group > a, .drawer__group > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 4px;
  border: 0;
  background: none;
  text-align: left;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
}
.drawer__group > button .icon { transition: transform var(--t) var(--ease); }
.drawer__group > button[aria-expanded="true"] .icon { transform: rotate(180deg); }
.drawer__group .nav-dot { width: 12px; height: 12px; margin-right: 10px; display: inline-block; }
.drawer__sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t) var(--ease);
}
.drawer__sub > ul { overflow: hidden; list-style: none; margin: 0; padding: 0 0 0 26px; }
.drawer__group > button[aria-expanded="true"] + .drawer__sub { grid-template-rows: 1fr; }
.drawer__sub li a { display: block; padding: 9px 0; color: var(--text); text-decoration: none; }
.drawer__sub li:last-child { padding-bottom: 14px; }
.drawer__sub li a:hover { color: var(--ink); }
.drawer__foot { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.drawer__foot .btn { width: 100%; }
.drawer__foot .btn:first-child { grid-column: 1 / -1; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 20px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: "/"; opacity: 0.5; }
.breadcrumbs a { text-decoration: none; color: inherit; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs [aria-current] { color: var(--ink); font-weight: 500; }

/* ---------- Hero Startseite ---------- */
.home-hero {
  position: relative;
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(32px, 4vw, 56px);
  overflow: hidden;
}
.home-hero__grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
@media (min-width: 980px) {
  .home-hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}
.home-hero h1 {
  font-size: clamp(2.8rem, 1rem + 5.2vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 0.3em;
}
.home-hero h1 .word { display: inline-block; opacity: 0; transform: translateY(0.4em); animation: word-in 800ms var(--ease) forwards; }
.home-hero h1 .word:nth-child(1) { animation-delay: 80ms; color: var(--ink); }
.home-hero h1 .word:nth-child(2) { animation-delay: 240ms; }
.home-hero h1 .word:nth-child(3) { animation-delay: 400ms; }
.home-hero h1 .dot { color: var(--ci-green); }
.home-hero h1 .word:nth-child(2) .dot { color: var(--ci-orange); }
.home-hero h1 .word:nth-child(3) .dot { color: var(--ci-red); }
@keyframes word-in { to { opacity: 1; transform: none; } }
.home-hero__lead { font-size: var(--fs-l); max-width: 560px; color: var(--muted); }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 26px;
  font-size: var(--fs-s);
  color: var(--muted);
  list-style: none;
  padding: 0;
}
.trust-row li { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .icon { color: var(--accent-ink); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.02;
  max-width: 540px;
  width: 100%;
  margin-inline: auto;
}
.hero-visual__photo {
  position: absolute;
  border-radius: var(--r-leaf-l);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  background: var(--bg-2);
}
.hero-visual__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual__photo--a { inset: 0 22% 26% 0; animation: float-a 9s ease-in-out infinite; }
.hero-visual__photo--b { width: 52%; aspect-ratio: 4 / 5; right: 0; bottom: 0; border: 6px solid var(--bg); animation: float-b 11s ease-in-out infinite; }
.hero-visual__mascot {
  position: absolute;
  left: -4%;
  bottom: -2%;
  width: 34%;
  filter: drop-shadow(0 16px 24px rgba(31, 24, 18, 0.28));
  animation: mascot-wave 5s ease-in-out infinite;
  transform-origin: 50% 90%;
}
.hero-visual__badge {
  position: absolute;
  right: 4%;
  top: 6%;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-m);
  font-size: var(--fs-s);
  color: var(--ink);
  animation: float-b 7s ease-in-out infinite;
}
.hero-visual__badge strong { display: block; font-family: var(--font-display); font-size: 1rem; line-height: 1.2; }
.hero-visual__badge span { display: block; color: var(--muted); font-size: 0.8rem; line-height: 1.3; }
.hero-visual__badge .icon-wrap { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); }
@keyframes float-a { 50% { transform: translateY(-8px) rotate(-0.6deg); } }
@keyframes float-b { 50% { transform: translateY(8px); } }
@keyframes mascot-wave { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-3deg) translateY(-4px); } }

/* Bereichs-Kacheln */
.division-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(28px, 3vw, 44px);
}
@media (min-width: 980px) { .division-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.division-card {
  --tile: var(--ci-green);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(170px, 18vw, 250px);
  padding: clamp(14px, 1.6vw, 22px);
  border-radius: var(--r-leaf);
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  background: var(--dark);
  box-shadow: var(--shadow-s);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.division-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform var(--t-slow) var(--ease);
}
.division-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(31, 24, 18, 0.92) 8%, rgba(31, 24, 18, 0.25) 60%, rgba(31, 24, 18, 0.05));
}
.division-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--tile);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.division-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.division-card:hover img { transform: scale(1.06); }
.division-card:hover::after { transform: scaleX(1); }
.division-card__icon {
  position: absolute;
  top: clamp(12px, 1.4vw, 18px);
  left: clamp(12px, 1.4vw, 18px);
  width: 42px;
  height: 42px;
  border-radius: 14px 14px 14px 4px;
  display: grid;
  place-items: center;
  background: var(--tile);
  color: var(--tile-on, #141517);
}
.division-card__arrow {
  position: absolute;
  top: clamp(12px, 1.4vw, 18px);
  right: clamp(12px, 1.4vw, 18px);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  transition: background var(--t), transform var(--t) var(--ease);
}
.division-card:hover .division-card__arrow { background: var(--tile); color: var(--tile-on, #141517); transform: rotate(-45deg); }
.division-card h2, .division-card h3 {
  color: #fff;
  font-size: clamp(1.15rem, 0.9rem + 0.9vw, 1.6rem);
  margin: 0 0 4px;
}
.division-card p { margin: 0; font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.925rem); color: rgba(255, 255, 255, 0.82); line-height: 1.4; }
.division-card--gartenbau { --tile: var(--ci-green); }
.division-card--baumdienst { --tile: var(--ci-orange); }
.division-card--dienstleistungen { --tile: var(--ci-blue); }
.division-card--transporte { --tile: var(--ci-red); --tile-on: #fff; }
.division-card--shop { --tile: var(--ci-grey); }

/* ---------- Seiten-Hero (Hubs & Leistungen) ---------- */
.page-hero {
  position: relative;
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(40px, 5vw, 80px);
}
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (min-width: 980px) { .page-hero__grid { grid-template-columns: 1.05fr 0.95fr; } }
.page-hero h1 { margin-bottom: 0.35em; }
.page-hero .lead { max-width: 620px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.page-hero__media {
  position: relative;
  border-radius: var(--r-leaf-l);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-l);
  background: var(--bg-2);
}
.page-hero__media img, .page-hero__media video { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media .badge { position: absolute; left: 16px; bottom: 16px; }
.page-hero__mascot {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: clamp(90px, 12vw, 150px);
  filter: drop-shadow(0 12px 18px rgba(31, 24, 18, 0.3));
  z-index: 2;
}
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-inline: auto; }
.page-hero--center .page-hero__actions { justify-content: center; }

/* Hero mit Vollbild-Hintergrund (z. B. Transporte-Video) */
.cover-hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  background: var(--dark);
}
.cover-hero__bg { position: absolute; inset: 0; z-index: -2; }
.cover-hero__bg img, .cover-hero__bg video { width: 100%; height: 100%; object-fit: cover; }
.cover-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(31, 24, 18, 0.92), rgba(31, 24, 18, 0.35) 55%, rgba(31, 24, 18, 0.2));
}
.cover-hero .container { padding-block: clamp(48px, 7vw, 96px); }
.cover-hero h1 { color: #fff; max-width: 14ch; }
.cover-hero .lead { color: rgba(255, 255, 255, 0.85); max-width: 600px; }
.cover-hero .eyebrow { color: #fff; }
.cover-hero .breadcrumbs { color: rgba(255, 255, 255, 0.75); }
.cover-hero .breadcrumbs [aria-current] { color: #fff; }
.media-toggle {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  z-index: 2;
}

/* Kurzfakten-Karte im Hero */
.fact-card {
  padding: clamp(20px, 2.4vw, 32px);
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
}
.fact-card h2, .fact-card h3 { font-size: var(--fs-h4); margin-bottom: 14px; }
.fact-card .kicker { font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-ink); margin-bottom: 8px; }

/* ---------- Checklisten ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1em; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 22px;
  height: 22px;
  border-radius: 8px 8px 8px 3px;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235F7032' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 14px no-repeat;
}
[data-division="baumdienst"] .checklist li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D96C1F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }
[data-division="dienstleistungen"] .checklist li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300B7FF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }
[data-division="transporte"] .checklist li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D30505' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }
.section--dark .checklist li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238DC043' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); background-color: rgba(141,192,67,.16); }
.checklist--compact { gap: 6px; font-size: var(--fs-s); }
.checklist--compact li { padding-left: 28px; }
.checklist--compact li::before { width: 18px; height: 18px; background-size: 12px; }

/* ---------- Karten ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.card h3 { font-size: var(--fs-h4); margin: 0; }
.card p { margin: 0; }
a.card:hover, .card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: transparent; }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px 16px 16px 5px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-ink);
  margin-bottom: 6px;
  transition: background var(--t), color var(--t), transform var(--t) var(--ease-spring);
}
.card__icon .icon { width: 26px; height: 26px; }
a.card:hover .card__icon { background: var(--accent); color: var(--on-accent); transform: rotate(-6deg) scale(1.05); }
.card__foot { margin-top: auto; padding-top: 8px; }
.card--flat { background: transparent; border-color: var(--line); }
.card--tint { background: var(--bg-2); border-color: transparent; }
.card--dark { background: var(--dark); color: var(--on-dark-muted); border-color: transparent; }
.card--dark h3 { color: #fff; }
.card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.card .badge { align-self: flex-start; }

/* Leistungskarte mit Bild */
.media-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-leaf);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.media-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.media-card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.media-card:hover .media-card__img img { transform: scale(1.05); }
.media-card__img .badge { position: absolute; left: 14px; top: 14px; }
.media-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.media-card__body h3 { font-size: var(--fs-h4); margin: 0; }
.media-card__body p { margin: 0; font-size: var(--fs-s); }
.media-card__meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: var(--fs-xs); color: var(--muted); }
.media-card__meta span { display: inline-flex; align-items: center; gap: 5px; }
.media-card__meta .icon { width: 14px; height: 14px; }
.media-card .link-arrow { margin-top: auto; padding-top: 6px; }

/* Leistungs-Liste (kompakt, z. B. im Hub) */
.service-list { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); }
.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--r-m);
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--t-fast), transform var(--t) var(--ease), box-shadow var(--t);
}
.service-item:hover { border-color: var(--accent); transform: translateX(4px); box-shadow: var(--shadow-s); }
.service-item .card__icon { display: grid; place-items: center; width: 46px; height: 46px; margin: 0; }
.service-item strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; line-height: 1.25; }
.service-item span { display: block; font-size: var(--fs-s); color: var(--muted); line-height: 1.4; margin-top: 2px; }
.service-item > .icon { color: var(--accent-ink); transition: transform var(--t) var(--ease); }
.service-item:hover > .icon { transform: translateX(4px); }

/* Vorteile-Band */
.usp-row { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp .card__icon { width: 46px; height: 46px; margin: 0; flex: none; }
.usp strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1.05rem; line-height: 1.3; margin-bottom: 2px; }
.usp p { font-size: var(--fs-s); color: var(--muted); margin: 0; }

/* ---------- Ablauf / Schritte ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.step {
  counter-increment: step;
  position: relative;
  padding: 26px 24px 24px;
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
}
.step::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px 16px 16px 5px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.step h3 { font-size: var(--fs-h4); margin-bottom: 8px; }
.step p { font-size: var(--fs-s); color: var(--muted); margin: 0; }
@media (min-width: 980px) {
  .steps--line .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    left: calc(24px + 48px + 12px);
    right: -16px;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 12px);
  }
}
.section--dark .step { background: rgba(246, 248, 243, 0.05); border-color: rgba(246, 248, 243, 0.1); }

/* ---------- Kennzahlen ---------- */
.stats { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); }
.stat {
  padding: 22px 24px;
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat__num .accent-text { color: var(--accent-ink); }
.stat__label { display: block; margin-top: 8px; color: var(--muted); font-size: var(--fs-s); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq-tools { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.faq-search {
  position: relative;
  flex: 1 1 280px;
  max-width: 460px;
}
.faq-search input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 46px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.faq-search input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.faq-search .icon { position: absolute; left: 16px; top: 50%; translate: 0 -50%; color: var(--muted); }
.faq-empty { display: none; padding: 20px; border-radius: var(--r-m); background: var(--bg-2); }
.faq-empty.is-visible { display: block; }
.faq-item {
  border-radius: var(--r-m);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color var(--t-fast), box-shadow var(--t);
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-s); }
.faq-item[hidden] { display: none; }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 18px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A2E24' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 16px no-repeat;
  transition: transform var(--t) var(--ease), background-color var(--t);
}
:root[data-theme="dark"] .faq-item summary::after, .section--dark .faq-item summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6F8F3' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .faq-item summary::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6F8F3' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
  }
}
.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--accent); }
.faq-item .faq-answer { padding: 0 22px 20px; color: var(--text); }
.faq-item .faq-answer > *:last-child { margin-bottom: 0; }
.faq-item mark { background: var(--accent-soft); color: inherit; border-radius: 3px; padding: 0 2px; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-xl);
  padding: clamp(36px, 5vw, 72px);
  background: var(--dark);
  color: var(--on-dark-muted);
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.4fr auto; } }
.cta-band h2 { color: #fff; margin-bottom: 0.3em; }
.cta-band p { max-width: 620px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; min-width: 260px; }
.cta-band__contact { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px; font-size: var(--fs-s); }
.cta-band__contact a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.cta-band__contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.cta-band::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -140px;
  top: -220px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  opacity: 0.7;
}
.cta-band__mascot {
  position: absolute;
  right: 24px;
  bottom: -30px;
  width: 140px;
  opacity: 0.95;
  z-index: -1;
  display: none;
}
@media (min-width: 1200px) { .cta-band--mascot { padding-right: 220px; } .cta-band--mascot .cta-band__mascot { display: block; } }

/* ---------- Passend dazu ---------- */
.related { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-radius: var(--r-m);
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.related a:hover { border-color: var(--accent); background: var(--accent-soft); }
.related a .icon { color: var(--accent-ink); transition: transform var(--t) var(--ease); }
.related a:hover .icon { transform: translateX(4px); }
.related a small { display: block; font-family: var(--font-body); font-weight: 400; font-size: var(--fs-xs); color: var(--muted); }

/* ---------- Galerie & Lightbox ---------- */
.gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  grid-auto-flow: dense;
}
.gallery__item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--r-m);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-2);
  cursor: zoom-in;
}
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(31, 24, 18, 0.6) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E") center / 16px no-repeat;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--t), transform var(--t) var(--ease);
}
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; transform: none; }
@media (max-width: 520px) { .gallery__item--wide { grid-column: auto; aspect-ratio: 1; } }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(20, 15, 11, 0.94);
  color: #fff;
}
.lightbox::backdrop { background: rgba(20, 15, 11, 0.8); }
.lightbox[open] { display: grid; grid-template-rows: auto 1fr auto; }
.lightbox__bar { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; gap: 12px; }
.lightbox__count { font-size: var(--fs-s); opacity: 0.8; font-variant-numeric: tabular-nums; }
.lightbox__stage { position: relative; display: grid; place-items: center; min-height: 0; padding: 0 64px; touch-action: pan-y; }
.lightbox__stage img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 12px; animation: lb-in 320ms var(--ease); }
@keyframes lb-in { from { opacity: 0; transform: scale(0.97); } }
.lightbox__caption { text-align: center; padding: 14px 18px 22px; font-size: var(--fs-s); opacity: 0.85; min-height: 3em; }
.lightbox .icon-btn { background: rgba(255, 255, 255, 0.1); border-color: transparent; color: #fff; }
.lightbox .icon-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; translate: 0 -50%; }
.lightbox__prev { left: 12px; }
.lightbox__next { right: 12px; }
@media (max-width: 640px) { .lightbox__stage { padding: 0 8px; } .lightbox__prev, .lightbox__next { top: auto; bottom: -56px; } }

/* ---------- Vorher-Nachher ---------- */
.ba {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-leaf-l);
  overflow: hidden;
  user-select: none;
  background: var(--bg-2);
  box-shadow: var(--shadow-m);
  touch-action: pan-y;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 var(--pos)); }
.ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.ba__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  translate: -50% -50%;
  border-radius: 50%;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233A2E24' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6l-6 6 6 6M15 6l6 6-6 6'/%3E%3C/svg%3E") center / 24px no-repeat;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.ba input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: pan-y;
}
.ba input[type="range"]:focus-visible ~ .ba__handle::after { outline: 3px solid var(--accent); outline-offset: 3px; }
.ba__label {
  position: absolute;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 24, 18, 0.7);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.ba__label--before { left: 16px; }
.ba__label--after { right: 16px; background: var(--accent); color: var(--on-accent); }

/* ---------- Tabs ---------- */
.tabs__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--muted);
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.tabs__tab:hover { color: var(--ink); }
.tabs__tab[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-s); }
.tabs__tab .nav-dot { width: 10px; height: 10px; }
.tabs__panel[hidden] { display: none; }
.tabs__panel { animation: fade-up 400ms var(--ease); }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } }

/* ---------- Pakete ---------- */
.package {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 2.4vw, 32px);
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.package--featured { border: 2px solid var(--accent); box-shadow: var(--shadow-m); }
.package--featured::before {
  content: attr(data-flag);
  position: absolute;
  top: -13px;
  left: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--on-accent);
  font-size: var(--fs-xs);
  font-weight: 700;
}
.package h3 { font-size: var(--fs-h4); margin: 0; }
.package__price { font-family: var(--font-display); color: var(--ink); line-height: 1; }
.package__price strong { font-size: clamp(2.2rem, 1.8rem + 1.2vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; }
.package__price small { font-size: var(--fs-s); color: var(--muted); font-family: var(--font-body); margin-left: 4px; }
.package .checklist { font-size: var(--fs-s); }
.package .btn { margin-top: auto; }

/* ---------- Stimmen ---------- */
.carousel { position: relative; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(100%, 420px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; }
.carousel__nav { display: flex; gap: 8px; }
.quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 0;
}
.quote blockquote { margin: 0; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; color: var(--ink); font-weight: 500; }
.quote figcaption { margin-top: auto; font-size: var(--fs-s); color: var(--muted); }
.quote figcaption strong { display: block; color: var(--ink); }
.stars { display: inline-flex; gap: 2px; color: #E5A100; }
.stars .icon { width: 18px; height: 18px; }

/* ---------- Laufband ---------- */
.marquee {
  --gap: 2.5rem;
  display: flex;
  overflow: hidden;
  gap: var(--gap);
  padding-block: 18px;
  border-block: 1px solid var(--line);
  user-select: none;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__group {
  flex: none;
  display: flex;
  align-items: center;
  gap: var(--gap);
  min-width: 100%;
  justify-content: space-around;
  animation: marquee 38s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
}
.marquee:hover .marquee__group { animation-play-state: paused; }
.marquee__group li { display: inline-flex; align-items: center; gap: var(--gap); font-family: var(--font-display); font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem); font-weight: 600; color: var(--ink); white-space: nowrap; }
.marquee__group li::after { content: ""; width: 10px; height: 10px; border-radius: 4px 4px 4px 1px; background: var(--ci-green); }
.marquee__group li:nth-child(4n+2)::after { background: var(--ci-orange); }
.marquee__group li:nth-child(4n+3)::after { background: var(--ci-blue); }
.marquee__group li:nth-child(4n+4)::after { background: var(--ci-red); }
.marquee__group a { text-decoration: none; }
.marquee__group a:hover { color: var(--accent-ink); }
@keyframes marquee { to { transform: translateX(calc(-100% - var(--gap))); } }

/* ---------- Widgets ---------- */
.widget {
  border-radius: var(--r-leaf-l);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow-s);
}
.widget__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.widget__head h2, .widget__head h3 { margin: 0; font-size: var(--fs-h3); }

/* Saisonkalender */
.season__months {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 22px;
}
.season__month {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 0 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t) var(--ease);
}
.season__month:hover { border-color: var(--accent); color: var(--ink); }
.season__month[aria-pressed="true"] { background: var(--ink-deep); border-color: var(--ink-deep); color: #fff; transform: translateY(-3px); }
.season__month .bars { display: flex; gap: 2px; height: 5px; }
.season__month .bars i { width: 5px; height: 5px; border-radius: 2px; background: var(--c); }
.season__month.is-now::after {
  content: "heute";
  position: absolute;
  top: -9px;
  left: 50%;
  translate: -50% 0;
  padding: 1px 6px;
  border-radius: 6px;
  background: var(--ci-green);
  color: #141517;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .season__months { grid-template-columns: repeat(6, 1fr); }
}
.season__result { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr)); }
.season__tip {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-m);
  background: var(--bg);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  animation: fade-up 400ms var(--ease) both;
  transition: border-color var(--t-fast), transform var(--t) var(--ease);
}
.season__tip:hover { border-color: var(--c, var(--accent)); transform: translateY(-2px); }
.season__tip .card__icon { width: 40px; height: 40px; margin: 0; flex: none; background: color-mix(in srgb, var(--c) 18%, transparent); color: var(--ink); }
.season__tip strong { display: block; font-family: var(--font-display); color: var(--ink); line-height: 1.25; }
.season__tip span { font-size: var(--fs-xs); color: var(--muted); }

/* Heckenschnitt-Ampel */
.hedge {
  display: grid;
  gap: 20px;
  align-items: center;
}
@media (min-width: 720px) { .hedge { grid-template-columns: auto 1fr; } }
.hedge__light {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-radius: 999px;
  background: var(--ink-deep);
  width: max-content;
}
.hedge__light i { width: 30px; height: 30px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); transition: background var(--t), box-shadow var(--t); }
.hedge[data-state="restricted"] .hedge__light i:nth-child(2) { background: #F2B705; box-shadow: 0 0 18px #F2B705; }
.hedge[data-state="open"] .hedge__light i:nth-child(3) { background: var(--ci-green); box-shadow: 0 0 18px var(--ci-green); }
.hedge__status { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-h4); color: var(--ink); margin-bottom: 4px; }
.hedge__meter { height: 10px; border-radius: 10px; background: var(--bg-2); position: relative; overflow: hidden; margin: 14px 0 6px; }
.hedge__meter span { position: absolute; top: 0; bottom: 0; background: repeating-linear-gradient(45deg, rgba(242,183,5,.8) 0 6px, rgba(242,183,5,.55) 6px 12px); }
.hedge__meter b { position: absolute; top: -3px; bottom: -3px; width: 4px; border-radius: 2px; background: var(--ink); }
.hedge__scale { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--muted); }

/* Flächenrechner */
.calc__rows { display: grid; gap: 10px; margin-bottom: 14px; }
.calc__row { display: grid; grid-template-columns: 1fr auto 1fr auto auto; gap: 8px; align-items: center; }
.calc__row .times { color: var(--muted); }
.calc__row .unit { font-size: var(--fs-s); color: var(--muted); min-width: 4.5em; text-align: right; font-variant-numeric: tabular-nums; }
.calc__result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--r-m);
  background: var(--accent-soft);
  margin-top: 16px;
}
.calc__total { font-family: var(--font-display); font-size: clamp(2rem, 1.6rem + 1.4vw, 2.8rem); font-weight: 800; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.calc__total small { font-size: 0.45em; font-weight: 600; color: var(--muted); }

/* Einsatzgebiet */
.region { display: grid; gap: clamp(20px, 3vw, 40px); align-items: center; }
@media (min-width: 900px) { .region { grid-template-columns: 1.1fr 0.9fr; } }
.region__map {
  position: relative;
  aspect-ratio: 1.15;
  border-radius: var(--r-leaf-l);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, var(--accent-soft), transparent 60%),
    var(--bg-2);
  border: 1px solid var(--line);
}
.region__map svg { width: 100%; height: 100%; }
.region__map .town { fill: var(--ink); font-family: var(--font-body); font-size: 11px; }
.region__map .town-dot { fill: var(--ink); opacity: 0.55; }
.region__map .home-dot { fill: var(--ci-green); stroke: #fff; stroke-width: 3; }
.region__map .ring { fill: none; stroke: var(--ci-green); stroke-dasharray: 4 6; opacity: 0.8; }
.region__map .ring--fill { fill: rgba(141, 192, 67, 0.1); stroke: none; }
.region__map .river { fill: none; stroke: var(--ci-blue); stroke-width: 6; opacity: 0.35; stroke-linecap: round; }
.region__map .pin { fill: var(--ci-orange); }
.region__map .query-dot { fill: var(--ci-red); stroke: #fff; stroke-width: 3; }
.region__map .query-line { stroke: var(--ci-red); stroke-width: 2; stroke-dasharray: 5 5; }
.region__map .pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.4s ease-out infinite; fill: var(--ci-green); }
@keyframes pulse { from { transform: scale(1); opacity: 0.6; } to { transform: scale(4); opacity: 0; } }
.region__form { display: flex; gap: 8px; margin-top: 16px; }
.region__form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
}
.region__form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.region__result { margin-top: 14px; padding: 14px 18px; border-radius: var(--r-m); background: var(--bg-2); display: none; }
.region__result.is-visible { display: block; animation: fade-up 300ms var(--ease); }
.region__result strong { color: var(--ink); }
.region__towns { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.region__towns button { font-size: var(--fs-xs); padding: 6px 12px; }

/* ---------- Formulare ---------- */
.field { display: grid; gap: 6px; }
.field label, .field .label { font-weight: 600; font-size: var(--fs-s); color: var(--ink); }
.field .hint { font-size: var(--fs-xs); color: var(--muted); }
.input, .field input:not([type="checkbox"]):not([type="radio"]):not([type="range"]), .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--r-s);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.input:focus, .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--ci-red); }
.field .error { display: none; color: var(--red-ink); font-size: var(--fs-xs); font-weight: 600; }
.field.is-invalid .error { display: block; }
.form-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.form-grid .span-2 { grid-column: 1 / -1; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: var(--fs-s); cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ci-green); flex: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Auswahlkacheln */
.options { display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 170px), 1fr)); }
.options--wide { grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); }
.option { position: relative; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option label, .option .option__box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 16px;
  border-radius: var(--r-m);
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t) var(--ease), box-shadow var(--t);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}
.option label:hover { border-color: var(--accent); transform: translateY(-2px); }
.option input:checked + label { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 0 0 1px var(--accent) inset; }
.option input:focus-visible + label { outline: 3px solid var(--accent); outline-offset: 2px; }
.option label .icon { width: 26px; height: 26px; color: var(--opt-color, var(--accent-ink)); }
.option label small { font-weight: 400; color: var(--muted); font-size: var(--fs-xs); }
.option label::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  transition: all var(--t-fast);
}
.option input:checked + label::after {
  border-color: var(--accent);
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1812' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.option--chip label { flex-direction: row; align-items: center; padding: 10px 40px 10px 14px; border-radius: 999px; }
.option--chip label::after { top: 50%; translate: 0 -50%; right: 10px; width: 20px; height: 20px; }

/* ---------- Anfrage-Assistent ---------- */
.wizard {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
@media (min-width: 1000px) { .wizard { grid-template-columns: 1fr 340px; } }
.wizard__panel {
  border-radius: var(--r-leaf-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  overflow: hidden;
}
.wizard__progress { display: flex; gap: 6px; padding: 20px clamp(20px, 3vw, 36px) 0; }
.wizard__progress span { flex: 1; height: 6px; border-radius: 6px; background: var(--bg-2); position: relative; overflow: hidden; }
.wizard__progress span::after { content: ""; position: absolute; inset: 0; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--t-slow) var(--ease); }
.wizard__progress span.is-done::after, .wizard__progress span.is-current::after { transform: scaleX(1); }
.wizard__progress span.is-current::after { opacity: 0.55; }
.wizard__steps-label { padding: 12px clamp(20px, 3vw, 36px) 0; font-size: var(--fs-xs); color: var(--muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.wizard__step { padding: 16px clamp(20px, 3vw, 36px) clamp(20px, 3vw, 36px); }
.wizard__step[hidden] { display: none; }
.wizard__step.is-entering { animation: fade-up 420ms var(--ease); }
.wizard__step h2 { font-size: var(--fs-h3); margin-bottom: 6px; }
.wizard__step > p { color: var(--muted); }
.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}
.wizard__aside { display: grid; gap: 16px; }
@media (min-width: 1000px) { .wizard__aside { position: sticky; top: calc(var(--header-h) + 20px); } }
.summary { padding: 22px; border-radius: var(--r-leaf); background: var(--bg-2); }
.summary h3 { font-size: 1.1rem; margin-bottom: 12px; }
.summary dl { margin: 0; display: grid; gap: 10px; font-size: var(--fs-s); }
.summary dt { color: var(--muted); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.summary dd { margin: 2px 0 0; color: var(--ink); font-weight: 500; overflow-wrap: anywhere; }
.summary .empty { color: var(--muted); font-style: italic; font-weight: 400; }
.wizard__mascot { display: flex; gap: 14px; align-items: center; padding: 16px; border-radius: var(--r-leaf); border: 1px dashed var(--line-strong); font-size: var(--fs-s); }
.wizard__mascot img { width: 64px; flex: none; }
.send-options { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); margin-top: 18px; }
.wizard__done { text-align: center; padding: clamp(28px, 5vw, 60px) clamp(20px, 3vw, 36px); }
.wizard__done .check-anim {
  width: 84px;
  height: 84px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--on-accent);
  animation: pop 500ms var(--ease-spring);
}
.wizard__done .check-anim .icon { width: 40px; height: 40px; stroke-width: 3; }
@keyframes pop { from { transform: scale(0.4); opacity: 0; } }

/* ---------- 2-Klick-Einbettungen ---------- */
.consent-embed {
  position: relative;
  border-radius: var(--r-leaf);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
}
.consent-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #fff; }
.consent-embed__box { max-width: 460px; }
.consent-embed__box .icon-lg { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--accent-ink); }
.consent-embed__box p { font-size: var(--fs-s); color: var(--muted); }
.consent-embed.is-loaded .consent-embed__box { display: none; }

/* ---------- Command Palette / Suche ---------- */
.cmdk {
  position: fixed;
  inset: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: min(12vh, 110px) 16px 16px;
  border: 0;
  background: rgba(20, 15, 11, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.cmdk::backdrop { background: transparent; }
.cmdk[open] { display: block; animation: fade 200ms ease; }
@keyframes fade { from { opacity: 0; } }
.cmdk__box {
  max-width: 680px;
  margin: 0 auto;
  border-radius: var(--r-l);
  background: var(--surface);
  box-shadow: var(--shadow-l);
  border: 1px solid var(--line);
  overflow: hidden;
  animation: lb-in 260ms var(--ease);
}
.cmdk__input { position: relative; border-bottom: 1px solid var(--line); }
.cmdk__input .icon { position: absolute; left: 20px; top: 50%; translate: 0 -50%; color: var(--muted); width: 22px; height: 22px; }
.cmdk__input input {
  width: 100%;
  height: 64px;
  padding: 0 70px 0 56px;
  border: 0;
  background: transparent;
  font-size: 1.125rem;
  color: var(--ink);
}
.cmdk__input input:focus { outline: none; }
.cmdk__input .kbd { position: absolute; right: 18px; top: 50%; translate: 0 -50%; }
.cmdk__list { max-height: min(58vh, 520px); overflow-y: auto; padding: 8px; list-style: none; margin: 0; }
.cmdk__group { padding: 12px 12px 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cmdk__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: var(--r-s);
  text-decoration: none;
  color: var(--text);
}
.cmdk__item a .dot { width: 34px; height: 34px; border-radius: 10px 10px 10px 3px; display: grid; place-items: center; background: color-mix(in srgb, var(--c, var(--ci-green)) 18%, transparent); color: var(--ink); }
.cmdk__item a .dot .icon { width: 18px; height: 18px; }
.cmdk__item strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 1.3; }
.cmdk__item small { display: block; font-size: var(--fs-xs); color: var(--muted); line-height: 1.4; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
.cmdk__item a .icon.go { opacity: 0; color: var(--muted); }
.cmdk__item[aria-selected="true"] a { background: var(--accent-soft); }
.cmdk__item[aria-selected="true"] a .icon.go { opacity: 1; }
.cmdk__item mark { background: none; color: var(--accent-ink); font-weight: 700; }
.cmdk__empty { padding: 28px; text-align: center; color: var(--muted); }
.cmdk__foot { display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap; padding: 10px 16px; border-top: 1px solid var(--line); font-size: var(--fs-xs); color: var(--muted); background: var(--surface-2); }
.cmdk__foot span { display: inline-flex; gap: 6px; align-items: center; }

/* ---------- Schnellkontakt (FAB) ---------- */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (min-width: 900px) { .fab { display: flex; } }
.fab__toggle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 22px 22px 22px 6px;
  border: 0;
  display: grid;
  place-items: center;
  background: var(--ink-deep);
  color: #fff;
  box-shadow: var(--shadow-l);
  transition: transform var(--t) var(--ease-spring), background var(--t);
}
.fab__toggle:hover { transform: scale(1.06) rotate(-4deg); }
.fab__toggle .icon { width: 26px; height: 26px; transition: transform var(--t) var(--ease), opacity var(--t); }
.fab__toggle .icon-close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.fab.is-open .fab__toggle { background: var(--accent); color: var(--on-accent); }
.fab.is-open .fab__toggle .icon-open { opacity: 0; transform: rotate(90deg); }
.fab.is-open .fab__toggle .icon-close { opacity: 1; transform: none; }
.fab__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: ring 3s ease-out 2s 3;
}
@keyframes ring { 0% { box-shadow: 0 0 0 0 var(--accent-glow); } 70%, 100% { box-shadow: 0 0 0 18px transparent; } }
.fab__menu {
  display: grid;
  gap: 8px;
  justify-items: end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fab__menu li { opacity: 0; transform: translateY(10px) scale(0.95); transition: opacity var(--t) var(--ease), transform var(--t) var(--ease); pointer-events: none; }
.fab.is-open .fab__menu li { opacity: 1; transform: none; pointer-events: auto; }
.fab.is-open .fab__menu li:nth-last-child(2) { transition-delay: 40ms; }
.fab.is-open .fab__menu li:nth-last-child(3) { transition-delay: 80ms; }
.fab.is-open .fab__menu li:nth-last-child(4) { transition-delay: 120ms; }
.fab.is-open .fab__menu li:nth-last-child(5) { transition-delay: 160ms; }
.fab__menu a, .fab__menu button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 600;
  font-size: var(--fs-s);
  text-decoration: none;
  box-shadow: var(--shadow-m);
  white-space: nowrap;
}
.fab__menu a:hover, .fab__menu button:hover { border-color: var(--accent); }
.fab__menu .ico { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); }
.fab__menu .ico--wa { background: #25D366; color: #fff; }
.fab__menu .ico .icon { width: 18px; height: 18px; }

/* Mobile Aktionsleiste */
.action-bar {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 150;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--ink-deep) 92%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-l);
  transition: transform var(--t) var(--ease);
}
.action-bar.is-hidden { transform: translateY(140%); }
.action-bar a, .action-bar button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
}
.action-bar a:active, .action-bar button:active { background: rgba(255, 255, 255, 0.1); }
.action-bar .icon { width: 22px; height: 22px; }
.action-bar .is-primary { background: var(--accent); color: var(--on-accent); }
@media (min-width: 900px) { .action-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 84px; } }

/* Nach oben */
.to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t) var(--ease);
  display: none;
}
@media (min-width: 900px) { .to-top { display: inline-grid; } }
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* Toast */
.toast-region { position: fixed; left: 50%; bottom: 110px; translate: -50% 0; z-index: 600; display: grid; gap: 8px; pointer-events: none; width: min(92vw, 420px); }
.toast {
  padding: 14px 18px;
  border-radius: var(--r-m);
  background: var(--ink-deep);
  color: #fff;
  box-shadow: var(--shadow-l);
  font-size: var(--fs-s);
  animation: toast-in 360ms var(--ease);
  display: flex;
  gap: 10px;
  align-items: center;
}
.toast .icon { color: var(--ci-green); }
@keyframes toast-in { from { opacity: 0; transform: translateY(12px); } }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  margin-top: var(--section);
  padding-top: clamp(56px, 6vw, 96px);
  background: var(--dark-2);
  color: rgba(246, 248, 243, 0.72);
  font-size: var(--fs-s);
  --ink: #F6F8F3;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ci-green) 0 25%, var(--ci-orange) 25% 50%, var(--ci-blue) 50% 75%, var(--ci-red) 75%);
}
.site-footer a { color: rgba(246, 248, 243, 0.86); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr repeat(4, 1fr); } }
.footer-brand img { height: 32px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; }
.footer-slogan { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.footer-slogan span:nth-child(1) { color: var(--ci-green); }
.footer-slogan span:nth-child(2) { color: var(--ci-orange); }
.footer-slogan span:nth-child(3) { color: #F07070; }
.site-footer h2 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .icon { margin-top: 3px; color: var(--ci-green); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(246, 248, 243, 0.08); }
.footer-social a:hover { background: var(--ci-green); color: #141517; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: clamp(40px, 5vw, 72px);
  padding-block: 24px;
  border-top: 1px solid rgba(246, 248, 243, 0.12);
  font-size: var(--fs-xs);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-bigword {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 16vw, 15rem);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: rgba(246, 248, 243, 0.05);
  text-align: center;
  margin-bottom: -0.12em;
  user-select: none;
  white-space: nowrap;
}
.theme-switch {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(246, 248, 243, 0.08);
}
.theme-switch button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(246, 248, 243, 0.8);
  font-size: var(--fs-xs);
}
.theme-switch button[aria-pressed="true"] { background: rgba(246, 248, 243, 0.16); color: #fff; }
.theme-switch .icon { width: 14px; height: 14px; }

/* ---------- Reveal-Animationen ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal--scale { transform: scale(0.96); }
.js .reveal--left { transform: translateX(-26px); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* Parallax-Bild */
.parallax { overflow: hidden; }
.parallax img { transform: translateY(var(--py, 0)) scale(1.12); will-change: transform; }

/* Bild mit Blatt-Rahmen */
.leaf-img {
  border-radius: var(--r-leaf-l);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  background: var(--bg-2);
}
.leaf-img img { width: 100%; height: 100%; object-fit: cover; }
.img-stack { position: relative; padding: 0 12% 12% 0; }
.img-stack .leaf-img:first-child { aspect-ratio: 4 / 3; }
.img-stack .leaf-img:nth-child(2) {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  right: 0;
  bottom: 0;
  border: 6px solid var(--bg);
}

/* Hinweisbox */
.note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--r-m);
  background: var(--accent-soft);
  color: var(--ink);
  font-size: var(--fs-s);
}
.note .icon { color: var(--accent-ink); margin-top: 2px; }
.note--warn { background: rgba(217, 108, 31, 0.12); }
.note--warn .icon { color: var(--orange-ink); }

/* Stellenanzeigen */
.job {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t);
}
@media (min-width: 760px) { .job { grid-template-columns: 1fr auto; align-items: center; } }
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--accent); }
.job h3 { margin: 0 0 8px; font-size: var(--fs-h4); }
.job__meta { display: flex; flex-wrap: wrap; gap: 8px; }

/* Shop-Teaser */
.shop-teaser {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: #141414;
  color: rgba(255, 255, 255, 0.8);
  display: grid;
  isolation: isolate;
}
@media (min-width: 900px) { .shop-teaser { grid-template-columns: 1fr 1.1fr; } }
.shop-teaser__text { padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.shop-teaser h2 { color: #fff; }
.shop-teaser .eyebrow { color: var(--ci-grey); }
.shop-teaser .eyebrow::before { background: var(--ci-grey); }
.shop-teaser__imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 8px; }
.shop-teaser__imgs figure { margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 3 / 4; background: #222; }
.shop-teaser__imgs figure:nth-child(2) { transform: translateY(24px); }
.shop-teaser__imgs img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.shop-teaser:hover .shop-teaser__imgs img { transform: scale(1.04); }

/* Über-uns / Maskottchen-Block */
.mascot-block {
  position: relative;
  border-radius: var(--r-xl);
  background: var(--accent);
  aspect-ratio: 1;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
  display: grid;
  place-items: end center;
  overflow: hidden;
}
.mascot-block img { width: 70%; margin-bottom: -2%; filter: drop-shadow(0 20px 30px rgba(31, 24, 18, 0.3)); }
.mascot-block::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px dashed rgba(31, 24, 18, 0.25);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Projektdetails */
.project-facts { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); }
.project-facts div { padding: 16px 18px; border-radius: var(--r-m); background: var(--surface); border: 1px solid var(--line); }
.project-facts dt { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--muted); }
.project-facts dd { margin: 4px 0 0; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.05rem; line-height: 1.3; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-bar button[aria-pressed="true"] { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); }
.filter-bar button[aria-pressed="true"] .icon { color: #fff; }
[data-filter-item].is-hidden { display: none; }

.share { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; }

/* 404 */
.error-page { text-align: center; padding-block: clamp(40px, 8vw, 120px); }
.error-page__code { font-family: var(--font-display); font-weight: 800; font-size: clamp(6rem, 22vw, 14rem); line-height: 0.9; letter-spacing: -0.06em; color: var(--ink); }
.error-page__code span { color: var(--ci-green); }
.error-page img { width: 160px; margin: 0 auto 24px; }

/* Rechtstexte */
.legal h1 { font-size: var(--fs-h2); }
.legal h2 { font-size: var(--fs-h3); margin-top: 2em; }
.legal h3 { font-size: var(--fs-h4); margin-top: 1.6em; }
.legal { overflow-wrap: anywhere; }

/* Druck */
@media print {
  .site-header, .site-footer, .fab, .action-bar, .to-top, .cmdk, .drawer, .cta-band, .marquee { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .js .reveal { opacity: 1; transform: none; }
  a { text-decoration: underline; }
}

/* Startseite: Unterzeile der H1 */
.home-hero h1 .h1-sub {
  display: block;
  margin-top: 0.7em;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.9rem + 0.45vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--accent-ink);
  opacity: 0;
  animation: word-in 800ms var(--ease) 600ms forwards;
}

/* Startseite: Bereichskacheln rechts im Hero */
.hero-tiles { position: relative; }
.hero-tiles .division-grid { margin-top: 0; grid-template-columns: repeat(2, 1fr); }
.hero-tiles .division-card { min-height: clamp(170px, 15vw, 232px); }
.hero-tiles__mascot {
  position: absolute;
  z-index: 3;
  width: clamp(80px, 7vw, 104px);
  left: 22px;
  top: calc(-1 * clamp(96px, 10.4vw, 150px));
  filter: drop-shadow(0 14px 20px rgba(31, 24, 18, 0.32));
  animation: mascot-wave 5s ease-in-out infinite;
  transform-origin: 50% 90%;
  pointer-events: none;
}
.hero-tiles__badge {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: -22px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-m);
  font-size: var(--fs-s);
  color: var(--ink);
  animation: float-b 7s ease-in-out infinite;
  pointer-events: none;
}
.hero-tiles__badge strong { display: block; font-family: var(--font-display); font-size: 0.95rem; line-height: 1.2; }
.hero-tiles__badge span span { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.3; }
.hero-tiles__badge .icon-wrap { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); }
@media (max-width: 979px) {
  .hero-tiles { margin-top: 12px; }
  .hero-tiles__mascot { left: auto; right: -6px; bottom: auto; top: -84px; width: 76px; }
  .hero-tiles__badge { display: none; }
}
@media (min-width: 980px) {
  .home-hero__grid { grid-template-columns: 1.02fr 0.98fr; }
  .home-hero { padding-top: clamp(20px, 3vw, 44px); }
}

/* Startseite auf dem Handy: Bereiche ohne Scrollen sichtbar */
@media (max-width: 719px) {
  .search-trigger kbd { display: none; }
  .search-trigger { padding: 0 12px; }
}
@media (max-width: 600px) {
  .home-hero { padding-top: 8px; }
  .home-hero .eyebrow { margin-bottom: 10px; }
  .home-hero h1 { font-size: clamp(2.4rem, 11vw, 2.9rem); margin-bottom: 0.2em; }
  .home-hero h1 .h1-sub { margin-top: 0.55em; font-size: 0.95rem; }
  .home-hero__lead, .home-hero .trust-row, .hero-tiles__mascot { display: none; }
  .home-hero__actions { margin-top: 14px; gap: 8px; }
  .home-hero__actions .btn--lg { min-height: 46px; padding: 11px 16px; font-size: 0.95rem; flex: 1 1 auto; }
  .hero-tiles .division-card { min-height: 124px; padding: 12px; }
  .hero-tiles .division-card p { display: none; }
  .hero-tiles .division-card__icon { width: 34px; height: 34px; }
  .hero-tiles .division-card__arrow { width: 30px; height: 30px; }
  .home-hero__grid { gap: 18px; }
}

/* Paketpreise: auch „auf Anfrage“ in einer Zeile */
.package__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 8px; }
.package__price strong { font-size: clamp(1.8rem, 1.4rem + 1vw, 2.4rem); white-space: nowrap; }
.package__price small { margin-left: 0; }
.marquee:focus-within .marquee__group { animation-play-state: paused; }

/* ==========================================================================
   Feinschliff Runde 2 (Feedback Geschäftsführung)
   ruhiger, weniger bunt, dunkle Startseite, Hintergrundbilder auf Leistungsseiten
   ========================================================================== */

/* --- weniger bunt: ein Akzent statt vier --- */
.home-hero h1 .word .dot { color: var(--ci-green) !important; }
.footer-slogan span { color: #fff !important; }
.site-footer::before { height: 3px; background: var(--ci-green); }
.scroll-progress { background: var(--accent); }
.marquee__group li::after,
.marquee__group li:nth-child(4n+2)::after,
.marquee__group li:nth-child(4n+3)::after,
.marquee__group li:nth-child(4n+4)::after { background: var(--ci-green); opacity: 0.7; width: 6px; height: 6px; border-radius: 50%; }
.division-card__icon { background: rgba(255, 255, 255, 0.14); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.division-card::after { background: var(--ci-green); height: 3px; }
.division-card:hover .division-card__arrow { background: var(--ci-green); color: #141517; transform: none; }

/* --- weniger verspielt --- */
.swoosh { color: var(--accent-ink); white-space: normal; }
.swoosh::after { content: none; display: none; }
a.card:hover .card__icon { transform: none; }
.fab__toggle::after { animation: none; box-shadow: none; }
.fab__toggle:hover { transform: none; }
.btn:hover { transform: translateY(-1px); }
.js .reveal { transform: translateY(14px); transition-duration: 700ms; }
.js .reveal--scale { transform: none; }
.js .reveal.is-visible { transform: none; }
.hero-tiles__badge, .hero-tiles__mascot { display: none; }

/* --- Wasserzeichen im Kontaktband (wie auf den Visitenkarten) --- */
.cta-band--watermark::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -3%;
  top: 50%;
  width: min(44%, 480px);
  aspect-ratio: 800 / 741;
  translate: 0 -50%;
  background: var(--accent);
  opacity: 0.12;
  -webkit-mask: url("../brand/mark-green.png") center / contain no-repeat;
          mask: url("../brand/mark-green.png") center / contain no-repeat;
  pointer-events: none;
}
.cta-band__mascot { display: none !important; }

/* --- Maskottchen-Hinweis (nur Gartenbau) --- */
.mascot-note {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px 14px 12px;
  border-radius: var(--r-leaf);
  background: var(--surface);
  border: 1px solid var(--line);
}
.mascot-note img { width: 76px; flex: none; margin-top: -26px; filter: drop-shadow(0 10px 14px rgba(31, 24, 18, 0.25)); }
.mascot-note p { margin: 0; font-size: var(--fs-s); color: var(--text); }
.mascot-note strong { color: var(--ink); }

/* --- Termin-Leiste unter den Bereichskacheln --- */
.hero-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-size: var(--fs-s);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.hero-strip:hover { border-color: var(--ci-green); }
.hero-strip .icon-wrap { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); flex: none; }
.hero-strip strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; margin-right: 6px; }
.hero-strip > .icon { margin-left: auto; color: var(--accent-ink); flex: none; }

/* --- Shop-Kachel --- */
.division-card--shop { background: radial-gradient(circle at 60% 30%, #2d2d2d, #121212 70%); }
.division-card--shop img { object-fit: contain; object-position: 60% 20%; padding: 6% 8% 26%; }
.division-card--shop::before { background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 10%, rgba(10, 10, 10, 0) 55%); }
.division-card--shop:hover img { transform: scale(1.04) translateY(-4px); }

/* --- Dunkle Startseite (wie die bisherige Website) --- */
body.page-dark {
  --bg: #0f0f0f;
  --bg-2: #151515;
  --surface: #1b1b1b;
  --surface-2: #161616;
  --ink: #FFFFFF;
  --text: #D9D9D6;
  --muted: #A9A8A6;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  --dark: #0a0a0a;
  --dark-2: #070707;
  --shadow-color: 0, 0, 0;
  --accent-ink: #8DC043;
  --accent-soft: rgba(141, 192, 67, 0.14);
  color-scheme: dark;
  background: var(--bg);
  color: var(--text);
}
.page-dark .brand .brand__light { display: none !important; }
.page-dark .brand .brand__dark { display: block !important; }
.page-dark .burger { background: #fff; color: #111; }
.page-dark .section--tint { background: var(--bg-2); border-block: 1px solid var(--line); }
.page-dark .section--dark { background: #0a0a0a; border: 1px solid var(--line); }
.page-dark .season__month[aria-pressed="true"] { background: var(--ci-green); border-color: var(--ci-green); color: #141517; }
.page-dark .faq-item summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F6F8F3' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
}
.page-dark .faq-item[open] summary::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F1812' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E");
}
.page-dark .home-hero { overflow: hidden; }
.page-dark .home-hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.3px, transparent 1.7px);
  background-size: 17px 17px;
  -webkit-mask: radial-gradient(ellipse 55% 65% at 72% 38%, #000 0%, rgba(0, 0, 0, 0.5) 40%, transparent 72%);
          mask: radial-gradient(ellipse 55% 65% at 72% 38%, #000 0%, rgba(0, 0, 0, 0.5) 40%, transparent 72%);
}
.page-dark .home-hero::after {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  left: -220px;
  top: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(141, 192, 67, 0.12), transparent 65%);
  pointer-events: none;
}
.page-dark .home-hero > .container { position: relative; z-index: 1; }
.page-dark .region__map { background: radial-gradient(circle at 30% 40%, rgba(141, 192, 67, 0.1), transparent 60%), #141414; }
.page-dark .region__map .home-dot { stroke: #0f0f0f; }
.page-dark .cta-band { background: #161616; border: 1px solid var(--line); }
.page-dark .step::before { background: var(--ci-green); color: #141517; }

/* --- Projekt-Highlights mit Bild --- */
.project-teasers { display: grid; gap: 12px; }
.project-teaser {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 10px 16px 10px 10px;
  border-radius: var(--r-m);
  background: var(--surface);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--t-fast), transform var(--t) var(--ease);
}
.project-teaser:hover { border-color: var(--ci-green); transform: translateX(3px); }
.project-teaser img { width: 112px; height: 84px; object-fit: cover; border-radius: 12px; }
.project-teaser strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 1.25; }
.project-teaser span span { display: block; font-size: var(--fs-xs); color: var(--muted); margin-top: 4px; }
.project-teaser > .icon { color: var(--accent-ink); }

/* --- Lazy Days Shop auf der Startseite --- */
.shop-show { position: relative; overflow: hidden; }
.shop-show__head { display: grid; gap: 28px; align-items: end; margin-bottom: clamp(28px, 4vw, 48px); }
@media (min-width: 960px) { .shop-show__head { grid-template-columns: 1.2fr 0.8fr; } }
.shop-logo { display: inline-flex; align-items: center; padding: 10px 16px; border-radius: 14px; background: #fff; margin-bottom: 18px; }
.shop-logo img { height: 26px; width: auto; }
.shop-features { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.shop-features li { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.shop-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr); gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; scrollbar-width: none; }
.shop-rail::-webkit-scrollbar { display: none; }
@media (min-width: 1100px) { .shop-rail { grid-auto-flow: row; grid-template-columns: repeat(5, 1fr); overflow: visible; } }
.shop-item {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02) 62%), var(--surface-2);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: border-color var(--t), transform var(--t) var(--ease);
}
.shop-item:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.shop-item figure { margin: 0; aspect-ratio: 1; display: grid; place-items: center; padding: 14px; }
.shop-item img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.45)); transition: transform var(--t-slow) var(--ease); }
.shop-item:hover img { transform: scale(1.05); }
.shop-item__cap { padding: 0 18px 18px; }
.shop-item__cap strong { display: block; color: var(--ink); font-family: var(--font-display); font-weight: 600; line-height: 1.25; }
.shop-item__cap span { font-size: var(--fs-xs); color: var(--muted); }
.shop-show__foot { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }

/* --- Mega-Menü Shop --- */
.mega--shop { grid-template-columns: 0.95fr 1.05fr; width: min(720px, 92vw); background: #131313; border-color: rgba(255, 255, 255, 0.08); color: #D9D9D6; left: auto; right: -80px; translate: 0 0; }
.mega--shop p { font-size: var(--fs-s); color: #cfcfcb; margin-bottom: 12px; }
.mega--shop strong { color: #fff; }
.mega--shop .checklist li { color: #cfcfcb; }
.mega-shop__logo { display: inline-flex; background: #fff; padding: 8px 14px; border-radius: 12px; margin-bottom: 14px; }
.mega-shop__logo img { height: 22px; width: auto; }
.mega-shop__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; align-content: center; }
.mega-shop__items a { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 8px 14px; border-radius: 16px; background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 70%); color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 600; text-align: center; }
.mega-shop__items img { width: 100%; aspect-ratio: 1; object-fit: contain; transition: transform var(--t-slow) var(--ease); }
.mega-shop__items a:hover img { transform: translateY(-4px) scale(1.04); }

/* --- Leistungsseiten: großes Hintergrundbild im Kopfbereich --- */
[data-template="service"] .page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(76vh, 700px);
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(48px, 6vw, 96px);
  margin-bottom: clamp(28px, 4vw, 56px);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
  background: #111;
  color: #fff;
  --ink: #fff;
  --text: rgba(255, 255, 255, 0.86);
  --muted: rgba(255, 255, 255, 0.78);
  --accent-ink: var(--accent);
  --line-strong: rgba(255, 255, 255, 0.45);
}
[data-template="service"] .page-hero > .container { width: 100%; }
[data-template="service"] .page-hero__grid { display: block; }
[data-template="service"] .page-hero__grid > div:first-child { max-width: 720px; }
[data-template="service"] .page-hero h1 { color: #fff; }
[data-template="service"] .page-hero .lead { color: rgba(255, 255, 255, 0.88); }
[data-template="service"] .page-hero .eyebrow { color: #fff; }
[data-template="service"] .page-hero .breadcrumbs { color: rgba(255, 255, 255, 0.72); }
[data-template="service"] .page-hero .breadcrumbs [aria-current] { color: #fff; }
[data-template="service"] .page-hero .trust-row { color: rgba(255, 255, 255, 0.82); }
[data-template="service"] .page-hero .btn--ghost { --btn-fg: #fff; --btn-border: rgba(255, 255, 255, 0.5); }
[data-template="service"] .page-hero .btn--ghost:hover { --btn-border: #fff; }
[data-template="service"] .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  aspect-ratio: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: 1 !important;
  transform: none !important;
}
[data-template="service"] .page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
[data-template="service"] .page-hero__media .badge { left: auto; right: var(--gutter); bottom: 22px; }
[data-template="service"] .page-hero__mascot { display: none; }
[data-template="service"] .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.9) 0%, rgba(12, 12, 12, 0.7) 42%, rgba(12, 12, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(12, 12, 12, 0.55), transparent 45%);
}
@media (max-width: 760px) {
  [data-template="service"] .page-hero { min-height: 0; padding-top: 18px; }
  [data-template="service"] .page-hero::after { background: linear-gradient(0deg, rgba(12, 12, 12, 0.92) 30%, rgba(12, 12, 12, 0.6)); }
}

/* Hinweis im Anfrage-Assistenten, wenn der Bereich feststeht */
.wizard__context { display: flex; gap: 10px; align-items: center; padding: 10px 14px; border-radius: 12px; background: var(--accent-soft); color: var(--ink); margin-bottom: 14px; }
.wizard__context .icon { color: var(--accent-ink); }
.wizard__context a { color: var(--accent-ink); font-weight: 600; margin-left: 4px; }

/* Feinschliff Runde 2b */
.nav-link { white-space: nowrap; padding-inline: 12px; }
.shop-logo { display: flex; width: max-content; }
.page-dark .season__month .bars i { background: var(--ci-green) !important; opacity: 0.75; }
.page-dark .season__tip .card__icon { background: rgba(141, 192, 67, 0.14); }
.page-dark .season__tip:hover { border-color: var(--ci-green); }
.page-dark .region__map .pin { fill: #F6F8F3; }
.page-dark .region__map a circle { fill: #0f0f0f; }
@media (min-width: 1180px) and (max-width: 1320px) { .nav-link { padding-inline: 9px; font-size: 0.93rem; } .header-cta { display: none; } }

/* Feinschliff Runde 3: Silber als Grundakzent, Farben nur für die Bereiche */
:root, [data-division="none"], [data-division="karriere"], body.page-dark {
  --accent: #C5C3C3;
  --accent-ink: #616466;
  --on-accent: #141517;
  --accent-soft: rgba(97, 100, 102, 0.12);
  --accent-glow: rgba(197, 195, 195, 0.4);
}
body.page-dark, :root[data-theme="dark"] [data-division="none"] { --accent-ink: #C5C3C3; --accent-soft: rgba(197, 195, 195, 0.14); }
.site-footer::before { background: #C5C3C3; }
.footer-contact .icon { color: #C5C3C3; }
.footer-social a:hover { background: #C5C3C3; }
.marquee__group li::after { background: #C5C3C3 !important; }
.page-dark .step::before { background: #C5C3C3; }
.page-dark .home-hero::after { background: radial-gradient(circle, rgba(197, 195, 195, 0.08), transparent 65%); }
.page-dark .checklist li::before, [data-division="none"] .checklist li::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5C3C3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"); }
.hero-strip:hover, .project-teaser:hover, .page-dark .season__tip:hover { border-color: #C5C3C3; }
/* Saisonkalender: Punkte wieder in Bereichsfarben */
.page-dark .season__month .bars i { background: var(--c) !important; opacity: 1; }
.page-dark .season__tip .card__icon { background: color-mix(in srgb, var(--c) 18%, transparent); }
.page-dark .season__month[aria-pressed="true"] { background: #C5C3C3; border-color: #C5C3C3; }
/* Kacheln: Icon und Pfeil in der Bereichsfarbe */
.division-card__icon { background: var(--tile); color: var(--tile-on, #141517); -webkit-backdrop-filter: none; backdrop-filter: none; }
.division-card::after { background: var(--tile); }
.division-card:hover .division-card__arrow { background: var(--tile); color: var(--tile-on, #141517); }
.division-card--shop { --tile: #C5C3C3; }
/* Slogan: Punkte weiß, Worte leicht transparent */
.home-hero h1 .word { color: rgba(255, 255, 255, 0.82) !important; }
.home-hero h1 .word .dot { color: #fff !important; }
/* Lazy-Days-Kachel mit Raumfoto */
.division-card--shop img { object-fit: cover; object-position: 38% 45%; padding: 0; }
.division-card--shop::before { background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 8%, rgba(10, 10, 10, 0.2) 55%, rgba(10, 10, 10, 0.05)); }
.division-card--shop:hover img { transform: scale(1.06); }
/* Kopfbereich über die volle Breite */
.site-header .container { max-width: none; padding-inline: clamp(16px, 3vw, 48px); }
@media (min-width: 1180px) {
  .main-nav > ul { gap: clamp(2px, 0.6vw, 14px); }
  .nav-link { padding-inline: clamp(9px, 0.9vw, 16px); font-size: 0.975rem; }
  .header-cta { display: inline-flex !important; }
}

/* Feinschliff Runde 4 */
/* Shop-Banner: Foto über die volle Breite, Logo ohne Rahmen auf hellem Raum */
.shop-banner {
  position: relative;
  display: block;
  height: clamp(260px, 32vw, 420px);
  margin-bottom: clamp(28px, 4vw, 48px);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  isolation: isolate;
}
.shop-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; z-index: -1; transition: transform var(--t-slow) var(--ease); }
.shop-banner:hover .shop-banner__img { transform: scale(1.03); }
.shop-banner__logo { position: absolute; right: clamp(20px, 5vw, 64px); top: 50%; translate: 0 -50%; width: clamp(180px, 26vw, 360px); }
.shop-banner__logo img { width: 100%; height: auto; }
.shop-banner__cta { position: absolute; right: clamp(20px, 5vw, 64px); bottom: clamp(18px, 3vw, 32px); display: inline-flex; gap: 8px; align-items: center; padding: 10px 18px; border-radius: 999px; background: #141517; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; }
@media (max-width: 700px) { .shop-banner__logo { top: 22px; translate: 0 0; } }

/* Wasserzeichen im Hintergrund */
.site-footer { isolation: isolate; }
.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: -40px;
  width: min(42vw, 520px);
  aspect-ratio: 800 / 741;
  background: #C5C3C3;
  opacity: 0.05;
  -webkit-mask: url("../brand/mark-green.png") center / contain no-repeat;
          mask: url("../brand/mark-green.png") center / contain no-repeat;
  pointer-events: none;
}
.page-dark .shop-show::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 40px;
  width: min(40vw, 480px);
  aspect-ratio: 800 / 741;
  background: #C5C3C3;
  opacity: 0.04;
  -webkit-mask: url("../brand/mark-green.png") center / contain no-repeat;
          mask: url("../brand/mark-green.png") center / contain no-repeat;
  pointer-events: none;
}
.shop-show > .container { position: relative; z-index: 1; }

/* Fußzeile: Copyright und Rechtliches links */
.footer-bigword { display: none; }
.footer-bottom { align-items: center; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; margin: 0; padding: 0; }


/* Feinschliff Runde 5: Lazy Days als dunkle Bühne */
.shop-stage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 50% 100%, rgba(255, 255, 255, 0.07), transparent 70%),
    #080808;
  color: #D9D9D6;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  --ink: #fff;
  --text: #D9D9D6;
  --muted: #A9A8A6;
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #C5C3C3;
  --accent-ink: #C5C3C3;
  --on-accent: #141517;
}
.shop-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -90px;
  top: 30px;
  width: min(40vw, 460px);
  aspect-ratio: 800 / 741;
  background: #C5C3C3;
  opacity: 0.035;
  -webkit-mask: url("../brand/mark-green.png") center / contain no-repeat;
          mask: url("../brand/mark-green.png") center / contain no-repeat;
  pointer-events: none;
}
.shop-stage h2 { color: #fff; }
.shop-stage__head { display: grid; gap: 28px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
@media (min-width: 960px) { .shop-stage__head { grid-template-columns: 1.3fr 0.7fr; } }
.shop-stage__logo { width: clamp(200px, 22vw, 300px); height: auto; margin-bottom: 22px; }
.shop-stage__side { display: grid; gap: 20px; justify-items: start; }
.shop-stage .shop-features li { border-color: rgba(255, 255, 255, 0.2); color: #fff; }

.shop-lineup {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: clamp(8px, 2vw, 28px);
  padding-bottom: 8px;
}
.shop-lineup::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 4%;
  right: 4%;
  bottom: 62px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1), transparent 70%);
}
.shop-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #D9D9D6;
  text-align: center;
}
.shop-figure img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 22px 22px rgba(0, 0, 0, 0.6));
  transition: transform var(--t-slow) var(--ease);
}
.shop-figure--main img { max-height: 330px; }
.shop-figure:hover img { transform: translateY(-8px); }
.shop-figure strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
.shop-figure small { color: #A9A8A6; font-size: var(--fs-xs); }
.shop-figure:hover strong { color: #C5C3C3; }
.shop-stage__foot { margin: 28px 0 0; text-align: center; font-size: var(--fs-s); color: #A9A8A6; }
@media (max-width: 800px) {
  .shop-lineup { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 58%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .shop-lineup::-webkit-scrollbar { display: none; }
  .shop-figure { scroll-snap-align: center; }
  .shop-lineup::after { display: none; }
}
.mega-shop__logo { background: none; padding: 0; }
.mega-shop__logo img { height: 30px; }
/* Startseite: Kacheln so hoch wie der Textblock */
@media (min-width: 980px) {
  .home-hero__grid { align-items: stretch; }
  .hero-tiles { display: flex; flex-direction: column; }
  .hero-tiles .division-grid { flex: 1; grid-template-rows: 1fr 1fr; }
  .hero-tiles .division-card { min-height: 0; }
}
/* Startseite: quadratische Kacheln, mittig im Rahmen; Slogan mit mehr Buchstabenabstand */
@media (min-width: 980px) {
  .home-hero__grid { align-items: center; }
  .hero-tiles { display: block; max-width: 520px; width: 100%; justify-self: end; }
  .hero-tiles .division-grid { grid-template-rows: none; }
  .hero-tiles .division-card { aspect-ratio: 1 / 1; min-height: 0; }
}
.home-hero h1 { letter-spacing: -0.005em; line-height: 1; }
/* Startseite: Slogan eng, aber ohne Berührung; Kacheln breiter, Oberkante auf Höhe von "Gestalten" */
.home-hero h1 { letter-spacing: -0.022em; }
@media (min-width: 980px) {
  .home-hero__grid { align-items: start; }
  .hero-tiles { max-width: 620px; margin-top: calc(var(--fs-xs) * 1.65 + 18px + 0.12em); }
  .hero-tiles .division-card { aspect-ratio: 5 / 4; }
}
@media (min-width: 980px) { .hero-tiles { margin-top: calc(var(--fs-xs) * 1.65 + 28px + 0.12em); } }
@media (min-width: 980px) { .hero-tiles .division-card { aspect-ratio: 1.19 / 1; } }

/* Einsatzgebiet-Karte, überarbeitet */
.region__map { position: relative; overflow: visible; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-m); }
.region__map svg { border-radius: inherit; overflow: hidden; }
.region__map .map-dot { fill: rgba(28, 30, 32, 0.13); }
.region__map .map-area-in { stop-color: #C5C3C3; stop-opacity: 0.35; }
.region__map .map-area-out { stop-color: #C5C3C3; stop-opacity: 0; }
.region__map .ring { fill: none; stroke: rgba(97, 100, 102, 0.35); stroke-width: 1; stroke-dasharray: none; opacity: 1; }
.region__map .ring-label { font: 600 10px var(--font-body); letter-spacing: 0.08em; text-transform: uppercase; fill: var(--muted); }
.region__map .river { fill: none; stroke: #7FA9C4; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0.9; }
.region__map .river--glow { stroke: #7FA9C4; stroke-width: 9; opacity: 0.18; }
.region__map .river-label { font: italic 500 11px var(--font-body); fill: #5E88A3; letter-spacing: 0.06em; }
.region__map .town-dot { fill: var(--muted); opacity: 0.8; }
.region__map .town { font: 500 11.5px var(--font-body); fill: var(--ink); paint-order: stroke; stroke: var(--surface); stroke-width: 3.5px; stroke-linejoin: round; }
.region__map .town--home { font-weight: 700; font-size: 12.5px; }
.region__map .home-badge { fill: var(--surface); stroke: var(--ink); stroke-width: 2; }
.region__map .pulse { fill: #C5C3C3; transform-box: fill-box; transform-origin: center; animation: pulse 2.8s ease-out infinite; }
.region__map .map-pin { cursor: pointer; }
.region__map .map-pin__dot { stroke: var(--surface); stroke-width: 2.5; transition: r var(--t-fast); }
.region__map .map-pin__halo { opacity: 0.22; transition: opacity var(--t-fast); }
.region__map .map-pin--gartenbau .map-pin__dot, .region__map .map-pin--gartenbau .map-pin__halo { fill: var(--ci-green); }
.region__map .map-pin--baumdienst .map-pin__dot, .region__map .map-pin--baumdienst .map-pin__halo { fill: var(--ci-orange); }
.region__map .map-pin:hover .map-pin__halo, .region__map .map-pin:focus .map-pin__halo { opacity: 0.45; }
.region__map .map-pin:focus { outline: none; }
.region__map .query-line { stroke: var(--ink); stroke-width: 1.5; stroke-dasharray: 4 5; opacity: 0.6; }
.region__map .query-dot { fill: var(--ink); stroke: var(--surface); stroke-width: 3; }

.map-card {
  position: absolute;
  z-index: 5;
  width: 250px;
  transform: translate(-50%, calc(-100% - 16px));
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-l);
  animation: fade-up 220ms var(--ease);
}
.map-card.is-below { transform: translate(-50%, 34px); }
.map-card a { display: grid; grid-template-columns: 84px 1fr; text-decoration: none; color: var(--text); }
.map-card img { width: 84px; height: 100%; min-height: 84px; object-fit: cover; }
.map-card span { padding: 10px 12px; display: grid; gap: 2px; align-content: center; }
.map-card small { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.map-card strong { font-family: var(--font-display); font-size: 0.92rem; line-height: 1.25; color: var(--ink); }
.map-card em { font-style: normal; font-size: 0.78rem; font-weight: 600; color: var(--accent-ink); }

.map-legend {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--text);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.map-legend span { display: inline-flex; align-items: center; gap: 6px; }
.map-legend .lg { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.map-legend .lg--gartenbau { background: var(--ci-green); }
.map-legend .lg--baumdienst { background: var(--ci-orange); }
.map-legend .lg--home { background: var(--surface); border: 2px solid var(--ink); }

/* dunkle Startseite */
.page-dark .region__map { background: #141414; }
.page-dark .region__map .map-dot { fill: rgba(255, 255, 255, 0.07); }
.page-dark .region__map .map-area-in { stop-opacity: 0.16; }
.page-dark .region__map .ring { stroke: rgba(255, 255, 255, 0.16); }
.page-dark .region__map .river { stroke: #4E7A96; }
.page-dark .region__map .river--glow { stroke: #4E7A96; opacity: 0.25; }
.page-dark .region__map .river-label { fill: #7FA9C4; }
.page-dark .region__map .home-badge { fill: #F6F8F3; stroke: #F6F8F3; }
.page-dark .region__map .town { stroke: #141414; }
.page-dark .region__map .map-pin__dot { stroke: #141414; }
.shop-figure img, .mega-shop__items img, .shop-item img, .division-card--shop img, .mascot-note img, img[src$=".png"] { background: none !important; }
.region__map { aspect-ratio: 1.15; }

/* Google-Rezensionen */
.reviews__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: clamp(24px, 3vw, 40px); }
.reviews__head h2 { margin-bottom: 0; }
.reviews__score { display: inline-flex; align-items: center; gap: 14px; padding: 12px 18px 12px 12px; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); text-decoration: none; color: var(--text); transition: border-color var(--t-fast); }
.reviews__score:hover { border-color: var(--line-strong); }
.reviews__g { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: #fff; color: #4285F4; font: 700 1.5rem/1 "Outfit", sans-serif; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08); }
.reviews__score > span:last-child { display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 10px; }
.reviews__score strong { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; color: var(--ink); }
.reviews__score small { grid-column: 1 / -1; font-size: var(--fs-xs); color: var(--muted); margin-top: 4px; }
.reviews .stars { color: #F5B301; }
.reviews .stars .icon { width: 16px; height: 16px; }
.reviews__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); align-items: start; }
.review { margin: 0; display: flex; flex-direction: column; gap: 14px; padding: clamp(20px, 2.4vw, 28px); border-radius: var(--r-l); background: var(--surface); border: 1px solid var(--line); }
.review blockquote { margin: 0; font-size: var(--fs-s); line-height: 1.65; color: var(--text); }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.review__avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #C5C3C3; color: #141517; font-family: var(--font-display); font-weight: 700; }
.review figcaption strong { display: block; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.review figcaption small { color: var(--muted); font-size: var(--fs-xs); }
.reviews__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 28px; }

/* Google-Rezensionen, Version 2 */
.reviews__layout { display: grid; gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (min-width: 1000px) { .reviews__layout { grid-template-columns: 340px 1fr; } }
.reviews__panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-xl);
  background: #141414;
  color: #D9D9D6;
  --ink: #fff;
  --accent-ink: #C5C3C3;
}
@media (min-width: 1000px) { .reviews__panel { position: sticky; top: calc(var(--header-h) + 20px); } }
.reviews__panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: -50px;
  width: 260px;
  aspect-ratio: 800 / 741;
  background: #C5C3C3;
  opacity: 0.06;
  -webkit-mask: url("../brand/mark-green.png") center / contain no-repeat;
          mask: url("../brand/mark-green.png") center / contain no-repeat;
}
.reviews__panel h2 { color: #fff; font-size: clamp(1.7rem, 1.3rem + 1.2vw, 2.3rem); }
.reviews__rating { display: flex; align-items: center; gap: 14px; margin: 18px 0 14px; }
.reviews__g { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: #fff; flex: none; }
.reviews__num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; line-height: 1; color: #fff; letter-spacing: -0.03em; }
.reviews__meta { display: grid; gap: 4px; }
.reviews__meta small { font-size: var(--fs-xs); color: #A9A8A6; }
.reviews .stars { display: inline-flex; gap: 2px; color: #F5B301; }
.reviews .stars .icon { width: 17px; height: 17px; }
.reviews__lead { font-size: var(--fs-s); color: #A9A8A6; margin-bottom: 22px; }
.reviews__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.reviews__panel .btn { --btn-bg: #C5C3C3; --btn-fg: #141517; }
.reviews__panel .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; --btn-border: rgba(255, 255, 255, 0.35); }

.reviews__grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); align-items: start; }
@media (min-width: 1000px) { .reviews__grid { grid-template-columns: 1fr 1fr; } .review--featured { grid-column: 1 / -1; } }
.review {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: var(--r-l);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-s);
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.review::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}
.review blockquote { margin: 0; font-size: var(--fs-s); line-height: 1.7; color: var(--text); }
.review--featured blockquote { font-family: var(--font-display); font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem); line-height: 1.55; color: var(--ink); font-weight: 500; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.review__avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--on-accent); font-family: var(--font-display); font-weight: 700; }
.review figcaption strong { display: block; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.review figcaption small { color: var(--muted); font-size: var(--fs-xs); }
.reviews__head, .reviews__score, .reviews__foot { display: none; }
/* Rezensionen: gekürzt mit "Mehr lesen" */
.review__text { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden; }
.review--featured .review__text { -webkit-line-clamp: 3; }
.review.is-open .review__text { display: block; -webkit-line-clamp: unset; }
.review__more { align-self: flex-start; margin-top: -6px; padding: 0; border: 0; background: none; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-s); color: var(--accent-ink); cursor: pointer; }
.review__more:hover { text-decoration: underline; text-underline-offset: 3px; }
.review__more[hidden] { display: none; }
@media (min-width: 1000px) { .reviews__grid { align-items: stretch; } }
/* Rezensionen Variante B: ein Zitat nach dem anderen */
.rv2__box { position: relative; overflow: hidden; isolation: isolate; max-width: 980px; margin: 0 auto; padding: clamp(32px, 5vw, 64px); border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); text-align: center; }
.rv2__box::after { content: ""; position: absolute; z-index: -1; left: 50%; top: 50%; width: 360px; aspect-ratio: 800 / 741; translate: -50% -50%; background: #C5C3C3; opacity: 0.05; -webkit-mask: url("../brand/mark-green.png") center / contain no-repeat; mask: url("../brand/mark-green.png") center / contain no-repeat; }
.rv2__top { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 26px; }
.rv2__top .eyebrow { margin: 0; }
.rv2__score { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); text-decoration: none; color: var(--muted); font-size: var(--fs-xs); }
.rv2__score strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); }
.rv2 .stars { display: inline-flex; gap: 1px; color: #F5B301; }
.rv2 .stars .icon { width: 15px; height: 15px; }
.rv2__slides { display: grid; }
.rv2__slide { grid-area: 1 / 1; margin: 0; opacity: 0; transform: translateY(10px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); pointer-events: none; }
.rv2__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.rv2__slide blockquote { margin: 0 auto 18px; max-width: 760px; font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 1rem + 1.8vw, 2.3rem); line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); }
.rv2__slide figcaption { color: var(--muted); font-size: var(--fs-s); }
.rv2__slide figcaption strong { color: var(--ink); }
.rv2__nav { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.rv2__dot { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px; background: var(--line-strong); cursor: pointer; transition: width var(--t), background var(--t); }
.rv2__dot.is-active { width: 28px; background: var(--accent); }
.rv2__all { margin-left: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-s); color: var(--accent-ink); text-decoration: none; }
/* Wasserzeichen nur noch im Footer */
.cta-band--watermark::after, .page-dark .shop-show::before, .shop-stage::before, .reviews__panel::after { content: none !important; display: none !important; }
/* Hub-Seiten: Hero unten eckig */
[data-template="hub"] .page-hero, [data-division] .page-hero { border-radius: 0 !important; }
/* Rezensionen Variante C: Karten + Bewertungsfeld */
.rv3__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.rv3__head h2 { margin: 0; }
.rv3__score { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 999px; background: var(--surface, #fff); border: 1px solid var(--line, rgba(0,0,0,.08)); color: var(--ink); }
.rv3__score strong { font-family: var(--font-display); font-size: 1.3rem; }
.rv3__score small { color: var(--text); }
.rv3 .stars { display: inline-flex; gap: 2px; color: #FBBC05; }
.rv3 .stars .icon { width: 16px; height: 16px; }
.rv3__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: start; }
@media (max-width: 1100px) { .rv3__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .rv3__grid { grid-template-columns: 1fr; } }
.rv3__card { margin: 0; padding: 22px; border-radius: 18px; background: var(--surface, #fff); border: 1px solid var(--line, rgba(0,0,0,.08)); display: flex; flex-direction: column; gap: 12px; }
.rv3__card blockquote { margin: 0; color: var(--text); line-height: 1.6; }
.rv3__card figcaption { color: var(--ink); font-size: .92rem; }
.rv3__write { padding: 24px; border-radius: 18px; background: var(--dark); color: #fff; display: flex; flex-direction: column; gap: 12px; }
.rv3__write-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin: 0; color: #fff; }
.rv3__write p { margin: 0; color: rgba(255,255,255,.75); }
.rv3__rate { display: flex; gap: 4px; }
.rv3__rate a { color: rgba(255,255,255,.3); transition: color .15s, transform .15s; }
.rv3__rate a .icon { width: 30px; height: 30px; }
.rv3__rate:hover a { color: #FBBC05; }
.rv3__rate a:hover ~ a { color: rgba(255,255,255,.3); }
.rv3__rate a:hover { transform: scale(1.12); }
.rv3__write .btn { align-self: flex-start; }
.rv3__all { color: rgba(255,255,255,.8); font-size: .92rem; text-decoration: underline; text-underline-offset: 3px; }
.rv3__card.is-open .review__text { display: block; -webkit-line-clamp: unset; }
/* Karte Variante B: Bühne mit Karte und Projektliste */
.region--b { display: block; }
.region--b .region__intro { max-width: 760px; margin-bottom: clamp(24px, 3vw, 36px); }
.region__stage { display: grid; grid-template-columns: 1fr; border-radius: 28px; overflow: hidden; background: var(--dark); border: 1px solid rgba(255,255,255,.08); }
@media (min-width: 980px) { .region__stage { grid-template-columns: 1.45fr 1fr; } }
.region--b .region__map { aspect-ratio: 1.2; border: 0; border-radius: 0; box-shadow: none; background: radial-gradient(circle at 42% 45%, rgba(197,195,195,.10), transparent 65%), var(--dark); }
.region--b .region__map svg { border-radius: 0; }
.region--b .region__map .map-dot { fill: rgba(255,255,255,.10); }
.region--b .region__map .map-area-in { stop-color: #C5C3C3; stop-opacity: .16; }
.region--b .region__map .ring { stroke: rgba(197,195,195,.35); stroke-dasharray: 3 5; }
.region--b .region__map .ring--inner { stroke: rgba(197,195,195,.22); fill: none; stroke-width: 1; }
.region--b .region__map .ring-label { fill: rgba(197,195,195,.7); }
.region--b .region__map .river { stroke: #4F7F9E; opacity: .8; }
.region--b .region__map .river--glow { stroke: #4F7F9E; opacity: .15; }
.region--b .region__map .river-label { fill: #7FA9C4; }
.region--b .region__map .town { fill: rgba(255,255,255,.72); stroke: var(--dark); }
.region--b .region__map .town--home { fill: #fff; }
.region--b .region__map .town-dot { fill: rgba(255,255,255,.45); }
.region--b .region__map .home-badge { fill: #232528; stroke: #C5C3C3; }
.region--b .region__map .map-pin__dot { stroke: var(--dark); }
.region--b .region__map .map-pin { transition: opacity .2s; }
.region--b .region__map .map-pin.is-dim { opacity: .15; pointer-events: none; }
.region--b .region__map .map-pin.is-hot .map-pin__halo { opacity: .55; }
.region--b .region__map .query-line { stroke: #fff; opacity: .7; }
.region--b .region__map .query-dot { fill: #fff; stroke: var(--dark); }
.region__map .query-label { font: 700 12px var(--font-body); fill: var(--ink); paint-order: stroke; stroke: var(--surface); stroke-width: 4px; }
.region--b .region__map .query-label { fill: #fff; stroke: var(--dark); }
.region--b .map-legend { background: rgba(20,21,23,.8); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.region__panel { padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 12px; background: #232528; color: #fff; border-left: 1px solid rgba(255,255,255,.06); min-width: 0; }
.region__panel-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin: 0; color: #fff; }
.region__panel .region__form { margin-top: 0; }
.region__panel .region__form input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); color: #fff; }
.region__panel .region__result { background: rgba(255,255,255,.06); color: rgba(255,255,255,.85); margin-top: 0; }
.region__panel .region__result strong, .region__panel .region__result a { color: #fff; }
.region__panel .region__towns { margin-top: 0; }
.region__panel .chip { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.region__list-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 10px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.region__panel-sub { margin: 0; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #C5C3C3; }
.region__filter { display: inline-flex; padding: 3px; border-radius: 999px; background: rgba(255,255,255,.06); }
.region__filter button { border: 0; background: none; color: rgba(255,255,255,.7); font: 600 .78rem var(--font-body); padding: 5px 11px; border-radius: 999px; cursor: pointer; }
.region__filter button.is-active { background: #C5C3C3; color: #141517; }
.region__list { list-style: none; margin: 0; padding: 0 4px 0 0; display: grid; gap: 6px; max-height: 330px; overflow-y: auto; scrollbar-width: thin; }
.region__list a { display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: center; padding: 6px; border-radius: 14px; text-decoration: none; color: #fff; transition: background .15s; }
.region__list li.is-hot a, .region__list a:hover { background: rgba(255,255,255,.08); }
.region__list img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; }
.region__list small { display: flex; align-items: center; gap: 6px; font-size: .72rem; color: rgba(255,255,255,.6); }
.region__list strong { display: block; font-family: var(--font-display); font-size: .92rem; line-height: 1.25; }
.region__list .lg { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }
.region__list .lg--gartenbau { background: var(--ci-green); } .region__list .lg--baumdienst { background: var(--ci-orange); }
@media (min-width: 980px) { .region__stage { grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1fr); } }
.region--b .region__map { aspect-ratio: auto; min-width: 0; min-height: 420px; height: 100%; }
.region--b .region__map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.region--b .region__list { max-height: 290px; }
/* Karte: echte Landkreis-Grenzen als ruhige Grundlage */
.region__map .map-bg { fill: var(--bg-2); }
.region__map .map-kreis { fill: var(--surface); stroke: rgba(97, 100, 102, 0.28); stroke-width: 0.8; stroke-linejoin: round; }
.region__map .map-kreis--home { fill: color-mix(in srgb, var(--accent) 12%, var(--surface)); stroke: var(--muted); stroke-width: 1.6; }
.region__map .ring { stroke: rgba(97, 100, 102, 0.3); stroke-dasharray: 3 5; }
.page-dark .region__map { background: #111213; }
.page-dark .region__map .map-bg { fill: #111213; }
.page-dark .region__map .map-kreis { fill: #1C1E20; stroke: rgba(255, 255, 255, 0.16); }
.page-dark .region__map .map-kreis--home { fill: #2A2D30; stroke: rgba(197, 195, 195, 0.55); }
.page-dark .region__map .ring { stroke: rgba(197, 195, 195, 0.22); }
.page-dark .region__map .ring-label { fill: rgba(197, 195, 195, 0.6); }
.page-dark .region__map .town { fill: rgba(255, 255, 255, 0.78); stroke: #1C1E20; }
.page-dark .region__map .town--home { fill: #fff; }
.page-dark .region__map .town-dot { fill: rgba(255, 255, 255, 0.5); }
.page-dark .region__map .home-badge { fill: #1C1E20; stroke: #C5C3C3; }
.page-dark .region__map .map-pin__dot { stroke: #1C1E20; }
.page-dark .region__map .river { stroke: #4F7F9E; }
.page-dark .region__map .river--glow { stroke: #4F7F9E; opacity: 0.12; }
.page-dark .region__map .river-label { fill: #7FA9C4; }
.page-dark .region__map .query-line { stroke: #fff; }
.page-dark .region__map .query-dot { fill: #fff; stroke: #1C1E20; }
.page-dark .region__map .query-label { fill: #fff; stroke: #1C1E20; }
.page-dark .map-legend { background: rgba(20, 21, 23, 0.85); border-color: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8); }
.region__map .map-kreis { fill: var(--surface-2); }
.region__map .map-kreis--home { fill: color-mix(in srgb, var(--accent) 22%, var(--bg-2)); stroke: var(--muted); stroke-width: 1.4; }
/* Ruhige Bildraster: gleiche Größe, gleiches Format, max. 4 pro Reihe */
.gallery--calm { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 12px; }
@media (min-width: 1000px) { .gallery--calm { grid-template-columns: repeat(4, 1fr); } .gallery--calm:has(> :nth-child(3):last-child) { grid-template-columns: repeat(3, 1fr); } .gallery--calm:has(> :nth-child(2):last-child) { grid-template-columns: repeat(2, 1fr); } }
.gallery--calm .gallery__item { aspect-ratio: 4 / 3; grid-column: auto; grid-row: auto; }
/* Karten mit Foto: Bild bündig oben, das Icon sitzt auf der Bildkante */
.card--photo { --card-pad: clamp(20px, 2.2vw, 30px); padding-top: 0; overflow: hidden; }
.card__photo { margin: 0 calc(var(--card-pad) * -1); aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.card--photo .card__icon { position: relative; z-index: 1; margin-top: -36px; background: color-mix(in srgb, var(--accent) 16%, var(--surface)); border: 3px solid var(--surface); box-shadow: 0 6px 16px rgba(20, 21, 23, 0.14); }
.card--tint.card--photo .card__icon { border-color: var(--bg-2); }
.section--dark .img-stack .leaf-img:nth-child(2) { border-color: var(--dark); }
.grid--2 > .card--photo .card__photo { aspect-ratio: 16 / 9; }
/* Fünf Fotos: das erste groß links, vier kleine rechts daneben */
@media (min-width: 1000px) { .gallery--calm:has(> :nth-child(5):last-child) > :first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; } }
/* Sechs Fotos: drei nebeneinander, zwei Reihen */
@media (min-width: 1000px) { .gallery--calm:has(> :nth-child(6):last-child) { grid-template-columns: repeat(3, 1fr); } }


/* Videos als ruhige Schleife: Quer- statt Hochformat, dezent farblich angeglichen, weiche Überblendung */
.vloop { position: relative; overflow: hidden; background: #141517; }
.page-hero__media .vloop { position: absolute; inset: 0; }
.vloop--framed { aspect-ratio: 4 / 3; border-radius: var(--r-leaf-l); box-shadow: var(--shadow-m); }
.vloop video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--vpos, 50% 50%); filter: saturate(1.06) contrast(1.05); transition: opacity 0.9s ease; }
.vloop video.is-top { z-index: 1; }
.vloop video.is-back { opacity: 0; transition: none; }
.vloop::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(125% 95% at 50% 42%, transparent 58%, rgba(10, 12, 14, 0.26) 100%); }
.vloop__toggle { position: absolute; z-index: 3; top: 14px; right: 14px; width: 34px; height: 34px; border: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(20, 21, 23, 0.42); color: #fff; opacity: 0.7; cursor: pointer; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); transition: opacity 0.2s, background 0.2s; }
.vloop__toggle:hover, .vloop__toggle:focus-visible { opacity: 1; background: rgba(20, 21, 23, 0.72); }
.vloop__toggle .icon { width: 14px; height: 14px; }
.vloop__label { position: absolute; z-index: 2; left: 16px; bottom: 16px; }
.page-hero__media .badge { z-index: 2; }
.vloop--square { aspect-ratio: 1 / 1; max-width: 520px; width: 100%; margin-inline: auto; }

/* Foto-Anfrage im Assistenten */
.photo-drop { position: relative; display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1.5px dashed var(--line-strong); border-radius: var(--r-m); background: var(--surface); cursor: pointer; transition: border-color var(--t), background var(--t); }
.photo-drop:hover, .photo-drop:focus-within { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 6%, var(--surface)); }
.photo-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.photo-drop > .icon { width: 28px; height: 28px; flex: none; color: var(--accent-ink); }
.photo-drop strong { display: block; color: var(--ink); }
.photo-drop small { display: block; color: var(--muted); font-size: var(--fs-s); }
.photo-field.is-full .photo-drop { display: none; }
.photo-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.photo-list:empty { display: none; }
.photo-item { position: relative; width: 84px; height: 84px; border-radius: 12px; overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow-s); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; }
.photo-item__remove { position: absolute; top: 4px; right: 4px; width: 24px; height: 24px; border: 0; border-radius: 50%; display: grid; place-items: center; background: rgba(20, 21, 23, 0.7); color: #fff; cursor: pointer; }
.photo-item__remove .icon { width: 12px; height: 12px; }

/* Preisrahmen und Sofort-Einschätzung */
.calc__price { margin-top: 12px; padding: 12px 14px; border-radius: var(--r-m); background: color-mix(in srgb, var(--accent) 10%, var(--surface)); display: grid; gap: 2px; }
.calc__price strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--ink); }
.price-note { display: block; font-size: var(--fs-xs); color: var(--muted); line-height: 1.45; margin-top: 4px; }
.price-demo { display: block; color: #b54708; font-weight: 600; }
.estimate { margin: 18px 0; padding: 16px 18px; border-radius: var(--r-m); border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); }
.estimate__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--ink); }
.estimate__head .icon { width: 20px; height: 20px; color: var(--accent-ink); }
.estimate__row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-top: 1px solid var(--line); }
.estimate__row:first-of-type { border-top: 0; }
.estimate__row strong { white-space: nowrap; color: var(--ink); }

/* Pflegekalender */
.care { display: grid; gap: 22px; }
@media (min-width: 900px) { .care { grid-template-columns: 1fr auto; align-items: end; } .care__list { grid-column: 1 / -1; } }
.care__title { font-size: var(--fs-h4); margin: 0; }
.care__actions { display: grid; gap: 6px; justify-items: start; }
@media (min-width: 900px) { .care__actions { justify-items: end; text-align: right; } }
.care__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.care__month { margin-top: 14px; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-s); letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-ink); }
.care__item { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 16px 18px; border-radius: var(--r-m); background: var(--surface); border: 1px solid var(--line); }
.care__date { display: grid; place-items: center; align-content: center; width: 64px; height: 64px; border-radius: 16px 16px 16px 5px; background: var(--accent-soft); color: var(--accent-ink); }
.care__date strong { font-family: var(--font-display); font-size: 1.35rem; line-height: 1; }
.care__date small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.care__topic { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); color: var(--muted); }
.care__topic .icon { width: 14px; height: 14px; }
.care__item h3 { font-size: var(--fs-h4); margin: 2px 0 4px; }
.care__item p { margin: 0 0 6px; color: var(--text); }

/* Pflegehinweise als PDF */
.downloads { display: grid; gap: 14px; }
.dl-card { display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: center; padding: 14px; border-radius: var(--r-m); background: var(--surface); border: 1px solid var(--line); color: var(--text); text-decoration: none; transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t); }
.dl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--accent); }
.dl-card__thumb { display: block; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(20, 21, 23, 0.16); background: #fff; transform: rotate(-2deg); transition: transform var(--t) var(--ease); }
.dl-card:hover .dl-card__thumb { transform: rotate(0deg) scale(1.03); }
.dl-card__thumb img { display: block; width: 100%; height: auto; }
.dl-card__body { display: grid; gap: 4px; }
.dl-card__kicker { display: inline-flex; align-items: center; gap: 6px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }
.dl-card__kicker .icon { width: 14px; height: 14px; }
.dl-card strong { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.dl-card__action { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.dl-card__action .icon { width: 18px; height: 18px; color: var(--accent-ink); }
.dl-card__action small { font-family: var(--font-body); font-weight: 400; color: var(--muted); margin-left: 4px; }
@media (max-width: 520px) { .dl-card { grid-template-columns: 84px 1fr; gap: 14px; } }
.dl-card.is-highlight { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent), var(--shadow-m); }

/* Kundenseite /pflege/: Pflegehinweise nach Bereichen */
.downloads--grid { grid-template-columns: repeat(auto-fill, minmax(min(100%, 440px), 1fr)); gap: 16px; }
.dl-jump { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 8px; }
.dl-jump a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-family: var(--font-display); font-weight: 600; text-decoration: none; transition: border-color var(--t), background var(--t); }
.dl-jump a .icon { width: 18px; height: 18px; color: var(--accent-ink); }
.dl-jump a:hover { border-color: var(--accent); background: var(--accent-soft); }
.dl-group { margin-top: 36px; scroll-margin-top: 100px; }
.dl-group > h3 { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; font-size: var(--fs-h3); }
.dl-group > h3::before { content: ""; width: 6px; height: 1.1em; border-radius: 3px; background: var(--accent); }

/* Pflegehinweise kompakt: Startseite und Bereichsseiten */
.care-hub { padding: clamp(22px, 4vw, 44px); border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s, 0 2px 10px rgba(20,21,23,.05)); }
.care-hub__head { display: flex; flex-wrap: wrap; gap: 18px 32px; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.care-hub__head > div { max-width: 640px; }
.care-hub__head h2 { margin: 4px 0 8px; }
.care-hub__head p:last-child { margin: 0; color: var(--text); }
.care-hub__cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.care-hub__col h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); font-size: var(--fs-h4); }
.care-hub__col h3 .card__icon { width: 36px; height: 36px; margin: 0; display: grid; place-items: center; }
.care-hub__col h3 .card__icon .icon { width: 18px; height: 18px; }
.care-hub__col h3 small { margin-left: auto; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600; color: var(--muted); }
.dl-minis { display: grid; gap: 6px; }
.dl-minis--cols { grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: 8px 20px; }
.dl-mini { display: grid; grid-template-columns: 34px 1fr 20px; gap: 12px; align-items: center; padding: 8px 10px; margin: 0 -10px; border-radius: var(--r-s, 10px); color: var(--text); text-decoration: none; transition: background var(--t); }
.dl-mini img { width: 34px; height: auto; border-radius: 3px; box-shadow: 0 2px 8px rgba(20, 21, 23, 0.18); background: #fff; }
.dl-mini strong { display: block; font-family: var(--font-display); font-size: 0.98rem; font-weight: 600; line-height: 1.3; color: var(--ink); }
.dl-mini small { display: block; font-size: var(--fs-xs); color: var(--muted); }
.dl-mini > .icon { width: 18px; height: 18px; color: var(--accent-ink); opacity: .55; transition: opacity var(--t), transform var(--t) var(--ease); }
.dl-mini:hover { background: var(--accent-soft); }
.dl-mini:hover > .icon { opacity: 1; transform: translateY(2px); }
@media (max-width: 900px) { .care-hub__cols { grid-template-columns: 1fr; gap: 28px; } }

/* Startseite: drei kompakte Kacheln zu den Pflegehinweisen */
.care-tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.care-tile { position: relative; display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; gap: 4px 16px; align-items: center; padding: 20px 22px; border-radius: var(--r-l, 18px); border: 1px solid var(--line); border-top: 3px solid var(--accent); background: var(--surface-2, var(--surface)); color: var(--text); text-decoration: none; transition: transform var(--t) var(--ease), border-color var(--t), background var(--t); }
.care-tile .card__icon { grid-row: 1 / 3; margin: 0; width: 48px; height: 48px; display: grid; place-items: center; }
.care-tile__body { grid-column: 2; grid-row: 1 / 3; display: grid; gap: 4px; }
.care-tile__body strong { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); }
.care-tile__body span { font-size: var(--fs-s, .92rem); line-height: 1.45; color: var(--muted); }
.care-tile__count { grid-column: 3; grid-row: 1; justify-self: end; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; color: var(--accent-ink); white-space: nowrap; }
.care-tile__arrow { grid-column: 3; grid-row: 2; justify-self: end; width: 22px; height: 22px; color: var(--accent-ink); transition: transform var(--t) var(--ease); }
.care-tile:hover { transform: translateY(-3px); border-color: var(--accent); background: var(--accent-soft); }
.care-tile:hover .care-tile__arrow { transform: translateX(4px); }
@media (max-width: 900px) { .care-tiles { grid-template-columns: minmax(0, 1fr); } }
/* Auf dunklen Seiten die hellen Bereichsfarben statt der dunklen Schriftvarianten */
.page-dark .dl-group, .page-dark .dl-jump a, .page-dark .care-tile, .page-dark .care-hub__col { --accent-ink: var(--accent); }

/* Querschnitt Pflanzkübel (Projekt Kreisverwaltung) */
.trough { margin: 0; padding: clamp(18px, 3vw, 28px); border-radius: var(--r-xl); background: radial-gradient(120% 90% at 50% 0%, #FFFFFF 0%, #F1F3EE 70%); border: 1px solid var(--line); box-shadow: var(--shadow-m); }
.trough__svg { display: block; width: 100%; height: auto; }
.trough__marks circle { stroke: rgba(28, 30, 32, .18); stroke-width: 1; }
.trough__legend { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid rgba(28, 30, 32, .1); display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px 20px; color: #45484A; }
.trough__legend li { display: flex; gap: 12px; align-items: flex-start; }
.trough__legend strong { display: block; font-family: var(--font-display); font-size: .98rem; color: #1C1E20; line-height: 1.3; }
.trough__legend span:not(.trough__num) { display: block; font-size: var(--fs-xs); line-height: 1.45; }
.trough__num { flex: none; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--c); color: #1C1E20; font-weight: 700; font-size: .85rem; box-shadow: inset 0 0 0 1px rgba(28, 30, 32, .15); }

/* Projektseite: Karte folgt dem Bereichsfilter */
body[data-division="gartenbau"] [data-region-follow] .map-pin:not(.map-pin--gartenbau),
body[data-division="baumdienst"] [data-region-follow] .map-pin:not(.map-pin--baumdienst),
body[data-division="gartenbau"] [data-region-follow] .map-legend span:has(.lg--baumdienst),
body[data-division="baumdienst"] [data-region-follow] .map-legend span:has(.lg--gartenbau) { display: none; }
.leaf-img--tall img { aspect-ratio: 3 / 4; height: auto; object-fit: cover; }
.leaf-img--tall { max-width: 480px; margin-inline: auto; }


/* Projekt Robinien: Baumliste mit Steckbrief */
.tree-lineup { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 24px; align-items: start; }
.tree-lineup__list { display: grid; gap: 6px; }
.tl-list__head { display: flex; justify-content: space-between; padding: 0 18px 6px 18px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.tl-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: center; width: 100%; padding: 14px 18px; border: 1px solid transparent; border-radius: 14px; background: transparent; color: var(--text); text-align: left; font: inherit; cursor: pointer; transition: background var(--t), border-color var(--t), box-shadow var(--t); }
.tl-row:hover { background: var(--surface); border-color: var(--line); }
.tl-row[aria-pressed="true"] { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-s, 0 2px 10px rgba(20,21,23,.06)), inset 3px 0 0 var(--accent); }
.tl-row:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.tl-row__num { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.tl-row[aria-pressed="true"] .tl-row__num { color: var(--accent-ink); }
.tl-row__main { display: grid; gap: 2px; min-width: 0; }
.tl-row__main strong { font-family: var(--font-display); font-size: 1.02rem; color: var(--ink); }
.tl-row__main small { font-size: var(--fs-xs); color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tl-row__bar { display: block; height: 3px; margin-top: 6px; border-radius: 2px; background: var(--line); overflow: hidden; }
.tl-row__bar i { display: block; height: 100%; width: calc(var(--h) / 20 * 100%); border-radius: 2px; background: var(--muted); opacity: .45; transition: background var(--t), opacity var(--t); }
.tl-row[aria-pressed="true"] .tl-row__bar i { background: var(--accent); opacity: 1; }
.tl-row__meta { text-align: right; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.tl-row__meta small { display: block; font-family: var(--font-body); font-weight: 500; font-size: var(--fs-xs); color: var(--muted); }
.tl-detail { position: sticky; top: 100px; padding: 30px 32px 26px; border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-m); }
.tl-detail__no { margin: 0; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.tl-detail__no span { display: block; font-family: var(--font-display); font-size: 3rem; line-height: 1; font-weight: 700; letter-spacing: -.02em; color: var(--accent); margin-bottom: 4px; }
.tl-detail h3 { margin: 10px 0 18px; font-size: var(--fs-h3); }
.tl-detail__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 0 18px; border-block: 1px solid var(--line); }
.tl-detail__stats div { padding: 14px 0 14px 16px; border-left: 1px solid var(--line); }
.tl-detail__stats div:first-child { padding-left: 0; border-left: 0; }
.tl-detail__stats dt { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.tl-detail__stats dd { margin: 4px 0 0; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.tl-detail > p:not(.tl-detail__no) { color: var(--text); }
@media (max-width: 900px) {
  .tree-lineup { grid-template-columns: 1fr; }
  .tl-detail { position: static; padding: 24px 22px 20px; }
  .tl-detail__stats dd { font-size: 1.05rem; }
}
.tree-lineup__list .tl-detail { margin: 0 0 8px; box-shadow: none; }

/* Referenzprojekt: Vorher / Nachher nebeneinander */
.compare-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.compare-pair figure { margin: 0; position: relative; border-radius: var(--r-l, 18px); overflow: hidden; box-shadow: var(--shadow-m); }
.compare-pair img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.compare-pair figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 12px; background: rgba(20, 21, 23, .72); color: #fff; font-size: var(--fs-xs); backdrop-filter: blur(6px); }
.compare-pair__tag { padding: 3px 9px; border-radius: 999px; background: rgba(255, 255, 255, .18); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.compare-pair__tag--after { background: var(--accent); color: #1C1E20; }
@media (max-width: 700px) { .compare-pair { grid-template-columns: 1fr; } }

/* Referenzprojekt: Kennzahlen */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.stat-tile { padding: 20px 18px; border-radius: var(--r-l, 18px); background: var(--surface); border: 1px solid var(--line); text-align: center; }
.stat-tile strong { display: block; font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.1; color: var(--accent-ink); white-space: nowrap; }
.stat-tile span { display: block; margin-top: 6px; font-size: var(--fs-xs); color: var(--muted); line-height: 1.4; }

/* Referenzprojekt: Technik zum Anklicken */
.hotspots__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.hotspots__tabs button { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font: inherit; font-family: var(--font-display); font-weight: 600; cursor: pointer; transition: background var(--t), border-color var(--t), color var(--t); }
.hotspots__tabs button .icon { width: 18px; height: 18px; color: var(--accent-ink); }
.hotspots__tabs button[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.hotspots__tabs button[aria-selected="true"] .icon { color: var(--accent); }
.hotspots__scene { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 20px; align-items: start; }
.hotspots__stage { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-m); background: #000; }
.hotspots__stage img { display: block; width: 100%; height: auto; }
.hs-dot { position: absolute; left: calc(var(--x) * 1%); top: calc(var(--y) * 1%); width: 34px; height: 34px; margin: -17px 0 0 -17px; padding: 0; border: 0; border-radius: 50%; background: #fff; color: #1C1E20; font: inherit; font-weight: 700; font-size: 14px; cursor: pointer; box-shadow: 0 4px 14px rgba(0, 0, 0, .35); transition: transform var(--t) var(--ease), background var(--t), color var(--t); }
.hs-dot::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .85); animation: hs-pulse 2.2s ease-out infinite; }
.hs-dot span { position: relative; }
.hs-dot:hover { transform: scale(1.1); }
.hs-dot[aria-pressed="true"] { background: var(--accent); color: #1C1E20; transform: scale(1.15); }
.hs-dot[aria-pressed="true"]::before { border-color: var(--accent); }
.hs-dot:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
@keyframes hs-pulse { 0% { transform: scale(.8); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hs-dot::before { animation: none; } }
.hotspots__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.hotspots__list li { position: relative; padding: 14px 16px 14px 52px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; transition: border-color var(--t), box-shadow var(--t); counter-increment: hs; }
.hotspots__list { counter-reset: hs; }
.hotspots__list li::before { content: counter(hs); position: absolute; left: 14px; top: 13px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-2); color: var(--ink); font-weight: 700; font-size: 13px; }
.hotspots__list strong { display: block; font-family: var(--font-display); color: var(--ink); }
.hotspots__list p { display: none; margin: 6px 0 0; color: var(--text); }
.hotspots__list li.is-active { border-color: var(--accent); box-shadow: var(--shadow-s, 0 2px 10px rgba(20,21,23,.06)); }
.hotspots__list li.is-active::before { background: var(--accent); color: #1C1E20; }
.hotspots__list li.is-active p { display: block; }
@media (max-width: 900px) { .hotspots__scene { grid-template-columns: 1fr; } .hs-dot { width: 30px; height: 30px; margin: -15px 0 0 -15px; font-size: 13px; } }

/* Referenzprojekt: Baustellentagebuch */
.diary { list-style: none; margin: 0; padding: 4px 2px 14px; display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 32px) / 3); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.diary__item { scroll-snap-align: start; border-radius: var(--r-l, 18px); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.diary__item img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.diary__item > div { padding: 16px 18px 18px; }
.diary__no { font-family: var(--font-display); font-weight: 700; color: var(--accent-ink); font-size: .95rem; }
.diary__item h3 { margin: 2px 0 6px; font-size: var(--fs-h4); }
.diary__item p { margin: 0; color: var(--text); font-size: .95rem; }
.diary__nav { display: flex; gap: 8px; }
.diary__btn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink); cursor: pointer; transition: border-color var(--t), background var(--t); }
.diary__btn:hover { border-color: var(--accent); background: var(--accent-soft); }
.diary__btn .icon { width: 20px; height: 20px; }
@media (max-width: 900px) { .diary { grid-auto-columns: calc((100% - 16px) / 2); } }
@media (max-width: 600px) { .diary { grid-auto-columns: 84%; } }

/* Referenzprojekt: Komponentenliste */
.parts { border-radius: var(--r-l, 18px); border: 1px solid var(--line); background: var(--surface); }
.parts summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; color: var(--ink); }
.parts summary::-webkit-details-marker { display: none; }
.parts summary span { display: inline-flex; align-items: center; gap: 10px; }
.parts summary .icon { width: 20px; height: 20px; color: var(--accent-ink); }
.parts summary small { font-family: var(--font-body); font-weight: 400; color: var(--muted); }
.parts[open] summary { border-bottom: 1px solid var(--line); }
.parts__body { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px 28px; padding: 20px 22px 22px; }
.parts__group h3 { margin: 0 0 6px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); }
.parts__group ul { margin: 0; padding-left: 18px; color: var(--text); font-size: .95rem; }
.parts__group li { margin-bottom: 4px; }
.hotspots__scene[hidden], .tl-detail[hidden] { display: none; }

/* Referenzprojekt: Platz der Ventilbox */
.boxplace { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 32px; align-items: center; }
.boxplace__photos { display: grid; grid-template-columns: 1.45fr 1fr; gap: 14px; align-items: end; }
.boxplace__photos figure { margin: 0; }
.boxplace__photos img { display: block; width: 100%; border-radius: var(--r-l, 18px); box-shadow: var(--shadow-m); object-fit: cover; }
.boxplace__photos figure:first-child img { aspect-ratio: 4 / 3; }
.boxplace__photos figure:last-child img { aspect-ratio: 3 / 4; }
.boxplace__photos figcaption { margin-top: 8px; font-size: var(--fs-xs); color: var(--muted); }
.boxplace__options { display: grid; gap: 10px; }
.boxplace__opt { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 18px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); }
.boxplace__opt.is-chosen { border-color: var(--accent); box-shadow: inset 3px 0 0 var(--accent); }
.boxplace__opt strong { font-family: var(--font-display); color: var(--ink); }
.boxplace__opt p { margin: 4px 0 0; color: var(--text); font-size: .95rem; }
.boxplace__lid { width: 44px; height: 32px; border-radius: 6px; margin-top: 2px; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .12), 0 2px 6px rgba(0, 0, 0, .2); background-image: repeating-linear-gradient(90deg, transparent 0 6px, rgba(255, 255, 255, .08) 6px 8px); }
.boxplace__lid--black { background-color: #26282A; }
.boxplace__lid--green { background-color: #4F8A3A; }
.boxplace__badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; padding: 3px 10px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-ink); font-size: var(--fs-xs); font-weight: 700; }
.boxplace__badge .icon { width: 14px; height: 14px; }
@media (max-width: 900px) { .boxplace { grid-template-columns: 1fr; } }

/* Hervorgehobene Referenz auf den Projektübersichten */
.ref-feature { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); border-radius: var(--r-xl); overflow: hidden; background: #1C1E20; color: #C9CBCD; box-shadow: var(--shadow-l, 0 20px 50px rgba(20, 21, 23, .22)); --ink: #F6F8F3; }
.ref-feature__media { position: relative; display: block; min-height: 100%; overflow: hidden; }
.ref-feature__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.ref-feature:hover .ref-feature__media > img { transform: scale(1.04); }
.ref-feature__badge { position: absolute; left: 18px; top: 18px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px; background: var(--accent); color: #1C1E20; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.ref-feature__badge .icon { width: 14px; height: 14px; }
.ref-feature__thumbs { position: absolute; left: 18px; bottom: 18px; display: flex; gap: 8px; }
.ref-feature__thumbs img { width: 76px; height: 58px; object-fit: cover; border-radius: 10px; border: 2px solid rgba(255, 255, 255, .85); box-shadow: 0 6px 16px rgba(0, 0, 0, .35); }
.ref-feature__body { padding: clamp(24px, 4vw, 44px); display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.ref-feature__meta { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 8px; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em; color: #9EA1A3; }
.ref-feature__meta .icon { width: 14px; height: 14px; color: var(--accent); }
.ref-feature h3 { margin: 0 0 10px; font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.2; }
.ref-feature h3 a { color: #F6F8F3; text-decoration: none; }
.ref-feature h3 a:hover { color: var(--accent); }
.ref-feature__lead { margin: 0 0 20px; line-height: 1.6; }
.ref-feature__facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); width: 100%; margin-bottom: 20px; border-block: 1px solid rgba(246, 248, 243, .14); }
.ref-feature__facts div { padding: 12px 0 12px 14px; border-left: 1px solid rgba(246, 248, 243, .14); }
.ref-feature__facts div:first-child { padding-left: 0; border-left: 0; }
.ref-feature__facts strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--accent); white-space: nowrap; }
.ref-feature__facts span { font-size: var(--fs-xs); color: #9EA1A3; }
.ref-feature__label { margin: 0 0 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9EA1A3; }
.ref-feature__inside { list-style: none; margin: 0 0 24px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; width: 100%; }
.ref-feature__inside li { display: flex; align-items: center; gap: 8px; font-size: .95rem; color: #E4E5E6; }
.ref-feature__inside .icon { flex: none; width: 18px; height: 18px; color: var(--accent); }
.ref-feature .btn { margin-top: auto; }
.ref-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ref-feature--compact { grid-template-columns: 1fr; }
.ref-feature--compact .ref-feature__media { aspect-ratio: 16 / 9; min-height: 0; }
.ref-feature--compact .ref-feature__facts strong { font-size: 1.05rem; }
@media (max-width: 1000px) { .ref-features { grid-template-columns: 1fr; } }
@media (max-width: 860px) { .ref-feature { grid-template-columns: 1fr; } .ref-feature__media { aspect-ratio: 4 / 3; min-height: 0; } }
@media (max-width: 520px) { .ref-feature__facts { grid-template-columns: 1fr 1fr; } .ref-feature__facts div:nth-child(3) { padding-left: 0; border-left: 0; } .ref-feature__inside { grid-template-columns: 1fr; } .ref-feature__thumbs img { width: 60px; height: 46px; } }
/* In der Gesamtübersicht folgt die Referenz dem Bereichsfilter */
body[data-division="gartenbau"] .ref-features .ref-feature[data-division="baumdienst"],
body[data-division="baumdienst"] .ref-features .ref-feature[data-division="gartenbau"] { display: none; }
body[data-division="gartenbau"] .ref-features, body[data-division="baumdienst"] .ref-features { grid-template-columns: 1fr; }
body[data-division="gartenbau"] .ref-features .ref-feature--compact, body[data-division="baumdienst"] .ref-features .ref-feature--compact { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
body[data-division="gartenbau"] .ref-features .ref-feature--compact .ref-feature__media, body[data-division="baumdienst"] .ref-features .ref-feature--compact .ref-feature__media { aspect-ratio: auto; min-height: 100%; }

/* Projektstatus: Bauabschnitt fertig, Fortsetzung folgt */
.status-note { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; padding: 16px 20px; border-radius: 16px; border: 1px dashed var(--accent); background: var(--accent-soft); }
.status-note p { margin: 0; flex: 1 1 360px; color: var(--text); }
.status-note strong { color: var(--ink); }
.status-note__badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--accent); color: #1C1E20; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.status-note__badge .icon { width: 14px; height: 14px; }

/* Dienstleistungen als dritter Bereich in Karte und Projektfilter */
.region__map .map-pin--dienstleistungen .map-pin__dot, .region__map .map-pin--dienstleistungen .map-pin__halo { fill: var(--ci-blue); }
.map-legend .lg--dienstleistungen, .region__list .lg--dienstleistungen { background: var(--ci-blue); }
body[data-division="dienstleistungen"] [data-region-follow] .map-pin:not(.map-pin--dienstleistungen),
body[data-division="gartenbau"] [data-region-follow] .map-legend span:has(.lg--dienstleistungen),
body[data-division="baumdienst"] [data-region-follow] .map-legend span:has(.lg--dienstleistungen),
body[data-division="dienstleistungen"] [data-region-follow] .map-legend span:has(.lg--gartenbau),
body[data-division="dienstleistungen"] [data-region-follow] .map-legend span:has(.lg--baumdienst) { display: none; }
body[data-division="dienstleistungen"] .ref-features { display: none; }
/* Klickpunkte mit Hochformat-Foto */
.hotspots__scene--portrait { grid-template-columns: minmax(0, .75fr) minmax(0, 1fr); }
.hotspots__scene--portrait .hotspots__stage { max-width: 460px; }
@media (max-width: 900px) { .hotspots__scene--portrait { grid-template-columns: 1fr; } .hotspots__scene--portrait .hotspots__stage { max-width: none; } }

/* Fällmoment Bild für Bild: Bildfolge mit Regler, Stationen darunter */
.fall-scrub { display: grid; gap: 18px; }
.fall-scrub__stage { position: relative; overflow: hidden; border-radius: var(--r-leaf-l); box-shadow: var(--shadow-m); background: #141517; aspect-ratio: 16 / 9; }
.fall-scrub__img, .fall-scrub__img2 { width: 100%; height: 100%; object-fit: cover; }
.fall-scrub__time { position: absolute; left: 16px; top: 16px; font-variant-numeric: tabular-nums; }
.fall-scrub__play { position: absolute; right: 16px; bottom: 16px; width: 56px; height: 56px; border: 0; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--on-accent, #fff); cursor: pointer; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28); transition: transform 0.2s; }
.fall-scrub__play:hover, .fall-scrub__play:focus-visible { transform: scale(1.06); }
.fall-scrub__play .icon { width: 22px; height: 22px; }
.fall-scrub__play .icon--pause, .fall-scrub.is-playing .fall-scrub__play .icon--play { display: none; }
.fall-scrub.is-playing .fall-scrub__play .icon--pause { display: block; }
.fall-scrub__bar { position: relative; height: 28px; }
.fall-scrub__track { position: absolute; left: 0; right: 0; top: 12px; height: 4px; border-radius: 4px; background: var(--line-strong); }
.fall-scrub__fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; border-radius: 4px; background: var(--accent); }
.fall-scrub__bar input { position: absolute; inset: 0; width: 100%; margin: 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: grab; }
.fall-scrub__bar input:active { cursor: grabbing; }
.fall-scrub__bar input::-webkit-slider-runnable-track { height: 28px; background: transparent; }
.fall-scrub__bar input::-moz-range-track { height: 28px; background: transparent; }
.fall-scrub__bar input::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--surface); border: 3px solid var(--accent); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25); }
.fall-scrub__bar input::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--surface); border: 3px solid var(--accent); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25); }
.fall-scrub__bar input:focus-visible { outline: none; }
.fall-scrub__bar input:focus-visible::-webkit-slider-thumb { outline: 3px solid var(--accent-glow, rgba(217, 108, 31, 0.4)); outline-offset: 2px; }
.fall-scrub__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.fall-scrub__steps li { cursor: pointer; padding: 12px 14px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); transition: border-color 0.2s, background 0.2s; }
.fall-scrub__steps li strong { display: block; font-family: var(--font-display); font-size: var(--fs-s); }
.fall-scrub__steps li span { display: block; margin-top: 4px; font-size: var(--fs-xs); color: var(--muted); line-height: 1.45; }
.fall-scrub__steps li b { color: var(--accent-ink); margin-right: 6px; }
.fall-scrub__steps li.is-active { border-color: var(--accent); background: var(--accent-soft, var(--surface)); }
@media (max-width: 760px) { .fall-scrub__steps { grid-template-columns: 1fr 1fr; } .fall-scrub__play { width: 46px; height: 46px; } }

/* Zwei Bäume nebeneinander vergleichen */
.twin { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.twin__card { display: flex; flex-direction: column; border-radius: var(--r-leaf-l); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s, none); }
.twin__card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.twin__body { padding: 22px 24px 24px; }
.twin__body h3 { margin: 6px 0 8px; }
.twin__tag { display: inline-flex; align-items: center; gap: 8px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }
.twin__facts { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 14px 0 16px; font-size: var(--fs-s); }
.twin__facts dt { color: var(--muted); }
.twin__facts dd { margin: 0; font-weight: 600; }
@media (max-width: 760px) { .twin { grid-template-columns: 1fr; } }

/* Film mit Vorschaubild und Startknopf */
.film { position: relative; overflow: hidden; border-radius: var(--r-leaf-l); box-shadow: var(--shadow-m); background: #141517; aspect-ratio: 16 / 9; }
.film video { width: 100%; height: 100%; object-fit: cover; }
/* Zwei Blickwinkel nebeneinander, derselbe Regler */
.fall-scrub__stages { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fall-scrub__view { position: absolute; left: 16px; bottom: 16px; }
@media (max-width: 900px) { .fall-scrub__stages { grid-template-columns: 1fr; } }

/* Pflegekalender-Vorschau: links Themen wählen, rechts die nächsten Termine wie auf dem Handy */
.care-peek { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(24px, 4vw, 52px); border-radius: var(--r-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s); position: relative; overflow: hidden; }
.care-peek::before { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(closest-side, var(--accent-soft, rgba(141, 192, 67, 0.16)), transparent); pointer-events: none; }
.care-peek__text h2 { margin: 6px 0 12px; }
.care-peek__text .lead { margin-bottom: 18px; }
.care-peek__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.care-peek__chips .option--chip label { padding: 8px 36px 8px 12px; font-size: var(--fs-s); }
.care-peek__chips .option--chip label .icon { width: 20px; height: 20px; }
.care-peek__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 22px; }
.care-peek__cta small { color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.care-peek__cta small .icon { width: 14px; height: 14px; }
.care-peek__phone { position: relative; z-index: 1; justify-self: center; width: 100%; max-width: 420px; padding: 22px 16px 18px; border-radius: 34px; background: linear-gradient(160deg, #26292c, #141517); color: #fff; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.14), 0 0 0 7px rgba(255, 255, 255, 0.05); }
.care-peek__bar { display: flex; justify-content: space-between; align-items: center; padding: 0 8px 14px; font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.7); }
.care-peek__bar strong { font-family: var(--font-display); font-size: var(--fs-s); color: #fff; display: inline-flex; align-items: center; gap: 8px; }
.care-peek__bar .icon { width: 16px; height: 16px; }
.care-peek__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.care-peek__item { --tile: var(--ci-green); display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: start; padding: 12px; border-radius: 18px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.06); animation: peekIn 0.45s ease both; animation-delay: calc(var(--i, 0) * 80ms); }
.care-peek__item[data-division="baumdienst"] { --tile: var(--ci-orange); }
.care-peek__item[data-division="dienstleistungen"] { --tile: var(--ci-blue); }
.care-peek__date { display: grid; place-items: center; align-content: center; width: 52px; height: 52px; border-radius: 14px 14px 14px 4px; background: var(--tile); color: #111; }
.care-peek__date strong { font-family: var(--font-display); font-size: 1.15rem; line-height: 1; }
.care-peek__date small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.care-peek__body { display: grid; gap: 2px; min-width: 0; }
.care-peek__topic { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.62); }
.care-peek__topic .icon { width: 13px; height: 13px; color: var(--tile); }
.care-peek__body strong { font-family: var(--font-display); font-size: var(--fs-s); line-height: 1.3; }
.care-peek__body > span:last-child { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.72); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.care-peek__empty { padding: 28px 12px; text-align: center; color: rgba(255, 255, 255, 0.7); font-size: var(--fs-s); }
.care-peek__more { margin: 12px 8px 0; font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.6); text-align: center; }
@keyframes peekIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .care-peek__item { animation: none; } }
@media (max-width: 900px) { .care-peek { grid-template-columns: minmax(0, 1fr); } .care-peek > * { min-width: 0; } }
/* Pflegekalender: Datumskachel in der Farbe des Bereichs */
.care__item[data-division] .care__date { background: color-mix(in srgb, var(--tile) 22%, var(--surface)); color: var(--text); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tile) 55%, transparent); }
.care__item[data-division="gartenbau"] { --tile: var(--ci-green); }
.care__item[data-division="baumdienst"] { --tile: var(--ci-orange); }
.care__item[data-division="dienstleistungen"] { --tile: var(--ci-blue); }
.care__item[data-division] .care__topic .icon { color: var(--tile); }

/* Preisstaffel (Paketkarte und Winterdienst-Rechner) */
.price-tiers { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.price-tiers li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 8px 12px; border-radius: 10px; background: var(--bg-2); font-size: var(--fs-s); transition: background 0.2s, box-shadow 0.2s; }
.price-tiers li strong { font-family: var(--font-display); font-variant-numeric: tabular-nums; }
.price-tiers li.is-active { background: var(--accent-soft); box-shadow: inset 0 0 0 1.5px var(--accent); }
.price-tiers--inline { grid-template-columns: repeat(3, 1fr); margin-top: 18px; }
.price-tiers--inline li { flex-direction: column; align-items: flex-start; gap: 2px; }

/* Winterdienst-Rechner */
.wd-calc { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: 0; margin-top: clamp(32px, 5vw, 56px); border-radius: var(--r-xl); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s); }
.wd-calc__input { padding: clamp(22px, 4vw, 44px); }
.wd-calc__input h3 { font-size: var(--fs-h3); margin: 6px 0 8px; }
.wd-calc__label { display: block; margin-top: 18px; font-weight: 600; font-size: var(--fs-s); }
.wd-calc__area { display: flex; align-items: baseline; gap: 10px; margin: 6px 0 10px; }
.wd-calc__area input { width: 160px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; padding: 6px 14px; border-radius: 14px; border: 1.5px solid var(--line-strong); background: var(--bg); color: var(--ink); }
.wd-calc__area input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.wd-calc__area span { font-size: var(--fs-l); color: var(--muted); }
.wd-calc input[type="range"] { width: 100%; accent-color: var(--accent); margin: 4px 0 10px; }
.wd-calc__result { display: flex; flex-direction: column; gap: 6px; padding: clamp(22px, 4vw, 44px); background: linear-gradient(160deg, #1f2426, #121416); color: #fff; }
.wd-calc__kicker { margin: 0; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ci-blue); }
.wd-calc__price { margin: 0; font-family: var(--font-display); line-height: 1; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.wd-calc__price strong { font-size: clamp(2.4rem, 2rem + 1.6vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.wd-calc__price small { font-family: var(--font-body); color: rgba(255, 255, 255, 0.65); }
.wd-calc__gross { margin: 0 0 12px; color: rgba(255, 255, 255, 0.75); font-size: var(--fs-s); }
.wd-calc__facts { display: grid; gap: 0; margin: 0 0 18px; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.wd-calc__facts div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-size: var(--fs-s); }
.wd-calc__facts dt { color: rgba(255, 255, 255, 0.7); }
.wd-calc__facts dd { margin: 0; font-weight: 700; font-variant-numeric: tabular-nums; }
.wd-calc__note { margin: 10px 0 0; color: rgba(255, 255, 255, 0.6); }
.wd-calc .btn { margin-top: auto; }
@media (max-width: 860px) { .wd-calc { grid-template-columns: 1fr; } .price-tiers--inline { grid-template-columns: 1fr; } .price-tiers--inline li { flex-direction: row; align-items: baseline; } }

/* Materialbilanz: was rausging, was reinkam, was blieb */
.mbal { display: grid; grid-template-columns: 1fr 1fr 0.8fr; gap: 18px; }
.mbal__col { padding: clamp(18px, 3vw, 28px); border-radius: var(--r-leaf-l); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s); display: flex; flex-direction: column; gap: 14px; }
.mbal__col--out { --bar: var(--ci-anthracite); }
.mbal__col--in { --bar: var(--accent); }
.mbal__col--stay { --bar: var(--ci-grey); background: var(--bg-2); }
.mbal__head { display: flex; align-items: center; gap: 10px; }
.mbal__head .icon { width: 22px; height: 22px; color: var(--bar); }
.mbal__col--stay .mbal__head .icon { color: var(--accent-ink); }
.mbal__head h3 { margin: 0; font-size: var(--fs-h4); }
.mbal__total { margin: 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 1.6rem + 1.4vw, 2.8rem); line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.mbal__total small { font-size: var(--fs-s); font-weight: 600; color: var(--muted); font-family: var(--font-body); margin-left: 6px; }
.mbal__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mbal__row { display: grid; gap: 5px; }
.mbal__label { display: flex; justify-content: space-between; gap: 10px; font-size: var(--fs-s); }
.mbal__label strong { font-variant-numeric: tabular-nums; white-space: nowrap; }
.mbal__label small { display: block; color: var(--muted); font-size: var(--fs-xs); }
.mbal__bar { height: 10px; border-radius: 6px; background: var(--bg-2); overflow: hidden; }
.mbal__col--stay .mbal__bar { background: var(--surface); }
.mbal__bar i { display: block; height: 100%; width: 0; border-radius: 6px; background: var(--bar); transition: width 1.1s cubic-bezier(.2, .7, .2, 1); }
.mbal.is-visible .mbal__bar i, .mbal:not(.reveal) .mbal__bar i { width: var(--w); }
.mbal .mbal__row:nth-child(2) .mbal__bar i { transition-delay: .12s; }
.mbal .mbal__row:nth-child(3) .mbal__bar i { transition-delay: .24s; }
.mbal .mbal__row:nth-child(4) .mbal__bar i { transition-delay: .36s; }
.mbal .mbal__row:nth-child(5) .mbal__bar i { transition-delay: .48s; }
.mbal__stay { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mbal__stay li { display: flex; gap: 12px; align-items: flex-start; font-size: var(--fs-s); }
.mbal__stay .icon { flex: none; width: 20px; height: 20px; margin-top: 2px; color: var(--accent-ink); }
.mbal__stay small { display: block; color: var(--muted); font-size: var(--fs-xs); }
.mbal__note { margin: 14px 0 0; font-size: var(--fs-xs); color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .mbal__bar i { transition: none; } }
@media (max-width: 980px) { .mbal { grid-template-columns: 1fr; } }

/* Startseite: Unterzeile mittig zwischen Slogan und Einleitung.
   Der Abstand richtet sich nach der Slogan-Größe, weil die Unterlänge von "g" in "Bewegen" in den Zwischenraum ragt. */
.home-hero { --h1fs: clamp(2.8rem, 1rem + 5.2vw, 5.6rem); }
.home-hero h1 { font-size: var(--h1fs); margin-bottom: calc(var(--h1fs) * 0.14); }
.home-hero h1 .h1-sub { margin-top: calc(var(--h1fs) * 0.33); }
.home-hero h1 + .home-hero__lead { margin-top: 0; }
@media (max-width: 600px) {
  .home-hero { --h1fs: clamp(2.4rem, 11vw, 2.9rem); }
  .home-hero h1 { font-size: var(--h1fs); margin-bottom: calc(var(--h1fs) * 0.34); }
  .home-hero h1 .h1-sub { margin-top: calc(var(--h1fs) * 0.40); }
}

/* Startseite ab Desktop: gemeinsames Raster. Die Kacheln reichen genau von "Gestalten" bis zur Unterkante der Knöpfe. */
@media (min-width: 980px) {
  .home-hero__grid { grid-template-columns: 1.15fr 0.85fr; grid-template-rows: auto auto auto auto auto; row-gap: 0; align-items: start; }
  .home-hero__grid > div:first-child { display: contents; }
  .home-hero__grid > div:first-child > * { grid-column: 1; }
  .home-hero__grid > div:first-child > .eyebrow { grid-row: 1; justify-self: start; }
  .home-hero__grid > div:first-child > h1 { grid-row: 2; margin-top: 0; }
  .home-hero__grid > div:first-child > .home-hero__lead { grid-row: 3; margin-bottom: 0; }
  .home-hero__grid > div:first-child > .home-hero__actions { grid-row: 4; }
  .home-hero__grid > div:first-child > .trust-row { grid-row: 5; }
  .hero-tiles { grid-column: 2; grid-row: 2 / 5; align-self: stretch; max-width: none; justify-self: stretch; margin-top: calc(var(--h1fs) * var(--cap-offset, 0.1)); contain: size; display: flex; flex-direction: column; }
  .hero-tiles .division-grid { flex: 1; grid-template-rows: 1fr 1fr; }
  .hero-tiles .division-card { aspect-ratio: auto; min-height: 0; }
}
@media (min-width: 980px) {
  .hero-tiles { display: contents; contain: none; margin: 0; }
  .hero-tiles .division-grid { grid-column: 2; grid-row: 2 / 5; align-self: stretch; contain: size; margin-top: calc(var(--h1fs) * 0.15); }
  .hero-tiles .hero-strip { grid-column: 2; grid-row: 5; margin-top: 26px; align-self: start; }
  .home-hero h1 { margin-bottom: calc(var(--h1fs) * 0.14); }
  .home-hero h1 .h1-sub { margin-top: calc(var(--h1fs) * 0.33); }
}
/* Kachelblock inkl. Terminleiste: oben auf "Gestalten", Unterkante der Terminleiste auf Unterkante der Knöpfe */
@media (min-width: 980px) {
  .hero-tiles { display: flex; flex-direction: column; grid-column: 2; grid-row: 2 / 5; align-self: stretch; contain: size; margin-top: calc(var(--h1fs) * 0.15); }
  .hero-tiles .division-grid { grid-column: auto; grid-row: auto; contain: none; margin-top: 0; flex: 1 1 0; min-height: 0; grid-template-rows: 1fr 1fr; }
  .hero-tiles .hero-strip { grid-column: auto; grid-row: auto; margin-top: 12px; flex: none; }
}

/* Querschnitt Schicht für Schicht: links der Schnitt, rechts Foto und Erklärung */
.xsec { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.xsec__cut { position: relative; padding: clamp(16px, 2.5vw, 26px); border-radius: var(--r-leaf-l); background: radial-gradient(120% 90% at 50% 0%, #FFFFFF 0%, #F1F3EE 70%); border: 1px solid var(--line); box-shadow: var(--shadow-m); }
.xsec__grid { display: grid; grid-template-columns: 58px minmax(0, 1fr) 54px; grid-template-rows: 64px 34px 24px 60px 92px 40px; column-gap: 0; }
.xsec__part { all: unset; box-sizing: border-box; cursor: pointer; position: relative; display: flex; align-items: center; justify-content: center; font: 700 12px/1.2 var(--font-body); color: #1C1E20; transition: filter .2s, box-shadow .2s; }
.xsec__part:hover { filter: brightness(1.06); }
.xsec__part:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; z-index: 3; }
.xsec__part.is-active { box-shadow: inset 0 0 0 3px var(--accent), 0 0 0 3px var(--accent-soft, rgba(141,192,67,.3)); z-index: 2; }
.xsec__part .xsec__no { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.2); font-size: 12px; }
.xsec__part.is-active .xsec__no { background: var(--accent); color: #fff; }
.xsec__sky { grid-column: 2; grid-row: 1; }
.xsec__wall { grid-column: 1; grid-row: 1 / 6; background: repeating-linear-gradient(0deg, #E9E7E2 0 16px, #DAD7D0 16px 17px), #E9E7E2; border-right: 2px solid #C9C6BF; }
.xsec__wall::after { content: ""; position: absolute; right: 0; bottom: 0; width: 14px; height: 62%; background: #1C1E20; border-radius: 3px 0 0 0; opacity: .92; }
.xsec__wall .xsec__no { position: relative; z-index: 1; margin-right: 14px; }
.xsec__tile { grid-column: 2; grid-row: 2; background: linear-gradient(180deg, #9DA2A6, #7E8388); border-top: 1px solid #B8BCC0; }
.xsec__tile::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #5E6266; }
.xsec__slurry { grid-column: 2; grid-row: 3; background: #3F4346; }
.xsec__slurry .xsec__no { width: 20px; height: 20px; font-size: 11px; }
.xsec__tile, .xsec__slurry, .xsec__mortar, .xsec__base { justify-content: flex-start; padding-left: 42%; }
.xsec__mortar { grid-column: 2; grid-row: 4; background: radial-gradient(circle at 20% 30%, #B7B2A6 0 2px, transparent 3px) 0 0/14px 12px, radial-gradient(circle at 70% 70%, #A39E92 0 2px, transparent 3px) 0 0/12px 14px, #CBC6BA; }
.xsec__base { grid-column: 2; grid-row: 5; background: radial-gradient(circle at 30% 40%, #8D8577 0 5px, transparent 6px) 0 0/26px 22px, radial-gradient(circle at 70% 70%, #A69E8F 0 4px, transparent 5px) 0 0/22px 26px, #BDB4A4; }
.xsec__ground { grid-column: 1 / 4; grid-row: 6; background: repeating-linear-gradient(135deg, #8B6E52 0 6px, #7C6149 6px 12px); pointer-events: none; border-radius: 0 0 10px 10px; }
.xsec__pali { grid-column: 3; grid-row: 1 / 7; margin-top: 50px; background: linear-gradient(90deg, #2C2F31, #45494C 60%, #2C2F31); border-radius: 4px 4px 0 0; }
.xsec__pali::after { content: ""; position: absolute; left: -6px; right: -6px; bottom: 0; height: 34px; background: #9C9C98; border-radius: 3px; z-index: -1; }
.xsec__label { grid-column: 2; grid-row: 1; align-self: end; justify-self: center; margin-bottom: 6px; font-size: var(--fs-xs); color: var(--muted); }
.xsec__legend { display: flex; justify-content: space-between; margin-top: 10px; font-size: var(--fs-xs); color: var(--muted); }
.xsec__panel { border-radius: var(--r-leaf-l); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-s); }
.xsec__panel[hidden] { display: none; }
.xsec__panel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.xsec__panel div { padding: 18px 22px 22px; }
.xsec__panel h3 { margin: 4px 0 8px; }
.xsec__panel p { margin: 0; }
.xsec__panel small { display: inline-block; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-ink); }
@media (max-width: 860px) { .xsec { grid-template-columns: 1fr; } }

/* Cookie-Hinweis (nur aktiv, wenn googleAdsId gesetzt ist) */
.consent { position: fixed; z-index: 210; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); max-height: calc(100dvh - 32px); overflow-y: auto; overscroll-behavior: contain; max-width: 560px; margin-inline: auto; padding: 18px 20px; border-radius: 18px; background: var(--surface); color: var(--text); border: 1px solid var(--line); box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.35); font-size: var(--fs-s); }
.consent p { margin: 0 0 14px; }
.consent__btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.consent__btns .btn { min-height: 42px; padding: 9px 18px; }
/* Cookie-Hinweis liegt über der Schnellkontakt-Leiste; solange er offen ist, fährt die Leiste weg */
@media (max-width: 899px) {
  .consent { left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); padding: 16px; }
  .consent__btns .btn { flex: 1 1 140px; }
  body.has-consent .action-bar { transform: translateY(140%); pointer-events: none; }
}
/* Handy: nichts darf die Seite seitlich verbreitern */
@media (max-width: 899px) {
  .map-legend { right: 14px; flex-wrap: wrap; gap: 6px 12px; border-radius: 14px; }
  .care-tile { min-width: 0; }
}
html { overflow-x: clip; }
/* Lange deutsche Wörter in Überschriften (z. B. "Doppelstabmattenzaun") auf dem Handy trennen statt überlaufen */
@media (max-width: 599px) { h1, h2, h3 { overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; } }
/* Sehr kleine Handys (320 px): Raster dürfen nicht breiter als der Bildschirm werden */
@media (max-width: 899px) { .region { grid-template-columns: minmax(0, 1fr); } }
.dl-card { grid-template-columns: 110px minmax(0, 1fr); }
@media (max-width: 520px) { .dl-card { grid-template-columns: 84px minmax(0, 1fr); } }
@media (max-width: 380px) {
  .region__form { flex-wrap: wrap; }
  .region__form > * { min-width: 0; flex: 1 1 100%; }
  .care-tile { grid-template-columns: auto minmax(0, 1fr); }
  .care-tile__count { grid-column: 2; grid-row: auto; justify-self: start; }
}
.dl-card__body { grid-template-columns: minmax(0, 1fr); min-width: 0; overflow-wrap: break-word; hyphens: auto; }
@media (max-width: 380px) {
  .btn { white-space: normal; max-width: 100%; text-align: center; }
  .swoosh { display: inline; }
}
/* Startseite: Kontaktleiste ausblenden, solange die Leistungskacheln sichtbar sind */
.action-bar.is-hero { transform: translateY(140%); pointer-events: none; }
/* Handy: Startbildschirm passt sich der Bildschirmhöhe an. Hohe Handys behalten das normale Layout,
   niedrige werden stufenweise kompakter, damit alle vier Leistungskacheln ohne Scrollen sichtbar sind. */
@media (max-width: 600px) and (max-height: 689px) {
  .home-hero .eyebrow { font-size: 0.66rem; letter-spacing: 0.1em; white-space: nowrap; margin-bottom: 8px; }
  .home-hero__grid { gap: 12px; }
  .hero-tiles { margin-top: 0; }
  .hero-tiles .division-grid { gap: 10px; }
  .hero-tiles .division-card { min-height: 110px; padding: 11px 12px; }
  .hero-tiles .hero-strip { margin-top: 10px; }
}
@media (max-width: 600px) and (max-height: 619px) {
  .home-hero { --h1fs: clamp(2.05rem, 9.4vw, 2.6rem); }
  .hero-tiles .division-card { min-height: 98px; padding: 10px 12px; }
}
/* Pflegehinweis-Kacheln: lange Wörter (z. B. "Verkehrssicherungspflicht") trennen, auf schmalen Handys Anzahl unter den Text */
.care-tile__body { min-width: 0; }
.care-tile__body span { overflow-wrap: break-word; hyphens: auto; -webkit-hyphens: auto; }
@media (max-width: 480px) {
  .care-tile { grid-template-columns: 44px minmax(0, 1fr) 22px; gap: 4px 12px; padding: 16px; }
  .care-tile .card__icon { width: 44px; height: 44px; grid-row: 1 / 3; }
  .care-tile__body { grid-column: 2; grid-row: 1; }
  .care-tile__count { grid-column: 2; grid-row: 2; justify-self: start; }
  .care-tile__arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }
}
