/* ==========================================================================
   BESAN GmbH – Betoninstandsetzung, Schnaitsee
   Mobile-first · CI: Orange #EE7100 / Blau #0052A2 / Beton-Grautöne
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, DSGVO) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/archivo-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/archivo-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/ibm-plex-mono-latin-600-normal.woff2') format('woff2');
}

/* ---------- Custom Properties ---------- */
:root {
  --anthrazit: #17191c;
  --anthrazit-2: #1f2226;
  --navy: #131a26;
  --beton-hell: #f4f4f2;
  --beton: #e6e6e2;
  --beton-linie: #d3d3cd;
  --text-dunkel: #22252a;
  --text-hell: #eef0f2;
  --text-grau: #8b9096;
  --text-grau-hell: #5d636b;
  --orange: #ee7100;
  --orange-hell: #ff8b1f;
  --blau: #0052a2;
  --blau-hell: #3d86cf;
  --tablog-blau: #1e6fa7;
  --tablog-orange: #f99c00;
  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-text: 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --pad-x: clamp(20px, 5vw, 72px);
  --sektion-y: clamp(72px, 12vw, 148px);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dunkel);
  background: var(--beton-hell);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.05; }

.mono { font-family: var(--font-mono); }

.sektion { padding: var(--sektion-y) var(--pad-x); }

.kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.kicker::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.sektion-headline {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin-bottom: 22px;
  max-width: 18ch;
}

.sektion-text { max-width: 62ch; font-size: clamp(1rem, 1.4vw, 1.125rem); }

/* Scroll-Reveal-Grundzustand (nur mit JS aktiv; ohne JS/Reduced Motion alles sichtbar) */
html.js:not(.reduced-motion) .reveal { opacity: 0; transform: translateY(28px); }

/* ==========================================================================
   CI-Elemente: Scroll-Progress (oranger Logo-Balken) + blaue Logo-Streifen
   ========================================================================== */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 110;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--orange);
  pointer-events: none;
}
html.reduced-motion .scroll-progress { display: none; }

.ci-streifen {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 68px;
  margin-top: 18px;
}
.ci-streifen i { display: block; height: 4px; background: var(--blau); }
.ci-streifen.hell i { background: var(--blau-hell); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(23, 25, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 30px; width: auto; }

.site-nav { display: none; }

.header-cta {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-hell);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 9px 14px;
  white-space: nowrap;
  transition: border-color 0.25s, background 0.25s;
}
.header-cta:hover { border-color: var(--orange); background: rgba(238, 113, 0, 0.12); }

@media (min-width: 900px) {
  .brand img { height: 36px; }
  .site-nav { display: flex; gap: clamp(18px, 2.6vw, 34px); }
  .site-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-hell);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
  }
  .site-nav a:hover { opacity: 1; color: var(--orange-hell); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--anthrazit);
  color: var(--text-hell);
  overflow: hidden;
}
.hero-medien { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.hero-medien video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  opacity: 0;
  transition: opacity 1.4s ease;
  display: none;
}
.hero-medien video.laeuft { opacity: 1; }
@media (min-width: 900px) { .hero-medien video { display: block; } }
.hero-medien img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  transform: scale(1.06);
}
@media (max-width: 760px) {
  .hero-medien img { object-position: 67% 76%; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(13, 14, 16, 0.92) 0%, rgba(13, 14, 16, 0.45) 38%, rgba(13, 14, 16, 0.18) 65%, rgba(13, 14, 16, 0.38) 100%);
}

/* Maßketten-Ornament */
.hero-masskette {
  position: absolute;
  z-index: 2;
  right: var(--pad-x);
  top: 16vh;
  display: none;
  color: rgba(238, 240, 242, 0.55);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}
@media (min-width: 1024px) { .hero-masskette { display: block; } }

.hero-inhalt {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad-x) clamp(88px, 14vh, 150px);
  max-width: 1100px;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 240, 242, 0.8);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before { content: ''; width: 34px; height: 2px; background: var(--orange); }

