/* ============================================================
    VW T3 Joker – Adventure Style
    ============================================================ */

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--braun);
    color: var(--weiss);
    padding: 8px;
    z-index: 1000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* ── KI Wissensassistent ──────────────────────────────────── */
.ki-container {
  max-width: 780px;
  margin: 40px auto;
}
.ki-verlauf {
  background: var(--grau-1);
  border: 1px solid var(--grau-2);
  border-radius: var(--radius-l);
  padding: 24px;
  min-height: 340px;
  max-height: 520px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.ki-msg { display: flex; }
.ki-msg--user { justify-content: flex-end; }
.ki-msg--bot  { justify-content: flex-start; }
.ki-bubble {
  max-width: 80%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: .95rem;
  line-height: 1.55;
}
.ki-msg--user .ki-bubble {
  background: var(--gruen);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ki-msg--bot .ki-bubble {
  background: #fff;
  border: 1px solid var(--grau-2);
  color: var(--text-1);
  border-bottom-left-radius: 4px;
}
.ki-loading .ki-bubble { opacity: .6; font-style: italic; }
.ki-eingabe-bereich {
  display: flex;
  gap: 10px;
}
.ki-eingabe {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid var(--grau-2);
  border-radius: 999px;
  font-size: 1rem;
  outline: none;
  transition: border-color .2s;
}
.ki-eingabe:focus { border-color: var(--gruen); }
.ki-btn {
  padding: 12px 24px;
  background: var(--gruen);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.ki-btn:hover:not(:disabled) { background: var(--gruen-h); }
.ki-btn:disabled { opacity: .5; cursor: not-allowed; }
.ki-hinweis {
  font-size: .8rem;
  color: var(--text-2);
  text-align: center;
  margin-top: 12px;
}
:root {
  /* ── NEW PALETTE: Werkstatt-Abenteuer Logbuch ──────────────────── */
  --gruen:      #6B3E2E;     /* Rust Dark (primary) */
  --gruen-d:    #4A2E1A;     /* Rust Darker (accents) */
  --gruen-h:    #8A5542;     /* Rust Light (hover) */
  --braun:      #A45532;     /* Rust Medium (secondary) */
  --braun-d:    #7A3F22;     /* Rust Medium Dark */
  --braun-h:    #D4844D;     /* Rust Light (hover) */
  --gold:       #E8600A;     /* Accent Orange (vintage signs) */
  --gold-h:     #C41E3A;     /* Accent Red (attention) */

  --header-bg:  #3D2416;     /* Dark rust header */
  --header-bg2: #5A3A28;     /* Medium rust gradient */

  --weiss:      #FFFFFF;
  --creme:      #F5EBE0;     /* Warm cream (not pure white) */
  --grau-1:     #F9F6F2;     /* Very light cream */
  --grau-2:     #E8DED4;     /* Light cream-gray */
  --grau-3:     #D4C4B6;     /* Medium gray */
  --grau-4:     #A89A8E;     /* Darker gray */
  --grau-5:     #8A7A6E;     /* Deep gray */
  --text:       #2A1F1A;     /* Dark text */
  --text-2:     #7A6A5F;     /* Secondary text */

  /* ── TYPOGRAPHY: Distinctive ──────────────────── */
  --font-display: 'Courier Prime', 'Courier New', 'IBM Plex Mono', monospace;
  --font-body:    'Georgia', 'Crimson Text', 'Times New Roman', serif;
  --font-mono:    'Roboto Mono', 'Courier Prime', monospace;
  --font:         var(--font-body);

  --radius:     12px;
  --radius-l:   18px;
  --radius-xl:  24px;
  --shadow:     0 4px 12px rgba(0,0,0,.12);
  --shadow-h:   0 12px 32px rgba(0,0,0,.25);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--creme);
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.01) 2px, rgba(0,0,0,0.01) 4px);
  -webkit-font-smoothing: antialiased;
}

