/* ═══════════════════════════════════════════════════════════════
   FF Hohenbostel – Modern Design
   Vibe: Clean, minimal, red-focused fire service aesthetic
   Type: DM Sans (all-purpose)
═══════════════════════════════════════════════════════════════ */

:root {
  --c-bg:        #0d0708;
  --c-bg-alt:    #150a0c;
  --c-red:       #b3000f;
  --c-red-dark:  #6e0009;
  --c-red-light: #d81b25;
  --c-ember:     #8a0511;
  --c-flame:     #c2001a;
  --c-soot:      #0a0304;
  --c-text:      #f2eceb;
  --c-text-2:    rgba(242,236,235,0.62);
  --c-text-3:    rgba(242,236,235,0.4);
  --c-border:    rgba(255,255,255,0.11);
  --c-border-light: rgba(255,255,255,0.06);
  --c-surface:   #1a0d0f;
  --f-body:      'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:      ui-monospace, 'SF Mono', 'JetBrains Mono', Menlo, monospace;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:     cubic-bezier(0.64, 0, 0.78, 0);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --nav-h:       64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Warme Glut-Ambience hinter allem – bricht das flache Schwarz */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 620px at 12% 8%,  rgba(140,10,22,0.30), transparent 62%),
    radial-gradient(680px 560px at 88% 34%, rgba(90,6,16,0.26),  transparent 64%),
    radial-gradient(900px 700px at 50% 96%, rgba(120,10,20,0.22), transparent 66%);
}
/* Feines Korn – nimmt dem Dunkel die Plastik-Glätte */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > *:not(script):not(style) { position: relative; z-index: 2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.alarm-ticker {
  height: 40px;
  background: linear-gradient(90deg, #5a0007, var(--c-flame) 45%, var(--c-red) 70%, #8a0511 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.alarm-ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.alarm-ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
}
.alarm-ticker__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(13,7,8,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.nav-logo__emblem {
  width: 40px; height: 40px;
  background: none;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo__emblem img { width: 36px; height: 36px; object-fit: contain; }
.nav-logo__text { line-height: 1.2; }
.nav-logo__name {
  font-size: 16px; font-weight: 700;
  color: var(--c-text);
}
.nav-logo__sub {
  font-size: 11px; font-weight: 400;
  color: var(--c-text-3);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.nav-links {
  display: flex; gap: 2px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--c-text-2);
  padding: 8px 16px; border-radius: 6px;
  transition: all 0.2s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--c-red-light);
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  background: linear-gradient(100deg, var(--c-flame), var(--c-red)) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  transition: all 0.2s var(--ease-out) !important;
}
.nav-cta:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
}

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
}
.nav-hamburger span {
  display: block; height: 2px;
  background: var(--c-text);
  transform-origin: center;
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(13,7,8,0.96);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.menu-overlay.is-open {
  opacity: 1; pointer-events: all;
}
.menu-overlay a {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 700;
  color: var(--c-text-2);
  transition: color 0.2s;
}
.menu-overlay a:hover { color: var(--c-red-light); }
.menu-overlay .menu-contact {
  font-size: 13px; color: var(--c-text-3);
  margin-top: 32px;
}

.hero {
  min-height: calc(100dvh - var(--nav-h) - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px 72px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 8%, #1c0d10 0%, #0d0708 58%, #080405 100%);
  text-align: center;
  isolation: isolate;
}
/* Weicher Übergang Hero → nächste Sektion, kein harter Kantenbruch */
.hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--c-bg-alt));
  z-index: 2;
  pointer-events: none;
}

