/* ============================================================
   Sachverständigenbüro Nr.1 — Stylesheet (v3)
   Sachlich-modern: Archivo (Headlines) + Manrope (Text)
   Logo-Farben: tiefes Navy + Gold/Bronze, kein Serif/Kursiv
   ============================================================ */

:root {
  --navy:        #0f1b30;
  --navy-900:    #081020;
  --navy-700:    #1a2842;
  --gold:        #a97f3c;
  --gold-light:  #c39c58;
  --gold-soft:   #e4d5b9;
  --cream:       #efeae0;
  --cream-200:   #e7e1d4;
  --paper:       #f6f3ec;
  --white:       #ffffff;
  --ink:         #161b26;
  --muted:       #5b6776;
  --line:        #e4ddce;
  --line-soft:   #ece6da;
  --wa:          #25d366;
  --wa-dark:     #1ebe5a;

  --shadow:      0 22px 55px -34px rgba(20, 33, 61, .4);
  --shadow-lg:   0 50px 110px -45px rgba(20, 33, 61, .55);
  --ease:        cubic-bezier(.22, 1, .36, 1);
  --maxw:        1240px;

  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: inherit; }

.container { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em;
}
.muted { color: var(--muted); }
.gold  { color: var(--gold); }

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem; font-weight: 700;
  color: var(--gold); margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.7rem; font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; border-radius: 10px; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 12px 26px -14px rgba(176,136,63,.8); }
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 18px 34px -16px rgba(176,136,63,.9); }

.btn-line { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-line:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-line-dark { background: transparent; color: var(--navy); border-color: rgba(20,33,61,.25); }
.btn-line-dark:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

/* „Anrufen": dauerhaft gold, auch im Hover */
.btn-pill { background: var(--gold); color: var(--navy-900); padding: .62rem 1.25rem; font-size: .9rem; border-radius: 999px; }
.btn-pill svg { width: 17px; height: 17px; }
.btn-pill:hover { background: var(--gold-light); }

.btn-whatsapp { background: var(--wa); color: #04361a; }
.btn-whatsapp:hover { background: var(--wa-dark); }
.btn-whatsapp svg { width: 20px; height: 20px; }

.btn-sm { padding: .62rem 1.1rem; font-size: .86rem; }

.text-link {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--navy);
  border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: gap .3s var(--ease), color .3s;
}
.text-link:hover { color: var(--gold); gap: .8rem; }

/* ============================================================
   HEADER — Logo links · Menü mittig · CTA rechts
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 1rem 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.header-grid {
  width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.brand { justify-self: start; display: inline-flex; align-items: center; }
.brand-logo { height: 44px; width: auto; transition: height .4s var(--ease); }
.brand-logo--dark { display: none; }
.main-nav { justify-self: center; display: flex; gap: clamp(1.3rem, 3vw, 2.6rem); }
.main-nav a {
  position: relative; font-weight: 600; font-size: .95rem; color: var(--white);
  padding: .3rem 0; text-shadow: 0 1px 14px rgba(0,0,0,.45); transition: color .3s;
}
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold-light); transition: width .35s var(--ease); }
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { width: 100%; }
.header-cta { justify-self: end; }

.site-header.scrolled, .site-header--solid {
  background: rgba(251,250,247,.92); backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 10px 34px -26px rgba(20,33,61,.6); padding: .5rem 0; border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled .brand-logo, .site-header--solid .brand-logo { height: 36px; }
.site-header.scrolled .brand-logo--light, .site-header--solid .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark, .site-header--solid .brand-logo--dark { display: inline-block; }
.site-header.scrolled .main-nav a, .site-header--solid .main-nav a { color: var(--navy); text-shadow: none; }
.site-header.scrolled .main-nav a:hover, .site-header--solid .main-nav a:hover { color: var(--gold); }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; overflow: hidden;
  color: var(--white); background: var(--navy-900);
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s var(--ease);
}
.hero-slide.is-active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(13,23,41,.9) 0%, rgba(13,23,41,.6) 46%, rgba(13,23,41,.34) 100%),
    linear-gradient(180deg, rgba(13,23,41,.55) 0%, transparent 32%, rgba(13,23,41,.5) 100%);
}
.hero-frame {
  position: relative; z-index: 2; width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto;
  display: flex; flex-direction: column; justify-content: center; padding: 8rem 0 2.4rem;
}
.hero-side {
  position: absolute; top: 50%; font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.55); writing-mode: vertical-rl; transform: translateY(-50%);
}
.hero-side-l { left: -2.1rem; }
.hero-side-r { right: -2.1rem; transform: translateY(-50%) rotate(180deg); color: var(--gold-light); }
.hero-content { max-width: 820px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .24em; font-size: .78rem; font-weight: 700; color: var(--gold-light); margin-bottom: 1.4rem; }
/* Slogan bewusst in Serifenschrift (Fraunces) — auf Kundenwunsch */
.hero-title { font-family: "Fraunces", Georgia, serif; font-size: clamp(3rem, 8.5vw, 6.2rem); font-weight: 500; line-height: .98; letter-spacing: -.02em; }
.hero-title span { display: block; }
.hero-title em { color: var(--gold-light); font-style: italic; font-weight: 400; }
.hero-sub { margin-top: 1.6rem; max-width: 580px; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.86); }
.hero-cta { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-foot { position: absolute; left: 0; right: 0; bottom: 2.1rem; display: flex; align-items: center; justify-content: space-between; }
.hero-claim { font-weight: 700; letter-spacing: .01em; color: rgba(255,255,255,.85); text-transform: uppercase; font-size: .82rem; }
.hero-claim i { color: var(--gold-light); font-style: normal; }
.hero-dots { display: flex; gap: .55rem; }
.hero-dots button { width: 30px; height: 3px; border: none; border-radius: 999px; cursor: pointer; background: rgba(255,255,255,.32); transition: background .3s, width .3s; }
.hero-dots button.active { background: var(--gold-light); width: 46px; }

/* ============================================================
   SECTIONS allgemein
   ============================================================ */
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section-head h2, .lead { max-width: 60ch; }

/* ---------- INTRO ---------- */
.intro { background: var(--paper); }
.intro-top { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.intro-top h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); color: var(--navy); }
.intro-cols { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.intro-lead { font-size: clamp(1.08rem, 1.6vw, 1.32rem); line-height: 1.6; color: var(--ink); font-weight: 500; }
.principles { display: grid; gap: 0; }
.principle { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; padding: 1.25rem 0; border-top: 1px solid var(--line); }
.principle:first-child { border-top: none; padding-top: 0; }
.principle-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; flex: none; }
.principle-ic svg { width: 22px; height: 22px; }
.principle h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .15rem; }
.principle p { color: var(--muted); font-size: .96rem; }