/* Display font for headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.04em;
}

/* Mono font for technical data */
.stat-badge, .badge, code, .data-table, .badge-gold {
  font-family: var(--font-mono);
}

a { color: var(--braun); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.site-main  { padding: 0 0 100px; }

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--braun);
    color: var(--weiss);
    padding: 8px;
    z-index: 1000;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}

/* Screen reader text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Galerie */
.vwt3-galerie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.vwt3-galerie-item {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s;
}
.vwt3-galerie-item:hover {
    transform: scale(1.03);
}
.vwt3-galerie-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Design-Optionen: Akzentfarbe */
:root {
    --theme-farbe: #7A5230;
}
.btn-primary {
    background: var(--theme-farbe);
}

/* Seiten mit Hintergrundbild */
.page-with-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}
.page-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
}
.page-with-bg .site-main {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}
.page-with-bg .single-article {
    background: rgba(255,255,255,0.85);
    padding: 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  background: linear-gradient(135deg, var(--header-bg) 0%, var(--header-bg2) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 8px;
}

/* ── Branding ───────────────────────────────────────────── */
.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.site-title {
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.site-subtitle {
  font-size: .6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  line-height: 1;
}

/* ── Navigation (center, desktop) ───────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.main-nav a {
  display: block;
  color: rgba(255,255,255,.88);
  padding: 6px 12px;
  border-radius: 980px;
  font-size: .8rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.main-nav a:hover { background: rgba(255,255,255,.15); color: #fff; }
.main-nav .current-menu-item > a { background: rgba(255,255,255,.2); color: #fff; }

.nav-actions {
  display: flex;
  gap: 4px;
  margin-left: 6px;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 8px;
}
.nav-action-btn {
  padding: 5px 12px;
  background: var(--gold);
  color: #fff !important;
  border-radius: 980px;
  font-size: .78rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.nav-action-btn:hover {
  background: var(--gold-h) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── Header Right ───────────────────────────────────────── */
.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ── Icon Buttons (Lupe, Instagram) ─────────────────────── */
.header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 10px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.header-icon-btn:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.05);
}
.header-icon-btn svg { display: block; }
.ig-btn { text-decoration: none; }

/* ── Search Overlay ─────────────────────────────────────── */
.search-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 16px 0 20px;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.search-overlay.open { display: block; }
.search-overlay-inner { max-width: 600px; }
.search-overlay-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 980px;
  padding: 0 16px;
  transition: border-color var(--transition);
}
.search-overlay-box:focus-within {
  border-color: var(--gold);
}
.search-overlay-icon { color: rgba(255,255,255,.5); flex-shrink: 0; }
.search-overlay-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: .95rem;
  font-family: var(--font);
  padding: 12px 0;
}
.search-overlay-input::placeholder { color: rgba(255,255,255,.4); }
.search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: rgba(255,255,255,.15);
  border: none;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.search-close:hover { background: rgba(255,255,255,.25); }

.search-results {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-l);
  max-height: 300px;
  overflow-y: auto;
  margin-top: 12px;
  display: none;
}
.search-results a {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.search-results a:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── User Menu ──────────────────────────────────────────── */
.user-menu { position: relative; }
.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,.1);
  border: none;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition);
  white-space: nowrap;
}
.user-btn:hover { background: rgba(255,255,255,.2); }
.user-btn svg { flex-shrink: 0; }

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--weiss);
  border: 1px solid var(--grau-2);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-h);
  min-width: 220px;
  padding: 6px;
  z-index: 200;
}
.user-dropdown.open { display: block; }
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
}
.user-dropdown a:hover { background: var(--grau-1); color: var(--braun); }
.dropdown-icon { font-size: 1rem; flex-shrink: 0; }
.user-dropdown-divider { height: 1px; background: var(--grau-2); margin: 4px 0; }

/* ── Header Status Bar ──────────────────────────────────── */
.header-status-bar {
  background: rgba(0,0,0,.15);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 6px 0;
  text-align: center;
}
.vwt3-header-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 980px;
}
.vwt3-header-status-icon { font-size: .85rem; line-height: 1; }
.vwt3-header-status-text {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .01em;
}

