/* =========================================================
   Deutsche Firmenenergie · Design Tokens
   ========================================================= */
:root {
  /* DVAG Brand Palette ------------------------------------- */
  --gold:        #C8AA22;   /* DVAG Gold — Hauptfarbe */
  --gold-bright: #DDB833;   /* Brighter gold — accent-word / cheerful emphasis */
  --gold-dark:   #65571A;   /* West Coast — Kontrast & Typografie */
  --gold-soft:   #F5ECC2;   /* Light gold tint — Badges / Pills */
  --gold-wash:   #FBF7E5;   /* Very subtle gold tint for warm surfaces */
  --cool:        #EAEFF3;   /* Mystic — Hellgrau Hintergrund */
  --cool-line:   #C5CDD5;   /* Cool border / divider */
  --white:       #FFFFFF;
  --anthracite:  #333333;   /* Body text */

  /* Aliases (legacy CSS keeps working) --------------------- */
  --ink:        var(--anthracite);
  --ink-deeper: #1F1F1F;
  --ink-soft:   #424242;
  --ink-2:      #5A5F66;
  --ink-3:      #8A8F96;
  --acc:        var(--gold);
  --acc-strong: var(--gold-dark);
  --acc-soft:   var(--gold-soft);
  --paper:      var(--white);
  --bone:       var(--cool);
  --bone-2:     #DBE3EA;
  --line:       #DDE2E8;
  --line-2:     var(--cool-line);
  --on-dark:    #FAFAFA;
  --on-dark-2:  #B8BCC2;
  --on-dark-3:  #80858C;

  /* Fonts */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-brand: "Chaz", "Bowlby One SC", "Inter", -apple-system, sans-serif;

  /* Spacing */
  --s-4: 4px; --s-8: 8px; --s-12: 12px; --s-16: 16px; --s-24: 24px;
  --s-32: 32px; --s-48: 48px; --s-64: 64px; --s-96: 96px; --s-128: 128px; --s-160: 160px;

  /* Radii */
  --r-8: 8px; --r-12: 12px; --r-16: 16px; --r-24: 24px; --r-32: 32px;

  /* Shadows */
  --sh-card: 0 2px 8px rgba(51, 51, 51, 0.06);
  --sh-hover: 0 12px 32px rgba(51, 51, 51, 0.10);
  --sh-mega: 0 8px 24px rgba(51, 51, 51, 0.08);
  --sh-glass: 0 14px 40px rgba(51, 51, 51, 0.14);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --header-h: 80px;
  --topbar-h: 32px;
}

/* =========================================================
   Reset / Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "tnum" 1, "lnum" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: var(--gold-dark); }

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: 32px;
}

/* =========================================================
   Typography
   ========================================================= */
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
}
.body-l {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-2);
}
.body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.body-s {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acc-strong);
}
.num {
  font-family: var(--serif);
  font-weight: 500;
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: -0.02em;
}

/* Accent word — readable West Coast text with cheerful gold underline */
.accent-word {
  font-style: italic;
  color: var(--gold-dark);
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-inline-end: 0.06em;
}
.accent-word::after {
  content: "";
  position: absolute;
  left: 0.04em;
  right: 0.06em;
  bottom: -0.06em;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 600ms var(--ease) 800ms;
}
.accent-word.is-on::after,
.reveal.is-in .accent-word::after { transform: scaleX(1); }

/* Dark sections */
.on-dark .h-display,
.on-dark .h2,
.on-dark .h3,
.on-dark .h4 { color: var(--on-dark); }
.on-dark .body, .on-dark .body-l, .on-dark .body-s { color: var(--on-dark-2); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  border-radius: var(--r-8);
  border: 1px solid transparent;
  min-height: 48px;
  transition: transform 200ms var(--ease), background-color 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.99); }

.btn-primary {
  background: var(--gold-bright);
  color: var(--anthracite);
  border-color: var(--gold-bright);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  font-weight: 600;
}
.btn-primary:hover { background: var(--gold-dark); color: var(--white); border-color: var(--gold-dark); }

.btn-ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-ink:hover { background: var(--ink-deeper); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-secondary:hover { border-color: var(--ink); background: rgba(0,0,0,0.02); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(0,0,0,0.03); }

.btn-sm { padding: 9px 16px; min-height: 40px; font-size: 13px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--acc-strong);
  letter-spacing: 0.005em;
  transition: gap 200ms var(--ease);
}
.text-link:hover { gap: 10px; }
.text-link::after { content: "→"; transition: transform 200ms var(--ease); }

/* =========================================================
   Top Bar + Header
   ========================================================= */
.topbar {
  height: var(--topbar-h);
  background: var(--cool);
  color: var(--ink);
  font-size: 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cool-line);
}
.topbar .container-wide { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ticker { display: flex; align-items: center; gap: 14px; min-width: 0; flex-wrap: nowrap; overflow: hidden; }
.ticker .stat { color: var(--ink-2); font-feature-settings: "tnum" 1, "lnum" 1; white-space: nowrap; }
.ticker .stat strong { color: var(--ink); font-weight: 600; }
.ticker .bullet {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-bright);
  flex-shrink: 0;
}
.topbar-meta { display: flex; align-items: center; gap: 20px; color: var(--ink-2); }
.topbar-meta a { color: var(--ink-2); transition: color 200ms var(--ease); }
.topbar-meta a:hover { color: var(--ink); }
.topbar-meta .sep { opacity: 0.4; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background 240ms var(--ease), border-color 240ms var(--ease), backdrop-filter 240ms var(--ease), height 240ms var(--ease);
}
.site-header.is-scrolled {
  background: color-mix(in oklab, var(--paper) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border-bottom-color: var(--line);
}
.site-header > .container-wide {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: height 240ms var(--ease);
}
.site-header.is-scrolled > .container-wide { height: 64px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
}
.site-footer .brand-logo { height: 48px; }
.mobile-nav-head .brand-logo { height: 36px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-8);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav-item:hover { background: rgba(0,0,0,0.04); color: var(--acc-strong); }
.nav-item .chev { width: 10px; height: 10px; opacity: 0.5; }

.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-family: var(--sans);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 13px;
  color: var(--ink-2);
  transition: color 200ms var(--ease);
}
.header-phone:hover { color: var(--ink); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-8);
  border: 1px solid var(--line);
  background: transparent;
  align-items: center; justify-content: center;
}
.hamburger svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.5; fill: none; }

