/* =================================================================
   Yasin's Garten — Premium Website
   Design: NovaLink · Fraunces (Display) + Manrope (Text)
   ================================================================= */

@import url('../fonts/fonts.css'); /* lokal gehostet – keine externen Font-Requests (DSGVO) */

:root {
  /* Palette */
  --forest-900: #0d1a12;
  --forest-800: #14231a;
  --forest-700: #1c3325;
  --forest-600: #274b34;
  --moss:       #4a7c59;
  --moss-dark:  #35664a; /* AA-konform für kleine Labels auf Creme */
  --moss-light: #7fa878;
  --sage:       #b7cbaa;
  --cream:      #faf8f2;
  --cream-2:    #f2ede1;
  --sand:       #e6ddc9;
  --line:       rgba(20, 35, 26, 0.12);
  --line-light: rgba(250, 248, 242, 0.16);

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--forest-800);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--moss); color: var(--cream); }

/* Sichtbarer Tastatur-Fokus (Accessibility) – nur bei Keyboard-Navigation */
:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Auf dunklen Flächen heller Fokusring für ausreichenden Kontrast */
.hero :focus-visible, .services :focus-visible, .stack-panel :focus-visible,
.cta-band :focus-visible, .page-hero :focus-visible, .site-footer :focus-visible,
.info-band :focus-visible, .mobile-menu :focus-visible,
.site-header.on-dark:not(.scrolled) :focus-visible {
  outline-color: var(--sage);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -0.02em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; display: inline-block;
}
.eyebrow.center::before { display: none; }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: rgba(20,35,26,0.72); max-width: 46ch; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
section { position: relative; }
.section-pad { padding: clamp(4.5rem, 10vw, 9rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .4s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--forest-800); color: var(--cream); }
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); }
.btn-ghost { border-color: var(--line); color: var(--forest-800); background: transparent; }
.btn-ghost:hover { border-color: var(--forest-800); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--forest-800); }
.btn-light:hover { background: var(--sage); transform: translateY(-2px); }
.btn-outline-light { border-color: var(--line-light); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.4rem 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(250, 248, 242, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.on-dark:not(.scrolled) { color: var(--cream); }
.site-header.on-dark:not(.scrolled) .brand-name,
.site-header.on-dark:not(.scrolled) .nav-links a,
.site-header.on-dark:not(.scrolled) .header-phone { color: var(--cream); }
.site-header.on-dark:not(.scrolled) .brand-mark { box-shadow: 0 6px 22px rgba(0,0,0,0.35); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; }

/* ----- Logo-Lockup: Marke + Claim, bewusst gross gesetzt ----- */
.brand { display: flex; align-items: center; gap: clamp(0.7rem, 1.4vw, 1rem); }
.brand-mark {
  width: clamp(48px, 5.2vw, 64px); height: clamp(48px, 5.2vw, 64px);
  border-radius: 16px;
  background: var(--moss);
  border: 0;
  display: grid; place-items: center;
  color: var(--cream);
  flex: none;
  box-shadow: 0 6px 18px rgba(13,26,18,0.18);
  transition: transform .5s var(--ease), background .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.04); background: var(--forest-700); }
.brand-mark svg { width: 58%; height: 58%; }
.brand-text { display: flex; flex-direction: column; gap: 0.18rem; min-width: 0; }
.brand-name {
  font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  letter-spacing: -0.025em; line-height: 1; white-space: nowrap;
}
.brand-claim {
  font-family: var(--sans); font-size: clamp(0.56rem, 0.72vw, 0.68rem);
  font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--moss-dark); white-space: nowrap;
}
.site-header.on-dark:not(.scrolled) .brand-claim { color: var(--sage); }

/* Kontaktdaten direkt neben der Marke - auf jeder Seite sichtbar */
.header-contact { display: flex; flex-direction: column; gap: 0.15rem; text-align: right; }
.header-contact a { font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
.header-contact .hc-mail { font-size: 0.82rem; font-weight: 500; opacity: 0.75; }
.header-contact a:hover { color: var(--moss); }
.site-header.on-dark:not(.scrolled) .header-contact a { color: var(--cream); }
.site-header.on-dark:not(.scrolled) .header-contact a:hover { color: var(--sage); }

.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-size: 0.94rem; font-weight: 500; position: relative; padding: 0.3rem 0; white-space: nowrap; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: currentColor; transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--moss); }

.header-right { display: flex; align-items: center; gap: 1.4rem; }
.header-phone { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.94rem; white-space: nowrap; }
.header-phone svg { width: 16px; height: 16px; color: var(--moss); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: currentColor; transition: .35s var(--ease); }

/* Früher aufs Burger-Menü umschalten, damit der Header (Nav + Nummer + CTA) nicht überläuft */
@media (max-width: 1150px) {
  .nav-links, .header-phone { display: none; }
  .burger { display: flex; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--forest-800); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 3.2rem); padding: 0.4rem 0; opacity: 0.85; }
.mobile-menu a:hover { opacity: 1; color: var(--moss-light); }
.mobile-menu .mm-foot { margin-top: 2.5rem; font-family: var(--sans); font-size: 1rem; display: flex; flex-direction: column; gap: 0.5rem; opacity: 0.7; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.05);
  filter: brightness(1.16) saturate(1.06);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    /* Lesbarkeits-Schleier nur dort, wo Text steht – das Bild bleibt hell */
    radial-gradient(130% 95% at 4% 70%, rgba(9,19,13,0.88) 0%, rgba(9,19,13,0.72) 30%, rgba(9,19,13,0.34) 55%, rgba(9,19,13,0.05) 78%, rgba(9,19,13,0) 90%),
    linear-gradient(to bottom, rgba(9,19,13,0.55) 0%, rgba(9,19,13,0.12) 16%, rgba(9,19,13,0) 34%),
    linear-gradient(100deg, rgba(9,19,13,0.52) 0%, rgba(9,19,13,0.24) 50%, rgba(9,19,13,0.02) 100%);
}
.hero-inner { padding-top: 8rem; padding-bottom: 4rem; max-width: 62rem; }
.hero h1 {
  font-size: clamp(3rem, 8.5vw, 7rem);
  font-weight: 300;
  margin: 1.6rem 0;
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero .eyebrow { color: var(--cream); }
.hero .lead { color: rgba(250,248,242,0.9); font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 40ch; }
.hero-inner { text-shadow: 0 2px 26px rgba(9,19,13,0.55), 0 1px 3px rgba(9,19,13,0.35); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; opacity: 0.7;
}
.hero-scroll .line { width: 1px; height: 42px; background: var(--cream); animation: scrollLine 2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100%{transform:scaleY(0.3);opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border-radius: var(--radius); overflow: hidden; }
.hero .stats { margin-top: 4rem; max-width: 640px; background: rgba(250,248,242,0.14); }
.stat { padding: 1.8rem; background: transparent; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 400; line-height: 1; }
.stat .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 0.6rem; opacity: 0.7; }

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; transition: transform 1.2s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin: 1.4rem 0 1.6rem; }
.split p + p { margin-top: 1.1rem; }
.split .btn { margin-top: 2rem; }
.media-badge {
  position: absolute; bottom: 1.2rem; left: 1.2rem;
  background: var(--cream); color: var(--forest-800);
  padding: 0.9rem 1.3rem; border-radius: 12px;
  font-family: var(--serif); font-size: 1.1rem;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.4);
}
.media-badge span { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss-dark); margin-top: 0.2rem; }

