/*
Theme Name:  INOBUILD
Theme URI:   https://inobuild.de
Description: Custom-Theme für Bauunternehmen INOBUILD Gelsenkirchen. Vollständig über den Customizer anpassbar.
Version:     1.0.0
Author:      INOBUILD
Text Domain: inobuild
*/

/* ============================================================
   INOBUILD — Design System
   Modern & klar, neutral mit dezentem Orange-Akzent
   ============================================================ */

:root{
  /* Brand */
  --orange:      #F47A20;
  --orange-600:  #E06A11;
  --orange-50:   #FDF1E7;
  --ink:         #1E2227;
  --ink-2:       #2A2F36;

  /* Neutrals */
  --paper:       #FFFFFF;
  --bg:          #F5F6F8;
  --bg-2:        #ECEEF1;
  --line:        #E3E6EA;
  --line-2:      #D5D9DE;
  --text:        #23272D;
  --muted:       #697079;
  --muted-2:     #71777E;

  /* Shape */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(20,24,30,.05), 0 2px 6px rgba(20,24,30,.04);
  --shadow:    0 4px 14px rgba(20,24,30,.07), 0 1px 3px rgba(20,24,30,.05);
  --shadow-lg: 0 20px 50px rgba(20,24,30,.13);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Mulish", system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top:108px; -webkit-text-size-adjust:100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

/* Tastatur-Fokus: sichtbar für Tab-Navigation, unsichtbar bei Maus */
:focus-visible{ outline:2px solid var(--orange); outline-offset:2px; }
:focus:not(:focus-visible){ outline:none; }

/* Skip-Link: nur bei Tastatur-Fokus sichtbar */
.skip-link{
  position:fixed; top:-100px; left:12px; z-index:9999;
  padding:10px 18px; border-radius:var(--r);
  background:var(--ink); color:#fff; font-weight:600; text-decoration:none;
  transition:top .15s ease;
}
.skip-link:focus{ top:12px; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--paper);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:800; line-height:1.08; letter-spacing:-.02em; color:var(--ink); margin:0; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }

.wrap{ max-width:var(--maxw); margin:0 auto; padding-inline:var(--gutter); }

/* Eyebrow / kicker — schlichtes Text-Label, kein Pill */
.kicker{
  display:inline-flex; align-items:center; gap:12px;
  font-family:var(--font-display);
  font-weight:700; font-size:13px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--orange-600);
  background:none; border:none; padding:0; border-radius:0;
  margin-bottom:6px;
}