/* =========================================================
   Mobile Nav (Off-Canvas)
   ========================================================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 280ms;
}
.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 36, 0.5);
  opacity: 0;
  transition: opacity 240ms var(--ease);
  cursor: pointer;
}
.mobile-nav.is-open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100%);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform 320ms var(--ease);
  box-shadow: -16px 0 48px rgba(20, 25, 35, 0.18);
  overflow: hidden;
}
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-8);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.mobile-nav-close:hover { background: rgba(0,0,0,0.04); border-color: var(--ink-2); }
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-list {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0;
}
.mobile-nav-item,
.mobile-nav-group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
  transition: background 200ms var(--ease);
}
.mobile-nav-item:hover,
.mobile-nav-group > summary:hover { background: rgba(0,0,0,0.025); }
.mobile-nav-item:active,
.mobile-nav-group > summary:active { background: rgba(0,0,0,0.05); }
.mobile-nav-group { border: none; }
.mobile-nav-group > summary::-webkit-details-marker { display: none; }
.mobile-nav-group > summary::marker { content: ""; }
.mobile-nav-chev {
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--ink-2);
  border-bottom: 1.5px solid var(--ink-2);
  transform: rotate(45deg);
  transition: transform 200ms var(--ease);
  margin-right: 4px;
  margin-top: -2px;
}
.mobile-nav-group[open] .mobile-nav-chev { transform: rotate(-135deg); margin-top: 2px; }
.mobile-nav-meta {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.mobile-nav-subgroup {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 16px 32px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  gap: 2px;
}
.mobile-nav-sublabel {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 14px 0 4px;
}
.mobile-nav-sublabel:first-child { padding-top: 6px; }
.mobile-nav-subgroup a {
  display: block;
  padding: 11px 0;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: color 200ms var(--ease);
}
.mobile-nav-subgroup a:last-of-type { border-bottom: none; }
.mobile-nav-subgroup a:hover { color: var(--acc-strong); }
.mobile-nav-foot {
  padding: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  background: var(--paper);
}
.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-8);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.mobile-nav-phone:hover { border-color: var(--ink); color: var(--acc-strong); }
.mobile-nav-phone svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.4; fill: none; color: var(--acc-strong); }
.mobile-nav-cta { width: 100%; }
.mobile-nav-meta-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-3);
  padding-top: 4px;
}
.mobile-nav-meta-row a { color: var(--ink-2); }
.mobile-nav-meta-row a:hover { color: var(--acc-strong); }

/* Hamburger icon animates to X when nav open */
.hamburger { transition: background 200ms var(--ease), border-color 200ms var(--ease); }
.hamburger:hover { background: rgba(0,0,0,0.04); }
.hamburger.is-open { background: var(--cool); border-color: var(--cool-line); }
.hamburger.is-open svg { stroke: var(--ink); }

body.no-scroll { overflow: hidden; }

/* =========================================================
   Mega Menu (Leistungen)
   ========================================================= */
.mega {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: color-mix(in oklab, var(--paper) 96%, transparent);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-mega);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  z-index: 50;
}
.mega.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 40px 32px;
}
.mega-col-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.mega-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.mega-col a {
  display: flex; flex-direction: column;
  padding: 10px 14px; margin: 0 -14px;
  border-radius: var(--r-8);
  transition: background 180ms var(--ease);
}
.mega-col a:hover { background: rgba(0,0,0,0.04); }
.mega-col a span { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.mega-col a em { font-style: normal; font-size: 12.5px; color: var(--ink-2); margin-top: 2px; }
.mega-col-cta {
  background: var(--bone);
  border-radius: var(--r-16);
  padding: 24px 26px;
  margin: -8px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mega-col-cta p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 8px 0 0; }
.mega-col-cta .text-link { margin-top: auto; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  background: var(--paper);
  overflow: hidden;
  padding: clamp(48px, 7vh, 80px) 0 clamp(64px, 9vh, 110px);
  display: flex;
  align-items: center;
}
.hero-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-position: 50% 78%;
  background-size: 120% auto;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 640px; }
