/* ============================================================
   TAXI ELI — Full-Width Cinematic Design
   ============================================================ */

/* ── Fonts ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/playfair-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/playfair-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/playfair-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ── Tokens ── */
:root {
  color-scheme: dark;
  --yellow:        #FFD600;
  --yellow-dim:    #c9a900;
  --yellow-glow:   rgba(255, 214, 0, 0.15);
  --black:         #080808;
  --black-2:       #0f0f0f;
  --black-3:       #181818;
  --black-4:       #222222;
  --white:         #F5F2EC;
  --white-muted:   #888;
  --white-subtle:  #444;
  --border:        rgba(255, 214, 0, 0.1);
  --border-bright: rgba(255, 214, 0, 0.35);
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', -apple-system, sans-serif;
  --nav-h:         72px;
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Accessibility ── */
.skip-nav {
  position: absolute; top: -100px; left: 16px;
  padding: 12px 24px; background: var(--yellow); color: #000;
  font-weight: 700; border-radius: 4px; z-index: 9999;
  transition: top 0.15s;
}
.skip-nav:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; border-radius: 2px; }

/* ── Helpers ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: 1240px; margin: 0 auto; padding: 0 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-name { color: var(--white); }
.nav-logo-name em { color: var(--yellow); font-style: normal; }
.nav-links {
  display: none; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 18px; font-size: 0.88rem; font-weight: 500;
  color: var(--white-muted); border-radius: 999px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white); background: rgba(255,255,255,0.06);
}
.nav-end { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--white-muted); padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 999px;
  transition: all 0.15s;
}
.lang-btn:hover { border-color: var(--border-bright); color: var(--yellow); }
.btn-call {
  display: none; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--yellow); color: #000;
  font-size: 0.88rem; font-weight: 700; border-radius: 999px;
  transition: all 0.2s;
}
.btn-call:hover { background: #ffe033; transform: translateY(-1px); }
.btn-call svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 4px;
}
.burger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: all 0.3s var(--ease); transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
#mobile-menu {
  position: fixed; inset: 0; background: var(--black);
  z-index: 999; display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 32px) 32px 40px;
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  overflow-y: auto;
}
#mobile-menu.open { transform: translateX(0); }
.mob-links { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.mob-links a {
  display: block; padding: 16px 0;
  font-size: 1.6rem; font-family: var(--font-display); font-weight: 700;
  color: var(--white-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.mob-links a:hover { color: var(--white); }
.mob-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }

/* ══════════════════════════════
   HERO (Cinematic)
══════════════════════════════ */
#hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.5)   0%,
    rgba(8,8,8,0.6)  40%,
    rgba(8,8,8,0.85) 80%,
    var(--black)     100%
  );
}
.hero-body {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-h) + 32px) 32px 48px;
  max-width: 1240px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--yellow);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-h1 em { color: var(--yellow); font-style: normal; display: block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 300;
  color: rgba(245,242,236,0.7); max-width: 480px;
  line-height: 1.65; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--yellow); color: #000;
  font-weight: 700; font-size: 0.95rem; border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.btn-primary:hover { background: #ffe033; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,214,0,0.3); }
.btn-primary svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border: 1px solid rgba(245,242,236,0.3); color: var(--white);
  font-weight: 600; font-size: 0.95rem; border-radius: 999px;
  transition: all 0.2s var(--ease);
}
.btn-outline:hover { border-color: var(--border-bright); color: var(--yellow); transform: translateY(-2px); }
.btn-outline svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
}
.htrust-item {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  color: rgba(245,242,236,0.55);
}
.htrust-sep {
  color: rgba(245,242,236,0.2); font-size: 0.7rem;
}


