/* ═══════════════════════════════════════════════════════════════
   CRASH/GATE — Forensisches Dossier × Industrie × Editorial
   ═══════════════════════════════════════════════════════════════ */

/* Lokale Fonts (DSGVO-konform, kein Google-CDN) */
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('../fonts/big-shoulders-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Big Shoulders Display';
  font-style: normal;
  font-weight: 600 900;
  font-display: swap;
  src: url('../fonts/big-shoulders-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url('../fonts/jetbrains-mono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Surfaces */
  --paper: #efeae0;       /* warm bone white — feels like a file folder */
  --paper-2: #e6e0d3;     /* slightly darker for cards */
  --ink: #0c0c0c;         /* near-black */
  --ink-2: #1f2024;
  --ink-soft: #4a4a4f;
  --rule: #c9c2b4;        /* faint rule lines */

  /* Signal colors — used SPARINGLY */
  --blue: #1e2dbf;        /* signal blue */
  --blue-deep: #131c8a;
  --orange: #ff4d1f;      /* hot signal — only on critical CTAs */
  --green: #128c4d;       /* WhatsApp / "go" */

  /* Typography */
  --f-display: "Big Shoulders Display", "Impact", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
  --f-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

::selection { background: var(--ink); color: var(--paper); }

/* ─── Grain Texture ─── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 200;
  opacity: .07; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Tickerband ─── */
.ticker {
  background: var(--ink); color: var(--paper);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  overflow: hidden;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .26em;
  font-weight: 500;
  padding: 9px 0;
  position: relative;
  z-index: 50;
}
.ticker-track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  animation: tick 60s linear infinite;
}
.ticker-track span { display: inline-block; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════ HEADER ═══════════════════ */
.head {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.head.scrolled { box-shadow: 0 1px 0 var(--ink), 0 2px 0 var(--rule); }

.head-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex; align-items: center; gap: 36px;
}

.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--ink);
}
.brand-mark {
  width: 38px; height: 28px;
  color: var(--ink);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand-pipe {
  color: var(--blue);
  font-weight: 900;
  margin: 0 1px;
  display: inline-block;
  transform: translateY(-1px);
}
.brand-meta {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--ink-soft);
  margin-top: 4px;
  font-weight: 500;
}

.nav {
  display: flex; gap: 4px;
  margin-left: auto;
}
.nav a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  transition: color .2s;
}
.nav a:hover { color: var(--blue); }
.nav-num {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--ink-soft);
  padding: 2px 5px;
  border: 1px solid var(--rule);
}
.nav a:hover .nav-num { border-color: var(--blue); color: var(--blue); }

.head-cta {
  display: inline-flex; flex-direction: column;
  padding: 8px 18px;
  background: var(--ink); color: var(--paper);
  line-height: 1.1;
  border: 1px solid var(--ink);
  transition: background .2s;
}
.head-cta:hover { background: var(--blue); border-color: var(--blue); }
.head-cta-label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 2px;
}
.head-cta-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .03em;
  line-height: 1;
}

.burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; gap: 6px;
  align-items: center; justify-content: center;
  border: 1px solid var(--ink);
}
.burger span {
  width: 18px; height: 2px; background: var(--ink);
  transition: transform .25s;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  padding: 70px 32px 120px;
  max-width: var(--max);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero-stamp {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 10px 16px;
  border: 1.5px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
}
.hero-stamp::before {
  content: "";
  position: absolute; left: -1.5px; top: -1.5px; bottom: -1.5px;
  width: 6px;
  background: var(--orange);
}
.hero-stamp-num { color: var(--blue); }

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(60px, 10vw, 152px);
  line-height: .94;
  letter-spacing: -.015em;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--ink);
}
.hero-cut {
  position: relative;
  display: inline-block;
  color: var(--blue);
}
.hero-cut::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 48%; height: 9%;
  background: var(--orange);
  z-index: -1;
  transform: skewY(-2deg);
  opacity: .85;
}

