/* ===== ROOT ===== */
:root {
  --obsidian: #161618;
  --pearl: #f4f1eb;
  --gold: #C8A743;
  --ink-hi: #f4f1eb;
  --ink-muted: rgba(244,241,235,0.5);
  --ink-dark: #14140f;
  --ink-dark-muted: #6b6b60;
  --border-d: rgba(255,255,255,0.07);
  --border-l: rgba(0,0,0,0.09);
  --r: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--obsidian); color: var(--ink-hi); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px,4vw,64px);
  transition: background .3s;
}
#header.scrolled {
  background: rgba(22,22,24,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-d);
}
.header-logo img { height: 38px; width: auto; filter: brightness(10); }
.header-nav { display: flex; gap: 28px; }
.header-nav a { font-size: 14px; font-weight: 500; color: rgba(244,241,235,.75); transition: color .2s; }
.header-nav a:hover { color: var(--ink-hi); }
.header-right { display: flex; align-items: center; gap: 18px; }
.header-socials { display: flex; gap: 12px; }
.header-socials a { color: rgba(244,241,235,.6); transition: color .2s; }
.header-socials a:hover { color: var(--ink-hi); }
.header-socials svg { width: 18px; height: 18px; fill: currentColor; }
.header-phone { font-size: 13px; font-weight: 500; color: rgba(244,241,235,.6); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh; min-height: 600px;
  overflow: hidden;
  background: var(--obsidian);
  display: flex; align-items: flex-end;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .65;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(22,22,24,.5) 55%, rgba(22,22,24,.9) 100%);
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 38%, rgba(0,0,0,.55) 78%, rgba(0,0,0,.88) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 clamp(24px,5vw,80px) clamp(48px,6vh,80px);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}
.hero-title {
  font-size: clamp(38px,5vw,72px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--ink-hi);
}
.hero-title .gold { color: var(--gold); }
.hero-bio {
  font-size: clamp(15px,1.3vw,17px);
  line-height: 1.75;
  color: rgba(244,241,235,.72);
  max-width: 460px;
  align-self: end;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-call, .btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 6px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: opacity .2s;
  font-family: inherit;
  border: none;
}
.btn-call:hover, .btn-wa:hover { opacity: .82; }
.btn-call { background: rgba(244,241,235,.1); color: var(--ink-hi); border: 1px solid rgba(244,241,235,.18); }
.btn-wa { background: #25D366; color: #fff; }
.btn-call svg, .btn-wa svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* ===== STORY (CREAM) ===== */
.story {
  background: var(--pearl);
  color: var(--ink-dark);
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
}
.story-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.story-signature {
  font-size: clamp(30px,3.8vw,52px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-dark);
  margin-bottom: 44px;
  font-family: 'Georgia', serif;
  letter-spacing: .01em;
}
.story-video {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: 12px; overflow: hidden;
  margin-bottom: 52px; background: #000;
}
.story-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.story-title {
  font-size: clamp(24px,3vw,42px);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--ink-dark);
}
.story-text {
  font-size: clamp(15px,1.35vw,17px);
  line-height: 1.8;
  color: var(--ink-dark-muted);
}

/* ===== ZAHLEN (stat strip) ===== */
.stats-section {
  background: var(--obsidian);
  padding: clamp(48px,6vh,72px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.stats-row {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-block {
  text-align: center; padding: 0 20px;
  border-left: 1px solid var(--border-d);
}
.stat-block:first-child { border-left: none; }
.stat-num {
  display: block; font-size: clamp(28px,3.2vw,42px); font-weight: 700;
  color: var(--ink-hi); text-shadow: 0 0 22px rgba(200,167,67,.45);
  letter-spacing: -0.01em;
}
.stat-label { display: block; font-size: 13px; color: var(--ink-muted); margin-top: 8px; }

/* ===== ABOUT / BUSINESS (DARK) ===== */
.about-section {
  background: var(--obsidian);
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px,6vw,96px); align-items: start; }
.about-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.about-heading { font-size: clamp(26px,2.8vw,38px); font-weight: 700; line-height: 1.15; margin-bottom: 22px; }
.about-text { font-size: 16px; line-height: 1.82; color: var(--ink-muted); margin-bottom: 30px; }
.about-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--gold);
  border-bottom: 1px solid rgba(200,167,67,.3); padding-bottom: 2px;
  transition: opacity .2s;
}
.about-link:hover { opacity: .7; }
.about-link svg { width: 14px; height: 14px; fill: currentColor; }

