/* ============================================================
   TOKENS — Light/Warm/Green Theme
   ============================================================ */
:root {
  /* Backgrounds — warm off-white to cream */
  --bg:        #FAFAF6;          /* Ivory base */
  --bg-2:      #F4F1E8;          /* Cream — alternating sections */
  --bg-3:      #ECE7D7;          /* Sand — for deeper section breaks */
  --surface:   #FFFFFF;          /* Pure card */
  --surface-2: #F0F5EC;          /* Mint-tinted surface for hovers */

  /* Borders — soft, warm */
  --border:    rgba(45,80,45,0.10);
  --border-hi: rgba(45,80,45,0.22);

  /* Text — anthracite with green undertone */
  --text:      #1A2A1F;          /* deep forest, near-black */
  --text-2:    #4A5A4F;          /* medium */
  --text-3:    #7A857F;          /* muted */
  --text-inv:  #FAFAF6;          /* on dark surfaces */

  /* Brand greens — lively but premium */
  --brand-deep: #1A4A26;         /* forest, for dark accents */
  --brand:      #2D7A3F;         /* primary green */
  --brand-mid:  #3A9550;         /* button green */
  --brand-hi:   #4DB068;         /* lively, vivid */
  --brand-glow: #7FD894;         /* highlight, pop */
  --brand-soft: #E8F2E5;         /* tinted background */
  --brand-tint: #F4F9F1;         /* very subtle tint */

  /* Accents */
  --accent-warm: #B89253;        /* warm bronze for guarantee badge */
  --accent-warm-hi: #D4AF6A;
  --accent-soft: #F5EDD8;        /* warm tint background */
  --red:        #C8493E;
  --blue:       #4A8DE0;

  /* Shadows — soft, with green undertone for elevation */
  --shadow-sm: 0 1px 2px rgba(26,42,31,.06), 0 1px 1px rgba(26,42,31,.04);
  --shadow-md: 0 4px 12px -2px rgba(26,42,31,.08), 0 2px 4px rgba(26,42,31,.05);
  --shadow-lg: 0 18px 40px -12px rgba(26,42,31,.15), 0 8px 18px -6px rgba(26,42,31,.08);
  --shadow-glow: 0 0 32px -6px rgba(77,176,104,.30);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ff-display: "Fraunces", ui-serif, Georgia, serif;
  --ff-body:    "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono:    "Geist Mono", ui-monospace, monospace;
}

/* Reset — explicit element list, leaves third-party widgets untouched */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, blockquote,
pre, form, fieldset, table, th, td, figure, button, input, textarea, select,
nav, header, footer, section, article, aside, main, div, span, a, img, svg {
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

/* Background atmosphere — soft greens + paper texture */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 1400px 700px at 90% -200px, rgba(77,176,104,.10), transparent 65%),
    radial-gradient(ellipse 900px 600px at -10% 110%, rgba(184,146,83,.06), transparent 60%),
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(77,176,104,.02), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.16 0 0 0 0 0.12 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: .35;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }
input, textarea, select { font: inherit; color: inherit; }

/* Typography */
.h-display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  letter-spacing: -0.035em;
  line-height: 0.92;
}
.h-italic { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--brand);
}