.hero-lead {
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.65;
  max-width: 560px;
  color: var(--ink-2);
  margin-bottom: 38px;
  border-left: 3px solid var(--ink);
  padding-left: 20px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .03em;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: transform .2s, background .2s, color .2s;
  position: relative;
}
.cta:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--blue); }
.cta-arrow {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.cta-tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  background: var(--orange);
  color: var(--ink);
  padding: 3px 7px;
  margin-left: 6px;
  text-transform: uppercase;
}
.cta-ghost {
  background: transparent;
  color: var(--ink);
}
.cta-ghost:hover { background: var(--ink); color: var(--paper); box-shadow: 6px 6px 0 var(--orange); }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 8px;
}
.hero-facts > div {
  padding: 22px 24px 22px 0;
  margin-right: 24px;
  border-right: 1px solid var(--ink);
  display: flex; flex-direction: column;
  position: relative;
}
.hero-facts > div::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 4px;
  background: var(--orange);
}
.hero-facts > div:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.hf-idx {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hf-idx > span {
  background: var(--ink);
  color: var(--paper);
  padding: 3px 6px;
  font-size: 10px;
  letter-spacing: .14em;
  font-weight: 700;
}

.hero-facts dt {
  font-family: var(--f-display);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.hero-facts dt em {
  font-style: normal;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0;
}
.hero-facts dd {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.35;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--rule);
}

/* Hero Right — Evidence card */
.hero-right {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 18px;
}
.evidence {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 16px 16px 16px;
  border: 2px solid var(--ink);
}
.evidence-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 700;
  background: var(--orange);
  color: var(--ink);
  padding: 5px 9px;
  margin-bottom: 14px;
}
.evidence img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(.85) contrast(1.18) brightness(.92);
}
.evidence-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
  border-top: 1px solid rgba(239,234,224,.18);
  padding-top: 12px;
  gap: 10px;
}
.evidence-meta strong {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  font-weight: 700;
  opacity: .55;
  margin-bottom: 4px;
}
.evidence-meta span {
  font-size: 13px;
  font-weight: 500;
}
.status-dot {
  position: relative; padding-left: 14px;
}
.status-dot::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}
@keyframes blink { 50% { opacity: .25; } }
.evidence-corner {
  position: absolute; top: -2px; right: -2px;
  width: 28px; height: 28px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.urgent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  align-items: center;
  padding: 16px 18px;
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  position: relative;
}
.urgent::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}
.urgent-dot {
  width: 14px; height: 14px;
  background: var(--green);
  border-radius: 50%;
  grid-row: span 2;
  box-shadow: 0 0 0 4px rgba(18,140,77,.25);
  animation: pulse-urgent 2s infinite;
}
@keyframes pulse-urgent {
  0%, 100% { box-shadow: 0 0 0 4px rgba(18,140,77,.25); }
  50% { box-shadow: 0 0 0 9px rgba(18,140,77,0); }
}
.urgent strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.1;
}
.urgent small {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.hero-scroll {
  position: absolute;
  left: 32px; bottom: 30px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .25em;
  color: var(--ink-soft);
}
.hero-scroll-line {
  width: 56px; height: 1px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  left: -30%; top: 0; width: 30%; height: 100%;
  background: var(--ink);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { left: -30%; } 100% { left: 100%; }
}

/* ═══════════════════ SECTIONS ═══════════════════ */
.sec {
  padding: 120px 32px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.sec-head {
  margin-bottom: 80px;
  max-width: 920px;
}
.sec-mark {
  display: inline-flex; align-items: center; gap: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 28px;
}
.sec-mark-num {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: .01em;
}
.sec-mark-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .25em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
}
.sec-mark-light .sec-mark-num { color: #6f86ff; }
.sec-mark-light .sec-mark-label { color: var(--paper); }
.sec-mark-light { border-bottom-color: var(--paper); }

.sec-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(46px, 7.5vw, 100px);
  line-height: 1.06;
  letter-spacing: -.012em;
  text-transform: uppercase;
}
.sec-title br + span,
.sec-title .muted {
  display: inline-block;
  margin-top: .12em;
}
.sec-title-light { color: var(--paper); }

/* ═══════════════════ LEISTUNGEN — Aktenkartei ═══════════════════ */
.sec-leistungen {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  background: var(--paper);
}

.files {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid var(--ink);
}
.file {
  position: relative;
  background: var(--paper);
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: background .25s;
}
.file:nth-child(2n) { border-right: 0; }
.file:nth-last-child(-n+2) { border-bottom: 0; }
.file:hover { background: var(--paper-2); }

.file-tab {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  top: 0; left: 28px;
  transform: translateY(-50%);
}
.file-tab span {
  background: var(--orange);
  color: var(--ink);
  padding: 2px 6px;
  margin-right: 4px;
}

.file-body {
  position: relative;
  padding: 56px 36px 36px;
  min-height: 380px;
}
.file h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 18px;
  max-width: calc(100% - 110px);
}
.file p {
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 22px;
  max-width: 84%;
}
.file ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px dashed var(--rule);
  padding-top: 20px;
  max-width: 72%;
}
.file ul li {
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  padding-left: 20px;
  position: relative;
  color: var(--ink-2);
}
.file ul li::before {
  content: "✕";
  position: absolute; left: 0; top: 0;
  color: var(--orange);
  font-weight: 700;
}
.file-icon {
  position: absolute;
  right: 24px; top: 56px;
  width: 88px; height: 88px;
  color: var(--ink);
  opacity: .85;
  transition: transform .35s, color .35s;
}
.file:hover .file-icon { color: var(--blue); transform: rotate(-6deg) scale(1.05); }