.hero-copy .eyebrow { margin-bottom: -8px; }
.hero-copy .sub { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: var(--ink-2); max-width: 52ch; margin: 0; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.hero-trust-logos { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

/* Logo placeholders */
.logo-ph {
  height: 28px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(0,0,0,0.025);
  border: 1px solid var(--line);
  transition: color 200ms var(--ease), border-color 200ms var(--ease), background 200ms var(--ease);
  white-space: nowrap;
}
.logo-ph:hover { color: var(--ink); border-color: var(--ink-2); background: rgba(0,0,0,0.04); }
.logo-ph.lg { height: 40px; padding: 0 22px; font-size: 11px; }

/* =========================================================
   Kunden-Logos (echte Bilder)
   ========================================================= */
.kundenlogo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 4px;
  background: transparent;
  border-radius: 4px;
  flex-shrink: 0;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
  opacity: 0.78;
}
.kundenlogo-card img {
  max-height: 100%;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.kundenlogo-card:hover {
  opacity: 1;
  transform: scale(1.05);
}
/* Larger variant for the logo strip section */
.kundenlogo-card.lg {
  height: 56px;
}
.kundenlogo-card.lg img {
  max-width: 180px;
}
/* Dark-background logos (z.B. ProWert) brauchen einen kleinen Inset
   damit sie auf hellem BG nicht wie ein "Loch" wirken */
.kundenlogo-card-dark {
  background: transparent;
  padding: 0;
}
.kundenlogo-card-dark img {
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.04);
}

/* 4-Spalten-Grid für den Logo-Strip wenn weniger Logos */
.logo-strip-row.logo-strip-row-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .logo-strip-row.logo-strip-row-4 { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .kundenlogo-card.lg { height: 48px; }
  .kundenlogo-card.lg img { max-width: 150px; }
}
@media (max-width: 560px) {
  .kundenlogo-card { height: 28px; }
  .kundenlogo-card img { max-width: 110px; }
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 580px;
  border-radius: var(--r-24);
  background:
    linear-gradient(168deg, oklch(34% 0.025 250) 0%, oklch(22% 0.025 250) 60%, oklch(18% 0.022 250) 100%);
  overflow: visible;
}
.hero-visual-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--r-24);
  overflow: hidden;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(20,25,35,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 30%);
}
.photo-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}
.photo-tag::before {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--acc);
}
.photo-scan {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(168deg, transparent 0 22px, rgba(255,255,255,0.02) 22px 23px),
    radial-gradient(120% 60% at 60% 110%, oklch(18% 0.022 250) 0%, transparent 60%);
  pointer-events: none;
}
.photo-windows {
  position: absolute;
  left: 8%; right: 4%; bottom: 14%;
  height: 36%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
  opacity: 0.36;
  pointer-events: none;
  border-radius: 2px;
}
.photo-windows i {
  background: oklch(78% 0.12 75 / 0.55);
  border-radius: 1px;
}
.photo-windows i.dim { background: oklch(40% 0.02 250 / 0.35); }
.photo-windows i.off { background: transparent; }
.photo-skyline {
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background:
    linear-gradient(180deg, transparent 0%, oklch(16% 0.022 250) 92%),
    linear-gradient(180deg, transparent 50%, oklch(18% 0.022 250) 100%);
  pointer-events: none;
}
.photo-horizon {
  position: absolute; left: 0; right: 0; top: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, oklch(70% 0.13 75 / 0.4) 30%, oklch(70% 0.13 75 / 0.4) 70%, transparent);
  pointer-events: none;
}

/* Glass cards (overlapping) */
.glass {
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: blur(20px) saturate(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(1.05);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: var(--sh-glass);
  border-radius: var(--r-16);
}
.hero-stat-card {
  position: absolute;
  top: 64px;
  left: -56px;
  width: 256px;
  padding: 22px 24px;
  z-index: 2;
}
.hero-stat-card .eyebrow { display: block; margin-bottom: 14px; font-size: 11px; }
.hero-stat-card .stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.hero-stat-card .stat-num small {
  font-size: 28px;
  color: var(--ink-2);
  margin-left: 2px;
  letter-spacing: -0.01em;
}
.hero-stat-card .stat-sub { font-size: 12.5px; color: var(--ink-2); margin-top: 12px; line-height: 1.5; }

.hero-mini-card {
  position: absolute;
  right: -44px;
  bottom: 44px;
  width: 296px;
  padding: 18px 20px;
  z-index: 2;
}
.hero-mini-card .row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.hero-mini-card .v {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-mini-card .delta {
  font-family: var(--sans);
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-soft);
  padding: 4px 8px;
  border-radius: 999px;
}
.hero-mini-card .chart { height: 44px; margin-top: 12px; }
.hero-mini-card .chart-foot {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--ink-3);
  font-feature-settings: "tnum" 1, "lnum" 1;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* =========================================================
   Logo Strip
   ========================================================= */
.section { padding: clamp(80px, 11vw, 160px) 0; }
.section-bone { background: var(--bone); }
.section-paper { background: var(--paper); }
.section-ink { background: radial-gradient(70% 90% at 50% 50%, color-mix(in oklab, var(--gold-bright) 8%, transparent) 0%, transparent 70%), var(--cool); color: var(--ink); }

.logo-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.logo-strip .eyebrow { text-align: center; }
.logo-strip-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 28px;
  width: 100%;
  align-items: center;
}

/* =========================================================
   Section Header
   ========================================================= */
.sec-head {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 880px;
}
.sec-head.center { align-items: center; text-align: center; margin-inline: auto; }
.sec-head .sub {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}
.sec-head.center .sub { margin-inline: auto; }

.sec-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

/* =========================================================
   USP Pillars
   ========================================================= */
.pillars {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-8);
  border: 1.5px solid var(--gold-bright);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.pillar-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.pillar:hover .pillar-icon { background: var(--gold-bright); color: var(--gold-dark); }
.pillar .pillar-num { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.pillar .body { font-size: 15px; color: var(--ink-2); }
.pillar .text-link { margin-top: auto; padding-top: 8px; }

/* =========================================================
   Bento Grid (Section 5)
   ========================================================= */
.bento {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.tile {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-24);
  padding: 28px;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-hover);
  border-color: var(--line-2);
}
.tile .tile-eyebrow { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; }
.tile .tile-title { font-family: var(--sans); font-weight: 600; font-size: 20px; line-height: 1.25; color: var(--ink); margin: 0; }
.tile .tile-body { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.tile .tile-arrow {
  position: absolute; right: 24px; bottom: 24px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.tile:hover .tile-arrow { background: var(--acc-strong); color: white; border-color: var(--acc-strong); }
.tile-arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; }

.tile-large { grid-column: span 2; grid-row: span 2; padding: 36px; }
.tile-large .tile-title { font-size: 28px; }
.tile-wide { grid-column: span 2; }

/* Tile 2 — "10 Jahre" Anker links, Body rechts */
.tile-anchor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.tile-anchor .tile-num {
  margin-left: 0;
  align-self: center;
  flex-shrink: 0;
}
.tile-anchor-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }

/* Tile 6 — Anthrazit Statement-Card, 2×1 */
.tile-statement-card {
  grid-column: span 2;
  background: var(--cool);
  color: var(--ink);
  border-color: var(--cool-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
}
.tile-statement-card:hover { border-color: oklch(82% 0.018 240); }
.tile-statement-card .tile-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 16ch;
}
.tile-statement-card .accent-word { color: var(--gold-bright); }
.tile-statement-card .accent-word::after { background: var(--gold-bright); }
.tile-statement-arrow {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid oklch(82% 0.018 240);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.tile-statement-arrow svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.tile-statement-card:hover .tile-statement-arrow { background: var(--acc-strong); border-color: var(--acc-strong); transform: translateX(2px); }

/* Legacy full-width statement tile (kept for backward compat) */
.tile-full { grid-column: span 4; padding: 48px; background: var(--cool); color: var(--ink); border-color: var(--cool-line); }
.tile-full:hover { border-color: oklch(82% 0.018 240); transform: none; box-shadow: none; }

.tile-chart {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 50%;
  pointer-events: none;
}
.tile-chart svg { width: 100%; height: 100%; }

.tile-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--acc-strong);
  font-size: clamp(72px, 8vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-left: -4px;
}
.tile-num small { font-style: normal; font-weight: 400; font-size: 0.36em; color: var(--ink-2); margin-left: 8px; letter-spacing: 0; }

.tile-icon {
  width: 36px; height: 36px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.tile-icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.tile:hover .tile-icon { color: var(--acc-strong); }

.tile-statement {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 24ch;
}
.tile-full-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
  height: 100%;
  flex-wrap: wrap;
}
.tile-full-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
  transition: gap 200ms var(--ease);
}
.tile-full-cta:hover { gap: 18px; }
.tile-full-cta .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid oklch(82% 0.018 240);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease), border-color 200ms var(--ease);
}
.tile-full-cta:hover .ico { background: var(--acc-strong); border-color: var(--acc-strong); }
.tile-full-cta .ico svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; }

/* =========================================================
   Process (3 steps)
   ========================================================= */
.process {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acc) 8%, var(--acc) 92%, transparent);
  opacity: 0.45;
}
.step { position: relative; padding: 0 28px 8px 0; display: flex; flex-direction: column; gap: 18px; }
.step-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 108px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink);
  text-stroke: 1px var(--ink);
  background: var(--paper);
  padding-right: 16px;
  align-self: flex-start;
  z-index: 1;
}
.step h3 { font-size: 22px; }
.step-tick {
  position: absolute;
  top: 50px;
  left: -8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--acc-strong);
  z-index: 1;
  display: none;
}
.step-marker {
  position: absolute;
  top: 48px;
  right: 0;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  color: var(--acc-strong);
  z-index: 1;
}
.step:last-child .step-marker { display: none; }
.step-marker svg { width: 14px; height: 14px; }

/* =========================================================
   Trust band (anthrazit)
   ========================================================= */
.trust-band { position: relative; overflow: hidden; }
.trust-watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 140% auto;
}
.trust-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1fr;
  gap: 0;
  align-items: end;
}
.trust-cell {
  padding: 0 36px;
  border-right: 1px solid var(--cool-line);
}
.trust-cell:last-child { border-right: none; }
.trust-cell:first-child { padding-left: 0; }
.trust-cell:last-child { padding-right: 0; }
.trust-num-wrap {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.trust-num-wrap .n { font-size: clamp(64px, 8vw, 116px); }
.trust-num-wrap .unit { font-size: clamp(28px, 3vw, 44px); color: var(--ink-2); }
.trust-cell.dominant .trust-num-wrap { color: var(--gold-bright); }
.trust-cell.dominant .trust-num-wrap .n { font-size: clamp(88px, 11vw, 160px); }
.trust-cell.dominant .trust-num-wrap .unit { color: var(--gold-bright); }
.trust-label {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.45;
  max-width: 22ch;
  letter-spacing: 0.01em;
}

.trust-eyebrow-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.trust-eyebrow-row .eyebrow { color: var(--gold-bright); }
.trust-eyebrow-row .meta { font-size: 12.5px; color: var(--ink-2); letter-spacing: 0.04em; }

/* =========================================================
   Branchen Carousel
   ========================================================= */
.carousel-wrap { margin-top: 64px; position: relative; }
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 32px 24px;
  margin-inline: -32px;
  scroll-padding-left: 32px;
}
.carousel::-webkit-scrollbar { display: none; }
.branch-card {
  position: relative;
  height: 380px;
  border-radius: var(--r-24);
  overflow: hidden;
  background: linear-gradient(168deg, oklch(34% 0.025 250), oklch(22% 0.025 250));
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform 240ms var(--ease);
}
.branch-card:hover { transform: translateY(-4px); }
.branch-card .photo-tag { background: rgba(0,0,0,0.3); }
.branch-card .photo-scan {
  background-image: repeating-linear-gradient(168deg, transparent 0 22px, rgba(255,255,255,0.025) 22px 23px);
}
.branch-card .photo-skyline {
  height: 70%;
  background: linear-gradient(180deg, transparent 0%, oklch(14% 0.022 250) 95%);
}
.branch-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 80px 28px 28px;
  color: var(--on-dark);
  z-index: 2;
}
.branch-content .branch-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--acc); margin-bottom: 10px; font-weight: 500;
}
.branch-content h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.branch-arrow {
  position: absolute; right: 24px; bottom: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease);
  z-index: 3;
}
.branch-card:hover .branch-arrow { transform: translateX(4px); background: var(--acc); }
.branch-arrow svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; }

.carousel-controls {
  display: flex; gap: 8px; margin-top: 32px;
}
.carousel-ctrl {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.carousel-ctrl:hover { background: var(--cool); color: var(--ink); border-color: var(--ink-2); }
.carousel-ctrl svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; }