/* ---------- LEISTUNGEN: Intro + Kategorie-Sektionen ---------- */
.cat-intro { background: var(--cream); border-top: 1px solid var(--line-soft); padding-bottom: clamp(1.5rem,3vw,2.5rem); }
.cat-intro h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--navy); max-width: 18ch; }
.cat-intro .muted { max-width: 56ch; margin-top: 1rem; font-size: 1.06rem; }

.cat { background: var(--cream); padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.cat:nth-of-type(even) { background: var(--paper); }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cat-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cat:hover .cat-media img { transform: scale(1.04); }
.cat-num { position: absolute; left: 0; top: 0; }
.cat.reverse .cat-media { order: 2; }
.cat-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.cat-ic { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(150deg, var(--navy), var(--navy-700)); color: var(--gold-light); display: grid; place-items: center; flex: none; box-shadow: var(--shadow); }
.cat-ic svg { width: 30px; height: 30px; }
.cat-label { text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 700; color: var(--gold); }
.cat-body h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); color: var(--navy); margin-bottom: .8rem; }
.cat-body > p { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.cat .checklist { margin: 1.4rem 0 1.8rem; }

/* Checklist (auch auf Unterseiten) */
.checklist { list-style: none; display: grid; gap: .65rem; }
.checklist li { position: relative; padding-left: 2rem; color: var(--ink); font-weight: 500; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .1em; width: 1.25rem; height: 1.25rem; border-radius: 7px;
  background: var(--gold-soft);
}
.checklist li::after {
  content: ""; position: absolute; left: .34rem; top: .42em; width: .55rem; height: .3rem;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg);
}

