/* ============================================================
   HVAC Solution GmbH — Relaunch 2026 · v2 „Weißes Layout"
   Design-System: Weiß + Markengelb #FFD233, Be Vietnam Pro
   Dunkle Akzent-Bühnen: Hero (Plan-Scrub), Zitat, Footer
   ============================================================ */

:root {
  /* Helle Flächen */
  --bg-0: #ffffff;
  --bg-1: #ffffff;
  --bg-2: #f5f6f8;
  --panel: #eef0f4;

  /* Dunkle Bühnen (Hero, Zitat, Footer) */
  --dark-0: #08090b;
  --dark-1: #0c0e11;
  --dark-panel: #141821;

  /* Linien & Text auf Hell */
  --line: rgba(15, 23, 32, 0.1);
  --line-strong: rgba(15, 23, 32, 0.24);
  --ink: #0d1117;
  --ink-dim: #4c5560;
  --ink-faint: #697077; /* WCAG AA: >=4.5:1 auf Weiß und --bg-2 */

  /* Linien & Text auf Dunkel */
  --line-inv: rgba(200, 210, 225, 0.14);
  --line-inv-strong: rgba(200, 210, 225, 0.28);
  --ink-inv: #f4f6f8;
  --ink-inv-dim: #a2abb6;
  --ink-inv-faint: #8b95a1; /* WCAG AA auf --dark-0 */

  /* Marke */
  --accent: #ffd233;
  --accent-soft: #ffe066;
  --accent-deep: #e0b41f;
  --accent-ink: #8a6d00;      /* Gelb-Ersatz für Text auf Weiß (Kontrast) */
  --eco: #2dab2a;
  --glow: rgba(255, 210, 51, 0.5);

  /* Typo */
  --display: "Be Vietnam Pro", "Arial Black", sans-serif;
  --sans: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max: 1240px;
  --pad: clamp(20px, 4vw, 48px);
  --header-h: 76px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-1: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 6px rgba(16, 24, 40, 0.04);
  --shadow-2: 0 14px 34px rgba(16, 24, 40, 0.1), 0 3px 8px rgba(16, 24, 40, 0.05);
}

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

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

body {
  background: var(--bg-1);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #100c00; }

img, svg, video, canvas { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 2px; border-radius: 2px; }

/* ---------- Typografie ---------- */
.overline {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.overline .idx { color: var(--ink-faint); margin-right: 0.9em; font-variant-numeric: tabular-nums; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display { font-size: clamp(3rem, 8.5vw, 7.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin: 18px 0 22px; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); font-weight: 700; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--ink-dim); max-width: 48ch; }

.plus { color: var(--accent); }

/* ---------- Platzhalter-System ---------- */
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1.5px dashed var(--line-strong);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: var(--bg-2);
  white-space: nowrap;
}
.ph-badge::before { content: "◌"; color: var(--accent-deep); font-size: 12px; }
.ph-box {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(-45deg, transparent 0 14px, rgba(15, 23, 32, 0.02) 14px 28px),
    var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--ink-faint);
  padding: 26px 18px;
}
.ph-box strong { font-family: var(--display); font-weight: 700; color: var(--ink-dim); font-size: 1rem; letter-spacing: 0; }
.ph-box span { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #100c00; transform: translateY(-2px); box-shadow: var(--shadow-2); }
.btn--solid { background: var(--accent); border-color: var(--accent); color: #100c00; box-shadow: var(--shadow-1); }
.btn--solid:hover { background: var(--accent-soft); border-color: var(--accent-soft); }
.btn--ghost { border-color: var(--line-inv-strong); color: var(--ink-inv); }
.btn .arrow { transition: transform 0.35s ease; }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Header ----------
   Zwei Modi: über dunklem Hero (Startseite, transparent, helle Schrift)
   und "light" (Unterseiten bzw. gescrollt: weiße Leiste, dunkle Schrift).
   Logo doppelt eingebunden, Sichtbarkeit via CSS.                      */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  border-bottom: 1px solid transparent;
}
/* Blur liegt auf einem kinderlosen Pseudo-Element: backdrop-filter direkt auf
   dem Header machte ihn zum Containing Block für das fixed .main-nav-Overlay
   (mobiles Menü wurde nach dem Scrollen auf 76px zusammengequetscht). */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.site-header.scrolled::before { opacity: 1; }
.header-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { position: relative; display: inline-flex; }
.logo img { height: 30px; width: auto; transition: opacity 0.35s ease; }
.logo .logo-dark { position: absolute; inset: 0; opacity: 0; }

/* Dunkler Kontext (über Hero): helle Nav-Schrift, weißes Logo */
.site-header .main-nav a { color: var(--ink-inv-dim); }
.site-header .main-nav a:hover,
.site-header .main-nav a[aria-current="page"] { color: var(--ink-inv); }
.site-header .nav-toggle span,
.site-header .nav-toggle span::before,
.site-header .nav-toggle span::after { background: var(--ink-inv); }

/* Heller Kontext: Unterseiten von Anfang an, Startseite ab Scroll */
.site-header--light .logo .logo-white,
.site-header.scrolled .logo .logo-white { opacity: 0; }
.site-header--light .logo .logo-dark,
.site-header.scrolled .logo .logo-dark { opacity: 1; }
.site-header--light .main-nav a,
.site-header.scrolled .main-nav a { color: var(--ink-dim); }
.site-header--light .main-nav a:hover,
.site-header--light .main-nav a[aria-current="page"],
.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a[aria-current="page"] { color: var(--ink); }
.site-header--light .nav-toggle span,
.site-header--light .nav-toggle span::before,
.site-header--light .nav-toggle span::after,
.site-header.scrolled .nav-toggle span,
.site-header.scrolled .nav-toggle span::before,
.site-header.scrolled .nav-toggle span::after { background: var(--ink); }
body.nav-open .site-header .nav-toggle span { background: transparent !important; }

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 10px rgba(16, 24, 40, 0.05);
}

