@charset "UTF-8";
/* Blitzsohn Logistik GmbH – Stylesheet */

@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jbmono-var.woff2") format("woff2");
  font-weight: 100 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bg: #f2f4f6;
  --bg-2: #e8ebef;
  --surface: #ffffff;
  --ink: #0c0f14;
  --ink-2: #4a525e;
  --ink-3: #6b7482;
  --line: #d3d8df;
  --line-strong: #b7bec8;
  --signal: #ffd60a;
  --signal-ink: #0c0f14;
  --mark: #ffd60a;
  --grid: rgba(12, 15, 20, 0.055);
  --route: rgba(12, 15, 20, 0.18);
  --shadow: 0 1px 0 rgba(12, 15, 20, 0.04), 0 12px 32px -18px rgba(12, 15, 20, 0.28);
  --inverse-bg: #0c0f14;
  --inverse-ink: #eef1f4;
  --inverse-ink-2: #9aa4b1;
  --inverse-line: #262d37;

  --f-sans: "Archivo", "Segoe UI", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0b0e12;
    --bg-2: #10141a;
    --surface: #141920;
    --ink: #e9edf2;
    --ink-2: #a3adba;
    --ink-3: #7f8a98;
    --line: #232a33;
    --line-strong: #353e4a;
    --mark: #ffd60a;
    --grid: rgba(233, 237, 242, 0.045);
    --route: rgba(233, 237, 242, 0.16);
    --shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 16px 40px -20px rgba(0, 0, 0, 0.8);
    --inverse-bg: #161b22;
    --inverse-line: #2a323d;
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #0b0e12;
  --bg-2: #10141a;
  --surface: #141920;
  --ink: #e9edf2;
  --ink-2: #a3adba;
  --ink-3: #7f8a98;
  --line: #232a33;
  --line-strong: #353e4a;
  --mark: #ffd60a;
  --grid: rgba(233, 237, 242, 0.045);
  --route: rgba(233, 237, 242, 0.16);
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 16px 40px -20px rgba(0, 0, 0, 0.8);
  --inverse-bg: #161b22;
  --inverse-line: #2a323d;
  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -0.015em; font-weight: 800; font-stretch: 125%; overflow-wrap: break-word; -webkit-hyphens: auto; hyphens: auto; }
