/* ============================================================
   Baustofftransporte Voshage GmbH — Design-Vorschau
   Dunkles Industrie-Design · Voshage-Rot · Barlow Condensed
   ============================================================ */

:root {
  --bg: #0b0c0e;
  --bg2: #101114;
  --panel: #16171b;
  --panel2: #1c1d22;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f4f4f2;
  --muted: #a2a3aa;
  --red: #d81f26;
  --red2: #ff2b33;
  --red-dark: #8f1116;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Segoe UI", sans-serif;
  --nav-h: 78px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: #fff; }

/* ---------- Preloader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 18px;
}
#loader .loader-logo {
  width: min(360px, 70vw);
  opacity: 0;
  transform: translateY(14px);
}
#loader .loader-bar {
  width: min(220px, 50vw); height: 2px;
  background: rgba(255,255,255,.12);
  overflow: hidden; border-radius: 2px;
}
#loader .loader-bar span {
  display: block; height: 100%; width: 0%;
  background: var(--red2);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(18px, 4vw, 48px);
  transition: background .35s ease, border-color .35s ease, height .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 12, 14, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%; max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: clamp(16px, 2.4vw, 36px); align-items: center; list-style: none; }
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600; font-size: 17px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  position: relative; padding: 6px 0;
  transition: color .25s ease;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red2);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--red); color: #fff !important;
  padding: 11px 22px; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: background .25s ease;
  white-space: nowrap; flex-shrink: 0;
}
.nav-cta:hover { background: var(--red2); }
.nav-cta::after { display: none; }

/* Burger */
.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 1001;
}
.burger span {
  position: absolute; left: 7px; right: 7px; height: 2px;
  background: #fff; transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 13px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 25px; }
.burger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: rgba(11,12,14,.97);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: clamp(34px, 9vw, 52px); text-transform: uppercase;
  letter-spacing: .04em; color: var(--text); padding: 6px 0;
}
.mobile-menu a.active, .mobile-menu a:hover { color: var(--red2); }

/* ---------- Typo / Bausteine ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 15px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--red2);
}
.kicker::before {
  content: ""; width: 34px; height: 2px; background: var(--red2);
  transform: skewX(-20deg);
}
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800; font-style: italic;
  text-transform: uppercase; line-height: 1.02;
  letter-spacing: .01em;
}
.h-xl { font-size: clamp(52px, 9vw, 128px); }
.h-lg { font-size: clamp(40px, 6vw, 80px); }
.h-md { font-size: clamp(30px, 4vw, 52px); }
.h-sm { font-size: clamp(22px, 2.6vw, 30px); }
.accent { color: var(--red2); }
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.55);
}
p.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--muted); max-width: 640px; }
.muted { color: var(--muted); }

.section { padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 64px); position: relative; }
.section.tight { padding-top: clamp(50px, 6vw, 80px); padding-bottom: clamp(50px, 6vw, 80px); }
.wrap { max-width: 1280px; margin: 0 auto; }
.wrap-wide { max-width: 1440px; margin: 0 auto; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; cursor: pointer; border: 0;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red2); }
.btn-ghost {
  background: transparent; color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px #fff; }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center;
  will-change: transform;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(11,12,14,.97) 0%, rgba(11,12,14,.45) 42%, rgba(11,12,14,.35) 100%);
}
.hero-shade::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,12,14,.75) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(70px, 9vh, 120px);
}
.hero-content .kicker { margin-bottom: 18px; }
.hero-title { margin-bottom: 26px; }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: inline-block; will-change: transform; }
.hero-sub { max-width: 560px; font-size: clamp(17px, 1.6vw, 20px); color: #cfcfd4; margin-bottom: 34px; }
.hero-badges { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 42px; }
.hero-badge { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #d8d8dc; }
.hero-badge b { font-family: var(--font-head); font-style: italic; font-weight: 800; font-size: 26px; color: #fff; }
.hero-badge .star { color: #ffb400; letter-spacing: 2px; font-size: 14px; }
.scroll-hint {
  position: absolute; right: clamp(20px, 4vw, 50px); bottom: 34px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-hint::after {
  content: ""; width: 1.5px; height: 56px;
  background: linear-gradient(to bottom, var(--red2), transparent);
  animation: hintPulse 1.8s ease-in-out infinite;
}
@keyframes hintPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* Sub-page hero (kleiner) */
.hero.hero-sub-page { min-height: 72svh; }

