/* JL Wohnmobile – Hauptstylesheet */
/* Design: Stitch-Konzept · Stand: 2026-05-31 */

:root {
  --primary:        #001f58;
  --primary-dk:     #083381;
  --primary-lt:     #2e6bc4;

  --accent:         #E7BD74;
  --accent-dk:      #c9a05a;
  --horizon:        #F89422;

  --text:           #1b1c1c;
  --text-muted:     #444651;
  --bg:             #ffffff;
  --surface:        #ffffff;
  --fog:            #F4F7FA;
  --border:         #e4e2e1;
  --white:          #ffffff;

  --max-w:          1280px;
  --gutter:         24px;
  --section-gap:    120px;

  --card-radius:    12px;
  --card-radius-lg: 20px;
  --btn-radius:     8px;
  --radius:         6px;
  --radius-md:      10px;

  --shadow:         0 1px 4px rgba(0,0,0,.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 12px 32px rgba(0,0,0,.12);
  --shadow-xl:      0 24px 64px rgba(0,0,0,.14);

  --font-heading:   'Plus Jakarta Sans', sans-serif;
  --font:           'Inter', sans-serif;

  --transition:     0.25s ease-out;
  --transition-s:   0.15s ease-out;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-family: var(--font-heading); font-size: clamp(2.5rem,6vw,3.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2rem); font-weight: 700; line-height: 1.3; }
h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; line-height: 1.4; }
h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.header-topbar {
  background: var(--primary-dk);
  height: 44px;
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.topbar-left, .topbar-right { display: flex; align-items: center; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: rgba(255,255,255,.75);
  font-size: .76rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition-s);
}
a.topbar-item:hover { color: #fff; }
.topbar-sep { width: 1px; height: 16px; background: rgba(255,255,255,.22); flex-shrink: 0; }
.topbar-social { display: flex; align-items: center; gap: 2px; padding: 0 10px; }
.topbar-social a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition-s);
  border-radius: 4px;
  font-size: 1rem;
}
.topbar-social a:hover { color: #fff; }
.topbar-item i { font-size: .95rem; flex-shrink: 0; }
.topbar-social a svg { width: 13px; height: 13px; fill: currentColor; }
.topbar-item svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* Mainbar */
.mainbar { background: var(--white); border-bottom: 1px solid var(--border); }
.mainbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 80px;
  gap: 16px;
}

.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 56px; width: auto; display: block; }
.site-logo span { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.main-nav a {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 16px;
  color: #3c434a;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s;
}
.main-nav a + a { border-left: 1px solid var(--border); }
.main-nav a:hover  { color: var(--primary); border-bottom-color: var(--primary); }
.main-nav a.active { color: var(--primary); border-bottom-color: var(--primary); }

.mainbar-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff !important;
  border-radius: var(--btn-radius);
  padding: 10px 22px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--horizon); color: #fff !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .15s; }

@media (max-width: 900px) { .header-topbar { display: none; } }
@media (max-width: 768px) {
  .mainbar-inner { height: 64px; }
  .site-logo img { height: 44px; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; align-items: stretch; height: auto;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); z-index: 98; padding: 8px 0 12px;
  }
  .main-nav.open a {
    height: 48px; border-bottom: 1px solid var(--border) !important;
    border-left: 3px solid transparent; border-top: none; border-right: none; padding: 0 20px;
  }
  .main-nav.open a + a { border-left: 3px solid transparent; }
  .main-nav.open a:hover, .main-nav.open a.active {
    border-left-color: var(--primary); background: rgba(0,31,88,.04);
    border-bottom-color: var(--border) !important;
  }
}