/* ---------- ÜBER MICH / DER SACHVERSTÄNDIGE ---------- */
.about { background: var(--navy); color: var(--cream); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-portrait { position: relative; }
.about-portrait img { width: 100%; border-radius: 18px; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.portrait-note { margin-top: .7rem; font-size: .8rem; color: rgba(255,255,255,.5); text-align: center; }
.about .kicker { color: var(--gold-light); }
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--white); max-width: 18ch; }
.about-text > p { color: rgba(255,255,255,.78); margin-top: 1rem; max-width: 56ch; font-size: 1.05rem; }
.why-list { list-style: none; margin-top: 1.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 2rem; }
.why-list li { display: flex; flex-direction: column; gap: .15rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); }
.why-list strong { font-size: 1.02rem; color: var(--white); font-weight: 700; }
.why-list span { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ---------- STANDORT ---------- */
.standort-sec { background: var(--paper); }
.standort-head { margin-bottom: 2.4rem; }
.standort-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--navy); }
.standort-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: stretch; }
.map-frame { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 380px; }
.map-frame #map { position: absolute; inset: 0; width: 100%; height: 100%; background: #e8eef3; z-index: 0; }
.leaflet-container { font-family: var(--font-body); }
.standort-card {
  background: var(--navy); color: var(--cream); border-radius: 18px; padding: clamp(1.8rem, 3vw, 2.6rem);
  display: flex; flex-direction: column; gap: 1.3rem; box-shadow: var(--shadow);
}
.standort-card .kicker { color: var(--gold-light); margin-bottom: .4rem; }
.standort-card h3 { font-size: 1.5rem; color: var(--white); }
.sc-list { list-style: none; display: grid; gap: 1rem; }
.sc-list li { display: flex; gap: .9rem; align-items: flex-start; }
.sc-list a { color: var(--cream); }
.sc-list a:hover { color: var(--gold-light); }
.sc-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); color: var(--gold-light); display: grid; place-items: center; }
.sc-ic svg { width: 19px; height: 19px; }
.standort-card .btn { margin-top: auto; }

/* ---------- KONTAKT ---------- */
.kontakt { background: var(--cream); border-top: 1px solid var(--line-soft); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.kontakt-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--navy); margin-top: .3rem; }
.contact-list { list-style: none; margin: 2rem 0; display: grid; gap: 1rem; }
.contact-list li, .contact-list a { display: flex; align-items: center; gap: 1rem; color: var(--ink); font-weight: 500; }
.contact-list a:hover { color: var(--gold); }
.ci { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); color: var(--navy); }
.ci svg { width: 22px; height: 22px; }
.kontakt-quick { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.4rem; }

.kontakt-form { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.8rem, 3.5vw, 2.6rem); box-shadow: var(--shadow); }
.kontakt-form h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 1.3rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem; font-family: var(--font-body); font-size: .98rem;
  background: var(--white); border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(176,136,63,.15); }
.field textarea { resize: vertical; }
.form-note { margin-top: .9rem; font-size: .82rem; color: var(--muted); text-align: center; }
.kontakt-form .req { color: var(--gold); font-weight: 600; font-size: .85em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding-top: 4rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; padding-bottom: 3rem; }
.footer-brand .fb-line1 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.01em; color: #fff; display: block; }
.footer-brand .fb-line1 .gold { color: var(--gold-light); }
.footer-brand .fb-line2 { letter-spacing: .22em; text-transform: uppercase; font-size: .72rem; color: var(--gold); }
.footer-cols { display: flex; gap: 3.2rem; flex-wrap: wrap; }
.footer-cols h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .9rem; }
.footer-cols p { font-size: .92rem; line-height: 1.9; }
.footer-cols a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.3rem 0; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }

/* ============================================================
   WHATSAPP — schwebender Button
   ============================================================ */
.wa-float {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90; display: flex; align-items: center;
  height: 60px; padding: 0 18px; overflow: hidden; background: var(--wa); color: #fff; border-radius: 999px;
  box-shadow: 0 16px 40px -12px rgba(37,211,102,.7); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; flex: none; }
.wa-float-label { max-width: 0; opacity: 0; white-space: nowrap; font-weight: 700; transition: max-width .45s var(--ease), opacity .35s, margin .45s var(--ease); }
.wa-float:hover { transform: translateY(-4px) scale(1.02); }
.wa-float:hover .wa-float-label { max-width: 120px; opacity: 1; margin-left: 10px; }
.wa-float::after { content: ""; position: absolute; inset: -6px; border-radius: 999px; border: 2px solid rgba(37,211,102,.5); animation: waPulse 2.4s ease-out infinite; z-index: -1; }
@keyframes waPulse { 0%{transform:scale(.85);opacity:.8} 100%{transform:scale(1.4);opacity:0} }

/* ============================================================
   UNTERSEITEN
   ============================================================ */
