/* =====================================================
   DP ReiseGlück – Haupt-Stylesheet
   Version: 3.0 | 2026 – Next Level Design
   ===================================================== */

/* ── Design Tokens ── */
:root {
  --gold:        #C9A447;
  --gold-light:  #E6C76B;
  --gold-dark:   #a8893a;
  --gold-glow:   rgba(201,164,71,.35);
  --dark:        #0f0e0e;
  --dark-2:      #1e1c1c;
  --dark-3:      #2b2a29;
  --muted:       #6b7280;
  --muted-light: #9ca3af;
  --light:       #f7f5f0;
  --light-2:     #faf9f6;
  --white:       #ffffff;
  --surface:     #ffffff;
  --border:      rgba(15, 23, 42, .08);
  --border-gold: rgba(201,164,71,.2);
  --radius:      18px;
  --radius-sm:   12px;
  --radius-xs:   8px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 12px rgba(2, 6, 23, .06);
  --shadow-md:   0 8px 32px rgba(2, 6, 23, .1);
  --shadow-lg:   0 20px 60px rgba(2, 6, 23, .14);
  --shadow-gold: 0 12px 40px rgba(201,164,71,.28);
  --ease:        cubic-bezier(.2, .8, .2, 1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --focus:       2px solid var(--gold);
  --nav-h:       84px;
  --transition:  .3s var(--ease);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: 'Space Grotesk', 'Montserrat', system-ui, sans-serif;
  color: var(--dark-3);
  background: #05080f;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Announcement-Bar (~36px) + fixierte Nav (--nav-h) = kein Overlap */
  padding-top: calc(36px + var(--nav-h));
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
/* touch-action: auto → Taps auf Buttons/Links funktionieren auf iOS zuverlässig */
button { cursor: pointer; font-family: inherit; touch-action: auto; }

/* Jede Section hat overflow-x: hidden → verhindert horizontales Durchbrechen */
section {
  scroll-margin-top: calc(var(--nav-h) + 20px);
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* Mobile Menu offen: kein Scrollen (wie Analyticsrocket) */
body.menu-open { overflow: hidden !important; }

/* Syne for all headlines */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', 'Montserrat', sans-serif;
  letter-spacing: -.02em;
  font-weight: 700;
}

/* Sections sitzen über dem Hintergrund */
section, footer, .site-nav, .announcement-bar,
.site-nav__drawer, .site-nav__overlay,
.cookie-banner, .scroll-top {
  position: relative;
  z-index: 1;
}

/* ── GSAP Reveal Classes ── */
.gsap-fade-up,
.gsap-fade-left,
.gsap-fade-right,
.gsap-scale-in,
.gsap-stagger > *,
.fade-up,
.fade-scale {
  opacity: 1 !important;
  transform: none !important;
}

/* ── Selection ── */
::selection { background: rgba(201,164,71,.2); color: var(--dark-2); }

/* ── Utilities ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-line {
  display: block;
  width: 60px;
  height: 4px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: .75rem auto 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .75rem;
  margin-bottom: .5rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .25s var(--ease-spring), box-shadow .25s var(--ease), background .2s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: #1d1a0f;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 48px rgba(201, 164, 71, .5);
  background-position: right center;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #1d1a0f;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-white {
  background: var(--white);
  color: var(--dark-2);
  box-shadow: 0 6px 24px rgba(0,0,0,.14);
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,.2);
  color: var(--gold);
}

a:focus-visible, button:focus-visible { outline: var(--focus); outline-offset: 3px; border-radius: 6px; }

/* ── Section Spacing ── */
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── Section Header ── */
.sec-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-header h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: .5rem;
  letter-spacing: -.025em;
}
.sec-header p { font-size: 1.05rem; color: var(--muted); max-width: 56ch; margin: 1rem auto 0; line-height: 1.7; }

/* ── Fade-Up Animation ── */
.fade-up.is-inview { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade-up, .fade-up.is-inview { opacity: 1; transform: none; transition: none; } }

/* ── Fade-In Scale ── */
.fade-scale.is-inview { opacity: 1; transform: none; }

/* ====================================================
   ANNOUNCEMENT BAR
   ==================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--dark-2) 0%, var(--dark-3) 50%, var(--dark-2) 100%);
  background-size: 200% auto;
  animation: shimmer-bar 6s linear infinite;
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  padding: .55rem 1rem;
  letter-spacing: .04em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 901;
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(201,164,71,.08) 50%, transparent 80%);
  animation: shimmer-bar 3s linear infinite;
}
.announcement-bar strong { color: var(--gold-light); }
@keyframes shimmer-bar {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ====================================================
   NAVIGATION – Single-Bar v4.0
   ==================================================== */

/* ── Core Bar ── */
.site-nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(15,14,14,.82);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(201,164,71,.18);
  box-shadow: 0 2px 32px rgba(0,0,0,.22);
  transition: transform .4s var(--ease), background .4s, box-shadow .4s, height .35s var(--ease);
}

/* Gold accent line at bottom */
.site-nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 25%, var(--gold-light) 75%, transparent 100%);
  opacity: .55;
}

.site-nav.is-hidden { transform: translateY(calc(-100% - 36px)); }
.site-nav.is-scrolled {
  height: 64px;
  background: rgba(15,14,14,.96);
  box-shadow: 0 6px 40px rgba(0,0,0,.35);
}

/* ── Inner Container ── */
.site-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0 2.5rem;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Logo ── */
.site-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-nav__logo img {
  height: clamp(65px, 7vw, 90px);
  width: auto;
  filter: brightness(1.08);
  transition: height .35s var(--ease), filter .3s;
}
.site-nav__logo:hover img { filter: brightness(1.25); }
.site-nav.is-scrolled .site-nav__logo img { height: 65px; }

/* ── Desktop Links ── */
.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .15rem;
}
.site-nav__links a {
  position: relative;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.72);
  padding: .5rem .8rem;
  border-radius: var(--radius-xs);
  transition: color .22s, background .22s;
}
/* Hover underline animation */
.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .8rem; right: .8rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .32s var(--ease-spring);
}
.site-nav__links a:hover { color: var(--gold-light); }
.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav__links a[aria-current="page"] { color: var(--gold); }

/* ── Actions (Phone + CTA) ── */
.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.site-nav__phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.65);
  transition: color .22s;
  white-space: nowrap;
}
.site-nav__phone i {
  color: var(--gold);
  font-size: .75rem;
}
.site-nav__phone:hover { color: var(--gold-light); }

/* Shared CTA button style */
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  color: #1a1500 !important;
  font-weight: 800;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .6rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(201,164,71,.4);
  transition: transform .25s var(--ease-spring), box-shadow .25s, background-position .4s;
  white-space: nowrap;
  flex-shrink: 0;
}
.site-nav__cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 30px rgba(201,164,71,.55);
  background-position: right center;
}

/* ── Burger Button ── */
.site-nav__burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,164,71,.3);
  border-radius: var(--radius-sm);
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.site-nav__burger:hover {
  border-color: var(--gold);
  background: rgba(201,164,71,.1);
}
.burger-bar {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s, width .3s var(--ease);
}
.site-nav__burger.is-active .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.site-nav__burger.is-active .burger-bar:nth-child(2) { opacity: 0; width: 0; }
.site-nav__burger.is-active .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ====================================================
   MOBILE DRAWER
   ==================================================== */
.site-nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100dvh;
  background: #0f0e0e;
  border-left: 1px solid rgba(201,164,71,.2);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
}
.site-nav__drawer.is-open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(201,164,71,.15);
}
.drawer__header img { height: 40px; width: auto; }
.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  transition: background .2s, color .2s, border-color .2s;
}
.drawer__close:hover { background: rgba(201,164,71,.15); border-color: var(--gold); color: var(--gold); }

.drawer__links {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
.drawer__links li + li { border-top: 1px solid rgba(255,255,255,.06); }
.drawer__links a {
  display: flex;
  align-items: center;
  padding: 1rem 1.75rem;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
  transition: color .22s, background .22s, padding-left .22s;
}
.drawer__links a:hover,
.drawer__links a[aria-current="page"] {
  color: var(--gold);
  background: rgba(201,164,71,.07);
  padding-left: 2.2rem;
}

.drawer__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(201,164,71,.15);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.drawer__phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.drawer__phone i { color: var(--gold); }
.drawer__phone:hover { color: var(--gold-light); }
.drawer__cta { width: 100%; text-align: center; }

/* ── Overlay ── */
.site-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(3px);
  z-index: 1090;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s var(--ease);
}
.site-nav__overlay.is-visible { opacity: 1; pointer-events: all; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .site-nav__inner { grid-template-columns: auto 1fr auto; gap: 0 1rem; }
  .site-nav__links { display: none; }
  .site-nav__phone span { display: none; }
  .site-nav__burger { display: inline-flex; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .announcement-bar { display: none; }
  .site-nav { top: 0; }
  body { padding-top: var(--nav-h); }
  .site-nav__actions { display: none; }
  .site-nav__inner { grid-template-columns: auto 1fr auto; }
}

/* Spacer – nicht mehr benötigt, Hero kalkuliert Höhe selbst */
.nav-spacer { display: none; }

/* =============================================
   NAV DROPDOWN – Fahrzeuge Untermenü
   ============================================= */

/* Trigger-Button (sieht aus wie ein normaler Nav-Link) */
.nav-has-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: rgba(255,255,255,.72);
  padding: .5rem .8rem;
  border-radius: var(--radius-xs);
  background: none;
  border: none;
  cursor: pointer;
  transition: color .22s;
  white-space: nowrap;
}
.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 4px; left: .8rem; right: .8rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .32s var(--ease-spring);
}
.nav-has-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.is-active { color: var(--gold-light); }
.nav-has-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.is-active::after { transform: scaleX(1); }
.nav-dropdown-trigger.is-active { color: var(--gold); }

/* Unsichtbare Brücke zwischen Trigger und Panel – kein Gap-Problem */
.nav-has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: .6rem;
}

.nav-dropdown-arrow {
  font-size: .6rem;
  transition: transform .25s;
  opacity: .7;
}
.nav-has-dropdown:hover .nav-dropdown-arrow,
.nav-has-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + .3rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: #0d1120;
  border: 1px solid rgba(201,164,71,.2);
  border-radius: 16px;
  padding: .5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 9999;
}
/* Hover öffnet Dropdown */
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.nav-dropdown__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .8rem 1rem;
  border-radius: 12px;
  color: rgba(255,255,255,.8) !important;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.nav-dropdown__item::after { display: none !important; }