/* ---------- Section head ---------- */
.section-head { max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-top: 1.2rem; }

/* ---------- Services (big cards) ---------- */
.services { background: var(--forest-800); color: var(--cream); }
.services .eyebrow { color: var(--moss-light); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  position: relative; border-radius: var(--radius); overflow: hidden; isolation: isolate;
  min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; color: var(--cream);
  border: 1px solid var(--line-light);
}
.svc-card .svc-bg { position: absolute; inset: 0; z-index: -2; }
.svc-card .svc-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.svc-card--neubauten .svc-bg img { object-position: 35% center; }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(13,26,18,0.94) 0%, rgba(13,26,18,0.35) 55%, rgba(13,26,18,0.1) 100%); transition: opacity .4s; }
.svc-card:hover .svc-bg img { transform: scale(1.08); }
.svc-num { position: absolute; top: 1.5rem; left: 2rem; font-family: var(--serif); font-size: 1rem; opacity: 0.7; }
.svc-card h3 { font-size: 1.7rem; margin-bottom: 0.7rem; }
.svc-card p { font-size: 0.95rem; color: rgba(250,248,242,0.78); margin-bottom: 1.3rem; }
.svc-more { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--sage); }
.svc-more svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.svc-card:hover .svc-more svg { transform: translateX(5px); }

/* ---------- Marquee ---------- */
.marquee { background: var(--moss); color: var(--cream); padding: 1.1rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 1.35rem; font-style: italic; display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "✳"; font-style: normal; font-size: 0.9rem; opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Why / features ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature {
  padding: 2rem 1.8rem; border-radius: var(--radius);
  background: var(--cream-2); border: 1px solid var(--line);
  transition: transform .5s var(--ease), background .4s;
}
.feature:hover { transform: translateY(-6px); background: var(--cream); }
.feature-num { font-family: var(--serif); font-size: 2.8rem; line-height: 1; color: var(--moss); display: block; margin-bottom: 1.1rem; letter-spacing: -0.02em; }
.feature-num::after { content: ""; display: block; width: 34px; height: 2px; background: var(--sand); margin-top: 0.9rem; }
.feature-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--forest-800); color: var(--sage); display: grid; place-items: center; margin-bottom: 1.3rem; }
.feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.feature p { font-size: 0.94rem; color: rgba(20,35,26,0.7); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; border-top: 1px solid var(--line); }
.step .step-num { font-family: var(--serif); font-size: 2.6rem; color: var(--moss); line-height: 1; margin-bottom: 0.8rem; }
.step h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; color: rgba(20,35,26,0.68); }

/* ---------- Checklist ---------- */
.check-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.9rem; font-size: 1.02rem; }
.check-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--moss); color: var(--cream); display: grid; place-items: center; margin-top: 2px; }
.check-list .tick svg { width: 14px; height: 14px; }

/* ---------- Sub-feature grid (icon rows) ---------- */
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.mini {
  padding: 1.9rem; border-radius: var(--radius); background: var(--cream-2);
  border: 1px solid var(--line); transition: transform .5s var(--ease);
}
.mini:hover { transform: translateY(-4px); }
.mini .mini-num { font-family: var(--serif); color: var(--moss-dark); font-size: 1.1rem; margin-bottom: 0.6rem; display: block; }
.mini h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.mini p { font-size: 0.94rem; color: rgba(20,35,26,0.7); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; color: var(--cream); border-radius: clamp(20px, 4vw, 32px); padding: clamp(3rem, 7vw, 6rem); }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,26,18,0.94), rgba(28,51,37,0.72)); }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); max-width: 20ch; margin-bottom: 1.2rem; }
.cta-band p { color: rgba(250,248,242,0.82); max-width: 44ch; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.cta-phone { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--serif); font-size: 1.4rem; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; color: var(--cream); padding: 12rem 0 6rem; overflow: hidden; isolation: isolate; }
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
    linear-gradient(100deg, rgba(13,26,18,0.92) 0%, rgba(13,26,18,0.74) 55%, rgba(13,26,18,0.5) 100%),
    linear-gradient(to top, rgba(13,26,18,0.6) 0%, rgba(13,26,18,0) 55%); }
.page-hero h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 300; margin: 1.4rem 0; max-width: 18ch; }
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero .lead { color: rgba(250,248,242,0.82); }
.page-hero .btn { margin-top: 2rem; }
.page-hero .eyebrow { color: var(--moss-light); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); }
/* Formular zuerst - es folgt direkt auf "Sprechen wir ueber Ihr Projekt." */
.contact-grid { grid-template-columns: 1.1fr 0.9fr; }
.contact-grid .form-card { order: 1; }
.contact-grid .contact-side { order: 2; }
.form-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; padding: 0.95rem 1.1rem; border-radius: 12px;
  border: 1px solid var(--line); background: var(--cream);
  font-family: var(--sans); font-size: 1rem; color: var(--forest-800);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,89,0.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.85rem; color: rgba(20,35,26,0.6); margin-top: 1rem; }

