/* ============================================================
   KSMSKSMS — Unterseiten (Basis, Missionen, Besatzung,
   Services, Jobs, Kontakt, Legal)
   ============================================================ */

/* ============================================================
   PAGE-HERO — typografisch, ohne Illustration
   (Hero-Motive kommen später per Imagen, pro Seite gespecced)
   ============================================================ */

.page-hero {
  /* +2px über Viewport: bei fraktionalen Viewport-Höhen (DPR-Rundung) lugte
     sonst die helle Folgesektion als 1px-Linie am Fold hervor */
  min-height: calc(100vh + 2px);
  min-height: calc(100svh + 2px);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  /* unter die transparente Nav gezogen — Hero(-Bild) ist ab Initial-View
     hinter dem Header sichtbar */
  margin-top: calc(-1 * var(--nav-h));
  padding: calc(140px + var(--nav-h)) 0 72px;
}
/* Flex-Item auf volle Breite — sonst schrumpft der Container auf Inhaltsbreite
   und zentriert sich. Hero ist immer linksbündig am 1480er-Raster; die
   max-widths auf h1/lede lassen rechts Platz fürs spätere Hero-BG-Motiv.
   z-index 2: über Motiv-Ebene (::after, z0) und Schleiern (z1). */
.page-hero > .container { width: 100%; position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 20px; color: var(--cyan); }
.page-hero h1 { max-width: 1000px; }
.page-hero .serif-lede {
  margin-top: 28px;
  max-width: 640px;
  opacity: 0.9;
}
.page-hero .hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-hero-sm { min-height: 0; padding: calc(96px + var(--nav-h)) 0 56px; }

/* ---- Hero-Motive (Imagen, Syd-Mead-Rezept) ----
   Motiv auf eigener ::after-Ebene (z0), damit es beim Scrollen zoomen/
   parallaxen kann; Verläufe (Top-Schleier für Nav-Lesbarkeit, Links-Textgrund,
   Bottom-Fade) auf ::before (z1) darüber. Schleier-Elemente (.hero-topveil,
   .hero-scrollveil, injiziert via site.js) liegen ebenfalls auf z1, Content z2.
   Die Motive bringen eigene Sterne mit → CSS-Starfield aus. */
:where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero {
  background: var(--bg-deep);
}
:where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-img) 66% center / cover no-repeat, var(--bg-deep);
  /* Scroll-Zoom + sanftes Parallax; Origin tief genug, dass beim
     Runterschieben oben keine Kante freiliegt */
  transform: scale(calc(1 + 0.06 * var(--hero-scroll, 0))) translate3d(0, calc(var(--hero-scroll, 0) * 24px), 0);
  transform-origin: 66% 70%;
  will-change: transform;
}
:where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 14, 26, 0.36) 0%, rgba(11, 14, 26, 0.14) 90px, rgba(11, 14, 26, 0) 180px),
    linear-gradient(90deg, var(--bg-deep) 0%, rgba(11, 14, 26, 0.92) 24%, rgba(11, 14, 26, 0.38) 44%, rgba(11, 14, 26, 0.05) 62%),
    linear-gradient(0deg, var(--bg-deep) 0, var(--bg-deep) 3px, rgba(11, 14, 26, 0) 24%);
}
:where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero .starfield {
  display: none;
}
@media (max-width: 900px) {
  /* Mobile: Slice auf den Motiv-Fokus statt beliebigem Ausschnitt;
     Text oben auf Schleier, Motiv mittig sichtbar, unten Fade */
  :where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero::after {
    background: var(--hero-img) var(--hero-pos-m, 66%) center / cover no-repeat, var(--bg-deep);
  }
  :where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero::before {
    background:
      linear-gradient(180deg, rgba(11, 14, 26, 0.78) 0%, rgba(11, 14, 26, 0.55) 34%, rgba(11, 14, 26, 0.25) 55%, var(--bg-deep) calc(100% - 3px), var(--bg-deep) 100%);
  }
}
.page-home .page-hero      { --hero-img: url("../assets/img/hero/home-hero.webp"); --hero-pos-m: 64%; }
.page-missionen .page-hero { --hero-img: url("../assets/img/hero/missionen-hero.webp"); --hero-pos-m: 68%; }
.page-besatzung .page-hero { --hero-img: url("../assets/img/hero/besatzung-hero.webp"); --hero-pos-m: 72%; }
.page-services .page-hero  { --hero-img: url("../assets/img/hero/services-hero.webp"); --hero-pos-m: 62%; }
.page-jobs .page-hero      { --hero-img: url("../assets/img/hero/jobs-hero.webp"); --hero-pos-m: 72%; }
.page-kontakt .page-hero   { --hero-img: url("../assets/img/hero/kontakt-hero.webp"); --hero-pos-m: 70%; }