.main-nav { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 32px); }
.main-nav a {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transition: right 0.35s ease;
}
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { right: 0; }
.main-nav .btn { padding: 12px 24px; }
.main-nav .btn::after { display: none; }

.nav-toggle { display: none; z-index: 120; width: 44px; height: 44px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease, background 0.35s ease;
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
body.nav-open .nav-toggle span::before { transform: rotate(45deg); top: 0; background: var(--ink); }
body.nav-open .nav-toggle span::after { transform: rotate(-45deg); top: 0; background: var(--ink); }

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  }
  .main-nav a { font-size: 16px; color: var(--ink-dim) !important; }
  .main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--ink) !important; }
  .main-nav .btn { color: #100c00 !important; }
  body.nav-open .main-nav { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity 0.4s ease; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Sektions-Grundlagen ---------- */
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
.section { position: relative; padding: clamp(90px, 14vh, 160px) 0; }
.section--alt { background: var(--bg-2); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section-head { max-width: 780px; margin-bottom: clamp(40px, 7vh, 80px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.hr-line { border: none; height: 1px; background: var(--line); }

/* ---------- Bild-Rahmen ---------- */
.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  background: var(--bg-2);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-frame--tall { aspect-ratio: 4 / 3; }
.img-frame--wide { aspect-ratio: 16 / 9; }
.img-caption { margin-top: 12px; font-size: 0.8rem; color: var(--ink-faint); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* ---------- Scrub-Stage (dunkle Bühne, Frames sind Nachtaufnahmen) ---------- */
.stage {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--dark-0);
}
.stage canvas,
.stage .stage-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stage .stage-poster { display: none; }
.stage .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(8, 9, 11, 0.55) 100%),
    linear-gradient(180deg, rgba(8, 9, 11, 0.55) 0%, transparent 18%, transparent 82%, rgba(8, 9, 11, 0.75) 100%);
}
.stage .dim {
  position: absolute;
  inset: 0;
  background: #07080a;
  opacity: 0;
  pointer-events: none;
}

.beat {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
  opacity: 0;
  pointer-events: none;
  color: var(--ink-inv);
}
.beat::before,
.hero-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1200px, 100vw);
  height: min(560px, 74vh);
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(6, 7, 9, 0.78) 0%,
    rgba(6, 7, 9, 0.5) 45%,
    rgba(6, 7, 9, 0) 74%);
  pointer-events: none;
}
.beat > *, .hero-title > * { position: relative; z-index: 1; }
body.no-scrub .beat::before, body.no-scrub .hero-title::before { display: none; }