/* Layout helpers */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }
@media (max-width: 768px){
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--brand);
  color: #FAFAF6;
  box-shadow: 0 6px 20px -4px rgba(45,122,63,.4), var(--shadow-md);
}
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-2px); box-shadow: 0 12px 30px -6px rgba(45,122,63,.5); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-ghost:hover { border-color: var(--brand); background: var(--brand-tint); color: var(--brand); }
.btn-arrow { transition: transform .3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   TOP BANNER — live countdown
   ============================================================ */
.top-banner {
  background: linear-gradient(90deg, var(--brand-deep) 0%, var(--brand) 50%, var(--brand-deep) 100%);
  color: #FAFAF6;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 50;
}
.top-banner .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 10px; padding-bottom: 10px;
  flex-wrap: wrap; gap: 12px;
}
.top-banner-left {
  display: flex; align-items: center; gap: 14px; color: var(--brand-glow);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-glow);
  box-shadow: 0 0 0 0 rgba(127,216,148,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,216,148,.7); }
  70% { box-shadow: 0 0 0 12px rgba(127,216,148,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,216,148,0); }
}
.countdown {
  display: flex; gap: 6px; align-items: center; color: rgba(250,250,246,.85);
}
.countdown span { font-variant-numeric: tabular-nums; font-weight: 600; color: #FAFAF6; }
.countdown-label { color: rgba(250,250,246,.6); }

/* ============================================================
   NAV
   ============================================================ */
nav.main {
  position: sticky; top: 38px; z-index: 49;
  backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(250,250,246,.82);
  border-bottom: 1px solid var(--border);
}
nav.main .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.logo-mark {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark picture, .logo-mark img {
  display: block;
}
.logo-mark img {
  height: 56px;
  width: auto;
  max-width: 100%;
}
/* Mobile drawer logo — slightly smaller */
.mobile-drawer .logo-mark img { height: 44px; }
/* Footer logo */
footer .logo-mark img { height: 48px; opacity: .92; }
footer .logo-mark:hover img { opacity: 1; }

@media (max-width: 900px) {
  .logo-mark img { height: 42px; }
}
@media (max-width: 480px) {
  .logo-mark img { height: 36px; }
}

/* Legacy .logo-text rules kept for any leftover usage */
.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.logo-text strong {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-text small {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  color: var(--text-3);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color .25s;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.tel-cta {
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1;
  font-family: var(--ff-mono);
}
.tel-cta small { font-size: 10px; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; }
.tel-cta strong { font-size: 15px; color: var(--brand); font-weight: 600; letter-spacing: -0.01em; }

@media (max-width: 900px){
  .nav-links { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 80px 0 140px; position: relative; min-height: 92vh; display: flex; align-items: center; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) { .hero-grid { grid-template-columns: 1fr; gap: 60px; } }

.hero-title {
  font-size: clamp(56px, 9vw, 132px);
  margin: 28px 0 32px;
}
.hero-title .word-block { display: block; }
.hero-title .accent {
  color: var(--brand);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  background: linear-gradient(180deg, var(--brand), var(--brand-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.stat-num span { color: var(--brand-hi); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.stat-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 8px;
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual — animated comparison card (echte Fotos via clip-path) */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.hero-compare {
  position: absolute; inset: 0;
  background-image: url("assets/stein-vorher-1.jpg");
  background-size: cover;
  background-position: center;
}
.hero-compare-after {
  position: absolute; inset: 0;
  background-image: url("assets/stein-nachher-1.jpg");
  background-size: cover;
  background-position: center;
  /* Clip from left by var(--rev) — Nachher sichtbar RECHTS vom Handle */
  clip-path: inset(0 0 0 var(--rev, 50%));
}
.compare-handle {
  position: absolute; top: 0; bottom: 0;
  width: 3px;
  left: var(--rev, 50%);
  background: #FAFAF6;
  cursor: ew-resize;
  z-index: 3;
  box-shadow: 0 0 24px rgba(255,255,255,.6), 0 0 0 1px rgba(0,0,0,.1);
}
.compare-handle::after {
  content: "⇄";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: #FAFAF6; color: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,.35), 0 0 0 4px rgba(255,255,255,.4);
}
.compare-label {
  position: absolute; top: 22px;
  padding: 8px 14px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  color: var(--text);
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  border: 1px solid var(--border);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.compare-label.before { left: 22px; }
.compare-label.after { right: 22px; background: var(--brand); border-color: var(--brand-mid); color: #FAFAF6; }

.hero-floating-card {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  padding: 22px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  z-index: 4;
  display: flex; align-items: center; gap: 18px;
  box-shadow: var(--shadow-md);
}
.hero-floating-card .price {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-floating-card .price-old {
  font-size: 11px;
  color: var(--text-3);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.hero-floating-card .price-new {
  color: var(--brand); font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-floating-card .price-label {
  flex: 1;
  font-size: 13px;
  color: var(--text-2);
}
.hero-floating-card .save-badge {
  background: var(--brand); color: #FAFAF6;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600; font-size: 12px;
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
}
.trust-item .num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
}
.trust-item .num.green { color: var(--brand); }
.trust-item .lbl {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 900px){ .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.sec-head { margin-bottom: 64px; max-width: 900px; }
.sec-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-top: 18px;
}
.sec-head h2 .it {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--brand);
}
.sec-head p { margin-top: 22px; font-size: 19px; color: var(--text-2); max-width: 640px; }

/* ============================================================
   PREIS-KONFIGURATOR — GAMECHANGER #1
   ============================================================ */
.calc-section { position: relative; }
.calc-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.calc-card::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-hi), transparent);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  min-height: 620px;
}
@media (max-width: 1000px) { .calc-grid { grid-template-columns: 1fr; } }

.calc-left { padding: 48px 44px; display: flex; flex-direction: column; gap: 36px; }
.calc-right {
  background: linear-gradient(180deg, var(--brand-tint), var(--surface-2));
  border-left: 1px solid var(--border);
  padding: 44px;
  display: flex; flex-direction: column;
}
@media (max-width: 1000px) { .calc-right { border-left: 0; border-top: 1px solid var(--border); } }
@media (max-width: 600px) { .calc-left { padding: 32px 24px; } .calc-right { padding: 32px 24px; } }

.calc-step-num-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-hi);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.calc-step-num-label::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--brand-hi);
}

/* Service tiles */
.calc-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 600px) { .calc-services { grid-template-columns: 1fr; } }
.calc-service {
  position: relative;
  padding: 18px 16px;
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  min-height: 96px;
}
.calc-service:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.calc-service.active { border-color: var(--brand-hi); background: rgba(31,139,63,.08); box-shadow: 0 0 0 3px rgba(93,214,115,.10); }
.calc-service-pat {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  opacity: .14;
  pointer-events: none;
  transition: opacity .3s;
}
.calc-service.active .calc-service-pat { opacity: .22; }
.calc-service strong { display: block; font-size: 16px; font-weight: 500; margin-bottom: 4px; position: relative; z-index: 1; }
.calc-service span { display: block; font-size: 11px; color: var(--text-3); position: relative; z-index: 1; line-height: 1.4; }

/* Slider */
.calc-slider-row { display: flex; align-items: center; gap: 24px; }
.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  background: var(--brand-hi);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 20px var(--brand-glow), 0 4px 12px rgba(0,0,0,.3);
  transition: transform .2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  background: var(--brand-hi);
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  box-shadow: 0 0 20px var(--brand-glow), 0 4px 12px rgba(0,0,0,.3);
}
.calc-slider-value {
  font-family: var(--ff-display);
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  min-width: 110px;
  text-align: right;
  font-variation-settings: "opsz" 144;
}
.calc-slider-value span {
  color: var(--brand-hi);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-variant-numeric: tabular-nums;
}
.calc-slider-value small {
  font-size: 14px;
  color: var(--text-3);
  font-style: normal;
  font-family: var(--ff-mono);
  margin-left: 6px;
  font-variation-settings: normal;
}
.calc-slider-hints {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em;
}

/* Package tiles */
.calc-packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 600px) { .calc-packages { grid-template-columns: 1fr; } }
.calc-pkg {
  position: relative;
  padding: 20px 16px 18px;
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
}
.calc-pkg:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.calc-pkg.active { border-color: var(--brand-hi); background: rgba(31,139,63,.08); box-shadow: 0 0 0 3px rgba(93,214,115,.10); }
.calc-pkg-tag {
  position: absolute; top: -9px; right: 12px;
  background: var(--brand); color: #FAFAF6;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600;
}
.calc-pkg-name {
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
}
.calc-pkg-desc { font-size: 12px; color: var(--text-2); margin-bottom: 12px; line-height: 1.4; }
.calc-pkg-check {
  font-size: 11px;
  color: var(--brand-hi);
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* Summary panel */
.calc-summary { display: flex; flex-direction: column; height: 100%; }
.calc-summary-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}

/* Result headline block */
.calc-result {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.calc-result-headline {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3.6vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  margin-bottom: 10px;
}
.calc-result-meta {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Savings indicator (bar + percent) */
.calc-indicator {
  margin-bottom: 28px;
}
.calc-indicator-label {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.calc-indicator-label > span {
  font-size: 13px;
  color: var(--text-2);
}
.calc-indicator-label strong {
  font-family: var(--ff-display);
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--brand);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1;
}
.calc-indicator-bar {
  height: 10px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.calc-indicator-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand) 50%, var(--brand-hi));
  border-radius: 999px;
  transition: width .6s cubic-bezier(.2,.8,.2,1);
  position: relative;
}
.calc-indicator-fill::after {
  content: "";
  position: absolute; top: 0; right: -2px; bottom: 0;
  width: 4px;
  background: var(--brand-glow);
  border-radius: 999px;
  box-shadow: 0 0 12px var(--brand-hi);
}
.calc-indicator-hint {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Value badges row */
.calc-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.calc-badge {
  padding: 14px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  text-align: center;
  transition: all .25s;
}
.calc-badge:hover { border-color: var(--border-hi); }
.calc-badge.highlight {
  background: linear-gradient(135deg, var(--brand-tint), var(--brand-soft));
  border-color: var(--brand-hi);
}
.calc-badge-val {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
  font-variant-numeric: tabular-nums;
}
.calc-badge.highlight .calc-badge-val { color: var(--brand); }
.calc-badge-lbl {
  font-family: var(--ff-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.calc-includes { margin-bottom: 28px; }
.calc-includes strong.label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 12px;
  font-weight: 500;
}
.calc-includes ul { list-style: none; }
.calc-includes li {
  font-size: 13px;
  color: var(--text-2);
  padding: 5px 0;
  display: flex; gap: 10px;
}
.calc-includes li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

.calc-cta { width: 100%; justify-content: center; margin-bottom: 12px; }
.calc-note { font-size: 11px; color: var(--text-3); text-align: center; line-height: 1.5; }

/* ============================================================
   LEISTUNGEN — BENTO GRID
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
@media (max-width: 1100px) { .bento { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .bento { grid-template-columns: 1fr; grid-auto-rows: 280px; } }

.bento-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--border-hi); box-shadow: var(--shadow-lg); }
.bento-card .bg-pattern {
  position: absolute; inset: 0;
  opacity: .25; pointer-events: none;
  transition: opacity .4s;
}
.bento-card:hover .bg-pattern { opacity: .5; }

.bento-card .label {
  display: inline-flex; gap: 6px; align-items: center;
  font-family: var(--ff-mono); font-size: 10px;
  color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.bento-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  position: relative; z-index: 2;
}
.bento-card .h-it { font-style: italic; color: var(--brand); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.bento-card p.desc { font-size: 13px; color: var(--text-2); margin-top: 10px; position: relative; z-index: 2; max-width: 90%; }
.bento-card .arrow {
  width: 36px; height: 36px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  align-self: flex-end;
  transition: all .3s;
  position: relative; z-index: 2;
}
.bento-card:hover .arrow { background: var(--brand); border-color: var(--brand); color: #FAFAF6; transform: rotate(-45deg); }

/* Bento variations */
.bento-1 { grid-column: span 3; grid-row: span 2; }
.bento-1 h3 { font-size: 56px; }
.bento-2 { grid-column: span 3; }
.bento-2 h3 { font-size: 32px; }
.bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 2; }
.bento-3 h3, .bento-4 h3, .bento-5 h3, .bento-6 h3 { font-size: 28px; }

@media (max-width: 1100px) {
  .bento-1 { grid-column: span 3; grid-row: span 2; }
  .bento-2 { grid-column: span 3; }
  .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 1; }
}
@media (max-width: 700px) {
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 1; grid-row: auto; }
  .bento-1 h3 { font-size: 40px; }
}

/* Pattern fills per card — light theme: subtle tints */
.pat-stone { background:
  radial-gradient(circle at 20% 30%, rgba(160,130,100,.18), transparent 55%),
  repeating-linear-gradient(45deg, rgba(140,115,90,.12) 0 20px, rgba(110,90,70,.16) 20px 40px); }
.pat-roof { background:
  linear-gradient(135deg, rgba(200,90,60,.16), transparent 70%),
  repeating-linear-gradient(0deg, rgba(170,80,55,.12) 0 16px, transparent 16px 32px); }
.pat-facade { background:
  linear-gradient(180deg, rgba(220,200,150,.22), transparent 70%),
  repeating-linear-gradient(90deg, rgba(180,160,120,.14) 0 40px, transparent 40px 80px); }
.pat-paver { background:
  repeating-linear-gradient(90deg, rgba(130,135,140,.18) 0 28px, rgba(105,115,120,.22) 28px 56px),
  repeating-linear-gradient(0deg, rgba(0,0,0,.08) 0 28px, transparent 28px 56px); }
.pat-fence { background:
  repeating-linear-gradient(90deg, rgba(60,80,65,.25) 0 4px, transparent 4px 16px),
  linear-gradient(180deg, rgba(77,176,104,.10), transparent); }
.pat-lawn { background:
  radial-gradient(ellipse at 50% 100%, rgba(77,176,104,.28), transparent 70%),
  repeating-linear-gradient(110deg, rgba(45,122,63,.18) 0 2px, transparent 2px 8px); }
.pat-resin { background:
  radial-gradient(circle at 60% 40%, rgba(127,216,148,.25), transparent 60%),
  repeating-linear-gradient(45deg, rgba(77,176,104,.16) 0 14px, rgba(45,122,63,.18) 14px 28px); }

/* ============================================================
   DACH-VISUALIZER — GAMECHANGER #3
   ============================================================ */
.roof-section { background: var(--bg-2); }
.roof-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 1000px) { .roof-grid { grid-template-columns: 1fr; } }

.roof-stage {
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #6FB5E8 0%, #B8DCF0 50%, #D8E8C4 80%, #94B070 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.roof-house {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
}
/* SVG house */
.roof-house svg { width: 100%; height: 100%; }
.roof-tiles { fill: var(--roof-color, #C4533D); transition: fill .8s cubic-bezier(.2,.8,.2,1); }
.roof-tile-stroke { stroke: rgba(0,0,0,.2); stroke-width: 0.4; fill: none; }

.color-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.color-chip {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 2px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: all .3s;
  overflow: hidden;
}
.color-chip:hover { transform: translateY(-3px); border-color: var(--border-hi); }
.color-chip.active { border-color: var(--brand-hi); box-shadow: 0 0 0 4px rgba(93,214,115,.18); }
.color-chip span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 6px;
  background: rgba(0,0,0,.7);
  font-family: var(--ff-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-align: center;
  color: white;
}

.roof-feat-list { margin-top: 24px; }
.roof-feat {
  display: flex; gap: 12px; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.roof-feat:last-child { border-bottom: 0; }
.roof-feat-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(93,214,115,.15);
  color: var(--brand-hi);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.roof-feat strong { font-weight: 500; display: block; font-size: 15px; margin-bottom: 2px; }
.roof-feat span { color: var(--text-3); font-size: 13px; }

/* ============================================================
   PROCESS — wie es funktioniert
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 1000px) {
  .process-grid,
  .process-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .process-grid,
  .process-grid-3 { grid-template-columns: 1fr !important; }
}

.process-step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: all .3s;
  min-width: 0; /* erlaubt Schrumpfen im Grid */
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.process-step:hover { border-color: var(--brand-hi); transform: translateY(-4px); }
.process-step-num {
  font-family: var(--ff-display);
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--brand-hi);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--text-2); }
.process-step-time {
  margin-top: 18px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--surface-2);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}

/* ============================================================
   GARANTIE
   ============================================================ */
.garantie {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184,146,83,.15), transparent 60%),
    var(--bg-2);
}
.garantie-card {
  border: 1px solid var(--accent-warm-hi);
  border-radius: var(--r-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255,255,255,.4));
  box-shadow: var(--shadow-md);
}
.garantie-card::before {
  content: "";
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,146,83,.20), transparent 60%);
  pointer-events: none;
}
.garantie-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position: relative; }
@media (max-width: 900px) { .garantie-grid { grid-template-columns: 1fr; } .garantie-card { padding: 40px 28px; } }