/* 4K-Variante gegen Verpixelung: Mobile schneidet per Cover einen schmalen
   Hochkant-Slice aus dem 21:9-Motiv (starker Zoom), große/Retina-Desktops
   brauchen mehr als 1920px */
@media (max-width: 900px), (min-resolution: 1.5dppx), (min-width: 1800px) {
  .page-home .page-hero      { --hero-img: url("../assets/img/hero/home-hero-4k.webp"); }
  .page-missionen .page-hero { --hero-img: url("../assets/img/hero/missionen-hero-4k.webp"); }
  .page-besatzung .page-hero { --hero-img: url("../assets/img/hero/besatzung-hero-4k.webp"); }
  .page-services .page-hero  { --hero-img: url("../assets/img/hero/services-hero-4k.webp"); }
  .page-jobs .page-hero      { --hero-img: url("../assets/img/hero/jobs-hero-4k.webp"); }
  .page-kontakt .page-hero   { --hero-img: url("../assets/img/hero/kontakt-hero-4k.webp"); }
}

/* ============================================================
   § 02 DEIN COCKPIT (Home) — Space-Motiv links, Verlauf nach
   dunkel horizontal gespiegelt zum Hero (Motiv links, rechts navy)
   ============================================================ */

.section-cockpit {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
/* Motiv-Ebene mit dezentem Scroll-Parallax (--bg-scroll via site.js, 0..1
   über die Viewport-Passage der Section; 0.5 = Ruhelage) */
.section-cockpit::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/img/sections/cockpit-space.webp") left center / cover no-repeat, var(--bg-deep);
  transform: scale(calc(1 + 0.04 * var(--bg-scroll, 0.5))) translate3d(0, calc((var(--bg-scroll, 0.5) - 0.5) * 20px), 0);
  transform-origin: 20% center;
  will-change: transform;
}
/* Verlauf nach dunkel: endet weiter links, damit die Objektgruppe rechts
   auf solidem Navy sitzt statt auf dem Sternenmotiv */
.section-cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(270deg, var(--bg-deep) 0%, var(--bg-deep) 40%, rgba(11, 14, 26, 0.92) 54%, rgba(11, 14, 26, 0.38) 70%, rgba(11, 14, 26, 0.05) 86%);
}
.section-cockpit > .container { position: relative; z-index: 2; }
/* Motiv bringt eigene Sterne mit */
.section-cockpit .starfield { display: none; }
/* October-Partner-Karte: Badge 1/3, Beschreibung 2/3 (Desktop wie Mobile) */
.october-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--grid-line-strong);
  background: var(--bg-mid);
  padding: 28px 32px;
}
/* PNG hat eingebackene runde Ecken auf Weiß → radius mitgeben */
.october-badge { width: 100%; height: auto; border-radius: 7px; }

/* ============================================================
   RECON-TEASER (Home, § 04) — Recon-Hero-Motiv hinten rein,
   Verlauf als Textgrund, dezentes Scroll-Parallax (.bg-parallax)
   ============================================================ */

.section-recon-teaser {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
/* Desktop: doppeltes Vertikal-Padding — Section hebt sich ab,
   das BG-Motiv bekommt Raum */
@media (min-width: 901px) {
  .section-recon-teaser { padding: 144px 0; }
}
/* Motiv: unteres Drittel des Recon-Heros angesetzt (Desktop) */
.section-recon-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/img/hero/recon-hero.webp") right 55% / cover no-repeat, var(--bg-deep);
  transform: scale(calc(1 + 0.04 * var(--bg-scroll, 0.5))) translate3d(0, calc((var(--bg-scroll, 0.5) - 0.5) * 20px), 0);
  transform-origin: 70% center;
  will-change: transform;
}
.section-recon-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg-deep) 0%, rgba(11, 14, 26, 0.9) 30%, rgba(11, 14, 26, 0.55) 60%, rgba(11, 14, 26, 0.3) 100%);
}
.section-recon-teaser > .container { position: relative; z-index: 2; }
.section-recon-teaser .starfield { display: none; }
/* powered by T-0 — Pixelfont-Mark wie der t0-wordmark auf der Recon-Seite */
.section-recon-teaser .gate-strip { grid-template-columns: auto 1fr auto auto; position: relative; }
/* Services § 07: gleicher Soft-Blur-Grund, aber nur hinter der
   Text-Spalte (svc-body), nicht über die ganze Sektionsbreite */