/* driftendes Glutlicht – nur transform/opacity, GPU */
.hero__ember {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero__ember--a {
  width: 780px; height: 780px;
  left: -12%; top: -22%;
  background: radial-gradient(circle, rgba(194,0,26,0.6) 0%, rgba(194,0,26,0) 68%);
  animation: emberDriftA 26s cubic-bezier(0.45,0,0.55,1) infinite;
}
.hero__ember--b {
  width: 640px; height: 640px;
  right: -10%; bottom: -26%;
  background: radial-gradient(circle, rgba(110,0,9,0.62) 0%, rgba(110,0,9,0) 70%);
  animation: emberDriftB 34s cubic-bezier(0.45,0,0.55,1) infinite;
}
@keyframes emberDriftA {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(9%, 7%, 0) scale(1.12); }
}
@keyframes emberDriftB {
  0%, 100% { transform: translate3d(0,0,0) scale(1.06); }
  50%      { transform: translate3d(-8%, -6%, 0) scale(0.94); }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  mix-blend-mode: screen;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero__content { position: relative; z-index: 3; max-width: 760px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(216,27,37,0.4);
  color: #f0c9cd;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 28px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.hero__eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--c-flame);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(194,0,26,0.75);
  animation: emberPulse 2.4s ease-out infinite;
}
@keyframes emberPulse {
  0%   { box-shadow: 0 0 0 0 rgba(194,0,26,0.75); }
  70%  { box-shadow: 0 0 0 9px rgba(194,0,26,0); }
  100% { box-shadow: 0 0 0 0 rgba(194,0,26,0); }
}

.hero__title {
  font-size: clamp(52px, 9vw, 116px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.94;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  text-wrap: balance;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, #e8434d 0%, var(--c-red-light) 30%, var(--c-flame) 62%, #7a0410 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 34px rgba(194,0,26,0.5));
}

.hero__lede {
  max-width: 460px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}

.hero__actions {
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  margin-top: 34px;
}

/* Leitstellen-Board */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 56px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.hero-stat {
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat__num {
  font-family: var(--f-mono);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-red-light);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat:nth-child(2) .hero-stat__num,
.hero-stat:nth-child(4) .hero-stat__num { color: var(--c-flame); }
.hero-stat__label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.14em;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}
.btn:active { transform: scale(0.96); }

.btn__icon {
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn:hover .btn__icon {
  transform: translateX(2px);
}

.btn--primary {
  background: linear-gradient(100deg, var(--c-flame), var(--c-ember));
  color: white;
  box-shadow: 0 6px 24px rgba(179,0,15,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(179,0,15,0.55);
}
.btn--primary .btn__icon svg { fill: white; width: 16px; height: 16px; }

.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--c-red-light);
  color: #f0c9cd;
  transform: translateY(-2px);
}

.btn--ghost .btn__icon svg { stroke: currentColor; width: 16px; height: 16px; fill: none; stroke-width: 2; }

.section {
  padding: 96px 32px;
}
.section--warm {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(140,12,24,0.16), transparent 62%),
    var(--c-bg-alt);
  position: relative;
}
/* Glühende Haarlinie als Sektionskante */
.section--warm::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,27,37,0.55) 30%, rgba(255,120,90,0.4) 50%, rgba(216,27,37,0.55) 70%, transparent);
}

.section-inner { max-width: 1080px; margin: 0 auto; }

.eyebrow-tag {
  display: inline-flex; align-items: center;
  background: linear-gradient(100deg, var(--c-flame), var(--c-ember));
  border-radius: 999px;
  padding: 5px 13px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--c-flame), var(--c-ember));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title--dark { color: var(--c-text); }

[data-reveal] {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(6px);
  transition: opacity 0.85s var(--ease-out),
              transform 0.85s var(--ease-out),
              filter 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1; transform: none; filter: none;
}
.bento-card { --reveal-delay: 0ms; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.bento-card {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #221113 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 2px 12px rgba(0,0,0,0.35);
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.bento-card:hover {
  border-color: rgba(216,27,37,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09),
              0 14px 40px rgba(0,0,0,0.55),
              0 0 0 1px rgba(216,27,37,0.18),
              0 8px 30px rgba(179,0,15,0.22);
  transform: translateY(-4px);
}

.bento-card--abt    { grid-column: span 4; }
.bento-card--insta  { grid-column: span 4; }
.bento-card--cta    { grid-column: span 4; }
.bento-card--einsatz{ grid-column: span 8; }
.bento-card--news   { grid-column: span 4; }

.bento-card__label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 8px;
}
.bento-card__title {
  font-size: 20px; font-weight: 700;
  text-transform: uppercase;
  color: var(--c-text); line-height: 1.2;
  margin-bottom: 12px;
}
.bento-card__body {
  font-size: 13px; color: var(--c-text-2);
  line-height: 1.6; flex: 1;
  margin-bottom: 12px;
}
.bento-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600;
  color: var(--c-red-light);
  transition: gap 0.2s;
  margin-top: auto;
}
.bento-card__link:hover { gap: 10px; }
.bento-card__link svg { width: 12px; height: 12px; fill: var(--c-red-light); }