/* ═══════════════════ ABLAUF — Timeline ═══════════════════ */
.timeline {
  list-style: none;
  position: relative;
  padding-left: 0;
  display: flex; flex-direction: column;
}
.timeline li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 50px;
  padding: 36px 0;
  border-top: 1.5px solid var(--ink);
  position: relative;
}
.timeline li:last-child { border-bottom: 1.5px solid var(--ink); }
.timeline li:hover { background: var(--paper-2); }

.tl-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(72px, 9vw, 140px);
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--ink);
  align-self: start;
  position: relative;
  display: inline-block;
}
.tl-num::after {
  content: "";
  position: absolute;
  right: -16px; top: 8px;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.tl-body { padding-top: 12px; }
.tl-body h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.tl-body p {
  font-size: 15.5px;
  color: var(--ink-2);
  max-width: 620px;
  margin-bottom: 18px;
}
.tl-meta {
  display: inline-flex; align-items: baseline; gap: 14px;
  padding: 8px 14px;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .15em;
}
.tl-meta span { opacity: .55; text-transform: uppercase; }
.tl-meta strong { font-weight: 700; }

/* ═══════════════════ EINSATZGEBIETE ═══════════════════ */
.sec-gebiete { background: var(--paper-2); }

.cities {
  display: flex; flex-direction: column; gap: 14px;
}
.cities-row {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.city {
  display: inline-flex; align-items: baseline; gap: 10px;
  padding: 14px 22px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: default;
  transition: background .2s, color .2s, transform .2s;
}
.city:hover { background: var(--ink); color: var(--paper); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--blue); }
.city-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--blue);
  background: var(--paper-2);
  padding: 3px 8px;
}
.city:hover .city-num { background: var(--orange); color: var(--ink); }
.city-hq {
  background: var(--ink); color: var(--paper);
  position: relative;
}
.city-hq:hover { box-shadow: 4px 4px 0 var(--orange); }
.city-hq .city-num {
  background: var(--orange);
  color: var(--ink);
}
.city-meta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: .65;
}
.city-add {
  background: transparent;
  border: 1.5px dashed var(--ink);
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 600;
}
.city-add:hover { background: transparent; color: var(--blue); border-color: var(--blue); transform: none; box-shadow: none; }