/* ── Desktop Only ───────────────────────────────────────── */
.desktop-only { display: inline-flex; }

/* ── Burger ─────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 820px) {
  .desktop-only { display: none !important; }

  .header-inner { gap: 6px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 56px; left: 0; right: 0;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 12px 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    z-index: 150;
  }
  .main-nav.open { display: flex; flex-direction: column; align-items: stretch; }
  .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
  .main-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--radius);
    font-size: .9rem;
  }
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .main-nav.open .nav-actions {
    display: flex;
    flex-direction: column;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.12);
    width: 100%;
    gap: 6px;
  }
  .nav-action-btn { text-align: center; padding: 10px; font-size: .88rem; }

  .user-btn { padding: 6px 10px; }
  .header-icon-btn { width: 34px; height: 34px; }

  .site-branding-text { display: none; }
}

/* ── Bus Banner (alle Unterseiten) ─────────────────────── */
.bus-banner {
  position: relative;
  height: auto;
  min-height: 260px;
  overflow: hidden;
}
.bus-banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.bus-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,14,4,.45) 0%,
    rgba(0,0,0,.1) 55%,
    rgba(250,250,246,.95) 100%
  );
}
@media (max-width: 700px) {
  .bus-banner { height: 180px; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, var(--header-bg) 0%, #2C1205 25%, #5A3010 60%, #7A5230 100%);
  padding: 88px 0 76px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; }
.hero-image { flex-shrink: 0; }
.hero-bus-graphic {
  font-size: 7rem;
  line-height: 1;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.4));
}

