/* ===== TOKENS ===== */
:root {
  --bg:          #ffffff;
  --bg-2:        #f8f7f5;
  --bg-3:        #f0ede8;
  --text:        #1a1a1a;
  --text-muted:  #6b6560;
  --border:      #e5e1db;
  --accent:      #c25a00;
  --accent-dark: #9e4800;
  --nav-h:       64px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,.10);
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:       1200px;
  --transition:  0.2s ease;
}

[data-theme="dark"] {
  --bg:          #18161400;
  --bg:          #181614;
  --bg-2:        #221f1c;
  --bg-3:        #2c2823;
  --text:        #f0ece7;
  --text-muted:  #9e978f;
  --border:      #3a3530;
  --accent:      #e07020;
  --shadow:      0 2px 12px rgba(0,0,0,.3);
  --shadow-md:   0 4px 24px rgba(0,0,0,.4);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--nav-h);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; }
address { font-style: normal; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 2rem;
  z-index: 100;
  box-shadow: var(--shadow);
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.theme-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  padding: 0.25rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.theme-btn:hover { color: var(--accent); }
.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text);
  margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero--photo {
  background-size: cover;
  background-position: center 40%;
  color: #fff;
  border-bottom: none;
  padding: 7rem 1.5rem 5.5rem;
}
.hero--photo .hero-eyebrow { color: rgba(255,255,255,0.75); }
.hero--photo .hero-title   { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.hero--photo .hero-subtitle { color: rgba(255,255,255,0.85); margin-bottom: 0.75rem; }
.hero--photo .hero-claim   { color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 2.5rem; }
.hero-btn-ghost {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}
.hero-btn-ghost:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
}
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-bg { background: var(--bg-2); }
.section-title { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.section-sub { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }
.page-header { background: var(--bg-2); padding: 3rem 0 2rem; border-bottom: 1px solid var(--border); }
.page-title { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.4rem; }
.page-sub { color: var(--text-muted); font-size: 1rem; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--accent); }

/* ===== STATS ===== */
.section-stats { background: var(--bg-2); padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card { text-align: center; padding: 1.5rem 1rem; }
.stat-value { display: block; font-size: 1.8rem; font-weight: 900; color: var(--accent); letter-spacing: -0.02em; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ===== FAHRZEUG-GRID ===== */
.fahrzeug-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.fahrzeug-grid-sm { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.fahrzeug-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.fahrzeug-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.fahrzeug-card.hidden { display: none; }
.fahrzeug-img { aspect-ratio: 3/2; overflow: hidden; background: var(--bg-2); }
.fahrzeug-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.fahrzeug-card:hover .fahrzeug-img img { transform: scale(1.03); }
.fahrzeug-img-placeholder {
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-3);
}
.fahrzeug-info { padding: 1rem 1.1rem 1.2rem; flex: 1; }
.fahrzeug-marke {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--marke-color, var(--accent));
  display: block;
  margin-bottom: 0.25rem;
}
.fahrzeug-marke-large { font-size: 0.85rem; margin-bottom: 0.4rem; }
.fahrzeug-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.3; }
.fahrzeug-specs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.spec { font-size: 0.78rem; color: var(--text-muted); }
.spec-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  background: var(--bg-3);
  border-radius: 4px;
  color: var(--text-muted);
}
.fahrzeug-preis { font-size: 0.95rem; font-weight: 700; color: var(--accent); margin-top: 0.3rem; }