.garantie-badge {
  width: 220px; height: 220px;
  margin: 0 auto;
  position: relative;
}
.garantie-badge svg { width: 100%; height: 100%; }
.garantie-eyebrow { color: var(--accent-warm); }
.garantie h2 { color: var(--text); }
.garantie h2 .it { color: var(--accent-warm); }
.garantie-bullets { margin-top: 28px; }
.garantie-bullet {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(184,146,83,.18);
  align-items: flex-start;
}
.garantie-bullet:last-child { border-bottom: 0; }
.garantie-bullet svg { width: 20px; height: 20px; stroke: var(--accent-warm); fill: none; stroke-width: 2.5; flex-shrink: 0; margin-top: 3px; }
.garantie-bullet strong { display: block; margin-bottom: 4px; font-weight: 500; }
.garantie-bullet span { color: var(--text-2); font-size: 14px; }

/* ============================================================
   STANDORTE
   ============================================================ */
.standort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .standort-grid { grid-template-columns: 1fr; } }
.standort-card {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.standort-card:hover { border-color: var(--brand-hi); transform: translateY(-3px); }
.standort-card .city {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.standort-card .plz { font-family: var(--ff-mono); font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 24px; }
.standort-card .addr { font-size: 14px; color: var(--text-2); margin-bottom: 4px; }
.standort-card .tel-row {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.standort-card .tel-row svg { width: 18px; height: 18px; stroke: var(--brand-hi); fill: none; stroke-width: 2; }
.standort-card .tel-row a { font-family: var(--ff-mono); font-size: 15px; color: var(--brand-hi); }
.standort-card .availability {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(93,214,115,.1);
  border: 1px solid rgba(93,214,115,.25);
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--brand-hi);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.standort-card .availability .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-hi);
  animation: pulse 2s infinite;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  text-align: center;
  padding: 140px 0;
  background:
    radial-gradient(ellipse at center, rgba(31,139,63,.12), transparent 60%),
    var(--bg);
}
.final-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 32px;
}
.final-cta h2 .it { font-style: italic; color: var(--brand-hi); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.final-cta p { color: var(--text-2); font-size: 19px; max-width: 600px; margin: 0 auto 40px; }
.final-options {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}
.final-stats {
  display: flex; justify-content: center; gap: 60px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  max-width: 800px; margin: 0 auto;
  flex-wrap: wrap;
}
.final-stat { text-align: center; }
.final-stat .v { font-family: var(--ff-display); font-size: 32px; letter-spacing: -0.03em; }
.final-stat .l { font-family: var(--ff-mono); font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 80px 0 32px;
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h5 {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color .25s; }
.footer-col a:hover { color: var(--brand-hi); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--ff-mono); font-size: 12px; color: var(--text-3);
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.2,.8,.2,1); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }

/* Tiny utility */
.muted { color: var(--text-2); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-toggle svg { width: 20px; height: 20px; stroke: var(--text); fill: none; stroke-width: 2; stroke-linecap: round; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(250,250,246,.98);
  backdrop-filter: blur(24px);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 0;
}
.mobile-drawer.open { display: flex; animation: drawerIn .3s ease; }
@keyframes drawerIn { from { opacity: 0; } to { opacity: 1; } }

.mobile-drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg);
  position: sticky; top: 0; z-index: 2;
}
.mobile-drawer-close {
  width: 44px; height: 44px;
  border: 1px solid var(--border-hi);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text);
  background: var(--surface);
  font-size: 0;
  flex-shrink: 0;
}
.mobile-drawer-close::before {
  content: "";
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A2A1F' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 6L18 18M6 18L18 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.mobile-drawer-close:hover { background: var(--brand-soft); border-color: var(--brand); }
.mobile-drawer-close:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D7A3F' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 6L18 18M6 18L18 6'/%3E%3C/svg%3E");
}

.mobile-drawer nav {
  display: flex; flex-direction: column;
  padding: 8px 24px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
}
.mobile-drawer nav a {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: -0.015em;
  padding: 14px 0;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-variation-settings: "opsz" 144;
  font-weight: 400;
}
.mobile-drawer nav a:last-child { border-bottom: 0; }

.mobile-drawer-footer {
  padding: 20px 24px;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
  background: var(--bg);
}
.mobile-drawer-footer a {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--text-2);
  padding: 10px 0;
}
.mobile-drawer-footer a svg { width: 18px; height: 18px; stroke: var(--brand-hi); fill: none; stroke-width: 2; }

