@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* =========================================================
   Schick-Dienstleistungen — Warme Authentizitaet
   Marke: Oliv-/Waldgruen + warmes Creme (aus dem Logo)
   ========================================================= */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Akzent = lebendiges Waldgruen (Logo-Truck), Leaf = Salbeigruen (Logo-Blatt) */
  --accent: #3E7A33;
  --accent-hover: #336428;
  --accent-rgb: 62, 122, 51;
  --accent-glow: rgba(62, 122, 51, 0.16);
  --accent-hell: #8CBE6A;   /* helles Salbe fuer dunkle Sektionen */
  --leaf: #7CA85C;

  /* Warme, satte Flaechen */
  --bg-hell: #FBF8EF;
  --bg-grau: #EFE9D8;
  --bg-dunkel: #1E2D16;   /* tiefes Waldgruen-Schwarz */
  --bg-dunkel-2: #273821;

  --text: #1A2315;
  --text-body: #46503D;
  --text-gedaempft: rgba(26, 35, 21, 0.55);
  --text-hell: #ECEFE2;

  --border: rgba(26, 35, 21, 0.11);
  --border-hell: rgba(255, 255, 255, 0.14);

  --signal: #E8A22C;

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
  --radius: 4px; /* harte Kanten = Handwerk */
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-hell);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 5vw, 44px); }
.section { position: relative; padding: clamp(60px, 9vw, 120px) 0; }
[id] { scroll-margin-top: 92px; }
.section--grau { background: var(--bg-grau); }
.section--dunkel { background: var(--bg-dunkel); color: var(--text-hell); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--accent); color: #fff; padding: 12px 20px; border-radius: var(--radius);
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* Noise-Textur fuer Materialitaet */
.noise::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.noise > * { position: relative; z-index: 1; }

/* =========================================================
   Typografie
   ========================================================= */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--accent);
}
.kicker::before { content: ''; width: 22px; height: 2px; background: var(--accent); }
.section--dunkel .kicker { color: var(--accent-hell); }
.section--dunkel .kicker::before { background: var(--accent-hell); }

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
.h2 { font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3.1rem); margin: 16px 0 18px; }
.lead { font-size: clamp(1rem, 0.97rem + 0.3vw, 1.18rem); color: var(--text-body); max-width: 56ch; text-wrap: pretty; }
.section--dunkel .lead { color: rgba(236, 239, 226, 0.82); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; font-family: var(--font-body); font-size: 0.98rem; font-weight: 600;
  border-radius: var(--radius); text-decoration: none; cursor: pointer; border: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 48px;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(63,107,58,0.25); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(63,107,58,0.32); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--white { background: #fff; color: var(--text); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.18); }
.btn--phone { background: rgba(63,107,58,0.08); color: var(--accent); border: 1.5px solid rgba(63,107,58,0.18); }
.btn--phone:hover { background: rgba(63,107,58,0.14); }
.section--dunkel .btn--ghost { color: #fff; border-color: var(--border-hell); }
.section--dunkel .btn--ghost:hover { border-color: var(--accent-hell); color: var(--accent-hell); }

.micro { font-size: 0.82rem; color: var(--text-gedaempft); margin-top: 12px; }
.section--dunkel .micro { color: rgba(230,233,223,0.5); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 44px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav--scrolled {
  padding: 11px clamp(20px, 5vw, 44px);
  background: rgba(250, 248, 241, 0.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav__brand img { height: 46px; width: auto; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--text); letter-spacing: -0.02em; }
.nav__brand-sub { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-gedaempft); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav__links a { font-size: 0.92rem; font-weight: 500; text-decoration: none; color: var(--text-body); transition: color 0.2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--accent); }
.nav__links .btn { padding: 11px 22px; min-height: 0; }
.nav__burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__burger span { display: block; width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-hell);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 0 clamp(28px, 8vw, 60px);
  transform: translateX(100%); transition: transform 0.4s var(--ease);
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; text-decoration: none; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--border); }
.nav__mobile .btn { margin-top: 22px; font-size: 1.05rem; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* =========================================================
   HERO — Variante E (Service-Entscheidung)
   ========================================================= */
.hero { position: relative; background: var(--bg-hell); overflow: hidden; padding-top: clamp(110px, 16vh, 170px); padding-bottom: clamp(60px, 8vh, 100px); }
.hero::before {
  content: ''; position: absolute; top: -15%; right: -8%; width: 60%; height: 110%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 62%);
  pointer-events: none; z-index: 0;
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.hero__title { font-size: clamp(2.6rem, 1.4rem + 4.6vw, 4.6rem); margin: 20px 0 18px; }
.hero__title .mark { color: var(--accent); }
.hero__sub { font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.22rem); color: var(--text-body); max-width: 50ch; margin-bottom: 26px; text-wrap: pretty; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 30px; }
.hero__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--accent); text-decoration: none; font-size: 1.02rem; }
.hero__phone svg { width: 19px; height: 19px; }
.hero__phone span small { display: block; font-size: 0.72rem; font-weight: 500; color: var(--text-gedaempft); }