.section-recon-teaser .svc-body { position: relative; }
.section-recon-teaser .svc-body::before {
  content: "";
  position: absolute;
  inset: -28px;
  z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(11, 14, 26, 0.32);
  mask-image: radial-gradient(130% 130% at 50% 50%, black 52%, transparent 98%);
  -webkit-mask-image: radial-gradient(130% 130% at 50% 50%, black 52%, transparent 98%);
  pointer-events: none;
}

/* Soft-Blur-Grund hinter der Text-Card: Blur + leichte Abdunkelung,
   die per Mask weich nach außen ausläuft */
.section-recon-teaser .gate-strip::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(11, 14, 26, 0.32);
  mask-image: radial-gradient(130% 130% at 50% 50%, black 52%, transparent 98%);
  -webkit-mask-image: radial-gradient(130% 130% at 50% 50%, black 52%, transparent 98%);
  pointer-events: none;
}
.t0-mini { display: flex; align-items: center; gap: 10px; white-space: nowrap; text-decoration: none; color: inherit; }
.t0-mini:hover .t0-mini-label { opacity: 1; }
.t0-mini:hover .t0-mini-mark { text-shadow: 2px 2px 0 var(--bg-mid), 3px 3px 0 #EE7300; }
.t0-mini-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.t0-mini-mark {
  font-family: "Jersey 10", var(--font-body), sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 0.82;
  letter-spacing: 0.005em;
  color: var(--paper);
  text-shadow: 2px 2px 0 var(--bg-mid), 3px 3px 0 #D36600;
}
@media (max-width: 720px) {
  /* Mehr Luft über der Box: Motiv oben ungestört sichtbar */
  .section-recon-teaser { padding-top: 210px; }
  .section-recon-teaser .gate-strip { grid-template-columns: 1fr; }
  /* Blur-Grund als ordentliche Box statt weichem Halo */
  .section-recon-teaser .gate-strip::before {
    inset: -1px;
    mask-image: none;
    -webkit-mask-image: none;
    background: rgba(11, 14, 26, 0.55);
  }
  .section-recon-teaser .svc-body::before {
    inset: -16px -14px;
    mask-image: none;
    -webkit-mask-image: none;
    background: rgba(11, 14, 26, 0.55);
    border: 1px solid var(--grid-line-strong);
  }
  /* supported by T-0 + Status-Badge zentriert */
  .section-recon-teaser .t0-mini { width: 100%; justify-content: center; }
  .section-recon-teaser .svc-body .status { margin: 0 auto; }
}
@media (max-width: 900px) {
  .section-recon-teaser::after { background-position: 60% center; }
}

/* Mobile: Parallax als horizontaler Pan (links → rechts) statt Zoom —
   Motiv-Ebene 150% breit, fährt beim Scrollen quer und zeigt mehr Motiv */
@media (max-width: 900px) {
  :where(.page-home, .page-missionen, .page-besatzung, .page-services, .page-jobs, .page-kontakt) .page-hero::after {
    inset: 0 -25%;
    transform: translate3d(calc(var(--hero-scroll, 0) * 10%), 0, 0);
    transform-origin: center;
  }
  .section-cockpit::after,
  .section-recon-teaser::after {
    inset: 0 -25%;
    transform: translate3d(calc((var(--bg-scroll, 0.5) - 0.5) * 20%), 0, 0);
  }
}

/* ============================================================
   KONTAKT — kein Hero: direkt zum Formular, Cockpit-Space-Motiv
   dezent rechts im BG (gleiche Bildwelt wie Basis § 02)
   ============================================================ */

.section-contact {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}
.section-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/img/sections/cockpit-space.webp") right center / cover no-repeat, var(--bg-deep);
  transform: scale(calc(1 + 0.04 * var(--bg-scroll, 0.5))) translate3d(0, calc((var(--bg-scroll, 0.5) - 0.5) * 20px), 0);
  transform-origin: 80% center;
  will-change: transform;
  opacity: 0.55;
}
.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--bg-deep) 0%, rgba(11, 14, 26, 0.92) 35%, rgba(11, 14, 26, 0.55) 65%, rgba(11, 14, 26, 0.35) 100%);
}
.section-contact > .container { position: relative; z-index: 2; }
.section-contact .starfield { display: none; }
@media (max-width: 900px) {
  .section-contact::after {
    inset: 0 -25%;
    transform: translate3d(calc((var(--bg-scroll, 0.5) - 0.5) * 20%), 0, 0);
  }
}