/* ============================================================
   MOBILE BOTTOM CTA BAR
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 48;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(250,250,246,.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-hi);
  box-shadow: 0 -8px 30px -8px rgba(26,42,31,.15);
  gap: 10px;
}
.mobile-bottom-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}
.mobile-bottom-bar a.call { background: var(--brand); color: #FAFAF6; box-shadow: 0 4px 16px rgba(45,122,63,.35); }
.mobile-bottom-bar a.wa {
  background: rgba(45,122,63,.06);
  color: var(--brand);
  border: 1px solid var(--brand);
}
.mobile-bottom-bar a.wa svg { color: var(--brand); }
.mobile-bottom-bar svg { width: 18px; height: 18px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(31,139,63,.08), transparent 60%),
    var(--bg);
}
.contact-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.contact-card::before {
  content: "";
  position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-hi), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 600px;
}
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-left {
  padding: 56px 48px;
  display: flex; flex-direction: column;
  background:
    radial-gradient(circle at 20% 30%, rgba(31,139,63,.12), transparent 60%),
    var(--surface);
  border-right: 1px solid var(--border);
}
@media (max-width: 1000px) { .contact-left { border-right: 0; border-bottom: 1px solid var(--border); } }
@media (max-width: 600px) { .contact-left { padding: 36px 24px; } }

.contact-left h3 {
  font-family: var(--ff-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 16px 0 18px;
}
.contact-left h3 .it { font-style: italic; color: var(--brand-hi); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.contact-left p.lead { color: var(--text-2); font-size: 15px; margin-bottom: 32px; }

.contact-options { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }
.contact-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all .3s;
}
.contact-option:hover { border-color: var(--brand-hi); transform: translateX(4px); }
.contact-option-ic {
  width: 40px; height: 40px;
  background: rgba(93,214,115,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-option-ic svg { width: 18px; height: 18px; stroke: var(--brand-hi); fill: none; stroke-width: 2; }
.contact-option-text { flex: 1; }
.contact-option-text strong { display: block; font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.contact-option-text span { font-size: 12px; color: var(--text-3); font-family: var(--ff-mono); letter-spacing: 0.04em; }

.contact-right {
  padding: 56px 48px;
}
@media (max-width: 600px) { .contact-right { padding: 36px 24px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-field label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.form-field label .req { color: var(--brand-hi); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 14px;
  color: var(--text);
  font-size: 15px;
  transition: all .25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover { border-color: var(--border-hi); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--brand-hi); box-shadow: 0 0 0 3px rgba(93,214,115,.12); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-3); }
.form-field textarea { min-height: 100px; resize: vertical; font-family: inherit; }
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l5 6 5-6' stroke='%23F5F4EF' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-file {
  display: flex; align-items: center; gap: 12px;
  padding: 14px;
  background: var(--bg);
  border: 1px dashed var(--border-hi);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all .25s;
}
.form-file:hover { border-color: var(--brand-hi); background: rgba(93,214,115,.04); }
.form-file svg { width: 22px; height: 22px; stroke: var(--brand-hi); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.form-file-text { flex: 1; }
.form-file-text strong { display: block; font-size: 14px; }
.form-file-text span { font-size: 11px; color: var(--text-3); font-family: var(--ff-mono); }
.form-file input { display: none; }

.form-consent {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 18px 0 24px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}
.form-consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--brand-hi); width: 16px; height: 16px; }
.form-consent a { color: var(--brand-hi); text-decoration: underline; }

.form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-submit { width: 100%; justify-content: center; padding: 18px 26px; font-size: 16px; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success.show { display: block; }
.form-success-ic {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--brand-hi), var(--brand-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(93,214,115,.3);
}
.form-success-ic svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 3; }
.form-success h4 {
  font-family: var(--ff-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-2); max-width: 380px; margin: 0 auto; }

/* ============================================================
   MOBILE BREAKPOINT REFINEMENTS
   ============================================================ */