/* =========================================================
   Case Spotlight
   ========================================================= */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spotlight-media {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 100%;
  border-radius: var(--r-24);
  background: linear-gradient(168deg, oklch(34% 0.025 250), oklch(20% 0.022 250));
  overflow: hidden;
}
.spotlight-media .photo-skyline { height: 55%; }
.spotlight-logo {
  position: absolute;
  right: -32px;
  bottom: 48px;
  padding: 22px 28px;
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--r-16);
  backdrop-filter: blur(20px) saturate(1.05);
  box-shadow: var(--sh-glass);
  z-index: 2;
  min-width: 180px;
  text-align: center;
}
.spotlight-logo .lbl {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); font-weight: 500;
  margin-bottom: 6px; display: block;
}
.spotlight-logo .nm {
  font-family: var(--sans); font-weight: 600; font-size: 18px; color: var(--ink); letter-spacing: 0.01em;
}

.spotlight-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.spotlight-quote::before { content: "„"; color: var(--acc-strong); margin-right: 4px; }
.spotlight-quote::after { content: "\""; color: var(--acc-strong); margin-left: 2px; }

.spotlight-kpis {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.kpi { padding: 0 16px; border-right: 1px solid var(--line); }
.kpi:last-child { border-right: none; }
.kpi:first-child { padding-left: 0; }
.kpi .v {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.kpi .v small { font-size: 16px; color: var(--ink-2); margin-left: 2px; }
.kpi .v .acc { color: var(--acc-strong); }
.kpi .lbl { font-size: 12px; color: var(--ink-2); margin-top: 8px; letter-spacing: 0.01em; }

.spotlight-cite {
  display: flex; align-items: center; gap: 14px;
  margin-top: 32px;
}
.spotlight-cite .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cool);
  color: var(--acc-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 18px;
}
.spotlight-cite .nm { font-weight: 600; color: var(--ink); font-size: 14px; }
.spotlight-cite .role { font-size: 13px; color: var(--ink-2); }

/* =========================================================
   Niederrhein Map
   ========================================================= */
.map-section { position: relative; overflow: hidden; }
.map-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 64px;
  align-items: center;
}
.map-wrap {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--paper);
  border-radius: var(--r-24);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 24px;
}
.map-svg { width: 100%; height: 100%; }
.map-meta-row {
  position: absolute;
  top: 24px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  z-index: 2;
}
.map-compass { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--ink-2); }
.map-compass .n { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink); }

.dot-pulse circle.pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.dot-pulse:nth-child(4)  circle.pulse { animation-delay: 0.15s; }
.dot-pulse:nth-child(5)  circle.pulse { animation-delay: 0.30s; }
.dot-pulse:nth-child(6)  circle.pulse { animation-delay: 0.45s; }
.dot-pulse:nth-child(7)  circle.pulse { animation-delay: 0.60s; }
.dot-pulse:nth-child(8)  circle.pulse { animation-delay: 0.75s; }
.dot-pulse:nth-child(9)  circle.pulse { animation-delay: 0.90s; }
.dot-pulse:nth-child(10) circle.pulse { animation-delay: 1.05s; }
.dot-pulse:nth-child(11) circle.pulse { animation-delay: 1.20s; }
.dot-pulse:nth-child(12) circle.pulse { animation-delay: 1.35s; }
.dot-pulse:nth-child(13) circle.pulse { animation-delay: 1.50s; }
.dot-pulse:nth-child(14) circle.pulse { animation-delay: 1.65s; }
.dot-pulse:nth-child(15) circle.pulse { animation-delay: 1.80s; }
.dot-pulse:nth-child(16) circle.pulse { animation-delay: 1.95s; }
.dot-pulse:nth-child(17) circle.pulse { animation-delay: 2.10s; }
.dot-pulse:nth-child(18) circle.pulse { animation-delay: 2.25s; }
.dot-pulse:nth-child(19) circle.pulse { animation-delay: 2.40s; }
.dot-pulse:nth-child(20) circle.pulse { animation-delay: 2.55s; }

/* Emmerich (home anchor) — bigger, stronger pulse */
.dot-home circle.pulse-strong {
  animation: pulse-home 2.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  60%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes pulse-home {
  0%   { transform: scale(0.6); opacity: 0.85; }
  70%  { transform: scale(3.2); opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Hover tooltips for the 12 minor cities */
.dot-hover .dot-tip {
  opacity: 0;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  transform: translateY(4px);
  pointer-events: none;
}
.dot-hover:hover .dot-tip {
  opacity: 1;
  transform: translateY(0);
}
.dot-hover { cursor: pointer; }
.dot-hover:hover circle:not(.pulse):not(.dot-tip *) { fill: oklch(58% 0.15 65); }

.locations-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-top: 32px;
}
.loc-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: color 200ms var(--ease), padding 200ms var(--ease);
}
.loc-link::after {
  content: "→";
  color: var(--ink-3);
  opacity: 0;
  transition: opacity 200ms var(--ease), color 200ms var(--ease), transform 200ms var(--ease);
}
.loc-link:hover { color: var(--acc-strong); padding-left: 6px; }
.loc-link:hover::after { opacity: 1; color: var(--acc-strong); transform: translateX(3px); }
.loc-link .km { font-size: 11.5px; color: var(--ink-3); font-weight: 400; letter-spacing: 0.04em; font-feature-settings: "tnum" 1, "lnum" 1; }

/* Home-anchor entry in the location list */
.loc-link.loc-home {
  grid-column: 1 / -1;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1.5px solid var(--ink);
  margin-bottom: 6px;
}
.loc-link.loc-home::after { content: none; }
.loc-link.loc-home:hover { padding-left: 0; }
.loc-link.loc-home .km-home {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc-strong);
  background: var(--gold-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

/* =========================================================
   Reviews
   ========================================================= */
.review-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.trustpilot-module {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-16);
  background: var(--paper);
}
.tp-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
  white-space: nowrap;
}
.tp-num small { font-size: 22px; color: var(--ink-2); margin-left: 2px; white-space: nowrap; }
.tp-stars { display: flex; gap: 2px; color: var(--gold-bright); margin-bottom: 4px; }
.tp-stars svg { width: 18px; height: 18px; fill: currentColor; }
.tp-meta { font-size: 12.5px; color: var(--ink-2); }
.tp-meta strong { color: var(--ink); font-weight: 600; font-feature-settings: "tnum" 1, "lnum" 1; }