.contact-methods { display: grid; gap: 1rem; }
.cmethod { display: flex; align-items: center; gap: 1.1rem; padding: 1.3rem 1.5rem; border-radius: 14px; background: var(--cream-2); border: 1px solid var(--line); transition: transform .4s var(--ease), background .3s; }
.cmethod:hover { transform: translateX(5px); background: var(--cream); }
.cmethod .cm-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--forest-800); color: var(--sage); display: grid; place-items: center; flex-shrink: 0; }
.cmethod .cm-ic svg { width: 21px; height: 21px; }
.cmethod .cm-label { display: block; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss-dark); margin-bottom: 0.15rem; }
.cmethod .cm-value { display: block; font-family: var(--serif); font-size: 1.2rem; line-height: 1.15; word-break: break-word; }
.contact-address { margin-top: 1.5rem; padding: 1.3rem 1.5rem; border-radius: 14px; border: 1px dashed var(--line); font-size: 0.96rem; }
.contact-address strong { display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: 0.3rem; }

/* ---------- Back link ---------- */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 1.6rem; opacity: 0.85; transition: opacity .3s, transform .3s var(--ease);
}
.back-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.back-link:hover { opacity: 1; }
.back-link:hover svg { transform: translateX(-4px); }

/* ---------- Products / price cards ---------- */
.products-intro { max-width: 44rem; }
.products-intro .lead { color: rgba(20,35,26,0.7); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.product-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(13,26,18,0.35); }
.product-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media img.rotate-right,
.spec-media img.rotate-right { transform: rotate(90deg) scale(1.15); object-position: center; }
.product-card:hover .product-media img.rotate-right { transform: rotate(90deg) scale(1.21); }
.product-price {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--forest-800); color: var(--cream);
  padding: 0.5rem 0.9rem; border-radius: 100px;
  font-family: var(--serif); font-size: 1.15rem; line-height: 1;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
}
.product-price--request {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.5rem 0.85rem;
}
.product-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.product-price small { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.8; margin-right: 0.15rem; vertical-align: 0.15em; }
.product-unit { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss-dark); font-weight: 600; }
.product-body h3 { font-size: 1.4rem; margin: 0.5rem 0 0.7rem; }
.product-body p { font-size: 0.94rem; color: rgba(20,35,26,0.7); margin: 0; }

/* ---------- Inline info band ---------- */
.info-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.8rem, 3.5vw, 2.6rem) clamp(1.8rem, 4vw, 3rem);
  background: var(--forest-800); color: var(--cream); border-radius: var(--radius);
}
.info-band .ib-text h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 0.4rem; }
.info-band .ib-text p { color: rgba(250,248,242,0.75); margin: 0; }
.price-note { font-size: 0.9rem; color: rgba(20,35,26,0.6); margin-top: 1rem; }

/* ---------- Produkt-Details & Preise (Spec-Blöcke) ---------- */
.specs { display: grid; gap: 0; }
.spec {
  display: grid; grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
  padding: clamp(2.2rem, 4.5vw, 3.4rem) 0; border-top: 1px solid var(--line);
}
.spec:first-child { border-top: 0; padding-top: 0; }
.spec.anchor { scroll-margin-top: 6rem; }
.spec-body .eyebrow { margin-bottom: 0.4rem; }
.spec-body h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin: 0.5rem 0 0.4rem; }
.spec-sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--moss-dark); margin-bottom: 1.1rem; }
.spec-body p { color: rgba(20,35,26,0.76); margin-bottom: 0.9rem; }
.spec-body p:last-of-type { margin-bottom: 0; }
.spec-list-title { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss-dark); margin: 1.5rem 0 0.85rem; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.spec-tags li { background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; padding: 0.42rem 0.95rem; font-size: 0.86rem; }
.spec-meta { margin-top: 1.4rem; font-size: 0.92rem; color: rgba(20,35,26,0.62); }
.spec-meta strong { color: var(--forest-800); font-weight: 600; }

.spec-aside { display: grid; gap: 1.2rem; position: sticky; top: 6rem; }
.spec-media { border-radius: var(--radius); overflow: hidden; }
.spec-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1s var(--ease); }
.spec-media:hover img { transform: scale(1.05); }
.spec-media:hover img.rotate-right { transform: rotate(90deg) scale(1.2); }
.price-panel { background: var(--forest-800); color: var(--cream); border-radius: var(--radius); padding: 1.4rem 1.6rem 1.6rem; }
.price-panel h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss-light); margin-bottom: 0.9rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--line-light); }
.price-row:last-of-type { border-bottom: 0; }
.price-row .lbl { font-size: 0.95rem; color: rgba(250,248,242,0.82); }
.price-row .val { font-family: var(--serif); font-size: 1.25rem; white-space: nowrap; }
.price-note-sm { font-size: 0.82rem; color: rgba(250,248,242,0.6); margin-top: 0.9rem; line-height: 1.5; }

@media (max-width: 860px) {
  .spec { grid-template-columns: 1fr; }
  .spec-aside { position: static; }
}

/* ---------- Klickbare Produktkarte (Karte -> Beschreibung) ---------- */
a.product-card { cursor: pointer; }
a.product-card .product-more {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: auto;
  padding-top: 1rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--moss-dark);
}
a.product-card .product-more svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
a.product-card:hover .product-more svg { transform: translateX(4px); }
a.product-card:hover .product-more { color: var(--forest-800); }

/* ---------- Varianten-Liste (Baumaterial-Details) ---------- */
.variant { padding: 1.1rem 0; border-top: 1px dashed var(--line); }
.variant:first-of-type { border-top: 0; padding-top: 0; }
.variant-head { display: flex; flex-wrap: wrap; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; }
.variant h4 { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.koernung { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--moss-dark); background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; padding: 0.24rem 0.7rem; white-space: nowrap; }
.variant .einsatz { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-dark); display: block; margin-bottom: 0.15rem; }
.variant p { font-size: 0.95rem; color: rgba(20,35,26,0.74); margin: 0; }