@media (max-width: 900px) {
  /* Top-Banner darf beim Scrollen wegrollen, der Nav klebt allein oben */
  .top-banner { position: relative; top: auto; }
  nav.main { top: 0; }

  .nav-cta .tel-cta { display: none; }
  .menu-toggle { display: flex; }
  nav.main .container { padding-top: 14px; padding-bottom: 14px; }
  .logo-mark svg { width: 38px; height: 38px; }
  .logo-text strong { font-size: 18px; }
  .logo-text small { font-size: 8.5px; }

  /* Body bottom padding so mobile bar doesn't cover content */
  body { padding-bottom: 76px; }
  .mobile-bottom-bar { display: flex; }
}
@media (max-width: 600px) {
  .top-banner { font-size: 10.5px; }
  .top-banner .container { gap: 8px; padding-top: 8px; padding-bottom: 8px; }
  .top-banner-left { gap: 10px; }
  .top-banner-left span:last-child { font-size: 9.5px; }

  .hero { padding: 50px 0 80px; min-height: auto; }
  .hero-title { font-size: clamp(48px, 13vw, 80px); }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .hero-stats .stat:last-child { grid-column: span 2; padding-top: 14px; border-top: 1px solid var(--border); }
  .stat-num { font-size: 32px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-floating-card { bottom: 18px; left: 18px; right: 18px; padding: 16px; gap: 12px; flex-wrap: wrap; }
  .hero-floating-card .price { font-size: 24px; }
  .hero-floating-card .price-label { font-size: 11px; flex: 1 100%; order: 3; }
  .hero-floating-card .save-badge { padding: 6px 10px; font-size: 10px; }
  .compare-handle::after { width: 40px; height: 40px; font-size: 16px; }
  .compare-label { font-size: 9px; padding: 6px 10px; top: 14px; }
  .compare-label.before { left: 14px; }
  .compare-label.after { right: 14px; }

  .trust-strip { padding: 28px 0; }
  .trust-item .num { font-size: 28px; }
  .trust-item .lbl { font-size: 10px; }

  .sec-head { margin-bottom: 48px; }
  .sec-head h2 { font-size: clamp(36px, 9vw, 56px); }
  .sec-head p { font-size: 16px; }

  .calc-services, .calc-packages { gap: 8px; }
  .calc-slider-value { font-size: 36px; min-width: 90px; }
  .calc-price-new { font-size: clamp(36px, 12vw, 56px); }

  .bento { grid-auto-rows: auto; gap: 12px; }
  .bento-card { padding: 22px; min-height: 220px; }
  .bento-card h3 { font-size: 28px !important; }

  .roof-stage { aspect-ratio: 5/4; }
  .color-controls { grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 20px; }
  .color-chip span { font-size: 8px; padding: 4px; }

  .process-step { padding: 24px 22px; }
  .process-step-num { font-size: 48px; }
  .process-step h4 { font-size: 20px; }

  .garantie-card { padding: 32px 24px; }
  .garantie-badge { width: 160px; height: 160px; }

  .standort-card { padding: 28px 24px; }
  .standort-card .city { font-size: 36px; }

  .contact-section { padding: 80px 0; }
  .final-cta { padding: 80px 0; }
  .final-cta p { font-size: 16px; }
  .final-options { flex-direction: column; align-items: stretch; }
  .final-options .btn { justify-content: center; }
  .final-stats { gap: 32px 24px; padding-top: 36px; }
  .final-stat .v { font-size: 26px; }
}

/* Reduced-motion: respect user preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
}

/* Focus-visible: clear accessibility ring */
:focus-visible {
  outline: 2px solid var(--brand-hi);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Print: leistungen, standorte, telefon */
@media print {
  body::before, body::after { display: none; }
  .top-banner, nav.main, .mobile-bottom-bar, .mobile-drawer, .hero-visual,
  .calc-section, .bg-pattern, .final-cta { display: none !important; }
  body { background: white; color: black; }
  * { color: black !important; }
}


/* ============================================================
   SERVICE-DETAIL PAGE COMPONENTS (dach.html, fassade.html, etc.)
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-3); transition: color .25s; }
.breadcrumb a:hover { color: var(--brand-hi); }
.breadcrumb .sep { color: var(--border-hi); }
.breadcrumb .current { color: var(--brand-hi); }

/* Comparison table (Reinigung vs Beschichtung vs Neueindeckung) */
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
}
.compare-table th,
.compare-table td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--surface);
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  border-top: 1px solid var(--border);
}
.compare-table thead th:first-child {
  border-top-left-radius: var(--r-lg);
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-3);
  font-weight: 500;
}
.compare-table thead th:last-child { border-top-right-radius: var(--r-lg); }
.compare-table thead th.featured {
  background: linear-gradient(180deg, rgba(31,139,63,.18), rgba(31,139,63,.06));
  color: var(--brand);
}
.compare-table thead th.featured .featured-badge {
  display: inline-block;
  background: var(--brand); color: #FAFAF6;
  font-family: var(--ff-mono); font-size: 9px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.compare-table tbody tr:hover td { background: rgba(45,122,63,.04); }
.compare-table tbody th {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  background: var(--bg-2);
  width: 220px;
}
.compare-table td { font-size: 14px; color: var(--text-2); }
.compare-table td.featured {
  background: rgba(31,139,63,.04);
  color: var(--text);
  font-weight: 500;
  border-left: 1px solid rgba(31,139,63,.18);
  border-right: 1px solid rgba(31,139,63,.18);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:last-child td:first-child { border-bottom-left-radius: var(--r-lg); }
.compare-table tbody tr:last-child td:last-child { border-bottom-right-radius: var(--r-lg); }
.compare-table .yes { color: var(--brand-hi); font-weight: 600; }
.compare-table .no  { color: var(--text-3); }

/* Tech specs grid */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1000px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .3s;
}
.tech-card:hover { border-color: var(--brand-hi); transform: translateY(-3px); }
.tech-card-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}
.tech-card-val {
  font-family: var(--ff-display);
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144;
}
.tech-card-val .it { font-style: italic; color: var(--brand-hi); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; }
.tech-card-val small { font-size: 16px; color: var(--text-3); font-style: normal; font-variation-settings: normal; font-family: var(--ff-mono); }
.tech-card-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* FAQ accordion */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .3s;
}
.faq-item:hover { border-color: var(--border-hi); }
.faq-item[open] { border-color: var(--brand-hi); background: rgba(31,139,63,.04); }
.faq-q {
  padding: 22px 26px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  list-style: none;
  font-variation-settings: "opsz" 144;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  width: 32px; height: 32px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all .3s;
}
.faq-item[open] .faq-q::after { content: "−"; background: var(--brand); color: #FAFAF6; border-color: var(--brand); }
.faq-a {
  padding: 0 26px 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}
.faq-a p + p { margin-top: 12px; }

/* Gallery grid (placeholder) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-card {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all .3s;
}
.gallery-card:hover { transform: translateY(-4px); border-color: var(--brand-hi); }
.gallery-card-pat {
  position: absolute; inset: 0;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.gallery-card:hover .gallery-card-pat { transform: scale(1.06); }
.gallery-card-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  color: white;
}
.gallery-card-meta strong { font-family: var(--ff-display); font-size: 18px; font-weight: 500; letter-spacing: -0.015em; display: block; margin-bottom: 4px; }
.gallery-card-meta span { font-family: var(--ff-mono); font-size: 11px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: 0.1em; }
.gallery-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 10px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Pattern variations for gallery */
.gal-pat-1 { background: radial-gradient(circle at 30% 50%, rgba(180,80,50,.6), transparent 60%), repeating-linear-gradient(45deg, rgba(140,60,40,.5) 0 18px, rgba(70,40,30,.6) 18px 36px); }
.gal-pat-2 { background: radial-gradient(circle at 60% 40%, rgba(60,90,140,.5), transparent 60%), repeating-linear-gradient(0deg, rgba(50,70,110,.4) 0 24px, rgba(20,40,70,.6) 24px 48px); }
.gal-pat-3 { background: radial-gradient(circle at 50% 50%, rgba(60,80,55,.6), transparent 60%), repeating-linear-gradient(60deg, rgba(45,80,55,.4) 0 16px, rgba(25,50,30,.6) 16px 32px); }
.gal-pat-4 { background: radial-gradient(circle at 40% 60%, rgba(150,120,90,.5), transparent 60%), repeating-linear-gradient(-30deg, rgba(120,90,60,.4) 0 20px, rgba(80,60,40,.6) 20px 40px); }
.gal-pat-5 { background: radial-gradient(circle at 50% 30%, rgba(60,60,80,.6), transparent 60%), repeating-linear-gradient(90deg, rgba(45,45,60,.5) 0 22px, rgba(20,20,30,.6) 22px 44px); }
.gal-pat-6 { background: radial-gradient(circle at 30% 70%, rgba(110,80,60,.5), transparent 60%), repeating-linear-gradient(30deg, rgba(90,60,45,.4) 0 18px, rgba(50,30,20,.6) 18px 36px); }

/* Service page hero — slimmer than homepage */
.service-hero {
  padding: 60px 0 100px;
  position: relative;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1000px) { .service-hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.service-hero-title {
  font-size: clamp(48px, 7vw, 96px);
  margin: 24px 0 24px;
  font-family: var(--ff-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.service-hero-title .it { font-style: italic; color: var(--brand-hi); font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; background: linear-gradient(180deg, var(--brand-hi), var(--brand-glow)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.service-hero-sub { font-size: 18px; color: var(--text-2); max-width: 540px; margin-bottom: 32px; }

/* Service-hero visual: animated roof close-up */
.service-hero-visual {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #6FB5E8 0%, #B8DCF0 40%, #D8E8C4 70%, #94B070 100%);
}
.service-hero-visual .roof-house {
  position: absolute; bottom: 0; left: 0; right: 0; height: 75%;
}
.service-hero-visual .roof-house svg { width: 100%; height: 100%; }
.service-hero-visual .auto-color-tag {
  position: absolute; top: 24px; right: 24px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(10px);
  border: 1px solid var(--border-hi);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--brand-hi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; gap: 8px; align-items: center;
}
.service-hero-visual .auto-color-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-hi); animation: pulse 2s infinite; }

@media (max-width: 600px) {
  .service-hero { padding: 40px 0 60px; }
  .service-hero-title { font-size: clamp(40px, 12vw, 64px); }
  .service-hero-sub { font-size: 15px; margin-bottom: 24px; }
  .compare-table { min-width: 600px; }
  .compare-table th, .compare-table td { padding: 16px; font-size: 13px; }
  .compare-table thead th { font-size: 18px; }
  .tech-card { padding: 22px 18px; }
  .tech-card-val { font-size: 28px; }
  .faq-q { font-size: 16px; padding: 18px 20px; }
  .faq-a { padding: 0 20px 20px; font-size: 14px; }
}

/* ============================================================
   VORHER/NACHHER ECHTE GALERIE (index.html)
   ============================================================ */
.vornach-section { background: var(--bg-2); }

.vornach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .vornach-grid { grid-template-columns: 1fr; gap: 24px; } }

.vornach-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s, box-shadow .3s;
}
.vornach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.vornach-compare {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--bg-3);
}
.vornach-before,
.vornach-after {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vornach-after {
  /* Clip from left by --rev — Nachher RECHTS vom Handle sichtbar, links bleibt das Vorher-Bild durchscheinend */
  clip-path: inset(0 0 0 var(--rev, 50%));
  transition: clip-path .05s linear;
}
.vornach-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--rev, 50%);
  transform: translateX(-50%);
  width: 3px;
  background: #FAFAF6;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18), 0 0 20px rgba(255,255,255,.5);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.vornach-handle svg {
  background: #FAFAF6;
  border-radius: 50%;
  width: 36px; height: 36px;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,.3), 0 0 0 3px rgba(255,255,255,.35);
}
.vornach-tag {
  position: absolute; top: 14px;
  padding: 6px 12px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  z-index: 2;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.vornach-tag.before {
  left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  border: 1px solid var(--border);
}
.vornach-tag.after {
  right: 14px;
  background: var(--brand);
  color: #FAFAF6;
  border: 1px solid var(--brand-mid);
}

.vornach-card figcaption {
  padding: 20px 22px 22px;
  border-top: 1px solid var(--border);
}
.vornach-card figcaption strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 144;
}
.vornach-card figcaption span {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}

.vornach-note {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
}
.vornach-note strong {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 600px) {
  .vornach-card figcaption { padding: 16px 18px 18px; }
  .vornach-card figcaption strong { font-size: 16px; }
  .vornach-tag { font-size: 9px; padding: 5px 10px; }
}

/* ============================================================
   PFLEGE — Drei Kerndisziplinen
   ============================================================ */
.pflege-section { padding-bottom: 60px; }

.pflege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
@media (max-width: 1000px) { .pflege-grid { grid-template-columns: 1fr; gap: 20px; } }