.biz-cards { display: flex; flex-direction: column; gap: 14px; }
.biz-card {
  border: 1px solid rgba(200,167,67,.16);
  border-radius: var(--r); padding: 22px 24px;
  background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.015) 50%);
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 24px -16px rgba(200,167,67,.3);
  transition: background .25s, border-color .25s, box-shadow .25s, transform .25s;
}
.biz-card:hover {
  background: linear-gradient(165deg, rgba(255,255,255,.065), rgba(255,255,255,.02) 50%);
  border-color: rgba(200,167,67,.5);
  box-shadow: 0 16px 36px rgba(0,0,0,.5), 0 0 44px -10px rgba(200,167,67,.5);
  transform: translateY(-4px);
}
.biz-card-tag { font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.biz-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 7px; }
.biz-card p { font-size: 13px; line-height: 1.65; color: var(--ink-muted); }

/* ===== SO FUNKTIONIERT'S (horizontal scroll steps) ===== */
.steps-section { background: var(--obsidian); border-top: 1px solid var(--border-d); position: relative; }
.steps-pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(24px,5vw,80px) 0; }
.steps-head { padding: 0 clamp(24px,5vw,80px); margin-bottom: clamp(28px,4vh,48px); flex-shrink: 0; }
.steps-track { display: flex; gap: clamp(20px,2.5vw,36px); padding: 0 clamp(24px,5vw,80px); will-change: transform; }
.step-card {
  flex: 0 0 clamp(320px,62vw,620px);
  border: 1px solid rgba(200,167,67,.2); border-radius: var(--r); overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015) 50%);
  box-shadow: 0 14px 34px rgba(0,0,0,.5), 0 0 34px -16px rgba(200,167,67,.4);
  position: relative;
}
.step-num {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 13px; font-weight: 700; color: var(--gold);
  background: rgba(20,20,15,.75); border: 1px solid rgba(200,167,67,.5);
  border-radius: 99px; padding: 5px 12px;
  box-shadow: 0 0 16px -3px rgba(200,167,67,.6);
}
.step-img { aspect-ratio: 4/3; overflow: hidden; }
.step-img img { width: 100%; height: 100%; object-fit: cover; }
.step-card h3 { font-size: 19px; font-weight: 700; color: var(--ink-hi); margin: 20px 22px 10px; }
.step-card p { font-size: 13.5px; line-height: 1.65; color: var(--ink-muted); margin: 0 22px 24px; }
@media (max-width: 900px) {
  .steps-pin { height: auto; }
  .steps-track { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
  .step-card { scroll-snap-align: start; flex: 0 0 78vw; }
}

/* ===== YOUTUBE SECTION (DARK) ===== */
.yt-section {
  background: var(--obsidian);
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.social-head {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: clamp(36px,5vh,60px);
}
.social-head svg { width: 44px; height: 44px; flex-shrink: 0; }
.social-head h2 { font-size: clamp(30px,4.5vw,60px); font-weight: 700; letter-spacing: -0.03em; }

.yt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(12px,1.5vw,20px); }
.yt-embed {
  border-radius: 10px; overflow: hidden;
  position: relative; padding-bottom: 56.25%; background: #000;
}
.yt-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== INSTAGRAM SECTION (DARK) ===== */
.ig-section {
  background: var(--obsidian);
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.ig-embeds {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: clamp(12px,1.5vw,20px); align-items: start;
}
.ig-embed-wrap { border-radius: 10px; overflow: hidden; min-height: 420px; background: rgba(255,255,255,.04); }

/* ===== FOOTER ===== */
footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border-d);
  padding: clamp(56px,7vh,88px) clamp(24px,5vw,80px) clamp(24px,3vh,40px);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,56px); margin-bottom: 48px;
}
.footer-logo-wrap img { height: 40px; filter: brightness(10); margin-bottom: 14px; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: var(--ink-muted); margin-bottom: 20px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 34px; height: 34px; border: 1px solid var(--border-d); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted); transition: color .2s, border-color .2s;
}
.footer-socials a:hover { color: var(--ink-hi); border-color: rgba(255,255,255,.28); }
.footer-socials svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; }
.footer-col a, .footer-col p { font-size: 14px; color: var(--ink-muted); display: block; margin-bottom: 10px; line-height: 1.5; }
.footer-col a:hover { color: var(--ink-hi); }
.footer-brands { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.footer-brands img { height: 20px; filter: invert(1); opacity: .35; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border-d);
  font-size: 13px; color: var(--ink-muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--ink-hi); }

