/* ============================================================
   Thorns Trocknungs-Technik
   Design-System (Light-Theme-Lock, weiss-dominant, Blau-Akzent)
   Hand-codiert, ohne Framework / Build.
   ============================================================ */

/* ---------- Fonts (selbst gehostet, DSGVO-sicher) ---------- */
@font-face {
  font-family: "Figtree";
  font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/figtree-400.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/figtree-500.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/figtree-600.woff2") format("woff2");
}
@font-face {
  font-family: "Figtree";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/figtree-700.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/bricolage-600.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/bricolage-700.woff2") format("woff2");
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Marke (aus Logo abgeleitet) */
  --navy:        #0E2E4D;
  --navy-deep:   #0A2540;
  --blue:        #14609E;   /* Primaerfarbe */
  --blue-strong: #114F82;
  --blue-bright: #2E86D8;
  --blue-light:  #6FB1E0;
  --tint:        #EAF3FB;   /* helle Sektionsflaeche */
  --tint-2:      #F5F9FD;
  --ink:         #16242F;   /* Fliesstext */
  --muted:       #51616F;   /* Sekundaertext */
  --line:        #E1E9F1;   /* Trennlinien */
  --line-soft:   #EEF3F8;
  --white:       #FFFFFF;
  --ok:          #1E8E6A;

  /* Typo */
  --font-display: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
  --font-text: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Radien (Shape-Lock: Flaechen 16, Inputs 12, Buttons pill) */
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 12px;
  --r-pill: 999px;

  /* Schatten (blau getoent, kein reines Schwarz) */
  --shadow-sm: 0 1px 2px rgba(14,46,77,.06), 0 2px 8px rgba(14,46,77,.05);
  --shadow-md: 0 6px 18px rgba(14,46,77,.08), 0 2px 6px rgba(14,46,77,.05);
  --shadow-lg: 0 24px 60px rgba(14,46,77,.14);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 120px);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 17.5px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-strong); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typo-Helfer ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--navy);
  text-wrap: balance;
}
.h1 { font-size: clamp(2.3rem, 5.4vw, 3.7rem); }
.h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
.h3 { font-size: clamp(1.18rem, 1.7vw, 1.42rem); line-height: 1.2; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.06rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 60ch; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 600; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--blue-light); border-radius: 2px;
}
.accent { color: var(--blue); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .lead { margin-top: 1rem; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .92em 1.5em; border-radius: var(--r-pill);
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .12s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-strong); color: #fff; box-shadow: var(--shadow-md); }
.btn-secondary { background: #fff; color: var(--blue-strong); border-color: #cfe0ef; }
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-strong); background: var(--tint-2); }
.btn-ghost-light { background: rgba(255,255,255,.10); color:#fff; border-color: rgba(255,255,255,.3); }
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color:#fff; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 1.05em 1.7em; font-size: 1.05rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand { display: flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand img { height: 38px; width: auto; }
.brand .sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); }

.nav-links { display: flex; align-items: center; gap: 1.65rem; }
.nav-links a {
  color: var(--navy); font-weight: 500; font-size: .98rem; position: relative; padding: .35rem 0;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: right .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: .9rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--navy);
  white-space: nowrap;
}
.nav-phone svg { width: 1.05em; height: 1.05em; color: var(--blue); }
.nav-badge {
  display:inline-flex; align-items:center; gap:.45rem;
  font-size:.8rem; font-weight:600; color: var(--blue-strong);
  background: var(--tint); border:1px solid #d8e7f4; padding:.35rem .7rem; border-radius: var(--r-pill);
}
.nav-badge .dot { width:7px; height:7px; border-radius:50%; background: var(--ok); }

.nav-toggle { display: none; }

/* Zwischenbreiten: Header entlasten, bevor das Burger-Menü greift */
@media (max-width: 1200px) { .nav-badge { display: none; } }
@media (max-width: 1090px) { .nav-links { gap: 1.15rem; } .nav-phone { display: none; } }

