:root {
  --red-900: #9E0B11;
  --red-800: #CD0E17;
  --red-700: #F01E28;
  --red-600: #F34E56;
  --red-500: #F67E83;
  --ink: #282828;
  --muted: #3c3c3c;
  --line: #CDC8BE;
  --paper: #ffffff;
  --soft: #E3E0DB;
  --dark: #000000;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 28px 80px rgba(16, 19, 24, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 16px; background: #fff; padding: 10px 14px; border-radius: 10px; z-index: 100; }
.skip-link:focus { left: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,234,238,.9);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand strong { display: block; font-size: 1.05rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .82rem; }
.main-nav { display: flex; align-items: center; gap: 20px; font-weight: 700; font-size: .94rem; }
.main-nav a { text-decoration: none; color: #30343b; }
.main-nav a:hover { color: var(--red-700); }
.admin-link { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 14px; font-weight: 800; }

.section { padding: 88px 0; }
.section-soft { background: var(--soft); }
.section-dark { background:
  radial-gradient(circle at 15% 10%, rgba(239,59,63,.28), transparent 30%),
  linear-gradient(135deg, #161a22 0%, #1a0d0f 42%, #6d1518 100%);
  color: #fff;
}
.hero { padding: 112px 0 92px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 46px; align-items: center; }
.eyebrow, .section-kicker { color: var(--red-500); text-transform: uppercase; letter-spacing: .15em; font-weight: 900; font-size: .78rem; margin: 0 0 14px; }
.section-dark .eyebrow, .section-dark .section-kicker, .light .section-kicker { color: #ffb8b8; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.7rem, 7vw, 5.8rem); letter-spacing: -.07em; max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); letter-spacing: -.045em; }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.1rem, 2.2vw, 1.38rem); color: rgba(255,255,255,.84); max-width: 720px; margin: 24px 0 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; border: 0; text-decoration: none; border-radius: 999px; padding: 13px 20px; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red-500); color: #fff; box-shadow: 0 12px 30px rgba(239,59,63,.32); }
.button-primary:hover { background: #ff484c; }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.hero-card { position: relative; padding: 34px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.1); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.hero-card::after { content: ""; position: absolute; inset: auto -15% -35% 20%; height: 160px; background: rgba(255,255,255,.08); transform: rotate(-12deg); border-radius: 100%; }
.hero-card h2 { font-size: 2rem; letter-spacing: -.03em; }
.hero-card p { color: rgba(255,255,255,.82); }
.emergency-number { display: inline-flex; align-items: center; justify-content: center; width: 118px; height: 118px; margin-top: 18px; border-radius: 999px; background: #fff; color: var(--red-700); font-size: 2.6rem; font-weight: 1000; text-decoration: none; box-shadow: 0 18px 42px rgba(0,0,0,.18); }
.pulse-dot { width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.9); animation: pulse 1.8s infinite; margin-bottom: 24px; }
@keyframes pulse { 70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: start; }
.split p:not(.section-kicker), .section-head p, .join-grid p, .contact-grid p { color: var(--muted); font-size: 1.08rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: 0 14px 40px rgba(16,19,24,.05); }
.stat strong { display: block; font-size: 2.35rem; color: var(--red-700); line-height: 1; }
.stat span { color: var(--muted); font-weight: 800; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.info-card, .news-card, .vehicle-card, .contact-card, .contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; box-shadow: 0 18px 50px rgba(16,19,24,.07); }
.info-card::before { content: ""; display: block; width: 42px; height: 7px; border-radius: 999px; background: var(--red-500); margin-bottom: 18px; }
.info-card p, .news-card p, .vehicle-card p { color: var(--muted); }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.light p { color: rgba(255,255,255,.72); }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { display: flex; flex-direction: column; min-height: 260px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .9rem; font-weight: 800; margin-bottom: 16px; }
.pill { display: inline-flex; border-radius: 999px; padding: 5px 9px; background: #f3e8e8; color: var(--red-700); }
.news-card h3 { margin-bottom: 12px; }
.news-card .read-more { align-self: flex-start; margin-top: auto; padding: 0; border: 0; background: transparent; color: var(--red-700); font: inherit; font-weight: 900; text-decoration: none; cursor: pointer; }
.news-card .read-more:hover { text-decoration: underline; }

.news-dialog { width: min(760px, calc(100% - 28px)); max-height: calc(100% - 28px); padding: 0; border: 0; border-radius: var(--radius-lg); background: #fff; color: var(--ink); box-shadow: 0 32px 100px rgba(0,0,0,.34); }
.news-dialog::backdrop { background: rgba(10,12,16,.72); backdrop-filter: blur(5px); }
.news-dialog-card { position: relative; }
.news-dialog-image { display: block; width: 100%; max-height: 360px; object-fit: cover; }
.news-dialog-content { padding: 34px; }
.news-dialog-content h2 { margin-bottom: 24px; font-size: clamp(2rem, 5vw, 3.2rem); }
.news-dialog-close { position: absolute; z-index: 1; top: 14px; right: 14px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(0,0,0,.12); border-radius: 999px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 1.8rem; line-height: 1; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.rich-text { color: var(--muted); font-size: 1.08rem; }
.rich-text > :first-child { margin-top: 0; }
.rich-text > :last-child { margin-bottom: 0; }
.rich-text h2, .rich-text h3, .rich-text h4 { margin: 1.5em 0 .55em; color: var(--ink); letter-spacing: -.025em; }
.rich-text h2 { font-size: 1.8rem; }
.rich-text h3 { font-size: 1.45rem; }
.rich-text a { color: var(--red-700); font-weight: 800; }
.rich-text blockquote { margin: 1.4em 0; padding: 4px 0 4px 20px; border-left: 4px solid var(--red-500); color: var(--ink); }

/* Führungsteam */
.leadership-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.leadership-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  top: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,59,63,.1), rgba(239,59,63,0) 70%);
  pointer-events: none;
}
.leadership-head { margin-bottom: 42px; }
.leadership-groups { display: grid; gap: 46px; }
.leadership-group { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.leadership-group-head { position: sticky; top: 112px; }
.leadership-label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f7e8e8;
  color: var(--red-700);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.leadership-group-head p:last-child { margin: 0; color: var(--muted); }
.leader-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.leader-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 18px 50px rgba(16,19,24,.07);
}
.leader-portrait {
  width: 96px;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--red-700), var(--red-900));
  color: #fff;
  box-shadow: 0 12px 26px rgba(89,16,18,.18);
}
.leader-portrait img { width: 100%; height: 100%; object-fit: cover; }
.leader-portrait span { font-size: 1.65rem; font-weight: 1000; letter-spacing: -.04em; }
.leader-copy h3 { margin-bottom: 10px; font-size: 1.35rem; }
.leader-copy p:last-child { margin: 0; color: var(--muted); }
.leader-role {
  margin: 0 0 7px;
  color: var(--red-700);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.timeline { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; }
.timeline-item { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 24px; border-bottom: 1px solid var(--line); }
.timeline-item:last-child { border-bottom: 0; }
.date-box { color: var(--red-700); font-weight: 1000; }
.date-box span { display: block; color: var(--muted); font-size: .9rem; }

.incident-list { display: grid; gap: 14px; }
.incident { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: center; padding: 20px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08); border-radius: var(--radius-md); }
.incident time, .incident p { color: rgba(255,255,255,.72); }
.incident .keyword { color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 7px 12px; font-weight: 900; white-space: nowrap; }

.vehicle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vehicle-icon { height: 158px; background: linear-gradient(135deg, #f7e8e8, #fff); border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; color: var(--red-700); }
.vehicle-icon svg { width: 78px; height: 78px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-size: .82rem; font-weight: 800; color: #454b55; border: 1px solid var(--line); border-radius: 999px; padding: 5px 9px; }

.join-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 42px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -2px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--red-500); color: #fff; font-size: .85rem; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-weight: 850; color: #333842; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 13px; font: inherit; }
input:focus, textarea:focus { outline: 3px solid rgba(239,59,63,.18); border-color: var(--red-500); }
.contact-form .form-consent { grid-template-columns: auto 1fr; align-items: start; font-size: .88rem; line-height: 1.5; }
.form-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red-500); }
.form-consent a { color: var(--red-700); }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem !important; margin: 0; }
.form-note.is-success { color: #166534; font-weight: 800; }
.form-note.is-error { color: #991b1b; font-weight: 800; }
.hidden { display: none; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: start; }
.contact-grid > * { min-width: 0; }
.contact-card dl { display: grid; grid-template-columns: minmax(0, 150px) minmax(0, 1fr); gap: 12px 18px; margin: 0; }
.contact-card dt { color: var(--muted); font-weight: 900; }
.contact-card dd { margin: 0; font-weight: 750; overflow-wrap: anywhere; }
.contact-card a { color: var(--red-700); font-weight: 900; }

.site-footer { background: #0f1116; color: #fff; padding: 34px 0; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-footer p { margin: 4px 0 0; color: rgba(255,255,255,.64); }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.site-footer a:hover { color: #fff; }

.legal-page .site-header { position: static; }
.legal-content { max-width: 860px; padding: 70px 0; }
.legal-content h1 { color: var(--ink); font-size: clamp(2.2rem, 5vw, 4rem); }
.legal-content h2 { font-size: 1.55rem; margin-top: 32px; }
.legal-content p, .legal-content li { color: var(--muted); }
.placeholder-box { border: 1px dashed var(--red-500); background: #fff8f8; padding: 18px; border-radius: 16px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav { display: none; position: absolute; left: 18px; right: 18px; top: 74px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .main-nav.is-open { display: flex; }
  .hero-grid, .split, .join-grid, .contact-grid, .leadership-group { grid-template-columns: 1fr; }
  .leadership-group-head { position: static; }
  .card-grid, .news-grid, .vehicle-grid, .leader-grid { grid-template-columns: 1fr; }
  .incident { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1120px); }
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 64px; }
  .stats-grid { grid-template-columns: 1fr; }
  .brand img { width: 48px; }
  .hero-card { padding: 24px; }
  .leader-card { grid-template-columns: 76px 1fr; padding: 18px; min-height: 0; }
  .leader-portrait { width: 76px; border-radius: 15px; }
  .contact-card dl { grid-template-columns: 1fr; gap: 4px; }
  .contact-card dd:not(:last-child) { margin-bottom: 10px; }
  .news-dialog-content { padding: 26px 20px; }
}