/* ── Hero ── */
/* ── Hero ── */
/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,31,88,.80) 0%, rgba(0,31,88,.40) 55%, rgba(0,31,88,.10) 100%);
}
.hero .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 120px;
  padding-bottom: 64px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-label {
  display: inline-block;
  background: rgba(231,189,116,.2);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero-lead { font-size: 1.125rem; line-height: 1.7; opacity: .9; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Hero-Search (integriert) ── */
.hero-search {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  max-width: 660px;
}
.hero-search-field { flex: 1; min-width: 150px; }
.hero-search-field label {
  color: rgba(255,255,255,.80);
  font-size: .76rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hero-search .form-control {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: var(--white);
  height: 44px;
  color-scheme: dark;
}
.hero-search .form-control:focus {
  background: rgba(255,255,255,.18);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(231,189,116,.25);
}
.hero-search-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.18);
  align-self: flex-end;
  margin-bottom: 0;
  flex-shrink: 0;
}
.hero-search .btn {
  height: 44px;
  flex-shrink: 0;
  align-self: flex-end;
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-dk);
  font-weight: 700;
}
.hero-search .btn:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: var(--primary-dk);
  transform: translateY(-1px);
}
.hero-stats { display: flex; gap: 32px; margin-bottom: 32px; }
.hero-stat-val { display: block; font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; }


/* Page-Hero (Unterseiten — Legacy) */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  color: white;
  padding: 56px 0;
}
.page-hero h1 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: white; margin-bottom: 8px; }
.page-hero p { opacity: .85; font-size: 1rem; margin-top: 8px; }

/* ── Vehicles Page Header (Stitch-Style) ── */
.vehicles-page-header {
  background: var(--white);
  padding-top: 44px;
}
.vph-top { margin-bottom: 28px; }
.vph-label {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--horizon);
  margin-bottom: 6px;
}
.vph-title h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
  line-height: 1.15;
}
.vph-count {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}
.vph-tabs-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.vtabs {
  display: flex;
  background: var(--fog);
  border-radius: 10px;
  padding: 4px;
  gap: 2px;
}
.vtab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: .845rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 7px;
  transition: color .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.vtab i { font-size: .95rem; }
.vtab:hover { color: var(--primary); background: rgba(255,255,255,.6); }
.vtab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.04);
}

/* ── Vehicles Filter Card ── */
.vehicles-filter-wrap {
  background: var(--white);
  padding: 20px 0 28px;
}
.vehicles-filter-card {
  display: flex;
  align-items: flex-end;
  gap: 0;
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  max-width: 640px;
  flex-wrap: wrap;
  gap: 12px;
}
.vfc-field {
  flex: 1;
  min-width: 140px;
}
.vfc-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.vfc-field .form-control {
  height: 42px;
  font-size: .875rem;
  background: var(--white);
}
.vfc-sep {
  width: 1px;
  height: 42px;
  background: var(--border);
  align-self: flex-end;
  flex-shrink: 0;
}
.vfc-actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}
.vfc-actions .btn {
  height: 42px;
  font-size: .875rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border-radius: var(--btn-radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, transform .15s, border-color .2s, color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--horizon); border-color: var(--horizon); color: var(--white); transform: translateY(-1px); }

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-ghost {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.20); color: var(--white); }

.btn-secondary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-secondary:hover { background: var(--horizon); border-color: var(--horizon); color: var(--white); transform: translateY(-1px); }

.btn-sm  { padding: 8px 20px; font-size: .8rem; }
.btn-lg  { padding: 15px 38px; font-size: .95rem; }
.btn-block { width: 100%; }

/* ── Sections ── */
.section { padding: var(--section-gap) 0; }
.section-sm { padding: 64px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header.left { text-align: left; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem,3vw,2rem);
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.section-accent-line {
  width: 80px; height: 4px;
  background: var(--horizon);
  border-radius: 2px;
  margin: 14px auto 20px;
}
.section-header.left .section-accent-line { margin-left: 0; margin-right: auto; }
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.6; max-width: 560px; margin: 0 auto; }
.section-header.left .section-sub { margin-left: 0; }

.accent-line { width: 80px; height: 4px; background: var(--horizon); border-radius: 2px; margin: 14px 0 20px; }

/* ── Quick-Search ── */
.quick-search { background: var(--primary-dk); padding: 20px 0; border-bottom: 3px solid var(--accent); }
.quick-search form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.quick-search label { color: rgba(255,255,255,.75); font-size: .76rem; font-weight: 600; display: block; margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
.quick-search .form-control { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); color: var(--white); height: 42px; }
.quick-search .form-control:focus { background: rgba(255,255,255,.18); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(231,189,116,.2); }
.quick-search .form-control::placeholder { color: rgba(255,255,255,.4); }
.quick-search .btn { background: var(--accent); border-color: var(--accent); color: var(--primary-dk); height: 42px; flex-shrink: 0; font-weight: 700; }
.quick-search .btn:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: var(--primary-dk); transform: none; }