.hero h1 { font-weight: 800; letter-spacing: -0.02em; }
.hero-display {
  display: block;
  font-size: clamp(2.7rem, 10vw, 7rem);
  line-height: 0.98;
}
.hero-display .zeile { display: block; overflow: hidden; }
.hero-display .zeile > span { display: inline-block; }
.hero-sub {
  display: block;
  margin-top: 26px;
  font-family: var(--font-text);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(238, 240, 242, 0.92);
  max-width: 34ch;
}
.hero-satz {
  margin-top: 18px;
  max-width: 52ch;
  color: rgba(238, 240, 242, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 26px;
  min-height: 50px;
  background: transparent;
  color: inherit;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-hell); }
.btn-kontur { border: 1px solid rgba(255, 255, 255, 0.4); color: var(--text-hell); }
.btn-kontur:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.hero-scrollhinweis {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 240, 242, 0.55);
  display: none;
}
@media (min-width: 900px) { .hero-scrollhinweis { display: block; } }

/* ==========================================================================
   Schwebender Anruf-Button (nach dem Hero, primär Mobil)
   ========================================================================== */
.anruf-schwebend {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 18px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.anruf-schwebend.sichtbar { opacity: 1; pointer-events: auto; transform: none; }
.anruf-schwebend:hover { background: var(--orange-hell); }
.anruf-schwebend svg { width: 20px; height: 20px; flex: none; }
.anruf-schwebend span { display: none; }
@media (min-width: 700px) { .anruf-schwebend span { display: inline; } }

/* ==========================================================================
   Vertrauensband
   ========================================================================== */
.vertrauen {
  background: var(--navy);
  color: var(--text-hell);
  border-top: 3px solid var(--orange);
}
.vertrauen-zahlen {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  max-width: 1200px;
  margin: 0 auto;
}
.zahl-block { border-left: 2px solid var(--blau-hell); padding-left: 22px; }
.zahl-block .zahl {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
  color: #fff;
}
.zahl-block .zahl small {
  font-size: 0.45em;
  color: var(--orange);
  font-weight: 600;
}
.zahl-block p { margin-top: 10px; color: var(--text-grau); font-size: 15px; max-width: 30ch; }

.norm-band {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-grau);
}
.norm-band span { display: flex; align-items: center; gap: 9px; }
.norm-band span::before { content: ''; width: 7px; height: 7px; background: var(--blau-hell); }