::selection { background: var(--signal); color: var(--signal-ink); }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; box-shadow: 0 0 0 5px var(--signal); border-radius: 2px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--signal); color: var(--signal-ink); padding: 10px 14px; font-weight: 700; text-decoration: none; }
.skip:focus { top: 12px; }
.mono { font-family: var(--f-mono); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Label im Frachtbrief-Stil: 01 / LEISTUNGEN */
.eyebrow {
  display: block;
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2);
  margin: 0 0 20px;
}
.eyebrow b { color: var(--ink); font-weight: 600; }
.eyebrow::before { content: ""; display: inline-block; vertical-align: middle; width: 22px; height: 2px; margin: -2px 10px 0 0; background: var(--signal); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 72px; flex-wrap: wrap; }
.brand { display: inline-flex; color: var(--ink); text-decoration: none; padding: 6px 0; }
.logo-svg { width: 188px; height: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; text-decoration: none; font-size: 0.95rem; font-weight: 600;
  padding: 10px 12px; color: var(--ink-2); transition: color .2s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav .nav-cta {
  margin-left: 8px; color: var(--signal-ink); background: var(--signal); border-radius: var(--radius);
  padding: 10px 16px; transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { color: var(--signal-ink); transform: translateY(-1px); box-shadow: 0 6px 16px -8px rgba(255, 214, 10, 0.9); }

.theme-toggle {
  width: 40px; height: 40px; margin-left: 6px; display: inline-grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); background: transparent; color: var(--ink-2);
  cursor: pointer; transition: border-color .2s, color .2s;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--line-strong); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle[hidden] { display: none; }
.theme-toggle .i-sun { display: none; }
[data-effective="dark"] .theme-toggle .i-moon { display: none; }
[data-effective="dark"] .theme-toggle .i-sun { display: block; }

@media (max-width: 760px) {
  .header-inner { min-height: 0; padding-top: 10px; }
  .logo-svg { width: 160px; }
  .nav { width: calc(100% + 2 * var(--gutter)); margin: 4px calc(-1 * var(--gutter)) 0; padding: 0 var(--gutter) 8px; overflow-x: auto; scrollbar-width: none; }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { padding: 8px 10px; white-space: nowrap; font-size: 0.92rem; }
  .nav a:first-child { padding-left: 0; }
  .nav a:first-child::after { left: 0; }
  .nav .nav-cta { margin-left: auto; padding: 8px 12px; }
  .theme-toggle { position: absolute; top: 12px; right: var(--gutter); width: 36px; height: 36px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
}
.routes { position: absolute; inset: 0; width: 100%; height: 100%; }
.routes path { fill: none; stroke: var(--route); stroke-width: 1.5; }
.routes .lane { stroke-dasharray: 14 18; animation: lane 14s linear infinite; }
.routes .lane.slow { animation-duration: 22s; }
.routes .lane.rev { animation-direction: reverse; }
.routes .pulse { stroke: var(--signal); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 60 1400; animation: pulse 9s var(--ease) infinite; opacity: .9; }
.routes .pulse.p2 { animation-delay: -4.5s; animation-duration: 12s; }
.routes circle { fill: var(--bg); stroke: var(--route); stroke-width: 1.5; }
@keyframes lane { to { stroke-dashoffset: -320; } }
@keyframes pulse { from { stroke-dashoffset: 1460; } to { stroke-dashoffset: 0; } }

.hero-inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr); gap: clamp(32px, 5vw, 72px); align-items: end; padding-top: clamp(56px, 9vw, 120px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero h1 { font-size: clamp(2.6rem, 7.2vw, 5.6rem); line-height: 0.95; letter-spacing: -0.025em; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -0.04em; right: -0.04em; bottom: 0.06em; height: 0.2em; z-index: -1;
  background: var(--mark); transform-origin: left; animation: mark 0.9s 0.35s var(--ease) both;
}
@keyframes mark { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-2); max-width: 36em; margin: 28px 0 36px; line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.rise { animation: rise .8s var(--ease) both; }
.rise.d1 { animation-delay: .08s; } .rise.d2 { animation-delay: .16s; } .rise.d3 { animation-delay: .24s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Buttons */
.btn {
  --b-bg: var(--ink); --b-ink: var(--bg);
  display: inline-flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 22px;
  background: var(--b-bg); color: var(--b-ink); border: 1px solid var(--b-bg); border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; text-decoration: none; letter-spacing: 0.005em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
}
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:hover .arr { transform: translateX(4px); }
.btn-signal { --b-bg: var(--signal); --b-ink: var(--signal-ink); }
.btn-ghost { --b-bg: transparent; --b-ink: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }

/* Frachtbrief-Karte */
.waybill {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); font-family: var(--f-mono); font-size: 0.84rem;
}
.waybill-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; border-bottom: 1px dashed var(--line-strong); color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; }
.waybill-head .dot { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-2); }
.waybill-head .dot::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--signal) 30%, transparent); }
.waybill-route { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 20px 18px 6px; }
.waybill-route strong { font-family: var(--f-sans); font-stretch: 125%; font-weight: 800; font-size: 1.35rem; letter-spacing: -0.01em; color: var(--ink); }
.waybill-route .track { position: relative; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 6px, transparent 6px 11px); }
.waybill-route .track::after { content: ""; position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--signal); border: 2px solid var(--ink); animation: travel 5.5s var(--ease) infinite; }
@keyframes travel { 0% { left: 0; } 70%, 100% { left: calc(100% - 10px); } }
.waybill-sub { display: flex; justify-content: space-between; padding: 0 18px 18px; color: var(--ink-3); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.waybill dl { margin: 0; border-top: 1px solid var(--line); }
.waybill dl div { display: grid; grid-template-columns: 7.5em 1fr; gap: 12px; padding: 11px 18px; border-bottom: 1px solid var(--line); }
.waybill dl div:last-child { border-bottom: 0; }
.waybill dt { color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.7rem; padding-top: 2px; }
.waybill dd { margin: 0; color: var(--ink); }
.waybill dd a { text-decoration: none; background: linear-gradient(var(--signal), var(--signal)) 0 100% / 100% 2px no-repeat; transition: background-size .25s var(--ease); }
.waybill dd a:hover { background-size: 100% 100%; color: var(--signal-ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 120px) 0; border-bottom: 1px solid var(--line); }
.section.alt { background: var(--bg-2); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px 64px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.section-head p { color: var(--ink-2); margin: 0; max-width: 34em; }

/* Leistungs-Karten */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); border-left: 1px solid var(--line); }
.card {
  position: relative; display: flex; flex-direction: column; min-height: 300px; padding: 28px 24px 24px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface);
  text-decoration: none; color: var(--ink); overflow: hidden; transition: background .3s var(--ease);
}
.card::before { content: ""; position: absolute; left: 0; top: -1px; height: 3px; width: 100%; background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.card:hover::before, .card:focus-visible::before { transform: scaleX(1); }
.card .num { font-family: var(--f-mono); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.1em; }
.card .ico { width: 44px; height: 44px; margin: 28px 0 22px; color: var(--ink); transition: transform .4s var(--ease); }
.card:hover .ico { transform: translateX(6px); }
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--ink-2); font-size: 0.97rem; margin: 0; }
.card .more { margin-top: auto; padding-top: 24px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); }
.card .more span { transition: transform .3s var(--ease); }
.card:hover .more { color: var(--ink); }
.card:hover .more span { transform: translateX(5px); }