.nav-dropdown__item:hover,
.nav-dropdown__item.is-active {
  background: rgba(201,164,71,.1);
  color: #fff !important;
}
.nav-dropdown__item.is-active .nav-dropdown__icon {
  background: rgba(201,164,71,.2);
  color: var(--gold);
}
.nav-dropdown__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
  transition: background .2s;
}
.nav-dropdown__text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.nav-dropdown__text strong {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Syne', sans-serif;
  letter-spacing: .02em;
}
.nav-dropdown__text span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Mobile Drawer Dropdown ── */
.drawer-has-dropdown .drawer-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 600;
  padding: .85rem 1.25rem;
  cursor: pointer;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.drawer-has-dropdown .drawer-dropdown-trigger:hover {
  background: rgba(255,255,255,.05);
  color: var(--gold);
}
.drawer-has-dropdown .drawer-dropdown-trigger i {
  font-size: .7rem;
  opacity: .6;
  transition: transform .25s;
}
.drawer-has-dropdown.is-open .drawer-dropdown-trigger i {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--gold);
}
.drawer-dropdown {
  list-style: none;
  padding: 0 0 .5rem .75rem;
  margin: 0;
  display: none;
}
.drawer-has-dropdown.is-open .drawer-dropdown {
  display: block;
}
.drawer-dropdown li a {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem 1.25rem;
  border-radius: 10px;
  color: rgba(255,255,255,.65) !important;
  font-size: .9rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.drawer-dropdown li a i {
  color: var(--gold);
  font-size: .85rem;
  width: 16px;
  text-align: center;
}
.drawer-dropdown li a:hover {
  background: rgba(201,164,71,.08);
  color: #fff !important;
}





/* ====================================================
/* ====================================================
   HERO – "Pack die Koffer" v4.0
   ==================================================== */

/* ── Core Shell ── */
.hero {
  position: relative;
  height: calc(100dvh - 36px - var(--nav-h));
  min-height: 520px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #05080f;
}

/* ── Sky Layers ── */
.hero__sky {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
/* Deaktiviert – Bild übernimmt den Hintergrund */
.hero__sky::before { display: none; }

/* Wolken ausblenden – Bild übernimmt den Hintergrund */
.hero__clouds { display: none; }

/* ── Hero Background Image ── */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/dpreiseglueckherobanner.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* ── Overlay – nur links abdunkeln für Text-Lesbarkeit ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(5,8,15,.88) 0%,
      rgba(5,8,15,.70) 30%,
      rgba(5,8,15,.30) 58%,
      rgba(5,8,15,.05) 100%);
  z-index: 1;
}

/* ── Road Dots (decorative dashed centre line effect) ── */
.hero__road-dots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  display: flex;
  gap: 18px;
  padding: 0 2rem;
  align-items: center;
  z-index: 2;
  opacity: .35;
}
.hero__road-dots span {
  flex: 1;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  animation: road-dash 2s linear infinite;
}
.hero__road-dots span:nth-child(2) { animation-delay: .4s; }
.hero__road-dots span:nth-child(3) { animation-delay: .8s; }
.hero__road-dots span:nth-child(4) { animation-delay: 1.2s; }
.hero__road-dots span:nth-child(5) { animation-delay: 1.6s; }
@keyframes road-dash {
  0%   { opacity: 1; }
  50%  { opacity: .15; }
  100% { opacity: 1; }
}

/* ── Inner Layout: Split 55/45 ── */
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
}

/* ── Content (Left) ── */
.hero__content { display: flex; flex-direction: column; }

/* Eyebrow Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.3);
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .4rem 1rem .4rem .7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
  width: fit-content;
  backdrop-filter: blur(8px);
}
.badge__dot {
  width: 7px; height: 7px;
  background: #3ecf60;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(62,207,96,.2);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(62,207,96,.2); }
  50%       { box-shadow: 0 0 0 7px rgba(62,207,96,.08); }
}
.hero__badge i { color: var(--gold); font-size: .8rem; }

/* Headline */
.hero__title {
  font-size: clamp(1.8rem, 1rem + 2.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -.025em;
}

/* ── Typewriter: highlight wird Zeichen für Zeichen aufgedeckt ── */
.hero__title-highlight {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 4s linear infinite;
  /* Typewriter clip: startet bei width 0, JS setzt --tw-w */
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}

/* Blinkender Cursor nach dem getippten Text */
.hero__title-highlight::after {
  content: '|';
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  font-weight: 300;
  margin-left: 2px;
  animation: cursor-blink 0.75s step-end infinite;
  opacity: 1;
}
/* Cursor ausblenden sobald Typewriter fertig */
.hero__title-highlight.typing-done::after {
  animation: cursor-blink 1.2s step-end infinite;
}
.hero__title-highlight.cursor-off::after {
  display: none;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
@keyframes text-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 220% center; }
}

/* Sub text */
.hero__sub {
  font-size: clamp(.9rem, .82rem + .4vw, 1.08rem);
  color: rgba(255,255,255,.65);
  max-width: 44ch;
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

/* ── Hero Content: Stagger-Einblendung ── */
@keyframes hero-slide-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fallback: ohne JS / hero-loaded → alles sichtbar */
.hero__badge,
.hero__title-line1,
.hero__title-highlight,
.hero__sub,
.hero__ctas,
.hero__trust {
  opacity: 1;
}

body.hero-loaded .hero__badge {
  animation: hero-slide-up 0.55s cubic-bezier(.22,.68,0,1.1) 0.1s both;
}
body.hero-loaded .hero__title-line1 {
  animation: hero-slide-up 0.55s cubic-bezier(.22,.68,0,1.1) 0.2s both;
}
/* highlight (Zeile 2) kommt per Typewriter – kein slide-up, nur opacity */
body.hero-loaded .hero__title-highlight {
  opacity: 0;
  /* JS setzt opacity:1 wenn Typewriter startet */
}
body.hero-loaded .hero__sub {
  animation: hero-slide-up 0.55s cubic-bezier(.22,.68,0,1.1) 0.35s both;
}
body.hero-loaded .hero__ctas {
  animation: hero-slide-up 0.55s cubic-bezier(.22,.68,0,1.1) 0.5s both;
}
body.hero-loaded .hero__trust {
  animation: hero-slide-up 0.55s cubic-bezier(.22,.68,0,1.1) 0.65s both;
}

/* CTAs */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.6rem;
}
.hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding-bottom: .15rem;
  transition: color .25s, border-color .25s, gap .25s var(--ease-spring);
}
.hero__btn-ghost:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  gap: .85rem;
}

/* Trust row */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.hero__trust-item i { color: var(--gold); font-size: .85rem; }
.hero__trust-divider { color: rgba(255,255,255,.2); font-size: 1.2rem; }

/* ── Visual (Right) ── */
.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-start;
}

/* ── Floating Cards ── */
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  padding: 1rem 1.25rem;
  width: 100%;
  transition: transform .4s var(--ease), box-shadow .4s;
  animation: float-card 6s ease-in-out infinite;
}
.hero__card--main { animation-duration: 7s; }
.hero__card--stats { animation-delay: -3.5s; animation-duration: 8s; }
.hero__card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* Card Top Row */
.hero-card__top {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.2rem;
}
.hero-card__icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(201,164,71,.2), rgba(201,164,71,.06));
  border: 1px solid rgba(201,164,71,.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card__icon i { color: var(--gold); font-size: 1rem; }
.hero-card__label { font-size: .72rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .18rem; }
.hero-card__value { font-size: .98rem; color: #fff; font-weight: 700; }
.hero-card__live {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #3ecf60;
  background: rgba(62,207,96,.12);
  border: 1px solid rgba(62,207,96,.3);
  border-radius: var(--radius-pill);
  padding: .2rem .55rem;
  animation: live-blink 2.5s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* Route Line */
.hero-card__route {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.route__point {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.route__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: 2px solid rgba(255,255,255,.4);
  flex-shrink: 0;
}
.route__dot--gold {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 10px rgba(201,164,71,.5);
}
.route__line {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding-left: .2rem;
}
.route__line-inner {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    rgba(201,164,71,.5) 0px, rgba(201,164,71,.5) 8px,
    transparent 8px, transparent 16px
  );
  border-radius: 1px;
}
.route__icon {
  color: var(--gold);
  font-size: 1rem;
  animation: bounce-x .8s ease-in-out infinite alternate;
}
@keyframes bounce-x {
  from { transform: translateX(-2px); }
  to   { transform: translateX(4px); }
}

/* ── Destination Pills ── */
.hero__destinations {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding-left: .2rem;
}
.dest-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  cursor: default;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-spring);
}
.dest-pill i { font-size: .8rem; }
.dest-pill--active,
.dest-pill:hover {
  background: rgba(201,164,71,.15);
  border-color: rgba(201,164,71,.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}
/* Cycle active class via CSS animation */
.dest-pill:nth-child(1) { animation: pill-pulse 10s 0s infinite; }
.dest-pill:nth-child(2) { animation: pill-pulse 10s 2s infinite; }
.dest-pill:nth-child(3) { animation: pill-pulse 10s 4s infinite; }
.dest-pill:nth-child(4) { animation: pill-pulse 10s 6s infinite; }
.dest-pill:nth-child(5) { animation: pill-pulse 10s 8s infinite; }
@keyframes pill-pulse {
  0%, 18%, 100% { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.55); transform: translateY(0); }
  2%, 16%        { background: rgba(201,164,71,.15); border-color: rgba(201,164,71,.4); color: var(--gold-light); transform: translateY(-2px); }
}

/* ── Stats Mini-Card ── */
.hero__card--stats { display: flex; align-items: center; gap: 1.5rem; }
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: .25rem; flex: 1; }
.hero-stat__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat__stars { display: flex; gap: .15rem; color: var(--gold); font-size: .65rem; }
.hero-stat__label { font-size: .7rem; color: rgba(255,255,255,.45); text-align: center; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.hero-stat__divider { width: 1px; height: 50px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── Scroll Indicator ── */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.3);
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(201,164,71,.7), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    min-height: calc(100dvh - 36px - var(--nav-h));
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem 3rem;
  }
  .hero__visual {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero__card--main { min-width: 280px; flex: 1; }
  .hero__card--stats { flex: 1; min-width: 200px; }
  .hero__destinations { width: 100%; }
  .hero__title { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}
@media (max-width: 640px) {
  .hero {
    height: auto;
    min-height: calc(100dvh - var(--nav-h));
  }
  .hero__visual { flex-direction: column; }
  .hero__card--main, .hero__card--stats { width: 100%; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__trust-divider { display: none; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .hero__scroll { display: none; }
}

/* ====================================================
   STATS SECTION
   ==================================================== */
.stats-section {
  background: #080b13;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
/* nahtloser Übergang vom Hero */
.stats-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 100px;
  background: var(--dark);
  clip-path: ellipse(60% 100% at 50% 0%);
  pointer-events: none;
  z-index: 0;
}
/* gold glow im Hintergrund */
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 15% 60%, rgba(201,164,71,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 40%, rgba(201,164,71,.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-item {
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: background .3s, border-color .3s, transform .3s var(--ease-spring);
}
/* gold shimmer top border */
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}
/* hover glow */
.stat-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(201,164,71,.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .35s;
}
.stat-item:hover {
  background: rgba(201,164,71,.05);
  border-color: rgba(201,164,71,.22);
  transform: translateY(-4px);
}
.stat-item:hover::before { opacity: 1; }
.stat-item:hover::after  { opacity: 1; }

/* Icon */
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.18);
  display: grid; place-items: center;
  margin: 0 auto 1.1rem;
  position: relative; z-index: 1;
  transition: background .3s, transform .3s var(--ease-spring);
}
.stat-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}
.stat-item:hover .stat-icon {
  background: rgba(201,164,71,.18);
  transform: scale(1.1) rotate(-4deg);
}

.stat-num {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -.025em;
  position: relative; z-index: 1;
}
.stat-suffix { font-size: 1.2rem; font-weight: 700; }
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .6rem;
  position: relative; z-index: 1;
}

/* ====================================================
   ROUTE SECTION
   ==================================================== */
/* ====================================================
   ROUTE SECTION
   ==================================================== */
.route-section {
  background: transparent;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}