.subhero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; background: var(--navy-900); }
.subhero-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: kenburns 12s ease-out forwards; }
.subhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,23,41,.6) 0%, rgba(13,23,41,.42) 45%, rgba(13,23,41,.9) 100%); }
.subhero-content { position: relative; z-index: 2; width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; padding: 9rem 0 3rem; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }
.subhero h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -.03em; max-width: 20ch; }
.subhero h1 em { color: var(--gold-light); }
.subhero-lead { margin-top: 1.1rem; max-width: 60ch; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: rgba(255,255,255,.85); }

.subpage { background: var(--paper); }
.subpage-intro { max-width: 68ch; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.subpage-intro p { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--ink); font-weight: 500; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-text h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--navy); margin-bottom: .8rem; }
.feature-text p { color: var(--muted); }
.feature-text .checklist { margin-top: 1.3rem; }

/* Ablauf-Stepper — ohne Deko-Ziffern */
.steps-band { background: var(--cream); border-block: 1px solid var(--line-soft); }
.steps-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; border-top: 2px solid var(--line); padding-top: 1.8rem; }
.step-item { position: relative; }
.step-item::before { content: ""; position: absolute; top: -1.95rem; left: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--gold-soft); }
.step-item h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: .3rem; }
.step-item p { color: var(--muted); font-size: .92rem; }

