/* ═══════════════════════════════════════════════════════════════
   Eichmann Grundbesitzverwaltung — Design System
   CI Guideline v3 (Modern Rewrite) · 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Custom Properties ────────────────────────────────────── */
:root {
  --eichmann-green: #0E8158;
  --green-dark: #065C3D;
  --green-darker: #032B1A;
  --green-light: #1A9B6B;
  --green-pale: #E8F5EF;
  --green-gradient-dark: linear-gradient(135deg, #021E12 0%, #065C3D 40%, #0E8158 100%);
  --green-accent-gradient: linear-gradient(90deg, #065C3D, #0E8158, #1A9B6B);
  --stone-gray: #5a6268;
  --silver-dark: #6C7A89;
  --silver-mid: #95A5A6;
  --silver-light: #B8C4CE;
  --silver-pale: #E0E4E8;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-bg: #f2f0ed;
  --border-light: #e2ddd6;
  --text-dark: #2c2c2c;
  --text-medium: #5a6268;
  --text-light: #8e9196;
  --black: #1a1a1a;
  --silver-gradient-h: linear-gradient(90deg, #6C7A89, #95A5A6, #B8C4CE);
  --green-gradient: linear-gradient(135deg, #065C3D 0%, #0E8158 60%, #1A9B6B 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08), 0 24px 56px rgba(0,0,0,0.06);
  --radius: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ── 2. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
::selection { background: var(--green-pale); color: var(--green-dark); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--eichmann-green); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--green-dark); }
ul, ol { list-style: none; }

/* ── 3. Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.3; letter-spacing: 0.03em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 500; letter-spacing: 0.04em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; letter-spacing: 0.035em; }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: 0.03em; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-medium); margin-bottom: 12px; line-height: 1.8; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase; color: #065C3D;
  display: flex !important; align-items: center; gap: 16px;
  margin-bottom: 16px; width: 100% !important;
  line-height: 1;
}
.eyebrow::after {
  content: '' !important; display: block !important;
  flex: 1; min-width: 40px; height: 1px;
  background: linear-gradient(90deg, #6C7A89, #95A5A6, #B8C4CE, transparent);
}
.section-label {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase; color: #065C3D;
  display: flex !important; align-items: center; gap: 16px;
  margin-bottom: 16px; width: 100% !important;
  line-height: 1;
}
.section-label::after {
  content: '' !important; display: block !important;
  flex: 1; min-width: 40px; height: 1px;
  background: linear-gradient(90deg, #6C7A89, #95A5A6, #B8C4CE, transparent);
  position: relative; top: 0;
}
.gradient-text {
  color: #C5A55A;
}

/* ── 4. Layout ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
.section { padding: 100px 0; }
.section--alt { background: var(--off-white); }
.silver-line { display: block; height: 2px; background: var(--silver-gradient-h); border: none; margin: 24px 0; opacity: 0.6; }

/* ── 5. Navigation ───────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-nav--scrolled {
  background: rgba(248,247,245,0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.site-nav__logo img { max-height: 52px; max-width: 260px; width: auto; height: auto; transition: opacity 0.25s var(--ease); }
.site-nav__logo img:hover { opacity: 0.8; }
.site-nav__links { display: flex; gap: 36px; }
.site-nav__links a {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-gray);
  text-decoration: none; position: relative; padding: 12px 4px;
  transition: color 0.25s var(--ease);
}
.site-nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px;
  background: var(--eichmann-green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.site-nav__links a:hover, .site-nav__links a.is-active { color: var(--eichmann-green); }
.site-nav__links a:hover::after, .site-nav__links a.is-active::after { transform: scaleX(1); }
.site-nav__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #065C3D, #0E8158, #1A9B6B, #0E8158, #065C3D);
  background-size: 200% 100%; animation: shimmer 6s ease-in-out infinite;
  opacity: 0.7;
}
/* Hamburger */
.site-nav__toggle-input { display: none; }
.site-nav__hamburger { display: none; cursor: pointer; width: 26px; height: 18px; position: relative; z-index: 1001; }
.site-nav__hamburger span,
.site-nav__hamburger::before,
.site-nav__hamburger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--text-dark); transition: all 0.3s var(--ease);
}
.site-nav__hamburger::before { top: 0; }
.site-nav__hamburger span { top: 8px; }
.site-nav__hamburger::after { top: 16px; }
.site-nav__toggle-input:checked ~ .site-nav__hamburger::before { transform: rotate(45deg); top: 8px; }
.site-nav__toggle-input:checked ~ .site-nav__hamburger span { opacity: 0; }
.site-nav__toggle-input:checked ~ .site-nav__hamburger::after { transform: rotate(-45deg); top: 8px; }
.site-nav__mobile-panel {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--white); padding: 100px 32px 40px; display: flex;
  flex-direction: column; gap: 24px; transition: right 0.4s var(--ease-out);
  box-shadow: -8px 0 32px rgba(0,0,0,0.08); z-index: 999;
}
.site-nav__toggle-input:checked ~ .site-nav__mobile-panel { right: 0; }
.site-nav__mobile-panel a {
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--text-dark); text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.site-nav__mobile-panel a:hover { color: var(--eichmann-green); }