/* ── Destination Cards ── */
.dest-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.dest-card-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  opacity: .6;
  flex-shrink: 0;
}
.dest-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: .7rem 1rem;
  backdrop-filter: blur(12px);
  transition: border-color .35s, background .35s, box-shadow .35s, transform .35s;
  cursor: default;
  min-width: 130px;
}
.dest-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .35s;
}
.dest-card__info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.dest-card__info strong {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Syne', sans-serif;
}
.dest-card__info span {
  font-size: .68rem;
  color: rgba(255,255,255,.45);
}
.dest-card__km {
  margin-left: auto;
  font-size: .68rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}
/* Active state – when caravan arrives */
.dest-card--active {
  border-color: var(--gold);
  background: rgba(201,164,71,.1);
  box-shadow: 0 0 24px rgba(201,164,71,.25), inset 0 0 12px rgba(201,164,71,.06);
  transform: translateY(-3px) scale(1.03);
}
.dest-card--active .dest-card__icon {
  transform: scale(1.25) rotate(-8deg);
}
.dest-card--cta {
  border-color: rgba(201,164,71,.3);
}

/* ── Map container ── */
.route-map {
  position: relative;
  margin-top: 1rem;
  padding-bottom: 4rem;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 4.5rem;
}

/* SVG Track */
.route-svg {
  width: 100%;
  height: 200px;
  overflow: visible;
  display: block;
}
.route-svg-path {
  filter: drop-shadow(0 0 10px rgba(201,164,71,.55));
}

/* Caravan */
#route-caravan {
  will-change: transform;
}

/* Progress bar under SVG */
.route-progress-bar {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
}
.route-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  transition: width .1s linear;
  box-shadow: 0 0 8px rgba(201,164,71,.6);
}

/* Waypoints overlay */
.route-waypoints {
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: 1.5rem;
  height: 200px;
  pointer-events: none;
}
.route-waypoint {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  transform: translateX(-50%);
  bottom: 0;
}
.route-waypoint:nth-child(1) { bottom: 58px; }
.route-waypoint:nth-child(2) { bottom: 18px; }
.route-waypoint:nth-child(3) { bottom: 62px; }
.route-waypoint:nth-child(4) { bottom: 80px; }
.route-waypoint:nth-child(5) { bottom: 70px; }

.waypoint-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.35);
  flex-shrink: 0;
}
.waypoint-dot--gold {
  background: var(--gold);
  border-color: var(--gold-light);
  box-shadow: 0 0 14px rgba(201,164,71,.7);
}
.waypoint-dot--pulse {
  background: var(--gold-light);
  border-color: var(--gold);
  animation: waypoint-pulse 1.8s ease-in-out infinite;
}
@keyframes waypoint-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,164,71,.6); }
  50%       { box-shadow: 0 0 0 10px rgba(201,164,71,0); }
}

.waypoint-label {
  background: rgba(10,10,15,.7);
  border: 1px solid rgba(201,164,71,.2);
  border-radius: 8px;
  padding: .3rem .6rem;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.waypoint-label span {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  font-family: 'Syne', sans-serif;
}

/* on-path SVG dots */
.rw-dot { transition: r .3s; }

@media (max-width: 768px) {
  .dest-cards { gap: .35rem; }
  .dest-card { min-width: unset; padding: .5rem .7rem; }
  .dest-card-arrow { display: none; }
  .route-map { padding: 1rem 1rem 4rem; }
  .route-svg { height: 140px; }
}

/* ====================================================
   VORTEILE – FEATURE ROWS
   ==================================================== */
/* ====================================================
   VORTEILE SECTION – Fullscreen Background
   ==================================================== */
.adv-section {
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* ── Hintergrundbild ── */
.adv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.adv-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.04);
  filter: saturate(0.7);
}
/* Dunkles Overlay – oben + unten stark abdunkeln, Mitte leicht */
.adv-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,8,15,.95) 0%,
      rgba(5,8,15,.55) 30%,
      rgba(5,8,15,.55) 70%,
      rgba(5,8,15,.97) 100%),
    linear-gradient(105deg,
      rgba(5,8,15,.7) 0%,
      transparent 60%);
}
/* Körnige Textur für Tiefe */
.adv-bg__noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* Gold-Glow-Punkte für Drama */
.adv-section::before {
  content: '';
  position: absolute;
  top: 15%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,164,71,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── Content wrapper ── */
.adv-wrap {
  position: relative;
  z-index: 2;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

/* ── Section Header ── */
.adv-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.adv-header .eyebrow { justify-content: center; }
.adv-header h2 {
  font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: .75rem 0 1rem;
}
.adv-intro {
  font-size: clamp(.9rem, .85rem + .3vw, 1.05rem);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 auto;
}

/* ── 4-Card Grid ── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* ── Feature Card ── */
.adv-card {
  background: rgba(10,12,20,.65);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background .35s, border-color .35s,
              transform .35s var(--ease-spring), box-shadow .35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
/* Shimmer-Linie oben */
.adv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,164,71,.5) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity .35s;
}
.adv-card:hover::before { opacity: 1; }
.adv-card:hover {
  background: rgba(201,164,71,.09);
  border-color: rgba(201,164,71,.28);
  transform: translateY(-5px);
  box-shadow:
    0 20px 50px rgba(0,0,0,.5),
    0 0 40px rgba(201,164,71,.08),
    inset 0 1px 0 rgba(201,164,71,.15);
}

/* Gold-Karte */
.adv-card--gold {
  border-color: rgba(201,164,71,.22);
  background: rgba(201,164,71,.07);
}
.adv-card--gold::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,71,.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Icon wrap */
.adv-card__icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(201,164,71,.12);
  border: 1px solid rgba(201,164,71,.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease-spring), background .3s, box-shadow .3s;
}
.adv-card__icon-wrap i {
  font-size: 1.15rem;
  color: var(--gold);
}
.adv-card:hover .adv-card__icon-wrap {
  background: rgba(201,164,71,.2);
  transform: scale(1.1) rotate(-8deg);
  box-shadow: 0 4px 16px rgba(201,164,71,.25);
}

/* Card text */
.adv-card h3 {
  font-size: .98rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.adv-card p {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}

/* Checks */
.adv-card__checks {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: .85rem;
}
.adv-card__checks li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}
.adv-card__checks li i {
  font-size: .65rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: rgba(201,164,71,.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Bottom: CTA + Trust ── */
.adv-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.adv-bottom .btn {
  padding: .95rem 2.5rem;
  font-size: 1rem;
}

/* ── Trust bar ── */
.adv-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 99px;
  padding: .85rem 2rem;
  backdrop-filter: blur(12px);
}
.adv-trust__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .3rem 1.5rem;
  flex-shrink: 0;
}
.adv-trust__item svg { width: 18px; height: 18px; flex-shrink: 0; }
.adv-trust__item div { display: flex; flex-direction: column; line-height: 1.2; }
.adv-trust__item strong {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.adv-trust__item span { font-size: .7rem; color: rgba(255,255,255,.4); }
.adv-trust__div { width: 1px; height: 28px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .adv-grid { grid-template-columns: 1fr; }
  .adv-trust { border-radius: 16px; flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem 1.5rem; }
  .adv-trust__div { display: none; }
  .adv-trust__item { padding: 0; }
}

/* ====================================================
   ÜBER UNS SECTION
   ==================================================== */
/* ====================================================
   ÜBER UNS – Fullheight Splitscreen
   ==================================================== */
.about-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

/* ── Split: Bild links, Text rechts – kein wrap, kein padding ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

/* ── Bild-Spalte: füllt die gesamte Hälfte randlos ── */
.about-img-col {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.about-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Gold-Linie rechts am Bild als Trenner */
.about-img-line {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

/* ── Text-Spalte ── */
.about-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding: 4rem clamp(2rem, 5vw, 5rem);
}

.about-name {
  font-size: clamp(2.2rem, 1.2rem + 3vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0;
}

/* Trennlinie */
.about-divider-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
}

.about-body {
  font-size: clamp(.92rem, .85rem + .3vw, 1.05rem);
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  margin: 0;
}
.about-body strong {
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

/* Zitat */
.about-quote {
  margin: .25rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  font-size: clamp(.95rem, .88rem + .3vw, 1.1rem);
  font-style: italic;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  background: rgba(201,164,71,.05);
  border-radius: 0 12px 12px 0;
}

/* Meta-Zeile */
.about-meta {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.about-meta-item {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 0 0;
  gap: .15rem;
}
.about-meta-item:first-child { padding-left: 0; }
.about-meta-item strong {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.about-meta-item span {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.about-meta-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  margin-right: 1.5rem;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .about-split {
    grid-template-columns: 1fr;
  }
  .about-img-col {
    height: 380px;
  }
  .about-img-line {
    top: auto; right: 0; bottom: 0; left: 0;
    width: 100%; height: 3px;
  }
  .about-text-col {
    padding: 2.5rem 1.5rem;
  }
}
@media (max-width: 580px) {
  .about-meta { flex-wrap: wrap; gap: 1rem; }
  .about-meta-sep { display: none; }
  .about-meta-item { padding: 0; }
  .about-img-col { height: 280px; }
}


/* ====================================================
   FAHRZEUGE / WOHNWAGEN
   ==================================================== */
/* ====================================================
   FAHRZEUGE — 2-Spalten Card Grid
   ==================================================== */
.vehicles-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Überschriften auf dunklem Hintergrund sichtbar machen */
.vehicles-section .sec-header h2 { color: #fff; }
.vehicles-section .sec-header p   { color: rgba(255,255,255,.55); }

.veh-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(100px); opacity: .12;
}
.veh-orb--1 { width: 520px; height: 520px; background: var(--gold);       top: -140px; left: -160px; }
.veh-orb--2 { width: 400px; height: 400px; background: var(--gold-light);  bottom: -100px; right: -100px; }

/* ── 2-Spalten Grid ── */
.veh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

/* ── Einzelne Card ── */
.veh-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(201,164,71,.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease-spring), border-color .3s, box-shadow .3s;
  animation-delay: var(--delay, 0s);
  position: relative;
}
.veh-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,164,71,.5);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(201,164,71,.1);
}

/* Beliebt-Badge */
.veh-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 5;
  background: var(--gold);
  color: #000;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 4px 13px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(201,164,71,.4);
}

/* ── Slider ── */
.veh-card .slider {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.veh-card .slider a {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s ease;
  display: block; pointer-events: none;
}
.veh-card .slider a.is-active { opacity: 1; pointer-events: auto; }
.veh-card .slider img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Pfeil-Buttons — links & rechts */
.veh-card .slider-controls {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 .75rem;
  pointer-events: none;
  z-index: 4;
}
.veh-card .slider-prev,
.veh-card .slider-next {
  width: 38px; height: 38px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,164,71,.4);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: var(--gold);
  cursor: pointer; pointer-events: auto;
  transition: background .2s, transform .2s var(--ease-spring);
}
.veh-card .slider-prev:hover,
.veh-card .slider-next:hover {
  background: var(--gold); color: #000; transform: scale(1.1);
}

/* Dots */
.veh-card .slider-dots {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: .4rem;
  z-index: 4;
}
.veh-card .slider-dot {
  width: 7px; height: 7px; border-radius: 50px;
  background: rgba(255,255,255,.38); border: none; cursor: pointer;
  transition: background .25s, width .3s var(--ease);
}
.veh-card .slider-dot.active { background: var(--gold); width: 22px; }

/* ── Card Body ── */
.veh-card__body {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  border-top: 1px solid rgba(201,164,71,.12);
}

/* Name + Preis + Button-Zeile */
.veh-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}
.veh-card__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.veh-card__price {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
.veh-card__price strong {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
}
.veh-card__btn {
  padding: .55rem 1.15rem !important;
  font-size: .8rem !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Feature-Chips */
.veh-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
  padding: 0; margin: 0;
}
.veh-card__chips li {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,164,71,.14);
  border-radius: 50px;
  padding: .3rem .8rem;
  transition: background .2s, border-color .2s, color .2s;
}
.veh-card__chips li:hover {
  background: rgba(201,164,71,.1);
  border-color: rgba(201,164,71,.4);
  color: var(--gold-light);
}
.veh-card__chips li i { color: var(--gold); font-size: .72rem; }