/* ---------- Hero-Endcard (Logo-Finale beim Scrubben) ---------- */
.hero-endcard {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  opacity: 0; pointer-events: none;
}
.hero-endcard img {
  width: min(620px, 72vw); height: auto;
  filter: drop-shadow(0 8px 40px rgba(0,0,0,.65));
}
.hero-endcard span {
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: clamp(18px, 2vw, 26px); letter-spacing: .22em; text-transform: uppercase;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.hero-endcard span em { font-style: italic; color: var(--red2); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg2);
  overflow: hidden; padding: 22px 0;
  position: relative;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(22px, 3vw, 36px); text-transform: uppercase;
  letter-spacing: .05em; color: rgba(255,255,255,.85);
  padding: 0 18px; white-space: nowrap;
}
.marquee span.dot { color: var(--red2); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Split / Media-Text ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
.split.rev > .split-media { order: 2; }
.split-media { position: relative; }
.img-frame {
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4 / 3;
  transform: scale(1.12);
  will-change: transform;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.img-frame:hover img { transform: scale(1.04); }
.img-frame .tag {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: 15px; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.split-copy .kicker { margin-bottom: 16px; }
.split-copy h2 { margin-bottom: 22px; }
.split-copy p { color: var(--muted); margin-bottom: 16px; max-width: 560px; }
.split-copy .btn-row { margin-top: 28px; }

.checklist { list-style: none; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; color: #d6d6da; }
.checklist li::before {
  content: "▸"; color: var(--red2); font-weight: 800;
  font-family: var(--font-head); font-size: 20px; line-height: 1.3;
}

/* ---------- Stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat {
  background: var(--bg); padding: clamp(34px, 4vw, 60px) 24px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(42px, 5vw, 72px); line-height: 1; color: #fff;
}
.stat b .accent { color: var(--red2); }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-head); font-weight: 600; }

/* ---------- Leistungs-Karten ---------- */
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.card {
  position: relative; overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform .35s ease, border-color .35s ease;
}
.card:hover { transform: translateY(-8px); border-color: rgba(255,43,51,.5); }
.card-img { position: absolute; inset: 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.card:hover .card-img img { transform: scale(1.07); }
.card-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,12,14,.96) 12%, rgba(11,12,14,.35) 55%, rgba(11,12,14,.15) 100%);
}
.card-body { position: relative; z-index: 2; padding: 26px 24px 24px; }
.card-num {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: 15px; color: var(--red2); letter-spacing: .2em; margin-bottom: 8px; display: block;
}
.card h3 { font-size: clamp(24px, 2vw, 30px); margin-bottom: 10px; }
.card p { font-size: 15px; color: #c9c9ce; margin-bottom: 14px; }
.card .card-link {
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
  display: inline-flex; gap: 8px; align-items: center;
}
.card .card-link .arr { color: var(--red2); transition: transform .25s ease; }
.card:hover .card-link .arr { transform: translateX(5px); }

/* ---------- Großes Bild-Band ---------- */
.band {
  position: relative; min-height: 78vh; overflow: hidden;
  display: flex; align-items: center;
}
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.band-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,14,.9) 0%, rgba(11,12,14,.35) 60%, rgba(11,12,14,.55) 100%); }
.band-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 64px); width: 100%; }

/* ---------- Regionen ---------- */
.region-list { list-style: none; margin-top: 34px; border-top: 1px solid var(--line); }
.region-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: clamp(24px, 3vw, 40px); text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color .25s ease, padding-left .25s ease;
}
.region-list li:hover { color: var(--red2); padding-left: 16px; }
.region-list li small {
  font-family: var(--font-body); font-style: normal; font-weight: 400;
  font-size: 14px; letter-spacing: .06em; color: var(--muted); text-transform: none;
}