@media (min-width: 760px) {
  .vertrauen-zahlen { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

/* ==========================================================================
   Leistungen
   ========================================================================== */
.leistungen { background: var(--beton-hell); overflow: hidden; }
.leistungen-kopf { max-width: 1200px; margin: 0 auto; }

.leistungen-track {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: clamp(36px, 6vw, 64px);
}

.leistung-karte {
  background: #fff;
  border: 1px solid var(--beton-linie);
  display: flex;
  flex-direction: column;
}
.leistung-karte figure { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.leistung-karte figure img { width: 100%; height: 100%; object-fit: cover; }
.leistung-karte figure .nummer {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--blau);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 13px;
}
.leistung-karte { border-top: 3px solid var(--blau); }
.leistung-inhalt { padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.leistung-inhalt h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.01em; }
.leistung-inhalt p { color: var(--text-grau-hell); font-size: 15px; }
.leistung-inhalt ul {
  list-style: none;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--beton-linie);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.leistung-inhalt li {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-grau-hell);
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.leistung-inhalt li::before { content: '+'; color: var(--orange); font-weight: 600; }

/* Desktop: horizontal gescrubbte Bahn, Karten vertikal MITTIG im Viewport */
@media (min-width: 1024px) {
  .leistungen { padding-left: 0; padding-right: 0; padding-bottom: 0; }
  .leistungen-kopf { padding: 0 var(--pad-x); max-width: none; }
  .leistungen-buehne {
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  .leistungen-track {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
    padding: 0 var(--pad-x);
    width: max-content;
    margin-top: 0;
    will-change: transform;
  }
  .leistung-karte { width: clamp(380px, 31vw, 470px); flex: none; }
}

/* ==========================================================================
   Verfahren
   ========================================================================== */
.verfahren { background: var(--anthrazit); color: var(--text-hell); }
.verfahren-kopf { margin-bottom: clamp(28px, 4vw, 44px); }
.verfahren .sektion-text { color: var(--text-grau); }
.verfahren .sektion-headline { font-size: clamp(1.9rem, 4.4vw, 2.7rem); }

.verfahren-buehne {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 42px;
}
.verfahren-plan { position: relative; }
.verfahren-plan svg { width: 100%; height: auto; }
.verfahren-schritte { display: flex; flex-direction: column; gap: 34px; }

.schritt { border-left: 2px solid rgba(255, 255, 255, 0.14); padding-left: 22px; }
.schritt .schritt-nr {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.12em;
}
.schritt h3 { font-size: 1.3rem; font-weight: 800; margin: 8px 0 8px; }
.schritt p { color: var(--text-grau); font-size: 15px; max-width: 48ch; }
.schritt.aktiv { border-left-color: var(--orange); }

@media (min-width: 1024px) {
  .verfahren-buehne { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; }
  .verfahren-links { position: sticky; top: 84px; }
  .verfahren-schritte { padding: 16vh 0 10vh; gap: 20vh; }
}

/* Patente */
.patente {
  max-width: 1200px;
  margin: clamp(56px, 9vw, 96px) auto 0;
  padding-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.patente h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.patente > p { color: var(--text-grau); max-width: 60ch; }
.patent-karten { display: grid; gap: 24px; margin-top: 34px; }
.patent-karte {
  background: var(--anthrazit-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 28px 26px;
}
.patent-karte .mono-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blau-hell);
}
.patent-karte h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; margin: 10px 0; }
.patent-karte p { color: var(--text-grau); font-size: 14.5px; }
.patent-karte img { margin-top: 18px; border: 1px solid rgba(255, 255, 255, 0.12); }
@media (min-width: 860px) { .patent-karten { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   Brückeninstandsetzung im Detail
   ========================================================================== */
.detail { background: var(--beton); }
.detail-kopf { max-width: 1200px; margin: 0 auto; }
.detail .sektion-text { color: var(--text-grau-hell); }
.detail-raster {
  max-width: 1200px;
  margin: clamp(36px, 6vw, 60px) auto 0;
  display: grid;
  gap: 14px;
}
.detail-posten {
  background: var(--beton-hell);
  border: 1px solid var(--beton-linie);
  border-left: 3px solid var(--blau);
  padding: 18px 20px;
}
.detail-posten dt {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dunkel);
}
.detail-posten dd { margin: 6px 0 0; font-size: 14.5px; color: var(--text-grau-hell); }
@media (min-width: 760px) { .detail-raster { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .detail-raster { grid-template-columns: 1fr 1fr 1fr; } }

/* ==========================================================================
   Über uns
   ========================================================================== */
.ueberuns { background: var(--beton-hell); }
.ueberuns-raster { max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.ueberuns-bild { position: relative; overflow: hidden; }
.ueberuns-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  scale: 1.12;
}
.ueberuns-text .sektion-text { color: var(--text-grau-hell); }
.ueberuns-text .sektion-text + .sektion-text { margin-top: 16px; }

.werte { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.wert {
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.wert::before { content: '//'; font-family: var(--font-mono); color: var(--orange); font-weight: 600; }

.siegel-zeile { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.siegel {
  font-family: var(--font-mono);
  font-size: 12.5px;
  border: 1px solid var(--beton-linie);
  background: #fff;
  color: var(--text-grau-hell);
  padding: 9px 14px;
}
@media (min-width: 1000px) {
  .ueberuns-raster { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: center; }
}

/* ==========================================================================
   Einzugsgebiet
   ========================================================================== */
.gebiet { background: var(--beton); }
.gebiet-raster { max-width: 1200px; margin: 0 auto; display: grid; gap: 44px; }
.gebiet .sektion-text { color: var(--text-grau-hell); }
.radar { width: min(100%, 460px); margin: 0 auto; }
.radar svg { width: 100%; height: auto; }
.gebiet-orte { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.gebiet-ort {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--text-grau-hell);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.gebiet-ort b { color: var(--text-dunkel); font-weight: 600; }
.gebiet-ort::before { content: ''; width: 8px; height: 8px; background: var(--blau); flex: none; align-self: center; }
.gebiet-ort.hq::before { background: var(--orange); }
@media (min-width: 1000px) {
  .gebiet-raster { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: center; }
}

/* ==========================================================================
   Referenzen
   ========================================================================== */
.referenzen { background: var(--anthrazit); color: var(--text-hell); }
.referenzen-kopf { max-width: 1200px; margin: 0 auto; }
.referenz-raster {
  max-width: 1200px;
  margin: clamp(36px, 6vw, 64px) auto 0;
  display: grid;
  gap: 26px;
}
.referenz {
  position: relative;
  overflow: hidden;
  background: var(--anthrazit-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.referenz figure { aspect-ratio: 4 / 3; overflow: hidden; }
.referenz figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.referenz:hover figure img { transform: scale(1.045); }
.referenz figcaption { padding: 20px 22px 24px; }
.referenz .auftraggeber {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.referenz h3 { font-size: 1.15rem; font-weight: 800; margin: 8px 0 6px; }
.referenz p { color: var(--text-grau); font-size: 14px; }
@media (min-width: 760px) { .referenz-raster { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .referenz-raster { grid-template-columns: repeat(4, 1fr); } .referenz figure { aspect-ratio: 3 / 4; } }

/* ==========================================================================
   Drohnenblick (Kronbergbrücke-Video, 9:16)
   ========================================================================== */
.drohne { background: var(--beton-hell); }
.drohne-raster {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 44px;
}
.drohne .sektion-text { color: var(--text-grau-hell); }
.drohne-video video {
  display: block;
  width: min(100%, 360px);
  height: auto;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  background: var(--anthrazit);
  border: 1px solid var(--beton-linie);
  box-shadow: 0 24px 60px rgba(23, 25, 28, 0.18);
}
@media (min-width: 1000px) {
  .drohne-raster { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: center; }
}

/* ==========================================================================
   Karriere
   ========================================================================== */
.karriere {
  background: var(--navy);
  color: var(--text-hell);
  border-top: 1px solid rgba(61, 134, 207, 0.25);
}
.stelle { transition: border-color 0.25s, background 0.25s; }
.stelle:hover { border-color: var(--blau-hell); background: rgba(0, 82, 162, 0.14); }
.karriere-raster { max-width: 1200px; margin: 0 auto; display: grid; gap: 40px; }
.karriere .sektion-text { color: var(--text-grau); }
.stellen { display: flex; flex-direction: column; gap: 12px; }
.stelle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15.5px;
}
.stelle .mono-label { font-family: var(--font-mono); font-size: 12px; color: var(--orange); white-space: nowrap; }
.karriere .btn { margin-top: 26px; }
@media (min-width: 1000px) {
  .karriere-raster { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: center; }
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.kontakt { background: var(--anthrazit); color: var(--text-hell); position: relative; overflow: hidden; }
.kontakt::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 134, 207, 0.5), transparent);
}
.kontakt-kopf { max-width: 1200px; margin: 0 auto; }
.kontakt-headline { font-size: clamp(2rem, 6vw, 4rem); font-weight: 800; letter-spacing: -0.02em; max-width: 22ch; }

.tel-riesig {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(1.7rem, 5.5vw, 3.6rem);
  color: #fff;
  text-decoration: none;
  margin-top: 30px;
  border-bottom: 3px solid var(--orange);
  padding-bottom: 6px;
  transition: color 0.25s;
}
.tel-riesig:hover { color: var(--orange-hell); }
.kontakt-mail {
  display: block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text-grau);
  text-decoration: none;
}
.kontakt-mail:hover { color: var(--text-hell); }

.kontakt-raster {
  max-width: 1200px;
  margin: clamp(44px, 7vw, 80px) auto 0;
  display: grid;
  gap: 40px;
}

/* Formular */
.formular {
  background: var(--anthrazit-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: clamp(24px, 4vw, 40px);
}
.formular h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; }
.feld { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.feld label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-grau);
}
.feld input, .feld textarea {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--text-hell);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 14px;
  min-height: 50px;
  border-radius: 0;
}
.feld textarea { min-height: 120px; resize: vertical; }
.feld input:focus, .feld textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: -1px;
  border-color: transparent;
}
.formular .btn { width: 100%; justify-content: center; border: 0; cursor: pointer; font-size: 16px; }
.formular-hinweis { margin-top: 14px; font-size: 12.5px; color: var(--text-grau); }

/* Seitenspalte: QR + Karte + Google */
.kontakt-seite { display: flex; flex-direction: column; gap: 26px; }

.qr-kasten {
  display: none;
  background: var(--beton-hell);
  color: var(--text-dunkel);
  padding: 26px;
  text-align: center;
}
.qr-kasten img { width: 170px; height: 170px; margin: 0 auto; }
.qr-kasten p {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-grau-hell);
}
@media (min-width: 1024px) { .qr-kasten { display: block; } }

.karte-kasten { background: var(--anthrazit-2); border: 1px solid rgba(255, 255, 255, 0.09); }
.karte-platzhalter {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,255,255,0.05) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,255,255,0.05) 39px 40px),
    var(--anthrazit-2);
}
.karte-platzhalter .pin { color: var(--orange); }
.karte-platzhalter address { font-style: normal; font-size: 14.5px; color: var(--text-grau); line-height: 1.5; }
.karte-platzhalter .btn { font-size: 14px; padding: 12px 18px; min-height: 44px; }
.karte-datenschutz { font-size: 11.5px; color: var(--text-grau); max-width: 34ch; }
.karte-kasten iframe { width: 100%; aspect-ratio: 4 / 3; border: 0; display: block; }

.google-links { display: flex; flex-direction: column; gap: 10px; }
.google-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-hell);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 18px;
  min-height: 50px;
  transition: border-color 0.25s, background 0.25s;
}
.google-links a:hover { border-color: var(--blau-hell); background: rgba(0, 82, 162, 0.16); }
.google-links svg { flex: none; }