/* Badge-Variante: Neu im Angebot */
.veh-card__badge--new {
  background: linear-gradient(135deg, #1a6b3c, #25a05c);
  color: #fff;
}

/* CTA-Reihe mit 2 Buttons */
.veh-cta-row {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .veh-grid { grid-template-columns: 1fr; }
  .veh-card .slider { height: 240px; }
}

/* =============================================================
   WOHNMOBIL – EIGENE SEKTION (Startseite)
   ============================================================= */
.wm-home-section {
  background: #080b13;
  position: relative;
  overflow: hidden;
}
.wm-home-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 95% 50%, rgba(201,164,71,.07) 0%, transparent 70%);
  pointer-events: none;
}
.wm-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wm-home-slider-wrap .vehicle-slider-card {
  border: 1px solid rgba(201,164,71,.25);
  border-radius: 1.25rem;
  overflow: hidden;
}
.wm-home-slider-wrap .slider { height: 340px; }

/* Text-Seite */
.wm-home-badge {
  display: inline-block;
  background: rgba(201,164,71,.12);
  border: 1px solid rgba(201,164,71,.35);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.wm-home-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin: .4rem 0 1rem;
}
.wm-home-text > p {
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

/* Feature-Liste */
.wm-home-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.wm-home-features li {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.wm-home-features li i {
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

/* CTAs */
.wm-home-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .wm-home-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .wm-home-text h2 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .wm-home-slider-wrap .slider { height: 240px; }
  .wm-home-actions { flex-direction: column; }
  .wm-home-actions .btn { text-align: center; }
}






/* ====================================================
   INFO / WAS DU WISSEN SOLLTEST – Bento Grid
   ==================================================== */
.info-section {
  position: relative;
  background: #080b13;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

/* Dekorative Hintergrund-Linien */
.info-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.info-bg__line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(201,164,71,.12), transparent);
  height: 1px;
  width: 100%;
}
.info-bg__line--1 { top: 28%; }
.info-bg__line--2 { top: 68%; }
.info-bg__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,71,.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* Header */
.info-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.info-header h2 {
  font-size: clamp(1.9rem, 1rem + 2.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.info-header__sub {
  color: rgba(255,255,255,.45);
  font-size: 1rem;
  max-width: 42ch;
  margin: 0 auto;
}

/* ── Bento Grid ── */
.info-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

/* Karten-Grundstil */
.info-tile {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1.4rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  animation-delay: var(--delay, 0s);
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0; /* verhindert Grid-Overflow */
  box-sizing: border-box;
}
.info-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(201,164,71,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

/* Grid-Platzierung */
.info-tile--wide {
  grid-column: span 2;
}
.info-tile--check {
  grid-column: span 2;
}

/* Icon */
.info-tile__icon {
  font-size: 2rem;
  margin-bottom: .9rem;
  display: block;
  line-height: 1;
}

/* Tag / Badge */
.info-tile__tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(201,164,71,.9);
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.25);
  border-radius: 100px;
  padding: .25rem .75rem;
  margin-bottom: .7rem;
}
.info-tile__tag--green {
  color: rgba(62,207,96,.9);
  background: rgba(62,207,96,.1);
  border-color: rgba(62,207,96,.25);
}

/* Titel */
.info-tile__title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .85rem;
  line-height: 1.3;
  word-break: break-word;
}
.info-tile__title span {
  color: var(--gold);
}

/* Große Zahl */
.info-tile__big-num {
  font-size: clamp(1.8rem, 1rem + 2vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  margin: .4rem 0 .6rem;
  letter-spacing: -.025em;
  word-break: break-all;
}

/* Notiz / Subtext */
.info-tile__note {
  font-size: .8rem;
  color: rgba(255,255,255,.38);
  line-height: 1.55;
  margin-top: .4rem;
  word-break: break-word;
}

/* Liste */
.info-tile__list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.info-tile__list li {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}
.info-tile__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.info-tile__fine {
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  font-style: italic;
}

/* Saison-Grid (Mindestmietdauer) */
.info-tile__season-grid {
  display: flex;
  align-items: stretch;
  gap: .5rem;
  margin: .75rem 0 .5rem;
  flex-wrap: nowrap;
}
.info-tile__season {
  flex: 1;
  text-align: center;
  min-width: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: .6rem .4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
}
.info-tile__season-label {
  display: block;
  font-size: .62rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.info-tile__season-val {
  display: block;
  font-size: clamp(.9rem, 0.4rem + 1.2vw, 1.2rem);
  font-weight: 800;
  color: #fff;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.info-tile__season-div {
  width: 1px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
  align-self: stretch;
  margin: .4rem 0;
}

/* Gold Karte */
.info-tile--gold {
  background: linear-gradient(135deg, rgba(201,164,71,.15) 0%, rgba(201,164,71,.05) 100%);
  border-color: rgba(201,164,71,.3);
}
.info-tile--gold:hover { border-color: rgba(201,164,71,.6); }

/* Extras-Zeile */
.info-tile__extras-row {
  display: grid;
  gap: .65rem;
  margin-top: .5rem;
}
.info-tile__extra-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: .6rem .85rem;
  min-width: 0;
}
.info-tile__extra-icon { font-size: 1.2rem; flex-shrink: 0; }
.info-tile__extra-name {
  flex: 1;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-tile__extra-price {
  font-size: .9rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
  white-space: nowrap;
}
.info-tile__extra-price small {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.4);
}

/* Start-Check Karte */
.info-tile--check {
  background: linear-gradient(135deg, rgba(62,207,96,.08) 0%, rgba(62,207,96,.02) 100%);
  border-color: rgba(62,207,96,.2);
}
.info-tile--check:hover { border-color: rgba(62,207,96,.4); }
.info-tile__checklist { display: grid; gap: .55rem; margin-top: .3rem; }
.info-tile__check-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.info-tile__check-item i {
  width: 20px; height: 20px;
  background: rgba(62,207,96,.15);
  border: 1px solid rgba(62,207,96,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: #3ecf60;
  flex-shrink: 0;
}

/* Warning Karte */
.info-tile--warn {
  background: linear-gradient(135deg, rgba(239,68,68,.08) 0%, rgba(239,68,68,.02) 100%);
  border-color: rgba(239,68,68,.2);
}
.info-tile--warn:hover { border-color: rgba(239,68,68,.4); }
.info-tile--warn .info-tile__title { color: #fca5a5; }
.info-tile--warn .info-tile__list li::before { color: #f87171; }

/* Glow auf der großen Karte */
.info-tile__glow {
  position: absolute;
  bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,71,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .info-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .info-tile--wide,
  .info-tile--check { grid-column: span 2; }
}
@media (max-width: 560px) {
  .info-bento { grid-template-columns: 1fr; }
  .info-tile--wide,
  .info-tile--check { grid-column: span 1; }
  .info-tile__big-num { font-size: 2.2rem; }
  .info-tile__season-val { font-size: 1.1rem; }
}

/* ====================================================
   BOOKING / BUCHUNG
   ==================================================== */
.booking-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
/* Dunkle Welle oben als sauberer Übergang von der vorherigen dunklen Sektion */
.booking-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: #080b13;
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
  z-index: 0;
}
.booking-inner {
  position: relative;
  z-index: 1;
}
/* Texte in Buchungssektion dunkel (weißer Hintergrund) */
.booking-section .sec-header h2 { color: var(--dark); }
.booking-section .sec-header p  { color: var(--muted); }
.booking-section .eyebrow        { color: var(--gold); }
.tx-booking { min-height: 500px; }

/* ====================================================
   BEWERTUNGEN / REVIEWS
   ==================================================== */
/* ——— Reviews: dark theme ——— */
.reviews-section {
  background: #080b13;
  overflow: hidden;
  position: relative;
}
.reviews-section::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: #ffffff;
  clip-path: ellipse(55% 100% at 50% 0%);
  pointer-events: none;
  z-index: 0;
}
.reviews-section .wrap { position: relative; z-index: 1; }
.reviews-section .sec-header h2 { color: #fff; }
.reviews-section .sec-header p  { color: rgba(255,255,255,.55); }
.reviews-section .eyebrow        { color: var(--gold); }

.google-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,164,71,.25);
  border-radius: var(--radius);
  margin-bottom: 3rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.google-summary::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,71,.1) 0%, transparent 70%);
}
.g-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; position: relative; z-index: 1; }
.g-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.g-stars { display: flex; gap: .25rem; }
.g-stars i { color: #fbbc04; font-size: 1.4rem; }
.g-score .score { font-size: 2rem; font-weight: 800; line-height: 1; color: #fff; }
.g-score .votes { font-size: .82rem; color: rgba(255,255,255,.5); display: block; margin-top: .2rem; }

.carousel-track-container { overflow: hidden; position: relative; }
.carousel-track-container::before,
.carousel-track-container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.carousel-track-container::before { left: 0; background: linear-gradient(90deg, #080b13, transparent); }
.carousel-track-container::after  { right: 0; background: linear-gradient(-90deg, #080b13, transparent); }

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  animation: scroll 55s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - .75rem)); }
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1.75rem;
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease-spring), border-color .25s;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(201,164,71,.4); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.reviewer-info { display: flex; gap: .85rem; align-items: center; }
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.15rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.reviewer-details h4 { font-size: .95rem; font-weight: 800; margin-bottom: .25rem; color: #fff; }
.review-meta { display: flex; align-items: center; gap: .3rem; }
.review-meta i { color: #fbbc04; font-size: .75rem; }
.review-date { font-size: .78rem; color: rgba(255,255,255,.45); }
.g-source { height: 18px; opacity: .5; filter: brightness(0) invert(1); }
.review-text { font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ——— Reviews CTA — Splitscreen mit Bild ——— */
.reviews-cta {
  margin-top: 4rem;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  border: 1px solid rgba(201,164,71,.2);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

/* linke Hälfte: Text */
.reviews-cta__text {
  padding: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(135deg, #0d1120 0%, #080b13 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.reviews-cta__text::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at -10% 50%, rgba(201,164,71,.13) 0%, transparent 65%);
  pointer-events: none;
}
.reviews-cta__text > * { position: relative; z-index: 1; }
.reviews-cta__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.reviews-cta__text h3 {
  font-size: clamp(1.5rem, 1rem + 2vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.reviews-cta__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0;
}

/* rechte Hälfte: Bild */
.reviews-cta__img {
  position: relative;
  overflow: hidden;
}
.reviews-cta__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.reviews-cta__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #080b13 0%, transparent 30%);
  z-index: 1;
}

/* responsive */
@media (max-width: 760px) {
  .reviews-cta {
    grid-template-columns: 1fr;
  }
  .reviews-cta__img {
    height: 260px;
    order: -1;
  }
  .reviews-cta__img::before {
    background: linear-gradient(180deg, transparent 40%, #080b13 100%);
  }
}

/* ====================================================
   KONTAKT / STANDORT
   ==================================================== */
.contact-section { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-cards { display: grid; gap: 1rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.25);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-card-icon i { font-size: 1.2rem; color: var(--gold); }
.contact-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.contact-card a, .contact-card p { font-size: .93rem; color: var(--muted); }
.contact-card a:hover { color: var(--gold); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(201,164,71,.25);
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* Socials */
.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201,164,71,.35); }
.social-card i { font-size: 2rem; color: var(--gold); display: block; margin-bottom: .6rem; }
.social-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.social-card a { font-size: .88rem; color: var(--muted); }
.social-card a:hover { color: var(--gold); }

/* ====================================================
   PAGE HERO (Unterseiten)
   ==================================================== */
.page-hero {
  background: linear-gradient(160deg, #1e1c1c 0%, #2b2a29 100%);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% -20%, rgba(201,164,71,.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 {
  font-size: clamp(2rem, 1.3rem + 3.5vw, 3.75rem);
  color: var(--white);
  font-weight: 700;
  margin: .5rem 0 1rem;
  line-height: 1.1;
}
.page-hero p { font-size: clamp(1rem, .9rem + .4vw, 1.2rem); color: rgba(255,255,255,.72); max-width: 55ch; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  justify-content: center;
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ====================================================
   PRICE TABLE
   ==================================================== */

/* =============================================
   SUBPAGE HERO – Split-Layout wie Startseite, aber kompakter
   ============================================= */

.subpage-hero {
  position: relative;
  /* Deutlich kürzer als die Startseite */
  min-height: 400px;
  height: clamp(400px, 48vh, 560px);
  display: flex;
  align-items: center;
  background: #05080f;
  overflow: hidden;
}

/* Gleiches Hintergrundbild wie Startseite – rechts */
.subpage-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/dpreiseglueckherobanner.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Smooth Übergang: links komplett schwarz → rechts Bild sichtbar */
.subpage-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* Haupt-Übergang links → rechts */
    linear-gradient(90deg,
      #05080f              0%,
      #05080f             30%,
      rgba(5,8,15,.92)    42%,
      rgba(5,8,15,.70)    54%,
      rgba(5,8,15,.35)    68%,
      rgba(5,8,15,.08)    82%,
      transparent        100%),
    /* Oben abdunkeln */
    linear-gradient(180deg,
      rgba(5,8,15,.6)   0%,
      transparent       40%,
      transparent       70%,
      rgba(5,8,15,.55) 100%);
  z-index: 1;
}

/* Goldene Trennlinie unten */
.subpage-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(201,164,71,.5) 0%,
    rgba(201,164,71,.15) 55%,
    transparent 100%);
  z-index: 3;
}

/* Grid: links Text, rechts frei (Bild im Hintergrund) – identisch mit .hero__inner */
.subpage-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  width: 100%;
}

/* Linke Spalte: Textinhalt */
.subpage-hero__content {
  display: flex;
  flex-direction: column;
}

/* Breadcrumb */
.subpage-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: .9rem;
}

/* Eyebrow-Badge – identisch mit .hero__badge aber ohne dot */
.subpage-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.3);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: .9rem;
  width: fit-content;
}
.subpage-hero__eyebrow i { font-size: .75rem; }

/* Titel */
.subpage-hero__title {
  font-size: clamp(1.7rem, 1rem + 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 .9rem;
  letter-spacing: -.025em;
}
.subpage-hero__title .text-gold {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 4s linear infinite;
}

/* Untertext */
.subpage-hero__sub {
  font-size: clamp(.88rem, .8rem + .4vw, 1rem);
  color: rgba(255,255,255,.62);
  max-width: 42ch;
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

/* Badges (Trust-Zeile) */
.subpage-hero__badges {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

/* Responsive – unter 900px: nur linke Spalte, Bild im Hintergrund bleibt */
@media (max-width: 900px) {
  .subpage-hero__inner {
    grid-template-columns: 1fr;
  }
  .subpage-hero {
    height: auto;
    min-height: 320px;
    padding: clamp(5rem, 12vw, 7rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  }
  .subpage-hero__bg {
    background-position: right -60px center;
    opacity: .18;
  }
}
@media (max-width: 600px) {
  .subpage-hero__title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

.price-section { background: var(--light); }
.price-table-wrap { overflow-x: auto; }
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.price-table th {
  background: linear-gradient(135deg, var(--dark-2), #3a3530);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.price-table th:first-child { color: var(--gold-light); }
.price-table td { padding: .9rem 1.25rem; font-size: .93rem; border-bottom: 1px solid var(--border); color: var(--dark-2); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: rgba(201,164,71,.04); }
.price-table .price-highlight { color: var(--gold); font-weight: 700; font-size: 1.05rem; }
.price-note {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(201,164,71,.08);
  border: 1px solid rgba(201,164,71,.25);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  color: var(--muted);
}
.price-note strong { color: var(--dark-2); }

/* ====================================================
   EXTRAS / BUCHUNGSKONDITIONEN SECTION
   ==================================================== */
.extras-section { background: var(--white); }

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.extra-box {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s;
}
.extra-box:hover,
.extra-box[data-open="true"] {
  border-color: rgba(201,164,71,.45);
}

.extra-box h3 {
  margin: 0;
  font-size: 1rem;
}

.extra-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  color: var(--dark-2);
  text-align: left;
  transition: color .2s;
}
.extra-toggle:hover { color: var(--gold); }
.extra-box[data-open="true"] .extra-toggle { color: var(--gold); }

.extra-toggle .chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .3s ease, color .2s;
}
.extra-box[data-open="true"] .chevron {
  transform: rotate(180deg);
  color: var(--gold);
}

.extra-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
}
.extra-content ul {
  margin: 0;
  padding: .25rem 1.25rem 1.1rem 2.25rem;
  list-style: disc;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
}
.extra-content ul li::marker { color: var(--gold); }

/* ====================================================
   KONTAKT SEITE – kt-* Klassen
   ==================================================== */
.kt-section { background: var(--dark); }

/* Reaktionszeit Badge */
.kt-response-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.3);
  border-radius: 99px;
  padding: .45rem 1.1rem;
  font-size: .85rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
}
.kt-response-badge i { font-size: .8rem; }
.kt-response-badge strong { color: var(--gold); }

/* Grid */
.kt-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem 4rem;
  align-items: start;
}

/* Info-Spalte */
.kt-section .eyebrow { display: block; margin-bottom: .5rem; }
.kt-section h2 { color: var(--white); font-size: clamp(1.8rem, 1rem + 2.5vw, 2.8rem); margin-bottom: .75rem; }
.kt-sub { color: rgba(255,255,255,.55); font-size: .93rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* Google Badge */
.kt-google-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: .75rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
}
.kt-google-badge .fa-star { color: var(--gold); font-size: .8rem; }
.kt-google-badge strong { color: var(--white); }

/* Kontakt-Cards */
.kt-cards { display: flex; flex-direction: column; gap: .65rem; }

.kt-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: var(--white);
  transition: border-color .2s, background .2s, transform .2s;
}
.kt-card:not(.kt-card--static):hover {
  border-color: rgba(201,164,71,.4);
  background: rgba(201,164,71,.06);
  transform: translateX(4px);
}
.kt-card--static { cursor: default; }

.kt-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.kt-card-icon--gold  { background: var(--gold); color: #05080f; }
.kt-card-icon--wa    { background: #25D366; color: #fff; }
.kt-card-icon--mail  { background: rgba(255,255,255,.12); color: var(--white); }
.kt-card-icon--loc   { background: rgba(201,164,71,.15); color: var(--gold); }
.kt-card-icon--time  { background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }

.kt-card-body { flex: 1; }
.kt-card-label { font-size: .75rem; color: rgba(255,255,255,.45); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.kt-card-val   { font-size: .93rem; font-weight: 600; color: var(--white); margin-top: .1rem; }

.kt-card-arrow { font-size: .7rem; color: rgba(255,255,255,.25); flex-shrink: 0; }
.kt-card:hover .kt-card-arrow { color: var(--gold); }

/* Social Buttons */
.kt-social {
  display: flex;
  gap: .65rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.kt-social-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s, background .2s;
}
.kt-social-btn--ig:hover { border-color: #E1306C; color: #E1306C; background: rgba(225,48,108,.08); }
.kt-social-btn--tt:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }

/* Formular-Card */
.kt-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.kt-form-header { margin-bottom: 1.75rem; }
.kt-form-header h3 { font-size: 1.3rem; color: var(--white); margin-bottom: .3rem; }
.kt-form-header p  { font-size: .88rem; color: rgba(255,255,255,.45); margin: 0; }

/* Formular-Felder im Dark-Design */
.kt-form-card .form-group label { color: rgba(255,255,255,.65); }
.kt-form-card .form-group input,
.kt-form-card .form-group select,
.kt-form-card .form-group textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.kt-form-card .form-group input::placeholder,
.kt-form-card .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.kt-form-card .form-group input:focus,
.kt-form-card .form-group select:focus,
.kt-form-card .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,164,71,.06);
}
.kt-form-card .form-group select option { background: #0e1218; color: var(--white); }
.kt-form-card .form-check { color: rgba(255,255,255,.5); }
.kt-form-card .form-check a { color: var(--gold); }

/* Karten-Sektion */
.kt-map-section { background: #080b13; }
.kt-map-section .sec-header h2 { color: var(--white); }
.kt-map-section .sec-header p  { color: rgba(255,255,255,.5); }
.kt-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  margin-top: 2rem;
}
.kt-map-wrap iframe { display: block; }
.kt-map-btn { text-align: center; margin-top: 1.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .kt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .kt-form-card { padding: 1.5rem; }
}

/* ====================================================
   FAQ SECTION
   ==================================================== */
.faq-section { background: var(--white); }
.faq-list { display: grid; gap: .8rem; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-btn {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-2);
  cursor: pointer;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(201,164,71,.12);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background .2s, transform .3s;
}
.faq-item.is-open .faq-icon { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 1.25rem 1.1rem; color: var(--muted); font-size: .93rem; line-height: 1.65; }

/* ====================================================
   CONTACT FORM
   ==================================================== */
.form-section { background: var(--light); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

.form-info h2 { font-size: clamp(1.6rem, 1.1rem + 1.8vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.form-info p { color: var(--muted); margin-bottom: .75rem; }
.form-trust {
  display: grid;
  gap: .75rem;
  margin-top: 1.75rem;
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
  color: var(--dark-2);
}
.form-trust-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--dark-2); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .93rem;
  color: var(--dark-2);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,71,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .84rem;
  color: var(--muted);
  margin: 1rem 0;
}
.form-privacy input { width: 16px; height: 16px; accent-color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.form-privacy a { color: var(--gold); }
.form-submit-btn {
  width: 100%;
  padding: .95rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1d1a0f;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 22px rgba(201,164,71,.3);
}
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,164,71,.45); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success svg { width: 56px; height: 56px; color: var(--gold); margin: 0 auto 1rem; }
.form-success h4 { font-size: 1.3rem; margin-bottom: .5rem; }
.form-success p { color: var(--muted); }

/* ====================================================
   FOOTER – Premium Dark
   ==================================================== */
.footer {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.footer::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,164,71,.05) 0%, transparent 65%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px)  { .footer-grid { grid-template-columns: 1fr; text-align: center; } }

.footer-logo { height: 56px; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: .9; }
@media (max-width: 580px) { .footer-logo { margin: 0 auto 1rem; } }
.footer-desc { font-size: .88rem; color: rgba(255,255,255,.45); line-height: 1.7; }

.footer-col h4 {
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-col ul { display: grid; gap: .6rem; }
.footer-col ul a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color .2s, padding-left .2s; display: inline-block; }
.footer-col ul a:hover { color: var(--gold-light); padding-left: .35rem; }
.footer-col ul li { display: flex; align-items: flex-start; gap: .65rem; }
.footer-col ul li i { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: .15rem; }
.footer-col ul li span,
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.5); }
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }
@media (max-width: 580px) { .footer-socials { justify-content: center; } }
.footer-social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  transition: color .2s, border-color .2s, background .2s, transform .25s var(--ease-spring);
}
.footer-social-btn:hover { color: var(--gold-light); border-color: var(--gold); background: rgba(201,164,71,.12); transform: translateY(-3px); }

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ====================================================
   FLOATING ELEMENTS
   ==================================================== */

/* Scroll-to-top Button */
.scroll-top {
  position: fixed;
  right: 24px; bottom: 100px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-gold);
  color: var(--gold);
  display: grid; place-items: center;
  z-index: 9000;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s var(--ease-spring), background .2s, color .2s;
  pointer-events: none;
}
.scroll-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ====================================================
   COOKIE BANNER
   ==================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(160%);
  width: min(880px, calc(100vw - 2rem));
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  transition: transform .5s var(--ease);
  flex-wrap: wrap;
  border: 1px solid rgba(201,164,71,.15);
}
.cookie-banner.is-visible { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: .88rem; color: rgba(255,255,255,.75); flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1d1a0f;
  border: none;
  border-radius: var(--radius-pill);
  padding: .6rem 1.35rem;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.cookie-btn-accept:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  padding: .6rem 1.1rem;
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.9); }