.pflege-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: var(--shadow-sm);
}
.pflege-card:hover {
  border-color: var(--brand-hi);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pflege-card.featured {
  background: linear-gradient(180deg, var(--brand-tint) 0%, var(--surface) 60%);
  border-color: var(--brand-hi);
  box-shadow: 0 12px 32px -10px rgba(45,122,63,.18), var(--shadow-md);
}
.pflege-badge {
  position: absolute;
  top: -10px; left: 28px;
  background: var(--brand);
  color: #FAFAF6;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.pflege-card-head {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pflege-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pflege-icon svg { width: 30px; height: 30px; }
.pflege-card-title { flex: 1; min-width: 0; }
.pflege-card-title h3 {
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
  font-variation-settings: "opsz" 144;
}
.pflege-card-title span {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.pflege-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.pflege-bullets li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px dashed var(--border);
}
.pflege-bullets li:last-child { border-bottom: 0; }
.pflege-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 1px;
  background-color: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 12l2 2 4-4' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 12l2 2 4-4' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='10' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pflege-prose {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 24px;
  flex: 1;
}
.pflege-prose strong { color: var(--text); font-weight: 600; }

.pflege-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  transition: gap .25s;
}
.pflege-link:hover { gap: 12px; }
.pflege-link svg { transition: transform .25s; }

/* Versiegelung Erklärblock */
.versiegelung-block {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 70%);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
  color: #FAFAF6;
  box-shadow: var(--shadow-lg);
}
.versiegelung-block::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(127,216,148,.25), transparent 60%);
  pointer-events: none;
}
.versiegelung-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.versiegelung-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .versiegelung-grid { grid-template-columns: 1fr; gap: 32px; } .versiegelung-block { padding: 44px 32px; } }
@media (max-width: 600px) { .versiegelung-block { padding: 36px 24px; } }

.versiegelung-left .eyebrow {
  color: var(--brand-glow);
}
.versiegelung-left .eyebrow::before {
  background: var(--brand-glow);
}
.versiegelung-left h3 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 16px 0 28px;
}
.versiegelung-left h3 .h-italic {
  color: var(--brand-glow);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.versiegelung-targets {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.versiegelung-targets span {
  padding: 8px 16px;
  border: 1px solid rgba(250,250,246,.3);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(250,250,246,.06);
}
.versiegelung-right p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250,250,246,.92);
  margin: 0 0 16px;
}
.versiegelung-right p:last-child { margin-bottom: 0; }
.versiegelung-right p strong { color: #FAFAF6; font-weight: 600; }
.versiegelung-right p em {
  color: var(--brand-glow);
  font-style: italic;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  font-weight: 500;
}

/* ============================================================
   KOSTENLOS-TRIFECTA STRIP (under trust-strip)
   ============================================================ */
.kostenlos-strip {
  background: var(--brand-deep);
  color: #FAFAF6;
  border-bottom: 1px solid rgba(127,216,148,.2);
}
.kostenlos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}
.kostenlos-item {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.kostenlos-item svg {
  width: 28px; height: 28px;
  color: var(--brand-glow);
  flex-shrink: 0;
}
.kostenlos-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2px;
  font-variation-settings: "opsz" 144;
}
.kostenlos-item span {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: rgba(250,250,246,.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.kostenlos-divider {
  width: 1px; height: 32px;
  background: rgba(127,216,148,.25);
}
@media (max-width: 900px) {
  .kostenlos-grid { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
  .kostenlos-divider { display: none; }
  .kostenlos-item { justify-content: flex-start; }
  .kostenlos-item strong { font-size: 20px; }
}

/* Footer Standorte: richer structure */
.footer-standorte li {
  display: block !important;
  padding: 14px 0 !important;
  border-top: 1px solid var(--border);
  margin: 0 !important;
}
.footer-standorte li:first-child { border-top: 0; padding-top: 0 !important; }
.footer-standorte strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  font-variation-settings: "opsz" 144;
  margin-bottom: 3px;
}
.footer-standorte span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--ff-mono);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.footer-standorte a {
  font-size: 14px;
  color: var(--brand);
  font-weight: 500;
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}
.footer-standorte a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FENSTERLÄDEN-SEKTION
   ============================================================ */
.fensterladen-section {
  background:
    radial-gradient(ellipse 800px 500px at 0% 30%, rgba(184,146,83,.06), transparent 60%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fensterladen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1000px) { .fensterladen-grid { grid-template-columns: 1fr; gap: 48px; } }

.fensterladen-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 16px 0 24px;
}
.fensterladen-left h2 .it {
  font-style: italic;
  color: var(--brand);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.fensterladen-left > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}
.fensterladen-left > p strong { color: var(--text); font-weight: 600; }

.fensterladen-services {
  display: flex; flex-direction: column;
  gap: 4px;
}
.fensterladen-service {
  display: flex; gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
  transition: padding-left .3s;
}
.fensterladen-service:hover { padding-left: 8px; }
.fensterladen-service:first-child { border-top: 0; padding-top: 0; }
.fensterladen-service:first-child:hover { padding-left: 8px; padding-top: 0; }
.fensterladen-num {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 3px;
  flex-shrink: 0;
}
.fensterladen-service strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 144;
  color: var(--text);
}
.fensterladen-service span {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* Animiertes Fenster-Mockup */
.fensterladen-right {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 24px;
}
.window-stage {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 5/6;
  background: linear-gradient(180deg, #E8DCC0 0%, #D6C49E 100%);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  --shutter-color: #2D7A3F;
  --shutter-light: color-mix(in srgb, var(--shutter-color) 70%, #ffffff 30%);
  --shutter-dark:  color-mix(in srgb, var(--shutter-color) 70%, #000000 30%);
}
.window-stage::before {
  /* Putz/Textur */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='nf'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.1 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23nf)'/%3E%3C/svg%3E");
  opacity: .6;
  mix-blend-mode: multiply;
}
.window-frame {
  position: absolute;
  top: 14%; left: 50%;
  transform: translateX(-50%);
  width: 50%;
  aspect-ratio: 3/4;
  background: var(--shutter-color);
  border-radius: 4px;
  padding: 6px;
  z-index: 3;
  transition: background .5s cubic-bezier(.2,.8,.2,1);
  box-shadow:
    0 1px 0 rgba(255,255,255,.2) inset,
    0 -1px 0 rgba(0,0,0,.2) inset,
    0 6px 16px -4px rgba(0,0,0,.25);
}
.window-pane {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #B8D8E8 0%, #88B8D8 50%, #6FA8C8 100%);
  border-radius: 2px;
  overflow: hidden;
}
.window-glass {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,.4) 45%, rgba(255,255,255,.5) 55%, transparent 70%),
    linear-gradient(155deg, transparent 60%, rgba(255,255,255,.15) 70%, transparent 85%);
}
.window-cross-v {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: var(--shutter-color);
  transform: translateX(-50%);
  transition: background .5s cubic-bezier(.2,.8,.2,1);
}
.window-cross-h {
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 4px;
  background: var(--shutter-color);
  transform: translateY(-50%);
  transition: background .5s cubic-bezier(.2,.8,.2,1);
}
.window-shutter {
  position: absolute;
  top: 14%;
  width: 22%;
  aspect-ratio: 3/8;
  background: var(--shutter-color);
  border-radius: 3px;
  padding: 6px 4px;
  z-index: 2;
  transition: background .5s cubic-bezier(.2,.8,.2,1), transform .5s cubic-bezier(.2,.8,.2,1);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 -1px 0 rgba(0,0,0,.2) inset,
    0 6px 16px -4px rgba(0,0,0,.3);
}
.window-shutter.left  { left: 14%; transform-origin: right center; }
.window-shutter.right { right: 14%; transform-origin: left center; }
.shutter-slats {
  width: 100%; height: 100%;
  background-image: repeating-linear-gradient(
    180deg,
    var(--shutter-light) 0 2px,
    var(--shutter-dark)  2px 8px
  );
  border-radius: 2px;
  opacity: .7;
}
.window-sill {
  position: absolute;
  bottom: 22%; left: 50%;
  transform: translateX(-50%);
  width: 64%;
  height: 4%;
  background: linear-gradient(180deg, #6C5530, #4A3820);
  border-radius: 2px 2px 4px 4px;
  z-index: 4;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.4);
}

/* Color picker for shutters */
.shutter-colors {
  display: flex; gap: 10px;
}
.shutter-chip {
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  border: 2px solid transparent;
  position: relative;
}
.shutter-chip:hover { transform: scale(1.12); }
.shutter-chip.active {
  transform: scale(1.18);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--brand);
}
.shutter-hint {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.shutter-hint .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}

/* ============================================================
   GARTEN-SEKTION
   ============================================================ */
.garten-section {
  background:
    radial-gradient(ellipse 1000px 600px at 50% 100%, rgba(77,176,104,.10), transparent 60%),
    var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.garten-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1100px) { .garten-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .garten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .garten-grid { grid-template-columns: 1fr; } }

.garten-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.garten-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(77,176,104,.04) 100%);
  pointer-events: none;
}
.garten-card:hover {
  border-color: var(--brand-hi);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.garten-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all .3s;
  position: relative; z-index: 1;
}
.garten-card:hover .garten-icon {
  background: var(--brand);
  color: #FAFAF6;
  transform: scale(1.05);
}
.garten-icon svg { width: 30px; height: 30px; }

