/* Saab Meets Classics – Design-System
   Konzept: Saab-Blau + Griffin-Rot, Cockpit/Night-Panel-Dunkelflächen (Saab-Idee: nur das Nötige leuchtet),
   Tacho- und Turbo-Motive, Chromleisten, Scandinavian Clean. */

/* Farbrahmen der bisherigen Seite: Anthrazit, Saab-Gelb, Pastell-Clubfarben, helles Grau */
:root {
  --saab-blue-900: #222222;      /* Anthrazit – Header, dunkle Flächen */
  --saab-blue-800: #2e2e2e;
  --saab-blue-700: #3a3a3a;
  --saab-blue-accent: #3b6fd6;   /* Linkfarbe */
  --saab-blue-glow: #ffd433;
  --saab-red: #ffd433;           /* Hauptakzent: Saab-Gelb */
  --saab-red-dark: #f2c200;
  --saab-gold: #f2b705;
  --saab-silver: #c9c9c9;
  --saab-chrome: linear-gradient(90deg, #ffd433, #ffe680 45%, #f2b705 60%, #ffd433);
  --saab-graphite: #222222;
  --saab-night: #161616;
  --saab-offwhite: #eeeeee;
  --saab-paper: #ffffff;
  --saab-ink: #222222;
  --saab-line: #dcdcdc;
  --club-picknick: #9aa0f5;
  --club-stuttgart: #98c99a;
  --club-allgaeu: #eb8e8e;
  --club-muenchen: #fdbf8c;
  --club-ueber: #f9ebb0;
  --club-ueber-text: #e6a800;
  --radius: 6px;
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.10);
  --font-head: "Montserrat", "Segoe UI", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--saab-ink);
  background: var(--saab-offwhite);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--saab-blue-900);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
h3 { font-size: 1.2rem; }