/* ---------- Projekt-Galerie (Meine Projekte) ---------- */
.projects { display: grid; gap: clamp(3rem, 6vw, 5.5rem); }
.project-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1rem 2rem; margin-bottom: 1.5rem; }
.project-head h3 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
.project-head .p-index { font-family: var(--serif); font-size: 1rem; color: var(--moss); }
.project-head p { color: rgba(20,35,26,0.7); max-width: 46ch; margin-top: 0.5rem; }
.gallery {
  display: flex; gap: clamp(0.8rem, 2vw, 1.4rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.1rem; scroll-padding-left: var(--pad);
  -webkit-overflow-scrolling: touch;
}
.gallery figure {
  flex: 0 0 min(82%, 36rem); scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; position: relative;
}
.gallery img {
  width: 100%; height: clamp(15rem, 40vw, 27rem); object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.5rem 1.2rem 1rem; color: var(--cream); font-size: 0.86rem;
  background: linear-gradient(to top, rgba(13,26,18,0.8), rgba(13,26,18,0));
}
.gallery::-webkit-scrollbar { height: 7px; }
.gallery::-webkit-scrollbar-track { background: var(--cream-2); border-radius: 100px; }
.gallery::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 100px; }
.gallery::-webkit-scrollbar-thumb:hover { background: var(--moss); }
.gallery { scrollbar-color: var(--sage) var(--cream-2); scrollbar-width: thin; }
.gallery-hint { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss-dark); margin-top: 0.8rem; }
.gallery-hint svg { width: 26px; height: 14px; }

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ---------- Sticky-stack panels (Leistungen) ---------- */
.stack { position: relative; }
.stack-panel {
  position: sticky; top: 0;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: var(--cream);
  border-top-left-radius: clamp(20px, 3vw, 32px);
  border-top-right-radius: clamp(20px, 3vw, 32px);
  isolation: isolate;
}
.stack-panel .sp-bg { position: absolute; inset: 0; z-index: -2; }
.stack-panel .sp-bg img { width: 100%; height: 100%; object-fit: cover; }
.stack-panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(13,26,18,0.94) 0%, rgba(13,26,18,0.7) 45%, rgba(13,26,18,0.28) 100%);
}
.stack-panel .sp-index {
  position: absolute; top: clamp(5.5rem, 12vh, 8rem); right: var(--pad);
  font-family: var(--serif); font-size: clamp(4rem, 12vw, 9rem);
  line-height: 1; color: rgba(250,248,242,0.14); letter-spacing: -0.03em;
}
.sp-inner { max-width: 46rem; }
.stack-panel .eyebrow { color: var(--moss-light); }
.stack-panel h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 300; margin: 1.4rem 0; letter-spacing: -0.03em; }
.stack-panel h2 em { font-style: italic; color: var(--sage); }
.stack-panel p { color: rgba(250,248,242,0.82); font-size: clamp(1.02rem, 1.4vw, 1.2rem); max-width: 44ch; }
.stack-panel .btn { margin-top: 2.2rem; }

/* ---------- Sticky scroll gallery ---------- */
.sticky-gallery { background: var(--cream); }
.sg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2.5rem); }
.sg-text { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.sg-text h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); margin: 1.2rem 0 1.4rem; }
.sg-text p { color: rgba(20,35,26,0.7); max-width: 40ch; }
.sg-media { display: grid; gap: clamp(1.2rem, 3vw, 2rem); padding: 12vh 0; }
.sg-media figure { display: grid; place-content: center; }
.sg-media figure:nth-child(odd)  { transform: skewX(-9deg); }
.sg-media figure:nth-child(even) { transform: skewX(9deg); }
.sg-media img {
  width: min(30rem, 90%); aspect-ratio: 4/5; object-fit: cover;
  border-radius: 14px; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  box-shadow: 0 30px 60px -30px rgba(13,26,18,0.4);
}
.sg-media figure:hover img { transform: scale(1.04) skewX(0deg); }

/* second gallery variant: images stack (sticky), text sticky */
.sg-media.stackimg figure { position: sticky; top: 0; height: 100vh; place-content: center; transform: none; padding: 0; }
.sg-media.stackimg img { aspect-ratio: 1/1; width: min(28rem, 90%); }

@media (max-width: 860px) {
  .sg-grid { grid-template-columns: 1fr; gap: 0; }
  .sg-text { position: static; height: auto; padding: 4rem 0 1rem; }
  .sg-media { padding: 0 0 3rem; }
  .sg-media figure:nth-child(odd), .sg-media figure:nth-child(even) { transform: none; }
  .sg-media.stackimg figure { position: static; height: auto; }
  .stack-panel .sp-index { font-size: clamp(3rem, 16vw, 5rem); top: 5rem; }
}

/* ---------- Legal / prose pages ---------- */
.legal-hero { padding: 10rem 0 3rem; background: var(--forest-800); color: var(--cream); }
.legal-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 300; margin-top: 1rem; }
.legal-hero .eyebrow { color: var(--moss-light); }
.legal-body { max-width: 780px; }
.legal-body h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 2.4rem 0 0.8rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; }
.legal-body p, .legal-body li { color: rgba(20,35,26,0.82); margin-bottom: 0.8rem; }
.legal-body ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-body a { color: var(--moss-dark); text-decoration: underline; text-underline-offset: 3px; }
.placeholder {
  background: #fff4d6; color: #6b4e00; border: 1px dashed #d9a400;
  padding: 0.05em 0.45em; border-radius: 5px; font-size: 0.92em; font-weight: 600;
}