/* ====================================================
   DATENSCHUTZ / IMPRESSUM
   ==================================================== */
.legal-section { background: var(--white); }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--dark-2); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); margin-bottom: .75rem; line-height: 1.7; font-size: .95rem; }
.legal-content a { color: var(--gold); }
.legal-content ul { list-style: disc; padding-left: 1.5rem; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.legal-content ul li { margin-bottom: .35rem; }

/* ====================================================
   RESPONSIVE GLOBAL
   ==================================================== */
@media (max-width: 768px) {
  .veh-grid { grid-template-columns: 1fr; }
  .veh-slider-wrap .slider { height: 260px; }
  .map-wrap iframe { height: 300px; }
}
@media (max-width: 480px) {
  .vehicle-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .stat-num { font-size: 2rem; }
  .scroll-top { right: 16px; bottom: 90px; }
}

/* ============================================================
   WOHNWAGEN PAGE  –  ww-* classes
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.ww-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: #080b13;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 6rem);
}
.ww-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,164,71,.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 20%, rgba(201,164,71,.05) 0%, transparent 60%);
  pointer-events: none;
}
.ww-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,15,.6) 0%, rgba(8,11,19,.8) 100%);
  pointer-events: none;
}
.ww-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.ww-hero__inner h1 {
  font-size: clamp(2rem, 1.2rem + 3.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: .75rem 0 1.25rem;
}
.ww-hero__sub {
  font-size: clamp(1rem, .8rem + .8vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ww-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.ww-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(201,164,71,.35);
  background: rgba(201,164,71,.08);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.ww-badge i {
  color: var(--gold);
  font-size: .8rem;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.3); }
.breadcrumb span { color: var(--gold); }

/* ── Vehicle sections ───────────────────────────────────────── */
.ww-vehicle-section {
  background: #080b13;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.ww-vehicle-section--alt {
  background: #05080f;
}
.ww-vehicle-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.ww-vehicle-header h2 {
  font-size: clamp(1.8rem, 1rem + 2.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: .5rem 0 1rem;
}
.ww-vehicle-header p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(255,255,255,.62);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── Vehicle grid ───────────────────────────────────────────── */
.ww-vehicle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.ww-vehicle-grid--reverse {
  direction: rtl;
}
.ww-vehicle-grid--reverse > * {
  direction: ltr;
}

/* ── Slider card (wohnwagen.php / wohnmobil.php) ─────── */
.ww-slider {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  position: relative;
}

/* Slider-Wrapper: alle Bilder übereinandergestapelt */
.ww-slider .slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}
.ww-slider .slider a {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .55s ease;
  display: block;
  pointer-events: none;
}
.ww-slider .slider a.is-active {
  opacity: 1;
  pointer-events: auto;
}
.ww-slider .slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pfeil-Buttons */
.ww-slider .slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 .85rem;
  pointer-events: none;
  z-index: 4;
}
.ww-slider .slider-prev,
.ww-slider .slider-next {
  width: 42px; height: 42px;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,164,71,.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: var(--gold);
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s, transform .2s var(--ease-spring);
}
.ww-slider .slider-prev:hover,
.ww-slider .slider-next:hover {
  background: var(--gold);
  color: #000;
  transform: scale(1.1);
}