.cta-band { background: var(--navy); color: var(--cream); text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); color: var(--white); max-width: 22ch; margin: 0 auto 1.6rem; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.legal { background: var(--paper); padding-top: 9rem; }
.legal-wrap { max-width: 72ch; }
.legal-wrap h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); margin-bottom: 1.4rem; }
.legal-wrap h2 { font-size: 1.3rem; color: var(--navy); margin: 2.2rem 0 .6rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.legal-wrap p, .legal-wrap li { color: var(--muted); margin-bottom: .55rem; }
.legal-wrap ul { padding-left: 1.2rem; }
.legal-wrap a { color: var(--gold); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { opacity: 0; transform: translateY(20px); animation: heroIn .9s var(--ease) forwards; }
.hero-eyebrow { animation-delay: .12s; }
.hero-title span:nth-child(1) { animation-delay: .26s; }
.hero-title span:nth-child(2) { animation-delay: .4s; }
.hero-sub { animation-delay: .58s; }
.hero-cta { animation-delay: .72s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .intro-cols { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat.reverse .cat-media { order: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 360px; }
  .standort-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-media { order: 0; }
  .steps-flow { grid-template-columns: 1fr 1fr; gap: 2.2rem 1.6rem; }
}
@media (max-width: 760px) {
  .header-grid { grid-template-columns: auto 1fr auto; }
  .brand-logo { height: 36px; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; justify-self: end; background: rgba(255,255,255,.92); border: none; cursor: pointer; padding: 10px; border-radius: 10px; }
  .nav-toggle span { width: 22px; height: 2px; background: var(--navy); transition: .3s; border-radius: 2px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) scale(.96);
    flex-direction: column; align-items: center; gap: .2rem; width: min(92vw, 320px);
    background: rgba(251,250,247,.98); backdrop-filter: blur(14px); border: 1px solid var(--line);
    border-radius: 16px; padding: 1rem; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: .35s var(--ease);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateX(-50%) scale(1); }
  .main-nav a { color: var(--navy) !important; text-shadow: none; padding: .7rem; width: 100%; text-align: center; }
  .why-list { grid-template-columns: 1fr; }
  .steps-flow { grid-template-columns: 1fr; }
  .hero-foot { position: static; margin-top: 2.2rem; flex-direction: column; align-items: flex-start; gap: 1.1rem; }
  .wa-float-label { display: none; }
  .wa-float { padding: 0; width: 60px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .hero-slide.is-active { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   UNTERSEITEN v2 — frischer Split-Hero + Detail-Karten
   ============================================================ */
.svc-hero { background: var(--cream); border-bottom: 1px solid var(--line-soft); }
.svc-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding: clamp(7.5rem, 11vw, 10rem) 0 clamp(3rem, 5vw, 4.5rem);
}
.svc-hero .breadcrumb, .svc-hero .breadcrumb a { color: var(--muted); }
.svc-hero .breadcrumb a:hover { color: var(--gold); }
.svc-hero .breadcrumb span { color: var(--gold); }
.svc-hero h1 { font-size: clamp(2.2rem, 5vw, 3.7rem); color: var(--navy); margin-top: .3rem; }
.svc-hero h1 em { color: inherit; font-style: normal; }
.svc-hero-lead { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 48ch; }
.svc-hero-actions { margin-top: 1.8rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.svc-hero-media { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/4; }
.svc-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-hero-badge {
  position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(13,23,41,.82); backdrop-filter: blur(6px); color: var(--cream);
  padding: .6rem 1rem; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing: .04em;
}
.svc-hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); }

.svc-body { background: var(--paper); }
.svc-body-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.svc-body-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--navy); }
.svc-body-head p { color: var(--muted); margin-top: 1rem; font-size: 1.06rem; }
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.detail-card { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; padding: clamp(1.5rem, 2.5vw, 2.1rem); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.d-ic { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(150deg, var(--navy), var(--navy-700)); color: var(--gold-light); display: grid; place-items: center; margin-bottom: 1.1rem; }
.d-ic svg { width: 26px; height: 26px; }
.detail-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .4rem; }
.detail-card p { color: var(--muted); font-size: .95rem; }

@media (max-width: 1000px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .svc-hero-media { aspect-ratio: 16/10; }
  .detail-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) { .detail-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE: Hero-/Subhero-Bildausschnitt — Motiv sichtbar halten
   ============================================================ */
@media (max-width: 760px) {
  .hero-slide { background-position: 62% center; }
  .subhero-img { background-position: 60% center; }
}

/* ============================================================
   LEISTUNGEN — Bento-Grid (asymmetrisch, keine Nummern-Boxen)
   ============================================================ */
.leistungen { background: var(--cream); border-top: 1px solid var(--line-soft); }
.leistungen-head { max-width: 60ch; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.leistungen-head h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); color: var(--navy); line-height: 1.2; letter-spacing: -.01em; max-width: 26ch; text-wrap: balance; }
.leistungen-sub { color: var(--muted); margin-top: .7rem; font-size: 1.02rem; max-width: 54ch; }

.bento {
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 212px; gap: 1.1rem;
  grid-template-areas:
    "a a b b"
    "a a c d"
    "e f g g";
}
.bt-a{grid-area:a;} .bt-b{grid-area:b;} .bt-c{grid-area:c;} .bt-d{grid-area:d;}
.bt-e{grid-area:e;} .bt-f{grid-area:f;} .bt-g{grid-area:g;}

.bento-tile {
  position: relative; border-radius: 18px; overflow: hidden; padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  border: 1px solid var(--line); background: var(--paper); color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.bento-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.bt-ic { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(150deg, var(--navy), var(--navy-700)); color: var(--gold-light); display: grid; place-items: center; margin-bottom: .85rem; flex: none; }
.bt-ic svg { width: 25px; height: 25px; }
.bt-tag { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 0; }
.bento-tile.is-feature .bt-ic { margin-bottom: auto; }
.bento-tile h3 { font-size: 1.24rem; color: var(--navy); margin-top: .3rem; line-height: 1.18; letter-spacing: -.01em; }
.bento-tile p { color: var(--muted); font-size: .9rem; margin-top: .4rem; }
.bento-tile.is-feature .bt-tag, .bento-tile.is-dark .bt-tag { color: var(--gold-light); }
.bt-arrow { position: absolute; top: 1.35rem; right: 1.35rem; color: var(--gold); opacity: 0; transform: translate(-6px, 6px); transition: .4s var(--ease); }
.bt-arrow svg { width: 22px; height: 22px; }
.bento-tile:hover .bt-arrow { opacity: 1; transform: none; }

/* Feature-Kachel mit Bild */
.bento-tile.is-feature { color: var(--white); border: none; justify-content: flex-end; }
.bt-img { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; transition: transform 1.2s var(--ease); }
.bento-tile.is-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,23,41,.25) 0%, rgba(13,23,41,.55) 55%, rgba(13,23,41,.9) 100%); z-index: 1; }
.bento-tile.is-feature > *:not(.bt-img) { position: relative; z-index: 2; }
.bento-tile.is-feature:hover .bt-img { transform: scale(1.06); }
.bento-tile.is-feature .bt-ic { background: rgba(255,255,255,.16); color: var(--gold-light); }
.bento-tile.is-feature h3 { color: #fff; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.bento-tile.is-feature p { color: rgba(255,255,255,.88); font-size: 1rem; max-width: 34ch; }
.bento-tile.is-feature .bt-arrow { color: var(--gold-light); }

/* Dunkle Akzent-Kachel */
.bento-tile.is-dark { background: var(--navy); border: none; color: var(--cream); }
.bento-tile.is-dark h3 { color: #fff; }
.bento-tile.is-dark p { color: rgba(255,255,255,.72); }
.bento-tile.is-dark .bt-ic { background: rgba(255,255,255,.1); }
.bento-tile.is-dark .bt-arrow { color: var(--gold-light); }

@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 188px;
    grid-template-areas: "a a" "b b" "c d" "e f" "g g"; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto;
    grid-template-areas: "a" "b" "c" "d" "e" "f" "g"; }
  .bento-tile { min-height: 168px; }
  .bento-tile.is-feature { min-height: 260px; }
}