.beat .overline { margin-bottom: 18px; color: var(--accent); }
.beat .overline .idx { color: var(--ink-inv-faint); }
.beat .beat-big {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--ink-inv);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 4px 44px rgba(0, 0, 0, 0.75);
}
.beat p { margin-top: 16px; color: var(--ink-inv-dim); max-width: 54ch; }

/* ---------- Helle Hero-Bühne (Tages-Plan-Verwandlung) ----------
   Modifier auf .stage: Video/Frames sind hell (weiße Zeichnung),
   Overlays wechseln auf dunkle Typo + weiße Scrims.              */
.stage--light { background: #f4f5f7; }
.stage--light .vignette {
  background:
    radial-gradient(120% 90% at 50% 50%, transparent 55%, rgba(255, 255, 255, 0.45) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.65) 100%);
}
.stage--light .dim { background: #ffffff; }
.stage--light .beat { color: var(--ink); }
.stage--light .beat::before,
.stage--light .hero-title::before {
  background: radial-gradient(50% 50% at 50% 50%,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0) 74%);
}
.stage--light .beat .overline { color: var(--accent-ink); }
.stage--light .beat .overline .idx { color: var(--ink-faint); }
.stage--light .beat .beat-big {
  color: var(--ink);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 4px 44px rgba(255, 255, 255, 0.8);
}
.stage--light .beat p { color: var(--ink-dim); }
.stage--light .hero-title .overline { color: var(--accent-ink); }
.stage--light .hero-title .display {
  color: var(--ink);
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.95), 0 6px 60px rgba(255, 255, 255, 0.85);
}
.stage--light .hero-title .sub { color: var(--ink-dim); }
.stage--light .scroll-hint { color: var(--ink-faint); }
body.no-scrub .stage--light { background: var(--bg-0); }

/* ---------- Kompakt-Hero: Headline sofort sichtbar, Video im Rahmen ---------- */
.hero-compact {
  padding: calc(var(--header-h) + clamp(44px, 8vh, 90px)) 0 clamp(60px, 9vh, 100px);
  background:
    radial-gradient(90% 130% at 88% -25%, rgba(255, 210, 51, 0.2), transparent 58%),
    radial-gradient(60% 90% at 8% 110%, rgba(255, 210, 51, 0.07), transparent 55%),
    var(--bg-0);
}
.hero-compact .hero-intro {
  max-width: 880px;
  margin: 0 auto clamp(38px, 6vh, 64px);
  text-align: center;
}
.hero-compact .display { font-size: clamp(3rem, 7.5vw, 6.4rem); }
.hero-compact .sub {
  margin-top: 18px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}
.hero-compact .hero-actions { justify-content: center; margin-top: 32px; }

/* Gerahmte Scrub-Stage: nimmt nicht den ganzen Viewport ein */
.stage--framed {
  height: min(72vh, 720px);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
}
.stage--framed .beat { padding: 0 clamp(24px, 5vw, 70px); }
.stage--framed .beat .beat-big { font-size: clamp(1.5rem, 3.2vw, 2.7rem); }
.stage--framed .scroll-hint { bottom: 22px; }
@media (orientation: portrait) {
  .stage--framed { height: min(74svh, 820px); }
}
body.no-scrub .stage--framed { height: auto; }