/* ===== FAHRZEUGE PAGE ===== */
.page-hero {
  position: relative; height: 52svh; min-height: 360px;
  overflow: hidden; display: flex; align-items: flex-end;
  background: var(--obsidian);
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 20%, rgba(22,22,24,.92) 100%); }
.page-hero-content { position: relative; z-index: 2; padding: clamp(28px,4vw,64px); }
.page-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.page-title { font-size: clamp(32px,5.5vw,68px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.page-subtitle { font-size: 15px; color: var(--ink-muted); margin-top: 10px; }

.vehicles-section { background: var(--obsidian); padding: clamp(48px,6vh,80px) clamp(24px,5vw,80px); border-top: 1px solid var(--border-d); }
.fleet-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.vehicles-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.vehicles-count-wrap { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.vehicles-count { font-size: clamp(20px,2.2vw,26px); font-weight: 700; color: var(--ink-hi); }
.vehicles-count-sub { font-size: 13px; color: var(--ink-muted); }
.sort-select {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-d);
  color: var(--ink-hi); padding: 9px 16px; border-radius: 99px;
  font-size: 13px; font-family: 'Inter', sans-serif; cursor: pointer;
}

.fleet-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px,3vw,40px); align-items: start; }

.fleet-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 26px; }
.sidebar-title { font-size: 15px; font-weight: 700; color: var(--ink-hi); }
.sidebar-block { display: flex; flex-direction: column; }
.sidebar-label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 10px;
}
.sidebar-search {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border-d);
  border-radius: 8px; padding: 10px 12px; color: var(--ink-hi);
  font-family: 'Inter', sans-serif; font-size: 13px;
}
.sidebar-search::placeholder { color: rgba(244,241,235,.35); }

.filter-bar { display: flex; flex-direction: column; gap: 6px; }
.filter-btn {
  text-align: left; padding: 9px 14px; border-radius: 8px;
  border: 1px solid var(--border-d); background: transparent;
  font-size: 13px; font-weight: 500; cursor: pointer;
  color: var(--ink-muted); transition: all .18s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active { background: rgba(200,167,67,.12); color: var(--gold); border-color: rgba(200,167,67,.35); }

.brand-checklist { display: flex; flex-direction: column; gap: 10px; }
.brand-check { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-muted); cursor: pointer; }
.brand-check input { accent-color: var(--gold); width: 14px; height: 14px; }
.brand-check span { flex: 1; }
.brand-check i { font-style: normal; font-size: 12px; color: var(--ink-dark-muted); }