/* ── Scroll-reveal: ganze Sektionen tauchen beim Scrollen auf (Hero ausgenommen) ── */
body.reveal-ready .section{
  opacity:0; transform:translateY(40px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
/* transform:none (statt translateY(0)) entfernt den Stacking-Context nach der Animation,
   sonst bleiben Sektionen Stacking-Contexts und überlagernde Elemente (z.B. .why-cta) brechen */
body.reveal-ready .section.is-visible{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  body.reveal-ready .section{ opacity:1; transform:none; transition:none; }
}

.hero-stats,
.hero-chips{ display:none !important; }

.section{ padding-block:clamp(64px, 8vw, 116px); }
.section-head{ max-width:680px; margin-bottom:48px; }
.section-head h2{ font-size:clamp(30px, 4vw, 46px); margin-top:16px; }
.section-head p{ color:var(--muted); font-size:18px; margin-top:18px; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:16px;
  padding:15px 26px; border-radius:var(--r); border:1.5px solid transparent;
  cursor:pointer; transition:.18s ease; white-space:nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{ background:var(--orange); color:#fff; }
.btn-primary:hover{ background:var(--orange-600); transform:translateY(-1px); box-shadow:0 8px 20px rgba(244,122,32,.32); }
.btn-dark{ background:var(--ink); color:#fff; }
.btn-dark:hover{ background:#000; transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line-2); }
.btn-ghost:hover{ border-color:var(--ink); background:var(--paper); }
.btn-lg{ padding:17px 32px; font-size:17px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar{
  background:var(--ink); color:#cfd3d9; font-size:14px;
}
.topbar .wrap{ display:flex; align-items:center; justify-content:space-between; min-height:42px; gap:18px; }
.topbar a{ color:#cfd3d9; display:inline-flex; align-items:center; gap:7px; transition:.15s; }
.topbar a:hover{ color:#fff; }
.topbar svg{ width:15px; height:15px; color:var(--orange); }
.topbar .tb-left{ display:flex; gap:24px; align-items:center; }
.topbar .tb-right{ display:flex; gap:20px; align-items:center; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header{ position:sticky; top:0; z-index:60; background:rgba(255,255,255,.92); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
.nav{ display:grid; grid-template-columns:auto 1fr auto; align-items:center; min-height:80px; gap:24px; }
.nav > nav{ display:flex; justify-content:center; }
.brand{ display:flex; align-items:center; }
.brand img{ width:200px; height:auto; display:block; }
/* WordPress custom-logo: the_custom_logo() wraps the img in its own <a> */
.custom-logo-link{ display:flex; align-items:center; }
.custom-logo-link img,
.custom-logo{ width:200px; height:auto; display:block; }
.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links > li > a{
  font-family:var(--font-display); font-weight:600; font-size:15.5px; color:var(--ink-2);
  padding:10px 14px; border-radius:8px; display:inline-flex; align-items:center; gap:6px; transition:.15s;
}
.nav-links > li > a:hover{ color:var(--orange-600); background:var(--orange-50); }
.nav-cta{ display:flex; align-items:center; gap:12px; }
.nav-cta .btn-primary{ border-radius:999px; padding-left:24px; padding-right:10px; gap:14px; }
.nav-cta .btn-primary .arrow{ width:30px; height:30px; border-radius:50%; background:rgba(255,255,255,.22); display:grid; place-items:center; }
.nav-cta .btn-primary .arrow svg{ width:15px; height:15px; }

/* ── Mega-Menü ── */
.has-drop{ position:relative; }
.has-drop > a svg{ width:13px; height:13px; transition:.2s; flex-shrink:0; }
.has-drop:hover > a svg{ transform:rotate(180deg); }

.drop{
  position:absolute; top:calc(100% + 10px); left:50%;
  transform:translateX(-50%) translateY(8px);
  width:min(900px, calc(100vw - 40px));
  background:#fff; border:1px solid var(--line); border-radius:var(--r-lg);
  box-shadow:var(--shadow-lg); opacity:0; visibility:hidden;
  transition:.2s ease; z-index:70;
  display:flex; overflow:hidden;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop,
.has-drop.touch-open .drop{ opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); }
.has-drop.touch-open > a svg{ transform:rotate(180deg); }

/* Service-Link-Grid */
.mega-items{
  flex:1; display:grid; grid-template-columns:1fr 1fr;
  gap:3px; padding:12px; background:var(--paper);
}
.mega-items a{
  display:flex; flex-direction:column;
  padding:13px 16px; border-radius:var(--r-sm);
  font-family:var(--font-display); font-weight:600; font-size:14.5px;
  color:var(--ink-2); text-decoration:none; transition:.13s; line-height:1.25;
}
.mega-items a:hover,
.mega-items a.current-menu-item{ background:var(--bg); color:var(--orange-600); }
.mega-items a small{
  display:block; color:var(--muted-2); font-size:12px; font-weight:400;
  margin-top:4px; line-height:1.4;
}

/* CTA-Sidebar */
.mega-cta{
  background:var(--ink); padding:28px 22px;
  display:flex; flex-direction:column; gap:10px;
  min-width:210px; max-width:240px; flex-shrink:0;
}
.mega-cta-kicker{
  font-family:var(--font-display); font-weight:700; font-size:10.5px;
  letter-spacing:.2em; text-transform:uppercase; color:var(--orange); display:block;
}
.mega-cta-title{
  font-family:var(--font-display); font-weight:800; font-size:16px;
  color:#fff; line-height:1.25; display:block; margin-top:2px;
}
.mega-cta-sub{
  font-size:13px; color:#9aa0a8; line-height:1.55; margin:0;
}
.mega-cta-link{
  display:flex; align-items:center; gap:9px;
  padding:10px 13px; border-radius:var(--r-sm);
  font-family:var(--font-display); font-weight:700; font-size:13.5px;
  color:#fff; text-decoration:none; transition:.15s; margin-top:2px;
}
.mega-cta-link svg{ width:15px; height:15px; flex-shrink:0; }
.mega-cta-link--phone{ background:rgba(244,122,32,.18); border:1px solid rgba(244,122,32,.3); }
.mega-cta-link--phone:hover{ background:rgba(244,122,32,.32); color:#fff; }
.mega-cta-link--wa{ background:rgba(37,211,102,.12); border:1px solid rgba(37,211,102,.22); color:#4ade80; }
.mega-cta-link--wa:hover{ background:rgba(37,211,102,.22); color:#4ade80; }
.mega-cta-main{
  margin-top:auto; padding-top:14px; border-top:1px solid rgba(255,255,255,.1);
  font-family:var(--font-display); font-weight:700; font-size:13px;
  color:var(--orange); text-decoration:none; display:block; transition:.15s;
}
.mega-cta-main:hover{ opacity:.8; }

/* Hamburger → X-Animation */
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; border-radius:8px; transition:.15s; }
.burger:hover{ background:var(--bg); }
.burger span{ width:24px; height:2.5px; background:var(--ink); border-radius:2px; transition:transform .22s ease, opacity .18s ease; transform-origin:center; }
.burger.is-active span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
.burger.is-active span:nth-child(2){ opacity:0; transform:scaleX(0); }
.burger.is-active span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO (editorial)
   ============================================================ */
.hero{ background:#fff; padding-block:clamp(26px,4vw,52px) clamp(46px,6vw,72px); }
.hero-top{ display:grid; grid-template-columns:1fr minmax(230px,300px); gap:clamp(26px,5vw,60px); align-items:center; }
.hero-headline{ font-family:var(--font-display); font-weight:900; font-size:clamp(40px,7.4vw,90px); line-height:1.02; letter-spacing:-.03em; color:var(--ink); text-transform:uppercase; }
.hero-headline .accent{ color:var(--orange); }
.pill-img{ display:inline-block; vertical-align:middle; width:clamp(92px,12vw,162px); height:clamp(46px,6.2vw,74px); border-radius:999px; margin:0 .06em; box-shadow:var(--shadow); overflow:hidden; }
.pill-img img{ width:100%; height:100%; object-fit:cover; border-radius:999px; }
.pill-img .pill-placeholder{ width:100%; height:100%; background:var(--bg-2); border-radius:999px; }
.hero-aside p{ color:var(--muted); font-size:15px; line-height:1.62; }
.hero-bigstat{ display:flex; align-items:center; gap:15px; margin-top:24px; }
.hero-bigstat .num{ font-family:var(--font-display); font-weight:900; font-size:clamp(46px,5.2vw,68px); color:var(--ink); line-height:.88; }
.hero-bigstat .num em{ color:var(--orange); font-style:normal; }
.hero-bigstat .lbl{ font-size:15px; color:var(--muted); line-height:1.25; }

.hero-collage{ display:grid; grid-template-columns:1fr 1.9fr; gap:18px; margin-top:clamp(26px,3.5vw,40px); }
.hero-collage .hc{ position:relative; }
.hero-collage .hc img,
.hero-collage .hc .img-placeholder{ width:100%; height:clamp(250px,33vw,400px); border-radius:var(--r-lg); box-shadow:var(--shadow-sm); object-fit:cover; }
.hero-collage .hc .img-placeholder{ background:var(--bg-2); display:block; }

.hero-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:clamp(34px,4.5vw,54px); padding-top:clamp(30px,4vw,44px); border-top:1px solid var(--line); }
.hero-stats .hs .num{ font-family:var(--font-display); font-weight:900; font-size:clamp(30px,3.6vw,46px); color:var(--orange); line-height:1; }
.hero-stats .hs .lbl{ color:var(--muted); font-size:14.5px; margin-top:9px; }

.hero-chips{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:clamp(26px,3vw,38px); }
.hero-chip{ display:flex; align-items:center; gap:13px; border:1.5px solid var(--line-2); border-radius:999px; padding:10px 22px 10px 11px; transition:.18s ease; }
.hero-chip:hover{ border-color:var(--ink); background:var(--bg); transform:translateY(-2px); }
.hero-chip .ci{ width:38px; height:38px; border-radius:50%; background:var(--ink); display:grid; place-items:center; flex-shrink:0; transition:.18s; }
.hero-chip:hover .ci{ background:var(--orange); }
.hero-chip .ci svg{ width:17px; height:17px; color:#fff; }
.hero-chip .ct{ font-family:var(--font-display); font-weight:700; font-size:14px; color:var(--ink); line-height:1.22; }

/* ---------- Leistungen: Tab-Umschalter ---------- */
.lst-card{
  background:var(--orange-50);
  border:1px solid rgba(244,122,32,.16);
  border-radius:26px;
  padding:clamp(28px,5vw,64px);
}
.lst-head{ text-align:center; max-width:680px; margin:0 auto; }
.lst-head .kicker{ justify-content:center; }
.lst-head h2{ font-size:clamp(28px,3.6vw,42px); margin-top:14px; }
.lst-head p{ color:var(--muted); font-size:17px; margin-top:16px; }

.lst-tabs{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  margin:clamp(28px,4vw,44px) auto 0; max-width:920px;
}
.lst-tab{
  font-family:var(--font-display); font-weight:700; font-size:14.5px;
  color:var(--ink-2); background:#fff; border:1px solid var(--line);
  padding:12px 22px; border-radius:100px; cursor:pointer; transition:.16s ease;
}
.lst-tab:hover{ border-color:var(--orange); color:var(--orange-600); }
.lst-tab.is-active{ background:var(--orange); border-color:var(--orange); color:#fff; box-shadow:0 6px 16px rgba(244,122,32,.28); }

.lst-panels{ margin-top:clamp(30px,4vw,48px); }
.lst-panel{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,5vw,56px); align-items:center; }
.lst-panel[hidden]{ display:none; }
.lst-panel.is-active{ animation:lst-fade .4s ease both; }
@keyframes lst-fade{ from{ opacity:0; transform:translateY(14px); } to{ opacity:1; transform:translateY(0); } }
.lst-text h3{ font-size:clamp(22px,2.6vw,30px); }
.lst-text > p{ color:var(--muted); font-size:16.5px; line-height:1.6; margin-top:14px; }
.lst-feats{ margin:24px 0 28px; display:grid; gap:13px; }
.lst-feats li{ display:flex; align-items:flex-start; gap:12px; font-size:15.5px; color:var(--ink-2); font-weight:600; }
.lst-check{ flex-shrink:0; width:24px; height:24px; border-radius:50%; background:var(--orange-50); border:1px solid rgba(244,122,32,.3); color:var(--orange-600); display:grid; place-items:center; margin-top:1px; }
.lst-check svg{ width:14px; height:14px; }
.lst-media img{ width:100%; height:100%; max-height:420px; object-fit:cover; border-radius:18px; box-shadow:var(--shadow); }
@media (prefers-reduced-motion: reduce){ .lst-panel.is-active{ animation:none; } }

/* ============================================================
   SPEZIAL-SERVICES (Entrümpelung & Gartenservice)
   ============================================================ */
.spec-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.spec-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; }
.spec-head{ padding:28px 30px; background:var(--bg); border-bottom:1px solid var(--line); }
.spec-head h3{ font-size:23px; }
.spec-head p{ color:var(--muted); font-size:14.5px; margin-top:5px; }
.spec-body{ padding:10px 30px 26px; flex:1; }
.spec-list li{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line); }
.spec-list li:last-child{ border-bottom:none; }
.spec-list .si-ic{ width:20px; height:20px; flex-shrink:0; color:var(--orange); margin-top:2px; }
.spec-list .si-ic svg{ width:20px; height:20px; }
.spec-list b{ font-family:var(--font-display); font-weight:700; font-size:15.5px; color:var(--ink); display:block; }
.spec-list span{ color:var(--muted); font-size:14px; line-height:1.5; display:block; margin-top:2px; }

/* ============================================================
   WHY / VORTEILE  (dark band)
   ============================================================ */
.why{
  position:relative; z-index:2; background:var(--ink); color:#d4d8dd;
  border-radius:28px 28px 0 0;
  padding-bottom:clamp(72px,8vw,112px);
}
.why-bg{
  position:absolute; inset:0; border-radius:inherit; overflow:hidden;
  background-size:cover; background-position:center;
}
.why-bg::after{ content:""; position:absolute; inset:0; background:linear-gradient(rgba(20,24,30,.82), rgba(20,24,30,.93)); }
.why .wrap{ position:relative; z-index:1; }
.why-head{ text-align:center; max-width:680px; margin-inline:auto; margin-bottom:48px; }
.why-head .kicker{ justify-content:center; color:var(--orange); }
.why .section-head h2{ color:#fff; }
.why-head p{ color:#c2c7cd; }
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.why-card{
  border:1px solid rgba(244,122,32,.3); border-radius:var(--r-lg); padding:28px 26px;
  background:rgba(244,122,32,.13); backdrop-filter:blur(2px); transition:.2s ease;
}
.why-card:hover{ background:rgba(244,122,32,.22); border-color:rgba(244,122,32,.5); transform:translateY(-3px); }
.why-ic{ width:48px; height:48px; border-radius:12px; background:rgba(255,255,255,.12); display:grid; place-items:center; margin-bottom:18px; }
.why-ic svg{ width:24px; height:24px; color:#fff; stroke-width:1.7; }
.why-card h3{ color:#fff; font-size:19px; margin:0 0 10px; }
.why-card p{ color:#f3e9e1; font-size:14.5px; line-height:1.55; }
.why-cta{
  position:absolute; left:50%; bottom:0; transform:translate(-50%,50%); z-index:3;
  display:inline-flex; align-items:center; gap:10px; white-space:nowrap;
  font-family:var(--font-display); font-weight:700; font-size:16px;
  background:#fff; color:var(--ink); padding:16px 30px; border-radius:100px;
  box-shadow:var(--shadow-lg); transition:.18s ease;
}
.why-cta:hover{ background:var(--orange); color:#fff; transform:translate(-50%,50%) translateY(-2px); }
.why-cta svg{ width:18px; height:18px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
/* schmalerer obenliegender Abstand: der schwebende .why-cta-Button sitzt in dieser Naht */
.tst{ background:var(--bg); padding-top:clamp(52px,6vw,80px); }
.tst-layout{ display:grid; grid-template-columns:minmax(300px,400px) 1fr; gap:clamp(40px,6vw,88px); align-items:start; }
.tst-intro{ position:sticky; top:104px; }
.tst-intro h2{ font-size:clamp(30px,4vw,46px); margin-top:14px; }
.tst-intro p{ color:var(--muted); font-size:17px; line-height:1.65; margin-top:20px; }
.tst-intro .btn{ margin-top:30px; }
.tst-stack{ display:flex; flex-direction:column; gap:22px; }
.tst-card{
  background:#fff; border:1px solid var(--line); border-left:3px solid var(--line);
  border-radius:var(--r-lg); padding:26px 30px; box-shadow:var(--shadow-sm);
  transition:border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.tst-card:nth-child(even){ margin-left:clamp(0px,4vw,52px); }
.tst-card:hover{ border-left-color:var(--orange); transform:translateX(5px); box-shadow:var(--shadow); }
.tst-card p{ color:var(--ink-2); font-size:16px; line-height:1.62; }
.tst-meta{ margin-top:18px; font-family:var(--font-display); }
.tst-meta b{ font-weight:800; font-size:16px; color:var(--ink); }
.tst-meta span{ color:var(--muted); font-weight:600; }
.tst-meta span::before{ content:"·"; margin:0 8px; color:var(--orange); }

/* ============================================================
   REGION / EINZUGSGEBIET
   ============================================================ */
.region-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px); align-items:center; }
.region-map{ position:relative; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); background:#fff; border:1px solid var(--line); }
.region-map img,
.region-map .map-placeholder{ width:100%; aspect-ratio:4/3; object-fit:cover; display:block; background:var(--bg-2); }
.region-pin{ position:absolute; left:50%; top:50%; transform:translate(-50%,-100%); display:flex; flex-direction:column; align-items:center; pointer-events:none; }
.region-pin .dot{ width:18px; height:18px; border-radius:50%; background:var(--orange); border:4px solid #fff; box-shadow:0 4px 10px rgba(0,0,0,.25); }
.region-pin .tag{ background:var(--ink); color:#fff; font-family:var(--font-display); font-weight:700; font-size:13px; padding:5px 12px; border-radius:20px; margin-top:8px; white-space:nowrap; }
.region-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.region-chips span{ background:#fff; border:1px solid var(--line-2); border-radius:30px; padding:9px 18px; font-size:14.5px; font-weight:600; color:var(--ink-2); }
.region-chips span.hl{ background:var(--orange); border-color:var(--orange); color:#fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{ background:var(--ink); color:#d4d8dd; }
.contact .kicker{ color:var(--orange); }
.contact .section-head h2{ color:#fff; }
.contact .section-head p{ color:#aab0b8; }
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,56px); align-items:start; }
.cinfo-list{ display:flex; flex-direction:column; gap:6px; margin:30px 0; }
.cinfo{ display:flex; gap:16px; padding:18px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.cinfo .ci-ic{ width:44px; height:44px; border-radius:11px; background:rgba(244,122,32,.14); display:grid; place-items:center; flex-shrink:0; }
.cinfo .ci-ic svg{ width:20px; height:20px; color:var(--orange); }
.cinfo .ci-lbl{ font-size:13px; color:#8b929b; text-transform:uppercase; letter-spacing:.08em; font-weight:700; }
.cinfo .ci-val{ font-family:var(--font-display); font-weight:700; color:#fff; font-size:18px; margin-top:3px; }
.cinfo .ci-val a:hover{ color:var(--orange); }
.cinfo .ci-sub{ font-size:14px; color:#aab0b8; margin-top:2px; }

.form-card{ background:#fff; border-radius:var(--r-lg); padding:clamp(26px,3vw,38px); box-shadow:var(--shadow-lg); color:var(--text); }
.form-card h3{ font-size:24px; margin-bottom:6px; }
.form-card .fsub{ color:var(--muted); font-size:15px; margin-bottom:24px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-family:var(--font-display); font-weight:600; font-size:13.5px; color:var(--ink-2); margin-bottom:7px; }
.field label .req{ color:var(--orange); }
.field input, .field select, .field textarea{
  width:100%; font-family:var(--font-body); font-size:15.5px; color:var(--text);
  padding:13px 15px; border:1.5px solid var(--line-2); border-radius:var(--r); background:var(--paper); transition:.15s;
}
.field input:focus, .field select:focus, .field textarea:focus{ outline:none; border-color:var(--orange); box-shadow:0 0 0 3px var(--orange-50); }
.field textarea{ resize:vertical; min-height:110px; }
.field.invalid input, .field.invalid select, .field.invalid textarea{ border-color:#d64545; }
.field .err{ color:#d64545; font-size:12.5px; margin-top:5px; display:none; }
.field.invalid .err{ display:block; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-note{ font-size:12.5px; color:var(--muted); margin-top:6px; }
.form-ok{ display:none; background:var(--orange-50); border:1px solid var(--orange); border-radius:var(--r); padding:16px; color:var(--orange-600); font-weight:600; font-size:15px; margin-top:14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:#15181c; color:#9aa0a8; padding-block:60px 30px; font-size:15px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:46px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer .f-brand img{ height:34px; margin-bottom:18px; }
.footer .f-brand p{ color:#8a9099; font-size:14.5px; max-width:280px; }
.footer h4{ color:#fff; font-size:15px; font-family:var(--font-display); letter-spacing:.04em; margin-bottom:18px; }
.footer ul li{ margin-bottom:11px; }
.footer ul a{ color:#9aa0a8; transition:.15s; font-size:14.5px; }
.footer ul a:hover{ color:var(--orange); }
.footer .f-contact li{ display:flex; gap:10px; color:#9aa0a8; font-size:14.5px; }
.footer .f-contact svg{ width:16px; height:16px; color:var(--orange); flex-shrink:0; margin-top:3px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; gap:16px; padding-top:24px; flex-wrap:wrap; font-size:13.5px; color:#70767e; }
.footer-bottom a{ color:#70767e; }
.footer-bottom a:hover{ color:#fff; }

/* ============================================================
   CONTACT SIDEBAR (left edge, hover to expand)
   ============================================================ */
.contact-sidebar{
  position:fixed; left:0; top:50%; transform:translateY(-50%);
  z-index:80;
  display:flex; flex-direction:column;
  border-radius:0 14px 14px 0;
  overflow:hidden;
  box-shadow:4px 0 28px rgba(0,0,0,.22);
  animation:csb-enter .55s cubic-bezier(.4,0,.2,1) .4s both;
}
@keyframes csb-enter{
  from{ opacity:0; transform:translateX(-100%) translateY(-50%); }
  to{   opacity:1; transform:translateX(0)      translateY(-50%); }
}
.csb-item{
  display:flex; align-items:center;
  width:52px; overflow:hidden;
  text-decoration:none; white-space:nowrap;
  transition:width .38s cubic-bezier(.4,0,.2,1), filter .2s;
}
.contact-sidebar:hover .csb-item,
.contact-sidebar.is-open .csb-item{ width:210px; }
.csb-ic{
  width:52px; height:52px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.csb-ic svg{ width:22px; height:22px; color:#fff; }
.csb-lbl{
  font-family:var(--font-display); font-weight:700; font-size:13px;
  color:#fff; padding-right:20px;
  opacity:0;
  transition:opacity .15s ease 0s;
}
.contact-sidebar:hover .csb-lbl,
.contact-sidebar.is-open .csb-lbl{ opacity:1; transition:opacity .22s ease .22s; }

/* Stagger per item */
.contact-sidebar:hover .csb-item:nth-child(1),
.contact-sidebar.is-open .csb-item:nth-child(1){ transition-delay:.00s; }
.contact-sidebar:hover .csb-item:nth-child(2),
.contact-sidebar.is-open .csb-item:nth-child(2){ transition-delay:.04s; }
.contact-sidebar:hover .csb-item:nth-child(3),
.contact-sidebar.is-open .csb-item:nth-child(3){ transition-delay:.08s; }
.contact-sidebar:hover .csb-item:nth-child(4),
.contact-sidebar.is-open .csb-item:nth-child(4){ transition-delay:.12s; }

/* Colors */
.csb-wa    { background:#25D366; }
.csb-phone { background:var(--orange); }
.csb-email { background:#2563EB; }
.csb-request{ background:var(--ink); border-top:1px solid rgba(255,255,255,.08); }

.csb-wa:hover     { background:#1ebe59; }
.csb-phone:hover  { background:var(--orange-600); }
.csb-email:hover  { background:#1d4ed8; }
.csb-request:hover{ background:#2d333b; }

/* ── Mobile: bottom bar ── */
@media(max-width:768px){
  .contact-sidebar{
    top:auto; bottom:0; left:0; right:0;
    transform:none;
    flex-direction:row;
    border-radius:0;
    box-shadow:0 -2px 18px rgba(0,0,0,.22);
    animation:none;
  }
  .csb-item{
    flex:1; width:auto !important;
    flex-direction:column; justify-content:center;
    height:58px; gap:3px; overflow:visible;
  }
  .csb-ic{ width:auto; height:auto; }
  .csb-ic svg{ width:20px; height:20px; }
  .csb-lbl{
    opacity:1 !important; transition:none !important;
    font-size:9px; letter-spacing:.02em;
    padding-right:0; text-align:center; line-height:1.2;
  }
}
@media(max-width:768px){
  body{ padding-bottom:58px; }
}

/* ============================================================
   PAGE HEADER (Leistungsseite)
   ============================================================ */
.page-hero{ background:var(--ink); color:#fff; padding-block:clamp(40px,5vw,64px); position:relative; overflow:hidden; }
.page-hero .crumbs{ font-size:14px; color:#8b929b; margin-bottom:18px; display:flex; gap:8px; align-items:center; }
.page-hero .crumbs a{ color:#8b929b; }
.page-hero .crumbs a:hover{ color:var(--orange); }
.page-hero .crumbs svg{ width:13px; height:13px; opacity:.5; }
.page-hero h1{ color:#fff; font-size:clamp(32px,4.5vw,52px); max-width:760px; }
.page-hero p{ color:#aab0b8; font-size:18px; margin-top:18px; max-width:620px; }
.page-hero .crumbs span.cur{ color:var(--orange); }

/* Service detail */
.svc-grid{ display:grid; grid-template-columns:1.4fr .9fr; gap:clamp(32px,5vw,64px); align-items:start; }
.prose h2{ font-size:30px; margin:38px 0 16px; }
.prose h2:first-child{ margin-top:0; }
.prose p{ color:var(--ink-2); margin-bottom:16px; font-size:17px; }
.prose .lead-p{ font-size:19px; color:var(--muted); }
.check-list{ display:grid; grid-template-columns:1fr 1fr; gap:13px 22px; margin:8px 0 10px; }
.check-list li{ display:flex; gap:11px; align-items:flex-start; font-size:15.5px; color:var(--ink-2); }
.check-list svg{ width:21px; height:21px; color:var(--orange); flex-shrink:0; }
.svc-media img{ width:100%; aspect-ratio:4/3; border-radius:var(--r-lg); box-shadow:var(--shadow); object-fit:cover; }
/* Importierte Bau-Seiten-Inhalte (ehem. Elementor): Icons/Bilder/Listen zähmen */
.prose svg{ width:20px; height:20px; color:var(--orange); flex-shrink:0; vertical-align:middle; }
.prose ul{ list-style:none; padding:0; margin:0 0 22px; display:grid; gap:12px; }
.prose ul li{ position:relative; padding-left:32px; color:var(--ink-2); font-size:17px; line-height:1.6; }
.prose ul li svg{ position:absolute; left:0; top:4px; }
.prose ul li br{ display:none; }
.prose img{ max-width:100%; height:auto; border-radius:var(--r-lg); }
.prose figure{ margin:24px 0; }
.prose h3{ font-size:22px; margin:30px 0 12px; }
/* wpautop fügt <br> in mehrzeilige <a>-Tags ein → zerstört das Flex-Layout des Buttons */
.prose .btn br{ display:none; }
/* .prose svg überschreibt Farbe/Größe — innerhalb eines Buttons zurücksetzen */
.prose .btn svg{ color:currentColor; vertical-align:initial; width:18px; height:18px; }
.svc-aside{ position:sticky; top:100px; display:flex; flex-direction:column; gap:18px; }
.aside-card{ background:var(--bg); border:1px solid var(--line); border-radius:var(--r-lg); padding:26px; }
.aside-card.dark{ background:var(--ink); color:#cfd3d9; border:none; }
.aside-card h3{ font-size:20px; margin-bottom:14px; }
.aside-card.dark h3{ color:#fff; }
.aside-card p{ font-size:14.5px; color:var(--muted); margin-bottom:18px; }
.aside-card.dark p{ color:#aab0b8; }
.aside-list li{ padding:11px 0; border-bottom:1px solid var(--line); font-size:15px; display:flex; align-items:center; gap:10px; }
.aside-list li:last-child{ border-bottom:none; }
.aside-list svg{ width:17px; height:17px; color:var(--orange); }
.aside-card .btn{ width:100%; }

/* Steps */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step{ position:relative; padding-top:8px; }
.step .sn{ font-family:var(--font-display); font-weight:900; font-size:40px; color:var(--bg-2); line-height:1; }
.step h3{ font-size:18px; margin:10px 0 8px; }
.step p{ color:var(--muted); font-size:14.5px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar{ background:var(--bg); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding-block:20px; }
.trust-bar .wrap{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.trust-item{ display:flex; align-items:center; gap:14px; padding:14px 24px; border-right:1px solid var(--line); }
.trust-item:last-child{ border-right:none; }
.trust-item .ti-ic{ width:44px; height:44px; border-radius:10px; background:var(--orange-50); display:grid; place-items:center; flex-shrink:0; }
.trust-item .ti-ic svg{ width:22px; height:22px; color:var(--orange-600); }
.trust-item .ti-title{ font-family:var(--font-display); font-weight:700; font-size:14.5px; color:var(--ink); line-height:1.2; }
.trust-item .ti-sub{ font-size:12.5px; color:var(--muted); margin-top:2px; }

/* ============================================================
   ÜBER UNS — mit Bild
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:1fr 1.2fr; gap:clamp(32px,5vw,72px); align-items:center; }
.about-img-wrap{ position:relative; }
.about-img-wrap img{ width:100%; aspect-ratio:4/3; border-radius:var(--r-lg); object-fit:cover; box-shadow:var(--shadow); }
.about-badge{ position:absolute; bottom:-20px; right:-20px; width:110px; height:110px; border-radius:50%; box-shadow:var(--shadow); background:#fff; padding:4px; }
.about-badge img{ width:100%; height:100%; border-radius:50%; }

/* ============================================================
   REFERENZ-GALERIE
   ============================================================ */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.gallery-item{ position:relative; border-radius:var(--r-lg); overflow:hidden; aspect-ratio:3/4; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition:.4s ease; }
.gallery-item:hover img{ transform:scale(1.04); }
.gallery-overlay{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(20,24,30,.75) 0%, rgba(20,24,30,0) 55%); display:flex; align-items:flex-end; padding:20px; }
.gallery-overlay span{ font-family:var(--font-display); font-weight:700; font-size:15px; color:#fff; }

/* ============================================================
   PRE-FOOTER CTA
   ============================================================ */
.pre-footer{
  position:relative; overflow:hidden;
  background:var(--ink); padding-block:clamp(64px,8vw,100px);
}
.pre-footer::before{
  content:""; position:absolute; inset:0;
  background-image:var(--pf-bg);
  background-size:cover; background-position:center;
  opacity:.18;
}
.pre-footer .wrap{ position:relative; z-index:1; display:grid; grid-template-columns:1fr auto; gap:clamp(32px,5vw,64px); align-items:center; }
.pf-text .kicker{ color:var(--orange); }
.pf-text h2{ color:#fff; font-size:clamp(28px,3.6vw,46px); margin-top:14px; }
.pf-text p{ color:#aab0b8; font-size:18px; margin-top:14px; max-width:560px; }
.pf-actions{ display:flex; flex-direction:column; gap:12px; flex-shrink:0; }
.pf-rating{ display:flex; align-items:center; gap:10px; margin-top:22px; }
.pf-rating .stars-txt{ color:var(--orange); font-size:18px; letter-spacing:2px; }
.pf-rating .rating-num{ font-family:var(--font-display); font-weight:800; font-size:20px; color:#fff; }
.pf-rating .rating-label{ font-size:13px; color:#8b929b; line-height:1.3; }

/* ============================================================
   FOOTER — erweitert
   ============================================================ */
.footer-trust{ display:flex; align-items:center; justify-content:space-between; gap:24px; padding:22px 0; flex-wrap:wrap; }
.footer-trust-badges{ display:flex; gap:28px; align-items:center; flex-wrap:wrap; }
.ft-badge{ display:flex; align-items:center; gap:9px; font-size:13px; color:#8a9099; }
.ft-badge svg{ width:18px; height:18px; color:var(--orange); flex-shrink:0; }
.footer-rating{ display:flex; align-items:center; gap:12px; }
.footer-rating .stars{ color:var(--orange); font-size:15px; letter-spacing:1px; }
.footer-rating .r-score{ font-family:var(--font-display); font-weight:800; font-size:18px; color:#fff; }
.footer-rating .r-label{ font-size:12px; color:#8a9099; line-height:1.3; }
.footer .f-brand img{ height:38px; margin-bottom:14px; }
.footer .f-brand .f-legal{ font-size:12px; color:#5a6068; margin-top:12px; line-height:1.6; }

/* ============================================================
   RESPONSIVE — neue Sektionen
   ============================================================ */
@media (max-width:1080px){
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-bar .wrap{ grid-template-columns:repeat(2,1fr); }
  .trust-item:nth-child(2){ border-right:none; }
  .trust-item:nth-child(1),.trust-item:nth-child(2){ border-bottom:1px solid var(--line); }
}
/* Mega-Menü auf schmalen Desktops verkleinern */
@media (max-width:1100px){
  .drop{ width:min(780px, calc(100vw - 40px)); }
  .mega-cta{ min-width:190px; }
}
@media (max-width:960px){
  .mega-items{ grid-template-columns:1fr; }
  .drop{ width:min(560px, calc(100vw - 40px)); }
}

@media (max-width:900px){
  .hero-top{ grid-template-columns:1fr; gap:28px; }
  .hero-collage{ grid-template-columns:1fr; }
  .hero-collage .hc img,
  .hero-collage .hc .img-placeholder{ height:clamp(220px,42vw,300px); }
  .hero-stats{ grid-template-columns:repeat(2,1fr); gap:26px 20px; }
  .hero-chips{ grid-template-columns:repeat(2,1fr); }
  .nav{ grid-template-columns:auto 1fr; }
  .nav > nav{ display:none; }
  .nav-cta{ justify-content:flex-end; }
  .why-grid{ grid-template-columns:1fr; }
  .tst-layout{ grid-template-columns:1fr; gap:36px; }
  .tst-intro{ position:static; }
  .tst-card:nth-child(even){ margin-left:0; }
  .lst-panel{ grid-template-columns:1fr; gap:28px; }
  .lst-media{ order:-1; }
  .region-grid, .contact-grid, .svc-grid{ grid-template-columns:1fr; }
  .spec-grid{ grid-template-columns:1fr; }
  .svc-aside{ position:static; }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; gap:32px; }
  .nav-links, .nav-cta .btn{ display:none; }
  .burger{ display:flex; }
  .topbar .tb-left .tb-hide{ display:none; }
  .about-grid{ grid-template-columns:1fr; }
  .about-img-wrap{ order:-1; }
  .about-badge{ bottom:-12px; right:-4px; width:80px; height:80px; }
  .pre-footer .wrap{ grid-template-columns:1fr; }
  .pf-actions{ flex-direction:row; flex-wrap:wrap; }
  .footer-trust{ flex-direction:column; align-items:flex-start; gap:16px; }
}
@media (max-width:560px){
  body{ font-size:16px; }
  .form-row{ grid-template-columns:1fr; }
  .check-list{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-bar .wrap{ grid-template-columns:1fr 1fr; }
  .trust-item{ padding:12px 14px; }
  .gallery-item{ aspect-ratio:1; }
  .topbar .tb-left{ gap:14px; }
  .hero-chips{ grid-template-columns:1fr; }
  .slider-nav{ display:none; }
  .hero-headline{ font-size:clamp(36px,12vw,52px); }
  .pill-img{ width:clamp(72px,20vw,110px); height:clamp(36px,10vw,52px); }
  .topbar .tb-hide{ display:none; }
}

/* ============================================================
   MOBILE MENU — Slide-in mit Accordion
   ============================================================ */
.mobile-menu{
  position:fixed; inset:0; z-index:90;
  visibility:hidden; pointer-events:none;
}
.mobile-menu.open{ visibility:visible; pointer-events:auto; }

/* Overlay — Fade */
.mm-overlay{
  position:absolute; inset:0;
  background:rgba(20,24,30,.52);
  backdrop-filter:blur(2px);
  opacity:0; transition:opacity .3s ease;
}
.mobile-menu.open .mm-overlay{ opacity:1; }

/* Panel — Slide from right */
.mm-panel{
  position:absolute; top:0; right:0;
  width:min(360px,92vw); height:100%;
  background:#fff;
  display:flex; flex-direction:column;
  box-shadow:-6px 0 40px rgba(20,24,30,.16);
  transform:translateX(102%);
  transition:transform .36s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open .mm-panel{ transform:translateX(0); }

/* Kopfzeile */
.mm-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 20px; flex-shrink:0;
  border-bottom:1px solid var(--line);
}
.mm-head img{ height:28px; }
.mm-close{
  background:none; border:none; cursor:pointer;
  padding:8px; border-radius:8px; color:var(--ink);
  display:grid; place-items:center; transition:.15s;
}
.mm-close:hover{ background:var(--bg); }
.mm-close svg{ width:20px; height:20px; }

/* Scrollbarer Navigationsbereich */
.mm-body{
  flex:1; overflow-y:auto; padding:8px 0;
  scrollbar-width:none;
}
.mm-body::-webkit-scrollbar{ display:none; }

/* Top-Level-Link (ohne Kinder) */
.mm-link{
  display:flex; align-items:center;
  padding:14px 20px;
  font-family:var(--font-display); font-weight:700; font-size:16.5px;
  color:var(--ink); text-decoration:none;
  border-left:3px solid transparent;
  transition:.15s;
}
.mm-link:hover,
.mm-link.current{ color:var(--orange-600); background:var(--orange-50); border-left-color:var(--orange); }

/* Zeile mit Toggle (Parent-Item mit Kindern) */
.mm-row{
  display:flex; align-items:stretch;
  border-left:3px solid transparent;
  transition:background .15s, border-color .15s;
}
.mm-row.is-open,
.mm-row:hover{ background:var(--orange-50); border-left-color:var(--orange); }

.mm-row-link{
  flex:1; padding:14px 0 14px 20px;
  font-family:var(--font-display); font-weight:700; font-size:16.5px;
  color:var(--ink); text-decoration:none; transition:color .15s;
}
.mm-row.is-open .mm-row-link,
.mm-row-link:hover,
.mm-row-link.current{ color:var(--orange-600); }

.mm-toggle{
  background:none; border:none; cursor:pointer;
  padding:14px 18px; color:var(--muted-2); display:flex; align-items:center;
  transition:color .15s;
}
.mm-toggle:hover,
.mm-row.is-open .mm-toggle{ color:var(--orange-600); }
.mm-toggle svg{ width:18px; height:18px; transition:transform .28s ease; }
.mm-row.is-open .mm-toggle svg{ transform:rotate(180deg); }

/* Sub-Menü: max-height Accordion */
.mm-sub{
  overflow:hidden; max-height:0;
  transition:max-height .32s ease;
  background:var(--bg);
  border-left:3px solid var(--orange);
  margin-left:0;
}
.mm-sub.is-open{ max-height:520px; }

.mm-sub-link{
  display:block;
  padding:11px 20px 11px 24px;
  font-family:var(--font-display); font-weight:600; font-size:14.5px;
  color:var(--ink-2); text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.06);
  transition:.13s;
}
.mm-sub-link:last-child{ border-bottom:none; }
.mm-sub-link:hover,
.mm-sub-link.current{ color:var(--orange-600); background:rgba(244,122,32,.07); }

/* Kontakt-Schnellzugriff */
.mm-contact{
  flex-shrink:0;
  padding:12px 16px;
  border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:8px;
}
.mm-contact-link{
  display:flex; align-items:center; gap:12px;
  padding:11px 14px; border-radius:var(--r-sm);
  font-family:var(--font-display); font-weight:700; font-size:14px;
  text-decoration:none; transition:.15s;
}
.mm-contact-link svg{ width:18px; height:18px; flex-shrink:0; }
.mm-contact-link:not(.mm-contact-link--wa){ color:var(--ink); background:var(--orange-50); border:1px solid rgba(244,122,32,.2); }
.mm-contact-link:not(.mm-contact-link--wa):hover{ background:rgba(244,122,32,.14); }
.mm-contact-link--wa{ color:#1a8f48; background:rgba(37,211,102,.1); border:1px solid rgba(37,211,102,.22); }
.mm-contact-link--wa:hover{ background:rgba(37,211,102,.18); }

/* CTA-Footer */
.mm-footer{
  flex-shrink:0;
  padding:12px 16px 20px;
  border-top:1px solid var(--line);
}
.mm-footer .btn{ width:100%; justify-content:center; border-radius:var(--r); }

/* ============================================================
   LEISTUNGS-LANDINGPAGES (single-leistung-{slug})
   Gemeinsame Bausteine — pro Seite individuell kombiniert
   ============================================================ */

/* ── Hero (Basis + Varianten) ── */
.lp-hero{ position:relative; overflow:hidden; padding-block:clamp(46px,7vw,92px); background:#fff; }
.lp-hero .accent{ color:var(--orange); }
.lp-hero h1{ color:var(--ink); font-size:clamp(34px,5.2vw,60px); line-height:1.06; }
.lp-hero p{ color:var(--muted); font-size:clamp(17px,1.9vw,20px); line-height:1.6; margin-top:18px; }
.lp-crumbs{ color:var(--muted); font-size:14px; margin-bottom:16px; display:flex; flex-wrap:wrap; gap:6px; align-items:center; }
.lp-crumbs a{ opacity:.8; }
.lp-crumbs a:hover{ color:var(--orange); opacity:1; }
.lp-crumbs span{ color:var(--orange); }
.lp-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.lp-btn-light{ background:transparent; color:#fff; border-color:rgba(255,255,255,.28); }
.lp-btn-light:hover{ border-color:#fff; background:rgba(255,255,255,.08); }
.lp-btn-dark{ background:#fff; color:var(--ink); border-color:var(--line-2); }
.lp-btn-dark:hover{ border-color:var(--ink); }

/* zentrierte Hero-Varianten (alle außer Split) */
.lp-hero:not(.lp-hero--split) > .wrap{ max-width:920px; text-align:center; }
.lp-hero:not(.lp-hero--split) h1{ margin-inline:auto; max-width:20ch; }
.lp-hero:not(.lp-hero--split) p{ margin-inline:auto; max-width:64ch; }
.lp-hero:not(.lp-hero--split) .lp-crumbs,
.lp-hero:not(.lp-hero--split) .lp-actions,
.lp-hero:not(.lp-hero--split) .lp-badges,
.lp-hero:not(.lp-hero--split) .stat-row{ justify-content:center; }
.lp-hero:not(.lp-hero--split) .kicker{ justify-content:center; }

/* Badges-Reihe */
.lp-badges{ display:flex; flex-wrap:wrap; gap:12px 26px; margin-top:26px; }
.lp-badges li{ display:inline-flex; align-items:center; gap:8px; font-family:var(--font-display); font-weight:700; font-size:14px; color:var(--ink-2); }
.lp-badges li svg{ width:18px; height:18px; color:var(--orange); }

/* Split-Hero */
.lp-hero--split .lp-hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(28px,5vw,60px); align-items:center; }
.lp-hero--split{ background:var(--bg); }
.lp-hero-media img{ width:100%; height:100%; max-height:480px; object-fit:cover; border-radius:var(--r-lg); box-shadow:var(--shadow-lg); }

/* Farb-Varianten */
.lp-hero--dark{ background:var(--ink); }
.lp-hero--dark h1{ color:#fff; }
.lp-hero--dark p{ color:#aab0b8; }
.lp-hero--dark .lp-crumbs{ color:#8b929b; }
.lp-hero--dark .lp-badges li{ color:#e7eaee; }

.lp-hero--light{ background:linear-gradient(165deg,#FFF6EF 0%, #FFFFFF 58%); }

.lp-hero--warm{ background:linear-gradient(160deg,#FDEFE3 0%, #F8EEE6 100%); }
.lp-hero--warm h1{ color:var(--ink); }

.lp-hero--industrial{ background:var(--ink); }
.lp-hero--industrial h1{ color:#fff; }
.lp-hero--industrial p{ color:#c2c7cd; }
.lp-hero--industrial .lp-crumbs{ color:#9aa0a8; }

/* Hero-Hintergrundbild + dezentes Marken-Overlay (nur wenn --lp-bg gesetzt) */
.lp-hero > .wrap{ position:relative; z-index:2; }
.lp-hero[style*="--lp-bg"]::before{ content:""; position:absolute; inset:0; z-index:0; background-image:var(--lp-bg); background-size:cover; background-position:center; }
.lp-hero[style*="--lp-bg"]::after{ content:""; position:absolute; inset:0; z-index:1; }
.lp-hero--dark[style*="--lp-bg"]::after{ background:linear-gradient(180deg, rgba(20,24,30,.80), rgba(20,24,30,.93)); }
.lp-hero--industrial[style*="--lp-bg"]::after{ background:linear-gradient(180deg, rgba(20,24,30,.62) 0%, rgba(20,24,30,.86) 100%); }
.lp-hero--light[style*="--lp-bg"]::after{ background:linear-gradient(100deg, rgba(255,255,255,.94) 38%, rgba(255,246,239,.58) 100%); }
.lp-hero--warm[style*="--lp-bg"]::after{ background:linear-gradient(100deg, rgba(253,239,227,.95) 36%, rgba(248,238,230,.55) 100%); }

/* ── Stat-Reihe ── */
.stat-row{ display:flex; flex-wrap:wrap; gap:24px 40px; margin-top:30px; padding-top:24px; border-top:1px solid var(--line); }
.stat-row > div b{ font-family:var(--font-display); font-weight:900; font-size:clamp(22px,3vw,32px); color:var(--orange); display:block; line-height:1; }
.stat-row > div span{ font-size:13.5px; color:var(--muted); margin-top:6px; display:block; max-width:18ch; }
.stat-row--light{ border-top-color:rgba(255,255,255,.16); }
.stat-row--light > div span{ color:#aab0b8; }

/* ── Feature-Cards ── */
.feature-cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.feature-cards--3{ grid-template-columns:repeat(3,1fr); }
.feature-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:28px 24px; box-shadow:var(--shadow-sm); transition:.2s ease; }
.feature-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--line-2); }
.fc-ic{ width:50px; height:50px; border-radius:12px; background:var(--orange-50); display:grid; place-items:center; margin-bottom:16px; }
.fc-ic svg{ width:24px; height:24px; color:var(--orange-600); }
.feature-card h3{ font-size:18px; margin-bottom:8px; }
.feature-card p{ color:var(--muted); font-size:14.5px; line-height:1.55; }

/* ── Split-Block (Text + Bild) ── */
.lp-split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,64px); align-items:center; }
.lp-split-media img{ width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--r-lg); box-shadow:var(--shadow); }

/* ── Intro-Lead (großer Satz) ── */
.intro-lead{ font-family:var(--font-display); font-weight:600; font-size:clamp(20px,2.6vw,28px); line-height:1.5; color:var(--ink-2); }
.intro-lead strong{ color:var(--orange-600); }

/* ── Festpreis-Box ── */
.price-box{ display:grid; grid-template-columns:1.5fr 1fr; gap:clamp(28px,5vw,56px); align-items:center; background:var(--orange-50); border:1px solid rgba(244,122,32,.18); border-radius:24px; padding:clamp(28px,5vw,56px); }
.price-box h2{ font-size:clamp(26px,3.4vw,40px); margin-top:12px; }
.price-box > div > p{ color:var(--muted); font-size:17px; margin-top:14px; }
.price-cta{ background:#fff; border-radius:var(--r-lg); padding:34px 28px; text-align:center; box-shadow:var(--shadow); display:flex; flex-direction:column; align-items:center; }
.pc-num{ font-family:var(--font-display); font-weight:900; font-size:54px; color:var(--orange); line-height:1; }
.pc-lbl{ color:var(--muted); font-size:15px; margin-top:6px; }

/* ── FAQ (reines CSS, details/summary) ── */
.faq{ display:flex; flex-direction:column; gap:12px; }
.faq details{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:0 22px; box-shadow:var(--shadow-sm); }
.faq summary{ cursor:pointer; list-style:none; padding:18px 0; font-family:var(--font-display); font-weight:700; font-size:16.5px; color:var(--ink); display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; font-size:26px; font-weight:400; color:var(--orange); line-height:1; }
.faq details[open] summary::after{ content:"–"; }
.faq details > p{ padding:0 0 20px; color:var(--muted); font-size:15.5px; line-height:1.6; }

/* ── Duo-Karten (Reinigung/Renovierung) ── */
.duo-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.duo-card{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:30px; box-shadow:var(--shadow-sm); }
.duo-card--accent{ background:var(--ink); }
.duo-card--accent .check-list li{ color:#d4d8dd; }
.duo-tag{ display:inline-block; font-family:var(--font-display); font-weight:800; font-size:13px; letter-spacing:.12em; text-transform:uppercase; color:var(--orange-600); background:var(--orange-50); padding:6px 14px; border-radius:30px; margin-bottom:20px; }
.duo-card--accent .duo-tag{ color:#fff; background:rgba(244,122,32,.22); }

/* ── Reassure-Block (Text + Liste) ── */
.reassure{ display:grid; grid-template-columns:1.1fr .9fr; gap:clamp(32px,5vw,64px); align-items:center; }
.check-list--dark li{ color:#d4d8dd; }

/* ── Responsive ── */
@media (max-width:1080px){
  .feature-cards, .feature-cards--3{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px){
  .lp-hero--split .lp-hero-grid{ grid-template-columns:1fr; }
  .lp-hero-media{ order:-1; }
  .lp-split, .price-box, .duo-grid, .reassure{ grid-template-columns:1fr; }
  .price-cta{ order:-1; }
}
@media (max-width:560px){
  .feature-cards, .feature-cards--3{ grid-template-columns:1fr; }
  .lp-actions .btn{ width:100%; }
}

/* ============================================================
   DARK LANDING  (Template Name: Dark Landing)
   Alle Klassen mit .dl- Präfix, scoped unter body.dl
   ============================================================ */

/* ── Basis / Reset ── */
body.dl{
  background:#080B0F;
  color:#E8EBF0;
  font-family:var(--font-body);
}
body.dl h1,
body.dl h2,
body.dl h3,
body.dl h4{ color:#F0F2F5; }

/* Dark-theme header overrides */
body.dl .header{
  background:rgba(8,11,15,.88);
  border-bottom-color:rgba(255,255,255,.07);
}
body.dl .nav-links > li > a{ color:#C8CDD5; }
body.dl .nav-links > li > a:hover{ color:#F47A20; background:rgba(244,122,32,.1); }
body.dl .drop{
  background:#111418;
  border-color:rgba(255,255,255,.1);
  box-shadow:0 24px 48px rgba(0,0,0,.6);
}
body.dl .mega-items{ background:#111418; }
body.dl .mega-items a{ color:#C8CDD5; }
body.dl .mega-items a:hover,
body.dl .mega-items a.current-menu-item{ background:rgba(255,255,255,.06); color:#F47A20; }
body.dl .mega-items a small{ color:#4B5260; }
body.dl .mega-cta{ background:#0A0D12; }
body.dl .mega-cta-title{ color:#F0F2F5; }
body.dl .mega-cta-sub{ color:#4B5260; }
body.dl .burger span{ background:#E8EBF0; }

/* ── Shared helpers ── */
.dl-wrap{ max-width:1200px; margin:0 auto; padding-inline:clamp(20px,5vw,56px); }
.dl-section{ padding-block:clamp(72px,9vw,120px); position:relative; }

.dl-kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:12px;
  letter-spacing:.24em; text-transform:uppercase;
  color:#F47A20; margin-bottom:18px;
}
.dl-kicker::before{
  content:''; display:block;
  width:28px; height:2px; background:currentColor; border-radius:1px;
}

.dl-h2{
  font-family:var(--font-display); font-weight:900;
  font-size:clamp(32px,4.5vw,54px); line-height:1.06; letter-spacing:-.025em;
  color:#F0F2F5; margin:0;
}
.dl-h2 em{ font-style:normal; color:#F47A20; }

.dl-section-head{ max-width:640px; margin-bottom:56px; }
.dl-section-head p{ color:#6B7480; font-size:18px; margin-top:16px; line-height:1.65; }

/* Glow blobs */
.dl-glow{
  position:absolute; border-radius:50%; pointer-events:none;
  filter:blur(120px); opacity:.55;
}
.dl-glow--hero{
  width:640px; height:640px;
  top:-160px; right:-80px;
  background:radial-gradient(circle, rgba(244,122,32,.6) 0%, rgba(244,122,32,0) 70%);
}
.dl-glow--services{
  width:500px; height:500px;
  bottom:-100px; left:-100px;
  background:radial-gradient(circle, rgba(244,122,32,.35) 0%, transparent 70%);
}
.dl-glow--cta{
  width:700px; height:700px;
  top:50%; left:50%; transform:translate(-50%,-50%);
  background:radial-gradient(circle, rgba(244,122,32,.3) 0%, transparent 70%);
}

/* ── Buttons ── */
.dl-btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:16px;
  padding:15px 28px; border-radius:10px;
  background:#F47A20; color:#fff;
  border:none; cursor:pointer;
  transition:background .18s, transform .18s, box-shadow .18s;
  text-decoration:none; white-space:nowrap;
}
.dl-btn svg{ width:18px; height:18px; flex-shrink:0; }
.dl-btn:hover{ background:#E06A11; transform:translateY(-2px); box-shadow:0 8px 28px rgba(244,122,32,.38); }
.dl-btn--full{ width:100%; justify-content:center; }
.dl-btn-ghost{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:700; font-size:16px;
  padding:14px 28px; border-radius:10px;
  background:transparent; color:#C8CDD5;
  border:1.5px solid rgba(255,255,255,.14);
  text-decoration:none; white-space:nowrap;
  transition:border-color .18s, color .18s, background .18s;
}
.dl-btn-ghost:hover{ border-color:rgba(244,122,32,.6); color:#F47A20; background:rgba(244,122,32,.06); }

/* ── HERO ── */
.dl-hero{
  position:relative; overflow:hidden;
  min-height:100svh; display:flex; align-items:center;
  padding-block:clamp(100px,12vw,140px) clamp(72px,9vw,100px);
  background:#080B0F;
}
/* subtle dot-grid texture */
.dl-hero::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:28px 28px;
  mask-image:radial-gradient(ellipse 70% 60% at 20% 40%, black 0%, transparent 100%);
}
.dl-hero-inner{
  position:relative; z-index:1;
  display:flex; flex-direction:column; gap:clamp(40px,6vw,64px);
}
.dl-hero-badge{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:600; font-size:13px;
  letter-spacing:.12em; color:#6B7480;
  border:1px solid rgba(255,255,255,.1); border-radius:999px;
  padding:8px 18px; width:fit-content;
}
.dl-dot{
  width:7px; height:7px; border-radius:50%;
  background:#F47A20;
  box-shadow:0 0 10px rgba(244,122,32,.8);
  animation:dl-pulse 2.2s ease-in-out infinite;
}
@keyframes dl-pulse{
  0%,100%{ box-shadow:0 0 10px rgba(244,122,32,.8); }
  50%{ box-shadow:0 0 22px rgba(244,122,32,1); }
}

.dl-h1{
  font-family:var(--font-display); font-weight:900;
  font-size:clamp(44px,8vw,96px); line-height:1.01; letter-spacing:-.03em;
  color:#F0F2F5; margin:0;
}
.dl-h1 em{ font-style:normal; color:#F47A20; }

.dl-hero-desc{
  font-size:clamp(16px,1.8vw,20px); color:#6B7480;
  max-width:520px; line-height:1.7; margin-top:-8px;
}
.dl-hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.dl-hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08); border-radius:16px;
  overflow:hidden;
}
.dl-stat{
  padding:clamp(18px,3vw,28px) clamp(16px,2.5vw,24px);
  background:#0F1318;
  transition:background .2s;
}
.dl-stat:hover{ background:#151920; }
.dl-stat-num{
  font-family:var(--font-display); font-weight:900;
  font-size:clamp(26px,3.5vw,38px); color:#F47A20;
  line-height:1; letter-spacing:-.02em;
}
.dl-stat-lbl{ font-size:13px; color:#6B7480; margin-top:6px; line-height:1.4; }

.dl-hero-scroll{
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  display:flex; justify-content:center;
}
.dl-hero-scroll span{
  display:block; width:2px; height:40px;
  background:linear-gradient(180deg, rgba(244,122,32,.8), transparent);
  border-radius:1px;
  animation:dl-scroll 1.8s ease-in-out infinite;
}
@keyframes dl-scroll{
  0%{ transform:scaleY(0); transform-origin:top; }
  45%{ transform:scaleY(1); transform-origin:top; }
  55%{ transform:scaleY(1); transform-origin:bottom; }
  100%{ transform:scaleY(0); transform-origin:bottom; }
}

/* ── TRUST BAR ── */
.dl-trust{
  background:#0C0F14;
  border-top:1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.07);
  padding-block:24px;
}
.dl-trust-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
}
.dl-trust-item{
  display:flex; align-items:center; gap:14px;
  flex:1; min-width:180px;
}
.dl-trust-item svg{
  width:22px; height:22px; flex-shrink:0;
  stroke:#F47A20;
}
.dl-trust-item strong{ display:block; font-size:14px; color:#C8CDD5; font-weight:700; }
.dl-trust-item span{ display:block; font-size:13px; color:#6B7480; margin-top:2px; }
.dl-trust-sep{ width:1px; height:40px; background:rgba(255,255,255,.1); flex-shrink:0; }

/* ── SERVICES ── */
.dl-services{ background:#080B0F; overflow:hidden; }

.dl-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.07); border-radius:20px;
  overflow:hidden;
}
.dl-service-card{
  display:flex; flex-direction:column; gap:20px;
  padding:clamp(28px,3vw,40px);
  background:#0F1318; text-decoration:none;
  position:relative; overflow:hidden;
  transition:background .22s;
}
.dl-service-card::before{
  content:''; position:absolute;
  bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,rgba(244,122,32,.6),transparent);
  opacity:0; transition:opacity .22s;
}
.dl-service-card:hover{ background:#141920; }
.dl-service-card:hover::before{ opacity:1; }
.dl-service-card:hover .dl-service-arrow{ opacity:1; transform:translate(0,0); color:#F47A20; }

.dl-service-card--featured{
  grid-column:span 2; grid-row:span 1;
  background:#111519;
}
.dl-service-card--featured .dl-service-icon svg{ width:36px; height:36px; }

.dl-service-icon{
  width:48px; height:48px;
  background:rgba(244,122,32,.1);
  border:1px solid rgba(244,122,32,.2);
  border-radius:12px;
  display:grid; place-items:center;
  flex-shrink:0; transition:background .22s, border-color .22s;
}
.dl-service-card:hover .dl-service-icon{
  background:rgba(244,122,32,.18);
  border-color:rgba(244,122,32,.4);
}
.dl-service-icon svg{ width:22px; height:22px; stroke:#F47A20; }
.dl-service-icon svg[fill="currentColor"]{ fill:#F47A20; stroke:none; }

.dl-service-body{ flex:1; }
.dl-service-body h3{
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(17px,1.6vw,20px); color:#E8EBF0;
  letter-spacing:-.01em; margin:0 0 10px;
  line-height:1.2;
}
.dl-service-body p{ font-size:15px; color:#6B7480; line-height:1.65; margin:0; }

.dl-service-arrow{
  width:32px; height:32px; margin-left:auto;
  opacity:0; transform:translate(-4px,4px);
  transition:opacity .22s, transform .22s, color .22s;
  color:#6B7480;
}
.dl-service-arrow svg{ width:100%; height:100%; }

/* ── WHY ── */
.dl-why{
  background:#0A0D12;
  border-top:1px solid rgba(255,255,255,.06);
}
.dl-why-layout{
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(40px,6vw,80px); align-items:start;
}
.dl-why-left p{ color:#6B7480; font-size:18px; margin-top:20px; line-height:1.7; }
.dl-why-left .dl-btn{ display:inline-flex; }

.dl-why-cards{
  display:grid; grid-template-columns:1fr 1fr;
  gap:2px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.07); border-radius:16px;
  overflow:hidden;
}
.dl-why-card{
  display:flex; align-items:flex-start; gap:16px;
  padding:28px; background:#0F1318;
  transition:background .2s;
}
.dl-why-card:hover{ background:#151920; }
.dl-why-icon{
  width:40px; height:40px; flex-shrink:0;
  background:rgba(244,122,32,.1);
  border-radius:10px;
  display:grid; place-items:center;
}
.dl-why-icon svg{ width:20px; height:20px; stroke:#F47A20; }
.dl-why-card h4{
  font-family:var(--font-display); font-weight:800;
  font-size:15px; color:#E8EBF0; margin:0 0 6px;
  letter-spacing:-.01em;
}
.dl-why-card p{ font-size:14px; color:#6B7480; line-height:1.6; margin:0; }

/* ── CTA ── */
.dl-cta{
  background:#080B0F;
  border-top:1px solid rgba(255,255,255,.06);
  overflow:hidden;
}
.dl-cta-inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns:1fr 1fr;
  gap:clamp(48px,7vw,96px); align-items:start;
}
.dl-cta-left .dl-h2{ margin-bottom:16px; }
.dl-cta-left > p{ color:#6B7480; font-size:18px; line-height:1.7; margin-bottom:40px; }

.dl-cta-contacts{ display:flex; flex-direction:column; gap:2px; }
.dl-contact-link{
  display:flex; align-items:center; gap:16px;
  padding:18px 20px; border-radius:12px;
  background:#0F1318; border:1px solid rgba(255,255,255,.07);
  text-decoration:none; color:inherit;
  transition:border-color .2s, background .2s;
}
.dl-contact-link:hover{
  border-color:rgba(244,122,32,.35);
  background:#141920;
}
.dl-contact-icon{
  width:40px; height:40px; flex-shrink:0;
  background:rgba(244,122,32,.1);
  border-radius:10px; display:grid; place-items:center;
}
.dl-contact-icon svg{ width:18px; height:18px; stroke:#F47A20; fill:none; }
.dl-contact-icon svg[fill="currentColor"]{ fill:#F47A20; stroke:none; }
.dl-contact-label{ display:block; font-size:12px; color:#6B7480; letter-spacing:.06em; text-transform:uppercase; }
.dl-contact-val{ display:block; font-weight:700; font-size:16px; color:#E8EBF0; margin-top:2px; }

/* ── Form (dark) ── */
.dl-form-wrap{ }
.dl-form{
  background:#0F1318;
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px; padding:clamp(28px,3vw,40px);
}
.dl-form h3{
  font-family:var(--font-display); font-weight:800;
  font-size:22px; color:#F0F2F5; margin:0 0 6px;
}
.dl-form-sub{ font-size:15px; color:#6B7480; margin:0 0 28px; line-height:1.6; }
.dl-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.dl-field{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.dl-field label{ font-family:var(--font-display); font-weight:600; font-size:13.5px; color:#9BA3AE; }
.dl-field label span{ color:#F47A20; }
.dl-field input,
.dl-field select,
.dl-field textarea{
  background:#161B22;
  border:1.5px solid rgba(255,255,255,.1);
  border-radius:8px;
  color:#E8EBF0; font-family:var(--font-body); font-size:15px;
  padding:13px 16px; outline:none;
  transition:border-color .17s;
  width:100%; box-sizing:border-box;
}
.dl-field input::placeholder,
.dl-field textarea::placeholder{ color:#4B5260; }
.dl-field input:focus,
.dl-field select:focus,
.dl-field textarea:focus{ border-color:rgba(244,122,32,.5); }
.dl-field select{
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7480' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; background-size:18px;
  padding-right:44px; cursor:pointer;
}
.dl-field select option{ background:#161B22; }
.dl-field textarea{ min-height:120px; resize:vertical; }
.dl-form-note{ font-size:13px; color:#4B5260; margin-top:14px; line-height:1.5; }
.dl-form-note a{ color:#F47A20; text-decoration:underline; text-underline-offset:3px; }
.dl-form-ok{
  margin-top:16px; padding:16px 20px; border-radius:10px;
  background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.2);
  color:#4ade80; font-weight:600; font-size:15px;
}

/* ── Responsive ── */
@media (max-width:1024px){
  .dl-hero-stats{ grid-template-columns:repeat(2,1fr); }
  .dl-services-grid{ grid-template-columns:repeat(2,1fr); }
  .dl-service-card--featured{ grid-column:span 2; }
  .dl-why-layout{ grid-template-columns:1fr; }
  .dl-cta-inner{ grid-template-columns:1fr; }
}
@media (max-width:768px){
  .dl-services-grid{ grid-template-columns:1fr; }
  .dl-service-card--featured{ grid-column:span 1; }
  .dl-why-cards{ grid-template-columns:1fr; }
  .dl-form-row{ grid-template-columns:1fr; }
  .dl-trust-sep{ display:none; }
  .dl-trust-row{ flex-direction:column; align-items:flex-start; gap:16px; }
  .dl-hero-actions{ flex-direction:column; }
  .dl-btn, .dl-btn-ghost{ justify-content:center; }
}
@media (max-width:540px){
  .dl-hero-stats{ grid-template-columns:1fr 1fr; }
}

/* ============================================================
   BAU-ÜBERSICHTSSEITE (/bau/)
   ============================================================ */
.bau-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.bau-card{
  display:flex; flex-direction:column; gap:10px;
  background:var(--paper); border:1px solid var(--line); border-radius:var(--r-lg);
  padding:24px 22px 20px; text-decoration:none; color:inherit;
  box-shadow:var(--shadow-sm); transition:.2s ease;
}
.bau-card:hover{
  transform:translateY(-3px); box-shadow:var(--shadow);
  border-color:var(--orange); background:var(--orange-50);
}
.bau-card-ic{
  width:48px; height:48px; border-radius:12px;
  background:var(--orange-50); border:1px solid rgba(244,122,32,.18);
  display:grid; place-items:center; flex-shrink:0; transition:.2s;
}
.bau-card-ic svg{ width:22px; height:22px; color:var(--orange-600); }
.bau-card:hover .bau-card-ic{ background:var(--orange); border-color:var(--orange); }
.bau-card:hover .bau-card-ic svg{ color:#fff; }
.bau-card h3{
  font-family:var(--font-display); font-weight:700; font-size:16px;
  color:var(--ink); line-height:1.25; margin:4px 0 0;
}
.bau-card p{ color:var(--muted); font-size:13.5px; line-height:1.55; flex:1; }
.bau-card-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:auto;
  font-family:var(--font-display); font-weight:700; font-size:13px;
  color:var(--orange-600); padding-top:10px; border-top:1px solid var(--line);
  transition:.15s;
}
.bau-card-link svg{ width:14px; height:14px; transition:transform .2s; }
.bau-card:hover .bau-card-link{ color:var(--orange-600); border-top-color:rgba(244,122,32,.25); }
.bau-card:hover .bau-card-link svg{ transform:translateX(3px); }

@media (max-width:1080px){ .bau-cards{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:720px){  .bau-cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){  .bau-cards{ grid-template-columns:1fr; } }

/* ── Kontakt-Karten-Grid (page-kontakt.php) ── */
.contact-cards-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.contact-card{
  display:flex; flex-direction:column; gap:6px;
  padding:28px 24px 24px;
  background:var(--paper);
  border:1.5px solid var(--line);
  border-radius:var(--r-lg);
  text-decoration:none; color:inherit;
  transition:border-color .18s, box-shadow .18s, transform .18s;
  cursor:pointer;
}
.contact-card:hover{
  border-color:var(--orange);
  box-shadow:0 8px 28px rgba(244,122,32,.12);
  transform:translateY(-2px);
}
.contact-card--static{ cursor:default; }
.contact-card--static:hover{
  border-color:var(--line);
  box-shadow:none;
  transform:none;
}
.cc-icon{
  width:46px; height:46px;
  background:var(--orange-50);
  border-radius:12px;
  display:grid; place-items:center;
  margin-bottom:10px;
  flex-shrink:0;
}
.cc-icon svg{ width:22px; height:22px; color:var(--orange-600); }
.cc-label{
  font-family:var(--font-display); font-weight:700;
  font-size:11.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted);
}
.cc-val{
  font-family:var(--font-display); font-weight:800;
  font-size:clamp(16px,1.8vw,20px); color:var(--ink);
  letter-spacing:-.01em; line-height:1.2;
}
.cc-sub{ font-size:14px; color:var(--muted); margin-top:2px; }
.cc-link{
  font-family:var(--font-display); font-weight:700;
  font-size:13.5px; color:var(--orange-600);
  margin-top:auto; padding-top:14px;
  opacity:0; transform:translateY(4px);
  transition:opacity .18s, transform .18s;
}
.contact-card:hover .cc-link{ opacity:1; transform:translateY(0); }
@media (max-width:640px){
  .contact-cards-grid{ grid-template-columns:1fr; }
}

/* ═══════════════════════════════════════════════════════════
   Customizer-Stil-Vorgaben pro Sektion (Hintergrund/Abstand/Ausrichtung)
   Greifen nur, wenn im Customizer vom Standard abweichend gewählt.
   ═══════════════════════════════════════════════════════════ */
.section.bg-light{ background:#fff; }
.section.bg-gray{  background:var(--bg); }
.section.bg-dark{  background:var(--ink); color:#fff; }
.section.bg-dark .section-head h2{ color:#fff; }
.section.bg-dark .section-head p,
.section.bg-dark p{ color:#cfd4da; }
.section.bg-dark .kicker{ color:var(--orange); }

.hero.space-sm,
.section.space-sm{ padding-block:clamp(40px,5vw,64px); }
.hero.space-lg,
.section.space-lg{ padding-block:clamp(80px,10vw,150px); }

.section.align-center .section-head,
.section.align-center .lst-head{ margin-left:auto; margin-right:auto; text-align:center; }
.section.align-center .lst-head{ max-width:680px; }

/* Freie Blöcke */
.free-block .free-text{ color:var(--muted); font-size:18px; margin-top:18px; }
.free-block .free-text p{ margin:0 0 12px; }
.free-block .free-img{ margin-top:32px; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); }
.free-block .free-img img{ display:block; width:100%; height:auto; }
.free-block .free-cta{ margin-top:32px; }
.free-block.align-center .free-cta{ text-align:center; }