/* ── Service-Cards ── */
.service-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--fog);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon { background: var(--horizon); color: white; }
.service-card h3 { font-size: 1.2rem; font-weight: 600; color: var(--primary); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #a85000;
  font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-top: 20px;
  transition: gap .2s;
  text-decoration: none;
}
.service-card:hover .service-link { gap: 14px; }

/* ── Vehicle Cards ── */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.vehicle-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.vehicle-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.vehicle-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--fog); position: relative; }
.vehicle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }

.vehicle-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary); color: white;
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--btn-radius);
  letter-spacing: .04em;
}
.vehicle-badge.for-sale { background: #1a5276; }

.vehicle-card-body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.vehicle-card-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.vehicle-card-teaser { color: var(--text-muted); font-size: .88rem; margin-bottom: 14px; flex: 1; line-height: 1.6; }
.vehicle-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .76rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px;
  background: rgba(0,31,88,.07); color: var(--primary);
}
.vehicle-card-price { font-size: .92rem; color: var(--text-muted); margin-bottom: 16px; }
.vehicle-card-price strong { font-size: 1.35rem; color: var(--primary); font-weight: 700; }

/* ── Feature Cards (Vorteile) ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--fog);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.75rem;
  color: var(--primary);
  transition: background .25s, color .25s;
}
.feature-card:hover .feature-icon { background: var(--horizon); color: white; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ── CTA Strip ── */
.cta-strip { background: var(--primary-dk); color: white; padding: 80px 0; position: relative; overflow: hidden; }
.cta-strip-glow {
  position: absolute; top: 0; right: 0;
  width: 33%; height: 100%;
  background: rgba(248,148,34,.08);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-strip-text { flex: 1; min-width: 280px; }
.cta-strip h2 { color: white; margin-bottom: 12px; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; }
.cta-strip p { opacity: .85; margin-bottom: 0; font-size: 1rem; line-height: 1.7; }
.cta-strip-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 700px) { .cta-strip-inner { flex-direction: column; align-items: flex-start; } }

/* ── Sorgenfrei Section ── */
.sorgenfrei-section {
  background: var(--primary-dk);
  color: white;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.sorgenfrei-glow {
  position: absolute;
  top: 0; right: 0;
  width: 33%; height: 100%;
  background: rgba(248,148,34,.08);
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}
.sorgenfrei-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.sorgenfrei-left h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 40px;
  line-height: 1.1;
}
.sorgenfrei-left h2 span { color: var(--accent); }
.sorgenfrei-features { display: flex; flex-direction: column; gap: 28px; }
.sorgenfrei-feature { display: flex; gap: 18px; align-items: flex-start; }
.sf-icon {
  background: var(--horizon);
  padding: 12px;
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.sorgenfrei-feature h3 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 4px; }
.sorgenfrei-feature p { opacity: .75; font-size: .92rem; line-height: 1.65; margin: 0; }
.sorgenfrei-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.stat-glass {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px 32px;
}
.stat-glass:nth-child(2),
.stat-glass:nth-child(4) { margin-top: 28px; }
.stat-val {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
}
.stat-label {
  font-size: .74rem;
  color: rgba(255,255,255,.60);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── Fahrzeug Detail (fd-*) ── */
.fd-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: .85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}
.fd-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.fd-breadcrumb a:hover { color: var(--primary); }
.fd-breadcrumb i { font-size: .75rem; margin: 0 6px; }

.fd-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}
.fd-hero-bg { position: absolute; inset: 0; }
.fd-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.fd-hero-placeholder { background: var(--primary); }
.fd-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,31,88,.85) 0%, rgba(0,31,88,.5) 55%, rgba(0,31,88,.15) 100%);
}
.fd-hero-content { position: relative; z-index: 1; padding: 48px 0; }
.fd-hero-label {
  display: inline-block;
  background: rgba(231,189,116,.2);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}