/* Service-Buttons (Entscheidungsbaum) */
.hero__services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 460px; }
.svc-pill {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: var(--radius);
  background: #fff; border: 1.5px solid var(--border); text-decoration: none;
  color: var(--text); font-weight: 600; font-size: 0.9rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.2s var(--ease);
}
.svc-pill svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.svc-pill:hover { border-color: var(--accent); transform: translateY(-2px); }

/* Hero-Visual */
.hero__visual { position: relative; }
.hero__img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 26px 60px rgba(27,32,26,0.16); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img::after { content: ''; position: absolute; inset: -10px; border: 1.5px solid rgba(63,107,58,0.18); border-radius: calc(var(--radius) + 6px); pointer-events: none; }
.hero__tag {
  position: absolute; left: -18px; bottom: 26px; z-index: 3;
  background: #fff; padding: 14px 18px; border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(27,32,26,0.14); border-left: 3px solid var(--accent);
}
.hero__tag strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: var(--text); }
.hero__tag span { font-size: 0.8rem; color: var(--text-gedaempft); }

@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .hero__img { aspect-ratio: 16/11; }
  .hero__services { max-width: none; }
}
@media (max-width: 460px) { .hero__services { grid-template-columns: 1fr; } }

/* =========================================================
   TRUST-BAR (dunkel)
   ========================================================= */
.trust { background: var(--bg-dunkel); color: var(--text-hell); padding: 30px 0; }
.trust__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 52px); }
.trust__item { display: flex; align-items: center; gap: 11px; font-size: 0.9rem; font-weight: 500; color: rgba(230,233,223,0.85); }
.trust__item svg { width: 21px; height: 21px; stroke: var(--accent-hell); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* =========================================================
   SECTION-HEAD
   ========================================================= */
.head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 56px); }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* =========================================================
   LEISTUNGEN — Bento mit Featured
   ========================================================= */