/* ── 6. Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #021E12 0%, #032B1A 30%, #065C3D 65%, #0E8158 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 60px;
}
/* CSS grain/noise overlay */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.5;
}
.hero__watermark {
  position: absolute; top: 50%; left: 55%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 42vw; font-weight: 700;
  color: rgba(255,255,255,0.018); pointer-events: none; line-height: 1;
  letter-spacing: -0.03em;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 75% 25%, rgba(14,129,88,0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 75%, rgba(6,92,61,0.15) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(26,155,107,0.08) 0%, transparent 40%);
}
.hero__content { position: relative; z-index: 2; padding: 60px 0; }
/* Zentriertes Layout: H1 einzeilig, Subtitle darunter */
.hero__center { text-align: center; }
.hero__eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--silver-light);
  margin-bottom: 24px; display: block;
  animation: heroFadeIn 0.6s var(--ease) 0.2s both;
}
.hero__headline {
  color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 500;
  line-height: 1.12; letter-spacing: 0.025em; margin-bottom: 24px;
  animation: heroSlideUp 0.6s var(--ease-out) 0.35s both;
}
.hero__headline em { font-style: italic; color: #C5A55A; }
.hero__subtitle {
  color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 680px;
  line-height: 1.8; margin: 0 auto 40px;
  animation: heroFadeIn 0.6s var(--ease) 0.55s both;
}
.hero__cta { animation: heroFadeIn 0.6s var(--ease) 0.7s both; }
.hero__trust {
  display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeIn 0.6s var(--ease) 1s both;
}
.hero__trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.78rem; font-weight: 500;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero__trust-badge:hover {
  background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25);
  color: var(--white);
}
.hero__trust-stars {
  font-size: 0.85rem; letter-spacing: 1px;
}
/* Dynamische Bewertungssterne (zwei Layer: Hintergrund + Füllung per width) */
.stars {
  position: relative; display: inline-block; white-space: nowrap; line-height: 1;
}
.stars__bg { color: rgba(245, 197, 24, 0.28); }
.stars__fg {
  position: absolute; top: 0; left: 0; bottom: 0; overflow: hidden;
  color: #F5C518; white-space: nowrap;
}
.hero__trust-text {
  font-family: var(--font-body); letter-spacing: 0.02em;
}
.hero__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #065C3D, #0E8158, #1A9B6B, #0E8158, #065C3D);
  background-size: 200% 100%; animation: shimmer 6s ease-in-out infinite;
}

/* ── 7. Hero Panorama ────────────────────────────────────────── */
.hero-panorama {
  width: 100%;
  height: clamp(320px, 42vw, 700px);
  overflow: hidden;
  display: block;
  position: relative;
}
.hero-panorama img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 92%;
  display: block;
}
.hero-panorama__cta { display: none; }
.hero-panorama::after { display: none; }


/* ── 7b. Hero Reviews Bar (Desktop) ─────────────────────────── */
.hero-reviews {
  background: linear-gradient(135deg, #032B1A 0%, #065C3D 50%, #0E8158 100%);
  padding: 24px 0;
  display: none;
}
.hero-reviews__inner {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.hero-reviews__badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease);
}
.hero-reviews__badge:hover { color: var(--white); }
.hero-reviews__stars {
  font-size: 1.1rem; letter-spacing: 2px;
}
.hero-reviews__divider {
  width: 1px; height: 28px; background: rgba(255,255,255,0.2);
}