/* Ablauf als Route */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; position: relative; counter-reset: step; }
.steps::before { content: ""; position: absolute; top: 15px; left: 16px; right: 16px; height: 2px; background: repeating-linear-gradient(90deg, var(--line-strong) 0 8px, transparent 8px 14px); }
.steps li { position: relative; padding: 56px 32px 0 0; counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; top: 0; left: 0; width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--bg); border: 2px solid var(--ink); border-radius: 50%; font-family: var(--f-mono); font-size: 0.72rem; font-weight: 600;
  transition: background .3s var(--ease);
}
.section.alt .steps li::before { background: var(--bg-2); }
.steps li:hover::before { background: var(--signal); color: var(--signal-ink); }
.steps li:last-child::before { background: var(--signal); color: var(--signal-ink); }
.steps h3 { font-size: 1.2rem; margin-bottom: 10px; }
.steps p { color: var(--ink-2); margin: 0; max-width: 24em; }

/* Split-Layout */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.split h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 24px; }
.split .body p { color: var(--ink-2); }
.facts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.facts li { display: grid; grid-template-columns: 9.5em 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.facts .k { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.facts .v { font-weight: 600; }

/* Karte Standort (stilisiert, keine externe Karte) */
.locmap { position: relative; aspect-ratio: 4 / 3; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.locmap svg { width: 100%; height: 100%; }
.locmap .m-grid { stroke: var(--grid); stroke-width: 1; }
.locmap .m-road { fill: none; stroke: var(--line-strong); stroke-width: 3; stroke-linecap: round; }
.locmap .m-road.minor { stroke-width: 1.5; stroke: var(--line); }
.locmap .m-route { fill: none; stroke: var(--ink); stroke-width: 2; stroke-dasharray: 6 7; animation: lane 10s linear infinite; }
.locmap .m-node { fill: var(--surface); stroke: var(--ink); stroke-width: 2; }
.locmap .m-home { fill: var(--signal); stroke: var(--ink); stroke-width: 2; }
.locmap .m-ring { fill: none; stroke: var(--signal); stroke-width: 2; transform-origin: center; transform-box: fill-box; animation: ring 3.2s var(--ease) infinite; }
@keyframes ring { from { transform: scale(0.6); opacity: .9; } to { transform: scale(2.6); opacity: 0; } }
.locmap text { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; fill: var(--ink-2); text-transform: uppercase; }
.locmap text.big { font-family: var(--f-sans); font-weight: 800; font-size: 15px; letter-spacing: 0; fill: var(--ink); text-transform: none; }
.locmap figcaption { position: absolute; left: 12px; bottom: 10px; font-family: var(--f-mono); font-size: 0.66rem; color: var(--ink-3); letter-spacing: 0.06em; }

/* Kontakt-Band (invertiert) */
.contact-band { background: var(--inverse-bg); color: var(--inverse-ink); padding: clamp(64px, 9vw, 120px) 0; position: relative; overflow: hidden; }
.contact-band .eyebrow { color: var(--inverse-ink-2); }
.contact-band .eyebrow b { color: var(--inverse-ink); }
.contact-band h2 { font-size: clamp(2.2rem, 5.6vw, 4.4rem); max-width: 14em; }
.contact-band p.lead { color: var(--inverse-ink-2); }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 48px; border-top: 1px solid var(--inverse-line); }
.contact-item { padding: 24px 24px 24px 0; border-right: 1px solid var(--inverse-line); text-decoration: none; color: inherit; display: block; }
.contact-item + .contact-item { padding-left: 24px; }
.contact-item:last-child { border-right: 0; }
.contact-item .k { display: block; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--inverse-ink-2); margin-bottom: 10px; }
.contact-item .v { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 700; font-stretch: 112%; overflow-wrap: anywhere; }
a.contact-item .v { background: linear-gradient(var(--signal), var(--signal)) 0 100% / 0 2px no-repeat; transition: background-size .35s var(--ease); }
a.contact-item:hover .v { background-size: 100% 2px; }
.contact-band .btn-ghost { --b-ink: var(--inverse-ink); border-color: var(--inverse-line); }
.contact-band .btn-ghost:hover { border-color: var(--inverse-ink); }

/* Leistungsseite */
.page-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; }
.page-hero .wrap { padding-top: clamp(48px, 8vw, 104px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero h1 { font-size: clamp(2.4rem, 6.4vw, 4.8rem); max-width: 13em; }
.page-hero .lead { margin-bottom: 0; }

.service { display: grid; grid-template-columns: 5.5rem minmax(0, 1.1fr) minmax(0, 1fr); gap: 24px clamp(24px, 4vw, 56px); padding: clamp(40px, 5vw, 64px) 0; border-bottom: 1px solid var(--line); }
.service:last-child { border-bottom: 0; }
.service .num { font-family: var(--f-mono); font-size: 0.85rem; color: var(--ink-3); padding-top: 8px; }
.service .num::after { content: ""; display: block; width: 28px; height: 3px; margin-top: 12px; background: var(--signal); transition: width .4s var(--ease); }
.service:hover .num::after { width: 56px; }
.service h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
.service .desc p { color: var(--ink-2); }
.service ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.service li { position: relative; padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); }
.service li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 12px; height: 2px; background: var(--ink); transition: width .3s var(--ease), background .3s; }
.service li:hover::before { width: 16px; background: var(--signal); }
.service .tag { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 10px; }