@media (max-width: 1000px) {
  .nav-links, .nav-cta .btn, .nav-badge, .nav-phone { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line);
    background: #fff; color: var(--navy);
  }
  .nav-toggle svg { width: 24px; height: 24px; }
}

/* Mobile-Menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 130;
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .32s var(--ease);
  display: flex; flex-direction: column; padding: 1.25rem; gap: .25rem;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .mm-head { display:flex; align-items:center; justify-content:space-between; margin-bottom: 1rem; }
.mobile-menu .mm-head img { height: 34px; }
.mm-close { width: 44px; height: 44px; border-radius: 12px; border:1px solid var(--line); background:#fff; color: var(--navy); display:inline-flex; align-items:center; justify-content:center; }
.mobile-menu a.mm-link {
  padding: .85rem .5rem; font-size: 1.1rem; font-weight: 600; color: var(--navy);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .mm-actions { margin-top: 1.1rem; display: grid; gap: .6rem; }
.mobile-menu .btn { width: 100%; }
.scrim {
  position: fixed; inset: 0; background: rgba(14,37,64,.42); z-index: 120;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.scrim.show { opacity: 1; visibility: visible; }

/* Dauerhafter mobiler Anruf-Button */
.call-fab {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--blue); color: #fff; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(20,96,158,.45);
}
.call-fab svg { width: 26px; height: 26px; }
@media (max-width: 1000px) { .call-fab { display: inline-flex; } }

/* ============================================================
   HERO (asymmetrischer Split)
   ============================================================ */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); overflow: clip; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy { max-width: 36rem; }
.hero h1 { margin: .25rem 0 1.1rem; }
.hero .lead { margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-media { position: relative; }
.hero-media .frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.4; background: var(--tint);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px);
  border-radius: var(--r-pill); padding: .6rem .95rem; box-shadow: var(--shadow-md);
  font-weight: 600; font-size: .92rem; color: var(--navy);
}
.hero-badge .pulse {
  position: relative; width: 11px; height: 11px; border-radius: 50%; background: var(--ok);
}
.hero-badge .pulse::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--ok); opacity: .55; animation: ring 2.2s var(--ease) infinite;
}
@keyframes ring { 0% { transform: scale(.6); opacity: .6; } 100% { transform: scale(1.5); opacity: 0; } }
.hero-deco {
  position: absolute; z-index: -1; right: -8%; top: -12%;
  width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #dcebff00, var(--tint) 60%, #fff 100%);
  filter: blur(10px); opacity: .9;
}

/* Wave-Trenner */
.wave { display: block; width: 100%; height: auto; color: var(--tint); }
.wave-flip { transform: rotate(180deg); }

/* ---------- Trust-/USP-Band ---------- */
.usp-band { background: var(--tint); }
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2.5rem); }
.usp {
  display: flex; gap: 1rem; align-items: flex-start; padding-block: clamp(2rem, 4vw, 2.75rem);
}
.usp .ic {
  flex: 0 0 auto; width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; background: #fff; color: var(--blue);
  box-shadow: var(--shadow-sm); border: 1px solid #dce8f4;
}
.usp .ic svg { width: 26px; height: 26px; }
.usp h3 { font-family: var(--font-text); font-weight: 700; font-size: 1.08rem; color: var(--navy); margin-bottom: .15rem; }
.usp p { font-size: .96rem; color: var(--muted); line-height: 1.5; }
.trust-line {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: center;
  padding-top: 1.2rem; border-top: 1px solid #dbe7f3;
  color: var(--muted); font-size: .9rem; font-weight: 500;
}
.trust-line span { display: inline-flex; align-items: center; gap: .5rem; }
.trust-line svg { width: 1.05em; height: 1.05em; color: var(--blue); }