.garten-card h3 {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  font-variation-settings: "opsz" 144;
  color: var(--text);
  position: relative; z-index: 1;
}
.garten-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0;
  position: relative; z-index: 1;
}

.garten-bottom {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.garten-bottom p {
  font-size: 17px;
  color: var(--text-2);
  margin: 0 0 24px;
  line-height: 1.55;
}
.garten-bottom p strong { color: var(--text); font-weight: 600; }

@media (max-width: 600px) {
  .fensterladen-service { padding: 18px 0; }
  .fensterladen-service strong { font-size: 19px; }
  .garten-card { padding: 24px 20px; }
  .garten-bottom { padding: 32px 24px; }
  .garten-bottom p { font-size: 15px; }
}

/* ============================================================
   SERVICE-PAGE COMPONENTS (stein/fassade/fensterladen/garten)
   ============================================================ */
.service-hero-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--surface);
}
.service-hero-photo .vornach-card {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
}
.service-hero-photo .vornach-card:hover { transform: none; box-shadow: none; }
.service-hero-photo .window-stage {
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  aspect-ratio: 4/5;
}

/* Static hero photo (replaces fragile slider on service detail pages) */
.service-hero-photo-static {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.service-hero-photo-static img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.service-hero-photo-tag {
  position: absolute;
  top: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.service-hero-photo-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 2s infinite;
}

/* Garten Platzhalter */
.garten-placeholder { background: linear-gradient(180deg, #A8D5E2 0%, #E8F2E5 100%); }
.garten-placeholder-bg {
  position: absolute; inset: 0;
}
.garten-placeholder-bg svg {
  width: 100%; height: 100%;
  display: block;
}
.garten-placeholder-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent, rgba(10,26,14,.85) 50%);
  color: #FAFAF6;
}
.garten-placeholder-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-glow);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.garten-placeholder-eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--brand-glow);
}
.garten-placeholder-text h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #FAFAF6;
  margin: 0 0 12px;
}
.garten-placeholder-text h3 em {
  font-style: italic;
  color: var(--brand-glow);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.garten-placeholder-text p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250,250,246,.85);
  margin: 0;
  max-width: 380px;
}

/* USP + Prose grid */
.usp-prose-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1000px) { .usp-prose-grid { grid-template-columns: 1fr; gap: 40px; } }

.usp-prose-grid h2 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 16px 0 0;
}
.usp-prose-grid h2 .it {
  font-style: italic;
  color: var(--brand);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

.usp-prose p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 16px;
}
.usp-prose p:last-child { margin-bottom: 0; }
.usp-prose p strong { color: var(--text); font-weight: 600; }

/* Form fallback notice */
.form-fallback-notice {
  margin-top: 20px;
  padding: 18px 22px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-warm-hi);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.form-fallback-notice strong { display: block; margin-bottom: 8px; color: var(--accent-warm); }
.form-fallback-notice small { display: block; margin-top: 12px; font-size: 12px; color: var(--text-3); }
.form-fallback-notice small a { color: var(--brand); font-weight: 600; }

/* ============================================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ============================================================ */
.legal-page {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 1000px 600px at 20% 0%, rgba(77,176,104,.05), transparent 60%),
    var(--bg);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.legal-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand), var(--brand-hi));
}
@media (max-width: 700px) {
  .legal-card { padding: 36px 24px; border-radius: var(--r-lg); }
  .legal-page { padding: 48px 0 64px; }
}

.legal-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--text);
}
.legal-content h1 .it {
  font-style: italic;
  color: var(--brand);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.legal-content .subtitle {
  display: block;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
  color: var(--text);
  scroll-margin-top: 100px;
}
.legal-content h3 {
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 10px;
  color: var(--text);
}
.legal-content p {
  margin-bottom: 16px;
  color: var(--text-2);
}
.legal-content p strong { color: var(--text); font-weight: 600; }
.legal-content ul, .legal-content ol {
  margin: 0 0 18px 0;
  padding-left: 24px;
  color: var(--text-2);
}
.legal-content ul li, .legal-content ol li { margin-bottom: 8px; }
.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--brand-mid); }
.legal-content hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* Highlighted call-out boxes */
.legal-highlight {
  background: var(--brand-tint);
  border: 1px solid var(--brand-hi);
  border-left: 4px solid var(--brand);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.legal-highlight p { margin-bottom: 8px; color: var(--text); }
.legal-highlight p:last-child { margin-bottom: 0; }
.legal-highlight strong { color: var(--brand); }

.legal-warning {
  background: var(--accent-soft);
  border: 1px solid var(--accent-warm-hi);
  border-left: 4px solid var(--accent-warm);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 14px;
}
.legal-warning strong { color: var(--accent-warm); }

/* Info block (address etc.) */
.legal-info {
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: 22px 26px;
  margin: 16px 0 24px;
  border: 1px solid var(--border);
}
.legal-info p { margin-bottom: 4px; }
.legal-info p:last-child { margin-bottom: 0; }
.legal-info p strong { color: var(--text); }

/* Table of contents */
.legal-toc {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin: 32px 0 48px;
}
.legal-toc-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 36px;
}
@media (max-width: 700px) { .legal-toc ol { columns: 1; } }
.legal-toc ol li {
  margin-bottom: 6px;
  font-size: 14px;
  break-inside: avoid;
}
.legal-toc ol li a {
  color: var(--text-2);
  text-decoration: none;
  display: flex; gap: 8px;
}
.legal-toc ol li a:hover { color: var(--brand); }
.legal-toc ol li .num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--brand);
  flex-shrink: 0;
  min-width: 28px;
}