/* ── Desktop: Hero kompakt, Split-Layout, CTA auf Bild ────── */
@media (min-width: 769px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
  }
  .hero__content {
    padding: 48px 0 56px;
  }
  /* Trust-Badges im Hero ausblenden */
  .hero__trust {
    display: none;
  }
  /* Bewertungsbalken anzeigen */
  .hero-reviews {
    display: block;
  }
  /* CTA-Overlay auf Panoramabild */
  .hero-panorama__cta {
    display: inline-flex;
    position: absolute;
    bottom: 40px;
    left: max(clamp(24px, 5vw, 80px), calc((100vw - 1200px) / 2 + clamp(24px, 5vw, 80px)));
    z-index: 2;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s var(--ease);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  }
  .hero-panorama__cta:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    transform: translateY(-2px);
  }
  .hero-panorama::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
  }
}

/* ── Desktop: Zentriertes Hero-Layout ab 1024px ─────────────── */
@media (min-width: 1025px) {
  .hero__headline {
    font-size: clamp(3rem, 4.5vw, 4.2rem);
    margin-bottom: 20px;
  }
  .hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.85);
  }
}

/* ── 8. Mini Hero ────────────────────────────────────────────── */
.hero-sm {
  background: linear-gradient(165deg, #021E12 0%, #032B1A 40%, #065C3D 100%);
  padding: 130px 0 60px; position: relative; text-align: center; overflow: hidden;
}
.hero-sm::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}
.hero-sm h1 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.hero-sm__subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0; position: relative; z-index: 1; }
.hero-sm__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green-accent-gradient);
}