/* ---------- Karten-Einbettung (Google Maps) ---------- */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  background: var(--bg-2);
  aspect-ratio: 16 / 10;
}
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- Hero ---------- */
.hero-stage .hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
}
.hero-title .overline { margin-bottom: 26px; color: var(--accent); }
.hero-title .display {
  color: var(--ink-inv);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9), 0 6px 60px rgba(0, 0, 0, 0.8);
}
.hero-title .sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  color: var(--ink-inv-dim);
  letter-spacing: 0.06em;
}
.scroll-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-inv-faint);
}
.scroll-hint .tick {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: tickfall 2s ease-in-out infinite;
}
@keyframes tickfall {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Kennzahlen ---------- */
.stats {
  border-bottom: 1px solid var(--line);
  background: var(--bg-0);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: clamp(36px, 5vh, 60px) 20px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat .num .suffix { color: var(--accent-deep); }
.stat .label {
  margin-top: 12px;
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-left: none; border-top: 1px solid var(--line); }
  .stat:nth-child(-n+2) { border-top: none; }
}

/* ---------- HVAC+S Typo-Sektion (jetzt hell) ---------- */
.hvacs-section {
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hvacs-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(90px, 12vh, 140px) var(--pad);
}
.hvacs-letters {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(6px, 2vw, 22px);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hvacs-letters .hl { opacity: 0.14; transition: opacity 0.3s ease, color 0.3s ease; }
.hvacs-letters .hl.lit { opacity: 1; }
.hvacs-letters .hl.plus-s { color: var(--accent-deep); opacity: 0.2; }
.hvacs-letters .hl.plus-s.lit { opacity: 1; color: var(--accent-deep); text-shadow: 0 0 60px var(--glow); }
.hvacs-words {
  margin-top: clamp(26px, 5vh, 50px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}
.hvacs-words .hw {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.hvacs-words .hw.lit { opacity: 1; color: var(--ink); }
.hvacs-words .hw b { color: var(--accent-ink); font-weight: 700; }
.hvacs-claim {
  margin-top: clamp(30px, 6vh, 60px);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-dim);
  max-width: 54ch;
}

/* ---------- Gewerke: Foto-Karten ---------- */
.gewerke-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.gewerk {
  display: flex;
  flex-direction: column;
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
a.gewerk { cursor: pointer; }
.gewerk:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--accent-deep); }
.g-media { position: relative; aspect-ratio: 4 / 3; background: var(--bg-2); overflow: hidden; }
.g-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gewerk:hover .g-media img { transform: scale(1.05); }
.g-media .g-idx {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.g-body { padding: clamp(20px, 2vw, 28px) clamp(18px, 2vw, 26px) clamp(24px, 2.6vw, 32px); display: flex; flex-direction: column; flex: 1; }
.gewerk svg {
  width: 40px;
  height: 40px;
  margin: 0 0 16px;
  stroke: var(--accent-deep);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}
.gewerk:hover svg { transform: translateY(-4px); }
.gewerk h3 { font-size: 1.2rem; margin-bottom: 8px; }
.gewerk p { font-size: 0.92rem; color: var(--ink-dim); line-height: 1.65; }
.g-more {
  margin-top: auto;
  padding-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-ink);
}
.g-more .arrow { display: inline-block; transition: transform 0.35s ease; }
.gewerk:hover .g-more .arrow { transform: translateX(5px); }
@media (max-width: 1000px) { .gewerke-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gewerke-grid { grid-template-columns: 1fr; } }

/* ---------- Einsatzbereiche ---------- */
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.einsatz {
  border: 1px solid var(--line);
  background: var(--bg-0);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px) clamp(20px, 2vw, 28px);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.einsatz:hover { border-color: var(--accent-deep); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.einsatz::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.einsatz:hover::after { opacity: 1; }
.einsatz h3 { font-size: 1.1rem; margin-bottom: 8px; }
.einsatz p { font-size: 0.88rem; color: var(--ink-dim); }
@media (max-width: 900px) { .einsatz-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .einsatz-grid { grid-template-columns: 1fr; } }

/* ---------- Ablauf ---------- */
.ablauf-section { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ablauf-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 32px); }
.step { position: relative; padding-top: 26px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--line-strong);
}
.step::after {
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 34%;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
}
.step .s-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent-deep);
  line-height: 1;
}
.step h3 { margin: 14px 0 10px; font-size: 1.2rem; }
.step p { font-size: 0.92rem; color: var(--ink-dim); }
@media (max-width: 900px) { .ablauf-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ablauf-steps { grid-template-columns: 1fr; } }

