/* =========================================================
   Oepen Gartenpflege & Gartengestaltung
   Design-System  ·  erstellt von revota
   ========================================================= */

:root {
  /* Markenfarben */
  --green-900: #11241a;   /* fast schwarz, dunkle Sektionen */
  --green-800: #173322;
  --green-700: #1f4630;
  --green-600: #2c6b40;   /* Primärgrün */
  --green-500: #3a8350;
  --green-300: #9ec3a6;
  --green-100: #e7efe6;   /* heller Grünschimmer */

  --bone:      #f6f4ec;   /* Seitenhintergrund, warmes Off-White */
  --bone-2:    #efebe0;   /* alternative Sektion */
  --card:      #ffffff;

  --ink:       #1b241d;   /* Fließtext */
  --ink-soft:  #5a665c;   /* sekundärer Text */
  --line:      #e4e0d3;   /* Haarlinien */
  --line-dark: rgba(255,255,255,.14);

  --gold:      #b78f3e;   /* einziger warmer Akzent */
  --gold-soft: #d9c187;

  /* Form */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Schatten */
  --shadow-sm: 0 1px 2px rgba(17,36,26,.06), 0 2px 8px rgba(17,36,26,.05);
  --shadow:    0 10px 30px -12px rgba(17,36,26,.22);
  --shadow-lg: 0 30px 60px -24px rgba(17,36,26,.34);

  /* Schrift */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 17.5px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
/* Icons sind quadratisch (viewBox 24x24): Höhe an Breite koppeln, verhindert
   den Fallback auf die 150px-Standardhöhe, wenn nur die Breite gesetzt ist. */
svg { aspect-ratio: 1 / 1; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
[id] { scroll-margin-top: 92px; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 50%; transform: translateX(-50%); top: 10px; z-index: 200; }
body.menu-open { overflow: hidden; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.06; letter-spacing: -.015em; color: var(--green-900); }
h1 { font-size: clamp(2.6rem, 6.4vw, 5.1rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.7rem); letter-spacing: -.01em; }
.serif-italic { font-style: italic; font-weight: 500; }
p { text-wrap: pretty; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 148px); }
.section--tight { padding-block: clamp(54px, 8vw, 96px); }
.bg-bone-2 { background: var(--bone-2); }
.bg-dark { background: var(--green-900); color: #e9efe7; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }

/* Sektionskopf */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-600);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block; }
.bg-dark .eyebrow { color: var(--gold-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 18px; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--ink-soft); }
.bg-dark .lead { color: #c2d0c4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 1rem 1.7rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: linear-gradient(180deg, var(--green-600), var(--green-700)); color: #fff; box-shadow: 0 10px 24px -10px rgba(31,70,48,.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(31,70,48,.75); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn--ghost:hover { background: #fff; color: var(--green-800); border-color: #fff; transform: translateY(-2px); }
.btn--dark { background: var(--green-900); color: #fff; }
.btn--dark:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--outline { border: 1.5px solid var(--line); color: var(--green-800); background: var(--card); }
.btn--outline:hover { border-color: var(--green-600); color: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--wa { background: #25d366; color: #07271a; }
.btn--wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 600; color: var(--green-700); }
.link-arrow svg { width: 1.1em; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* =========================================================
   Header / Navigation
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding-block: 18px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header.is-scrolled { background: rgba(246,244,236,.9); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-block: 7px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: auto; object-fit: contain; transition: width .35s var(--ease); }
.header.is-scrolled .brand__mark { width: 34px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; color: #fff; letter-spacing: -.01em; transition: color .35s var(--ease); }
.brand__tag { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.82); font-weight: 600; margin-top: 3px; transition: color .35s var(--ease); }
.header.is-scrolled .brand__name { color: var(--green-900); }
.header.is-scrolled .brand__tag { color: var(--green-600); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-weight: 500; font-size: .96rem; color: rgba(255,255,255,.9); position: relative; padding-block: 4px; white-space: nowrap; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.header.is-scrolled .nav__links a { color: var(--green-800); }

.header__cta { display: flex; align-items: center; gap: 16px; }
.header__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #fff; white-space: nowrap; }
.nav { gap: 28px; }
.nav__links { gap: 26px; }
.header__phone svg { width: 18px; color: var(--gold-soft); }
.header.is-scrolled .header__phone { color: var(--green-900); }
.header.is-scrolled .header__phone svg { color: var(--green-600); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); }
.header.is-scrolled .nav-toggle { background: rgba(27,36,29,.06); border-color: var(--line); }
.nav-toggle span { width: 22px; height: 2px; background: #fff; transition: .3s var(--ease); }
.header.is-scrolled .nav-toggle span { background: var(--green-900); }

/* Mobile-Menü */
.mobile-menu { position: fixed; inset: 0; z-index: 70; background: var(--green-900); color: #fff; padding: 26px var(--gutter); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden; }
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-menu__close { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.1); font-size: 1.6rem; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__links a { font-family: var(--serif); font-size: 1.9rem; color: #fff; padding-block: 10px; border-bottom: 1px solid var(--line-dark); }
.mobile-menu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 24px; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,26,17,.62) 0%, rgba(11,26,17,.40) 34%, rgba(11,26,17,.52) 68%, rgba(8,20,13,.93) 100%),
    linear-gradient(90deg, rgba(8,20,13,.66) 0%, rgba(8,20,13,0) 60%);
}
.hero__inner { padding-block: clamp(130px, 18vh, 220px) clamp(56px, 8vh, 96px); max-width: 880px; }
.hero__eyebrow { color: var(--gold-soft); font-weight: 600; letter-spacing: .16em; text-transform: uppercase; font-size: clamp(.72rem,1.4vw,.84rem); margin-bottom: 22px; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); margin-bottom: 24px; }
.hero__sub { font-size: clamp(1.08rem, 1.8vw, 1.35rem); color: #eef3ec; max-width: 620px; margin-bottom: 36px; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero__chips li { display: inline-flex; align-items: center; gap: 9px; font-size: .95rem; color: #e2eae2; font-weight: 500; }
.hero__chips svg { width: 19px; color: var(--gold-soft); flex: none; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.7); display: grid; place-items: center; gap: 8px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__scroll { text-decoration: none; transition: color .25s var(--ease); }
.hero__scroll:hover { color: #fff; }
.hero__scroll-arrow { position: relative; width: 2px; height: 30px; background: rgba(255,255,255,.85); border-radius: 2px; animation: scrolldown 2s var(--ease) infinite; }
.hero__scroll-arrow::after { content: ""; position: absolute; left: 50%; bottom: -1px; width: 10px; height: 10px; border-right: 2px solid rgba(255,255,255,.85); border-bottom: 2px solid rgba(255,255,255,.85); transform: translate(-50%, 1px) rotate(45deg); }
@keyframes scrolldown { 0%, 100% { transform: translateY(-4px); opacity: .55; } 50% { transform: translateY(5px); opacity: 1; } }

/* =========================================================
   Trust-Leiste
   ========================================================= */
.trust { background: var(--green-900); color: #fff; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: clamp(26px, 3vw, 40px) clamp(18px,2.5vw,34px); display: flex; gap: 16px; align-items: flex-start; border-left: 1px solid var(--line-dark); }
.trust__item:first-child { border-left: none; }
.trust__item svg { width: 30px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.trust__item h3 { color: #fff; font-size: 1.12rem; margin-bottom: 3px; }
.trust__item p { font-size: .92rem; color: #b8c7ba; line-height: 1.5; }

/* =========================================================
   Leistungen
   ========================================================= */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.4vw, 34px); }
.service {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service__media { aspect-ratio: 16/9; overflow: hidden; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service:hover .service__media img { transform: scale(1.06); }
.service__body { padding: clamp(20px, 2.1vw, 28px); display: flex; flex-direction: column; flex: 1; }
.service__num { font-family: var(--serif); font-size: .9rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; }
.service h3 { margin: 6px 0 8px; }
.service__desc { color: var(--ink-soft); margin-bottom: 16px; font-size: .96rem; }
.service__list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; margin-top: auto; }
.service__list li { display: flex; align-items: flex-start; gap: 8px; font-size: .87rem; line-height: 1.4; color: var(--ink); }
.service__list svg { width: 15px; color: var(--green-600); flex: none; margin-top: 3px; }

.extras { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.extras__label { font-weight: 600; color: var(--ink-soft); margin-right: 6px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); font-size: .9rem; font-weight: 500; }
.chip svg { width: 15px; color: var(--green-600); }

/* =========================================================
   Split / Warum Oepen
   ========================================================= */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.split__badge {
  position: absolute; bottom: -26px; right: -8px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.split__badge img { width: 48px; height: auto; flex: none; }
.split__badge strong { font-family: var(--serif); font-size: 1.05rem; color: var(--green-900); display: block; }
.split__badge span { font-size: .85rem; color: var(--ink-soft); }
.split--reverse .split__media { order: 2; }
.split--reverse .split__badge { right: auto; left: -8px; }
.bg-warm { background: linear-gradient(180deg, #f4ecdb, #efe4cf); }

.checklist { display: grid; gap: 16px; margin-top: 30px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .ic { width: 30px; height: 30px; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; flex: none; }
.checklist .ic svg { width: 16px; color: var(--green-700); }
.checklist strong { display: block; font-weight: 600; color: var(--green-900); }
.checklist p { font-size: .94rem; color: var(--ink-soft); }

/* =========================================================
   Galerie
   ========================================================= */
.gallery { columns: 3; column-gap: clamp(12px, 1.4vw, 18px); }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: var(--green-100); break-inside: avoid; margin-bottom: clamp(12px, 1.4vw, 18px); display: block; width: 100%; }
.gallery__item img { width: 100%; height: auto; display: block; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,28,19,.5), transparent 55%); opacity: 0; transition: opacity .4s var(--ease); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: 18px; bottom: 16px; right: 56px; color: #fff; font-weight: 500; font-size: .95rem; opacity: 0; transform: translateY(6px); transition: .4s var(--ease); z-index: 1; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.gallery__zoom { position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: translateY(6px); transition: .4s var(--ease); z-index: 1; }
.gallery__zoom svg { width: 18px; color: var(--green-800); }
.gallery__item:hover .gallery__zoom { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(10,20,14,.94); display: grid; place-items: center; padding: 5vw; opacity: 0; visibility: hidden; transition: opacity .35s var(--ease); }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-size: 1.5rem; transition: background .25s; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav.prev { left: 18px; }
.lightbox__nav.next { right: 18px; }

/* =========================================================
   Ablauf
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 38px); counter-reset: step; }
.step { position: relative; }
.step__num { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; color: var(--green-300); line-height: 1; }
.bg-dark .step__num { color: var(--green-500); }
.step h3 { margin: 12px 0 10px; font-size: 1.28rem; }
.step p { color: var(--ink-soft); font-size: .96rem; }
.bg-dark .step p { color: #b8c7ba; }
.step:not(:last-child) .step__num::after { content: ""; position: absolute; top: 26px; left: 78px; right: -20px; height: 1.5px; background: repeating-linear-gradient(90deg, var(--green-300) 0 6px, transparent 6px 12px); }

/* =========================================================
   Testimonials
   ========================================================= */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.quote__stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 14px; }
.quote__stars svg { width: 17px; }
.quote__text { font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--green-900); margin-bottom: 18px; }
.quote__person { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; font-family: var(--serif); font-weight: 600; color: var(--green-700); }
.quote__person strong { display: block; font-size: .98rem; }
.quote__person span { font-size: .85rem; color: var(--ink-soft); }

/* =========================================================
   Einzugsgebiet
   ========================================================= */
.area { display: grid; grid-template-columns: 1.2fr .9fr; gap: clamp(26px,3.5vw,48px); align-items: stretch; }
.area__towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.area__towns li { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; background: var(--green-100); border-radius: 999px; font-weight: 500; font-size: .9rem; color: var(--green-800); }
.area__towns svg { width: 14px; color: var(--green-600); }
.area__card { background: var(--green-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 52px); position: relative; overflow: hidden; }
.area__card::before { content: ""; position: absolute; inset: 0; background-image: url('../assets/logo/logo-mark-white.png'); background-repeat: no-repeat; background-position: right -40px bottom -40px; background-size: 240px; opacity: .06; }
.area__card { display: flex; flex-direction: column; justify-content: center; }
.area__card h3 { color: #fff; font-size: 1.7rem; margin-bottom: 14px; position: relative; }
.area__card p { color: #c2d0c4; margin-bottom: 26px; position: relative; }

/* NRW-Karte (Einzugsgebiet) */
.area__map { background: linear-gradient(160deg, #173322, #0d1f15); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: clamp(18px, 2.2vw, 30px); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.nrw-map { aspect-ratio: auto; width: 100%; height: auto; }
.nrw-shape { fill: url(#nrwGrad); filter: url(#nrwShadow); stroke: #5aa873; stroke-width: 1.1; stroke-linejoin: round; }
.nrw-glow { fill: url(#nrwGlow); }
.nrw-area { fill: rgba(217,193,135,.08); stroke: var(--gold-soft); stroke-width: 1.8; stroke-dasharray: 6 5; animation: areapulse 3.6s var(--ease) infinite; }
@keyframes areapulse { 0%,100% { opacity: .65; } 50% { opacity: 1; } }
.nrw-dot { fill: #bfe0c6; }
.nrw-pin path { fill: #f3efe4; }
.nrw-pin circle { fill: #173322; }
.nrw-pin--home path { fill: var(--gold); }
.nrw-pin { filter: drop-shadow(0 2px 3px rgba(0,0,0,.45)); }
.nrw-pulse { fill: var(--gold); transform-box: fill-box; transform-origin: center; animation: homepulse 2.8s var(--ease) infinite; }
.nrw-pulse--2 { animation-delay: 1.4s; }
@keyframes homepulse { 0% { transform: scale(.4); opacity: .55; } 100% { transform: scale(3.4); opacity: 0; } }
.nrw-label { font-family: var(--sans); font-size: 13px; font-weight: 700; fill: #ffffff; paint-order: stroke; stroke: #0d1f15; stroke-width: 3.5px; stroke-linejoin: round; }
.area__legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 16px; font-size: .8rem; color: #b8c7ba; }
.area__legend span { display: inline-flex; align-items: center; gap: 7px; }
.area__legend i { width: 11px; height: 11px; border-radius: 50%; flex: none; }
@media (prefers-reduced-motion: reduce) { .nrw-area, .nrw-pulse, .hero__scroll-arrow { animation: none; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; cursor: pointer; background: none; border: none; text-align: left; font-family: var(--serif); font-size: clamp(1.12rem, 1.8vw, 1.4rem); color: var(--green-900); font-weight: 600; transition: color .2s var(--ease); }
.faq__q:hover { color: var(--green-600); }
.faq__icon { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; position: relative; transition: background .3s var(--ease), border-color .3s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--green-700); border-radius: 2px; transition: background .3s var(--ease), transform .3s var(--ease); }
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; }
.faq__item.is-open .faq__icon { background: var(--green-700); border-color: var(--green-700); }
.faq__item.is-open .faq__icon::before, .faq__item.is-open .faq__icon::after { background: #fff; }
.faq__item.is-open .faq__icon::after { transform: scaleY(0); }
/* Geschmeidiges Auf-/Zuklappen rein über CSS (grid-template-rows) */
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; min-height: 0; }
.faq__a-text { margin: 0; padding: 2px 50px 26px 4px; color: var(--ink-soft); }

/* =========================================================
   CTA-Band
   ========================================================= */
.cta-band { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(17,36,26,.86), rgba(17,36,26,.92)); }
.cta-band__inner { max-width: 760px; margin-inline: auto; }
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band p { color: #cdd9cd; font-size: 1.15rem; margin-bottom: 34px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   Kontakt
   ========================================================= */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 72px); }
.contact__info .lead { margin-bottom: 22px; }
.contact__rows { display: grid; gap: 4px; margin-bottom: 24px; }
.contact__row { display: flex; gap: 14px; align-items: center; padding: 11px 13px; border-radius: var(--radius-sm); transition: background .25s; }
.contact__row:hover { background: var(--bone-2); }
.contact__row .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--green-100); display: grid; place-items: center; flex: none; }
.contact__row .ic svg { width: 22px; color: var(--green-700); }
.contact__row .lbl { font-size: .8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.contact__row strong { display: block; margin-top: 3px; font-size: 1.18rem; font-weight: 600; color: var(--green-900); font-family: var(--serif); text-transform: none; letter-spacing: 0; }

.form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 2.6vw, 34px); box-shadow: var(--shadow); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 16px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 600; color: var(--green-900); }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  background: var(--bone); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 11px 14px; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-600); background: #fff; box-shadow: 0 0 0 4px rgba(44,107,64,.1); }
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: #aab1a6; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green-600); flex: none; }
.consent a { color: var(--green-700); text-decoration: underline; }
.form__note { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; text-align: center; }
.form__hint { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }
.form__hint a { color: var(--green-700); text-decoration: underline; }

/* Eigenes Auswahlfeld */
.cselect { position: relative; }
.cselect__native { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
.cselect__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--bone); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 11px 14px; font: inherit; color: var(--ink); cursor: pointer; text-align: left; transition: border-color .2s, box-shadow .2s, background .2s; }
.cselect__trigger:hover { border-color: var(--green-300); }
.cselect.is-open .cselect__trigger, .cselect__trigger:focus-visible { border-color: var(--green-600); background: #fff; box-shadow: 0 0 0 4px rgba(44,107,64,.1); outline: none; }
.cselect__value.is-placeholder { color: #aab1a6; }
.cselect__chev { width: 18px; height: 18px; color: var(--green-700); flex: none; transition: transform .3s var(--ease); }
.cselect.is-open .cselect__chev { transform: rotate(180deg); }
.cselect__panel { list-style: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 20; margin: 0; padding: 6px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); max-height: 260px; overflow: auto; opacity: 0; transform: translateY(-6px) scale(.99); transform-origin: top center; pointer-events: none; transition: opacity .22s var(--ease), transform .22s var(--ease); }
.cselect.is-open .cselect__panel { opacity: 1; transform: none; pointer-events: auto; }
.cselect__opt { padding: 10px 12px; border-radius: 8px; cursor: pointer; font-size: .95rem; transition: background .15s, color .15s; }
.cselect__opt:hover, .cselect__opt.is-active { background: var(--green-100); }
.cselect__opt[aria-selected="true"] { color: var(--green-700); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .cselect__panel, .cselect__chev { transition: none; } }
.form__status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 500; margin-bottom: 18px; }
.form__status.ok { display: block; background: var(--green-100); color: var(--green-800); }
.form__status.err { display: block; background: #fbe9e7; color: #b3261e; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--green-900); color: #cdd9cd; padding-top: clamp(60px, 8vw, 96px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 56px); padding-bottom: 56px; }
.footer__brand .brand__name { color: #fff; }
.footer__brand .brand__tag { color: var(--gold-soft); }
.footer__brand p { margin-top: 18px; max-width: 300px; font-size: .94rem; color: #a9bbac; }
.footer h4 { font-family: var(--sans); color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer__col a, .footer__col li { display: block; padding-block: 6px; font-size: .95rem; color: #b8c7ba; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid var(--line-dark); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; font-size: .86rem; color: #93a596; }
.footer__bottom a:hover { color: #fff; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__credit a { color: var(--gold-soft); font-weight: 600; }

/* =========================================================
   Floating / Sticky-Aktionen
   ========================================================= */
.floating { position: fixed; right: 22px; bottom: 24px; z-index: 55; display: flex; flex-direction: column; gap: 12px; }
.fab { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .25s var(--ease); }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 28px; }
.fab--wa { background: #25d366; color: #fff; }
.fab--top { background: var(--card); color: var(--green-800); border: 1px solid var(--line); width: 48px; height: 48px; opacity: 0; pointer-events: none; transition: opacity .3s, transform .25s; }
.fab--top.show { opacity: 1; pointer-events: auto; }
.fab--top svg { width: 20px; }

.mobilebar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 56; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); }
.mobilebar__grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px; }
.mobilebar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 4px; border-radius: 12px; font-size: .74rem; font-weight: 600; }
.mobilebar svg { width: 21px; }
.mobilebar .mb-call { color: var(--green-800); }
.mobilebar .mb-wa { color: #1c9c4f; }
.mobilebar .mb-offer { background: linear-gradient(180deg, var(--green-600), var(--green-700)); color: #fff; }

/* =========================================================
   Reveal-Animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .service:hover, .btn:hover, .fab:hover { transform: none; } }

/* =========================================================
   Innenseiten (Impressum / Datenschutz)
   ========================================================= */
.page-hero { padding-top: clamp(140px, 16vh, 200px); padding-bottom: clamp(40px,6vw,70px); background: var(--green-900); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 44px 0 14px; }
.legal h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--ink); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--green-700); text-decoration: underline; }
.legal .muted { color: var(--ink-soft); font-size: .92rem; }
.todo { background: #fff8e6; border: 1px dashed var(--gold); border-radius: 10px; padding: 3px 8px; font-size: .9em; color: #8a6a1f; font-weight: 600; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3) { border-left: none; }
  .trust__item:nth-child(odd) { border-left: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step .step__num::after { display: none; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  .nav__links, .header__phone, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .services { grid-template-columns: 1fr; }
  .split, .area, .contact { grid-template-columns: 1fr; }
  .split__media { max-width: 460px; margin-inline: auto; }
  .split__badge { right: 10px; }
  .quotes { grid-template-columns: 1fr; }
  .area__card { order: -1; }
  .floating { bottom: 86px; }
  .mobilebar { display: block; }
  body.has-mobilebar { padding-bottom: 76px; }
}
@media (max-width: 560px) {
  .form__grid { grid-template-columns: 1fr; }
  .service__list { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__actions .btn { width: 100%; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-left: none !important; border-top: 1px solid var(--line-dark); }
  .trust__item:first-child { border-top: none; }
}

/* =========================================================
   Mikrointeraktionen
   ========================================================= */
/* Primär- und WhatsApp-Buttons: dezenter Glanz beim Hover */
.btn--primary, .btn--wa { position: relative; overflow: hidden; }
.btn--primary::before, .btn--wa::before { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none; }
.btn--primary:hover::before, .btn--wa:hover::before { left: 140%; }

/* Schwebender WhatsApp-Button: pulsierender Ring */
.fab--wa { position: relative; }
.fab--wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25d366; z-index: -1; animation: fabpulse 2.8s var(--ease) infinite; }
@keyframes fabpulse { 0% { transform: scale(1); opacity: .5; } 70%, 100% { transform: scale(1.9); opacity: 0; } }

/* Leistungskarte: Akzentlinie oben beim Hover */
.service::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); z-index: 2; }
.service:hover::after { transform: scaleX(1); }

/* Trust-Icons, Chips, Orts-Pillen */
.trust__item svg { transition: transform .3s var(--ease); }
.trust__item:hover svg { transform: scale(1.14) rotate(-3deg); }
.chip { transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.chip:hover { border-color: var(--green-300); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area__towns li { transition: transform .2s var(--ease); }
.area__towns li:hover { transform: translateY(-2px); }

/* CTA-Band: weicher Lichtschein hinter dem Text */
.cta-band__inner { position: relative; }
.cta-band__inner::before { content: ""; position: absolute; left: 50%; top: 46%; width: min(680px, 92%); height: 360px; transform: translate(-50%, -50%); background: radial-gradient(ellipse at center, rgba(74,150,95,.3), transparent 70%); z-index: -1; pointer-events: none; }
.cta-band__eyebrow { justify-content: center; color: var(--gold-soft); margin-bottom: 18px; }

@media (prefers-reduced-motion: reduce) {
  .fab--wa::after { animation: none; }
  .btn--primary::before, .btn--wa::before { display: none; }
  .service::after, .faq__a { transition: none; }
}

/* ---- Bild-Reveal: Inhaltsbilder schieben sich von unten rein und blurren auf ---- */
.img-rev { opacity: 0; transform: translateY(34px); filter: blur(14px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.img-rev.is-in { opacity: 1; transform: none; filter: none; }
@media (prefers-reduced-motion: reduce) { .img-rev { opacity: 1; transform: none; filter: none; transition: none; } }