/* ============================================================
   LEISTUNGEN (Karten-Grid)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem 1.55rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3e3f1; }
.card .ic {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  background: var(--tint); color: var(--blue); margin-bottom: 1.05rem;
}
.card .ic svg { width: 25px; height: 25px; }
.card h3 { font-family: var(--font-text); font-weight: 700; font-size: 1.12rem; color: var(--navy); margin-bottom: .45rem; line-height: 1.25; }
.card p { color: var(--muted); font-size: .97rem; }

/* Vorteils-Liste mit Tropfen-Bullet */
.checklist { display: grid; gap: .85rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist .tick {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  background: var(--tint); color: var(--blue); display: grid; place-items: center; margin-top: 1px;
}
.checklist .tick svg { width: 15px; height: 15px; }
.checklist strong { color: var(--navy); font-weight: 600; }
.checklist span { color: var(--muted); }

/* Split (Text + Liste) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.tight { align-items: start; }

/* ============================================================
   EINBLICKE (Vorher / Nachher)
   ============================================================ */
.einblicke-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 3vw, 2rem); align-items: start; }
.ba {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ba:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img { position: relative; aspect-ratio: 4 / 5; background: var(--tint); overflow: hidden; }
.ba-img picture { position: absolute; inset: 0; }
.ba-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img + .ba-img { border-left: 2px solid #fff; }
.ba-tag {
  position: absolute; top: 10px; left: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: var(--r-pill); color: #fff; backdrop-filter: blur(3px);
}
.ba-tag.vorher { background: rgba(14,37,64,.78); }
.ba-tag.nachher { background: rgba(20,96,158,.9); }
.ba-cap { padding: 1.05rem 1.25rem; }
.ba-cap h3 { font-family: var(--font-text); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: .2rem; }
.ba-cap p { color: var(--muted); font-size: .93rem; line-height: 1.5; }

/* ============================================================
   SERVICE-BAND (dunkel / Navy)
   ============================================================ */
.band-dark { position: relative; background: var(--navy); color: #eaf1f8; }
.band-dark h2 { color: #fff; }
.band-dark .lead { color: #bcd0e4; }
.band-dark .eyebrow { color: var(--blue-light); }
.band-dark .eyebrow::before { background: var(--blue-light); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); margin-top: 2.5rem; }
.svc {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 1.6rem 1.5rem;
}
.svc .ic {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(111,177,224,.16); color: var(--blue-light); margin-bottom: 1rem;
}
.svc .ic svg { width: 24px; height: 24px; }
.svc h3 { font-family: var(--font-text); color: #fff; font-weight: 700; font-size: 1.08rem; margin-bottom: .4rem; }
.svc p { color: #b8cce0; font-size: .96rem; }

/* ============================================================
   UEBER UNS (Split: Text + Zitat/Foto)
   ============================================================ */
.about-quote {
  position: relative; background: var(--tint); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); border: 1px solid #dbe8f4;
}
.about-quote .mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--blue-light); height: 2rem; }
.about-quote blockquote { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.6rem); color: var(--navy); line-height: 1.3; letter-spacing: -.01em; }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.9rem, 2vw, 1.3rem); margin-top: 1.7rem; }
.founder { display: flex; flex-direction: column; gap: .75rem; margin: 0; }
.founder-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-md);
  background: var(--blue); color: #fff; display: grid; place-items: center; overflow: hidden;
  box-shadow: 0 0 0 3px #fff, 0 6px 18px rgba(14,46,77,.18);
}
.founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.founder-photo .av-initials {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .02em;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
}
.founder figcaption b { color: var(--navy); display: block; line-height: 1.2; }
.founder figcaption span { color: var(--muted); font-size: .92rem; }
.stat-row { display: flex; gap: clamp(1.5rem,4vw,3rem); margin-top: 2rem; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--blue); line-height: 1; }
.stat .l { color: var(--muted); font-size: .92rem; margin-top: .3rem; }

/* ============================================================
   STANDORT / REGION
   ============================================================ */