/* ---------- Referenzen (Platzhalter-Strip) ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(12px, 1.4vw, 20px);
}
.ref-logo {
  aspect-ratio: 8 / 5;
  padding: 14px;
}
.ref-logo strong { font-size: 0.92rem; }
@media (max-width: 1000px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Zielgruppen ---------- */
.ziel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 24px); }
.ziel {
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: clamp(28px, 3vw, 42px) clamp(22px, 2.4vw, 34px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.ziel:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--accent-deep); }
.ziel .z-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 16px; font-weight: 700; }
.ziel h3 { font-size: 1.2rem; margin-bottom: 10px; }
.ziel p { font-size: 0.92rem; color: var(--ink-dim); }
@media (max-width: 900px) { .ziel-grid { grid-template-columns: 1fr; } }

/* ---------- Über uns / Trust ---------- */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-facts { display: grid; gap: 0; border-top: 1px solid var(--line); }
.fact {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  color: var(--ink-dim);
}
.fact .f-plus { color: var(--accent-deep); font-family: var(--display); font-weight: 800; }
.trust-row {
  margin-top: clamp(50px, 8vh, 90px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 44px;
}
.trust-row .t-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin-right: 10px; }
.trust-row img { height: 54px; width: auto; filter: grayscale(1); opacity: 0.6; transition: filter 0.35s ease, opacity 0.35s ease; }
.trust-row img:hover { filter: none; opacity: 1; }
@media (max-width: 1000px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- Karriere-Band (Foto-Bühne) ---------- */
.karriere-band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-1);
}
.karriere-band .kb-media {
  position: absolute;
  inset: 0;
}
.karriere-band .kb-media img { width: 100%; height: 100%; object-fit: cover; }
.karriere-band .kb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 11, 0.82) 0%, rgba(8, 9, 11, 0.55) 45%, rgba(8, 9, 11, 0.18) 100%);
}
.karriere-band .kb-inner { position: relative; padding: clamp(80px, 12vh, 130px) 0; }
.karriere-band .overline { color: var(--accent); }
.karriere-band .overline .idx { color: var(--ink-inv-faint); }
.karriere-band h2 { color: var(--ink-inv); }
.karriere-band p { color: var(--ink-inv-dim); max-width: 52ch; margin-bottom: 34px; }

/* ---------- Wartung-Band (Gelb-Bühne) ---------- */
.wartung-band {
  background:
    radial-gradient(90% 160% at 95% 50%, rgba(255, 255, 255, 0.35), transparent 55%),
    var(--accent);
}
.wartung-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  padding: clamp(50px, 8vh, 80px) 0;
}
.wartung-inner .overline { color: rgba(16, 12, 0, 0.65); }
.wartung-inner .overline .idx { color: rgba(16, 12, 0, 0.4); }
.wartung-inner h2 { margin: 12px 0 14px; color: #100c00; }
.wartung-inner p { color: rgba(16, 12, 0, 0.75); max-width: 60ch; }
.wartung-inner .btn { border-color: #100c00; background: #100c00; color: var(--accent); }
.wartung-inner .btn:hover { background: #241d02; border-color: #241d02; color: var(--accent-soft); transform: translateY(-2px); }
@media (max-width: 800px) { .wartung-inner { grid-template-columns: 1fr; } }

/* ---------- Leitsatz / Quote (dunkle Bühne) ---------- */
.quote-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-0);
}
.quote-section video, .quote-section .quote-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.quote-section .q-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 80% at 50% 50%, rgba(8, 9, 11, 0.3), rgba(8, 9, 11, 0.85));
}
.quote-inner { position: relative; text-align: center; max-width: 980px; padding: 120px var(--pad); }
.quote-inner blockquote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink-inv);
  text-shadow: 0 4px 50px rgba(0, 0, 0, 0.8);
}
.quote-inner blockquote em { font-style: normal; color: var(--accent); }
.quote-inner cite {
  display: block;
  margin-top: 28px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-inv-dim);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--ink);
  transition: color 0.3s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--display);
  font-weight: 800;
  color: var(--accent-deep);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 4px 24px; color: var(--ink-dim); max-width: 72ch; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 90px); }