/* ===== FILTER ===== */
.filter-bar {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: flex-start;
}
.filter-group { display: flex; flex-direction: column; gap: 0.4rem; }
.filter-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text-muted);
  transition: all var(--transition);
}
.chip:hover { border-color: var(--chip-color, var(--accent)); color: var(--chip-color, var(--accent)); }
.chip.active { background: var(--chip-color, var(--accent)); border-color: var(--chip-color, var(--accent)); color: #fff; }
.filter-group-range { min-width: 160px; }
.range-input { width: 100%; accent-color: var(--accent); }
.range-value { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.filter-reset { align-self: flex-end; margin-left: auto; background: none; border: none; font-size: 0.8rem; color: var(--text-muted); text-decoration: underline; }
.filter-reset:hover { color: var(--accent); }
.filter-empty { text-align: center; padding: 3rem; color: var(--text-muted); }
.hidden { display: none !important; }

/* ===== FAHRZEUG DETAIL ===== */
.fahrzeug-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.galerie-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-2); aspect-ratio: 3/2; }
.galerie-main img { width: 100%; height: 100%; object-fit: cover; }
.galerie-prev, .galerie-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.5); color: #fff; border: none;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.galerie-prev:hover, .galerie-next:hover { background: rgba(0,0,0,.8); }
.galerie-prev { left: 0.75rem; }
.galerie-next { right: 0.75rem; }
.galerie-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.thumb { border: 2px solid transparent; border-radius: var(--radius); overflow: hidden; width: 72px; height: 48px; background: none; padding: 0; transition: border-color var(--transition); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--accent); }
.galerie-placeholder { aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; font-size: 5rem; background: var(--bg-2); border-radius: var(--radius-lg); }
.fahrzeug-detail-title { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; margin: 0.5rem 0 0.3rem; }
.fahrzeug-saison { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; margin-bottom: 1.5rem; }
.spec-item { display: flex; flex-direction: column; gap: 0.1rem; }
.spec-item.spec-preis { grid-column: 1/-1; }
.spec-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); font-weight: 600; }
.spec-val { font-size: 1rem; font-weight: 700; }
.spec-item.spec-preis .spec-val { font-size: 1.4rem; color: var(--accent); }
.fahrzeug-beschreibung { color: var(--text-muted); font-size: 0.92rem; line-height: 1.65; margin-bottom: 1.5rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.fahrzeug-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.verfuegbarkeit-hint { display: flex; gap: 0.75rem; align-items: flex-start; background: var(--bg-2); border-radius: var(--radius); padding: 0.9rem 1rem; font-size: 0.82rem; color: var(--text-muted); }
.verfuegbarkeit-hint span { flex-shrink: 0; font-size: 1rem; }

/* Grundriss */
.grundriss-section { padding-top: 2.5rem; border-top: 1px solid var(--border); margin-top: 3rem; }
.grundriss-btn { border: none; background: none; cursor: zoom-in; position: relative; width: 100%; }
.grundriss-btn img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); }
.grundriss-zoom-hint { display: block; text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
.grundriss-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 2rem;
  cursor: zoom-out;
}
.grundriss-lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; }