.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: clamp(18px,2.2vw,28px); }
.car-card {
  background: linear-gradient(165deg, rgba(255,255,255,.055), rgba(255,255,255,.015) 40%);
  border: 1px solid rgba(200,167,67,.2);
  border-radius: var(--r); overflow: hidden; position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 34px -14px rgba(200,167,67,.4);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.car-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200,167,67,.6);
  box-shadow: 0 24px 50px rgba(0,0,0,.6), 0 0 55px -8px rgba(200,167,67,.6), 0 0 110px -20px rgba(200,167,67,.35);
}
.car-img-wrap { aspect-ratio: 16/10; overflow: hidden; background: rgba(255,255,255,.05); position: relative; }
.car-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.car-card:hover .car-img { transform: scale(1.045); }
.car-name-bar { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; padding: 16px 18px 10px; }
.car-name { font-size: 15px; font-weight: 700; color: var(--ink-hi); line-height: 1.3; }
.car-price { font-size: 16px; font-weight: 700; color: var(--gold); white-space: nowrap; text-shadow: 0 0 16px rgba(200,167,67,.55); }
.car-price small { font-size: 11px; font-weight: 500; color: var(--ink-muted); text-shadow: none; }
.car-specs { display: flex; flex-wrap: wrap; gap: 10px 16px; padding: 0 18px 16px; border-bottom: 1px solid var(--border-d); }
.car-specs span { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink-muted); }
.spec-ic { width: 14px; height: 14px; flex-shrink: 0; }
.car-btns { display: flex; gap: 8px; padding: 14px 18px 18px; }
.car-btn-details, .car-btn-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px; border-radius: 6px; font-size: 12.5px; font-weight: 700;
  transition: opacity .18s, box-shadow .25s ease, transform .18s ease;
}
.car-btn-details { background: var(--gold); color: #161207; box-shadow: 0 0 18px -3px rgba(200,167,67,.75); }
.car-btn-wa { background: #25D366; color: #fff; box-shadow: 0 0 18px -3px rgba(37,211,102,.7); }
.car-btn-wa svg { width: 14px; height: 14px; fill: currentColor; }
.car-btn-details:hover { box-shadow: 0 0 28px 0 rgba(200,167,67,1); transform: translateY(-1px); opacity: .95; }
.car-btn-wa:hover { box-shadow: 0 0 28px 0 rgba(37,211,102,1); transform: translateY(-1px); opacity: .95; }

/* ===== FLOATING CALL/WHATSAPP ===== */
.floating-ctas { position: fixed; right: 20px; bottom: 20px; z-index: 300; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.fab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 99px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: opacity .2s, transform .2s;
}
.fab:hover { opacity: .88; transform: translateY(-2px); }
.fab svg { width: 16px; height: 16px; fill: currentColor; }
.fab-call { background: rgba(20,20,15,.92); color: #fff; border: 1px solid rgba(200,167,67,.4); backdrop-filter: blur(8px); box-shadow: 0 0 22px -4px rgba(200,167,67,.6); }
.fab-call:hover { box-shadow: 0 0 32px -2px rgba(200,167,67,.9); }
.fab-wa { background: #25D366; color: #fff; box-shadow: 0 0 22px -4px rgba(37,211,102,.75); }
.fab-wa:hover { box-shadow: 0 0 32px -2px rgba(37,211,102,1); }

.veh-cta {
  background: var(--obsidian); border-top: 1px solid var(--border-d);
  padding: clamp(56px,7vh,88px) clamp(24px,5vw,80px);
  text-align: center;
}
.veh-cta h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 700; margin-bottom: 14px; }
.veh-cta p { font-size: 16px; color: var(--ink-muted); max-width: 480px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== WORDMARK LOGO ===== */
.wordmark { font-size: 15px; font-weight: 700; letter-spacing: .04em; color: var(--ink-hi); }
.wordmark b { color: var(--gold); font-weight: 700; }
.footer-wordmark { display: block; font-size: 17px; margin-bottom: 14px; }

/* ===== BRAND TICKER ===== */
.brand-ticker {
  background: var(--pearl);
  border-top: 1px solid var(--border-l);
  padding: 22px clamp(24px,5vw,80px);
}
.brand-ticker-inner {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(28px,5vw,56px); flex-wrap: wrap;
}
.brand-ticker-inner img { height: 22px; width: auto; filter: grayscale(1); opacity: .55; }
.brand-ticker-text {
  font-size: 13px; font-weight: 600; letter-spacing: .05em;
  color: var(--ink-dark-muted); text-transform: uppercase;
}


/* ===== WARUM WIR / WHY GRID ===== */
.why-head { text-align: center; max-width: 620px; margin: 0 auto clamp(36px,5vh,60px); }
.why-head .about-label { justify-content: center; }
.why-head .about-heading { font-size: clamp(26px,3.2vw,42px); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.why-grid .biz-card h3 { font-size: 17px; }

/* ===== DAS ERLEBNIS / CRAFT ===== */
.craft-section {
  background: var(--obsidian);
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.craft-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.craft-card {
  border: 1px solid rgba(200,167,67,.18); border-radius: var(--r); overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.045), rgba(255,255,255,.015) 50%);
  box-shadow: 0 10px 28px rgba(0,0,0,.45), 0 0 30px -16px rgba(200,167,67,.35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.craft-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,167,67,.55);
  box-shadow: 0 22px 46px rgba(0,0,0,.55), 0 0 50px -10px rgba(200,167,67,.55);
}
.craft-img-wrap { aspect-ratio: 3/2; overflow: hidden; }
.craft-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.craft-card:hover .craft-img-wrap img { transform: scale(1.05); }
.craft-card h3 { font-size: 16px; font-weight: 700; color: var(--ink-hi); margin: 18px 20px 8px; }
.craft-card p { font-size: 13px; line-height: 1.65; color: var(--ink-muted); margin: 0 20px 20px; }

/* ===== VORAUSSETZUNGEN ===== */
.req-section {
  background: var(--obsidian);
  border-top: 1px solid var(--border-d);
  padding: clamp(40px,5vh,64px) clamp(24px,5vw,80px);
}
.req-row { display: flex; justify-content: center; gap: clamp(24px,5vw,64px); flex-wrap: wrap; text-align: center; }
.req-item { display: flex; flex-direction: column; align-items: center; gap: 10px; max-width: 200px; }
.req-num {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(200,167,67,.5); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 0 20px -4px rgba(200,167,67,.6), inset 0 0 12px -4px rgba(200,167,67,.3);
}
.req-text { font-size: 14px; color: var(--ink-muted); line-height: 1.5; }

/* ===== BEWERTUNGEN ===== */
.reviews-section {
  background: var(--obsidian);
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.reviews-section .social-head { justify-content: center; text-align: center; margin-bottom: clamp(36px,5vh,56px); }
.reviews-section .social-head h2 { font-size: clamp(28px,4vw,48px); font-weight: 700; letter-spacing: -0.03em; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card {
  display: flex; flex-direction: column; gap: 14px; position: relative;
  padding: 30px 26px 26px; border-radius: var(--r);
  border: 1px solid rgba(200,167,67,.18);
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015) 55%);
  box-shadow: 0 10px 28px rgba(0,0,0,.45), 0 0 30px -18px rgba(200,167,67,.35);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,167,67,.5);
  box-shadow: 0 20px 42px rgba(0,0,0,.55), 0 0 46px -10px rgba(200,167,67,.5);
}
.review-quote {
  position: absolute; top: 8px; right: 20px;
  font-family: 'Georgia', serif; font-size: 64px; font-weight: 700;
  color: rgba(200,167,67,.22); line-height: 1; pointer-events: none;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: .12em; text-shadow: 0 0 12px rgba(200,167,67,.5); }
.review-text { font-size: 14px; line-height: 1.7; color: var(--ink-muted); position: relative; z-index: 1; }
.review-footer { display: flex; align-items: center; gap: 12px; margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--border-d); }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--gold);
  background: rgba(200,167,67,.1); border: 1px solid rgba(200,167,67,.4);
  box-shadow: 0 0 14px -3px rgba(200,167,67,.5);
}
.review-author { font-size: 13px; font-weight: 700; color: var(--ink-hi); }
.review-role { font-size: 11.5px; color: var(--ink-muted); margin-top: 1px; }