.bento { display: grid; grid-template-columns: 1.25fr 1fr 1fr; grid-auto-rows: 1fr; gap: 18px; }
.bento__card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; overflow: hidden; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; min-height: 230px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bento__card::before { content: ''; position: absolute; left: 0; top: 0; width: 0; height: 3px; background: var(--accent); transition: width 0.5s var(--ease); }
.bento__card:hover { border-color: rgba(63,107,58,0.3); box-shadow: 0 14px 40px rgba(27,32,26,0.08); }
.bento__card:hover::before { width: 100%; }
.bento__nr { font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; }
.bento__icon { width: 46px; height: 46px; border-radius: var(--radius); background: rgba(63,107,58,0.09); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.bento__icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.bento__title { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.bento__text { font-size: 0.92rem; color: var(--text-body); margin-bottom: auto; }
.bento__more { margin-top: 18px; font-weight: 600; font-size: 0.88rem; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.bento__more svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.bento__card:hover .bento__more svg { transform: translateX(4px); }

/* Featured-Card mit Bild + Akzent-BG */
.bento__card--featured { grid-row: span 2; background: var(--bg-dunkel); color: var(--text-hell); border-color: transparent; padding: 0; min-height: 480px; }
.bento__card--wide { grid-column: span 2; }
.bento__feat-img { position: relative; flex: 1; min-height: 200px; overflow: hidden; }
.bento__feat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.bento__card--featured:hover .bento__feat-img img { transform: scale(1.05); }
.bento__feat-body { padding: 28px; }
.bento__card--featured .bento__text { color: rgba(230,233,223,0.72); }
.bento__card--featured .bento__icon { background: rgba(255,255,255,0.08); }
.bento__card--featured .bento__icon svg { stroke: var(--accent-hell); }
.bento__card--featured .bento__more { color: var(--accent-hell); }

@media (max-width: 880px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--featured { grid-row: span 1; grid-column: span 2; flex-direction: row; min-height: 280px; }
  .bento__feat-img { min-width: 45%; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--featured { grid-column: span 1; flex-direction: column; }
}

/* =========================================================
   PROZESS — Timeline
   ========================================================= */
.process__steps { display: grid; gap: 0; max-width: 820px; margin: 0 auto; }
.pstep { display: grid; grid-template-columns: 92px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--border); align-items: start; }
.pstep:first-child { border-top: 1px solid var(--border); }
.pstep__nr { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 700; color: rgba(63,107,58,0.2); line-height: 0.9; }
.pstep__title { font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; margin-bottom: 5px; }
.pstep__text { font-size: 0.94rem; color: var(--text-body); }
@media (max-width: 600px) { .pstep { grid-template-columns: 60px 1fr; gap: 16px; } }

/* =========================================================
   UEBER (dunkel, Bild/Text)
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.about__visual { position: relative; }
.about__visual img { width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }
.about__logo-card { background: var(--bg-grau); border-radius: var(--radius); padding: clamp(30px,5vw,54px); display: flex; align-items: center; justify-content: center; }
.about__logo-card img { width: 100%; max-width: 320px; }
.about p + p { margin-top: 16px; }
.about .lead { margin-bottom: 8px; }
.signature { margin-top: 22px; font-family: var(--font-head); font-weight: 600; }
.signature span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.86rem; color: rgba(230,233,223,0.55); }
@media (max-width: 820px) { .about__grid { grid-template-columns: 1fr; } }

/* =========================================================
   REFERENZEN — Teaser + Galerie
   ========================================================= */
.ref-teaser { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px; }
.ref-teaser a { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.ref-teaser img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.ref-teaser a:hover img { transform: scale(1.06); }
@media (max-width: 700px) { .ref-teaser { grid-template-columns: 1fr 1fr; } }

.gallery { columns: 4 220px; column-gap: 14px; }
.gallery__item { break-inside: avoid; margin-bottom: 14px; position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--bg-grau); }
.gallery__item img { width: 100%; height: auto; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px 14px 12px;
  background: linear-gradient(transparent, rgba(28,33,26,0.82));
  color: #fff; font-size: 0.82rem; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: 0.3s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }
.gallery__tag { display: inline-block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-hell); margin-bottom: 2px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,24,18,0.94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255,255,255,0.1); border: none; color: #fff; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox__close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 1.5rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; }
.lightbox__nav--prev { left: 16px; } .lightbox__nav--next { right: 16px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.22); }

/* =========================================================
   EINZUGSGEBIET — Tag-Cloud
   ========================================================= */
.area { text-align: center; }
.area__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; max-width: 760px; margin-left: auto; margin-right: auto; }
.area__tag { padding: 9px 18px; border-radius: 100px; background: #fff; border: 1px solid var(--border); font-size: 0.9rem; font-weight: 500; transition: 0.3s var(--ease); }
.area__tag:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.area__tag--main { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }

/* =========================================================
   FAQ — Accordion
   ========================================================= */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-family: var(--font-head); font-size: 1.06rem; font-weight: 600; color: var(--text); }
.faq__icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--accent); transform: translate(-50%,-50%); transition: transform 0.3s var(--ease); }
.faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%,-50%) rotate(0); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p { padding-bottom: 24px; color: var(--text-body); font-size: 0.96rem; max-width: 62ch; }

/* =========================================================
   FINALER CTA
   ========================================================= */
.cta { position: relative; background: var(--bg-dunkel); color: var(--text-hell); text-align: center; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 130%; background: radial-gradient(ellipse, rgba(63,107,58,0.18) 0%, transparent 58%); pointer-events: none; }
.cta__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3rem); margin-bottom: 14px; color: var(--text-hell); }
.cta .kicker { color: var(--accent-hell); }
.cta .kicker::before { background: var(--accent-hell); }
.cta .lead { margin: 0 auto 26px; color: rgba(236, 239, 226, 0.82); }
.cta .micro { color: rgba(236, 239, 226, 0.6); }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   LEISTUNGEN-SEITE — Alternating Rows
   ========================================================= */