.reviews-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  padding: 32px;
  border-radius: var(--r-16);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--sh-card);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.review:hover { transform: translateY(-3px); box-shadow: var(--sh-hover); }
.review .stars { display: flex; gap: 3px; color: var(--gold-bright); }
.review .stars svg { width: 18px; height: 18px; fill: currentColor; }
.review .quote { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0; }
.review .sep { border: none; border-top: 1px solid var(--line); margin: 4px 0; }
.review-cite { display: flex; align-items: center; gap: 12px; }
.review-cite .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cool);
  color: var(--acc-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 16px;
  flex-shrink: 0;
}
.review-cite .nm { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-cite .role { font-size: 12.5px; color: var(--ink-2); line-height: 1.4; }

/* =========================================================
   Awards
   ========================================================= */
.awards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}
.awards-row {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
}
.seal {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 2px solid var(--acc-strong);
  color: var(--acc-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--paper);
  flex-shrink: 0;
}
.seal-text {
  position: absolute; inset: 0;
}
.seal-text svg { width: 100%; height: 100%; }
.seal-core {
  text-align: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1.1;
  padding: 0 8px;
}
.seal-core small {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc-strong);
  margin-top: 3px;
}
.seal-block { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.seal-block .seal-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.awards-logos {
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center;
}
.awards-logos .partner-ph {
  width: 120px; height: 60px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.awards-logos .partner-ph:hover { color: var(--ink); border-color: var(--ink-2); }

/* =========================================================
   Magazine
   ========================================================= */
.mag-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.article {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-16);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}
.article:hover { transform: translateY(-4px); box-shadow: var(--sh-hover); border-color: var(--line-2); }
.article-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(168deg, oklch(34% 0.025 250), oklch(20% 0.022 250));
  overflow: hidden;
}
.article-cover .photo-tag { font-size: 9.5px; padding: 5px 8px; top: 14px; left: 14px; }
.article-cover .photo-skyline { height: 60%; }
.article.feature { grid-row: span 2; display: flex; flex-direction: column; }
.article.feature .article-cover {
  aspect-ratio: auto;
  flex: 1 1 auto;
  min-height: 360px;
}
.article.feature .article-body { padding: 36px; gap: 16px; flex: 0 0 auto; }
.article.feature .h4 { font-size: 26px; font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; line-height: 1.2; }
.article-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
}
.article .preview { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.article-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.article-foot .read { display: inline-flex; gap: 6px; align-items: center; }

/* =========================================================
   Final CTA
   ========================================================= */
.final-cta {
  position: relative;
  background:
    radial-gradient(80% 80% at 80% 100%, color-mix(in oklab, var(--gold-bright) 28%, transparent) 0%, transparent 60%),
    radial-gradient(60% 60% at 0% 0%, color-mix(in oklab, var(--white) 80%, var(--cool)) 0%, transparent 60%),
    var(--cool);
  color: var(--ink);
  padding: clamp(96px, 14vw, 180px) 0;
  overflow: hidden;
  text-align: center;
}
.final-cta .final-watermark {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.22;
  background-repeat: no-repeat;
  background-position: 50% 70%;
  background-size: 110% auto;
}
.final-cta .wrap {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding-inline: 32px;
}
.final-cta .h-display, .final-cta .h2 { color: var(--ink); }
.final-cta .sub { color: var(--ink-2); font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; max-width: 56ch; margin: 0; }
.final-cta .ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.final-cta .contact { display: flex; gap: 28px; margin-top: 16px; font-size: 13.5px; color: var(--ink-2); flex-wrap: wrap; justify-content: center; font-feature-settings: "tnum" 1, "lnum" 1; }
.final-cta .contact a { color: var(--ink); transition: color 200ms var(--ease); }
.final-cta .contact a:hover { color: var(--acc-strong); }
.final-cta .contact .sep { color: var(--ink-3); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--bone);
  padding: 96px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
/* Phase-1 2-col layout: brand block + (Leistungen + Sitemap) */
.footer-grid-p1 {
  grid-template-columns: 1.4fr 2fr;
}
.footer-cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-claim { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; max-width: 36ch; margin: 0 0 28px; }
.footer-brand-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-brand-links a { font-size: 13.5px; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; }
.footer-brand-links a::before {
  content: "↗"; color: var(--acc-strong); font-size: 12px; transition: transform 200ms var(--ease);
}
.footer-brand-links a:hover { color: var(--acc-strong); }
.footer-brand-links a:hover::before { transform: translate(2px, -2px); }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.footer-social a:hover { color: var(--acc-strong); border-color: var(--acc-strong); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink); transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--acc-strong); }