/* ===== MARKEN ===== */
.marken-logos { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.marke-logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 72px;
  transition: box-shadow var(--transition);
}
.marke-logo-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.marke-logo-card img { max-height: 44px; max-width: 140px; object-fit: contain; width: 100%; }
[data-theme="dark"] .marke-logo-card { background: #fff; border-color: rgba(255,255,255,0.15); }
.marke-logo-fallback, .marke-logo-placeholder { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.marke-section { margin-bottom: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.marke-section:last-child { border-bottom: none; }
.marke-header { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 1.5rem; padding: 1.5rem; background: var(--bg-2); border-radius: var(--radius-lg); border-left: 4px solid var(--marke-color, var(--accent)); }
.marke-logo { max-height: 64px; max-width: 160px; object-fit: contain; flex-shrink: 0; background: #fff; padding: 0.5rem 0.75rem; border-radius: var(--radius); }
.marke-title { font-size: 1.4rem; font-weight: 800; color: var(--marke-color, var(--accent)); margin-bottom: 0.4rem; }
.marke-beschreibung { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }
.marke-no-fahrzeuge { color: var(--text-muted); font-style: italic; }

/* ===== BESUCH PLANEN ===== */
.besuch-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.besuch-bild img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/3; }
.besuch-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.besuch-info-col { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.info-card h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.info-card h3 { font-size: 0.9rem; font-weight: 700; margin: 1rem 0 0.5rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.oeffnungszeiten-list { display: flex; flex-direction: column; gap: 0.5rem; }
.oeffnungszeiten-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.oz-tag { background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 4px; white-space: nowrap; }
address { line-height: 1.8; font-size: 0.9rem; margin-bottom: 0.75rem; }
.kontakt-link { color: var(--accent); font-weight: 600; }
.ansprechpartner-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ansprechpartner-item { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.85rem; }
.ap-rolle { color: var(--text-muted); }
.besuch-map-col { display: flex; flex-direction: column; gap: 0.75rem; }
.map-wrapper { height: 380px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
[data-theme="dark"] .map-wrapper iframe { filter: invert(90%) hue-rotate(180deg); }
.map-hinweis { font-size: 0.8rem; color: var(--text-muted); }
.map-consent-placeholder { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:.9rem; height:100%; background: var(--bg-2, #f5f0eb); text-align:center; padding:1.5rem; }
[data-theme="dark"] .map-consent-placeholder { background: var(--bg-2, #1e1a15); }
.map-consent-placeholder svg { opacity:.35; }
.map-consent-placeholder p { font-size:.875rem; max-width:280px; line-height:1.5; color:var(--text-muted); }
.map-consent-placeholder button { padding:.5rem 1.3rem; background:var(--accent); color:#fff; border:none; border-radius:var(--radius-sm,6px); cursor:pointer; font-family:inherit; font-size:.875rem; font-weight:600; }
.besuch-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hint-box { display: flex; gap: 1rem; align-items: flex-start; background: #fffbeb; border: 1px solid #fcd34d; border-radius: var(--radius-lg); padding: 1.25rem; font-size: 0.88rem; color: #78350f; margin-top: 1.5rem; }
[data-theme="dark"] .hint-box { background: #2a2410; border-color: #6b5a00; color: #e8d080; }
.hint-box-lg { margin-top: 0; max-width: 640px; margin: 0 auto; }
.hint-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ===== AKTUELLES ===== */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.aktuelles-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition);
}
.post-card:hover { box-shadow: var(--shadow-md); }
.post-img { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-2); }
.post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.post-card:hover .post-img img { transform: scale(1.04); }
.post-info { padding: 1rem 1.1rem 1.25rem; flex: 1; }
.post-date { font-size: 0.75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.post-date-lg { font-size: 0.85rem; display: block; margin-bottom: 0.5rem; }
.post-title { font-size: 1rem; font-weight: 700; margin: 0.3rem 0 0.4rem; line-height: 1.35; }
.post-kurztext { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-more { font-size: 0.8rem; font-weight: 600; color: var(--accent); display: block; margin-top: 0.75rem; }
.post-card-full .post-title { font-size: 1.15rem; }
.post-detail { max-width: 780px; }
.post-detail-header { margin-bottom: 2rem; }
.post-detail-title { font-size: 2.2rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.post-detail-kurztext { font-size: 1.1rem; color: var(--text-muted); }
.post-detail-img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2rem; }
.post-detail-img img { width: 100%; max-height: 480px; object-fit: cover; }
.post-detail-text { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }
.post-detail-text p { margin-bottom: 1rem; }
.post-detail-text h2 { font-size: 1.4rem; font-weight: 700; color: var(--text); margin: 2rem 0 0.75rem; }
.post-detail-text h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1.5rem 0 0.5rem; }
.post-detail-back { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-icon { display: block; font-size: 3rem; margin-bottom: 1rem; }

/* ===== CTA-BAND ===== */
.section-cta-band { background: var(--bg-2); padding: 2.5rem 0; }
.cta-band { display: flex; gap: 2rem; align-items: center; justify-content: space-between; }
.cta-band h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.3rem; }
.cta-band p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== TOURISMUS TIPPS ===== */
.tipp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.tipp-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.tipp-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.tipp-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.tipp-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== PROSE ===== */
.prose h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
.prose p { color: var(--text-muted); margin-bottom: 1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--bg-3); border-top: 1px solid var(--border); padding: 3rem 0 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.footer-info { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.88rem; }
.footer-info strong { font-size: 1rem; }
.footer-info a { color: var(--accent); }
.footer-nav { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; }
.footer-nav a { color: var(--text-muted); }
.footer-nav a:hover { color: var(--accent); }
.footer-credit { font-size: 0.72rem; color: var(--text-muted); opacity: 0.5; grid-column: 1/-1; }
.footer-credit a { color: inherit; }

/* ===== MOBILE FORM ZOOM FIX ===== */
@media (max-width: 768px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]),
  textarea, select { font-size: max(16px, 1em); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .aktuelles-preview { grid-template-columns: 1fr 1fr; }
  .fahrzeug-detail-inner { grid-template-columns: 1fr; }
  .besuch-split { grid-template-columns: 1fr; }
  .besuch-detail-grid { grid-template-columns: 1fr; }
  .tipp-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 52px; }
  .nav { padding: 0 1rem; }
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 0.4rem 0; width: 100%; }
  .burger { display: flex; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .aktuelles-preview { grid-template-columns: 1fr; }
  .fahrzeug-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .section { padding: 2.5rem 0; }
  .section-title { font-size: 1.4rem; }
  .page-title { font-size: 1.7rem; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .marke-header { flex-direction: column; gap: 1rem; }
}

@media (max-width: 420px) {
  .fahrzeug-grid { grid-template-columns: 1fr; }
}

/* --- Hero Claim --- */
.hero-claim {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 0.5rem 0 1.5rem;
  max-width: 480px;
}

/* --- Öffnungszeiten Hinweis --- */
.oz-hinweis {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* --- Forum-Informationen Info-Links --- */
.info-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.info-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
a.info-link-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.info-link-card-inactive {
  opacity: 0.6;
  cursor: default;
}
.info-link-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.info-link-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.info-link-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}
.badge-soon {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--border);
  color: var(--text-muted);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  width: fit-content;
  margin-top: 0.25rem;
}

/* --- Forum-Galerie --- */
.forum-galerie {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.forum-galerie img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.forum-galerie img:hover { transform: scale(1.03); }
.forum-galerie .galerie-main {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 300px;
}
@media (max-width: 700px) {
  .forum-galerie {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .forum-galerie .galerie-main {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 200px;
    min-height: unset;
  }
  .forum-galerie img { height: 140px; }
  .besuch-split { grid-template-columns: 1fr; }
}