.region-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.map-card {
  position: relative; background: var(--tint); border: 1px solid #d9e7f4; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.map-card svg.map { width: 100%; height: auto; display: block; }
.addr-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.3rem 1.4rem; box-shadow: var(--shadow-sm); display: grid; gap: .9rem;
}
.addr-row { display: flex; gap: .85rem; align-items: flex-start; }
.addr-row .ic { flex:0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: var(--tint); color: var(--blue); display:grid; place-items:center; }
.addr-row .ic svg { width: 21px; height: 21px; }
.addr-row b { color: var(--navy); display: block; }
.addr-row a, .addr-row span { color: var(--muted); }
.addr-row a:hover { color: var(--blue); }

/* ============================================================
   KONTAKT (Formular + Info)
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md);
}
.field { display: grid; gap: .4rem; margin-bottom: 1.05rem; }
.field label { font-weight: 600; font-size: .92rem; color: var(--navy); }
.field .req { color: var(--blue); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--tint-2); transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #92a2b1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(20,96,158,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.file-row input[type="file"] { padding: .6rem; background: #fff; }
.consent { display: flex; gap: .65rem; align-items: flex-start; margin: .3rem 0 1.2rem; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--blue); }
.consent label { font-weight: 500; font-size: .9rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .9rem; }

.contact-aside { display: grid; gap: 1.1rem; }
.contact-call {
  background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: 1.6rem 1.5rem;
}
.contact-call .small { color: var(--blue-light); font-weight: 600; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-call .tel { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 1.95rem); color: #fff; margin: .35rem 0 1rem; display: inline-block; }
.contact-call .tel:hover { color: var(--blue-light); }
.contact-call .row { display: flex; gap: .7rem; align-items: center; color: #cfe0f0; font-size: .96rem; margin-top: .55rem; }
.contact-call .row svg { width: 18px; height: 18px; color: var(--blue-light); flex:0 0 auto; }
.contact-call .row a { color: #cfe0f0; }
.contact-call .row a:hover { color: #fff; }
.hours-card {
  background: var(--tint); border: 1px solid #d9e7f4; border-radius: var(--r-md); padding: 1.3rem 1.4rem;
}
.hours-card h3 { font-family: var(--font-text); font-size: 1.02rem; color: var(--navy); margin-bottom: .6rem; }
.hours-card p { color: var(--muted); font-size: .95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: #aebfd0; padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer-brand .wm { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: -.01em; }
.footer-brand .wm small { display:block; font-family: var(--font-text); font-weight: 600; font-size: .72rem; letter-spacing: .22em; color: var(--blue-light); text-transform: uppercase; margin-top: .15rem; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .95rem; color: #9fb2c6; }
.footer-col h4 { color: #fff; font-family: var(--font-text); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col a, .footer-col p { color: #aebfd0; font-size: .96rem; padding-block: .25rem; }
.footer-col a:hover { color: #fff; }
.footer-col .row { display:flex; gap:.6rem; align-items:flex-start; }
.footer-col .row svg { width: 17px; height: 17px; color: var(--blue-light); margin-top: 5px; flex:0 0 auto; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.footer-bottom nav { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-bottom a { color: #aebfd0; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL-ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-badge .pulse::after { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 520px; margin-inline: auto; }
  .hero-media .frame { aspect-ratio: 16 / 12; }
  .cards, .svc-grid, .usp-grid { grid-template-columns: 1fr 1fr; }
  .split, .region-wrap, .contact-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav { height: 64px; }
  .cards, .svc-grid, .usp-grid, .einblicke-grid, .grid-2 { grid-template-columns: 1fr; }
  .usp { padding-block: 1.25rem; }
  .usp:not(:last-child) { border-bottom: 1px solid #dbe7f3; }
  .ba-pair { grid-template-columns: 1fr 1fr; }   /* Vorher/Nachher bleibt nebeneinander */
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1 1 auto; }
}