.fd-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
  line-height: 1.1;
}
.fd-hero-teaser { font-size: 1rem; opacity: .85; margin-bottom: 20px; max-width: 560px; line-height: 1.6; }
.fd-hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fd-stat { text-align: center; }
.fd-stat span { display: block; font-size: 1.4rem; font-weight: 800; color: var(--accent); line-height: 1; }
.fd-stat small { font-size: .72rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; }
.fd-stat-price span { color: white; }
.fd-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.fd-layout { padding: 48px 0 80px; }
.fd-cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.fd-section { margin-bottom: 36px; }
.fd-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fog);
}
.fd-description { color: var(--text-muted); line-height: 1.8; font-size: .95rem; }

.fd-gallery { margin-bottom: 0; }
.fd-gallery-main {
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--fog);
  margin-bottom: 10px;
  cursor: zoom-in;
}
.fd-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.fd-gallery-main:hover img { transform: scale(1.03); }
.fd-gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fd-thumb {
  width: 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s;
}
.fd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fd-thumb.active, .fd-thumb:hover { border-color: var(--primary); }

.fd-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fd-feature-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--fog);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text);
}
.fd-feature-tag i { color: var(--horizon); font-size: 1rem; }

.fd-specs-table { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.fd-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.fd-spec-row:last-child { border-bottom: none; }
.fd-spec-row:nth-child(even) { background: var(--fog); }
.fd-spec-label { color: var(--text-muted); font-weight: 600; }
.fd-spec-value { font-weight: 600; color: var(--primary); text-align: right; }

.fd-season-table { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 10px; }
.fd-season-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 10px 16px;
  background: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.fd-season-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 12px 16px;
  font-size: .88rem;
  border-top: 1px solid var(--border);
  align-items: center;
}
.fd-season-name { font-weight: 600; color: var(--primary); }
.fd-season-price { font-weight: 700; color: var(--horizon); text-align: right; }
.fd-season-hint { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

.fd-faq { display: flex; flex-direction: column; gap: 8px; }
.fd-faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.fd-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.fd-faq-question::-webkit-details-marker { display: none; }
.fd-faq-icon { font-size: 1rem; flex-shrink: 0; transition: transform .2s; color: var(--text-muted); }
details[open] .fd-faq-icon { transform: rotate(180deg); }
.fd-faq-answer {
  padding: 0 18px 16px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

@media (max-width: 960px) {
  .fd-cols { grid-template-columns: 1fr; }
  .fd-hero { min-height: 360px; }
}

/* ── Über uns ── */
.ueber-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 0;
}
.ueber-text h2 { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.ueber-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: .95rem; }
.ueber-contact-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.ueber-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ueber-stat-grid .stat-glass:nth-child(2),
.ueber-stat-grid .stat-glass:nth-child(4) { margin-top: 24px; }
.ueber-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ueber-feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.ueber-feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.uf-icon { font-size: 2rem; color: var(--horizon); margin-bottom: 14px; display: block; }
.ueber-feature h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ueber-feature p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.ueber-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.ueber-partner {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
}
.up-icon { font-size: 2rem; color: var(--horizon); margin-bottom: 12px; display: block; }
.ueber-partner h4 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ueber-partner p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── Partner Logos ── */
.partner-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.partner-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(.65);
  transition: filter .25s;
}
.partner-logo:hover { filter: grayscale(0%) opacity(1); }
.partner-logo-sm { height: 36px; }
.partner-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 32px auto 16px;
}
.partner-label {
  text-align: center;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── YouTube Embed ── */
.yt-wrap { max-width: 860px; margin: 0 auto; }
.yt-consent {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--primary);
  cursor: pointer;
}
.yt-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-consent-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}
.yt-play-btn {
  font-size: 5rem;
  color: white;
  transition: transform .2s, color .2s;
  line-height: 1;
}
.yt-play-btn:hover { transform: scale(1.1); color: var(--accent); }
.yt-consent-hint {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  text-align: center;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}
.yt-consent-hint a { color: var(--accent); }