/* ── 8. Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  padding: 0; border-bottom: 1px solid var(--border-light);
  position: relative;
}
.stats-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center;
}
.stats-bar__item {
  padding: 48px 24px; position: relative;
  background: var(--white);
  transition: background 0.3s var(--ease);
}
.stats-bar__item:hover { background: var(--green-pale); }
.stats-bar__item + .stats-bar__item::before {
  content: ''; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px;
  background: var(--border-light);
}
.stats-bar__icon {
  display: block; width: 40px; height: 40px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--eichmann-green);
}
.stats-bar__number {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--eichmann-green); display: block; line-height: 1;
  letter-spacing: 0.02em;
}
.stats-bar__label {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-light);
  margin-top: 10px; display: block;
}
.stats-bar__sub {
  font-size: 0.78rem; color: var(--text-medium); margin-top: 4px;
  font-weight: 400; letter-spacing: 0;
}

/* ── 9. House Cards ──────────────────────────────────────────── */
.haus-card {
  display: block; text-decoration: none; color: inherit; background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); position: relative;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.haus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.haus-card__image-wrap {
  position: relative; aspect-ratio: 16 / 10; overflow: hidden;
}
.haus-card__image-wrap::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 -40px 60px -20px rgba(0,0,0,0.08);
  pointer-events: none; z-index: 1;
}
.haus-card__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.haus-card:hover .haus-card__image-wrap img { transform: scale(1.05); }
.haus-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(3,43,26,0.35) 0%, transparent 100%);
  pointer-events: none; transition: opacity 0.4s var(--ease);
}
.haus-card:hover .haus-card__overlay { opacity: 0.8; }
.haus-card__badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  color: var(--eichmann-green); font-family: var(--font-body);
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 100px;
}
.haus-card__count {
  position: absolute; bottom: 14px; right: 14px; z-index: 2;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  color: white; font-size: 0.62rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.haus-card:hover .haus-card__count { opacity: 1; transform: translateY(0); }
.haus-card__placeholder {
  width: 100%; height: 100%; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); font-size: 0.85rem;
}
.haus-card__body { padding: 24px 28px 20px; }
.haus-card__title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); line-height: 1.35; margin-bottom: 10px;
}
.haus-card__meta { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--text-light); }
.haus-card__dot { opacity: 0.4; }
.haus-card__accent {
  height: 2px; background: var(--green-accent-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.haus-card:hover .haus-card__accent { transform: scaleX(1); }

/* ── 10. House Grid ──────────────────────────────────────────── */
.haus-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }

/* ── 11. Filter Bar ──────────────────────────────────────────── */
.filter-bar { background: var(--white); padding: 24px 0; border-bottom: 1px solid var(--border-light); }
.filter-bar__inner { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.filter-bar__group { flex: 1; min-width: 200px; max-width: 280px; }
.filter-bar__count { margin-left: auto; padding-bottom: 10px; font-size: 0.875rem; font-weight: 600; color: var(--text-medium); }

/* ── 12. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px; font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none; border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, #065C3D 0%, #0E8158 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(14,129,88,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #054D33 0%, #0B7049 100%);
  color: var(--white); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,129,88,0.3);
}
.btn-silver { background: var(--silver-gradient-h); color: var(--white); }
.btn-silver:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--white); }
.btn-outline {
  background: transparent; color: var(--eichmann-green);
  border: 2px solid var(--eichmann-green); font-weight: 800;
}
.btn-outline:hover { background: var(--eichmann-green); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--stone-gray); border: 1px solid var(--border-light); }
.btn-ghost:hover { border-color: var(--stone-gray); color: var(--text-dark); }

/* ── 13. Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  border-top: 2px solid transparent;
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-top-color: var(--eichmann-green);
}

/* ── 14. Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light);
  display: block; margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: 14px 16px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fafaf9; color: var(--text-dark); outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--eichmann-green);
  box-shadow: 0 0 0 3px rgba(14,129,88,0.1);
  background: var(--white);
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6268' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: #fafaf9;
}
.form-file { font-size: 0.85rem; padding: 8px 0; color: var(--text-medium); }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-size: 0.88rem; line-height: 1.6; color: var(--text-medium);
}
.form-checkbox input[type="checkbox"] {
  margin-top: 4px; flex-shrink: 0; width: 18px; height: 18px;
  accent-color: var(--eichmann-green); cursor: pointer;
}
.form-checkbox a { color: var(--eichmann-green); text-decoration: underline; }
/* ── Typografie-Utilities (häufig genutzte Kombinationen) ─────── */
.sidebar-info {
  font-size: 0.875rem; line-height: 1.7;
  color: var(--text-medium); margin-top: 12px;
}
.caption-meta {
  margin-top: 12px; font-size: 0.875rem; color: var(--text-medium);
}
.btn-sidebar-cta {
  margin-top: 16px; font-size: 0.75rem;
  width: 100%; justify-content: center;
}
.placeholder-headline { font-size: 1.125rem; font-weight: 600; }
.placeholder-subline { font-size: 0.875rem; margin-top: 8px; }
.form-radio-group { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 4px; }
.form-radio {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-size: 0.95rem; color: var(--text-dark);
}
.form-radio input[type="radio"] {
  width: 18px; height: 18px; accent-color: var(--eichmann-green); cursor: pointer;
}
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }

/* ── 15. Footer ──────────────────────────────────────────────── */
.site-footer { background: #021E12; color: rgba(255,255,255,0.85); position: relative; padding-top: 4px; }
.site-footer__accent {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #065C3D, #0E8158, #1A9B6B, #0E8158, #065C3D);
  background-size: 200% 100%; animation: shimmer 6s ease-in-out infinite;
}
.site-footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 56px; padding: 72px 0 48px; }
.site-footer__brand { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--white); }
.site-footer__logo { max-height: 42px; max-width: 200px; width: auto; height: auto; margin-bottom: 8px; }
.site-footer__brand-sub {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver-light); margin-top: 4px;
}
.site-footer__text { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-top: 20px; }
.site-footer__heading {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--silver-light); margin-bottom: 24px; font-size: 0.75rem;
}
.site-footer__address { font-style: normal; }
.site-footer__address p { font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.65); margin-bottom: 2px; }
.site-footer__spacer { height: 10px; }
.site-footer__label { display: inline-block; width: 52px; color: var(--silver-mid); font-size: 0.85rem; }
.site-footer__address a { color: rgba(255,255,255,0.85); }
.site-footer__address a:hover { color: var(--white); }
.site-footer__hours { margin-bottom: 28px; }
.site-footer__hours-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.95rem;
}
.site-footer__hours-row span:first-child { color: rgba(255,255,255,0.6); }
.site-footer__hours-row span:last-child { font-weight: 600; color: var(--white); }
.site-footer__links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; margin-top: 16px; }
.site-footer__links a { font-size: 0.85rem; font-weight: 600; color: var(--silver-mid); }
.site-footer__links a:hover { color: var(--white); }
.site-footer__social { margin-left: auto; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background 0.2s, transform 0.2s; }
.site-footer__social:hover { background: rgba(255,255,255,0.15); transform: scale(1.1); }
.site-footer__social svg { width: 16px; height: 16px; fill: var(--silver-mid); transition: fill 0.2s; }
.site-footer__social:hover svg { fill: var(--white); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.site-footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin: 0; }
.site-footer__bottom a { color: rgba(255,255,255,0.45); }
.site-footer__bottom a:hover { color: var(--white); }