@media (min-width: 1024px) {
  .kontakt-raster { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: start; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  position: relative;
  background: #0e0f11;
  color: var(--text-grau);
  padding: 52px var(--pad-x) 96px;
  font-size: 13.5px;
}
/* Logo-Motiv: drei blaue Streifen als oberer Abschluss */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 17px;
  background:
    linear-gradient(var(--blau), var(--blau)) 0 0 / 100% 3px no-repeat,
    linear-gradient(var(--blau), var(--blau)) 0 7px / 100% 3px no-repeat,
    linear-gradient(var(--blau), var(--blau)) 0 14px / 100% 3px no-repeat;
}
@media (min-width: 900px) { .site-footer { padding-bottom: 52px; } }
.footer-raster {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { color: var(--text-grau); text-decoration: none; }
.site-footer a:hover { color: var(--text-hell); }
.footer-logo img { height: 26px; width: auto; opacity: 0.85; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.tablog-credit { width: 100%; margin-top: 10px; font-size: 12.5px; }
.tablog-credit a { color: var(--tablog-blau); font-weight: 600; text-decoration: none; }
.tablog-credit a:hover { color: var(--tablog-orange); }

/* ==========================================================================
   Rechtsseiten (Impressum / Datenschutz)
   ========================================================================== */
.legal-page { background: var(--beton-hell); }
.legal-page .site-header { position: static; background: var(--anthrazit); }
.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px) var(--pad-x);
}
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 34px; }
.legal h2 { font-size: 1.25rem; font-weight: 800; margin: 38px 0 12px; }
.legal p, .legal li { color: var(--text-grau-hell); font-size: 15.5px; }
.legal ul { padding-left: 20px; margin: 10px 0; }
.legal a { color: var(--blau); }
.legal address { font-style: normal; }

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