/* Dots */
.ww-slider .slider-dots {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: .45rem;
  z-index: 4;
}
.ww-slider .slider-dot {
  width: 7px; height: 7px;
  border-radius: 50px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  transition: background .25s, width .3s var(--ease);
}
.ww-slider .slider-dot.active {
  background: var(--gold);
  width: 22px;
}

/* ── Vehicle info panel ─────────────────────────────────────── */
.ww-vehicle-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* ── Price badge ────────────────────────────────────────────── */
.ww-price-badge {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  padding: 1.1rem 1.5rem;
  background: rgba(201,164,71,.08);
  border: 1px solid rgba(201,164,71,.3);
  border-radius: 16px;
  width: fit-content;
}
.ww-price-from {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}
.ww-price-num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  font-family: 'Syne', sans-serif;
}
.ww-price-unit {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ── Features list ──────────────────────────────────────────── */
.ww-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ww-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  transition: border-color .25s, background .25s;
}
.ww-feature:hover {
  background: rgba(201,164,71,.06);
  border-color: rgba(201,164,71,.22);
}
.ww-feature__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(201,164,71,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.05rem;
}
.ww-feature h4 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 .25rem;
}
.ww-feature p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
  margin: 0;
}

/* ── Specs grid ─────────────────────────────────────────────── */
.ww-specs h3 {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.ww-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.ww-spec {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
}
.ww-spec span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}
.ww-spec strong {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.ww-spec--gold {
  color: var(--gold) !important;
}

/* ── Divider ────────────────────────────────────────────────── */
.ww-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,164,71,.25) 30%, rgba(201,164,71,.25) 70%, transparent);
}

/* ── CTA section ────────────────────────────────────────────── */
.ww-cta-section {
  position: relative;
  background: #05080f;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  text-align: center;
}
.ww-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,164,71,.09) 0%, transparent 70%);
  pointer-events: none;
}
.ww-cta__inner {
  position: relative;
  z-index: 1;
}
.ww-cta__inner h2 {
  font-size: clamp(1.8rem, 1rem + 2.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: .75rem 0 1rem;
}
.ww-cta__inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.ww-cta__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ww-vehicle-grid,
  .ww-vehicle-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .ww-vehicle-grid--reverse > * {
    direction: ltr;
  }
  .ww-slider .slider img {
    height: 280px;
  }
  .ww-slider .slider {
    height: 280px;
  }
}
@media (max-width: 600px) {
  .ww-hero__inner h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .ww-hero__badges {
    gap: .5rem;
  }
  .ww-badge {
    font-size: .78rem;
    padding: .38rem .85rem;
  }
  .ww-specs-grid {
    grid-template-columns: 1fr;
  }
  .ww-slider .slider img {
    height: 230px;
  }
  .ww-slider .slider {
    height: 230px;
  }
}

/* ============================================================
   WOHNMOBIL PAGE  –  wm-* classes
   ============================================================ */

/* Bildplatzhalter bis Fotos da sind */
.wm-placeholder {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wm-placeholder__inner {
  text-align: center;
  color: rgba(255,255,255,.3);
}
.wm-placeholder__inner i {
  font-size: 4rem;
  color: rgba(201,164,71,.3);
  display: block;
  margin-bottom: 1rem;
}
.wm-placeholder__inner p {
  font-size: .9rem;
  margin: 0;
}

/* Vergleichs-Sektion */
.wm-compare-section {
  background: #05080f;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.wm-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.wm-compare-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  transition: border-color .25s, transform .25s;
}
.wm-compare-card:hover {
  border-color: rgba(255,255,255,.15);
  transform: translateY(-4px);
}
.wm-compare-card--gold {
  border-color: rgba(201,164,71,.3);
  background: rgba(201,164,71,.05);
}
.wm-compare-card--gold:hover {
  border-color: rgba(201,164,71,.5);
}
.wm-compare-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(201,164,71,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.wm-compare-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 .3rem;
}
.wm-compare-card__sub {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin: 0 0 1.25rem;
}
.wm-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.wm-compare-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: rgba(255,255,255,.72);
}
.wm-compare-list li i {
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .wm-compare-grid {
    grid-template-columns: 1fr;
  }
  .wm-placeholder {
    min-height: 220px;
  }
}

/* ── Wohnmobil-Unterseite: eigenes Hero-Bild ── */
.subpage-hero--wohnmobil .subpage-hero__bg {
  background-image: url('../img/wohnmobilhero.png');
  background-size: cover;
  background-position: right center;
}

/* ── Wohnwagen-Unterseite: eigenes Hero-Bild ── */
.subpage-hero--wohnwagen .subpage-hero__bg {
  background-image: url('../img/wohnwagenhero.png');
  background-size: cover;
  background-position: right center;
}

/* ── Buchen-Unterseite: Hero-Bild ── */
.subpage-hero--buchen .subpage-hero__bg {
  background-image: url('../img/dpreiseglueckherobanner.png');
  background-size: contain;
  background-position: right center;
}

/* ── Über-uns-Unterseite: eigenes Hero-Bild ── */
.subpage-hero--ueber-uns .subpage-hero__bg {
  background-image: url('../img/ueberunsheroo.png');
  background-size: cover;
  background-position: right center;
}

/* ── Kontakt-Unterseite: Hero-Bild ── */
.subpage-hero--kontakt .subpage-hero__bg {
  background-image: url('../img/dpreiseglueckherobanner.png');
  background-size: contain;
  background-position: right center;
}

/* ====================================================
   ÜBER UNS – SEITE
   ==================================================== */

/* Story-Sektion: Bild + Text nebeneinander */
.about-section { background: var(--dark); }

/* Über-uns Seite: about-section überschreibt min-height für bessere Proportionen */
.au-about-section { min-height: 560px; }
.au-about-section .about-split { min-height: 560px; }
.au-about-section .about-img-photo {
  object-position: top center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem 4rem;
  align-items: center;
}

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 420px;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-text h2 { font-size: clamp(1.6rem, 1rem + 2vw, 2.4rem); margin-bottom: 1rem; }
.about-text p  { color: var(--muted); line-height: 1.8; margin-bottom: .85rem; }