/* ── 16. Scroll Animations ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out); }
.reveal.is-visible, .reveal-left.is-visible, .reveal-right.is-visible, .reveal-scale.is-visible {
  opacity: 1; transform: none;
}
.parallax-subtle {
  will-change: transform;
  transition: transform 0.1s linear;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .parallax-subtle { will-change: auto; transition: none; }
}

/* ── 17. Detail Page ─────────────────────────────────────────── */
.detail-hero {
  position: relative; padding: 160px 0 80px; text-align: center; overflow: hidden;
  background-size: cover; background-position: center; background-color: var(--green-darker);
}
.detail-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.3) 100%); }
.detail-hero__content { position: relative; z-index: 1; }
.detail-hero__content h1 { color: var(--white); margin-bottom: 12px; }
.detail-hero__badge {
  display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(12px);
  color: var(--white); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
}
.detail-hero__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--green-accent-gradient);
}
.breadcrumb {
  display: inline-flex; align-items: center; gap: 10px; font-size: 0.85rem;
  flex-wrap: wrap; background: none; border: none; padding: 0; border-radius: 0;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.breadcrumb a {
  color: rgba(255,255,255,0.65); font-weight: 500;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--white); text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb__current { color: rgba(255,255,255,0.65); font-weight: 600; }
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.detail-main { min-width: 0; overflow: hidden; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; color: var(--eichmann-green); margin-bottom: 32px;
}
.back-link:hover { color: var(--green-dark); }
.breadcrumb--content {
  background: none; backdrop-filter: none; border: none;
  padding: 0; border-radius: 0; margin-bottom: 12px;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.breadcrumb--content a {
  color: var(--eichmann-green); font-weight: 700;
}
.breadcrumb--content a:hover { color: var(--green-dark); text-decoration: underline; }
.breadcrumb--content span { color: var(--silver-mid); }
.breadcrumb--content .breadcrumb__current { color: var(--text-medium); font-weight: 700; }
.detail-heading {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px; line-height: 1.2;
}
.detail-bezirk {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--eichmann-green);
  margin-bottom: 32px;
}

/* ── Gallery — Featured Layout ───────────────────────────────── */
/* Spotlight Gallery (Variant C) */
.spotlight { margin-top: 20px; max-width: 100%; overflow: hidden; }
.spotlight__main {
  width: 100%; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius-lg); margin-bottom: 12px;
  position: relative; background: var(--light-bg);
}
.spotlight__main > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s var(--ease);
}
.spotlight__counter {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  color: white; font-size: 0.78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
}
.spotlight__prev, .spotlight__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  color: white; border: 1px solid rgba(255,255,255,0.15);
  font-size: 1.4rem; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s, opacity 0.2s; opacity: 0;
}
.spotlight:hover .spotlight__prev,
.spotlight:hover .spotlight__next { opacity: 1; }
.spotlight__prev:hover, .spotlight__next:hover { background: rgba(0,0,0,0.65); }
.spotlight__prev { left: 16px; }
.spotlight__next { right: 16px; }
.spotlight__strip {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.spotlight__strip::-webkit-scrollbar { height: 4px; }
.spotlight__strip::-webkit-scrollbar-track { background: var(--border-light); border-radius: 2px; }
.spotlight__strip::-webkit-scrollbar-thumb { background: var(--eichmann-green); border-radius: 2px; }
.spotlight__thumb {
  flex: 0 0 auto; width: 150px; aspect-ratio: 4/3;
  border-radius: 6px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s;
  scroll-snap-align: start;
}
.spotlight__thumb:hover, .spotlight__thumb.is-active { border-color: var(--eichmann-green); }
.spotlight__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__item {
  display: block; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4 / 3; cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.03); }