/* ============================================================
   CTA-BAND — Abschluss-Sektion auf Unterseiten
   ============================================================ */

.cta-band {
  text-align: left;
}

/* .cta-motif → brand.css (shared, auch recon) */
.page-besatzung .cta-motif { --cta-img: url("../assets/img/sections/besatzung-cta.webp"); }
.page-jobs .cta-motif      { --cta-img: url("../assets/img/sections/jobs-cta.webp"); }
/* Aerial-Ansicht des Hero-Startplatzes, Rakete hebt gerade ab */
.page-missionen .cta-motif { --cta-img: url("../assets/img/sections/missionen-cta.webp"); }
@media (max-width: 900px), (min-resolution: 1.5dppx), (min-width: 1800px) {
  .page-missionen .cta-motif { --cta-img: url("../assets/img/sections/missionen-cta-4k.webp"); }
}
.cta-band .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 { max-width: 760px; }
.cta-band .eyebrow { margin-bottom: 16px; color: var(--red); }

/* ============================================================
   BASIS (Home)
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split .eyebrow { margin-bottom: 16px; }
.split h2, .split h3 { margin-bottom: 20px; }
.split .body + .body { margin-top: 14px; }
.split .body { opacity: 0.85; }
.split-media { position: relative; }
.split-media img { width: 100%; height: auto; border: 1px solid var(--ink-line-strong); }
.surface-cosmos .split-media img { border-color: var(--grid-line-strong); }
.split-media .media-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink-line);
  padding: 4px 8px;
}

/* Fakten-Tabelle (Basis) */
.fact-table td:first-child { width: 160px; }

/* ============================================================
   MISSIONEN — Dossiers
   ============================================================ */

.dossier {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px dashed var(--ink-line-strong);
}
.dossier:last-of-type { border-bottom: 0; }
.dossier:nth-child(even) .dossier-media { order: 2; }
@media (max-width: 900px) {
  .dossier { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .dossier:nth-child(even) .dossier-media { order: 0; }
}
/* Dossier-Media nutzt den .window-Rahmen (siehe brand.css) */
.dossier-body .mission-code {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.dossier-body h2 { margin-bottom: 6px; }
.dossier-body .mono-xs.objective { display: block; margin: 18px 0 6px; opacity: 0.55; }
.dossier-body .body { opacity: 0.85; }
.dossier-body .chip-row { margin-top: 18px; }
.dossier-body .dossier-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---- Skeleton-Dossier: Platzhalter fürs nächste Projekt ---- */
.dossier-skeleton { opacity: 0.72; }
.dossier-skeleton .skeleton-media {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, var(--ink-line) 14px 15px),
    var(--paper-2);
}
.skeleton-bar {
  height: 14px;
  margin-top: 12px;
  border-radius: 3px;
  background: var(--ink-line);
  opacity: 0.55;
}
.skeleton-bar.sk-h32 { height: 32px; margin-top: 8px; }
.skeleton-bar.sk-w55 { width: 55%; }
.skeleton-bar.sk-w95 { width: 95%; }
.skeleton-bar.sk-w88 { width: 88%; }
.skeleton-bar.sk-w42 { width: 42%; }
.dossier-skeleton .objective { margin-top: 18px; display: block; opacity: 0.5; }
.dossier-skeleton .skeleton-chip { width: 74px; height: 24px; }

/* ============================================================
   BESATZUNG — Crew neben Teamgeist-Text (kein Modal),
   Fotos auf dunklem Grund, Duotone → Farbe beim Hover
   ============================================================ */

.crew-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 2fr;
  gap: 64px;
  align-items: start;
}
.crew-intro { position: sticky; top: 120px; }
@media (max-width: 980px) {
  .crew-layout { grid-template-columns: 1fr; gap: 40px; }
  .crew-intro { position: static; }
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0;
  border: 1px solid var(--ink-line);
}
.crew-card {
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.crew-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-line);
  /* Starry Space-BG (Cockpit-Motiv der Startseite) hinter den Crew-Fotos:
     rechter (sternen-)Teil des Motivs statt Planet, dazu schräger dunkler
     Verlauf — Motiv bleibt dezent hinter den Freistellern */
  background:
    radial-gradient(circle at 50% 28%, rgba(122, 217, 194, 0.10), transparent 62%),
    linear-gradient(155deg, rgba(11, 14, 26, 0.12) 0%, rgba(11, 14, 26, 0.55) 55%, rgba(11, 14, 26, 0.9) 100%),
    url("../assets/img/sections/cockpit-space.webp") 74% center / cover no-repeat,
    var(--bg-mid);
}
/* Leere Recruiting-Kachel: kein Foto, zentrierter Mini-CTA auf Jobs */
.crew-card-join {
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, var(--ink-line) 14px 15px),
    var(--paper);
}
.crew-card-join .crew-name { margin: 0; }
.btn-sm { padding: 10px 16px; font-size: 11px; gap: 8px; }
@media (min-width: 721px) {
  .btn-sm { min-width: 0; }
}
.crew-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(0.85) contrast(1.02);
  transition: filter 350ms var(--ease-out), transform 350ms var(--ease-out);
}
.crew-card:hover .crew-photo img {
  filter: none;
  transform: scale(1.02);
}
@media (prefers-reduced-motion: reduce) {
  .crew-photo img { transition: none; }
}
.crew-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.crew-role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.crew-name { font-size: 26px; }
.crew-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.8;
}
.crew-body .chip-row { margin-top: auto; padding-top: 14px; }

