:root {
  --rot: #c01718;
  --rot-dunkel: #9e1213;
  --anthrazit: #26262b;
  --grau: #6b6b74;
  --linie: #e8e6e3;
  --grund: #faf9f7;
  --karte: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--anthrazit);
  background: var(--grund);
  line-height: 1.6;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Kopf */
header {
  background: var(--karte);
  border-bottom: 1px solid var(--linie);
  position: sticky; top: 0; z-index: 10;
}
.kopf { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.marke { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--anthrazit); }
.marke img { height: 34px; width: auto; }
.marke span { font-weight: 600; letter-spacing: 0.02em; }
.marke span em { font-style: normal; color: var(--rot); }
nav a {
  color: var(--grau); text-decoration: none; margin-left: 22px; font-size: 0.92rem;
}
nav a:hover { color: var(--rot); }

/* Buehne */
.buehne { padding: 72px 0 56px; text-align: center; }
.buehne .abzeichen {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rot); border: 1px solid var(--rot); border-radius: 999px; padding: 4px 14px;
  margin-bottom: 22px; font-weight: 600;
}
.buehne h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 14px; }
.buehne p { color: var(--grau); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* Module */
.module { padding: 24px 0 72px; }
.module h2 { font-size: 1.15rem; margin-bottom: 20px; color: var(--grau); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; }
.raster { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.karte {
  background: var(--karte); border: 1px solid var(--linie); border-radius: 12px;
  padding: 26px; display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.karte { text-decoration: none; color: inherit; }
a.karte:hover { box-shadow: 0 6px 24px rgba(38,38,43,0.10); transform: translateY(-2px); }
.karte h3 { font-size: 1.08rem; display: flex; align-items: center; gap: 10px; }
.karte p { color: var(--grau); font-size: 0.92rem; flex: 1; }
.status { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  border-radius: 6px; padding: 2px 9px; }
.status.live { background: #e7f4ea; color: #1c7a34; }
.status.bald { background: #f2f1ef; color: var(--grau); }
.karte .hinweis { font-size: 0.82rem; color: var(--grau); }
.karte .hinweis strong { color: var(--anthrazit); font-weight: 600; }

/* Zugangs-Hinweis */
.zugang {
  background: var(--anthrazit); color: #d9d8d6; border-radius: 12px;
  padding: 26px 30px; margin: 0 0 72px; font-size: 0.95rem;
}
.zugang strong { color: #ffffff; }

/* Fuss */
footer { border-top: 1px solid var(--linie); background: var(--karte); padding: 34px 0; }
.fuss { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center;
  justify-content: space-between; color: var(--grau); font-size: 0.88rem; }
.fuss a { color: var(--grau); text-decoration: none; }
.fuss a:hover { color: var(--rot); }
.fuss .links a { margin-right: 22px; }

/* Rechtsseiten */
.recht { padding: 56px 0 80px; max-width: 760px; }
.recht h1 { font-size: 1.7rem; margin-bottom: 8px; }
.recht .stand { color: var(--grau); font-size: 0.88rem; margin-bottom: 34px; }
.recht h2 { font-size: 1.12rem; margin: 30px 0 8px; }
.recht p, .recht li { color: #3d3d44; font-size: 0.96rem; }
.recht ul { padding-left: 20px; }
.recht table { border-collapse: collapse; margin: 10px 0; }
.recht td { padding: 4px 18px 4px 0; vertical-align: top; }
.recht td:first-child { color: var(--grau); white-space: nowrap; }

@media (max-width: 640px) {
  .kopf { height: 60px; }
  nav a { margin-left: 14px; font-size: 0.85rem; }
  .buehne { padding: 48px 0 36px; }
}