/* ══════════════════════════════
   TICKER / MARQUEE
══════════════════════════════ */
.marquee-section {
  background: var(--yellow); padding: 14px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeMove 20s linear infinite;
  white-space: nowrap;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 0 32px; font-size: 0.9rem; font-weight: 700;
  color: #000; letter-spacing: 0.05em; text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-item .dot {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.35);
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   SERVICES (Editorial List)
══════════════════════════════ */
#leistungen {
  background: var(--black);
  padding: 100px 0;
}
.section-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--yellow);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-kicker::after {
  content: ''; flex: 0 0 40px; height: 1px; background: var(--yellow);
}
.section-title-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 64px; max-width: 600px;
}
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: flex; align-items: center; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  cursor: default;
  position: relative;
}
.service-row::before {
  content: ''; position: absolute; left: -32px; top: 0; bottom: 0;
  width: 3px; background: var(--yellow);
  transform: scaleY(0); transform-origin: center;
  transition: transform 0.3s var(--ease);
}
.service-row:hover::before { transform: scaleY(1); }
.service-row:hover { padding-left: 16px; }
.service-num {
  font-family: var(--font-display); font-size: 1rem; font-weight: 400;
  color: var(--white-subtle); min-width: 36px; flex-shrink: 0;
  transition: color 0.3s;
}
.service-row:hover .service-num { color: var(--yellow); }
.service-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.service-icon-wrap svg {
  width: 22px; height: 22px; stroke: var(--white-muted); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.3s;
}
.service-row:hover .service-icon-wrap {
  border-color: var(--border-bright); background: var(--yellow-glow);
}
.service-row:hover .service-icon-wrap svg { stroke: var(--yellow); }
.service-info { flex: 1; }
.service-name {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700;
  font-family: var(--font-display); line-height: 1.2;
  margin-bottom: 6px; transition: color 0.3s;
}
.service-row:hover .service-name { color: var(--yellow); }
.service-desc { font-size: 0.88rem; color: var(--white-muted); line-height: 1.65; max-width: 500px; }
.service-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-subtle); flex-shrink: 0; display: none;
  transition: color 0.3s;
}
.service-row:hover .service-tag { color: var(--yellow); }

/* ══════════════════════════════
   IMAGE STRIP (Fahrzeug-Break)
══════════════════════════════ */
.img-strip {
  position: relative; height: 340px; overflow: hidden;
}
.img-strip img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
  display: block;
}
.img-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.6)      0%,
    rgba(8,8,8,0.25)     35%,
    rgba(8,8,8,0.25)     65%,
    rgba(8,8,8,0.7)     100%
  );
}
.img-strip-caption {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: var(--white); text-align: center; padding: 0 24px;
}

/* ══════════════════════════════
   STATS (dezent, dunkel)
══════════════════════════════ */
#statistiken {
  background: var(--black-2);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.stat-block {
  padding: 36px 32px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
/* 2-col: right border on odd items, bottom border between rows */
.stat-block:nth-child(odd)  { border-right: 1px solid var(--border); }
.stat-block:nth-last-child(-n+2) { border-bottom: none; }
.stat-block::before {
  content: ''; position: absolute; top: 36px; left: 32px;
  width: 18px; height: 1px; background: var(--yellow);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1; color: var(--white);
  letter-spacing: -0.03em; margin-top: 18px; margin-bottom: 6px;
}
.stat-lbl {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white-muted);
}

/* ══════════════════════════════
   ABOUT (Vollbreite Fotos + Text)
══════════════════════════════ */
#ueber-uns {
  background: var(--black);
}
.about-split {
  display: flex; flex-direction: column;
}
/* Vollbreite Foto-Leiste */
.about-photo {
  width: 100%;
  position: relative;
  flex-shrink: 0;
}
/* 2-photo mosaic */
.about-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3px;
}
/* am-main bestimmt die Zeilenhöhe über aspect-ratio */
.am-main {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}
/* am-side streckt sich auf die gleiche Höhe wie am-main */
.am-side {
  overflow: hidden;
  position: relative;
}
.am-main img, .am-side img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
  transition: transform 0.9s var(--ease);
}
.am-main:hover img, .am-side:hover img { transform: scale(1.04); }
/* Text-Bereich darunter — volle Breite, Inhalt zentriert */
.about-text {
  width: 100%;
  background: var(--black-2);
  padding: 0 32px 56px;
}
.about-text-inner {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 48px;
}
.about-text .section-kicker { margin-bottom: 20px; }
.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-body {
  font-size: 1rem; color: var(--white-muted); line-height: 1.8;
  margin-bottom: 40px; max-width: 620px;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.af-item { display: flex; gap: 16px; align-items: flex-start; }
.af-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--yellow);
  flex-shrink: 0; margin-top: 7px;
}
.af-title { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.af-desc { font-size: 0.85rem; color: var(--white-muted); }
.btn-ghost-yellow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 700; color: var(--yellow);
  transition: gap 0.2s;
}
.btn-ghost-yellow:hover { gap: 18px; }
.btn-ghost-yellow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ══════════════════════════════
   TESTIMONIALS (Cinematic dark)