.bento-card--cta {
  background: linear-gradient(135deg, #4d0006, var(--c-flame));
  border-color: rgba(216,27,37,0.5);
}
.bento-card--cta .bento-card__label { color: rgba(255,255,255,0.7); }
.bento-card--cta .bento-card__title { color: white; }
.bento-card--cta .bento-card__body  { color: rgba(255,255,255,0.8); }
.bento-card--cta .bento-card__link  { color: white; }
.bento-card--cta .bento-card__link svg { fill: white; }

.mini-einsatz {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border-light);
}
.mini-einsatz:last-child { border-bottom: none; }
.mini-einsatz__nr {
  font-size: 18px; font-weight: 800;
  color: var(--c-text-3);
  width: 32px; flex-shrink: 0; text-align: center;
}
.mini-einsatz__info { flex: 1; }
.mini-einsatz__title {
  font-size: 13px; font-weight: 500; color: var(--c-text);
}
.mini-einsatz__meta {
  font-size: 11px; color: var(--c-text-3); margin-top: 2px;
}

.mitmachen {
  background: linear-gradient(135deg, #4d0006 0%, var(--c-flame) 55%, var(--c-red) 100%);
  color: white;
  padding: 96px 32px;
  text-align: center;
}
.mitmachen h2 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.mitmachen p { font-size: 16px; margin-bottom: 32px; line-height: 1.6; opacity: 0.9; }
.mitmachen-perks {
  display: flex; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.mitmachen-perk {
  font-size: 12px; font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
  opacity: 0.85;
}
.mitmachen-perk::before {
  content: ''; width: 4px; height: 4px;
  background: white; border-radius: 50%;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 48px;
}

.kontakt-card {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #221113 0%, var(--c-surface) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055), 0 2px 12px rgba(0,0,0,0.3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.kontakt-card h3 {
  font-size: 18px; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.kontakt-row { display: flex; gap: 12px; margin-bottom: 16px; }
.kontakt-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--c-red);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kontakt-icon svg { width: 16px; height: 16px; fill: white; }
.kontakt-row strong { display: block; font-size: 13px; font-weight: 600; }
.kontakt-row span { font-size: 13px; color: var(--c-text-2); }
.doc-links { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--c-border-light); }
.doc-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--c-red-light); margin-bottom: 8px;
  transition: gap 0.2s;
}
.doc-link:hover { gap: 10px; }
.doc-link svg { width: 12px; height: 12px; fill: var(--c-red-light); }

.kontakt-map {
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  overflow: hidden; height: 300px;
}
.kontakt-map iframe { width: 100%; height: 100%; border: none; display: block; }