/* ---------- Zitat / Google ---------- */
.quote-band { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.gstars { font-size: 26px; color: #ffb400; letter-spacing: 6px; margin-bottom: 18px; }
.quote-inner blockquote {
  font-family: var(--font-head); font-weight: 600; font-style: italic;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.2; color: #fff;
}
.quote-inner cite { display: block; margin-top: 18px; color: var(--muted); font-style: normal; font-size: 15px; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--red-dark), var(--red) 55%, #e8343b);
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 64px);
}
.cta-band::before {
  content: "VOSHAGE"; position: absolute; right: -2%; bottom: -18%;
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(120px, 22vw, 320px); color: rgba(255,255,255,.07);
  letter-spacing: .02em; white-space: nowrap; pointer-events: none;
}
.cta-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 540px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-actions .btn { background: #0b0c0e; color: #fff; }
.cta-actions .btn:hover { background: #000; }
.cta-actions .cta-tel {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(30px, 3.4vw, 46px); color: #fff;
}
.cta-actions small { color: rgba(255,255,255,.75); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.g-item { position: relative; overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.g-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.g-item:hover img { transform: scale(1.06); }
.g-item.tall img { aspect-ratio: 3/4; }
.g-item.wide { grid-column: span 2; }
.g-item.wide img { aspect-ratio: 8/3.05; }
.g-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(216,31,38,.35), transparent 50%);
  opacity: 0; transition: opacity .35s ease;
}
.g-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(5,5,6,.94); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 28px;
  background: none; border: 0; color: #fff; font-size: 34px; cursor: pointer; line-height: 1;
}

/* ---------- Zoom-Sektion (Apple-Style) ---------- */
.zoom-sec { position: relative; }
.zoom-pin {
  position: relative; height: 100svh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
}
.zoom-media {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.zoom-media img, .zoom-media video { width: 100%; height: 100%; object-fit: cover; }
.zoom-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,12,14,.72), rgba(11,12,14,.12) 55%);
}
.zoom-caption {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; padding-bottom: clamp(60px, 10vh, 120px);
  pointer-events: none;
}
.zoom-caption .kicker { margin-bottom: 14px; }
.zoom-caption h2 { font-size: clamp(38px, 6vw, 88px); text-shadow: 0 4px 30px rgba(0,0,0,.5); }
.zoom-caption p { color: #e6e6ea; max-width: 560px; margin-top: 14px; text-shadow: 0 2px 16px rgba(0,0,0,.6); }

/* ---------- Statement (Apple-Style Wort-Fill) ---------- */
.statement {
  position: relative; background: var(--bg);
}
.statement-pin {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(20px, 6vw, 80px);
}
.statement-text {
  max-width: 1100px; text-align: center;
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(34px, 5.6vw, 76px); line-height: 1.12;
  text-transform: uppercase; letter-spacing: .01em;
}
.statement-text .w {
  display: inline-block; margin-right: .28em;
  color: rgba(255,255,255,.14);
  transition: none;
}
.statement-text .w.hot { color: var(--red2); }
.statement-text .w.on { color: #fff; }
.statement-text .w.hot.on { color: var(--red2); }
/* Statik/Mobil: alles gefüllt */
.statement.no-pin .statement-pin { min-height: 0; padding-top: clamp(70px, 10vw, 130px); padding-bottom: clamp(70px, 10vw, 130px); }
.statement.no-pin .w { color: #fff; }
.statement.no-pin .w.hot { color: var(--red2); }

/* ---------- Horizontale Slides ---------- */
.hslides { position: relative; overflow: hidden; background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hslides-head { padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 64px) 0; max-width: 1440px; margin: 0 auto; }
.hslides-track {
  display: flex; gap: clamp(16px, 2vw, 28px);
  padding: clamp(36px, 4vw, 60px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  width: max-content; will-change: transform;
}
.hslide {
  position: relative; flex-shrink: 0;
  width: clamp(300px, 44vw, 640px); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel);
}
.hslide img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.hslide:hover img { transform: scale(1.05); }
.hslide .hs-num {
  position: absolute; top: 14px; left: 18px; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(40px, 4vw, 64px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.85);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hslide .hs-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(11,12,14,.92), transparent);
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: clamp(18px, 1.6vw, 24px); text-transform: uppercase; letter-spacing: .06em;
}
.hslide .hs-cap small { display: block; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 13.5px; color: var(--muted); text-transform: none; letter-spacing: 0; }
/* Fallback ohne Pinning (Mobil / Statik): seitlich wischen */
.hslides.no-pin { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.hslides.no-pin::-webkit-scrollbar { display: none; }

/* ---------- Hero-Video ---------- */
.hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; will-change: transform;
}
.band-media video { width: 100%; height: 120%; object-fit: cover; will-change: transform; }

/* ---------- Prozess-Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.step { background: var(--panel); padding: clamp(28px, 3vw, 44px) 26px; position: relative; transition: background .3s ease; }
.step:hover { background: var(--panel2); }
.step b {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: 56px; line-height: 1; color: transparent;
  -webkit-text-stroke: 1.5px var(--red2);
  display: block; margin-bottom: 16px;
}
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* ---------- Werte ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.value {
  background: var(--panel); border: 1px solid var(--line);
  padding: 34px 28px; transition: transform .3s ease, border-color .3s ease;
}
.value:hover { transform: translateY(-6px); border-color: rgba(255,43,51,.5); }
.value .v-ico {
  width: 52px; height: 52px; display: grid; place-items: center;
  background: rgba(216,31,38,.14); color: var(--red2);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  margin-bottom: 20px;
}
.value .v-ico svg { width: 26px; height: 26px; }
.value h3 { font-size: 24px; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 15px; }

/* ---------- Jobs ---------- */
.job-card {
  border: 1px solid var(--line); background: var(--panel);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: clamp(28px, 3.4vw, 44px);
  transition: border-color .3s ease;
}
.job-card:hover { border-color: rgba(255,43,51,.5); }
.job-card h3 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 8px; }
.job-card p { color: var(--muted); max-width: 640px; }
.job-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.job-tags span {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--line); color: #d3d3d8; padding: 6px 14px;
}

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.c-card {
  border: 1px solid var(--line); background: var(--panel);
  padding: 26px 28px; display: flex; gap: 20px; align-items: flex-start;
  transition: border-color .3s ease;
}
.c-card:hover { border-color: rgba(255,43,51,.5); }
.c-card .v-ico { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; background: rgba(216,31,38,.14); color: var(--red2); clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }
.c-card .v-ico svg { width: 24px; height: 24px; }
.c-card h3 { font-size: 21px; margin-bottom: 4px; }
.c-card p { color: var(--muted); font-size: 15.5px; }
.c-card a.big {
  font-family: var(--font-head); font-weight: 800; font-style: italic;
  font-size: clamp(24px, 2.4vw, 32px); color: #fff; display: inline-block; margin-top: 2px;
  transition: color .25s ease;
}
.c-card a.big:hover { color: var(--red2); }

