/* =====================================================================
   Gartenbau Marco Pietruszak – Design System
   Farben & Stil abgeleitet aus dem Firmenlogo.
   Struktur: 1) Tokens 2) Base 3) Layout 4) Components 5) Sections 6) Responsive
   ===================================================================== */

/* ---------- 1) DESIGN TOKENS ---------- */
:root {
  /* Markenfarben (aus dem Logo) */
  --green-light: #7DB928;   /* helles Grün – „Gartenbau", Baumkronen */
  --green-light-600: #6BA31f;
  --green: #1C7A3E;         /* dunkles Grün – „Pietruszak", Welle */
  --green-700: #14672f;
  --green-900: #0e4d24;
  --brown: #6E4A2A;         /* Erdton – Boden, Telefonbox */
  --brown-700: #5a3c22;

  /* Neutralfarben */
  --cream: #F7F5EF;         /* warmer Hintergrund */
  --cream-2: #EFEDE4;
  --ink: #20291d;           /* Haupttext */
  --muted: #5c6656;         /* sekundärer Text */
  --line: #e2e0d6;          /* feine Linien */
  --white: #ffffff;

  /* Effekte */
  --shadow-sm: 0 2px 10px rgba(20,40,20,.06);
  --shadow: 0 12px 34px rgba(20,50,25,.12);
  --shadow-lg: 0 28px 60px rgba(15,45,25,.20);
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Typografie */
  --font-head: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(64px, 9vw, 128px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2) BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
figure { margin: 0; }   /* Standard-Rand von <figure> entfernen (sonst zu schmale Kacheln) */
a { color: var(--green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-light-600); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; margin: 0 0 .5em; color: var(--ink); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--green-light); color: #fff; }

/* ---------- 3) LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--cream-2); }
.section--dark { background: linear-gradient(160deg, var(--green-900), var(--green-700)); color: #eaf3ea; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green-light-600);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green-light); border-radius: 2px; }
.section--dark .eyebrow { color: #bfe08a; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #cfe3cf; }

/* ---------- 4) COMPONENTS ---------- */
/* Buttons */
.btn {
  --btn-bg: var(--green-light); --btn-fg: #10310f;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: .95rem 1.7rem; border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg); border: 2px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: 0 10px 22px rgba(125,185,40,.28);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(125,185,40,.40); color: #10310f; }
.btn--dark { --btn-bg: var(--green); --btn-fg: #fff; box-shadow: 0 10px 22px rgba(28,122,62,.30); }
.btn--dark:hover { box-shadow: 0 16px 30px rgba(28,122,62,.45); color: #fff; }
.btn--ghost {
  background: transparent; color: var(--green); border-color: var(--green); box-shadow: none;
}
.btn--ghost:hover { background: var(--green); color: #fff; box-shadow: var(--shadow); }
.btn--light { background: #fff; color: var(--green-700); box-shadow: var(--shadow-sm); }
.btn--light:hover { color: var(--green-700); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn svg { width: 18px; height: 18px; }

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

/* Image placeholder system – wird von js/main.js befüllt, wenn ein Foto fehlt */
.ph {
  position: relative; overflow: hidden; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
img.is-placeholder {
  object-fit: cover;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(125,185,40,.16), transparent 55%),
    linear-gradient(150deg, #eef1e6, #e3e6da);
}

/* Karten */
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* Reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 5) HEADER / NAV ---------- */
.topbar {
  background: var(--green-900); color: #dfeede; font-size: .86rem;
}
.topbar .container { display: flex; gap: 1.4rem; align-items: center; justify-content: flex-end; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #dfeede; display: inline-flex; align-items: center; gap: .45rem; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; }
.topbar .sep { opacity: .35; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(247,245,239,.94);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: var(--cream); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand-mark { height: 46px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-head); }
.brand-text b { color: var(--green-light-600); font-weight: 800; font-size: 1.12rem; letter-spacing: -.01em; }
.brand-text em { color: var(--green); font-style: normal; font-weight: 600; font-size: .84rem; }
@media (max-width: 400px) { .brand-mark { height: 42px; } .brand-text b { font-size: 1rem; } .brand-text em { font-size: .78rem; } }
.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; color: var(--ink);
  padding: .5rem .7rem; border-radius: var(--radius-pill); font-size: .95rem;
  position: relative; transition: color .2s, background .2s; white-space: nowrap;
}
/* Der Button in der Nav-Liste ist nur für das Mobil-Menü gedacht */
.nav-links > li:last-child { display: none; }
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(125,185,40,.12); }
.nav-actions { display: flex; align-items: center; gap: .8rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 0; background: var(--green); color: #fff;
  border-radius: 12px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- 6) HERO ---------- */
.hero { position: relative; min-height: min(88vh, 820px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,45,20,.86) 0%, rgba(14,60,28,.62) 42%, rgba(14,60,28,.18) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(3rem, 8vw, 6rem); max-width: 760px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  padding: .5rem 1rem; border-radius: var(--radius-pill); font-family: var(--font-head);
  font-weight: 500; font-size: .9rem; margin-bottom: 1.6rem;
}
.hero__badge b { color: var(--green-light); font-weight: 700; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 .accent { color: var(--green-light); }
.hero p.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: #eaf3e6; max-width: 560px; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.8rem 2.6rem; margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.2); }
.hero__meta .stat b { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hero__meta .stat span { font-size: .92rem; color: #d5e6d3; }

/* trust bar */
.trust { background: var(--white); border-bottom: 1px solid var(--line); }
.trust .container { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; align-items: center; justify-content: center; padding-block: 1.1rem; }
.trust .item { display: inline-flex; align-items: center; gap: .6rem; color: var(--muted); font-family: var(--font-head); font-weight: 500; font-size: .95rem; }
.trust .item svg { width: 22px; height: 22px; color: var(--green-light-600); }

/* ---------- ABOUT / FAMILIE ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.about__media .badge-years {
  position: absolute; right: -14px; bottom: -18px; background: var(--green-light); color: #10310f;
  border-radius: 20px; padding: 1rem 1.3rem; box-shadow: var(--shadow); text-align: center;
  font-family: var(--font-head); border: 4px solid var(--cream);
}
.about__media .badge-years b { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about__media .badge-years span { font-size: .8rem; font-weight: 600; }
.about ul.ticks { list-style: none; display: grid; gap: .7rem; margin: 1.5rem 0; }
.about ul.ticks li { display: flex; gap: .7rem; align-items: flex-start; }
.about ul.ticks svg { width: 22px; height: 22px; color: var(--green-light-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- USP ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.usp {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.usp:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.usp .ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: rgba(125,185,40,.14); color: var(--green); margin-bottom: 1.1rem; }
.usp .ico svg { width: 30px; height: 30px; }
.usp h3 { margin-bottom: .4rem; font-size: 1.2rem; }
.usp p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- LEISTUNGEN ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service { display: flex; flex-direction: column; }
.service__media { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service:hover .service__media img { transform: scale(1.07); }
.service__media .tag {
  position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--green-700);
  font-family: var(--font-head); font-weight: 600; font-size: .78rem; padding: .35rem .8rem; border-radius: var(--radius-pill);
}
.service__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service__body h3 { margin-bottom: .45rem; }
.service__body p { color: var(--muted); font-size: .96rem; flex: 1; }
.service__body .link-arrow { margin-top: 1rem; }

/* ---------- PROJEKTE / GALERIE ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter-bar button {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; cursor: pointer;
  padding: .55rem 1.2rem; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: var(--white); color: var(--ink); transition: all .25s var(--ease);
}
.filter-bar button:hover { border-color: var(--green-light); color: var(--green); }
.filter-bar button.active { background: var(--green); border-color: var(--green); color: #fff; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.gallery--masonry { grid-auto-rows: 10px; }
.tile {
  position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer;
  box-shadow: var(--shadow-sm); background: var(--cream-2);
}
.tile img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s var(--ease); }
.tile.tall img { aspect-ratio: 3/4; }
.tile.wide img { aspect-ratio: 16/10; }
.tile:hover img { transform: scale(1.06); }
.tile__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem; color: #fff; opacity: 0; transition: opacity .35s var(--ease);
  background: linear-gradient(to top, rgba(10,40,18,.82), rgba(10,40,18,.05) 60%, transparent);
}
.tile:hover .tile__overlay { opacity: 1; }
.tile__overlay .cat { font-family: var(--font-head); font-weight: 600; font-size: .78rem; color: var(--green-light); text-transform: uppercase; letter-spacing: .08em; }
.tile__overlay h3 { color: #fff; font-size: 1.15rem; margin: .2rem 0 0; }
.tile__overlay .zoom { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--green-700); }
.tile__overlay .zoom svg { width: 20px; height: 20px; }

/* ---------- INSPIRATION (einheitliche Kacheln) ---------- */
.insp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; }
.insp-tile {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 12px;
  cursor: pointer; background: var(--cream-2); box-shadow: var(--shadow-sm);
}
.insp-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.insp-tile::after { content: ""; position: absolute; inset: 0; background: rgba(10,40,18,0); transition: background .3s var(--ease); }
.insp-tile:hover img { transform: scale(1.08); }
.insp-tile:hover::after { background: rgba(10,40,18,.22); }
.insp-tile .ico-zoom {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.7);
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.94);
  display: grid; place-items: center; color: var(--green-700); opacity: 0; z-index: 1;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.insp-tile:hover .ico-zoom { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.insp-tile .ico-zoom svg { width: 20px; height: 20px; }
@media (max-width: 900px) { .insp-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width: 620px) { .insp-grid { grid-template-columns: repeat(3,1fr); gap: .5rem; } }

/* ---------- TEAM / FAMILIE ---------- */
.family { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); }
.person { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; }
.person__photo { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.person__photo .role-chip {
  position: absolute; bottom: 14px; left: 14px; background: var(--green); color: #fff;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; padding: .4rem 1rem; border-radius: var(--radius-pill);
}
.person__photo .role-chip.alt { background: var(--green-light); color: #10310f; }
.person__body { padding: 1.8rem clamp(1.4rem,3vw,2.2rem) 2rem; }
.person__body h3 { font-size: 1.5rem; margin-bottom: .15rem; }
.person__body .gen { font-family: var(--font-head); font-weight: 600; color: var(--green-light-600); font-size: .92rem; margin-bottom: 1rem; letter-spacing: .04em; }
.person__body p { color: var(--muted); font-size: 1rem; }
.family-bridge { text-align: center; max-width: 640px; margin: 0 auto clamp(2rem,4vw,3rem); }

/* ---------- ZAHLEN / STATS ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stats-row .stat b { font-family: var(--font-head); font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 800; color: var(--green-light); display: block; line-height: 1; }
.stats-row .stat span { color: #cfe3cf; font-size: 1rem; }

/* ---------- REFERENZEN / TESTIMONIALS ---------- */
.quotes { display: flex; flex-direction: column; gap: 1.5rem; max-width: 780px; margin: 0 auto; }
.quote { background: var(--white); border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin: 0; }
.quote .stars { color: #f5b301; letter-spacing: 2px; margin-bottom: .8rem; }
.quote p { font-size: 1.02rem; }
.quote .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--green-light); color: #10310f; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote .who b { font-family: var(--font-head); display: block; font-size: .98rem; }
.quote .who span { color: var(--muted); font-size: .85rem; }
/* Google-Bewertungs-Badge */
.google-badge {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; justify-content: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 2.2rem; box-shadow: var(--shadow); max-width: 820px; margin: 0 auto 3rem;
}
.google-badge .gb-logo svg { display: block; width: 46px; height: 46px; }
.gb-score { text-align: center; padding: 0 1.4rem; border-right: 1px solid var(--line); }
.gb-score b { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--ink); line-height: 1; display: block; }
.gb-stars { color: #fbbc05; letter-spacing: 2px; font-size: 1.25rem; margin: .2rem 0; }
.gb-score span { color: var(--muted); font-size: .9rem; }
.gb-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.quote .via { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--muted); margin-top: .2rem; }
.quote .via svg { width: 14px; height: 14px; }
@media (max-width: 640px) {
  .google-badge { flex-direction: column; gap: 1.1rem; padding: 1.4rem; }
  .gb-score { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 1rem; }
}

.partners { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; justify-content: center; align-items: center; margin-top: 3rem; }
.partners .p { font-family: var(--font-head); font-weight: 600; color: var(--muted); font-size: 1.05rem; opacity: .8; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem,6vw,4.5rem); background: linear-gradient(130deg, var(--green-700), var(--green-900)); color: #fff; }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(125,185,40,.35), transparent 70%); }
.cta-band .inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; align-items: center; justify-content: space-between; }
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { color: #d3e6d1; margin: 0; max-width: 520px; }
.cta-band .actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- KONTAKT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info .info-item { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-of-type { border-bottom: 0; }
.contact-info .ico { width: 50px; height: 50px; border-radius: 14px; background: rgba(125,185,40,.14); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ico svg { width: 24px; height: 24px; }
.contact-info .info-item b { font-family: var(--font-head); display: block; }
.contact-info .info-item a, .contact-info .info-item span { color: var(--muted); }
.contact-info .info-item a:hover { color: var(--green); }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.6rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .92rem; margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 1rem; background: var(--cream); color: var(--ink); transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-light); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-consent { display: block; position: relative; padding-left: 1.8rem; font-size: .88rem; line-height: 1.5; color: var(--muted); margin: .3rem 0 1.2rem; }
.form-consent input { position: absolute; left: 0; top: 3px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: 12px; background: rgba(125,185,40,.16); color: var(--green-700); font-weight: 600; margin-bottom: 1rem; }
.form-success.show { display: block; }
.form-error { padding: 1rem 1.2rem; border-radius: 12px; background: rgba(180,60,40,.12); color: #9a3412; font-weight: 600; margin-bottom: 1rem; }
.form-error a { color: inherit; text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer { background: #10240f; color: #b9cdb4; padding-top: clamp(3rem,6vw,4.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.brand-foot .foot-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.brand-foot .foot-logo img { height: 58px; width: auto; }
.brand-foot .foot-logo .brand-text b { color: #fff; font-size: 1.3rem; }
.brand-foot .foot-logo .brand-text em { color: #bfe08a; font-size: .98rem; }
.site-footer p { color: #9db698; font-size: .95rem; }
.footer-links { list-style: none; display: grid; gap: .6rem; }
.footer-links a { color: #b9cdb4; font-size: .96rem; }
.footer-links a:hover { color: var(--green-light); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; margin-bottom: .7rem; color: #b9cdb4; font-size: .96rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green-light); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; font-size: .88rem; color: #86a081; }
.footer-bottom a { color: #86a081; }
.footer-bottom a:hover { color: var(--green-light); }

/* ---------- LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,20,10,.92); display: none; align-items: center; justify-content: center; padding: 3vw; }
.lightbox.open { display: flex; animation: fade .3s var(--ease); }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .lb-cap { position: absolute; bottom: 4vh; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-head); }
.lightbox button { position: absolute; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox button:hover { background: rgba(255,255,255,.28); }
.lightbox .lb-close { top: 3vh; right: 3vw; }
.lightbox .lb-prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox svg { width: 24px; height: 24px; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* Sticky mobile call bar */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none; background: var(--white); box-shadow: 0 -6px 20px rgba(0,0,0,.1); border-top: 1px solid var(--line); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: .6rem; font-family: var(--font-head); font-weight: 600; font-size: .78rem; color: var(--green-700); }
.mobile-bar a svg { width: 22px; height: 22px; }
.mobile-bar a + a { border-left: 1px solid var(--line); }
.mobile-bar a.accent { background: var(--green-light); color: #10310f; }

/* Page hero (Unterseiten) */
.page-hero { background: linear-gradient(150deg, var(--green-900), var(--green-700)); color: #fff; padding-block: clamp(3rem,7vw,5rem) clamp(2.5rem,5vw,4rem); text-align: center; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cfe3cf; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .9rem; color: #bfe08a; margin-bottom: 1rem; font-family: var(--font-head); }
.breadcrumb a { color: #bfe08a; }
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .quotes { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .split, .contact-grid, .family { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin-inline: auto; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .cta-band .inner { flex-direction: column; align-items: flex-start; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }

  /* Mobile-Menü */
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 1rem var(--gutter) 1.6rem; gap: .2rem; box-shadow: var(--shadow);
    border-top: 1px solid var(--line); align-items: stretch;
  }
  .nav-links.open a { padding: .9rem 1rem; font-size: 1.05rem; }
  .nav-links.open > li:last-child { display: block; }
  .nav-links.open .btn { display: flex; margin-top: .8rem; text-align: center; }
}
@media (max-width: 560px) {
  .services-grid, .gallery, .usp-grid, .stats-row, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.2rem 1.8rem; }
  .topbar { display: none; }
}

/* =====================================================================
   MOBILE-FEINSCHLIFF – reibungslose Handy-Ansicht (kein Seitwärts-Scrollen)
   ===================================================================== */
html { overflow-x: hidden; }                 /* verhindert horizontales Scrollen zuverlässig */

/* Grid-/Flex-Elemente dürfen schrumpfen; lange Wörter (E-Mail) umbrechen */
.contact-info, .form-card, .info-item, .info-item > div { min-width: 0; }
.info-item a, .info-item span, .footer-contact a, .footer-contact li { overflow-wrap: anywhere; }

/* Hero-Badge bricht sauber (zentriert) statt zerrissen um */
.hero__badge { flex-wrap: wrap; justify-content: center; }

@media (max-width: 560px) {
  .hero__badge { font-size: .82rem; padding: .45rem .9rem; }
  /* Mobile-Schnellzugriff: 4 Buttons passen sauber nebeneinander */
  .mobile-bar a { padding: .5rem .15rem; font-size: .68rem; min-width: 0; gap: 3px; }
  .mobile-bar a svg { width: 20px; height: 20px; }
}

/* =====================================================================
   SEO-BAUSTEINE – FAQ, Einsatzgebiet, Sprunglink
   (ergänzt mit der SEO-Optimierung)
   ===================================================================== */

/* ---------- Sprunglink für Tastatur- & Screenreader-Nutzung ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--green);
  color: #fff;
  padding: .8rem 1.4rem;
  border-radius: 0 0 var(--radius) 0;
  font-family: var(--font-head);
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: #fff;
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

/* ---------- FAQ-Akkordeon ---------- */
.faq {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: .9rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.faq-item[open] { border-color: var(--green-light); box-shadow: var(--shadow); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--green-light); outline-offset: -3px; }

/* Die Frage ist eine echte <h3> – wichtig für Google. Optisch bleibt
   sie schlicht, damit die Überschriftenhierarchie nicht "schreit". */
.faq-item summary h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.45;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
}

/* Plus-/Minus-Zeichen rechts */
.faq-item summary::after {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(var(--green), var(--green)) center/100% 2px no-repeat,
    linear-gradient(var(--green), var(--green)) center/2px 100% no-repeat;
  transition: transform .3s var(--ease);
}
/* geöffnet: aus dem Plus wird ein Minus */
.faq-item[open] summary::after { background-size: 100% 2px, 0 0; }

.faq-answer { padding: 0 1.4rem 1.35rem; }
.faq-answer p { margin: 0; color: var(--muted); }
.faq-answer a { font-weight: 600; }

/* ---------- Einsatzgebiet (Local SEO) ---------- */
.area-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.area-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: .5rem 1.1rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.area-note {
  text-align: center;
  margin: 1.8rem auto 0;
  max-width: 640px;
  color: var(--muted);
}

@media (max-width: 560px) {
  .faq-item summary { padding: 1rem 1.1rem; }
  .faq-item summary h3 { font-size: .98rem; }
  .faq-answer { padding: 0 1.1rem 1.1rem; }
  .area-list li { font-size: .88rem; padding: .42rem .9rem; }
}