.content-block { margin-top: 48px; }
.content-block h2 {
  font-size: 1.6rem; padding-bottom: 12px; margin-bottom: 16px;
  border-bottom: 2px solid var(--green-pale);
}
.content-block__body { line-height: 1.85; color: var(--text-medium); }
.content-block__body a { color: var(--eichmann-green); }
.detail-sidebar { position: sticky; top: 88px; }
.sidebar-card { }
.sidebar-card:hover { transform: none; border-top-color: transparent; }
.sidebar-card h3 { margin-top: 4px; }
.sidebar-card p { font-size: 0.92rem; line-height: 1.7; margin-top: 12px; }
.sidebar-card a { color: var(--eichmann-green); }

/* ── 18. Download Cards ──────────────────────────────────────── */
.download-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }
.download-card {
  display: flex; align-items: center; gap: 20px; padding: 24px;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); text-decoration: none; color: inherit;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.3s var(--ease);
}
.download-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--eichmann-green); }
.download-card__icon {
  flex-shrink: 0; width: 48px; height: 48px; background: var(--green-pale);
  color: var(--eichmann-green); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.05em; border-radius: var(--radius-md);
}
.download-card__info h3 { font-size: 1.3rem; color: var(--text-dark); }
.download-card__action { font-size: 0.78rem; font-weight: 600; color: var(--eichmann-green); margin-top: 4px; display: block; }

/* ── 19. Layout Grids ────────────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.kontakt-info { position: sticky; top: 100px; }
.maengel-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.two-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hours-display { margin-top: 16px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--border-light);
}
.hours-row span { color: var(--text-medium); }
.hours-row strong { color: var(--text-dark); font-size: 0.95rem; }

/* ── 20. Kiona Card ──────────────────────────────────────────── */
.kiona-card { display: flex; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.kiona-card__accent { width: 5px; background: var(--green-accent-gradient); flex-shrink: 0; }
.kiona-card__inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; flex: 1; }
.kiona-card__content { padding: 40px; }
.kiona-card__cert { padding: 40px 40px 40px 0; display: flex; align-items: center; }
.kiona-card__cert img { width: 420px; border-radius: 8px; box-shadow: 0 2px 16px rgba(0,0,0,0.1); transition: transform 0.2s; }
.kiona-card__cert img:hover { transform: scale(1.03); }
@media (max-width: 768px) {
  .kiona-card__inner { grid-template-columns: 1fr; gap: 0; }
  .kiona-card__cert { padding: 0 40px 40px; justify-content: center; }
  .kiona-card__cert img { width: 160px; }
}

/* ── 21. Ausbildung Banner ───────────────────────────────────── */
.ausbildung-banner { background: var(--green-pale); padding: 48px 0; }
.ausbildung-banner h3 { color: var(--eichmann-green); }
.ausbildung-banner p { color: var(--text-medium); }

/* ── 22. Legal Pages ─────────────────────────────────────────── */
.legal {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px;
}
.legal-block { margin-bottom: 0; }
.legal-block h2, .legal-block h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--eichmann-green); margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}
.legal-block p { font-size: 0.92rem; line-height: 1.8; color: var(--text-medium); }
.legal-block a { color: var(--eichmann-green); }

/* ── 23. Checklist ───────────────────────────────────────────── */
.checklist li {
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px solid var(--border-light); color: var(--text-medium); font-size: 0.95rem;
}
.checklist li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--eichmann-green); font-weight: 700;
}