/* ---------- Consent checkbox ---------- */
.consent { display: flex; align-items: flex-start; gap: 0.7rem; margin: 0.4rem 0 1.4rem; font-size: 0.9rem; color: rgba(20,35,26,0.75); }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--moss); }
.consent a { color: var(--moss-dark); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: var(--cream); padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand-name { color: var(--cream); }
.footer-brand p { color: rgba(250,248,242,0.66); max-width: 34ch; margin-top: 1.2rem; font-size: 0.96rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss-light); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { color: rgba(250,248,242,0.7); font-size: 0.96rem; display: block; margin-bottom: 0.7rem; transition: color .3s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; font-size: 0.85rem; color: rgba(250,248,242,0.5); }
.footer-bottom .fb-links { display: flex; gap: 1.5rem; }

/* ---------- Reveal animation ---------- */
/* Nur verstecken, wenn JS aktiv ist (Klasse .js am <html>). Ohne JS bleibt alles sichtbar. */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .svc-grid, .why-grid, .process-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .header-phone { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid .contact-side, .contact-grid .form-card { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .svc-grid, .why-grid, .process-grid, .mini-grid, .product-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .stat { padding: 1.3rem; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
}

/* Hero-Inhalt wird weiter unten zentriert gesetzt (Korrekturrunde 08/2026). */

/* ===== TEST: Header-CTA grün & schlanker ===== */
.site-header .btn-primary {
  background: var(--moss);
  color: var(--cream);
  padding: 0.62rem 1.35rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.site-header .btn-primary:hover { background: var(--forest-600); transform: translateY(-2px); }

/* ======================================================
   Mobile-Feinschliff (Handysicht)
   ====================================================== */
@media (max-width: 640px){
  /* Header entlasten: CTA in den Burger, Wortmarke einzeilig */
  .site-header .btn-primary{ display:none; }
  .brand-name{ font-size:1.1rem; letter-spacing:-.01em; }
  .header-inner{ gap:1rem; }

  /* Lange deutsche Wörter sauber umbrechen statt abschneiden */
  h1,h2,h3{ overflow-wrap:break-word; -webkit-hyphens:auto; hyphens:auto; }

  /* Headline-Größen fürs Handy zähmen */
  .hero h1{ font-size:clamp(2.5rem,10.5vw,3.4rem); }
  .page-hero h1{ font-size:clamp(2.1rem,9vw,3rem); }
  .stack-panel h2{ font-size:clamp(1.9rem,7.6vw,2.7rem); }
  .stack-panel .sp-index{ font-size:clamp(3rem,15vw,4.5rem); top:5.5rem; right:1.25rem; }
  .cta-band h2, .split h2, .section-head h2{ font-size:clamp(1.9rem,7.4vw,2.6rem); }
}
@media (max-width: 400px){
  .brand-name{ font-size:1rem; }
}

/* ======================================================
   Inhaber-Foto (rund) im Über-uns-Bereich
   ====================================================== */
.owner { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.owner-photo { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; border: 2px solid var(--sand); flex-shrink: 0; }
.owner-photo.is-placeholder { display: grid; place-items: center; background: var(--forest-800); color: var(--sage); font-family: var(--serif); font-size: 1.7rem; }
.owner-meta strong { display: block; font-family: var(--serif); font-size: 1.1rem; line-height: 1.1; }
.owner-meta span { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss-dark); }
/* Großes Inhaber-Foto (Hochformat) im Über-uns-Bereich */
.split-media--portrait img { aspect-ratio: 4 / 5; object-position: 50% 18%; }

/* ======================================================
   FAQ – Akkordeon (ohne JS, via <details>)
   ====================================================== */
.faq { max-width: 900px; margin: 0 auto; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.35rem 0.2rem; font-family: var(--serif); font-size: clamp(1.12rem, 2vw, 1.4rem); color: var(--forest-800); transition: color .3s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--moss-dark); }
.faq .faq-ic { position: relative; flex-shrink: 0; width: 26px; height: 26px; }
.faq .faq-ic::before, .faq .faq-ic::after { content: ""; position: absolute; background: var(--moss); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.faq .faq-ic::before { top: 12px; left: 3px; width: 20px; height: 2px; }
.faq .faq-ic::after { top: 3px; left: 12px; width: 2px; height: 20px; }
.faq details[open] .faq-ic::after { transform: scaleY(0); opacity: 0; }
.faq details[open] summary { color: var(--moss-dark); }
.faq-answer { padding: 0 0.2rem 1.5rem; color: rgba(20,35,26,0.74); max-width: 62ch; font-size: 1.02rem; }

/* ======================================================
   Bewertungen (Sterne, Karten, Schreibfeld)
   ====================================================== */
.stars { display: inline-flex; gap: 0.15rem; color: #e0a83e; line-height: 0; }
.stars svg { width: 20px; height: 20px; }
.reviews-summary { display: flex; align-items: center; gap: 0.8rem; margin-top: 1rem; flex-wrap: wrap; }
.reviews-summary .stars svg { width: 24px; height: 24px; }
.reviews-summary span { font-size: 0.95rem; color: rgba(20,35,26,0.7); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(18rem,100%),1fr)); gap: 1.5rem; margin-top: clamp(2rem,4vw,3rem); }
.review-card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; display: flex; flex-direction: column; }
.review-card .stars { margin-bottom: 1rem; }
.review-card blockquote { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--forest-800); margin-bottom: 1.2rem; }
.review-author { margin-top: auto; font-size: 0.9rem; font-weight: 600; color: var(--moss-dark); }

.review-form { margin-top: clamp(2.5rem,5vw,3.5rem); background: var(--forest-800); color: var(--cream); border-radius: var(--radius); padding: clamp(1.8rem,4vw,3rem); max-width: 720px; }
.review-form h3 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 0.4rem; }
.review-form > p { color: rgba(250,248,242,0.75); margin-bottom: 1.6rem; max-width: 48ch; }
.review-form .field label, .review-form .star-label { color: var(--cream); }
.review-form .form-note { color: rgba(250,248,242,0.55); }
.star-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 0.25rem; margin: 0.2rem 0 0.4rem; }
.star-input input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.review-form .star-input label { cursor: pointer; color: rgba(250,248,242,0.28); transition: color .15s, transform .15s; line-height: 0; }
.star-input label svg { width: 34px; height: 34px; }
.review-form .star-input input:checked ~ label,
.review-form .star-input label:hover, .review-form .star-input label:hover ~ label { color: #e0a83e; }
.star-input label:hover { transform: scale(1.12); }
.star-input input:focus-visible ~ label { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

/* ======================================================
   Öffnungszeiten (Kontakt)
   ====================================================== */
.hours { margin-top: 1.5rem; padding: 1.4rem 1.6rem; border-radius: 14px; background: var(--cream-2); border: 1px solid var(--line); }
.hours h4 { font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss-dark); margin-bottom: 1rem; }
.hours .h-row { display: flex; justify-content: space-between; gap: 1.2rem; padding: 0.45rem 0; border-bottom: 1px solid var(--line); }
.hours .h-row:last-of-type { border-bottom: 0; }
.hours .h-row .d { color: rgba(20,35,26,0.72); white-space: nowrap; }
.hours .h-row .t { text-align: right; font-weight: 600; color: var(--forest-800); }
.hours .hours-note { margin-top: 1rem; font-size: 0.92rem; color: rgba(20,35,26,0.7); line-height: 1.5; }

/* ======================================================
   Cookie-/Datenschutz-Hinweis
   ====================================================== */
.cookie-notice {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
  max-width: 660px; margin: 0 auto;
  background: var(--forest-800); color: var(--cream);
  border: 1px solid var(--line-light); border-radius: 16px;
  padding: 1.1rem 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem 1.2rem;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.55);
  transform: translateY(160%); transition: transform .5s var(--ease);
}
.cookie-notice.show { transform: none; }
.cookie-notice p { flex: 1; min-width: 200px; margin: 0; font-size: 0.86rem; line-height: 1.5; color: rgba(250,248,242,0.85); }
.cookie-notice a { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice .cookie-ok { flex-shrink: 0; padding: 0.7rem 1.5rem; font-size: 0.9rem; }
@media (max-width: 480px) { .cookie-notice .cookie-ok { width: 100%; justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .cookie-notice { transition: none; } }

/* =====================================================================
   Ergänzungen Korrekturrunde 08/2026
   ===================================================================== */

/* ---------- Header: Platz für das größere Logo ---------- */
@media (max-width: 1240px) {
  .header-contact .hc-mail { display: none; }
}
@media (max-width: 1150px) {
  .header-contact { display: none; }
}
@media (max-width: 560px) {
  .brand-claim { letter-spacing: 0.14em; font-size: 0.5rem; }
}

/* ---------- Mobile Aktionsleiste: Anrufen / WhatsApp / Anfragen ---------- */
.quick-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 98;
  display: none;
  background: rgba(13, 26, 18, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-light);
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
}
.quick-bar-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
.qb-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.28rem;
  padding: 0.6rem 0.3rem; border-radius: 12px;
  color: var(--cream); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background .3s var(--ease);
}
.qb-item:hover, .qb-item:focus-visible { background: rgba(250, 248, 242, 0.1); }
.qb-item svg { width: 20px; height: 20px; color: var(--moss-light); }
.qb-item--primary { background: var(--moss); }
.qb-item--primary svg { color: var(--cream); }
.qb-item--primary:hover { background: var(--forest-600); }
@media (max-width: 780px) {
  .quick-bar { display: block; }
  body { padding-bottom: 4.6rem; }
  .mobile-menu { padding-bottom: 6rem; }
}