.about-quote {
  background: var(--light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  font-style: italic;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.75;
  margin: 1.25rem 0;
}
.about-quote strong { color: var(--dark-2); font-style: normal; }

.about-highlight {
  background: rgba(201,164,71,.08);
  border: 1px solid rgba(201,164,71,.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark-2);
  line-height: 1.6;
}
.about-highlight strong { color: var(--gold); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap { max-height: 300px; }
}

/* Werte-Sektion */
.au-values-section { background: var(--dark); }
.au-values-section .sec-header h2 { color: var(--white); }
.au-values-section .sec-header p   { color: rgba(255,255,255,.6); }

.au-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.au-value-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.au-value-card:hover {
  border-color: rgba(201,164,71,.4);
  transform: translateY(-4px);
}
.au-value-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,164,71,.12);
  border: 1px solid rgba(201,164,71,.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  font-size: 1.3rem;
  color: var(--gold);
}
.au-value-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}
.au-value-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 0;
}

/* Zahlen-Sektion */
.au-stats-section { background: #080b13; }
.au-stats-section .sec-header h2 { color: var(--white); }

.au-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.au-stat-card {
  text-align: center;
  padding: 2.2rem 1rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: border-color .25s;
}
.au-stat-card:hover { border-color: rgba(201,164,71,.35); }
.au-stat-num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-head);
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.au-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: .55rem;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.au-stat-label i { color: var(--gold); font-size: .75rem; }

/* Bewertungen-Sektion */
.au-reviews-section { background: var(--dark); }
.au-reviews-section .sec-header h2 { color: var(--white); }

.au-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.au-review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color .25s, transform .25s;
}
.au-review-card:hover {
  border-color: rgba(201,164,71,.35);
  transform: translateY(-3px);
}
.au-review-stars { color: var(--gold); font-size: .9rem; letter-spacing: .1rem; }
.au-review-text {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}
.au-review-author {
  display: flex; align-items: center; gap: .75rem;
  margin-top: auto;
}
.au-review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  color: var(--white);
  flex-shrink: 0;
}
.au-review-author strong {
  font-size: .88rem;
  color: var(--white);
}
.au-reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   DIAGNOSE-FUNNEL  (diagnose.php)
   ============================================================ */

/* Hero */
.diag-hero {
  padding: 120px 0 50px;
  background: linear-gradient(160deg, #1a1507 0%, #0d0c06 60%, #000 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.diag-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(201,164,71,.18) 0%, transparent 65%);
  pointer-events: none;
}
.diag-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.diag-hero__inner h1 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.diag-hero__inner p {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.diag-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,164,71,.1);
  border: 1px solid rgba(201,164,71,.35);
  border-radius: 99px;
  padding: .3rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

/* Section */
.diag-section {
  background: #0c0b07;
  padding: 3rem 0 5rem;
}

/* Card */
.diag-card {
  max-width: 620px;
  margin: 0 auto;
  background: #15130a;
  border: 1px solid rgba(201,164,71,.18);
  border-radius: 20px;
  padding: 2.25rem 2.25rem 2.5rem;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  position: relative;
  overflow: hidden;
}
.diag-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 20px 20px 0 0;
}

/* Progress */
.diag-progress {
  height: 4px;
  background: rgba(255,255,255,.07);
  border-radius: 99px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.diag-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  transition: width .4s ease;
}

/* Schritt-Zähler */
.diag-step-counter {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

/* Schritt */
.diag-step { display: none; }
.diag-step.active { display: block; }

/* Frage */
.diag-q {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 1.5rem;
}
.diag-q-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin: -.9rem 0 1.4rem;
}

/* Antwort-Buttons */
.diag-opts {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.diag-opts--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.diag-opt {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .9rem 1.1rem;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.diag-opt:hover {
  border-color: rgba(201,164,71,.5);
  background: rgba(201,164,71,.06);
  color: #fff;
  transform: translateX(3px);
}
.diag-opt.selected {
  border-color: var(--gold);
  background: rgba(201,164,71,.1);
  color: #fff;
}
.diag-opt__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,164,71,.12);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--gold);
  transition: background .2s;
}
.diag-opt.selected .diag-opt__icon,
.diag-opt:hover .diag-opt__icon {
  background: rgba(201,164,71,.2);
}

/* Formular */
.diag-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.diag-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.diag-field label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.diag-field label i { color: var(--gold); }
.diag-field input {
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .95rem;
  color: #fff;
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.diag-field input:focus {
  border-color: var(--gold);
}
.diag-field input::placeholder {
  color: rgba(255,255,255,.25);
}
.diag-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.diag-form__privacy a { color: var(--gold); text-decoration: underline; }
.diag-form__privacy input[type="checkbox"] {
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.diag-submit {
  width: 100%;
  padding: .95rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  margin-top: .25rem;
}
.diag-error {
  background: rgba(220,38,38,.12);
  border: 1px solid rgba(220,38,38,.35);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .85rem;
  color: #fca5a5;
}

/* Ergebnis */
.diag-result {
  text-align: center;
  padding: .5rem 0;
}
.diag-result__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #1a1507;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 40px rgba(201,164,71,.35);
}
.diag-result h2 {
  font-size: 1.55rem;
  color: #fff;
  margin: 0 0 1rem;
}
.diag-result__text {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.diag-result__kanal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,164,71,.08);
  border: 1px solid rgba(201,164,71,.25);
  border-radius: 10px;
  padding: .6rem 1.1rem;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
}
.diag-result__kanal a { color: var(--gold); text-decoration: underline; }