.hero-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-titel {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.05em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 480px;
  line-height: 1.55;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 700px) {
  .hero { padding: 56px 0 48px; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-titel { font-size: 2.4rem; }
  .hero-bus-graphic { font-size: 4.5rem; }
}

/* ── Buttons — unified pill system ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 980px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  text-decoration: none;
  letter-spacing: -.01em;
  border: 1.5px solid transparent;
  font-family: var(--font);
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(.98); opacity: .9; }

.btn-primary {
  background: var(--braun);
  color: #fff;
  box-shadow: 0 2px 10px rgba(122,82,48,.35);
}
.btn-primary:hover { background: var(--braun-d); color: #fff; box-shadow: 0 4px 18px rgba(122,82,48,.4); }

.btn-secondary {
  background: var(--braun);
  color: #fff;
  box-shadow: 0 2px 10px rgba(107,66,38,.3);
}
.btn-secondary:hover { background: var(--braun-d); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--grau-3);
}
.btn-outline:hover { background: var(--grau-1); color: var(--braun); border-color: var(--braun); }

/* Hero context overrides */
.hero .btn-primary {
  background: var(--gold);
  box-shadow: 0 2px 10px rgba(212,137,26,.4);
}
.hero .btn-primary:hover { background: var(--gold-h); color: #fff; }
.hero .btn-outline {
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
}
.hero .btn-outline:hover { background: rgba(255,255,255,.18); color: #fff; border-color: rgba(255,255,255,.6); }

.btn-submit {
  background: var(--braun);
  color: #fff;
  padding: 13px 28px;
  border-radius: 980px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  border: none;
  box-shadow: 0 2px 10px rgba(122,82,48,.35);
  transition: background var(--transition), transform var(--transition);
}
.btn-submit:hover { background: var(--braun-d); transform: scale(1.02); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── Statistik ──────────────────────────────────────────── */
.vwt3-statistik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--grau-2);
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--grau-2);
}
.vwt3-stat-kachel {
  background: var(--weiss);
  padding: 28px 20px;
  text-align: center;
  transition: background var(--transition);
}
.vwt3-stat-kachel:hover { background: var(--grau-1); }
.vwt3-stat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.vwt3-stat-zahl {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.vwt3-stat-name {
  font-size: .7rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Sektionen ──────────────────────────────────────────── */
.sektion { padding: 80px 0; }
.sektion-alt { background: var(--grau-1); }
.sektion-stats { padding: 0; }

.sektion-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.sektion-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.sektion-titel {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.04em;
}

/* ── Karten ─────────────────────────────────────────────── */
.karten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}

/* Masonry-style offset for alternating cards */
.karte:nth-child(2n) {
  transform: translateY(40px);
}
.karte:nth-child(3n) {
  transform: translateY(20px);
}
}
.karte {
  background: var(--creme);
  border-radius: var(--radius);
  box-shadow:
    4px 6px 12px rgba(0,0,0,.15),
    inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.karte-bild { overflow: hidden; border-radius: var(--radius-l) var(--radius-l) 0 0; }
.karte:hover { transform: rotate(1deg) translateY(-6px); box-shadow:
    6px 12px 24px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.8); }
.karte-bild img { width: 100%; height: 200px; object-fit: cover; }
.karte-bild-placeholder {
  background: linear-gradient(135deg, #7A5230, #4A2E10);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.karte-body { padding: 20px 22px 24px; }
.karte-datum { font-size: .75rem; color: var(--text-2); margin-bottom: 6px; font-weight: 500; }
.karte-titel { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -.02em; }
.karte-titel a { color: inherit; }
.karte-titel a:hover { color: var(--braun-d); }
.karte-ort { font-size: .82rem; color: var(--text-2); margin-bottom: 10px; }
.karte-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 600;
  background: var(--grau-1);
  color: var(--text-2);
}
.badge-gold  { background: #FEF3DC; color: #7a4f00; }
.badge-gruen { background: #E8F8EE; color: #1a6b35; }

/* ── Wartungsbuch Liste ─────────────────────────────────── */
.vwt3-liste { list-style: none; }
.vwt3-liste-item { border-bottom: 1px solid var(--grau-2); }
.vwt3-liste-item:last-child { border-bottom: none; }
.vwt3-liste-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 6px;
  color: var(--text);
  transition: color var(--transition);
}
.vwt3-liste-item a:hover { color: var(--braun-d); }
.vwt3-liste-item .vwt3-datum { font-size: .76rem; color: var(--text-2); min-width: 78px; flex-shrink: 0; font-weight: 500; }
.vwt3-liste-item .vwt3-titel { flex: 1; font-weight: 600; font-size: .92rem; }
.vwt3-liste-item .vwt3-km,
.vwt3-liste-item .vwt3-kosten { font-size: .8rem; color: var(--braun); font-weight: 700; white-space: nowrap; }

/* ── Abenteuer Kacheln ──────────────────────────────────── */
.vwt3-abenteuer-kacheln {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.vwt3-abenteuer-kachel {
  background: var(--weiss);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--grau-2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.vwt3-abenteuer-kachel:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.vwt3-abenteuer-kachel .vwt3-kachel-bild img { width: 100%; height: 200px; object-fit: cover; }
.vwt3-abenteuer-kachel .vwt3-kachel-bild-placeholder {
  height: 160px;
  background: linear-gradient(135deg, #4A2E10, #7A5230);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.vwt3-abenteuer-kachel .vwt3-kachel-inhalt { padding: 16px 18px; }
.vwt3-abenteuer-kachel h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; letter-spacing: -.02em; }
.vwt3-abenteuer-kachel h3 a { color: var(--text); }
.vwt3-abenteuer-kachel h3 a:hover { color: var(--braun-d); }
.vwt3-abenteuer-kachel p { font-size: .8rem; color: var(--text-2); margin: 3px 0; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 48px 0 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--grau-2);
}
.page-titel {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.05em;
}
.page-sub { color: var(--text-2); margin-top: 8px; font-size: .95rem; }

/* ── Stat Badges ─────────────────────────────────────────── */
.stat-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  background: var(--grau-1);
  color: var(--text-2);
  border: 1px solid var(--grau-2);
}
.stat-badge-gold  { background: #FEF3DC; color: #7a4f00; border-color: #f3d88a; }
.stat-badge-gruen { background: #E8F8EE; color: #1a6b35; border-color: #86efac; }

/* ── Filter Tags ─────────────────────────────────────────── */
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  background: var(--grau-1);
  color: var(--text-2);
  border: 1.5px solid var(--grau-2);
  transition: all var(--transition);
}
.filter-tag:hover { border-color: var(--braun); color: var(--braun); }
.filter-tag.active { background: var(--braun); color: #fff; border-color: var(--braun); }
.filter-tag-count { opacity: .6; font-weight: 400; font-size: .78rem; }

/* ── Data Table ──────────────────────────────────────────── */
.table-wrap {
  background: var(--weiss);
  border-radius: var(--radius-l);
  border: 1px solid var(--grau-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}
.data-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.data-table thead { background: linear-gradient(135deg, var(--header-bg), var(--header-bg2)); border-bottom: 2px solid rgba(255,255,255,.1); }
.data-table thead th {
  padding: 12px 16px;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: left;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.data-table tbody tr { border-bottom: 1px solid var(--grau-2); transition: background var(--transition); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: var(--grau-1); }
.data-table td { padding: 14px 16px; vertical-align: middle; }
.td-datum { white-space: nowrap; color: var(--text-2); font-size: .8rem; font-weight: 500; }
.td-title a { font-weight: 600; color: var(--text); }
.td-title a:hover { color: var(--braun-d); }
.td-num  { font-weight: 600; white-space: nowrap; color: var(--text-2); }
.td-cost { font-weight: 700; color: var(--braun); white-space: nowrap; }
.text-right  { text-align: right; }
.text-center { text-align: center; }

/* ── Empty State ─────────────────────────────────────────── */
.empty-state-box {
  text-align: center;
  padding: 80px 24px;
  background: var(--grau-1);
  border-radius: var(--radius-xl);
  border: 1px solid var(--grau-2);
}
.empty-state-box .empty-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state-box p { color: var(--text-2); font-size: 1rem; margin-bottom: 24px; }

/* ── Single Article ──────────────────────────────────────── */
.single-article { max-width: 720px; margin: 0 auto; padding-top: 40px; }

.breadcrumb {
  font-size: .8rem;
  color: var(--text-2);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb span { color: var(--grau-3); }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--braun); }

.post-header { margin-bottom: 32px; }
.post-meta-leiste { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.post-titel {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -.05em;
  margin-bottom: 16px;
}

.post-thumbnail {
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 32px;
}
.post-thumbnail img { width: 100%; max-height: 480px; object-fit: cover; }

.detail-box {
  background: var(--grau-1);
  border-radius: var(--radius-l);
  padding: 24px 28px;
  margin-bottom: 20px;
  border: 1px solid var(--grau-2);
}
.detail-box h3 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grau-2);
}
.detail-box-highlight { 
    border-left: 3px solid var(--gold);
    background: rgba(255,255,255,0.5);
}
.detail-box-camp      { border-left: 3px solid var(--gruen); }
.detail-box-warn      { border-left: 3px solid #d14343; }

.detail-tabelle { width: 100%; border-collapse: collapse; font-size: .9rem; }
.detail-tabelle tr:not(:last-child) td { border-bottom: 1px solid var(--grau-2); }
.detail-tabelle td { padding: 10px 4px; vertical-align: top; }
.detail-tabelle td:first-child { font-weight: 600; color: var(--text-2); width: 200px; font-size: .85rem; }

.post-content { line-height: 1.8; }
.post-content h2, .post-content h3 { color: var(--text); margin: 1.4em 0 .6em; font-weight: 700; letter-spacing: -.02em; }
.post-content p { margin-bottom: 1em; color: var(--text-2); }

.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--grau-2);
}

/* ── Frontend Formulare ─────────────────────────────────── */
.vwt3-form-wrap {
  background: var(--weiss);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-h);
  max-width: 720px;
  margin: 0 auto 80px;
  border: 1px solid var(--grau-2);
}
.vwt3-form { max-width: 100%; }

.form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--grau-2);
}
.form-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.form-section h3 {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-2);
  margin-bottom: 20px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group-full { grid-column: 1 / -1; }

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--grau-2);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--grau-1);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--braun);
  background: var(--weiss);
  box-shadow: 0 0 0 4px rgba(122,82,48,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.toggle-group { display: flex; gap: 12px; flex-wrap: wrap; }
.toggle-option { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.toggle-option input[type="radio"] { accent-color: var(--braun); width: 17px; height: 17px; flex-shrink: 0; }
.toggle-option span { font-size: .9rem; font-weight: 500; }

.form-actions { display: flex; gap: 12px; align-items: center; padding-top: 8px; }
.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-msg-error   { background: #FFF0EE; color: #b91c1c; border: 1px solid #fca5a5; }
.form-msg-success { background: #EDFBF3; color: #166534; border: 1px solid #86efac; }

/* ── File Upload ─────────────────────────────────────────── */
.file-upload-area {
  position: relative;
  border: 2px dashed var(--grau-3);
  border-radius: var(--radius-l);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  background: var(--grau-1);
}
.file-upload-area:hover,
.file-upload-area.drag-over {
  border-color: var(--gruen);
  background: rgba(46,107,26,.05);
}
.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.file-upload-text { font-size: .92rem; font-weight: 600; color: var(--text); display: block; }
.file-upload-hint { display: block; font-size: .76rem; color: var(--text-2); margin-top: 4px; }
.file-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.file-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--grau-2);
  flex-shrink: 0;
}
.file-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Links Seite ─────────────────────────────────────────── */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.link-karte {
  background: var(--weiss);
  border-radius: var(--radius-l);
  border: 1px solid var(--grau-2);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.link-karte:hover { transform: translateY(-3px); box-shadow: var(--shadow-h); border-color: var(--braun); }
.link-karte-icon { font-size: 2rem; }
.link-karte-kategorie {
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--braun);
}
.link-karte-titel { font-size: 1rem; font-weight: 700; color: var(--text); }
.link-karte-beschreibung { font-size: .84rem; color: var(--text-2); line-height: 1.55; flex: 1; }
.link-karte-url {
  font-size: .78rem;
  color: var(--braun);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  word-break: break-all;
}
.link-karte-url::after { content: '→'; flex-shrink: 0; }

/* ── Instagram ──────────────────────────────────────────── */
.instagram-grid-wrap { margin-top: 8px; }
.instagram-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.instagram-grid a { border-radius: var(--radius); overflow: hidden; display: block; }
.instagram-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform var(--transition); }
.instagram-grid a:hover img { transform: scale(1.05); }
.instagram-placeholder {
  background: var(--grau-1);
  border-radius: var(--radius-l);
  padding: 48px 24px;
  text-align: center;
  border: 1px solid var(--grau-2);
}
.instagram-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.instagram-link:hover { color: var(--braun); }
.instagram-icon { font-size: 2.2rem; }
.instagram-sub  { font-size: .82rem; font-weight: 500; color: var(--braun); }
.instagram-hint { font-size: .78rem; color: var(--text-2); margin-top: 8px; }

/* ── Sidebar ────────────────────────────────────────────── */
.sidebar .widget {
  background: var(--grau-1);
  border-radius: var(--radius-l);
  border: 1px solid var(--grau-2);
  padding: 20px;
  margin-bottom: 16px;
}
.sidebar .widget-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grau-2);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 980px;
  font-weight: 600;
  font-size: .85rem;
  border: 1.5px solid var(--grau-2);
  background: var(--weiss);
  color: var(--text-2);
  transition: all var(--transition);
}
.pagination a:hover { background: var(--braun); color: #fff; border-color: var(--braun); }
.pagination .current { background: var(--braun); color: #fff; border-color: var(--braun); }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--header-bg);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-bus { font-size: 1.8rem; }
.footer-brand strong { font-weight: 700; display: block; color: rgba(255,255,255,.9); font-size: .95rem; }
.footer-brand span   { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: rgba(255,255,255,.55); font-size: .85rem; font-weight: 500; transition: color var(--transition); }
.footer-nav a:hover { color: rgba(255,255,255,.9); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── Lustige Hover-Tooltips ─────────────────────────────── */
.hero-bus-graphic {
    cursor: default;
    position: relative;
}
.hero-bus-graphic::after {
    content: 'Offiziell nicht straßenzugelassen. Aber wir tun so.';
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--header-bg, #1C0E04);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 980px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, bottom .3s;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.hero-bus-graphic:hover::after {
    opacity: 1;
    bottom: 32px;
}

/* ── Karte Hover Sprüche ────────────────────────────────── */
.karte {
    position: relative;
}
.karte-bild-placeholder::after,
.vwt3-abenteuer-kachel .vwt3-kachel-bild-placeholder::after {
    content: none;
}
.karte .karte-body .karte-titel a::after {
    content: none;
}

/* ── Login Button Tooltip ───────────────────────────────── */
.login-btn {
    position: relative;
}
.login-btn::after {
    content: '🔑 Motor starten...';
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--header-bg, #1C0E04);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 980px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
    z-index: 999;
}
.login-btn:hover::after { opacity: 1; }

/* ── Footer Bus Tooltip ─────────────────────────────────── */
.footer-bus {
    display: inline-block;
    transition: transform .3s;
    cursor: default;
    position: relative;
}
.footer-bus::after {
    content: 'Danke fürs Vorbeischauen! 🚐';
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--header-bg, #1C0E04);
    color: rgba(255,255,255,.9);
    font-size: .8rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 980px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
    z-index: 999;
}
.footer-bus:hover::after { opacity: 1; }
.footer-bus:hover {
    transform: rotate(-8deg) scale(1.15);
}

/* ── PHASE 2: Animations & Motion ────────────────────────── */

/* Filmstrip-reveal page load */
@keyframes filmstrip-reveal {
  0% { clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%); opacity: 0; }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; }
}

main { animation: filmstrip-reveal 0.7s ease-out; }

/* Card hover: rotate and lift */
@keyframes card-pin {
  0% { transform: rotate(0deg) translateY(0px); }
  100% { transform: rotate(2deg) translateY(-8px); }
}

.karte {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), box-shadow 0.3s ease;
  box-shadow: var(--shadow);
}