══════════════════════════════ */
#bewertungen {
  background: var(--black-2); padding: 100px 0;
  border-top: 1px solid var(--border);
}
.testimonials-header { margin-bottom: 64px; }
.testimonials-header .section-kicker { margin-bottom: 16px; }
.testimonials-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.testi-card {
  background: var(--black-2);
  padding: 40px 36px;
  transition: background 0.3s;
}
.testi-card:hover { background: var(--black-3); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-stars svg { width: 14px; height: 14px; fill: var(--yellow); }
.testi-quote {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  font-style: italic; line-height: 1.7; color: var(--white);
  margin-bottom: 28px;
}
.testi-quote::before { content: '\201E'; }
.testi-quote::after  { content: '\201C'; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow-glow); border: 1px solid var(--border-bright);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--yellow); flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 600; }
.testi-loc { font-size: 0.75rem; color: var(--white-muted); margin-top: 2px; }

/* ══════════════════════════════
   BOOKING (full-width split)
══════════════════════════════ */
#buchen {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#buchen::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
  background: url('../assets/img/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.06;
  z-index: 0;
}
#buchen::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
  background: linear-gradient(to right, var(--black) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}
#buchen .container { position: relative; z-index: 2; }
.booking-header { margin-bottom: 56px; }
.booking-header .section-kicker { margin-bottom: 16px; }
.booking-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.booking-cols { display: grid; grid-template-columns: 1fr; gap: 48px; }
/* Contact options */
.contact-options { display: flex; flex-direction: column; gap: 14px; }
.co-item {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: var(--black-2); border: 1px solid var(--border);
  border-radius: 14px; transition: all 0.2s var(--ease);
  text-decoration: none; color: var(--white);
}
.co-item:hover { border-color: var(--border-bright); transform: translateX(6px); }
.co-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
  background: var(--yellow-glow); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.co-item:hover .co-icon { background: rgba(255,214,0,0.2); border-color: var(--border-bright); }