.footer {
  background: linear-gradient(180deg, #120809 0%, #080405 100%);
  color: white;
  border-top: 1px solid rgba(216,27,37,0.28);
  padding: 64px 32px 0;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-logo__icon {
  width: 32px; height: 32px;
  background: var(--c-red);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo__icon img { width: 16px; height: 16px; }
.footer-logo__text {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 240px; }
.footer-col h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a, .footer-col p {
  font-size: 13px; color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bar {
  max-width: 1080px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bar p { font-size: 11px; color: rgba(255,255,255,0.6); }

@media (prefers-reduced-motion: reduce) {
  .hero__ember { animation: none; }
  .hero__eyebrow-dot { animation: none; }
  .alarm-ticker__track { animation: none; }
  [data-reveal] { transition-duration: 0.01ms; }
}

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: none; }
  .hero-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { padding: 48px 20px; }
  .section { padding: 64px 20px; }
  .bento { grid-template-columns: 1fr; }
  .bento-card--abt, .bento-card--insta,
  .bento-card--cta, .bento-card--einsatz,
  .bento-card--news { grid-column: span 1; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown__trigger {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500;
  color: var(--c-text-2);
  padding: 8px 16px; border-radius: 6px;
  cursor: pointer; border: none; background: none;
  font-family: inherit;
  transition: all 0.2s;
}
.nav-dropdown__trigger:hover { color: var(--c-red-light); background: rgba(255,255,255,0.06); }
.nav-dropdown__trigger svg {
  width: 12px; height: 12px; stroke: currentColor;
  fill: none; stroke-width: 2;
}
.nav-dropdown__menu {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 160px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  z-index: 400;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--c-text-2);
  transition: all 0.15s;
  white-space: nowrap;
}
.nav-dropdown__menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--c-red-light);
}
.nav-dropdown__menu a svg {
  width: 14px; height: 14px; fill: var(--c-red-light); flex-shrink: 0;
}
.nav-dropdown__divider {
  height: 1px; background: var(--c-border-light); margin: 4px 6px;
}
.nav-dropdown__group-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  padding: 6px 12px 4px;
}

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px; white-space: nowrap;
}
.badge--brand    { background: rgba(216,27,37,0.2); color: #f08b91; }
.badge--hilfe    { background: rgba(66,165,245,0.16); color: #90caf9; }
.badge--ubung    { background: rgba(102,187,106,0.16); color: #a5d6a7; }
.badge--sonstige { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════════
   UNTERSEITEN – dunkles Feuer-Design
═══════════════════════════════════════════════════════════════ */

/* ── Seitenkopf ─────────────────────────────────────────────── */
.page-header {
  position: relative;
  padding: 88px 32px 72px;
  overflow: hidden;
  background:
    radial-gradient(110% 140% at 20% 0%, #221013 0%, #120809 55%, #0d0708 100%);
  border-bottom: 1px solid rgba(216,27,37,0.24);
}
.page-header::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,27,37,0.6) 30%, rgba(255,120,90,0.45) 50%, rgba(216,27,37,0.6) 70%, transparent);
}
.page-header__slash {
  position: absolute;
  width: 620px; height: 620px;
  right: -8%; top: -60%;
  border-radius: 50%;
  filter: blur(90px);
  background: radial-gradient(circle, rgba(194,0,26,0.42) 0%, rgba(194,0,26,0) 68%);
  pointer-events: none;
}
.page-header__inner {
  position: relative; z-index: 2;
  max-width: 1080px; margin: 0 auto;
}
.page-header__crumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 18px;
}
.page-header__crumb a { color: var(--c-red-light); }
.page-header__crumb a:hover { color: #f08b91; }
.page-header h1 {
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}
.page-header p {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-2);
}

.section-sub {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text-2);
  margin-bottom: 8px;
}
.section-sub--dark, .section-title--dark { color: var(--c-text); }
.section-sub--dark { color: var(--c-text-2); }
.eyebrow-tag--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(216,27,37,0.4);
  color: #f0c9cd;
}

/* ── Gemeinsame Kartenbasis ─────────────────────────────────── */
.abt-card, .abt-content-card, .abt-stat-card, .fz-card, .insta-cta,
.einsatz-list-wrap, .legal-content {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #221113 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 2px 12px rgba(0,0,0,0.35);
}

/* ── Abteilungs-Karten ──────────────────────────────────────── */
.abt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.abt-card {
  overflow: hidden;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.abt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,27,37,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09),
              0 14px 40px rgba(0,0,0,0.55),
              0 8px 30px rgba(179,0,15,0.22);
}
.abt-card__inner { padding: 26px; display: flex; flex-direction: column; height: 100%; }
.abt-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.abt-card__icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--c-flame), #6e0009);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(179,0,15,0.35);
}
.abt-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.abt-card__name {
  font-size: 19px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--c-text); line-height: 1.15;
}
.abt-card__age {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-red-light); margin-top: 5px;
}
.abt-card__body { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.abt-card__desc { font-size: 13px; line-height: 1.65; color: var(--c-text-2); }
.abt-card__features, .abt-feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  padding: 0; margin: 0;
}
.abt-card__features li, .abt-feature-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; line-height: 1.55; color: var(--c-text-2);
}
.abt-card__features li::before, .abt-feature-list li::before {
  content: '';
  width: 5px; height: 5px; margin-top: 7px;
  flex-shrink: 0; border-radius: 50%;
  background: var(--c-red-light);
  box-shadow: 0 0 8px rgba(216,27,37,0.7);
}