.cities-note {
  margin-top: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  max-width: 580px;
}

/* ═══════════════════ GEO-TOPO MAP ═══════════════════ */
.geo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.geo-map { display: flex; }
.geo-frame {
  position: relative;
  width: 100%;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 38px 24px 24px;
  display: flex; align-items: center; justify-content: center;
}
.geo-corner {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 8px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
}
.geo-tl { top: -1px; left: -1px; border-top: 0; border-left: 0; }
.geo-tr { top: -1px; right: -1px; border-top: 0; border-right: 0; }
.geo-bl { bottom: -1px; left: -1px; border-bottom: 0; border-left: 0; }
.geo-br { bottom: -1px; right: -1px; border-bottom: 0; border-right: 0; }

.geo-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
}
.geo-svg .pin-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .14em;
  fill: #0c0c0c;
  text-transform: uppercase;
}
.geo-svg .pin-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  letter-spacing: .14em;
  fill: #1e2dbf;
  font-weight: 500;
}
.geo-svg .pin-label-hq {
  font-size: 11px;
  font-weight: 800;
  fill: #0c0c0c;
  letter-spacing: .12em;
}
.geo-svg .compass-n {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  fill: #0c0c0c;
}
.geo-svg .callout-head {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  fill: #efeae0;
}
.geo-svg .callout-item {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  fill: #0c0c0c;
}
.geo-svg .callout-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  fill: #1e2dbf;
}
.geo-svg .pin circle:first-child {
  transform-origin: center;
}
.geo-svg .pin-hq circle:nth-child(1) {
  animation: hqPulse 2.4s ease-out infinite;
  transform-origin: 245px 120px;
}
@keyframes hqPulse {
  0% { transform: scale(.5); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Geo Legend */
.geo-legend {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 26px;
  display: flex; flex-direction: column;
}
.geo-legend-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(239,234,224,.2);
  margin-bottom: 14px;
}
.legend-num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 700;
  color: var(--orange);
}
.legend-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
}
.legend-list {
  list-style: none;
  display: flex; flex-direction: column;
  flex: 1;
}
.legend-list li {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(239,234,224,.12);
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(239,234,224,.85);
}
.legend-pin {
  width: 9px; height: 9px;
  background: var(--paper);
  border-radius: 50%;
  display: inline-block;
}
.legend-list li.is-hq { color: var(--paper); }
.legend-list li.is-hq .legend-pin {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,77,31,.25);
}
.legend-list li.is-hq .legend-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .02em;
  line-height: 1.05;
}
.legend-meta {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--orange);
  font-weight: 700;
}
.geo-legend .cities-note {
  margin-top: 18px;
  border-top: 1px solid rgba(239,234,224,.16);
  padding-top: 14px;
  color: rgba(239,234,224,.55);
}

/* ═══════════════════ KONTAKT-MAP (OSM Embed) ═══════════════════ */
.kontakt-map {
  max-width: var(--max);
  margin: 60px auto 0;
}
.map-frame {
  position: relative;
  border: 2px solid var(--paper);
  background: var(--ink);
}
.map-head {
  display: flex; align-items: center;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 2px solid var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  gap: 18px;
}
.map-coord { color: var(--blue); }
.map-label { color: var(--ink); }
.map-open {
  margin-left: auto;
  background: var(--orange);
  color: var(--ink);
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: .15em;
  transition: background .2s;
}
.map-open:hover { background: var(--ink); color: var(--orange); }
.map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: grayscale(.4) contrast(1.05);
}
.map-pin-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, calc(-50% + 24px));
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.map-pin {
  width: 18px; height: 18px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255,77,31,.25);
  animation: hqPulse 2.4s ease-out infinite;
}
.map-pin::after {
  content: "";
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--ink);
  margin-top: -2px;
}
.map-pin-tag {
  margin-top: 18px;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  border: 2px solid var(--orange);
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.map-pin-tag strong {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.05;
}
.map-pin-tag span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
}