a { color: var(--saab-blue-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* Chromleiste unter Überschriften (Zierleisten-Motiv) */
.section-head h2, .hero h1, .page-hero h1 { position: relative; padding-bottom: 20px; }
.section-head h2::after, .hero h1::after, .page-hero h1::after {
  content: "";
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 5px; border-radius: 3px;
  background: var(--saab-chrome);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 2px 4px rgba(0,0,0,.25);
}
.section-head h2::before, .hero h1::before, .page-hero h1::before {
  content: "";
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 34px; height: 3px; background: var(--saab-red); border-radius: 2px;
}

/* Header */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, #0a2350, var(--saab-blue-900));
  border-bottom: 3px solid var(--saab-red);
  box-shadow: 0 3px 0 var(--saab-silver), 0 6px 18px rgba(0,0,0,.35);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand {
  display: flex; align-items: center; gap: 12px;
  color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.brand:hover { text-decoration: none; }
.brand img { height: 38px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); transition: transform .3s; }
.brand:hover img { transform: rotate(-6deg) scale(1.08); }
.brand small { display: block; font-size: .62rem; letter-spacing: .22em; color: var(--saab-gold); font-weight: 600; }

.nav-toggle { display: none; background: none; border: 1px solid var(--saab-silver); border-radius: var(--radius); color: #fff; padding: 8px 10px; font-size: 1.1rem; }

.main-nav ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.main-nav a {
  position: relative; color: #eef1f6; padding: 10px 14px;
  font-weight: 700; font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.main-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--saab-red); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { text-decoration: none; color: #fff; }

/* Buttons */

.btn {
  position: relative; overflow: hidden;
  display: inline-block; padding: 13px 28px; margin: 4px 2px;
  border-radius: var(--radius); background: var(--saab-red); color: var(--saab-ink);
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.9rem; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,212,51,.35);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .5s;
}
.btn:hover { background: var(--saab-red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,212,51,.45); text-decoration: none; color: var(--saab-ink); }
.btn:hover::after { left: 130%; }
.btn-blue { background: var(--saab-blue-900); color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.btn-blue:hover { background: #000; color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid var(--saab-red); box-shadow: none; }
.btn-outline:hover { background: rgba(255,212,51,.15); border-color: var(--saab-red); color: #fff; }
.btn-outline-light { background: #fff; color: var(--saab-ink); border: 2px solid var(--saab-line); box-shadow: none; }
.btn-outline-light:hover { background: var(--saab-offwhite); border-color: var(--saab-red); color: var(--saab-ink); }
.btn-small { padding: 8px 16px; font-size: .8rem; }

/* Hero */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,212,51,.18), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(255,212,51,.12), transparent 50%),
    linear-gradient(160deg, #2a2a2a, var(--saab-blue-900) 55%, var(--saab-night));
  color: #fff; padding: 80px 0 0; text-align: center;
  border-bottom: 5px solid var(--saab-silver);
}
.hero::before {
  /* Speedlines */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(100deg, rgba(255,255,255,.06) 0 2px, transparent 2px 60px);
  animation: speedlines 14s linear infinite; opacity: .6; pointer-events: none;
}
@keyframes speedlines { from { background-position: 0 0; } to { background-position: 900px 0; } }
.hero .container { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block; margin-bottom: 14px; padding: 6px 16px;
  border: 1px solid var(--saab-gold); border-radius: 999px; color: var(--saab-gold);
  font-family: var(--font-head); font-weight: 700; letter-spacing: .22em; font-size: .75rem; text-transform: uppercase;
  animation: fadeUp .8s ease both;
}
.hero h1 { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.5); animation: fadeUp .8s .1s ease both; }
.hero h1 em { font-style: normal; color: var(--saab-blue-glow); }
.hero p { color: #d3dbe8; font-size: 1.2rem; max-width: 660px; margin: 0 auto 1.6em; animation: fadeUp .8s .2s ease both; }
.hero-actions { animation: fadeUp .8s .3s ease both; }
.hero-car { position: relative; max-width: 700px; margin: 40px auto -6px; animation: driveIn 1.4s cubic-bezier(.2,.8,.2,1) both; }
.hero-car img { width: 100%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.55)); }
.hero-road { height: 14px; background: repeating-linear-gradient(90deg, var(--saab-gold) 0 40px, transparent 40px 80px); opacity: .7; animation: road 1.2s linear infinite; }
@keyframes road { from { background-position: 0 0; } to { background-position: 80px 0; } }
@keyframes driveIn { from { transform: translateX(-60px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes fadeUp { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }

.page-hero {
  background: linear-gradient(160deg, var(--saab-blue-900), var(--saab-blue-700));
  color: #fff; padding: 52px 0 40px; text-align: center; border-bottom: 4px solid var(--saab-silver);
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p { color: #d3dbe8; font-size: 1.1rem; margin: 0; }

/* Sections */

.section { padding: 64px 0; }
.section-alt { background: var(--saab-paper); border-top: 1px solid var(--saab-line); border-bottom: 1px solid var(--saab-line); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-head p { color: #5a5f66; font-size: 1.08rem; }

/* Night Panel – dunkle Sektion, Saab-Cockpit-Idee: nur das Wichtige leuchtet */
.night-panel {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(90,160,255,.18), transparent 60%),
    var(--saab-night);
  color: #cfd6e0;
  border-top: 4px solid var(--saab-red);
}
.night-panel h2, .night-panel h3 { color: #fff; }
.night-panel .section-head p { color: #9aa5b5; }

/* Reveal-Animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Cards */

.grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }

.card {
  position: relative; background: var(--saab-paper);
  border: 1px solid var(--saab-line); border-top: 4px solid var(--saab-blue-accent);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: 0 14px 30px rgba(6,26,63,.22); transform: translateY(-5px); text-decoration: none; }
.card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform .5s; }
.card:hover img { transform: scale(1.04); }
.card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-meta { color: #6b6b6b; font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 6px; }
.card h3 { margin-bottom: 8px; }
.card p { color: #4b4f56; font-size: .95rem; }

/* Club-Karten: farbig gefüllte Blöcke wie auf der bisherigen Seite */
.card[class*="club-"] { border: 2px solid rgba(255,255,255,.7); box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.card[class*="club-"] h3, .card[class*="club-"] p, .card[class*="club-"] .card-meta { color: #fff; }
.card[class*="club-"] h3 { font-size: 1.5rem; text-transform: uppercase; letter-spacing: .02em; }
.card[class*="club-"] .card-meta { opacity: .9; }
.card.club-picknick { background: var(--club-picknick); border-top-color: var(--club-picknick); }
.card.club-stuttgart-alb { background: var(--club-stuttgart); border-top-color: var(--club-stuttgart); }
.card.club-allgaeu-bodensee { background: var(--club-allgaeu); border-top-color: var(--club-allgaeu); }
.card.club-muenchen { background: var(--club-muenchen); border-top-color: var(--club-muenchen); }
.card.club-ueberregional { background: var(--club-ueber); border-top-color: var(--club-ueber); }
.card.club-ueberregional h3, .card.club-ueberregional p, .card.club-ueberregional .card-meta { color: var(--club-ueber-text); }

/* Gauges / Statistik (Tacho-Motiv) */
.gauges { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.gauge { text-align: center; }
.gauge-dial {
  width: 130px; height: 130px; margin: 0 auto 12px; border-radius: 50%;
  border: 4px solid var(--saab-silver);
  background:
    conic-gradient(from 210deg, var(--saab-red) 0 30deg, var(--saab-blue-glow) 30deg 250deg, #1e2530 250deg 360deg),
    var(--saab-night);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 10px var(--saab-night), inset 0 0 0 12px rgba(255,255,255,.08), 0 8px 24px rgba(0,0,0,.5);
  position: relative;
}
.gauge-dial::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--saab-red); box-shadow: 0 0 10px var(--saab-red); bottom: 14px; }
.gauge-val { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: #fff; text-shadow: 0 0 14px var(--saab-blue-glow); }
.gauge-label { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--saab-silver); font-weight: 700; }

/* Herz-Sektion */
.heart { display: inline-block; color: var(--saab-red); animation: beat 1.6s ease-in-out infinite; transform-origin: center; }
@keyframes beat { 0%, 100% { transform: scale(1); } 14% { transform: scale(1.25); } 28% { transform: scale(1); } 42% { transform: scale(1.18); } }

/* Saab-Geschichte */
.saab-history .history-grid { display: grid; gap: 44px; grid-template-columns: 1.4fr 1fr; align-items: start; }
.history-lead { font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--saab-blue-800); }
.saab-history p { color: #3a3f46; }
.history-facts { display: flex; flex-direction: column; gap: 18px; border-left: 4px solid var(--saab-red); padding-left: 22px; position: relative; }
.fact { display: flex; flex-direction: column; gap: 2px; position: relative; }
.fact::before { content: ""; position: absolute; left: -29px; top: 10px; width: 10px; height: 10px; border-radius: 50%; background: var(--saab-red); box-shadow: 0 0 0 4px var(--saab-paper), 0 0 0 5px var(--saab-red); }
.fact-num { font-family: var(--font-head); font-weight: 700; font-size: 1.6rem; color: var(--saab-blue-accent); }
.fact span:last-child { color: #4b4f56; font-size: .95rem; }

/* Termine */

.termine-toolbar { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.club-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-block; padding: 7px 14px; border-radius: 999px; border: 2px solid var(--saab-line);
  background: #fff; color: var(--saab-blue-800); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em; transition: all .2s;
}
.chip::before { content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; background: var(--saab-blue-800); vertical-align: middle; }
.chip-picknick::before { background: var(--club-picknick); }
.chip-stuttgart-alb::before { background: var(--club-stuttgart); }
.chip-allgaeu-bodensee::before { background: var(--club-allgaeu); }
.chip-muenchen::before { background: var(--club-muenchen); }
.chip-ueberregional::before { background: var(--club-ueber-text); }
.chip:hover { border-color: var(--saab-blue-accent); text-decoration: none; transform: translateY(-1px); }
.chip-active { background: var(--saab-blue-900); color: #fff; border-color: var(--saab-blue-900); }

.view-switch { display: inline-flex; border: 2px solid var(--saab-blue-900); border-radius: var(--radius); overflow: hidden; }
.view-switch a { padding: 8px 16px; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--saab-blue-900); font-size: .85rem; }
.view-switch a.active { background: var(--saab-blue-900); color: #fff; }
.view-switch a:hover { text-decoration: none; background: var(--saab-offwhite); }
.view-switch a.active:hover { background: var(--saab-blue-900); }

.cal-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.cal-nav h2 { margin: 0; font-size: 1.6rem; }

.calendar {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px;
  background: var(--saab-paper); border: 1px solid var(--saab-line); border-radius: var(--radius); padding: 8px;
  box-shadow: var(--shadow-card);
}
.cal-head { text-align: center; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; color: var(--saab-blue-800); padding: 8px 0; border-bottom: 2px solid var(--saab-line); }
.cal-day { min-width: 0; min-height: 92px; padding: 6px; border-radius: 4px; background: #fff; border: 1px solid #eee8db; display: flex; flex-direction: column; gap: 3px; }
.cal-empty { background: transparent; border-color: transparent; }
.cal-weekend { background: #faf7f0; }
.cal-num { font-family: var(--font-head); font-weight: 700; color: #6b7280; font-size: .9rem; }
.cal-has .cal-num { color: var(--saab-blue-900); }
.cal-today { border-color: var(--saab-gold); box-shadow: inset 0 0 0 2px var(--saab-gold); background: #fffbe6; }
.cal-today .cal-num { color: var(--saab-gold); }
.cal-event {
  display: block; padding: 3px 6px; border-radius: 3px; font-size: .74rem; font-weight: 600; line-height: 1.25;
  color: #fff; background: var(--saab-blue-800); border-left: 3px solid rgba(0,0,0,.25);
  overflow: hidden; overflow-wrap: anywhere; transition: transform .15s;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.cal-event:hover { text-decoration: none; transform: scale(1.03); }
.ev-picknick { background: var(--club-picknick); color: #fff; }
.ev-stuttgart-alb { background: var(--club-stuttgart); color: #fff; }
.ev-allgaeu-bodensee { background: var(--club-allgaeu); color: #fff; }
.ev-muenchen { background: var(--club-muenchen); color: #fff; }
.ev-ueberregional { background: var(--club-ueber); color: var(--club-ueber-text); }
.cal-list-head { margin: 40px 0 6px; text-transform: uppercase; letter-spacing: .08em; color: var(--saab-blue-800); }
.empty-hint { text-align: center; color: #777; margin-top: 24px; }

.termin-list { margin-top: 8px; }
.termin-item { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--saab-line); scroll-margin-top: 90px; }
.termin-item:target { background: #fff8e6; outline: 2px solid var(--saab-gold); border-radius: var(--radius); padding-left: 12px; padding-right: 12px; }
.termin-datum {
  flex: 0 0 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: radial-gradient(circle at 50% 35%, var(--saab-blue-700), var(--saab-blue-900) 75%);
  color: #fff; border-radius: 50%; border: 4px solid var(--saab-silver);
  box-shadow: inset 0 0 0 2px var(--saab-blue-900), 0 6px 18px rgba(6,26,63,.35);
  font-family: var(--font-head); position: relative;
}
.termin-datum::after { content: ""; position: absolute; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--saab-red); box-shadow: 0 0 8px var(--saab-red); }
.termin-datum .tag { font-size: 1.9rem; font-weight: 700; line-height: 1; display: block; }
.termin-datum .monat { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--saab-silver); }
.termin-body { flex: 1; }
.termin-club {
  display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
  color: #fff; background: var(--saab-blue-800); padding: 3px 10px; border-radius: 999px; margin-bottom: 8px;
}
.termin-club.club-picknick { background: var(--club-picknick); }
.termin-club.club-stuttgart-alb { background: var(--club-stuttgart); }
.termin-club.club-allgaeu-bodensee { background: var(--club-allgaeu); }
.termin-club.club-muenchen { background: var(--club-muenchen); }
.termin-club.club-ueberregional { background: var(--club-ueber); color: var(--club-ueber-text); }
.termin-meta { color: #5a5f66; font-weight: 600; }

.toolbar-right { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.ical-hint { font-size: .88rem; color: #6b7280; margin: -12px 0 24px; }
.termin-actions { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

/* Links */
.link-group { margin-bottom: 48px; }
.link-group-head { border-left: 5px solid var(--saab-red); padding-left: 16px; margin-bottom: 18px; }
.link-group-head h2 { font-size: 1.5rem; margin-bottom: 2px; }
.link-group-head p { margin: 0; color: #5a5f66; }
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.link-list a {
  display: flex; flex-direction: column; gap: 2px; padding: 14px 16px;
  background: var(--saab-paper); border: 1px solid var(--saab-line); border-left: 4px solid var(--saab-blue-accent);
  border-radius: var(--radius); color: inherit; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.link-list a:hover { text-decoration: none; transform: translateX(4px); box-shadow: var(--shadow-card); border-left-color: var(--saab-red); }
.link-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--saab-blue-900); }
.link-host { font-size: .8rem; color: var(--saab-blue-accent); letter-spacing: .02em; }
.link-info { font-size: .88rem; color: #5a5f66; }

/* Team */
.team-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.team-card { text-align: center; align-items: center; padding-top: 22px; }
.team-card img { width: 120px; height: 120px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; border: 4px solid var(--saab-red); }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--saab-blue-900); color: var(--saab-red); font-family: var(--font-head); font-weight: 800; font-size: 3rem;
  border: 4px solid var(--saab-red);
}
.team-card .card-body { align-items: center; }
.team-card h3 { margin-bottom: 2px; }

/* Rechtstexte */
.legal h2 { font-size: 1.4rem; margin-top: 2em; }
.legal h3 { font-size: 1.1rem; margin-top: 1.4em; }
.legal h4 { font-size: 1rem; margin-top: 1em; }
.legal p, .legal li { color: #3a3f46; }

/* Footer */

.site-footer {
  background: linear-gradient(180deg, var(--saab-graphite), var(--saab-night));
  color: #cfd3d8; padding: 48px 0 24px; margin-top: 48px; border-top: 4px solid var(--saab-red);
}
.site-footer a { color: #fff; }
.site-footer h3 { color: #fff; text-transform: uppercase; letter-spacing: .1em; font-size: 1rem; }
.footer-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 24px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; font-size: .85rem; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

/* Forms (Admin) */

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--saab-line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; background: #fff;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--saab-line); }
.table th { background: var(--saab-offwhite); font-family: var(--font-head); text-transform: uppercase; font-size: .8rem; letter-spacing: .04em; }
.badge { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.badge-live { background: #dff3e3; color: #1c7a3b; }
.badge-draft { background: #f2e6c9; color: #8a6a12; }
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 20px; }
.alert-error { background: #fbe4e4; color: #8a1f1f; border: 1px solid #eab; }
.alert-ok { background: #dff3e3; color: #1c7a3b; border: 1px solid #9cd; }

/* Mobile */

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--saab-blue-900); border-bottom: 3px solid var(--saab-red); }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 10px 16px 18px; gap: 2px; }
  .main-nav a { display: block; padding: 12px 10px; }
  .main-nav a::after { display: none; }
  .termin-item { flex-direction: column; gap: 12px; }
  .termin-datum { flex: none; width: 84px; height: 84px; }
  .saab-history .history-grid { grid-template-columns: 1fr; }
  .cal-day { min-height: 56px; padding: 4px; }
  .cal-event { font-size: 0; padding: 0; height: 8px; border-radius: 4px; border-left: 0; }
  .cal-nav h2 { font-size: 1.2rem; }
  .cal-nav .btn { padding: 8px 12px; font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