.legal-meta {
  display: block;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.legal-breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.legal-breadcrumb a { color: var(--text-3); text-decoration: none; }
.legal-breadcrumb a:hover { color: var(--brand); }
.legal-breadcrumb .sep { color: var(--border-hi); }
.legal-breadcrumb .current { color: var(--brand); }

/* ============================================================
   KLARO — Brutal Force Colors
   (überschreibt JEDE Farbe direkt, keine CSS-Vars)
   ============================================================ */

/* Z-Index */
.klaro,
.klaro .cookie-modal,
.klaro .cookie-notice {
  z-index: 9999 !important;
}

/* Klaro CSS-Vars setzen (für interne Komponenten die sie nutzen) */
:root {
  --white1: #FAFAF6;
  --white2: #F4F1E8;
  --white3: #ECE7D7;
  --light1: #FAFAF6;
  --light2: #F4F1E8;
  --light3: #ECE7D7;
  --dark1: #1A2A1F;
  --dark2: #3A4A40;
  --dark3: #6A7A70;
  --green1: #2D7A3F;
  --green2: #4DB068;
  --green3: #C7E8C7;
  --light-border1: #DBD6C7;
  --light-border2: #C6C0AD;
  --button-text-color: #FAFAF6;
  --button-border-radius: 999px;
  --border-radius: 12px;
}

/* === MODAL CONTAINER — heller Hintergrund === */
.klaro .cookie-modal .cm-modal,
.klaro .cookie-modal > .cm-modal,
.klaro .cookie-modal .cm-bg {
  background: #FAFAF6 !important;
  border-radius: 20px !important;
  color: #1A2A1F !important;
  font-family: var(--ff-body) !important;
}

/* === HEADER === */
.klaro .cookie-modal .cm-header {
  background: #F4F1E8 !important;
  border-bottom: 1px solid #DBD6C7 !important;
  color: #1A2A1F !important;
}
.klaro .cookie-modal .cm-header *,
.klaro .cookie-modal .cm-header h1,
.klaro .cookie-modal .cm-header h2,
.klaro .cookie-modal .cm-header p,
.klaro .cookie-modal .cm-header span,
.klaro .cookie-modal .cm-header div {
  color: #1A2A1F !important;
}
.klaro .cookie-modal .cm-header h1,
.klaro .cookie-modal .cm-header h2 {
  font-family: var(--ff-display) !important;
  font-variation-settings: "opsz" 144 !important;
}

/* === BODY (Mittelbereich) === */
.klaro .cookie-modal .cm-body,
.klaro .cookie-modal .cm-modal .cm-body {
  background: #FAFAF6 !important;
  color: #1A2A1F !important;
}
.klaro .cookie-modal .cm-body * {
  color: #1A2A1F !important;
}

/* === FOOTER === */
.klaro .cookie-modal .cm-footer {
  background: #F4F1E8 !important;
  border-top: 1px solid #DBD6C7 !important;
}

/* === SERVICE/PURPOSE CARDS — heller Karten-Hintergrund === */
.klaro .cookie-modal .cm-purpose,
.klaro .cookie-modal .cm-service,
.klaro .cookie-modal li.cm-purpose,
.klaro .cookie-modal li.cm-service,
.klaro .cookie-modal ul.cm-purposes > li,
.klaro .cookie-modal ul.cm-services > li,
.klaro .cookie-modal ul.cm-content > li {
  background: #F4F1E8 !important;
  border: 1px solid #DBD6C7 !important;
  color: #1A2A1F !important;
}

/* === TEXT IN CARDS === */
.klaro .cookie-modal .cm-purpose *,
.klaro .cookie-modal .cm-service *,
.klaro .cookie-modal li.cm-purpose *,
.klaro .cookie-modal li.cm-service *,
.klaro .cookie-modal .cm-list-title,
.klaro .cookie-modal .cm-list-description,
.klaro .cookie-modal .cm-list-description p,
.klaro .cookie-modal p,
.klaro .cookie-modal span,
.klaro .cookie-modal div {
  color: #1A2A1F !important;
}
.klaro .cookie-modal .cm-list-description,
.klaro .cookie-modal .cm-list-description p {
  color: #3A4A40 !important;
}
.klaro .cookie-modal .cm-required {
  color: #6A7A70 !important;
  font-family: var(--ff-mono) !important;
  font-size: 9.5px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}
.klaro .cookie-modal .cm-list-title {
  font-family: var(--ff-display) !important;
  font-variation-settings: "opsz" 144 !important;
  color: #1A2A1F !important;
}

/* === LINKS === */
.klaro a,
.klaro .cookie-modal a,
.klaro .cookie-notice a,
.klaro .cookie-modal .cm-caret a,
.klaro .cookie-modal .cm-services-toggle {
  color: #2D7A3F !important;
  text-decoration: underline !important;
}
.klaro a:hover { color: #4DB068 !important; }

/* === BUTTONS === */
.klaro .cookie-modal .cm-btn,
.klaro .cookie-notice .cm-btn {
  font-family: var(--ff-body) !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: #FAFAF6 !important;
  color: #1A2A1F !important;
  border: 1px solid #C6C0AD !important;
}
.klaro .cookie-modal .cm-btn-success,
.klaro .cookie-modal .cm-btn-accept-all,
.klaro .cookie-notice .cm-btn-success {
  background: #2D7A3F !important;
  border-color: #2D7A3F !important;
  color: #FAFAF6 !important;
}
.klaro .cookie-modal .cm-btn-success:hover,
.klaro .cookie-modal .cm-btn-accept-all:hover {
  background: #4DB068 !important;
  border-color: #4DB068 !important;
  color: #FAFAF6 !important;
}

/* === NOTICE BANNER === */
.klaro .cookie-notice:not(.cookie-modal-notice) {
  background: #FAFAF6 !important;
  border: 1px solid #DBD6C7 !important;
  border-radius: 20px !important;
  color: #1A2A1F !important;
}
.klaro .cookie-notice:not(.cookie-modal-notice) * {
  color: #1A2A1F !important;
}

/* === TOGGLES — Klehr-Grün wenn aktiv === */
.klaro .slider.required,
.klaro input:checked + label .slider,
.klaro input:checked + .cm-list-label .slider {
  background-color: #2D7A3F !important;
}

/* === "Powered by Klaro" raus === */
.klaro .cookie-modal .cm-powered-by,
.klaro .cm-powered-by {
  display: none !important;
}

/* ============================================================
   MOBILE OVERFLOW SAFETY NET — FINAL
   Verhindert horizontales Scrollen auf jeglichen Mobile-Breakpoints
   ============================================================ */

/* 1. Doppelte Absicherung — html UND body
   WICHTIG: nur 'clip', NICHT 'hidden' (sonst bricht position: sticky!) */
html, body {
  overflow-x: clip !important;
  max-width: 100vw !important;
  position: relative !important;
}

/* 2. Alle Sections + Container clippen ausgebrochene absolute Glows */
section,
main,
footer,
.section,
.service-hero,
.versiegelung-block,
.garantie,
.bento-wrap,
.calc,
.contact,
.standorte,
.final-cta,
.gallery,
.process,
.roof-grid,
.tech-grid,
.fensterladen-section,
.garten-section,
.kostenlos-strip,
.trust-strip,
.top-banner {
  /* clip schneidet aus, ohne sticky zu brechen. hidden ist Fallback für alte Browser */
  overflow-x: hidden;
  overflow-x: clip !important;
  max-width: 100% !important;
}

/* 3. Containers: kein min-width-Trick mehr */
.container {
  max-width: 100vw !important;
  box-sizing: border-box !important;
}

/* 4. Alle Grids spätestens bei 600px auf 1 Spalte */
@media (max-width: 600px) {
  .trust-grid,
  .pflege-grid,
  .vornach-grid,
  .bento,
  .roof-grid,
  .garten-grid,
  .versiegelung-grid,
  .pakete-grid,
  .footer-grid,
  .calc-services,
  .calc-packages,
  .process-grid,
  .standorte-grid,
  .kostenlos-grid,
  .fensterladen-grid,
  .service-hero-grid,
  .contact-grid,
  .calc-grid,
  .usp-prose-grid,
  .tech-grid,
  .gallery-grid,
  .garantie-grid,
  .standort-grid,
  .legal-toc ol {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* 5. Bei <900px max 2 Spalten */
@media (max-width: 900px) {
  .trust-grid,
  .pakete-grid,
  .gallery-grid,
  .roof-grid,
  .process-grid,
  .tech-grid,
  .garten-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .pflege-grid,
  .vornach-grid,
  .versiegelung-grid,
  .service-hero-grid,
  .calc-grid,
  .usp-prose-grid,
  .garantie-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 6. Container-Padding shrinkt auf Mobile */
@media (max-width: 900px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* 7. Bilder/Videos/Iframes nie breiter als Container */
img, video, iframe, picture, embed, object, canvas, svg {
  max-width: 100% !important;
  height: auto;
}

/* 8. Tables horizontal scrollbar lokal */
@media (max-width: 700px) {
  .compare-table-wrap,
  table {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* 9. Lange Wörter brechen */
@media (max-width: 700px) {
  p, h1, h2, h3, h4, h5, li, td, a, span, div {
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }
}

/* 10. Floating Cards/Tags auf Mobile aus dem Flow nehmen */
@media (max-width: 700px) {
  .hero-floating-card {
    position: relative !important;
    bottom: auto !important; left: auto !important; right: auto !important;
    margin-top: 16px !important;
  }
  .service-hero-photo-tag,
  .service-hero-visual .auto-color-tag {
    position: relative !important;
    top: auto !important; right: auto !important;
    margin: 10px 0 !important;
    display: inline-block;
  }
}

/* 11. Top-Banner & Countdown auf kleinem Display schmaler */
@media (max-width: 480px) {
  .top-banner {
    font-size: 10px !important;
    padding: 6px 0 !important;
  }
  .top-banner .container {
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
  .countdown {
    font-size: 10px !important;
  }
}

/* 12. Drawer Body wirklich scrollbar */
@media (max-width: 900px) {
  .mobile-drawer { overflow: hidden !important; }
  .mobile-drawer nav {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    max-height: calc(100vh - 200px) !important;
  }
}

/* 13. Absolut-positionierte Glows niemals überlappen */
.versiegelung-block::before,
.garantie::before,
section::before, section::after {
  max-width: 100% !important;
}

/* ============================================================
   DACH/FASSADE/STEIN — Photo-Row für einzelne Referenzfotos
   ============================================================ */
.dach-photo-row,
.fassade-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pflaster-photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 1100px) {
  .pflaster-photo-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .dach-photo-row,
  .fassade-photo-row,
  .pflaster-photo-row { grid-template-columns: 1fr; gap: 20px; }
}
.dach-photo-card,
.fassade-photo-card,
.pflaster-photo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dach-photo-img,
.fassade-photo-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pflaster-photo-img {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dach-photo-card figcaption,
.fassade-photo-card figcaption,
.pflaster-photo-card figcaption {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dach-photo-card figcaption strong,
.fassade-photo-card figcaption strong,
.pflaster-photo-card figcaption strong {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 500;
}
.dach-photo-card figcaption span,
.fassade-photo-card figcaption span,
.pflaster-photo-card figcaption span {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