/* Detail-Sektion der Leistungs-Seiten (2-spaltig, Checkliste mit Trennlinien) */
.svc-detail-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.svc-detail-text { position: sticky; top: 110px; }
.svc-detail-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.svc-detail-text > p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.6rem; max-width: 46ch; }
.svc-checklist { display: block; }
.svc-checklist li { padding: 1.05rem 0 1.05rem 2.2rem; border-top: 1px solid var(--line); font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.svc-checklist li:first-child { border-top: none; }
.svc-checklist li::before { top: 1.2em; }
.svc-checklist li::after { top: 1.42em; }
.svc-checklist li small { display: block; font-weight: 400; color: var(--muted); font-size: .9rem; margin-top: .2rem; }
@media (max-width: 1000px) { .svc-detail-grid { grid-template-columns: 1fr; } .svc-detail-text { position: static; } }

/* ============================================================
   ABSCHLUSS-/KONTAKT-SEKTIONEN — je Seite eine eigene Variante
   ============================================================ */
.endcta { position: relative; overflow: hidden; }
.endcta .inner { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.endcta .label { text-transform: uppercase; letter-spacing: .22em; font-size: .76rem; font-weight: 700; color: var(--gold-light); margin-bottom: .8rem; display: block; }
.cta-sublinks { display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center; }
.cta-sublinks a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.cta-sublinks svg { width: 18px; height: 18px; }
.cta-phone { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; line-height: 1; }

/* — Variante PANEL (navy, Person + Telefon groß) — */
.cta-panel { background: var(--navy); color: var(--cream); }
.cta-panel .inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.cta-panel h2 { color: #fff; font-size: clamp(1.7rem,3.4vw,2.6rem); max-width: 18ch; }
.cta-panel .who { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.cta-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(150deg,var(--gold),var(--gold-light)); color: var(--navy-900); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; flex: none; }
.cta-panel .who b { color: #fff; display: block; }
.cta-panel .who span { color: rgba(255,255,255,.6); font-size: .9rem; }
.cta-panel .actions { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-panel .cta-phone { font-size: clamp(2rem,5vw,3.1rem); color: var(--gold-light); }
.cta-panel .cta-phone:hover { color: #fff; }
.cta-panel .cta-sublinks a { color: rgba(255,255,255,.82); }
.cta-panel .cta-sublinks a:hover { color: var(--gold-light); }

/* — Variante SPLIT (Text + Bild nebeneinander) — */
.cta-split { background: var(--navy); color: var(--cream); padding: 0; }
.cta-split .inner { width: 100%; max-width: none; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 380px; }
.cta-split .text { padding: clamp(2.5rem,5vw,4.5rem); display: flex; flex-direction: column; justify-content: center; max-width: 620px; margin-left: auto; }
.cta-split.rev .text { margin-left: 0; margin-right: auto; order: 2; }
.cta-split .pic { background-size: cover; background-position: center; }
.cta-split h2 { color: #fff; font-size: clamp(1.8rem,3.6vw,2.7rem); max-width: 15ch; }
.cta-split .row { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.cta-split .callnote { color: rgba(255,255,255,.7); font-weight: 600; }
.cta-split .callnote a { color: var(--gold-light); }

/* — Variante LIGHT (hell, Serifen-Headline) — */
.cta-light { background: var(--cream); border-top: 1px solid var(--line-soft); }
.cta-light .inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(2rem,5vw,4rem); align-items: end; }
.cta-light .label { color: var(--gold); }
.cta-light h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem,4.4vw,3.1rem); color: var(--navy); letter-spacing: -.02em; }
.cta-light .side { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.cta-light .contact-line { color: var(--muted); font-weight: 600; }
.cta-light .contact-line a:hover { color: var(--gold); }

/* — Variante GOLD (Akzentfläche) — */
.cta-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--navy-900); }
.cta-gold .inner { display: flex; justify-content: space-between; align-items: center; gap: 2.2rem; flex-wrap: wrap; }
.cta-gold .label { color: var(--navy-900); opacity: .7; }
.cta-gold h2 { color: var(--navy-900); font-size: clamp(1.8rem,3.6vw,2.7rem); max-width: 16ch; }
.cta-gold .row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-900); color: #fff; }
.cta-gold .callnote { font-weight: 700; color: var(--navy-900); }
.cta-gold .callnote a { color: var(--navy-900); text-decoration: underline; text-underline-offset: 3px; }

/* — Variante PHONE (Telefonnummer im Fokus) — */
.cta-phonefocus { background: var(--navy); color: var(--cream); text-align: center; }
.cta-phonefocus .big { display: inline-block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem,8vw,5rem); color: #fff; letter-spacing: -.03em; margin: .5rem 0 1.2rem; }
.cta-phonefocus .big:hover { color: var(--gold-light); }
.cta-phonefocus .cta-sublinks { justify-content: center; }
.cta-phonefocus .cta-sublinks a { color: rgba(255,255,255,.82); }
.cta-phonefocus .cta-sublinks a:hover { color: var(--gold-light); }

/* — Variante CARD (navy mit Inset-Karte) — */
.cta-card { background: var(--navy); color: var(--cream); }
.cta-card .card { border: 1px solid rgba(255,255,255,.18); border-radius: 22px; padding: clamp(2rem,4vw,3.4rem); display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; background: rgba(255,255,255,.03); }
.cta-card h2 { color: #fff; font-size: clamp(1.7rem,3.4vw,2.5rem); max-width: 16ch; }
.cta-card .card-right { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.cta-card .cta-phone { font-size: clamp(1.6rem,3.5vw,2.3rem); color: var(--gold-light); }
.cta-card .cta-phone:hover { color: #fff; }
.cta-card .cta-sublinks a { color: rgba(255,255,255,.82); }
.cta-card .cta-sublinks a:hover { color: var(--gold-light); }

@media (max-width: 860px) {
  .cta-panel .inner, .cta-light .inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .cta-split .inner { grid-template-columns: 1fr; }
  .cta-split .pic { min-height: 240px; order: 0 !important; }
  .cta-split .text, .cta-split.rev .text { order: 1 !important; margin: 0; max-width: none; }
  .cta-gold .inner { flex-direction: column; align-items: flex-start; }
}

.endcta { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.cta-split { padding: 0 !important; }

/* ---------- CTA „Blueprint" (bildfrei, Bau-Raster) ---------- */
.cta-blueprint {
  background-color: var(--navy);
  background-image:
    radial-gradient(120% 130% at 100% 0%, rgba(176,136,63,.18) 0%, rgba(176,136,63,0) 46%),
    linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 55%);
  color: var(--cream);
}
.cta-blueprint .inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.2rem, 5vw, 5rem); align-items: center; }
.cta-blueprint .label { color: var(--gold-light); }
.cta-blueprint h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.9rem); line-height: 1.12; letter-spacing: -.02em; max-width: 17ch; }
.cta-blueprint h2 em { font-family: inherit; font-style: normal; font-weight: 800; color: inherit; }
.cta-bp-lead { color: rgba(255,255,255,.72); margin-top: 1.1rem; max-width: 40ch; line-height: 1.65; }
.cta-bp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  display: flex; flex-direction: column; gap: 1rem;
  backdrop-filter: blur(2px);
}
.cta-bp-card .btn { width: 100%; justify-content: center; }
.cta-bp-phone {
  margin-top: .3rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-direction: column; gap: .25rem;
}
.cta-bp-phone-label { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 600; }
.cta-bp-phone-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--gold-light); letter-spacing: -.02em; line-height: 1; transition: color .3s; }
.cta-bp-phone:hover .cta-bp-phone-num { color: #fff; }
@media (max-width: 760px) {
  .cta-blueprint .inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   INTRO v2 — redaktionelles Statement statt Werte-Icons
   ============================================================ */
.statement-grid { display: grid; grid-template-columns: 200px 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.statement-side { position: sticky; top: 110px; }
.statement-side .mark { display: block; font-family: "Fraunces", Georgia, serif; font-size: 5rem; line-height: .6; color: var(--gold-soft); margin-top: 1.2rem; }
.statement { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 3.1vw, 2.55rem); line-height: 1.32; letter-spacing: -.015em; color: var(--navy); max-width: 24ch; }
.statement em { font-family: "Fraunces", Georgia, serif; font-style: italic; font-weight: 400; color: var(--gold); }
.signature { margin-top: clamp(2rem, 4vw, 3rem); padding-top: 1.4rem; border-top: 2px solid var(--line); display: inline-flex; flex-direction: column; gap: .15rem; }
.sig-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--navy); line-height: 1; letter-spacing: -.02em; }
.sig-role { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
@media (max-width: 800px) {
  .statement-grid { grid-template-columns: 1fr; }
  .statement-side { position: static; }
  .statement-side .mark { display: none; }
}

/* ============================================================
   v8 — Feinschliff: Intro neu, Slides ohne Punkte, Bild sichtbar,
        mobiles Seitenmenü (Drawer), mehr Animation
   ============================================================ */

/* Hero-Slide-Indikatoren entfernen — Bilder wechseln weiterhin (Crossfade) */
.hero-dots { display: none !important; }

/* Feature-Bento-Kachel: Bild klar sichtbar, Overlay nur unten für Lesbarkeit */
.bento-tile.is-feature::after {
  background: linear-gradient(180deg, rgba(13,23,41,.04) 0%, rgba(13,23,41,.12) 42%, rgba(13,23,41,.8) 100%);
}

/* ---------- INTRO v3 (strukturiert, ruhig) ---------- */
.intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.intro-left { position: sticky; top: 120px; }
.intro-headline { font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--navy); line-height: 1.1; letter-spacing: -.02em; max-width: 13ch; margin-top: .2rem; }
.intro-headline em { font-family: inherit; font-style: normal; font-weight: inherit; color: var(--gold); }
.intro-right > p { font-size: 1.12rem; line-height: 1.7; color: var(--muted); max-width: 58ch; }
.intro-right > p + p { margin-top: 1.05rem; }
.intro-right .signature { margin-top: clamp(1.8rem, 3vw, 2.6rem); }
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; } .intro-left { position: static; } }