/* ── Abteilungs-Detailseiten ────────────────────────────────── */
.abt-detail-hero {
  position: relative;
  padding: 88px 32px 72px;
  overflow: hidden;
  background: radial-gradient(110% 140% at 22% 0%, #221013 0%, #120809 55%, #0d0708 100%);
  border-bottom: 1px solid rgba(216,27,37,0.24);
}
.abt-detail-hero__slash {
  position: absolute;
  width: 620px; height: 620px; right: -8%; top: -60%;
  border-radius: 50%; filter: blur(90px);
  background: radial-gradient(circle, rgba(194,0,26,0.42) 0%, rgba(194,0,26,0) 68%);
  pointer-events: none;
}
.abt-detail-hero__inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; }
.abt-detail-back {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-red-light);
  margin-bottom: 20px;
  transition: gap 0.2s var(--ease-out);
}
.abt-detail-back:hover { gap: 11px; }
.abt-detail-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 0.98;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
  text-wrap: balance;
}
.abt-detail-sub {
  max-width: 540px; font-size: 15px; line-height: 1.65; color: var(--c-text-2);
}

.abt-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.abt-content-card__inner { padding: 26px; }
.abt-content-card h3 {
  font-size: 17px; font-weight: 700; text-transform: uppercase;
  color: var(--c-text); margin-bottom: 14px;
}
.abt-content-card p { font-size: 13px; line-height: 1.7; color: var(--c-text-2); }

/* ── Statistik-Karten ───────────────────────────────────────── */
.abt-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.abt-stat-card__inner { padding: 24px; }
.abt-stat-card--red {
  background: linear-gradient(135deg, #4d0006, var(--c-flame));
  border-color: rgba(216,27,37,0.5);
}
.abt-stat-value {
  font-family: var(--f-mono);
  font-size: 38px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-red-light); line-height: 1; margin-bottom: 10px;
}
.abt-stat-card--red .abt-stat-value { color: #fff; }
.abt-stat-label {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-3); margin-bottom: 6px;
}
.abt-stat-card--red .abt-stat-label { color: rgba(255,255,255,0.7); }
.abt-stat-desc { font-size: 12px; line-height: 1.55; color: var(--c-text-2); }
.abt-stat-card--red .abt-stat-desc { color: rgba(255,255,255,0.8); }

/* ── Fahrzeuge ──────────────────────────────────────────────── */
.fz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.fz-card {
  overflow: hidden;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.fz-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,27,37,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09),
              0 14px 40px rgba(0,0,0,0.55),
              0 8px 30px rgba(179,0,15,0.22);
}
.fz-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0708;
  border-bottom: 1px solid var(--c-border);
}
.fz-card__img { width: 100%; height: 100%; object-fit: cover; }
.fz-card__status {
  position: absolute; top: 12px; left: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(13,7,8,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--c-text-2);
}
.fz-card__status--active {
  border-color: rgba(102,187,106,0.45);
  color: #a5d6a7;
}
.fz-card__status--active::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #66bb6a;
  box-shadow: 0 0 8px rgba(102,187,106,0.8);
}
.fz-card__body { padding: 24px; }
.fz-card__type {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-red-light); margin-bottom: 8px;
}
.fz-card__name {
  font-size: 21px; font-weight: 700; text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--c-text); line-height: 1.15;
  margin-bottom: 4px;
}
.fz-card__fullname { font-size: 12px; color: var(--c-text-3); margin-bottom: 16px; }
.fz-card__desc { font-size: 13px; line-height: 1.65; color: var(--c-text-2); margin-bottom: 20px; }
.fz-specs {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border-light);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.fz-spec { padding: 12px 14px; background: rgba(255,255,255,0.02); }
.fz-spec__label {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-3); margin-bottom: 5px;
}
.fz-spec__value {
  font-family: var(--f-mono);
  font-size: 14px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
}