.karte:hover {
  animation: card-pin 0.3s ease-out forwards;
  box-shadow: var(--shadow-h);
}

/* Float animation for hero */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.bus-badge, .hero-visual svg {
  animation: float 3s ease-in-out infinite;
}

/* Staggered reveal for stats */
@keyframes stat-reveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.stat-badge {
  animation: stat-reveal 0.6s ease-out forwards;
}

.stat-badge:nth-child(1) { animation-delay: 0.1s; }
.stat-badge:nth-child(2) { animation-delay: 0.2s; }
.stat-badge:nth-child(3) { animation-delay: 0.3s; }
.stat-badge:nth-child(4) { animation-delay: 0.4s; }

/* Smooth transitions */
a { transition: color var(--transition); }
button, .btn { transition: all var(--transition); }

/* ── PHASE 3: Decorative Elements & Spatial Composition ──── */

/* Page Hero with decorative tape-pattern border */
.page-hero {
  position: relative;
  padding-top: 40px;
  padding-bottom: 24px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    45deg,
    var(--gold),
    var(--gold) 10px,
    var(--braun) 10px,
    var(--braun) 20px
  );
  opacity: 0.6;
}

/* Better card backgrounds - like pinned photos */
.karte {
  background: var(--creme);
  border: none;
}

.karte-bild {
  overflow: hidden;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  position: relative;
}

/* Section spacing improvements */
.stat-badges {
  margin: 24px 0 40px;
}

.page-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Better link styling */
a {
  color: var(--braun);
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ── Utility ────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