.sub-footer {
  position: relative;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sub-footer-certs { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.sub-footer-meta {
  display: flex; gap: 24px; align-items: center;
  font-size: 12px; color: var(--ink-3);
}
.sub-footer-meta a { color: var(--ink-2); }
.sub-footer-meta a:hover { color: var(--acc-strong); }

.sub-footer::before {
  content: "";
  position: absolute;
  inset: 32px 0 0 0;
  pointer-events: none;
  opacity: 0.16;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  background-image: var(--lastgang-img, none);
  z-index: 0;
}
.sub-footer > * { position: relative; z-index: 1; }

/* =========================================================
   Mobile Sticky Bottom Bar
   ========================================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  height: 56px;
  background: color-mix(in oklab, var(--anthracite) 92%, transparent);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 8px 6px 18px;
  color: var(--white);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 80;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}
.mobile-cta-bar.is-on { opacity: 1; transform: translateY(0); }
.mobile-cta-bar .phone-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.mobile-cta-bar .phone-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }
.mobile-cta-bar .cta-text {
  flex: 1;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.mobile-cta-bar .btn { min-height: 44px; padding: 10px 18px; font-size: 13px; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 350ms; }

/* =========================================================
   Sub-page chrome (City / Leistung / Kontakt / Legal)
   ========================================================= */
.page-hero {
  padding: clamp(64px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-watermark { opacity: 0.08; }
.page-hero-inner { position: relative; display: flex; flex-direction: column; gap: 28px; max-width: 880px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3); font-weight: 500;
}
.breadcrumb a { color: var(--ink-2); }
.breadcrumb a:hover { color: var(--acc-strong); }
.breadcrumb .sep { color: var(--line-2); }
.breadcrumb .current { color: var(--ink); }

.page-h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0;
}
.page-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}

/* Quick-Facts */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.qf-item {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.qf-item:last-child { border-right: none; }
.qf-item:first-child { padding-left: 0; }
.qf-item:last-child { padding-right: 0; }
.qf-item label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.qf-item strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 1.1;
}
.qf-item span { font-size: 14px; color: var(--ink-2); }

/* Content blocks */
.content-section {
  padding: clamp(56px, 7vw, 96px) 0;
}
.content-section.alt { background: var(--bone); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
  align-items: start;
}
.content-grid > .meta {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 8px;
}
.content-grid > .meta .num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--acc-strong);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: -0.02em;
}
.content-grid > .meta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 0;
}

.long-content { font-size: 16.5px; line-height: 1.7; color: var(--ink-2); }
.long-content p { margin: 0 0 1em; }
.long-content p:last-child { margin-bottom: 0; }
.long-content strong { color: var(--ink); font-weight: 600; }
.long-content ul { margin: 0 0 1em; padding-left: 1.4em; }
.long-content li { margin-bottom: 0.4em; }
.long-content h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 1.5em 0 0.5em;
}

/* Info box (Verbrauchsklassen, Audit etc.) */
.info-box {
  padding: 28px 32px;
  background: var(--paper);
  border-radius: var(--r-16);
  border: 1px solid var(--line);
  margin: 24px 0;
}
.info-box.dark { background: var(--cool); color: var(--ink); border-color: var(--cool-line); }
.info-box.dark p, .info-box.dark li { color: var(--ink-2); }
.info-box.dark strong { color: var(--ink); }
.info-box-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--acc-strong);
  margin: 0 0 12px;
}
.info-box.dark .info-box-title { color: var(--gold-dark); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 20px; align-items: flex-start;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
  transition: color 200ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' fill='none' stroke='%23B07A2F' stroke-width='1.6' stroke-linecap='round'><path d='M9 4v10M4 9h10'/></svg>");
  transition: transform 200ms var(--ease);
  margin-top: 4px;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--acc-strong); }
.faq-item .faq-body {
  padding: 0 0 22px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 70ch;
}

/* Neighbors chips */
.neighbors {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.neighbors a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 200ms var(--ease), border-color 200ms var(--ease), padding 200ms var(--ease);
}
.neighbors a:hover { color: var(--acc-strong); border-color: var(--acc-strong); padding-right: 22px; }
.neighbors a::after { content: "→"; color: var(--ink-3); transition: transform 200ms var(--ease); }
.neighbors a:hover::after { color: var(--acc-strong); transform: translateX(2px); }

/* Local CTA banner (sub-page version of final-cta, shorter) */
.local-cta { background: var(--cool); color: var(--ink);
  padding: clamp(64px, 8vw, 96px) 0;
  text-align: center;
}
.local-cta .wrap {
  max-width: 720px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding-inline: 32px;
}
.local-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.local-cta .sub { color: var(--ink-2); font-size: 17px; line-height: 1.55; max-width: 52ch; margin: 0; }
.local-cta .ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 6px; }

/* Standorte-Übersicht & Leistungen-Übersicht grid */
.tile-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.tile-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.std-card {
  padding: 24px 28px;
  border-radius: var(--r-16);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  position: relative;
}
.std-card:hover { transform: translateY(-3px); box-shadow: var(--sh-hover); border-color: var(--line-2); }
.std-card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.std-card-meta {
  font-size: 12.5px;
  color: var(--ink-3);
  font-feature-settings: "tnum" 1, "lnum" 1;
  letter-spacing: 0.02em;
}
.std-card.home { border-color: var(--acc-strong); border-width: 1.5px; }
.std-card.home .std-card-name { color: var(--acc-strong); font-style: italic; }
.std-card .badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--acc-strong);
}

/* Leistungs-Card */
.lst-card {
  padding: 32px;
  border-radius: var(--r-24);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
  min-height: 220px;
}
.lst-card:hover { transform: translateY(-3px); box-shadow: var(--sh-hover); border-color: var(--line-2); }
.lst-card-icon { width: 40px; height: 40px; color: var(--acc-strong); }
.lst-card-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.lst-card-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.lst-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
}
.lst-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.lst-card .text-link { margin-top: auto; }