/* ── Einsatz-Liste ──────────────────────────────────────────── */
.einsatz-toolbar {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-top: 40px; margin-bottom: 22px;
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  color: var(--c-text-2);
  cursor: pointer;
  transition: background 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out),
              color 0.2s var(--ease-out),
              transform 0.14s var(--ease-out);
}
.filter-chip:hover { border-color: rgba(216,27,37,0.5); color: var(--c-text); }
.filter-chip:active { transform: scale(0.97); }
.filter-chip.is-active {
  background: linear-gradient(100deg, var(--c-flame), var(--c-red));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(179,0,15,0.35);
}
.filter-chip__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.filter-chip__dot.f-brand    { background: #d81b25; }
.filter-chip__dot.f-hilfe    { background: #42a5f5; }
.filter-chip__dot.f-ubung    { background: #66bb6a; }
.filter-chip__dot.f-sonstige { background: rgba(255,255,255,0.45); }
.filter-chip__count {
  font-family: var(--f-mono);
  font-size: 10px; font-variant-numeric: tabular-nums;
  padding: 2px 6px; border-radius: 4px;
  background: rgba(255,255,255,0.08);
}
.filter-chip.is-active .filter-chip__count { background: rgba(0,0,0,0.24); }

/* Statistik-Chips */
.stat-chip {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--c-border);
  min-width: 104px;
}
.stat-chip strong {
  font-family: var(--f-mono);
  font-size: 26px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-text); line-height: 1;
}
.stat-chip .s-brand { color: #ef5350; }
.stat-chip .s-hilfe { color: #64b5f6; }
.stat-chip .s-ubung { color: #81c784; }
.stat-chip span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-3);
}

/* Monats-Trenner */
.einsatz-month {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red-light);
  padding: 26px 0 12px;
  border-bottom: 1px solid rgba(216,27,37,0.28);
  margin-bottom: 4px;
}
.einsatz-month:first-child { padding-top: 4px; }

/* Einsatz-Zeile */
.einsatz-row {
  display: grid;
  grid-template-columns: 52px 132px 68px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 15px 14px;
  border-bottom: 1px solid var(--c-border-light);
  border-radius: var(--radius-sm);
  transition: background 0.16s var(--ease-out);
}
.einsatz-row:hover { background: rgba(255,255,255,0.035); }
.einsatz-row:last-child { border-bottom: none; }
.einsatz-nr {
  font-family: var(--f-mono);
  font-size: 17px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-text-3);
  text-align: center;
}
.einsatz-meta { display: flex; flex-direction: column; gap: 3px; }
.einsatz-meta strong {
  font-family: var(--f-mono);
  font-size: 13px; font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
}
.einsatz-meta span {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-text-3);
}
.einsatz-time {
  font-family: var(--f-mono);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: var(--c-text-2);
}
.einsatz-title { font-size: 14px; line-height: 1.45; color: var(--c-text); text-wrap: pretty; }
.einsatz-title a { color: var(--c-text); transition: color 0.16s var(--ease-out); }
.einsatz-title a:hover { color: var(--c-red-light); }
.einsatz-extlink {
  font-size: 11px; color: var(--c-red-light); margin-left: 9px; white-space: nowrap;
}