.form {
  border: 1px solid var(--line); background: var(--panel);
  padding: clamp(28px, 3.4vw, 44px);
}
.form h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 6px; }
.form > p { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { margin-bottom: 16px; }
.f-field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.f-field input, .f-field select, .f-field textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--line);
  color: var(--text); font-family: var(--font-body); font-size: 16px;
  padding: 14px 16px; outline: none;
  transition: border-color .25s ease;
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--red2); }
.f-field textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 40px 10px;
}
.form-success .v-ico { margin: 0 auto 18px; width: 60px; height: 60px; background: rgba(66,198,89,.15); color: #42c659; display: grid; place-items: center; clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%); }
.form-success .v-ico svg { width: 30px; height: 30px; }

.map-note {
  margin-top: 16px; border: 1px solid var(--line); background: var(--bg2);
  padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
}
.map-note b { font-family: var(--font-head); font-style: italic; font-weight: 700; font-size: 20px; text-transform: uppercase; }
.map-note span { color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line); background: var(--bg2);
  padding: clamp(50px, 6vw, 80px) clamp(20px, 5vw, 64px) 30px;
}
.foot-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px;
}
.foot-grid img.foot-logo { height: 64px; width: auto; margin-bottom: 18px; }
.foot-grid p { color: var(--muted); font-size: 15px; max-width: 380px; }
.foot-grid h4 {
  font-family: var(--font-head); font-weight: 700; font-style: italic;
  font-size: 18px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px;
}
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid ul a, .foot-grid ul li { color: var(--muted); font-size: 15.5px; transition: color .25s ease; }
.foot-grid ul a:hover { color: #fff; }
.foot-bottom {
  max-width: 1280px; margin: 46px auto 0; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13.5px;
}

/* ---------- Reveal-Grundzustände (JS setzt Animation) ---------- */
[data-reveal] { opacity: 0; transform: translateY(44px); }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
/* Menüleiste braucht Platz — darunter aufs Burger-Menü wechseln,
   damit „Anfrage stellen“ nie abgeschnitten wird */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .burger { display: block; }
}
@media (max-width: 900px) {
  .split, .split.rev { grid-template-columns: 1fr; }
  .split.rev > .split-media { order: 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .job-card { grid-template-columns: 1fr; justify-items: start; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 380px; }
  .values { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .g-item.wide { grid-column: span 1; }
  .g-item.wide img { aspect-ratio: 4/3; }
  .f-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}