/* ═══════════════════ ÜBER — Dossier ═══════════════════ */
.ueber-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}
.ueber-left p {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 560px;
}

.ueber-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1.5px solid var(--ink);
}
.ueber-pillars > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.pillar-num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--blue);
  padding-top: 4px;
}
.ueber-pillars strong {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  display: block;
  margin-bottom: 6px;
  line-height: 1.05;
}
.ueber-pillars small {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
}

.dossier {
  background: var(--paper);
  border: 2px solid var(--ink);
  position: sticky; top: 110px;
}
.dossier-head {
  display: flex; justify-content: space-between;
  padding: 12px 18px;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
}
.dossier-body { padding: 18px; }
.dossier-body img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(.7) contrast(1.1);
  margin-bottom: 18px;
}
.dossier-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}
.dossier-body dl div { display: flex; flex-direction: column; }
.dossier-body dt {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.dossier-body dd {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ═══════════════════ KONTAKT ═══════════════════ */
.sec-kontakt {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding: 120px 32px;
}

.kontakt-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.kontakt-accent {
  background: var(--orange);
  color: var(--ink);
  padding: 0 .15em;
  font-style: italic;
}

.kontakt-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(239,234,224,.7);
  max-width: 480px;
  margin-top: 24px;
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}

.kontakt-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kbox {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px;
  background: rgba(239,234,224,.04);
  border: 1.5px solid rgba(239,234,224,.16);
  transition: background .25s, border-color .25s, transform .25s;
}
.kbox:hover {
  background: rgba(239,234,224,.08);
  border-color: var(--orange);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--orange);
}
.kbox-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .18em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(239,234,224,.55);
}
.kbox-row svg {
  width: 24px; height: 24px;
  color: var(--paper);
  flex-shrink: 0;
}
.kbox-arrow {
  margin-left: auto;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--paper);
  transition: transform .25s;
}
.kbox:hover .kbox-arrow { transform: translate(4px, -4px); color: var(--orange); }
.kbox strong {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--paper);
  line-height: 1.1;
}
.kbox-row span:not(.kbox-arrow) { line-height: 1; }
.kbox small {
  font-size: 13px;
  color: rgba(239,234,224,.55);
}
.kbox-hero {
  grid-column: span 2;
  background: var(--blue);
  border-color: var(--blue);
}
.kbox-hero:hover { background: var(--blue-deep); border-color: var(--orange); }
.kbox-hero strong { font-size: 32px; }

/* ═══════════════════ FOOTER ═══════════════════ */
.foot {
  background: #050505;
  color: rgba(239,234,224,.55);
  padding: 60px 32px 22px;
}
.foot-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(239,234,224,.1);
}
.foot-brand { display: flex; flex-direction: column; line-height: 1.15; }
.foot-brand .brand-name { color: var(--paper); font-size: 30px; line-height: 1; }
.foot-brand .brand-meta { color: rgba(239,234,224,.45); margin-top: 8px; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  font-size: 13.5px;
  line-height: 1.7;
}
.foot-cols a { color: rgba(239,234,224,.55); }
.foot-cols a:hover { color: var(--orange); }
.foot-h {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .22em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 12px;
}
.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.foot-akte { color: rgba(239,234,224,.35); }