/* ── Neuigkeiten-Grid ───────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

/* ── Neuigkeiten-Karten (echte Struktur aus main.js) ────────── */
.news-card {
  background:
    linear-gradient(165deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #221113 0%, var(--c-surface) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 2px 12px rgba(0,0,0,0.35);
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,27,37,0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09),
              0 14px 40px rgba(0,0,0,0.55),
              0 8px 30px rgba(179,0,15,0.22);
}
.news-card:active { transform: translateY(-2px) scale(0.995); }
.news-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0708;
  border-bottom: 1px solid var(--c-border);
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card--no-img {
  height: 5px;
  background: linear-gradient(90deg, #6e0009, var(--c-flame) 45%, var(--c-red-light) 70%, #6e0009);
}
.news-card__body {
  padding: 24px;
  display: flex; flex-direction: column; flex: 1; gap: 11px;
}
.news-card__tag {
  align-self: flex-start;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #f0c9cd;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(216,27,37,0.2);
  border: 1px solid rgba(216,27,37,0.35);
}
.news-card__title {
  font-size: 18px; font-weight: 700;
  color: var(--c-text); line-height: 1.25;
  text-wrap: pretty;
}
.news-card__text {
  font-size: 13px; line-height: 1.65; color: var(--c-text-2); flex: 1;
}
.news-card__date {
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-text-3);
  padding-top: 4px;
  border-top: 1px solid var(--c-border-light);
}

/* ── Instagram-CTA ──────────────────────────────────────────── */
.insta-cta {
  margin-top: 40px;
  padding: 40px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background:
    radial-gradient(90% 140% at 50% 0%, rgba(140,12,24,0.32), transparent 62%),
    linear-gradient(180deg, #221113 0%, var(--c-surface) 100%);
}
.insta-cta h3 {
  font-family: var(--f-mono);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700; color: var(--c-text);
  letter-spacing: -0.01em;
}
.insta-cta p {
  max-width: 420px; font-size: 14px; line-height: 1.65; color: var(--c-text-2);
}
.btn--warm {
  background: linear-gradient(100deg, var(--c-flame), var(--c-red));
  color: #fff;
  box-shadow: 0 6px 24px rgba(179,0,15,0.4);
}
.btn--warm:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(179,0,15,0.55); }
.btn--warm .btn__icon svg { fill: #fff; width: 16px; height: 16px; }

/* ── Leerzustand ────────────────────────────────────────────── */
.empty-state {
  padding: 56px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--c-text-3);
  border: 1px dashed var(--c-border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.015);
}

/* ── Rechtstexte ────────────────────────────────────────────── */
.legal-content { padding: 40px; margin-top: 40px; }
.legal-body { max-width: 68ch; }
.legal-body h2 {
  font-size: 20px; font-weight: 700; text-transform: uppercase;
  color: var(--c-text); margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--c-border-light);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-size: 15px; font-weight: 700; color: var(--c-text); margin: 26px 0 10px;
}
.legal-body p, .legal-body li {
  font-size: 14px; line-height: 1.75; color: var(--c-text-2);
  text-wrap: pretty;
}
.legal-body p { margin-bottom: 14px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 7px; }
.legal-body a { color: var(--c-red-light); }
.legal-body a:hover { color: #f08b91; text-decoration: underline; }
.legal-body strong { color: var(--c-text); font-weight: 600; }

/* ── Mitmachen-Sektion auf Unterseiten ──────────────────────── */
.mitmachen { position: relative; overflow: hidden; }
.mitmachen__bg {
  position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.mitmachen__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

/* Altlast aus dem alten Design – wird nicht mehr gebraucht */
.hero__grain { display: none; }

@media (max-width: 768px) {
  .page-header, .abt-detail-hero { padding: 56px 20px 44px; }
  .legal-content { padding: 26px; }
  .fz-specs { grid-template-columns: 1fr; }
  .insta-cta { padding: 32px 22px; }
}

/* Einsatz-Liste in Kartenfläche */
.einsatz-list-wrap { padding: 8px 14px 14px; }

@media (max-width: 768px) {
  .einsatz-row {
    grid-template-columns: 44px 1fr auto;
    grid-template-areas:
      "nr title badge"
      "nr meta  time";
    gap: 4px 14px;
    padding: 14px 10px;
  }
  .einsatz-nr    { grid-area: nr; align-self: start; }
  .einsatz-title { grid-area: title; }
  .einsatz-meta  { grid-area: meta; flex-direction: row; gap: 8px; align-items: baseline; }
  .einsatz-time  { grid-area: time; }
  .stat-chip { flex: 1; min-width: 84px; padding: 13px 15px; }
  .stat-chip strong { font-size: 21px; }
}