/* ---------- Rollrasen-Sorten direkt auf der Leistungsseite ---------- */
.products-intro + .product-grid { margin-top: clamp(2rem, 4vw, 3rem); }

/* ---------- Projektgalerie: einheitliche Bildhöhe trotz Hochformat ---------- */
.gallery figure img { background: var(--cream-2); }

/* ---------- Hinweis-Badge für fehlende Kundendaten ---------- */
.placeholder {
  background: #fff3cd; color: #6b4d00; padding: 0.15rem 0.45rem;
  border-radius: 6px; font-size: 0.86em;
}

#anfragen { scroll-margin-top: 5.5rem; }

/* ---------- Bildmarke „Rollrasen Experte" ---------- */
.brand-logo {
  width: clamp(76px, 7.6vw, 110px);
  height: clamp(76px, 7.6vw, 110px);
  flex: none;
  /* Logo ist freigestellt – keine weiße Platte, nur ein weicher Schatten
     zur Trennung vom Hintergrund. */
  background: transparent;
  border-radius: 50%;
  overflow: visible;
  filter: drop-shadow(0 5px 16px rgba(9, 19, 13, 0.38));
  transition: width .4s var(--ease), height .4s var(--ease), transform .5s var(--ease);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand:hover .brand-logo { transform: scale(1.04); }
.site-header.scrolled .brand-logo { width: 64px; height: 64px; filter: drop-shadow(0 2px 8px rgba(9, 19, 13, 0.18)); }
.site-header { padding: 1rem 0; }

/* Claim neben der Bildmarke */
.brand-text { justify-content: center; }
.brand-claim { letter-spacing: 0.22em; }
@media (max-width: 900px) {
  .brand-claim { display: none; }
}

/* ---------- Header: Navigation exakt in der Mitte ----------
   Das Logo trägt den Namen bereits – der Claim würde die Navigation
   nur aus der Mitte drücken und steht deshalb im Footer. */
.site-header .brand-claim { display: none; }
@media (min-width: 1151px) {
  /* Echtes 3-Spalten-Raster: die Navigation sitzt in der Mittelspalte.
     Raster-Spalten können sich nicht überlappen – anders als absolute Positionierung. */
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.5rem;
  }
  /* Seitenspalten dürfen NICHT unter ihren Inhalt schrumpfen –
     sonst laufen Telefonnummer und Navigation ineinander. */
  .brand        { justify-self: start; }
  .nav-links    { justify-self: center; min-width: 0; }
  .header-right { justify-self: end; gap: 1rem; white-space: nowrap; }
}


/* ---------- Hero: Inhalt mittig, CTA größer ---------- */
.hero .wrap.hero-inner {
  max-width: 68rem;
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: var(--pad);
  text-align: left;
}
.hero .lead { margin-left: 0; margin-right: 0; }
.hero-cta { justify-content: flex-start; }
.hero-cta .btn {
  padding: 1.15rem 2.4rem;
  font-size: 1.06rem;
  border-radius: 999px;
}
.hero-cta .btn svg { width: 20px; height: 20px; }
.hero .stats { margin-left: 0; margin-right: auto; }

/* Lesbarkeits-Schleier mittig statt links */
.hero::after {
  background:
    radial-gradient(105% 90% at 22% 58%, rgba(9,19,13,0.86) 0%, rgba(9,19,13,0.68) 34%, rgba(9,19,13,0.30) 62%, rgba(9,19,13,0) 86%),
    linear-gradient(to bottom, rgba(9,19,13,0.52) 0%, rgba(9,19,13,0.10) 16%, rgba(9,19,13,0) 34%),
    linear-gradient(100deg, rgba(9,19,13,0.46) 0%, rgba(9,19,13,0.16) 52%, rgba(9,19,13,0) 100%);
}

/* Navigation: etwas kompakter, damit sie mittig Platz hat */


/* Header darf breiter laufen als der Textkörper – schafft Platz für die
   mittige Navigation, ohne dass sie an Logo oder CTA stößt. */
@media (min-width: 1151px) {
  .site-header .wrap { max-width: 1560px; }
  .nav-links { gap: 1.7rem; }
  .nav-links a { font-size: 1.06rem; font-weight: 600; }
  .header-phone { font-size: 1.02rem; }
  .site-header .btn-primary { font-size: 1rem; padding: 0.9rem 1.6rem; }
}