/* ---------- Mehr Animation ---------- */
.bento .bento-tile.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.bento .bento-tile.reveal:nth-child(1){transition-delay:.00s}
.bento .bento-tile.reveal:nth-child(2){transition-delay:.07s}
.bento .bento-tile.reveal:nth-child(3){transition-delay:.14s}
.bento .bento-tile.reveal:nth-child(4){transition-delay:.21s}
.bento .bento-tile.reveal:nth-child(5){transition-delay:.28s}
.bento .bento-tile.reveal:nth-child(6){transition-delay:.35s}
.bento .bento-tile.reveal:nth-child(7){transition-delay:.42s}
.svc-checklist li { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.svc-checklist.in li { opacity: 1; transform: none; }
.svc-checklist.in li:nth-child(2){transition-delay:.08s}
.svc-checklist.in li:nth-child(3){transition-delay:.16s}
.svc-checklist.in li:nth-child(4){transition-delay:.24s}
.svc-checklist.in li:nth-child(5){transition-delay:.32s}

/* Scroll-Fortschrittsbalken */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 300; pointer-events: none; }

/* ============================================================
   MOBILE — Seitenmenü (Drawer) statt zentriertem Dropdown
   ============================================================ */
.drawer-call { display: none; }
@media (max-width: 760px) {
  .site-header { z-index: 200; }
  .nav-toggle { position: relative; z-index: 230; }

  .main-nav {
    position: fixed; top: 0; right: 0; left: auto; height: 100svh; width: min(84vw, 340px);
    transform: translateX(106%); transition: transform .42s var(--ease);
    background: var(--navy); flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 5.6rem 1.5rem 2rem; border: none; border-radius: 0;
    box-shadow: -40px 0 90px -40px rgba(0,0,0,.75);
    opacity: 1; visibility: visible; z-index: 220;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a {
    color: var(--cream) !important; text-shadow: none; font-size: 1.18rem; font-weight: 700;
    padding: 1.05rem .3rem; border-bottom: 1px solid rgba(255,255,255,.12); text-align: left; width: 100%;
  }
  .main-nav a::after { display: none; }
  .drawer-call { display: flex !important; margin-top: 1.6rem; justify-content: center; }

  .nav-backdrop { position: fixed; inset: 0; background: rgba(8,14,26,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .42s var(--ease), visibility .42s; z-index: 210; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }

  /* Hero auf Mobil: alles sichtbar */
  .hero-frame { padding: 6.5rem 0 5.5rem; justify-content: center; }
  .hero-title { font-size: clamp(2.5rem, 11.5vw, 3.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-cta .btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) { .svc-checklist li { opacity: 1; transform: none; } .scroll-progress { display: none; } }