/* Contact / Legal */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 32px;
}
.contact-block { display: flex; flex-direction: column; gap: 22px; }
.contact-row {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ic {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .ic svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.6; fill: none; }
.contact-row .lbl { font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.contact-row .val { font-size: 16px; font-weight: 500; color: var(--ink); margin-top: 2px; font-feature-settings: "tnum" 1, "lnum" 1; }
.contact-row .val a { color: inherit; }
.contact-row .val a:hover { color: var(--acc-strong); }

.form-mock,
.form-live {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-24);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.form-mock label,
.form-live label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; color: var(--ink-2); }
.form-mock input, .form-mock select, .form-mock textarea,
.form-live input, .form-live select, .form-live textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-8);
  background: var(--paper);
  color: var(--ink);
  margin-top: 6px;
  width: 100%;
  transition: border-color 200ms var(--ease);
}
.form-mock input:focus, .form-mock select:focus, .form-mock textarea:focus,
.form-live input:focus, .form-live select:focus, .form-live textarea:focus { outline: none; border-color: var(--acc-strong); }
.form-mock textarea,
.form-live textarea { resize: vertical; min-height: 96px; }
.form-mock .row-2,
.form-live .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-mock .consent,
.form-live .consent { font-size: 13px; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.form-mock .consent input,
.form-live .consent input { width: 16px; height: 16px; margin: 3px 0 0; }
.form-mock button,
.form-live button { margin-top: 4px; align-self: flex-start; }

/* Status-Banner für ?status=ok|fehler nach contact.php-Redirect */
.form-status {
  font-size: 14.5px;
  line-height: 1.55;
  padding: 14px 18px;
  border-radius: var(--r-8);
  border: 1px solid transparent;
}
.form-status strong { font-weight: 600; }
.form-status--ok {
  background: var(--gold-soft, #F5ECC2);
  border-color: var(--gold, #C8AA22);
  color: var(--gold-dark, #65571A);
}
.form-status--err {
  background: #FDECEC;
  border-color: #E5A4A4;
  color: #8B1F1F;
}

.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--serif); font-weight: 400; font-size: 28px; letter-spacing: -0.015em;
  margin: 2em 0 0.6em; color: var(--ink); line-height: 1.2;
}
.legal-content h3 {
  font-family: var(--sans); font-weight: 600; font-size: 17px;
  margin: 1.5em 0 0.4em; color: var(--ink);
}
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.legal-content p { margin: 0 0 1em; }
.legal-content ul { padding-left: 1.3em; margin: 0 0 1em; }

@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; gap: 24px; }
  .content-grid > .meta { position: static; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .qf-item { border-right: 1px solid var(--line); padding: 18px 20px; }
  .qf-item:nth-child(2n) { border-right: none; padding-right: 0; }
  .qf-item:nth-child(2n+1) { padding-left: 0; }
  .qf-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .tile-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tile-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .quick-facts { grid-template-columns: 1fr; }
  .qf-item { border-right: none; padding: 14px 0; }
  .qf-item:nth-child(n+2) { border-top: 1px solid var(--line); }
  .tile-grid-3 { grid-template-columns: 1fr; }
  .tile-grid-4 { grid-template-columns: 1fr 1fr; }
  .form-mock .row-2,
  .form-live .row-2 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .accent-word::after { transition: none; transform: scaleX(1); }
  .dot-pulse circle.pulse { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1180px) {
  .container, .container-wide { padding-inline: 28px; }
  .hero-grid { gap: 36px; }
  .hero-visual { height: 540px; }
  .hero-stat-card { left: -24px; width: 240px; }
  .hero-mini-card { right: -16px; width: 272px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
  .spotlight { gap: 56px; }
  .spotlight-logo { right: -16px; }
}

@media (max-width: 960px) {
  .topbar { display: none; }
  .nav { display: none; }
  .hamburger { display: inline-flex; }
  .header-phone { display: none; }
  :root { --header-h: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { height: 480px; }
  .hero-stat-card { left: 16px; top: 24px; width: 220px; }
  .hero-mini-card { right: 16px; bottom: 24px; width: 256px; }
  .logo-strip-row { grid-template-columns: repeat(4, 1fr); row-gap: 18px; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-large, .tile-wide, .tile-full, .tile-statement-card { grid-column: span 2; }
  .tile-large { grid-row: span 2; }
  .process { grid-template-columns: 1fr; gap: 32px; }
  .process::before { display: none; }
  .step-marker { display: none; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 40px 16px; }
  .trust-cell { border-right: none; padding: 0; }
  .trust-cell:nth-child(odd) { border-right: 1px solid var(--cool-line); padding-right: 16px; }
  .trust-cell:nth-child(even) { padding-left: 16px; }
  .trust-cell.dominant .trust-num-wrap .n { font-size: clamp(72px, 16vw, 116px); }
  .spotlight { grid-template-columns: 1fr; gap: 40px; }
  .spotlight-media { max-width: 440px; margin-inline: auto; width: 100%; }
  .spotlight-logo { right: 16px; bottom: 16px; }
  .map-grid { grid-template-columns: 1fr; gap: 48px; }
  .map-wrap { aspect-ratio: 4 / 3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .mag-grid { grid-template-columns: 1fr; }
  .article.feature { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-grid-p1 { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols-2 { gap: 40px 32px; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .container, .container-wide { padding-inline: 20px; }
  .h-display { font-size: clamp(40px, 11vw, 56px); }
  .h2 { font-size: clamp(32px, 8vw, 44px); }
  .section { padding: 80px 0; }
  .hero { padding-top: 40px; padding-bottom: 64px; }
  .hero-visual { height: 420px; }
  .hero-stat-card { width: 200px; padding: 18px 20px; }
  .hero-stat-card .stat-num { font-size: 52px; }
  .hero-mini-card { width: 224px; padding: 16px; }
  .hero-trust { gap: 16px; }
  .hero-trust-logos { gap: 10px; }
  .logo-strip-row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .tile { min-height: 200px; }
  .tile-large, .tile-wide, .tile-full, .tile-statement-card { grid-column: span 1; }
  .tile-large { grid-row: auto; min-height: 360px; }
  .tile-full { padding: 32px 24px; }
  .tile-full-row { gap: 24px; }
  .pillar { padding: 36px 0; }
  .trust-row { grid-template-columns: 1fr; gap: 32px; }
  .trust-cell:nth-child(odd) { border-right: none; padding: 0; }
  .trust-cell:nth-child(even) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols-2 { grid-template-columns: 1fr; gap: 32px; }
  .review-head { flex-direction: column; align-items: flex-start; }
  .sub-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .step-num { font-size: 80px; }
  .carousel { grid-auto-columns: 240px; }
  .branch-card { height: 320px; }
}