.lrow { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(34px, 6vw, 88px); align-items: center; padding: clamp(48px, 6vw, 88px) 0; border-bottom: 1px solid var(--border); }
.lrow:last-child { border-bottom: none; }
.lrow__media { position: relative; }
.lrow__img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/4; box-shadow: 0 28px 60px rgba(26,35,21,0.16), 0 6px 16px rgba(26,35,21,0.08); }
.lrow__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.lrow:hover .lrow__img img { transform: scale(1.05); }
/* dezenter Frame-Offset */
.lrow__media::after { content: ''; position: absolute; inset: -12px; border: 1.5px solid rgba(62,122,51,0.16); border-radius: calc(var(--radius) + 8px); pointer-events: none; }
/* grosse Deko-Nummer */
.lrow__num { position: absolute; z-index: 3; top: -22px; left: -14px; font-family: var(--font-head); font-weight: 700; font-size: clamp(3rem, 6vw, 5rem); color: var(--bg-hell); -webkit-text-stroke: 2px var(--accent); line-height: 1; pointer-events: none; }
.lrow__title { font-size: clamp(1.6rem, 1.1rem + 1.7vw, 2.4rem); margin: 12px 0 14px; }
.lrow > div > p { font-size: 1.02rem; color: var(--text-body); }
.lrow ul { list-style: none; display: grid; gap: 11px; margin: 20px 0 26px; }
.lrow li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--text-body); }
.lrow li svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--accent); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 3px; }
.lrow:nth-child(even) .lrow__media { order: 2; }
.lrow:nth-child(even) .lrow__num { left: auto; right: -14px; }
@media (max-width: 820px) { .lrow { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; } .lrow:nth-child(even) .lrow__media { order: 0; } }

/* =========================================================
   KONTAKT-SEITE
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact__cards { display: grid; gap: 14px; margin-top: 24px; }
.ccard { display: flex; gap: 15px; align-items: center; padding: 18px 20px; background: var(--bg-grau); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: 0.3s var(--ease); border-left: 3px solid transparent; }
.ccard:hover { border-left-color: var(--accent); background: #fff; box-shadow: 0 8px 24px rgba(27,32,26,0.06); }
.ccard__icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(63,107,58,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ccard__icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ccard small { display: block; color: var(--text-gedaempft); font-size: 0.78rem; }
.ccard strong { font-size: 1rem; }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.form__row { margin-bottom: 18px; }
.form label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 7px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.96rem; background: var(--bg-hell); color: var(--text);
  transition: border-color 0.2s; min-height: 48px;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); }
.form .btn { width: 100%; }
.form__hint { font-size: 0.8rem; color: var(--text-gedaempft); margin-top: 12px; text-align: center; }
@media (max-width: 820px) { .contact__grid { grid-template-columns: 1fr; } }

/* =========================================================
   LEGAL
   ========================================================= */
.legal { padding-top: clamp(120px, 16vh, 170px); }
.legal__body { max-width: 760px; }
.legal__body h2 { font-size: 1.35rem; margin: 32px 0 12px; }
.legal__body h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal__body p, .legal__body li { color: var(--text-body); font-size: 0.95rem; margin-bottom: 10px; }
.legal__body ul { padding-left: 20px; }
.legal__body a { color: var(--accent); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg-dunkel-2); color: rgba(230,233,223,0.6); padding: clamp(48px,6vw,72px) 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer__brand img { height: 64px; margin-bottom: 14px; background: var(--bg-grau); padding: 8px; border-radius: var(--radius); }
.footer__brand p { font-size: 0.9rem; max-width: 36ch; }
.footer__col h4 { font-family: var(--font-head); color: var(--text-hell); font-size: 0.95rem; margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; font-size: 0.9rem; color: rgba(230,233,223,0.6); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.footer__col a:hover { color: var(--accent-hell); }
.footer__bottom { border-top: 1px solid var(--border-hell); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer__bottom a { color: rgba(230,233,223,0.6); text-decoration: none; }
.footer__bottom a:hover { color: var(--accent-hell); }
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* =========================================================
   STICKY MOBILE CTA-BAR
   ========================================================= */
.sticky-cta { display: none; }
@media (max-width: 880px) {
  .sticky-cta {
    position: fixed; inset: auto 0 0 0; z-index: 90; display: flex;
    transform: translateY(110%); transition: transform 0.4s var(--ease);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.14);
  }
  .sticky-cta.is-visible { transform: translateY(0); }
  .sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 16px; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.98rem; background: var(--accent); }
  .sticky-cta a svg { width: 18px; height: 18px; }
  body { padding-bottom: 56px; }
}

/* =========================================================
   SCROLL-REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