/* ── Service Bento ── */
.service-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sb-card {
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.sb-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.sb-large { grid-column: span 2; background: var(--fog); }
.sb-dark { background: var(--primary); color: white; }
.sb-white { background: var(--white); }
.sb-cta {
  grid-column: span 2;
  background: rgba(231,189,116,.12);
  border-color: rgba(231,189,116,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.sb-icon { font-size: 2.2rem; color: var(--horizon); margin-bottom: 16px; display: block; }
.sb-icon-gold { font-size: 2.2rem; color: var(--accent); margin-bottom: 16px; display: block; }
.sb-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.sb-dark h3 { color: white; }
.sb-cta h3 { color: var(--primary); }
.sb-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.sb-checklist { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sb-checklist li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text); font-weight: 500; }
.sb-checklist li i { color: var(--horizon); font-size: 1.1rem; flex-shrink: 0; }
.sb-location { margin-bottom: 16px; }
.sb-location strong { display: block; font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--accent); margin-bottom: 4px; }
.sb-location span { font-size: .88rem; opacity: .8; line-height: 1.6; }
.sb-divider { height: 1px; background: rgba(255,255,255,.12); margin: 16px 0; }
.sb-hours { font-size: .88rem; opacity: .75; display: flex; gap: 8px; align-items: flex-start; line-height: 1.6; }
.sb-hours i { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.sb-kondition-list { display: flex; flex-direction: column; gap: 16px; }
.sb-kondition { display: flex; flex-direction: column; gap: 3px; }
.sk-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.sk-val { font-size: .9rem; color: var(--text); line-height: 1.5; }
.sk-val em { color: var(--text-muted); font-size: .85rem; }
.sb-cta-text h3 { margin-bottom: 6px; }
.sb-cta-text p { margin: 0; font-size: .92rem; color: var(--text-muted); }
.sb-cta-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Bento Grid ── */
.bento-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.bento-card { background: var(--fog); border: 1px solid var(--border); border-radius: var(--card-radius); padding: 32px; }
.bento-card:nth-child(1) { grid-column: span 2; }
.bento-card.dark { background: var(--primary); color: white; }
.bento-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; display: block; }
.bento-card.dark .bento-icon { color: var(--accent); }
.bento-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.bento-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.bento-card.dark p { color: rgba(255,255,255,.8); }

/* ── Split Section ── */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 80px; }
.split-section--reverse { direction: rtl; }
.split-section--reverse > * { direction: ltr; }
.split-image { border-radius: var(--card-radius-lg); overflow: hidden; position: relative; }
.split-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.split-image:hover img { transform: scale(1.03); }
.blob-gold {
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(231,189,116,.10);
  border-radius: 50%; filter: blur(60px);
  pointer-events: none; z-index: -1;
}

/* ── Fahrzeugdetail ── */
.vehicle-detail { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .vehicle-detail { grid-template-columns: 1fr; } }