/* Headline: Größe so, dass die erste Zeile auf Desktop geschlossen bleibt */
@media (min-width: 1024px) {
  .hero h1 { font-size: clamp(3rem, 5.6vw, 5rem); }
}

/* Bei mittlerer Breite die Navigation etwas enger setzen, damit sie
   zwischen Logo und Telefonnummer mittig Platz findet. */
@media (min-width: 1151px) and (max-width: 1500px) {
  .nav-links { gap: 0.95rem; }
  .nav-links a { font-size: 0.95rem; }
  .header-phone { font-size: 0.9rem; }
  .site-header .btn-primary { font-size: 0.9rem; padding: 0.75rem 1.2rem; }
  .brand-logo { width: 80px; height: 80px; }
}

/* ---------- Mobilmenü: darf im geschlossenen Zustand nichts durchscheinen ----------
   Es ist per translateY(-100%) nach oben geschoben. Wurde der Inhalt höher als
   der Bildschirm, ragte er unten wieder ins Bild ("hatsApp" über dem Hero). */
.mobile-menu {
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}
/* Die Kontaktzeilen im Menüfuß gehören klein und in die Grotesk –
   .mobile-menu a hatte sie bisher auf Headline-Größe gezogen. */
.mobile-menu .mm-foot a {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0;
}

/* ---------- Hero auf kleinen Bildschirmen: mehr Kontrast ----------
   Der Text nimmt hier fast die ganze Breite ein, der weiche Mittelverlauf
   allein reicht für die Lesbarkeit nicht aus. */
@media (max-width: 900px) {
  .hero-bg img { filter: brightness(1.06) saturate(1.04); }
  .hero::after {
    background:
      radial-gradient(135% 78% at 34% 56%, rgba(9,19,13,0.84) 0%, rgba(9,19,13,0.68) 45%, rgba(9,19,13,0.42) 72%, rgba(9,19,13,0.24) 100%),
      linear-gradient(to bottom, rgba(9,19,13,0.55) 0%, rgba(9,19,13,0.18) 18%, rgba(9,19,13,0.18) 70%, rgba(9,19,13,0.45) 100%);
  }
}


/* ---------- Rasenkante als Dekor im gescrollten Header ----------
   Steigt vom unteren Rand bis auf halbe Headerhöhe, wiederholt sich
   horizontal über die ganze Breite. Liegt hinter Logo, Navigation und CTA. */