.note { border-left: 3px solid var(--signal); background: var(--surface); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; color: var(--ink-2); }
.note strong { color: var(--ink); }

/* Karriere – Stellenanzeigen */
.jobs { border-top: 1px solid var(--line-strong); }
.job { border-bottom: 1px solid var(--line); background: var(--surface); border-left: 1px solid var(--line); border-right: 1px solid var(--line); position: relative; }
.job::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 3px; background: var(--signal); transform: scaleY(0); transform-origin: top; transition: transform .4s var(--ease); }
.job:hover::before, .job[open]::before { transform: scaleY(1); }
.job-head { display: grid; grid-template-columns: minmax(0, 1fr) auto 40px; gap: 16px 32px; align-items: center; padding: 26px 28px; cursor: pointer; list-style: none; }
.job-head::-webkit-details-marker { display: none; }
.job-title { display: block; }
.job-title .tag { display: block; font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.job-h { display: block; font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 800; font-stretch: 118%; line-height: 1.15; letter-spacing: -0.01em; overflow-wrap: break-word; hyphens: auto; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.job-meta span { display: inline-flex; flex-direction: column; padding: 8px 12px; border: 1px solid var(--line); border-radius: var(--radius); font-weight: 600; font-size: 0.92rem; white-space: nowrap; background: var(--bg); }
.job-meta b { font-family: var(--f-mono); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.job-toggle { position: relative; width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 50%; transition: background .25s var(--ease), border-color .25s; }
.job-toggle::before, .job-toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2px; margin: -1px 0 0 -7px; background: var(--ink); transition: transform .3s var(--ease); }
.job-toggle::after { transform: rotate(90deg); }
.job[open] .job-toggle::after { transform: rotate(0deg); }
.job-head:hover .job-toggle { background: var(--signal); border-color: var(--signal); }
.job-head:hover .job-toggle::before, .job-head:hover .job-toggle::after { background: var(--signal-ink); }
.job-inner { padding: 0 28px 28px; }
.job-intro { font-size: 1.08rem; color: var(--ink); max-width: 44em; padding-top: 22px; border-top: 1px dashed var(--line-strong); }
.job-body { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin-top: 12px; }
.job-body h4 { font-family: var(--f-mono); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 0 12px; }
.job-body ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.job-body li { position: relative; padding: 10px 0 10px 22px; border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 0.97rem; }
.job-body li::before { content: ""; position: absolute; left: 0; top: 20px; width: 10px; height: 2px; background: var(--signal); }
.job-foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.job-foot p { margin: 0; color: var(--ink-2); max-width: 36em; }
.facts .v a { text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 4px; }
@media (max-width: 1020px) {
  .job-head { grid-template-columns: minmax(0, 1fr) 40px; }
  .job-meta { grid-column: 1; grid-row: 2; justify-content: flex-start; }
  .job-toggle { grid-column: 2; grid-row: 1; }
  .job-body { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 760px) {
  .job-head { padding: 20px 18px; gap: 14px; }
  .job-inner { padding: 0 18px 22px; }
  .job-meta span { white-space: normal; }
}

/* Rechtstexte */
.legal { padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 112px); }
.legal .wrap { display: grid; grid-template-columns: 15rem minmax(0, 46rem); gap: clamp(24px, 5vw, 80px); }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 12px; }
.legal .toc { position: sticky; top: 104px; align-self: start; font-size: 0.92rem; }
.legal .toc ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.legal .toc a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink-2); transition: color .2s, padding .25s var(--ease); }
.legal .toc a:hover { color: var(--ink); padding-left: 6px; }
.legal article h2 { font-size: 1.5rem; margin: 48px 0 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.legal article h3 { font-size: 1.08rem; font-stretch: 112%; margin: 26px 0 8px; letter-spacing: 0; }
.legal article p, .legal article li { color: var(--ink-2); }
.legal article strong { color: var(--ink); }
.legal article ul { padding-left: 1.2em; }
.legal article a { text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal address { font-style: normal; }
.legal .meta { font-family: var(--f-mono); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.06em; }
.data-block { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; margin: 0 0 1em; color: var(--ink-2); }
.data-block p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0 32px; font-size: 0.95rem; color: var(--ink-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-grid .logo-svg { width: 200px; color: var(--ink); margin-bottom: 18px; }
.footer-grid h2 { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 500; font-stretch: 100%; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: 6px 0; }
.footer-grid a { text-decoration: none; transition: color .2s; }
.footer-grid a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.footer-grid address { font-style: normal; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.05em; color: var(--ink-3); }

/* 404 */
.notfound { min-height: 60vh; display: grid; align-items: center; }
.notfound .code { font-family: var(--f-mono); color: var(--ink-3); letter-spacing: 0.1em; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-inner { grid-template-columns: 1fr; align-items: start; }
  .waybill { max-width: 520px; }
  .service { grid-template-columns: 4rem minmax(0, 1fr); }
  .service .list { grid-column: 2; }
}
@media (max-width: 760px) {
  body { font-size: 1rem; }
  .section-head, .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card .ico { margin: 18px 0 16px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { top: 16px; bottom: 16px; left: 15px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--line-strong) 0 8px, transparent 8px 14px); }
  .steps li { padding: 4px 0 0 52px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-item, .contact-item + .contact-item { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--inverse-line); }
  .facts li { grid-template-columns: 1fr; gap: 4px; }
  .service { grid-template-columns: 1fr; gap: 16px; }
  .service .list { grid-column: auto; }
  .service .num { padding-top: 0; }
  .legal .wrap { grid-template-columns: minmax(0, 1fr); }
  .eyebrow { overflow-wrap: anywhere; }
  .legal .toc { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 .hl { white-space: normal; }
  .waybill dl div { grid-template-columns: 6.2em 1fr; }
}
@media (max-width: 420px) {
  .btn { width: 100%; justify-content: space-between; }
}

/* ---------- Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .hero-bg, .page-hero .hero-bg, .theme-toggle, .contact-band .actions { display: none !important; }
  body { background: #fff; color: #000; }
  .contact-band { background: #fff; color: #000; }
}