.gallery-main { aspect-ratio: 16/9; border-radius: var(--card-radius); overflow: hidden; background: var(--fog); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.gallery-thumb { width: 80px; height: 56px; border-radius: var(--radius); overflow: hidden; cursor: pointer; border: 2px solid transparent; flex-shrink: 0; transition: border-color var(--transition-s); }
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb:hover  { border-color: var(--primary-lt); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.vehicle-specs { background: var(--white); border-radius: var(--card-radius); padding: 28px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.spec-item { display: flex; flex-direction: column; gap: 2px; }
.spec-label { font-size: .72rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.spec-value { font-weight: 600; color: var(--text); font-size: .95rem; }

.features-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.feature-tag { font-size: .8rem; padding: 4px 13px; background: rgba(0,31,88,.07); border-radius: 20px; color: var(--primary); font-weight: 500; }

/* ── Booking Box ── */
.booking-box { background: var(--white); border-radius: var(--card-radius); box-shadow: var(--shadow-lg); padding: 28px; position: sticky; top: 88px; border: 1px solid var(--border); }
.booking-box h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.booking-price-hint { color: var(--text-muted); font-size: .86rem; margin-bottom: 20px; }

/* ── Forms ── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-weight: 600; font-size: .84rem; margin-bottom: 6px; color: var(--text); }
.form-label .required { color: #e74c3c; }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: .95rem; font-family: var(--font);
  background: var(--white); color: var(--text);
  transition: border-color var(--transition-s), box-shadow var(--transition-s);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,31,88,.10); }
.form-control.error { border-color: #e74c3c; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
textarea.form-control { resize: vertical; min-height: 90px; }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444651' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px;
}
.form-hint  { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: .8rem; color: #e74c3c; margin-top: 4px; display: none; }

.check-group { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 10px 14px; border-radius: var(--radius-md); border: 1.5px solid var(--border); transition: border-color var(--transition-s), background var(--transition-s); }
.check-item:hover { border-color: var(--primary); background: rgba(0,31,88,.04); }
.check-item input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.check-item-info { flex: 1; }
.check-item-name  { font-weight: 600; font-size: .9rem; }
.check-item-price { font-size: .82rem; color: var(--primary); font-weight: 600; }
.check-item-desc  { font-size: .78rem; color: var(--text-muted); }

.price-summary { background: var(--fog); border-radius: var(--radius-md); padding: 16px; margin: 20px 0; }
.price-row { display: flex; justify-content: space-between; font-size: .9rem; padding: 3px 0; color: var(--text-muted); }
.price-row.discount { color: #27ae60; }
.price-row.total { font-weight: 700; font-size: 1.1rem; color: var(--text); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 8px; }

.calendar-wrapper { margin: 16px 0; }
.date-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }

/* ── Info Boxes ── */
.info-box { background: var(--white); border-radius: var(--card-radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.alert { padding: 14px 18px; border-radius: var(--radius-md); margin-bottom: 16px; font-size: .92rem; }
.alert-success { background: #e8f8f1; color: #1e8449; border: 1px solid #a9dfbf; }
.alert-error   { background: #fdf0ee; color: #c0392b; border: 1px solid #f1948a; }
.alert-info    { background: #eaf4fd; color: #1a5276; border: 1px solid #aed6f1; }
.alert-warning { background: #fef9e7; color: #9a7d0a; border: 1px solid #f9e79f; }

/* ── Tabs ── */
.vehicle-tabs { background: var(--white); border-bottom: 1px solid var(--border); }
.vehicle-tabs-inner { display: flex; gap: 0; }
.vehicle-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 24px;
  font-weight: 600; font-size: .88rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  color: var(--text-muted);
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.vehicle-tab i { font-size: 1.1rem; }
.vehicle-tab:hover { color: var(--primary); }
.vehicle-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* ── Kontakt ── */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.kontakt-cards { display: flex; flex-direction: column; gap: 12px; }
.kontakt-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
}
.kontakt-card-link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.kontakt-card-icon {
  width: 48px; height: 48px;
  background: var(--fog);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.kontakt-card-link:hover .kontakt-card-icon { background: var(--primary); color: white; }
.kontakt-card h3 { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em; }
.kontakt-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .kontakt-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Availability Filter ── */
.filter-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 20px 0; }
.filter-bar form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }

/* ── Footer ── */
.site-footer { background: #1a1a2e; color: rgba(255,255,255,.65); margin-top: auto; }
.site-footer::before { content: ''; display: block; height: 3px; background: linear-gradient(to right, var(--horizon), var(--accent)); }
.footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding: 60px 0 40px; }
.footer-col h2 { color: var(--white); font-size: .88rem; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col p, .footer-col a { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 2; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.50); }
.footer-bottom a { color: rgba(255,255,255,.50); }
.footer-bottom a:hover { color: var(--accent); }

/* ── Lightbox ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: rgba(255,255,255,.8); font-size: 1.8rem; cursor: pointer; line-height: 1; background: none; border: none; transition: color var(--transition-s); }
.lightbox-close:hover { color: var(--white); }

/* ── Pagination ── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn { padding: 8px 16px; border-radius: var(--btn-radius); border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); cursor: pointer; font-size: .88rem; font-weight: 600; font-family: var(--font); transition: all var(--transition-s); }
.page-btn:hover, .page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn:disabled { opacity: .35; cursor: not-allowed; }

/* ── Spinner ── */
.spinner { width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.35); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utils ── */
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.d-flex    { display: flex; }
.gap-2     { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.hidden    { display: none !important; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .service-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .split-section { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card:nth-child(1) { grid-column: span 1; }
  .section { padding: 80px 0; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .date-inputs { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .section { padding: 56px 0; }
  .booking-box { position: static; }
  .hero .container { padding-top: 80px; padding-bottom: 40px; }
  .hero-search { padding: 16px; }
  .hero-search-divider { display: none; }
  .vehicle-tab { padding: 14px 16px; font-size: .82rem; }
  .vtab { padding: 8px 13px; font-size: .8rem; }
  .vtabs { gap: 2px; }
  .vfc-sep { display: none; }
  .vehicles-filter-card { padding: 14px 16px; }
  .vph-title h1 { font-size: 1.6rem; }
  .ueber-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .ueber-stat-grid .stat-glass:nth-child(2), .ueber-stat-grid .stat-glass:nth-child(4) { margin-top: 0; }
  .ueber-features-grid { grid-template-columns: 1fr; }
  .ueber-partner-grid { grid-template-columns: 1fr; }
  .service-bento { grid-template-columns: 1fr; }
  .sb-large, .sb-cta { grid-column: span 1; }
  .sorgenfrei-grid { grid-template-columns: 1fr; gap: 48px; }
  .stat-glass:nth-child(2), .stat-glass:nth-child(4) { margin-top: 0; }
  .sorgenfrei-section { padding: 64px 0; }
}

/* ── Datepicker ── */
.flatpickr-calendar { font-family: var(--font) !important; border-radius: var(--radius-md) !important; box-shadow: var(--shadow-xl) !important; }
.flatpickr-day.flatpickr-disabled { background: #fee2e2 !important; color: #b91c1c !important; opacity: 1 !important; text-decoration: line-through; }
.flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):not(.selected):not(.startRange):not(.endRange):not(.inRange):not(.fp-in-range):not(.fp-range-start):not(.fp-range-end) {
  background: #f0fdf4 !important;
  color: #15803d !important;
  border-color: transparent !important;
}
.flatpickr-day:not(.flatpickr-disabled):not(.prevMonthDay):not(.nextMonthDay):not(.selected):not(.startRange):not(.endRange):not(.inRange):not(.fp-in-range):not(.fp-range-start):not(.fp-range-end):hover {
  background: #bbf7d0 !important;
  color: #14532d !important;
}
.flatpickr-day.today:not(.flatpickr-disabled) { background: #dcfce7 !important; color: #166534 !important; border-color: #16a34a !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: var(--primary) !important; border-color: var(--primary) !important; color: white !important; }
.flatpickr-day.inRange  { background: rgba(0,31,88,.12) !important; border-color: rgba(0,31,88,.2) !important; color: var(--primary) !important; }
.flatpickr-day.fp-range-start,
.flatpickr-day.fp-range-end { background: var(--primary) !important; color: white !important; border-radius: 50% !important; }
.flatpickr-day.fp-in-range,
.flatpickr-day.fp-in-range:hover { background: rgba(0,31,88,.15) !important; color: var(--primary) !important; border-radius: 0 !important; border-color: transparent !important; }
.flatpickr-day.fp-range-start { border-radius: 50% 0 0 50% !important; }
.flatpickr-day.fp-range-end   { border-radius: 0 50% 50% 0 !important; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-grid-3 { grid-template-columns: repeat(3, 1fr); }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--card-radius); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow var(--transition), transform var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--fog); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--border); }
.blog-card-body { padding: 20px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: 8px; display: block; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.blog-card-teaser { font-size: .875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); font-size: .8rem; }
.blog-card-date { color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.blog-card-more { color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 4px; }

.blog-article { padding-top: 0; }
.blog-article-inner { max-width: 760px; margin: 0 auto; padding: 48px 0 64px; }
.blog-article-header { margin-bottom: 32px; }
.blog-article-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.25; margin: 12px 0 16px; }
.blog-article-lead { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.blog-article-meta { display: flex; gap: 20px; font-size: .85rem; color: var(--text-muted); }
.blog-article-meta span { display: flex; align-items: center; gap: 5px; }
.blog-article-hero { border-radius: var(--card-radius); overflow: hidden; margin-bottom: 40px; }
.blog-article-hero img { width: 100%; height: auto; display: block; }
.blog-article-content { line-height: 1.85; font-size: 1rem; color: var(--text); }
.blog-article-content h2 { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 40px 0 16px; }
.blog-article-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 28px 0 12px; }
.blog-article-content p { margin-bottom: 20px; }
.blog-article-content ul, .blog-article-content ol { padding-left: 24px; margin-bottom: 20px; }
.blog-article-content li { margin-bottom: 8px; }
.blog-article-content a { color: var(--primary); text-decoration: underline; }
.blog-article-content img { max-width: 100%; border-radius: var(--radius); margin: 24px 0; }
.blog-article-content strong { color: var(--text); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } .blog-article-inner { padding: 32px 0 48px; } }