.co-icon svg { width: 19px; height: 19px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.co-lbl { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-muted); }
.co-val { font-size: 0.97rem; font-weight: 600; color: var(--white); margin-top: 2px; }
/* Form */
.form-card {
  background: var(--black-2); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.form-card-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 28px;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.span2 { grid-column: span 1; }
.form-lbl {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--white-muted);
}
.form-ctrl {
  padding: 13px 16px; background: var(--black); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white); font-size: 0.92rem; width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s; -webkit-appearance: none;
}
.form-ctrl::placeholder { color: var(--white-subtle); }
.form-ctrl:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,214,0,0.1); }
textarea.form-ctrl { resize: vertical; min-height: 100px; }
.form-honeypot { display: none !important; }
.form-btn {
  width: 100%; padding: 15px; background: var(--yellow); color: #000;
  font-weight: 700; font-size: 0.97rem; border-radius: 999px; border: none;
  cursor: pointer; transition: all 0.2s var(--ease); margin-top: 6px;
}
.form-btn:hover { background: #ffe033; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,214,0,0.25); }
.form-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: 10px; font-size: 0.88rem; display: none; }
.form-msg.ok { display: block; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #4ade80; }
.form-msg.err { display: block; background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25); color: #f87171; }
.form-privacy { font-size: 0.75rem; color: var(--white-subtle); margin-top: 12px; line-height: 1.6; }
.form-privacy a { color: var(--white-muted); text-decoration: underline; }

/* ══════════════════════════════
   MAP SECTION
══════════════════════════════ */
#karte {
  background: var(--black-2);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.map-header { margin-bottom: 40px; }
.map-header .section-kicker { margin-bottom: 14px; }
.map-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.02em;
}
.map-wrapper {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); background: var(--black-3);
}
.map-ph {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; min-height: 360px; padding: 40px;
  text-align: center;
}
.map-ph-icon {
  width: 60px; height: 60px; background: var(--yellow-glow);
  border: 1px solid var(--border-bright); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.map-ph-icon svg { width: 26px; height: 26px; stroke: var(--yellow); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.map-ph p { color: var(--white-muted); font-size: 0.88rem; max-width: 300px; }
.map-ph p strong { color: var(--white); display: block; margin-bottom: 4px; }
.map-load {
  padding: 11px 26px; background: var(--yellow); color: #000;
  border-radius: 999px; font-weight: 700; font-size: 0.88rem; cursor: pointer;
  border: none; transition: background 0.15s;
}
.map-load:hover { background: #ffe033; }
.map-frame { display: none; }
.map-frame.on { display: block; }
.map-frame iframe { width: 100%; height: 420px; border: none; display: block; }
.map-info-row {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 20px;
}
.mi-item {
  display: flex; gap: 12px; align-items: center;
  padding: 14px 18px; background: var(--black-3);
  border: 1px solid var(--border); border-radius: 12px;
}
.mi-item svg { width: 16px; height: 16px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.mi-lbl { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white-muted); }
.mi-val { font-size: 0.88rem; font-weight: 500; }
.mi-val a { color: var(--white); transition: color 0.15s; }
.mi-val a:hover { color: var(--yellow); }

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 24px;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 900; box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--black); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-cols {
  display: grid; grid-template-columns: 1fr; gap: 44px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.85rem; color: var(--white-muted); line-height: 1.7; max-width: 260px; margin-top: 12px; }
.footer-brand .nav-logo { margin-bottom: 0; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-nav-links { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-links a { font-size: 0.85rem; color: var(--white-muted); transition: color 0.15s; }
.footer-nav-links a:hover { color: var(--white); }
.footer-contact-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.footer-contact-line svg { width: 14px; height: 14px; stroke: var(--yellow); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.footer-contact-line span, .footer-contact-line a { font-size: 0.85rem; color: var(--white-muted); transition: color 0.15s; }
.footer-contact-line a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-legal a { font-size: 0.78rem; color: var(--white-subtle); transition: color 0.15s; }
.footer-legal a:hover { color: var(--white-muted); }
.footer-copy { font-size: 0.75rem; color: var(--white-subtle); }

/* ══════════════════════════════
   COOKIE BANNER
══════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9900;
  background: var(--black-3); border-top: 1px solid var(--border);
  padding: 24px; transform: translateY(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: 0 -8px 48px rgba(0,0,0,0.6);
}
#cookie-banner.visible { transform: translateY(0); }
.ck-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 18px; }
.ck-text { font-size: 0.85rem; color: var(--white-muted); line-height: 1.65; }
.ck-text strong { color: var(--white); font-size: 0.92rem; display: block; margin-bottom: 4px; }
.ck-text a { color: var(--yellow); text-decoration: underline; }
.ck-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 0.8rem; }
.ck-cat { display: flex; align-items: center; gap: 8px; color: var(--white-muted); }
.ck-cat input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--yellow); }
.ck-btns { display: flex; flex-wrap: wrap; gap: 10px; }
.ck-accept {
  padding: 10px 22px; background: var(--yellow); color: #000;
  border-radius: 999px; font-weight: 700; font-size: 0.85rem; cursor: pointer; border: none;
  transition: background 0.15s;
}
.ck-accept:hover { background: #ffe033; }
.ck-decline {
  padding: 10px 18px; background: transparent; color: var(--white-muted);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.15s;
}
.ck-decline:hover { border-color: var(--border-bright); color: var(--white); }
.ck-save {
  padding: 10px 18px; background: transparent; color: var(--white-subtle);
  font-size: 0.78rem; cursor: pointer; border: none; text-decoration: underline;
}

/* ══════════════════════════════
   SUBPAGES
══════════════════════════════ */
.subpage-hero {
  padding: calc(var(--nav-h) + 64px) 0 64px;
  background: var(--black-2); border-bottom: 1px solid var(--border);
}
.subpage-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 10px; }
.subpage-hero p { color: var(--white-muted); font-size: 0.92rem; }
.subpage-content { padding: 72px 0; }
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.8rem); margin: 52px 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; margin: 28px 0 10px; }
.prose p { font-size: 0.93rem; color: var(--white-muted); line-height: 1.8; margin-bottom: 14px; }
.prose a { color: var(--yellow); text-decoration: underline; }
.prose ul, .prose ol { margin: 14px 0 18px 20px; display: flex; flex-direction: column; gap: 7px; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose li { font-size: 0.93rem; color: var(--white-muted); line-height: 1.7; }
.prose strong { color: var(--white); font-weight: 600; }
.prose address { font-style: normal; }
.toc { background: var(--black-3); border: 1px solid var(--border); border-radius: 14px; padding: 26px 30px; margin-bottom: 44px; }
.toc-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-muted); margin-bottom: 14px; }
.toc ol { display: flex; flex-direction: column; gap: 7px; margin: 0; }
.toc li { list-style: decimal; margin-left: 16px; }
.toc a { font-size: 0.85rem; color: var(--white-muted); }
.toc a:hover { color: var(--yellow); }
.data-table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: 0.82rem; }
.data-table th { text-align: left; padding: 9px 13px; background: var(--black-2); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.data-table td { padding: 9px 13px; color: var(--white-muted); border-bottom: 1px solid var(--border); vertical-align: top; }
.info-box { background: var(--yellow-glow); border: 1px solid var(--border-bright); border-radius: 10px; padding: 14px 18px; margin: 18px 0; font-size: 0.85rem; color: var(--white-muted); line-height: 1.65; }
.info-box strong { color: var(--yellow); }

/* ══════════════════════════════
   404
══════════════════════════════ */
.page-404 { min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.page-404-num { font-family: var(--font-display); font-size: clamp(6rem, 20vw, 14rem); font-weight: 700; line-height: 1; color: var(--yellow); opacity: 0.2; margin-bottom: -20px; }
.page-404 h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.5rem); margin-bottom: 14px; }
.page-404 p { color: var(--white-muted); margin-bottom: 28px; }