/* ============================================================
   SERVICES — §-Verzeichnis statt Modals
   ============================================================ */

.svc-toc { border: 1px solid var(--grid-line-strong); background: var(--bg-mid); padding: 8px 28px; }
.svc-toc a {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--grid-line);
  transition: color 150ms;
}
.svc-toc a:last-child { border-bottom: 0; }
.svc-toc a:hover .svc-toc-name { color: var(--red); }
.svc-toc .idx { color: var(--cyan); }
.svc-toc-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  transition: color 150ms;
}
.svc-toc .mono-xs { opacity: 0.55; text-align: right; }
@media (max-width: 640px) {
  .svc-toc a { grid-template-columns: 44px 1fr; }
  .svc-toc .mono-xs { display: none; }
}

.svc-section { padding: 72px 0; border-bottom: 1px dashed var(--ink-line-strong); scroll-margin-top: 140px; }
.svc-section:last-of-type { border-bottom: 0; }
.svc-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; gap: 24px; } }
.svc-head .eyebrow { margin-bottom: 14px; }
.svc-head h2 { margin-bottom: 0; }
.svc-body .body { opacity: 0.85; }
.svc-body .body + .body { margin-top: 14px; }
.svc-body .chip-row { margin-top: 20px; }

/* ============================================================
   JOBS — native Disclosure statt "MEHR..."-Toggle
   ============================================================ */

.job-card {
  border: 1px solid var(--ink-line-strong);
  background: var(--paper);
  padding: 36px 40px;
  margin-bottom: 24px;
}
.job-card .job-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.job-card h2 { margin: 0; }
.job-card .body { opacity: 0.85; }
.job-details { margin-top: 20px; border-top: 1px dashed var(--ink-line-strong); }
.job-details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-ink);
}
.job-details summary::-webkit-details-marker { display: none; }
.job-details summary::before { content: "+"; font-size: 15px; line-height: 1; }
.job-details[open] summary::before { content: "−"; }
.job-details .job-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 8px 0 16px;
}
@media (max-width: 720px) { .job-details .job-cols { grid-template-columns: 1fr; gap: 20px; } }
.job-cols h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}
.job-cols ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.job-cols li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.job-cols li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
}
.job-card .job-apply { margin-top: 20px; }

/* ============================================================
   KONTAKT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-grid .eyebrow { margin-bottom: 20px; color: var(--red); }
.contact-grid .serif-lede { margin-top: 24px; opacity: 0.85; }
.contact-facts { margin-top: 36px; }
.contact-facts .spec-table td:first-child { width: 130px; color: var(--paper); opacity: 0.5; }
.contact-facts .spec-table tr { border-bottom-color: var(--grid-line); }
.contact-facts a:hover { color: var(--cyan); }

/* .cta-fields textarea → brand.css (shared) */

/* ============================================================
   LEGAL — Impressum, Datenschutz, AGB
   ============================================================ */

.legal { padding: 72px 0 120px; }
.legal .container-narrow > * + * { margin-top: 1em; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin-top: 2.2em;
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  margin-top: 1.8em;
}
.legal h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1.8em;
}
.legal p, .legal li { font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.legal ul { padding-left: 20px; }
.legal a { color: var(--cyan-ink); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--red); }

/* Download-Karte (AGB) */
.dl-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid var(--ink-line-strong);
  background: var(--paper);
  padding: 28px 32px;
  margin-top: 24px;
}
.dl-card h2 { margin: 0 0 6px; font-size: 24px; }
.dl-card p { margin: 0; }