/* ── 24. Lightbox ────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(2,30,18,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; color: white; cursor: pointer; z-index: 10;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
  font-size: 1.2rem; font-weight: 300;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── 25. Google Maps Container ───────────────────────────────── */
.map-container {
  width: 100%; height: 400px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-light);
  margin-top: 24px;
}
.map-container iframe {
  width: 100%; height: 100%; border: none;
}
/* ── Cookie-Consent-Banner ──────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #021E12; color: rgba(255,255,255,0.9);
  padding: 20px 24px; box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 280px; font-size: 0.9rem; line-height: 1.6; }
.cookie-banner__text a { color: var(--green-light, #1A9B6B); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner__btn {
  padding: 10px 24px; font-size: 0.85rem; font-weight: 600;
  border-radius: 6px; cursor: pointer; border: 2px solid var(--eichmann-green, #0E8158);
  transition: all 0.2s;
}
.cookie-banner__btn--accept {
  background: var(--eichmann-green, #0E8158); color: #fff; border-color: var(--eichmann-green, #0E8158);
}
.cookie-banner__btn--accept:hover { background: var(--green-light, #1A9B6B); border-color: var(--green-light, #1A9B6B); }
.cookie-banner__btn--decline {
  background: transparent; color: rgba(255,255,255,0.8);
}
.cookie-banner__btn--decline:hover { color: #fff; border-color: #fff; }

/* ── 26. Utilities ───────────────────────────────────────────── */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; } .mt-6 { margin-top: 64px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* ── 27. Keyframes ───────────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── 28. Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav__links { display: none; }
  .site-nav__hamburger { display: block; }
  .detail-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .spotlight__prev, .spotlight__next { opacity: 1; width: 36px; height: 36px; font-size: 1.1rem; }
  .spotlight__thumb { width: 110px; }
  .gallery-thumbs { flex-direction: row; }
  .gallery-thumbs .gallery__item { aspect-ratio: 4 / 3; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-sm { padding: 110px 0 40px; }
  .detail-hero { padding: 110px 0 40px; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__number { font-size: 2rem; }
  .stats-bar__item:nth-child(3)::before { display: none; }
  .legal { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer__col:first-child { grid-column: 1 / -1; }
  .site-footer__social { width: 40px; height: 40px; }
  .site-footer__social svg { width: 18px; height: 18px; }
  .maengel-grid, .kontakt-grid, .two-cards { grid-template-columns: 1fr; }
  .kontakt-info { position: static; }
  .gallery-grid { grid-template-columns: 1fr; }
  .spotlight__main { aspect-ratio: 4/3; }
  .haus-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
  .haus-card { border-radius: var(--radius-md); }
  .card { border-radius: var(--radius-md); }
  .form-row { flex-direction: column; gap: 0; }
  .map-container { height: 300px; border-radius: var(--radius-md); }
  .detail-heading { font-size: 1.6rem; }
  .kiona-card__inner { grid-template-columns: 1fr; gap: 0; }
  .kiona-card__cert { padding: 0 40px 40px; justify-content: center; }
  .kiona-card__cert img { width: 200px; }
}
@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .hero-sm { padding: 100px 0 32px; }
  .detail-hero { padding: 100px 0 32px; }
  .detail-hero__content h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .leistungen-stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .leistungen-stat__value { font-size: 1.8rem; }
  .leistungen-stat { padding: 32px 16px; }
  .detail-layout { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__number { font-size: 1.8rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .spotlight__thumb { width: 90px; }
  .gallery-thumbs { flex-direction: column; }
  .filter-bar__inner { flex-direction: column; align-items: stretch; }
  .filter-bar__group { max-width: 100%; min-width: 0; }
  .filter-bar__count { margin-left: 0; text-align: center; }
  .haus-card { border-radius: var(--radius); }
  .card { border-radius: var(--radius); }
  .map-container { height: 250px; }
  .detail-heading { font-size: 1.4rem; }
  .breadcrumb--content { font-size: 0.68rem; }
  .section-label, .eyebrow { gap: 8px; }
  .section-label::after, .eyebrow::after { min-width: 20px; }
  .btn-ghost { font-size: 0.75rem; }
  .site-nav__mobile-panel a { padding: 14px 0; }
}

/* ── 29. Leistungen — Stats & USP ────────────────────────────── */
.leistungen-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center;
}
.leistungen-stat {
  padding: 48px 24px; position: relative; text-align: center;
  transition: background 0.3s var(--ease);
}
.leistungen-stat:hover { background: var(--green-pale); }
.leistungen-stat + .leistungen-stat::before {
  content: ''; position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px;
  background: var(--border-light);
}
.leistungen-stat__value {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 700;
  color: var(--eichmann-green); display: block; line-height: 1;
  letter-spacing: 0.02em;
}
.leistungen-stat__value--text { font-size: 1.1rem; letter-spacing: 0.02em; }
.leistungen-stat__label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--text-light); margin-top: 10px;
}
@media (max-width: 768px) {
  .leistungen-stats { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .leistungen-stat:nth-child(3)::before { display: none; }
}

.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 32px;
}
.usp-item { text-align: center; }
.usp-item__icon {
  width: 40px; height: 40px; min-width: 40px; max-width: 40px;
  margin: 0 auto 16px; color: var(--eichmann-green); overflow: hidden;
}
.usp-item__icon svg { width: 40px; height: 40px; display: block; }
.usp-item__title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 8px; color: var(--text-dark);
}
.usp-item__text {
  font-size: 1rem; line-height: 1.8; color: var(--text-medium);
}
@media (max-width: 768px) {
  .usp-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 30. Leistungen — Cards ─────────────────────────────────── */
.leistungen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.leistung-card { display: flex; flex-direction: column; }
.leistung-card__icon {
  width: 48px; height: 48px; margin-bottom: 20px; color: var(--eichmann-green);
}
.leistung-card__icon svg { width: 100%; height: 100%; }
.leistung-card__title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 14px; color: var(--text-dark);
}
.leistung-card__text {
  color: var(--text-medium); font-size: 1rem; line-height: 1.8; margin-bottom: 20px;
}
.leistung-card__list {
  list-style: none; margin: 0; padding: 0; flex: 1;
}
.leistung-card__list li {
  padding: 8px 0 8px 24px; position: relative;
  border-bottom: 1px solid var(--border-light); color: var(--text-medium); font-size: 1rem;
}
.leistung-card__list li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--eichmann-green); font-weight: 700;
}
.leistung-card__list li:last-child { border-bottom: none; }
.leistung-card__note {
  margin-top: 16px; padding: 12px 16px; background: var(--green-pale);
  border-radius: var(--radius); font-size: 0.875rem; color: var(--text-medium); font-style: italic;
}
@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .leistungen-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ── 30. Scroll Arrow ────────────────────────────────────────── */
.scroll-arrow {
  display: none; position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  width: 32px; height: 32px; color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  transition: color 0.25s;
}
.scroll-arrow:hover { color: var(--white); }
.scroll-arrow svg { width: 100%; height: 100%; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}
@media (max-width: 768px) {
  .scroll-arrow { display: block; }
}

/* ── 31. Mobile Hero Fix ─────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding-top: 80px; }
  .hero__content { padding: 40px 24px; }
  .hero__headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero__subtitle { font-size: 0.9rem; max-width: 100%; }
  .hero__cta {
    display: inline-flex; width: auto; text-align: center; justify-content: center;
    font-size: 0.75rem; padding: 14px 32px;
  }
  .hero__trust { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .hero__trust-badge {
    flex: 0 0 auto; padding: 6px 14px; font-size: 0.75rem;
  }
  .hero__trust-stars { font-size: 0.85rem; }
  .hero__trust-text { font-size: 0.72rem; }
}

/* ── 33. Häuser-Karte (Google Maps) ──────────────────────────── */
.haeuser-map {
  width: 100%; height: 480px; border-radius: var(--radius-lg);
  border: 1px solid var(--border-light); box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
  .haeuser-map { height: 360px; border-radius: var(--radius-md); }
}

/* ── 32. Print ───────────────────────────────────────────────── */
@media print {
  .site-nav, .site-footer, .hero__watermark, .hero__accent, .site-nav__accent,
  .site-footer__accent, .lightbox { display: none !important; }
  body { color: black; background: white; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 32px 0; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.8em; color: #666; }
}