/* ══════════════════════════════
   FLOTTEN SECTION
══════════════════════════════ */
#flotte {
  background: var(--black-2);
  padding: 100px 0 0;
  border-top: 1px solid var(--border);
}
.flotte-header {
  margin-bottom: 56px;
  max-width: 600px;
}
.flotte-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 16px;
}
.flotte-sub {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.flotte-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 56px;
}
.flotte-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.flotte-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.9s var(--ease);
}
.flotte-cell:hover img { transform: scale(1.05); }
.flotte-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.85);
}

/* ══════════════════════════════
   HERO SCROLL HINT
══════════════════════════════ */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(245,242,236,0.4);
  text-decoration: none;
  transition: color 0.3s var(--ease);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll-hint:hover { color: var(--yellow); }
.hero-scroll-hint svg { width: 28px; height: 28px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════
   FAQ SECTION
══════════════════════════════ */
#faq {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-header {
  margin-bottom: 56px;
}
.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.faq-list {
  max-width: 780px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s var(--ease);
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q { color: var(--yellow); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.faq-icon::before { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-icon::after  { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-item[open] .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-a {
  padding-bottom: 24px;
}
.faq-a p {
  color: var(--white-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 640px;
}

/* ══════════════════════════════
   RESPONSIVE 768px
══════════════════════════════ */
@media (min-width: 768px) {
  .nav-links { display: flex; }
  .btn-call   { display: inline-flex; }
  .burger     { display: none; }
  .img-strip  { height: 420px; }
  .booking-cols { grid-template-columns: 1fr 1.3fr; gap: 56px; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-group.span2 { grid-column: span 2; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .ck-inner { grid-template-columns: 1fr auto; align-items: center; }
  .ck-cats  { grid-template-columns: repeat(4, auto); justify-content: flex-start; }
  .footer-cols { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .map-info-row { grid-template-columns: repeat(3, 1fr); }
  .service-tag { display: block; }
}

/* ══════════════════════════════
   RESPONSIVE 1024px
══════════════════════════════ */
@media (min-width: 1024px) {
  .about-text { padding: 0 48px 72px; }
  .about-text-inner { padding-top: 56px; }
  .flotte-grid { grid-template-columns: repeat(4, 1fr); }
  /* 4-col stats */
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-block { border-bottom: none; border-right: 1px solid var(--border); }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-block:last-child { border-right: none; }
}

/* ══════════════════════════════
   REDUCED MOTION
══════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* Design ist immer dunkel — kein Light-Mode-Override */