/* ===== CONTACT (split layout with background) ===== */
.contact-section {
  position: relative; overflow: hidden;
  padding: clamp(64px,9vh,120px) clamp(24px,5vw,80px);
  border-top: 1px solid var(--border-d);
}
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; filter: grayscale(.3); }
.contact-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(22,22,24,.97) 40%, rgba(22,22,24,.75) 75%, rgba(22,22,24,.55) 100%);
}
.contact-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px);
  align-items: start; max-width: 1180px; margin: 0 auto;
}
.contact-left { padding-top: 6px; }
.contact-lead { font-size: 16px; line-height: 1.7; color: var(--ink-muted); margin: 16px 0 30px; max-width: 420px; }
.trust-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink-hi); }
.trust-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; font-weight: 700;
  border: 1px solid rgba(200,167,67,.5); background: rgba(200,167,67,.1);
  box-shadow: 0 0 12px -3px rgba(200,167,67,.6);
}
.contact-info-block { padding-top: 22px; border-top: 1px solid var(--border-d); }
.contact-placeholder-info { font-size: 14px; color: var(--ink-muted); margin-bottom: 6px; }

.contact-form {
  background: linear-gradient(165deg, rgba(255,255,255,.05), rgba(255,255,255,.015) 55%);
  border: 1px solid rgba(200,167,67,.2); border-radius: var(--r);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 40px -18px rgba(200,167,67,.35);
  padding: clamp(24px,3vw,34px);
  display: flex; flex-direction: column; gap: 12px;
}
.form-row { display: flex; gap: 12px; }
.form-row input, .form-row select, .form-row textarea {
  flex: 1; width: 100%;
  background: rgba(255,255,255,.03); border: 1px solid var(--border-d);
  border-radius: 8px; padding: 12px 14px;
  color: var(--ink-hi); font-family: 'Inter', sans-serif; font-size: 14px;
  resize: none;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(244,241,235,.35); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: rgba(200,167,67,.6);
  box-shadow: 0 0 0 1px rgba(200,167,67,.3), 0 0 18px -4px rgba(200,167,67,.5);
}
.form-submit { align-self: center; margin-top: 6px; cursor: not-allowed; opacity: .8; width: 100%; justify-content: center; }

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .header-phone { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 16px; }
  .hero-bio { max-width: 100%; }
  .stats-row { grid-template-columns: repeat(2,1fr); gap: 24px 0; }
  .stat-block:nth-child(3) { border-left: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .yt-grid { grid-template-columns: 1fr; }
  .ig-embeds { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .fleet-layout { grid-template-columns: 1fr; }
  .fleet-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 22px 32px; }
  .sidebar-block { flex: 1; min-width: 170px; }
  .craft-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .contact-inner { grid-template-columns: 1fr; }
  .vehicles-header { flex-direction: column; align-items: flex-start; }
  .fleet-sidebar { flex-direction: column; }
  .floating-ctas { right: 14px; bottom: 14px; }
  .fab { padding: 11px 15px; font-size: 12.5px; }
}