.contact-item { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-item .c-label { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
.contact-item a, .contact-item p { font-size: 1.12rem; color: var(--ink); }
.contact-item a:hover { color: var(--accent-ink); }
.contact-form { display: grid; gap: 18px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg-0);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font: inherit;
  font-size: 0.98rem;
  padding: 14px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.field select { appearance: none; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(255, 210, 51, 0.25);
}
.form-note { font-size: 0.8rem; color: var(--ink-faint); }
.form-note a { color: var(--ink-dim); border-bottom: 1px solid var(--line-strong); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ---------- CTA ---------- */
.cta-section { text-align: center; background: var(--bg-2); border-top: 1px solid var(--line); }
.cta-section .display { font-size: clamp(2.2rem, 5.6vw, 4.6rem); }
.cta-contacts {
  margin: 40px auto 46px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 54px;
  color: var(--ink-dim);
  font-size: 1.02rem;
}
.cta-contacts a { color: var(--ink); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; transition: border-color 0.3s ease, color 0.3s ease; }
.cta-contacts a:hover { color: var(--accent-ink); border-color: var(--accent-deep); }

/* ---------- Footer (dunkle Bühne) ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--dark-0); padding: clamp(50px, 8vh, 80px) 0 40px; color: var(--ink-inv-dim); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 50px;
}
.footer-grid .logo img { height: 26px; margin-bottom: 20px; }
.footer-grid p, .footer-grid a { font-size: 0.92rem; color: var(--ink-inv-dim); }
.footer-grid h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-inv-faint);
  margin-bottom: 18px;
}
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--accent-soft); }
.footer-slogan { color: var(--ink-inv-faint); font-size: 0.85rem; margin-top: 8px; }
.footer-slogan .eco { color: var(--eco); }
.footer-bottom {
  border-top: 1px solid var(--line-inv);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--ink-inv-faint);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.56s; }

/* ---------- Fallback: kein Scrubbing (nur reduced-motion) ---------- */
body.no-scrub .stage { height: auto; min-height: 0; background: var(--dark-0); }
body.no-scrub .stage canvas { display: none; }
body.no-scrub .stage .vignette { display: none; }
body.no-scrub .stage .stage-poster {
  display: block;
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}
body.no-scrub .beat {
  position: relative;
  inset: auto;
  opacity: 1;
  pointer-events: auto;
  padding: 44px var(--pad);
}
body.no-scrub .hero-stage { display: block; padding-top: var(--header-h); }
body.no-scrub .hero-stage .hero-title {
  position: relative;
  inset: auto;
  padding: clamp(50px, 9vh, 90px) var(--pad) 30px;
}
body.no-scrub .hero-stage .beat { display: none; }
body.no-scrub .scroll-hint { display: none; }
body.no-scrub .hvacs-inner { min-height: 0; }
body.no-scrub .hvacs-letters .hl,
body.no-scrub .hvacs-letters .hl.plus-s,
body.no-scrub .hvacs-words .hw { opacity: 1; }
body.no-scrub .hvacs-words .hw { color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-hint .tick { animation: none; }
}

/* ============================================================
   Unterseiten
   ============================================================ */
.subpage-hero {
  padding: calc(var(--header-h) + clamp(70px, 12vh, 130px)) 0 clamp(60px, 9vh, 100px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(90% 130% at 88% -25%, rgba(255, 210, 51, 0.22), transparent 58%),
    radial-gradient(60% 90% at 8% 110%, rgba(255, 210, 51, 0.08), transparent 55%),
    var(--bg-0);
}
.subpage-hero .display { font-size: clamp(2.4rem, 6vw, 4.8rem); }
.subpage-hero .lead { margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.subpage-hero .hero-actions { margin-top: 34px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(16px, 1.8vw, 24px); }
.card {
  background: var(--bg-0);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 34px 30px 38px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--accent-deep); }
.card .c-idx { font-size: 11px; letter-spacing: 0.3em; color: var(--accent-ink); font-variant-numeric: tabular-nums; font-weight: 700; }
.card h3 { margin: 16px 0 10px; font-size: 1.2rem; }
.card p { font-size: 0.93rem; color: var(--ink-dim); }
.card ul { margin-top: 14px; }
.card li {
  font-size: 0.9rem;
  color: var(--ink-dim);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.card li:last-child { border-bottom: none; }
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 2px;
  background: var(--accent-deep);
}

/* ---------- Split-Sektionen (Bild + Text, alternierend) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.split + .split { margin-top: clamp(60px, 9vh, 110px); }
.split--flip > .split-media { order: 2; }
.split h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 14px 0 14px; }
.split p { color: var(--ink-dim); }
.split ul { margin-top: 18px; }
.split li {
  font-size: 0.95rem;
  color: var(--ink-dim);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.split li:last-child { border-bottom: none; }
.split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 2px;
  background: var(--accent-deep);
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--flip > .split-media { order: 0; }
}

/* ---------- Werte / Benefits ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.value {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-0);
  box-shadow: var(--shadow-1);
  padding: clamp(26px, 3vw, 36px) clamp(20px, 2vw, 28px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--accent-deep); }
.value .v-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--accent);
  color: #100c00;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.value h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value p { font-size: 0.9rem; color: var(--ink-dim); }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .value-grid { grid-template-columns: 1fr; } }

/* ---------- Geschäftsführung ---------- */
.gf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 28px); max-width: 900px; }
.gf-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-0);
  box-shadow: var(--shadow-1);
  padding: clamp(28px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gf-head { display: flex; align-items: center; gap: 18px; }
.gf-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--dark-1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.gf-card h3 { font-size: 1.15rem; }
.gf-card .gf-role { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.gf-card blockquote { font-size: 0.95rem; color: var(--ink-dim); font-style: italic; border-left: 3px solid var(--accent); padding-left: 16px; }
@media (max-width: 700px) { .gf-grid { grid-template-columns: 1fr; } }

/* ---------- Team-Platzhalter ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.team-grid .ph-box { aspect-ratio: 3 / 4; }
.team-grid .ph-box .t-icon { font-size: 2rem; color: var(--line-strong); font-family: var(--display); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Karriere: Stellen ---------- */
.job-list { display: grid; gap: clamp(14px, 1.6vw, 20px); max-width: 980px; }
.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-0);
  box-shadow: var(--shadow-1);
  padding: clamp(22px, 2.6vw, 32px) clamp(22px, 2.6vw, 34px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.job:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--accent-deep); }
.job h3 { font-size: 1.15rem; margin-bottom: 6px; }
.job .job-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 0.82rem; color: var(--ink-faint); letter-spacing: 0.08em; }
.job .job-meta span::before { content: "+ "; color: var(--accent-deep); font-weight: 700; }
.job .btn { padding: 12px 22px; }
@media (max-width: 640px) { .job { grid-template-columns: 1fr; } }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.benefit {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-0);
  box-shadow: var(--shadow-1);
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2vw, 26px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: var(--accent-deep); }
.benefit svg {
  width: 36px; height: 36px;
  stroke: var(--accent-deep);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 16px;
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 6px; }
.benefit p { font-size: 0.88rem; color: var(--ink-dim); }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefit-grid { grid-template-columns: 1fr; } }

/* ---------- Kennzahlen-Platzhalter (Über uns) ---------- */
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 22px); }
.metric {
  text-align: center;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg-2);
  padding: clamp(28px, 3.4vw, 44px) 16px;
}
.metric .m-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.metric .m-num .suffix { color: var(--accent-deep); }
.metric .m-label { margin-top: 10px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); }
@media (max-width: 800px) { .metric-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Prose (Impressum/Datenschutz) ---------- */
.prose { max-width: 820px; }
.prose p { margin-bottom: 1.2em; color: var(--ink-dim); }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 2em 0 0.7em; }
.prose h3 { margin: 1.6em 0 0.5em; }
.prose a { color: var(--accent-ink); border-bottom: 1px solid var(--line-strong); }
.prose ul { margin: 0 0 1.2em; }
.prose li { color: var(--ink-dim); padding: 4px 0 4px 22px; position: relative; }
.prose li::before { content: ""; position: absolute; left: 0; top: 16px; width: 10px; height: 2px; background: var(--accent-deep); }