/* Nav Highlight-Link (Kostenlose Analyse) */
.site-nav__links .nav-highlight-link {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: #1a1507 !important;
  font-weight: 700;
  padding: .4rem 1rem !important;
  border-radius: 8px;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.site-nav__links .nav-highlight-link:hover {
  opacity: .88;
  transform: translateY(-1px);
}

/* Trust Strip */
.diag-trust {  max-width: 620px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.diag-trust span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.diag-trust i { color: rgba(201,164,71,.6); font-size: .72rem; }

/* Responsive */
@media (max-width: 540px) {
  .diag-card { padding: 1.5rem 1.25rem 2rem; }
  .diag-opts--cols { grid-template-columns: 1fr; }
  .diag-q { font-size: 1.1rem; }
}


/* ============================================================
   GLOBALE MOBILE OPTIMIERUNG – DP ReiseGlück
   Alle kritischen Bereiche für Smartphones (≤ 480px)
   ============================================================ */

/* ── Basis: kein horizontales Overflow ── */
html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after { box-sizing: border-box; }

@media (max-width: 480px) {

  /* ── Abstände global verkleinern ── */
  .section-pad,
  .ww-cta-section,
  .stats-section,
  .about-section,
  .vehicles-section,
  .reviews-section,
  .contact-section,
  .info-section,
  .booking-section,
  .faq-section { padding-top: 3rem; padding-bottom: 3rem; }

  /* ── Überschriften kleiner auf kleinen Screens ── */
  .sec-header h2,
  .ww-cta__inner h2,
  .about-name,
  .wm-home-text h2 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 1.2;
  }

  /* ── Hero ── */
  .hero__title {
    font-size: clamp(1.7rem, 8vw, 2.2rem) !important;
    line-height: 1.15;
  }
  .hero__sub { font-size: .92rem; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; text-align: center; justify-content: center; }
  .hero__card--main { padding: 1.25rem; }

  /* ── Navigation Logo ── */
  .site-nav__logo img { height: 52px !important; }

  /* ── Buttons immer volle Breite auf Handy ── */
  .ww-cta__btns { flex-direction: column; }
  .ww-cta__btns .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Fahrzeugkarten ── */
  .veh-card .slider { height: 210px; }
  .veh-card__body { padding: 1.25rem; }
  .veh-card__name { font-size: 1.3rem; }
  .veh-card__actions { flex-direction: column; gap: .6rem; }
  .veh-card__actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── Über-Uns Split ── */
  .about-img-col { height: 240px !important; }
  .about-text-col { padding: 2rem 1.25rem !important; }
  .about-meta { flex-direction: column; gap: .75rem; }
  .about-meta-sep { display: none; }
  .about-quote { font-size: .9rem; padding: 1rem 1.25rem; }

  /* ── Info Bento ── */
  .info-bento { grid-template-columns: 1fr !important; }
  .info-tile--wide,
  .info-tile--check { grid-column: span 1 !important; }

  /* ── Vorteile Cards ── */
  .adv-grid { grid-template-columns: 1fr !important; }
  .adv-trust { flex-direction: column; align-items: flex-start; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: .75rem; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-val { font-size: 2rem; }

  /* ── Bewertungen ── */
  .reviews-carousel-container { padding: 0 .5rem; }
  .review-card { padding: 1.25rem; }
  .reviews-cta { grid-template-columns: 1fr !important; }
  .reviews-cta__img { height: 200px !important; }

  /* ── Kontakt ── */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-card { flex-direction: column; gap: .75rem; }

  /* ── Buchung / Wohnmobil ── */
  .wm-home-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .wm-home-slider-wrap .slider { height: 210px; }
  .wm-home-actions { flex-direction: column; }
  .wm-home-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* ── FAQ ── */
  .faq-btn { font-size: .92rem; padding: 1rem 1.1rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }

  /* ── Wrap / Container kein seitliches Überlaufen ── */
  .wrap, .container { padding-left: 1.1rem; padding-right: 1.1rem; max-width: 100%; }

  /* ── Announcement Bar auf Mobil ausblenden ── */
  .announcement-bar { display: none !important; }
  .site-nav { top: 0 !important; }

  /* ── Subpage Hero ── */
  .subpage-hero__title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .subpage-hero__inner { padding: 2rem 1.25rem; }

  /* ── Preistabelle ── */
  .price-table { font-size: .85rem; }
  .price-table th, .price-table td { padding: .6rem .75rem; }

  /* ── Extras-Grid ── */
  .extras-grid { grid-template-columns: 1fr 1fr !important; }
}

/* Mittlere Tablets (481–768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .hero__ctas { flex-wrap: wrap; }
  .hero__ctas .btn { flex: 1 1 calc(50% - .5rem); text-align: center; justify-content: center; }
  .veh-card__actions { flex-wrap: wrap; }
  .wm-home-actions { flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .subpage-hero__title { font-size: clamp(1.8rem, 5vw, 2.5rem) !important; }
}

/* Touch-Tap-Targets: mindestens 44x44px (Apple HIG) */
@media (max-width: 768px) {
  .btn, .faq-btn, .site-nav__cta, .site-nav__phone,
  .carousel-btn, .nav-dropdown-trigger {
    min-height: 44px;
    min-width: 44px;
  }
  /* Kein Hover-Effekt auf Touch-Geräten (verhindert stuck-hover) */
  .veh-card:hover { transform: none; }
  .contact-card:hover { transform: none; }
  .adv-card:hover { transform: none; }
}

/* ── Auswahl-Banner auf buchen.php ── */
.avail-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(201,164,71,.12), rgba(201,164,71,.06));
  border: 1px solid rgba(201,164,71,.4);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.avail-banner__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #1a1507;
}
.avail-banner__info { flex: 1; min-width: 0; }
.avail-banner__label {
  font-size: .68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gold); display: block; margin-bottom: .35rem;
}
.avail-banner__dates {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap; margin-bottom: .3rem;
}
.avail-banner__dates span { font-size: .9rem; color: var(--text); }
.avail-banner__dates strong { font-weight: 800; color: var(--heading); }
.avail-banner__sep { color: var(--gold); font-size: 1.1rem; }
.avail-banner__days {
  background: var(--gold); color: #1a1507;
  font-size: .72rem; font-weight: 800;
  padding: .2rem .6rem; border-radius: 20px; white-space: nowrap;
}
.avail-banner__fzg {
  font-size: .82rem; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: .4rem;
}
.avail-banner__change {
  flex-shrink: 0;
  font-size: .8rem; font-weight: 700;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(201,164,71,.4);
  border-radius: 8px; padding: .45rem .9rem;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.avail-banner__change:hover {
  background: var(--gold); color: #1a1507;
}
@media (max-width: 600px) {
  .avail-banner { padding: 1rem; gap: .85rem; }
  .avail-banner__dates { gap: .4rem; }
  .avail-banner__change { width: 100%; text-align: center; }
}

/* ── FAQ CTA ── */
.faq-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.faq-cta p {
  flex: 1;
  min-width: 200px;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}
@media (max-width: 600px) {
  .faq-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .faq-cta p { flex: none; }
  .faq-cta .btn { justify-content: center; }
}

/* ============================================================
   MOBILE OPTIMIERUNG – KOMPLETT (≤ 768px / ≤ 480px)
   DP ReiseGlück – alle Sektionen
   ============================================================ */

/* ── Basis ── */
html, body { overflow-x: hidden; -webkit-text-size-adjust: 100%; }
img, video, iframe { max-width: 100%; }

/* ── Touch-Targets 44×44px ── */
@media (max-width: 768px) {
  .btn, .faq-btn, .slider-prev, .slider-next,
  .slider-dot, .site-nav__cta, .site-nav__phone,
  .carousel-btn, .scroll-top {
    min-height: 44px; min-width: 44px;
  }
  /* Kein Hover-Effekt auf Touch */
  .veh-card:hover,
  .adv-card:hover,
  .au-value-card:hover,
  .wm-compare-card:hover { transform: none !important; }

  /* ── Nav ── */
  .site-nav__actions { display: none; }
  .announcement-bar { display: none !important; }
  .site-nav { top: 0 !important; }

  /* ── Subpage Hero ── */
  .subpage-hero__inner {
    grid-template-columns: 1fr !important;
    padding: 3rem 1.25rem 2.5rem;
  }
  .subpage-hero__title { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; line-height: 1.15; }
  .subpage-hero__sub { font-size: .9rem; }
  .subpage-hero__badges { flex-wrap: wrap; gap: .5rem; }
  .hero__trust-divider { display: none; }

  /* ── Hero Startseite ── */
  .hero__inner { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.25rem 3rem; }
  .hero__title { font-size: clamp(1.75rem, 7vw, 2.4rem) !important; }
  .hero__sub { font-size: .9rem; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__visual { flex-direction: column; }
  .hero__card--main, .hero__card--stats { width: 100%; }
  .hero__scroll { display: none; }

  /* ── Stats ── */
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: .75rem; }
  .stat-item { padding: 1.5rem .75rem; }
  .stat-val { font-size: 1.9rem; }

  /* ── Fahrzeugkarten (index.php) ── */
  .veh-grid { grid-template-columns: 1fr !important; }
  .veh-card .slider { height: 220px; }
  .veh-card__body { padding: 1.25rem; }
  .veh-card__name { font-size: 1.25rem; }
  .veh-card__actions { flex-direction: column; gap: .6rem; }
  .veh-card__actions .btn { width: 100%; justify-content: center; }
  .veh-card__chips { flex-wrap: wrap; gap: .4rem; }

  /* ── Wohnmobil-Sektion (Startseite) ── */
  .wm-home-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .wm-home-slider-wrap .slider { height: 220px; }
  .wm-home-actions { flex-direction: column; }
  .wm-home-actions .btn { width: 100%; justify-content: center; }

  /* ── Wohnwagen/Wohnmobil Unterseite ── */
  .ww-vehicle-grid,
  .ww-vehicle-grid--reverse { grid-template-columns: 1fr !important; direction: ltr; }
  .ww-vehicle-grid--reverse > * { direction: ltr !important; }
  .ww-slider .slider,
  .ww-slider .slider img { height: 230px; }
  .ww-features { grid-template-columns: 1fr !important; gap: 1rem; }
  .ww-specs-grid { grid-template-columns: 1fr 1fr !important; }
  .ww-price-badge { flex-direction: row; justify-content: flex-start; gap: .35rem; }
  .ww-cta__btns { flex-direction: column; align-items: stretch; }
  .ww-cta__btns .btn { width: 100%; justify-content: center; }
  .ww-vehicle-header { text-align: left; }

  /* ── Vergleichsgrid (Wohnmobil-Seite) ── */
  .wm-compare-grid { grid-template-columns: 1fr !important; }

  /* ── Kontakt ── */
  .kt-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .kt-form-wrap iframe { min-height: 360px !important; }
  .kt-social { flex-wrap: wrap; gap: .6rem; }
  .kt-social-btn { flex: 1 1 calc(50% - .3rem); justify-content: center; text-align: center; }

  /* ── Über uns ── */
  .about-split { grid-template-columns: 1fr !important; }
  .about-img-col { height: 260px !important; }
  .about-img-line { top: auto; bottom: 0; left: 0; right: 0; width: 100% !important; height: 3px !important; }
  .about-text-col { padding: 2rem 1.25rem !important; }
  .about-meta { flex-wrap: wrap; gap: .75rem; }
  .about-meta-sep { display: none !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .about-img-wrap { max-height: 260px; }

  /* ── Vorteile ── */
  .adv-grid { grid-template-columns: 1fr 1fr !important; }
  .adv-trust { flex-direction: column; align-items: flex-start; gap: .75rem; padding: 1.25rem; }
  .adv-trust__div { display: none; }

  /* ── Destinations / Route ── */
  .dest-cards { gap: .35rem; }
  .dest-card { min-width: unset; padding: .5rem .65rem; font-size: .8rem; }
  .dest-card-arrow { display: none; }
  .route-map { padding: .75rem .75rem 3rem; }
  .route-svg { height: 120px; }

  /* ── Bewertungen ── */
  .reviews-carousel-container { padding: 0 .25rem; }
  .review-card { padding: 1.25rem; }
  .reviews-cta { grid-template-columns: 1fr !important; }
  .reviews-cta__img { height: 180px !important; }
  .reviews-cta__actions { flex-direction: column; }
  .reviews-cta__actions .btn { width: 100%; justify-content: center; }

  /* ── Info Bento ── */
  .info-bento { grid-template-columns: 1fr !important; }
  .info-tile--wide,
  .info-tile--check,
  .info-tile--tall { grid-column: span 1 !important; grid-row: span 1 !important; }

  /* ── Buchungsformular ── */
  .form-grid { grid-template-columns: 1fr !important; }
  .form-row  { grid-template-columns: 1fr !important; }
  .booking-grid { grid-template-columns: 1fr !important; }
  .booking-summary { position: static !important; }

  /* ── CTA Banner ── */
  .ww-cta__inner h2 { font-size: clamp(1.6rem, 6vw, 2.2rem) !important; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; text-align: center; }
  .footer-logo { margin: 0 auto 1rem !important; }
  .footer-socials { justify-content: center !important; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .75rem; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: .75rem; }

  /* ── Cookie Banner ── */
  .cookie-banner { padding: 1rem 1.25rem; gap: 1rem; }
  .cookie-btns { width: 100%; justify-content: stretch; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }

  /* ── Preistabelle ── */
  .price-table { font-size: .82rem; }
  .price-table th, .price-table td { padding: .55rem .65rem; }

  /* ── Scroll-Top ── */
  .scroll-top { right: 14px; bottom: 80px; width: 40px; height: 40px; }
}

/* ── Nur sehr kleine Screens (≤ 480px) ── */
@media (max-width: 480px) {
  .wrap, .container { padding-left: 1rem; padding-right: 1rem; }
  .section-pad { padding-top: 3rem !important; padding-bottom: 3rem !important; }

  .sec-header h2,
  .ww-vehicle-header h2 { font-size: clamp(1.5rem, 7vw, 1.9rem) !important; }

  .hero__title { font-size: clamp(1.65rem, 8.5vw, 2rem) !important; }
  .subpage-hero__title { font-size: clamp(1.5rem, 7.5vw, 2rem) !important; }

  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stat-val { font-size: 1.75rem; }

  .adv-grid { grid-template-columns: 1fr !important; }

  .ww-specs-grid { grid-template-columns: 1fr !important; }

  .extras-grid { grid-template-columns: 1fr 1fr !important; }

  .veh-card .slider { height: 200px; }
  .ww-slider .slider { height: 200px !important; }

  .faq-btn { font-size: .88rem; padding: .9rem 1rem; }

  /* Slider-Dots auf kleinen Screens kleiner ── */
  .slider-dots { gap: .3rem; }
  .slider-dot { width: 7px !important; height: 7px !important; }
  .slider-dot.active { width: 20px !important; }

  /* Announcement Bar ── */
  .announcement-bar { font-size: .68rem; }
  .ann-sep { display: none; }
  .ann-items > *:not(:first-child) { display: none; }
}

/* ══════════════════════════════════════════════════════════
   EXTRA SMALL: ≤ 360px  (kleine Android-Geräte, Galaxy A-Serie)
   Inspiriert von oh-haustechnik
   ══════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
  .wrap, .container { padding-left: .75rem; padding-right: .75rem; }

  .hero__title { font-size: 1.55rem !important; }
  .subpage-hero__title { font-size: 1.45rem !important; }
  .sec-header h2 { font-size: 1.4rem !important; }

  /* Nav Logo noch kleiner */
  .site-nav__logo img { height: 44px !important; }
  .announcement-bar { display: none; }

  /* Buttons */
  .btn { font-size: .82rem; padding: .75rem 1rem; }

  /* Stats: 1 Spalte */
  .stats-grid { grid-template-columns: 1fr !important; }

  /* Karten */
  .veh-card .slider,
  .ww-slider .slider { height: 185px !important; }

  /* Einsatzgebiet / City-Cards 1 Spalte */
  .einsatz-cities { grid-template-columns: 1fr !important; }

  /* Slider Dots noch kleiner */
  .slider-dot { width: 6px !important; height: 6px !important; }
  .slider-dot.active { width: 16px !important; }
}

/* ============================================================
   TOUCH / SWIPE VERBESSERUNGEN – Slider & Global
   ============================================================ */

/* Slider: kein vertikales Scroll-Blocking beim Swipen */
.slider {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

/* Alle Buttons & Links: schnelle Touch-Response */
.btn, .faq-btn, .kt-card, .veh-card,
.slider-prev, .slider-next, .slider-dot {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Safe-Area für iPhone-Notch / Home-Indicator */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .site-nav { padding-top: env(safe-area-inset-top); }
  body { padding-bottom: env(safe-area-inset-bottom); }
  .scroll-top { bottom: calc(80px + env(safe-area-inset-bottom)); }
}

/* Sauberes Input-Styling auf iOS (kein innerer Schatten) */
@media (max-width: 768px) {
  input, textarea, select {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  /* iOS-Buttons: kein runder Stil */
  button, [type="button"], [type="submit"] {
    -webkit-appearance: none;
    appearance: none;
  }
}