/* ---------- Rechtsseiten (Lesetext) ---------- */
.legal { padding-block: clamp(2.5rem, 5vw, 4rem); }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 .7rem; color: var(--navy); }
.legal h3 { font-size: 1.08rem; margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--ink); margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }
.legal a { word-break: break-word; }
.legal .ph { background: #fff3cd; border: 1px dashed #d8b73a; border-radius: 6px; padding: 0 .35em; color: #6b520a; font-weight: 600; }
.back-link { display:inline-flex; align-items:center; gap:.4rem; margin-bottom: 1.5rem; font-weight:600; }

/* ============================================================
   REDESIGN-BAUSTEINE (schlank, beweis-orientiert)
   ============================================================ */

/* Vertrauens-Streifen (Fakten statt Text-USPs) */
.factbar { border-block: 1px solid var(--line); background: var(--tint-2); }
.factbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .35rem;
  padding: clamp(1.5rem, 3.2vw, 2.1rem) 1rem;
}
.fact:not(:first-child) { border-left: 1px solid var(--line); }
.fact svg { width: 24px; height: 24px; color: var(--blue); }
.fact .fn { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2.1vw, 1.7rem); color: var(--navy); line-height: 1; letter-spacing: -.01em; }
.fact .fl { font-size: .9rem; color: var(--muted); font-weight: 500; line-height: 1.3; max-width: 22ch; }

/* Leistungen als Foto-Bloecke mit Overlay */
.leistungen-photo { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.4rem); }
.lp {
  position: relative; border-radius: var(--r-md); overflow: hidden; isolation: isolate;
  min-height: clamp(310px, 34vw, 420px); display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lp:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.lp img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s var(--ease); }
.lp:hover img { transform: scale(1.05); }
.lp::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(10,37,64,.94) 4%, rgba(10,37,64,.55) 42%, rgba(10,37,64,.10) 78%);
}
.lp-body { padding: clamp(1.2rem, 2vw, 1.7rem); color: #fff; }
.lp .lp-ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.16); backdrop-filter: blur(4px); margin-bottom: .85rem; }
.lp .lp-ic svg { width: 23px; height: 23px; color: #fff; }
.lp h3 { font-family: var(--font-text); color: #fff; font-size: 1.22rem; font-weight: 700; margin-bottom: .3rem; line-height: 1.2; }
.lp p { color: #d7e6f4; font-size: .95rem; line-height: 1.45; }

/* Schlanke Service-Zeile unter Leistungen */
.service-line {
  display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: center;
  margin-top: clamp(1.4rem, 2.5vw, 2rem); color: var(--muted); font-size: .96rem; font-weight: 500;
}
.service-line span { display: inline-flex; gap: .55rem; align-items: center; }
.service-line svg { width: 1.1em; height: 1.1em; color: var(--blue); flex: 0 0 auto; }

/* Sachverstaendigen-Badge (Ueber uns) */
.cert-badge {
  display: inline-flex; gap: .6rem; align-items: center; margin-top: 1.4rem;
  background: var(--tint); border: 1px solid #d8e7f4; border-radius: var(--r-pill);
  padding: .6rem 1rem; font-weight: 600; font-size: .92rem; color: var(--blue-strong);
}
.cert-badge svg { width: 1.2em; height: 1.2em; color: var(--blue); flex: 0 0 auto; }

@media (max-width: 860px) {
  .leistungen-photo { grid-template-columns: 1fr; }
  .lp { min-height: 240px; }
}
@media (max-width: 760px) {
  .factbar-grid { grid-template-columns: 1fr 1fr; }
  .fact:not(:first-child) { border-left: none; }
  .fact:nth-child(even) { border-left: 1px solid var(--line); }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- Danke-Seite ---------- */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 3rem 0; }
.thanks .check { width: 84px; height: 84px; border-radius: 50%; background: var(--tint); color: var(--ok); display: grid; place-items: center; margin: 0 auto 1.5rem; }
.thanks .check svg { width: 44px; height: 44px; }
.thanks h1 { margin-bottom: 1rem; }
.thanks p { max-width: 46ch; margin: 0 auto 2rem; color: var(--muted); }