.site-header.scrolled { position: fixed; }
.site-header.scrolled::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20240%2080%22%20width%3D%22240%22%20height%3D%2280%22%3E%3Cpath%20d%3D%22M5.7%2080%20Q4.6%2057.7%204.5%2039.4%20Q9.2%2060.5%2010.0%2080ZM13.0%2080%20Q12.7%2057.3%2013.4%2038.7%20Q16.0%2060.2%2015.7%2080ZM20.6%2080%20Q17.6%2054.4%2013.0%2033.4%20Q18.4%2057.6%2023.2%2080ZM24.1%2080%20Q17.2%2054.1%206.0%2032.9%20Q16.7%2057.4%2027.9%2080ZM36.7%2080%20Q37.9%2051.9%2041.7%2028.9%20Q43.5%2055.5%2040.4%2080ZM38.4%2080%20Q34.4%2065.5%2028.6%2053.6%20Q35.8%2067.3%2041.8%2080ZM45.5%2080%20Q44.8%2062.2%2044.5%2047.7%20Q47.3%2064.5%2047.9%2080ZM54.0%2080%20Q55.4%2053.7%2059.6%2032.1%20Q60.9%2057.0%2057.4%2080ZM61.3%2080%20Q58.0%2056.2%2053.2%2036.8%20Q59.6%2059.3%2064.6%2080ZM71.4%2080%20Q73.9%2051.5%2080.4%2028.1%20Q81.1%2055.1%2075.5%2080ZM73.9%2080%20Q69.4%2062.4%2062.4%2048.0%20Q69.7%2064.7%2076.9%2080ZM83.7%2080%20Q81.9%2060.0%2080.2%2043.6%20Q85.7%2062.5%2087.8%2080ZM91.8%2080%20Q87.4%2053.6%2080.1%2032.0%20Q87.0%2056.9%2094.2%2080ZM98.4%2080%20Q96.6%2059.0%2095.2%2041.8%20Q100.8%2061.7%20102.8%2080ZM100.0%2080%20Q96.5%2056.7%2091.8%2037.6%20Q98.9%2059.7%20104.0%2080ZM107.0%2080%20Q109.0%2060.9%20114.5%2045.4%20Q116.0%2063.4%20111.3%2080ZM114.1%2080%20Q109.5%2062.2%20102.1%2047.6%20Q109.3%2064.4%20116.7%2080ZM125.4%2080%20Q124.4%2063.2%20124.0%2049.4%20Q128.0%2065.3%20128.9%2080ZM128.4%2080%20Q129.9%2055.2%20133.8%2035.0%20Q134.4%2058.4%20131.0%2080ZM134.8%2080%20Q131.9%2059.7%20127.7%2043.1%20Q133.2%2062.3%20137.6%2080ZM147.2%2080%20Q152.1%2054.2%20162.4%2033.1%20Q159.6%2057.5%20150.2%2080ZM149.2%2080%20Q150.1%2060.1%20153.6%2043.7%20Q156.0%2062.6%20153.4%2080ZM155.4%2080%20Q151.3%2051.6%20144.9%2028.3%20Q151.7%2055.2%20158.3%2080ZM166.7%2080%20Q161.9%2061.0%20154.3%2045.4%20Q162.0%2063.4%20169.6%2080ZM169.2%2080%20Q170.0%2057.4%20172.7%2038.8%20Q174.2%2060.2%20172.1%2080ZM177.9%2080%20Q177.1%2059.2%20177.4%2042.2%20Q181.9%2061.9%20182.2%2080ZM186.1%2080%20Q180.8%2053.3%20172.0%2031.5%20Q180.1%2056.7%20188.9%2080ZM195.2%2080%20Q190.4%2054.0%20182.8%2032.7%20Q190.4%2057.3%20198.0%2080ZM201.0%2080%20Q207.2%2052.3%20220.1%2029.5%20Q215.6%2055.8%20203.8%2080ZM208.8%2080%20Q203.5%2057.1%20194.9%2038.3%20Q203.4%2060.0%20212.0%2080ZM210.3%2080%20Q213.0%2051.9%20219.1%2029.0%20Q218.6%2055.5%20213.2%2080ZM218.6%2080%20Q215.2%2053.9%20210.4%2032.6%20Q217.1%2057.2%20222.2%2080ZM225.0%2080%20Q221.1%2055.4%20214.8%2035.3%20Q221.2%2058.5%20227.5%2080ZM234.4%2080%20Q230.7%2053.5%20225.5%2031.8%20Q232.5%2056.9%20238.0%2080Z%22%20fill%3D%22%237fa878%22%20opacity%3D%220.55%22%2F%3E%3Cpath%20d%3D%22M6.3%2080%20Q2.5%2053.7%20-2.2%2032.2%20Q6.6%2057.0%2011.9%2080ZM15.2%2080%20Q21.2%2053.7%2034.2%2032.2%20Q31.3%2057.1%2019.6%2080ZM21.7%2080%20Q18.8%2051.5%2015.2%2028.2%20Q21.5%2055.1%2025.5%2080ZM36.6%2080%20Q34.7%2054.1%2033.4%2032.8%20Q39.5%2057.4%2041.4%2080ZM44.0%2080%20Q42.4%2051.5%2041.1%2028.1%20Q45.9%2055.1%2047.6%2080ZM51.0%2080%20Q44.4%2043.9%2034.3%2014.3%20Q45.4%2048.5%2055.8%2080ZM61.8%2080%20Q57.4%2054.7%2051.0%2034.1%20Q59.8%2058.0%2066.5%2080ZM69.3%2080%20Q73.4%2044.0%2083.1%2014.6%20Q82.5%2048.6%2073.9%2080ZM80.6%2080%20Q78.1%2048.4%2075.6%2022.5%20Q82.5%2052.4%2085.6%2080ZM88.8%2080%20Q96.7%2044.2%20112.8%2014.9%20Q107.2%2048.8%2092.3%2080ZM96.4%2080%20Q94.0%2058.2%2091.1%2040.4%20Q96.7%2061.0%20100.0%2080ZM103.6%2080%20Q105.2%2052.5%20110.1%2030.1%20Q112.0%2056.0%20107.9%2080ZM115.2%2080%20Q110.7%2040.7%20104.5%208.6%20Q113.6%2045.7%20120.3%2080ZM127.0%2080%20Q130.3%2045.9%20139.2%2018.0%20Q140.4%2050.3%20132.8%2080ZM136.7%2080%20Q141.9%2056.8%20153.4%2037.8%20Q151.0%2059.7%20140.6%2080ZM139.7%2080%20Q131.3%2041.0%20118.0%209.0%20Q132.0%2045.9%20145.5%2080ZM149.7%2080%20Q156.5%2041.1%20171.6%209.4%20Q169.2%2046.1%20155.6%2080ZM162.5%2080%20Q152.5%2044.6%20135.8%2015.6%20Q150.0%2049.1%20166.5%2080ZM171.0%2080%20Q170.4%2041.9%20171.8%2010.7%20Q177.4%2046.7%20176.8%2080ZM176.1%2080%20Q172.2%2057.5%20166.9%2039.0%20Q174.8%2060.3%20180.6%2080ZM185.4%2080%20Q180.1%2057.1%20172.3%2038.3%20Q181.9%2060.0%20190.0%2080ZM195.0%2080%20Q197.9%2057.7%20204.7%2039.4%20Q204.4%2060.5%20198.4%2080ZM209.0%2080%20Q212.9%2056.9%20222.3%2037.9%20Q222.2%2059.8%20213.9%2080ZM214.1%2080%20Q216.9%2054.0%20224.5%2032.7%20Q226.2%2057.3%20219.8%2080ZM225.7%2080%20Q221.4%2043.8%20215.4%2014.2%20Q224.1%2048.4%20230.5%2080ZM235.2%2080%20Q231.3%2044.1%20225.4%2014.6%20Q232.5%2048.6%20238.6%2080Z%22%20fill%3D%22%234a7c59%22%20opacity%3D%220.85%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 100%;
  opacity: 0.62;
  pointer-events: none;
  /* Nach oben hin ausblenden, damit die Halme nicht abgeschnitten wirken */
  -webkit-mask-image: linear-gradient(to top, #000 42%, rgba(0,0,0,0.55) 74%, transparent 100%);
          mask-image: linear-gradient(to top, #000 42%, rgba(0,0,0,0.55) 74%, transparent 100%);
}
/* Inhalte über das Dekor legen */
.site-header .header-inner { position: relative; z-index: 1; }

@media (prefers-reduced-motion: no-preference) {
  .site-header.scrolled::after { transition: opacity .5s var(--ease); }
}

/* ---------- Logo: freigestellt, aber auf dunklem Grund lesbar ----------
   Das Logo hat keine weiße Füllung mehr. Über dem dunklen Hero würde die
   dunkelgrüne Schrift verschwinden – deshalb dort eine halbdurchsichtige
   helle Fläche dahinter, die zum Rand hin ausläuft. */
.site-header:not(.scrolled) .brand-logo {
  /* Über dem dunklen Hero eine saubere weiße Scheibe – dunkelgrüne Schrift
     auf dunklem Grund wäre nicht lesbar. Auf dem hellen Header entfällt sie,
     dort liegt das Logo frei auf Creme. */
  background: #fff;
  border-radius: 50%;
}

/* ---------- Video in der Projektgalerie ---------- */
.gallery figure.is-video {
  flex: 0 0 min(88%, 42rem);
  background: var(--forest-900);
}
.gallery figure.is-video video {
  width: 100%;
  height: clamp(15rem, 40vw, 27rem);
  object-fit: cover;
  display: block;
  background: var(--forest-900);
}
/* Beschriftung darf die Bedienleiste des Videos nicht überdecken */
.gallery figure.is-video figcaption {
  bottom: auto; top: 0;
  padding: 1rem 1.2rem 2.5rem;
  background: linear-gradient(to bottom, rgba(13,26,18,0.82), rgba(13,26,18,0));
  pointer-events: none;
}