/* ═══════════════════ FLOATING WHATSAPP ═══════════════════ */
.wa {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  background: var(--green);
  color: var(--paper);
  display: grid; place-items: center;
  border: 2px solid var(--ink);
  z-index: 95;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 4px 4px 0 var(--ink);
}
.wa:hover { transform: translate(-3px, -3px); box-shadow: 7px 7px 0 var(--ink); }
.wa svg { width: 28px; height: 28px; }
.wa-pulse {
  position: absolute; inset: -2px;
  border: 2px solid var(--green);
  z-index: -1;
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .6; }
  80% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { position: static; }
  .ueber-grid { grid-template-columns: 1fr; gap: 60px; }
  .dossier { position: static; max-width: 480px; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 50px; }
  .files { grid-template-columns: 1fr; }
  .file:nth-child(odd) { border-right: 0; }
  .file:nth-last-child(2) { border-bottom: 2px solid var(--ink); }
  .geo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .head-cta { padding: 6px 12px; }
  .head-cta-num { font-size: 14px; }

  .nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 84px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    padding: 16px;
    gap: 0;
  }
  .nav.is-open a { padding: 14px 12px; border-top: 1px solid var(--rule); }

  .hero { padding: 50px 20px 80px; }
  .sec { padding: 90px 20px; }
  .sec-kontakt { padding: 90px 20px; }
  .foot { padding: 50px 20px 22px; }

  .timeline li { grid-template-columns: 1fr; gap: 14px; }
  .tl-num { font-size: 100px; }

  .kontakt-right { grid-template-columns: 1fr; }
  .kbox-hero { grid-column: span 1; }

  .foot-top { grid-template-columns: 1fr; gap: 30px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; }

  .map-frame iframe { height: 320px; }
  .map-head { flex-wrap: wrap; gap: 8px; }
  .map-open { margin-left: 0; }
  .geo-frame { padding: 32px 14px 14px; }
  .geo-corner { font-size: 8.5px; padding: 3px 6px; }
}

@media (max-width: 540px) {
  .head-inner { padding: 0 20px; gap: 12px; }
  .hero-stamp { font-size: 9.5px; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    margin-right: 0;
    padding: 18px 0;
  }
  .hero-facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
  .cta { padding: 14px 18px; font-size: 13px; }
  .cta-tag { display: none; }
  .file-tab { left: 16px; }
  .file-body { padding: 50px 22px 26px; min-height: 0; }
  .file h3 { font-size: 30px; max-width: 100%; }
  .file p, .file ul { max-width: 100%; }
  .file-icon { display: none; }
  .city { font-size: 18px; padding: 14px 18px; }
  .foot-cols { grid-template-columns: 1fr; }
  .wa { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}

/* ──────────── LEGAL SECTIONS (Impressum / Datenschutz / AGB) ──────────── */
.legal {
  border-top: 1px solid var(--rule);
  background: var(--paper);
  padding: 64px 24px;
}
.legal + .legal { padding-top: 48px; }
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 4px 10px;
  margin-bottom: 18px;
}
.legal-h {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
  margin: 0 0 22px;
  text-transform: uppercase;
}
.legal-body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-body strong { color: var(--ink); }

/* ──────────── LEGAL: erweiterte Strukturen für lange Texte ──────────── */
.legal-h3 {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 32px 0 12px;
  text-transform: uppercase;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.legal-h4 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin: 18px 0 8px;
  text-transform: uppercase;
}
.legal-body + .legal-body {
  margin-top: 12px;
}
.legal-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
}
.legal-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
}
.legal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--ink-soft);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.legal-emphasis {
  background: #fffbe8;
  border-left: 3px solid var(--ink);
  padding: 12px 16px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.55;
}
.legal-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.legal-meta a { color: var(--blue); text-decoration: underline; }
.legal a { color: var(--blue); text-decoration: underline; }

/* ──────────── IT-Recht Kanzlei Copyright-Badge im Footer ──────────── */
.itrk-badge {
  display: inline-block;
  margin-top: 14px;
  line-height: 0;
  transition: opacity 0.2s;
}
.itrk-badge img {
  max-width: 140px;
  height: auto;
  display: block;
}
.itrk-badge:hover { opacity: 0.75; }
