:root {
  /* Allowed palette: only blues + black + white */
  --ink: #0A0A0A;             /* black for primary text */
  --night: #0A0F1C;           /* dark blue bg from V2 */
  --bone: #FFFFFF;            /* base bg (was beige, now white) */
  --paper: #FFFFFF;
  --concrete: #4A5E92;        /* muted desaturated blue (was gray) — for secondary text */
  --steel: #1A2540;           /* deep blue (was gray-blue) */
  /* Röde CI */
  --brand: #2D4B9B;           /* Primary blue (logo) */
  --brand-dark: #243D80;      /* Deeper blue */
  --brand-light: #6B85C9;     /* Soft brand blue */
  --sky: #DDE7F5;             /* Light blue tint */
  --cloud: #F0F4FB;           /* Almost-white blue tint */
  --hairline: rgba(45, 75, 155, 0.14);
  --hairline-light: rgba(255, 255, 255, 0.18);
  --hairline-dark: rgba(255, 255, 255, 0.10);
  --grid-line: rgba(107, 133, 201, 0.07);

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(75, 110, 200, 0.32) 0%, rgba(45, 75, 155, 0.14) 35%, transparent 75%),
    linear-gradient(rgba(107, 133, 201, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 133, 201, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 80px 80px, 80px 80px;
  background-position: center, 0 0, 0 0;
}

img { display: block; max-width: 100%; height: auto; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 200ms ease;
}
a:hover { color: var(--brand); }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
}

.hairline { border: 0; border-top: 1px solid var(--hairline); margin: 0; }
.hairline-light { border: 0; border-top: 1px solid var(--hairline-light); margin: 0; }

/* Blueprint grid background — used on dark sections */
.bp-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
}

section { scroll-margin-top: calc(var(--nav-h) + 40px); }

::selection { background: var(--brand); color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Top nav — darker base, lighter inner links pill, slightly transparent */
.topnav {
  position: fixed;
  top: 16px; left: 16px; right: 16px;
  z-index: 60;
  height: var(--nav-h);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8, 14, 32, 0.62) 0%, rgba(20, 32, 70, 0.58) 100%);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}
.topnav__inner {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.topnav__brand { justify-self: start; }
.topnav__links { justify-self: center; }
.topnav__actions { justify-self: end; }
.topnav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bone);
}
.topnav__brand img { width: 32px; height: 32px; display: block; }
.topnav__brand > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}
.topnav__brand-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--bone);
  line-height: 1.05;
}
.topnav__brand-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 3px;
}
@media (max-width: 768px) {
  .topnav__brand-name { font-size: 15px; }
  .topnav__brand-meta { display: none; }
}

.topnav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.10);
  padding: 4px 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.topnav__links a {
  position: relative;
  padding: 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  transition: color 240ms ease, background 240ms ease;
}
.topnav__links a:hover {
  color: var(--bone);
  background: rgba(255, 255, 255, 0.14);
}
.topnav__links a.active,
.topnav__links a.is-active {
  color: var(--night);
  background: var(--bone);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.topnav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topnav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--bone);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 240ms ease, color 240ms ease;
}
.topnav__phone svg { width: 14px; height: 14px; }
.topnav__phone:hover { background: rgba(255, 255, 255, 0.10); color: var(--bone); }

.topnav__cta {
  background: linear-gradient(135deg, var(--bone) 0%, rgba(255, 255, 255, 0.95) 100%);
  color: var(--night);
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}
.topnav__cta:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
  color: var(--night);
  transform: translateY(-2px);
  background: var(--bone);
}
.topnav__cta .arrow { transition: transform 240ms ease; display: inline-block; }
.topnav__cta:hover .arrow { transform: translate(3px, -3px); }

.topnav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  transition: background 240ms ease, border-color 240ms ease;
}
.topnav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}
.topnav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.topnav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topnav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.topnav__burger:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1180px) {
  .topnav__phone { display: none; }
}
@media (max-width: 1040px) {
  .topnav__brand-meta { display: none; }
}
@media (max-width: 920px) {
  .topnav__inner { display: flex; justify-content: space-between; }
  .topnav__links { display: none; }
  .topnav__actions { margin-left: auto; }
  .topnav__burger { display: flex; }
  .mobile-menu.is-open { display: flex; }
}
@media (max-width: 760px) {
  .topnav__cta { display: none; }
  .topnav__inner { padding: 0 14px; }
}

@media (max-width: 768px) {
  .topnav { top: 12px; left: 12px; right: 12px; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: var(--ink);
  color: var(--bone);
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-menu a {
  color: var(--bone);
  font-size: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-light);
}
.mobile-menu a:hover { color: var(--brand); }

/* Container */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 32px;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 85% 15%, rgba(45, 75, 155, 0.35) 0%, transparent 70%),
    radial-gradient(120% 80% at 30% 60%, transparent 0%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,0.95) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.5) 0%, transparent 30%, rgba(10,10,10,0.85) 100%);
}
.hero__shader {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.65) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.65) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 0 0;
}
@media (max-width: 640px) {
  .hero__shader {
    opacity: 0.10;
    background-size: 40px 40px;
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 32px 64px;
  display: grid;
  grid-template-rows: 1fr auto auto 1fr auto;
  gap: 24px;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100svh - var(--nav-h));
}
.hero__top { grid-row: 2; }
.hero__headline { grid-row: 3; }
.hero__bottom { grid-row: 5; }
@media (max-width: 640px) {
  .hero__inner { padding: 56px 20px 40px; gap: 28px; }
}
@media (max-width: 480px) {
  .hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero__top .hero__since { text-align: left !important; }
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.hero__logo {
  height: 36px;
  width: auto;
  max-width: 70vw;
  filter: drop-shadow(0 0 24px rgba(0,0,0,0.3));
}
@media (max-width: 640px) { .hero__logo { height: 24px; } }
.hero__since {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--bone);
  opacity: 0.7;
  text-transform: uppercase;
}
.hero__since strong { color: var(--bone); font-weight: 400; }

.hero__headline {
  font-size: clamp(2.6rem, 11vw, 11.5rem);
  margin: 0;
  line-height: 0.92;
  align-self: center;
}
.hero__static { display: block; }
.hero__cycle {
  position: relative;
  display: block;
  height: 1.15em;
  overflow: hidden;
}
.hero__cycle-word {
  position: absolute;
  inset: 0;
  display: block;
  color: #FFFFFF;
  line-height: 1;
  transform: translateY(115%);
  opacity: 0;
  transition: transform 720ms cubic-bezier(0.34, 1.4, 0.64, 1), opacity 380ms ease;
}
.hero__cycle-word.is-active {
  transform: translateY(0);
  opacity: 1;
}
.hero__cycle-word.is-leaving {
  transform: translateY(-115%);
  opacity: 0;
}
.hero__cycle-word--brand {
  color: #6B85C9;
}
@media (prefers-reduced-motion: reduce) {
  .hero__cycle-word { transition: none; }
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__lede {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--bone);
  box-shadow: 0 6px 20px rgba(45, 75, 155, 0.25);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1a2d60 100%);
  color: var(--bone);
  box-shadow: 0 10px 28px rgba(45, 75, 155, 0.4);
}

/* Shiny button: diagonal shine sweeps across, repeats with rest gap */
@property --shiny-x {
  syntax: '<percentage>';
  initial-value: 100%;
  inherits: false;
}
.btn--shiny {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --shiny-x: 100%;
  animation: shiny-sweep 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.btn--shiny::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -75deg,
    transparent calc(var(--shiny-x) + 18%),
    rgba(255, 255, 255, 0.55) calc(var(--shiny-x) + 25%),
    transparent calc(var(--shiny-x) + 32%)
  );
  pointer-events: none;
  z-index: 1;
}
.btn--shiny > * { position: relative; z-index: 2; }
.btn--shiny:active { transform: scale(0.97); }
@keyframes shiny-sweep {
  0%, 8%   { --shiny-x: 100%; }
  60%      { --shiny-x: -40%; }
  100%     { --shiny-x: -40%; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--shiny { animation: none; }
  .btn--shiny::before { display: none; }
}
.btn--ghost { background: transparent; color: var(--bone); border-color: rgba(255, 255, 255, 0.45); }
.btn--ghost:hover { color: var(--brand); background: var(--bone); border-color: var(--bone); box-shadow: 0 8px 22px rgba(45, 75, 155, 0.3); }
.btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--outline:hover { background: var(--cloud); color: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 8px 22px rgba(45, 75, 155, 0.18); }

.btn .arrow { transition: transform 180ms ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero stagger reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 800ms ease, transform 800ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(1) { transition-delay: 100ms; }
.reveal:nth-child(2) { transition-delay: 220ms; }
.reveal:nth-child(3) { transition-delay: 360ms; }

/* Word-by-word reveal (vanilla port of digital-serenity word-appear) */
[data-word-fade] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
[data-word-fade].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-word-fade] { opacity: 1; transform: none; transition: none; }
}

@keyframes word-appear {
  0%   { opacity: 0;   transform: translateY(20px) scale(0.9); filter: blur(8px); }
  60%  { opacity: 0.9; transform: translateY(4px)  scale(0.97); filter: blur(1px); }
  100% { opacity: 1;   transform: translateY(0)   scale(1);    filter: blur(0); }
}
.word-animate {
  display: inline-block;
  opacity: 0;
}
.word-animate.is-shown {
  animation: word-appear 0.5s ease-out forwards;
}
/* Re-apply the title gradient to each split word (background-clip:text doesn't
   pass through inline-block descendants) */
.cta-blue__title .word-animate {
  background: linear-gradient(180deg, #FFFFFF 0%, #DFE7F4 60%, #B8C9E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  .word-animate { opacity: 1 !important; animation: none !important; }
}

/* Scroll-triggered staggered reveal (vanilla port of shadcn hero-section pattern) */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal-stagger].is-in > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger].is-in > *:nth-child(1) { transition-delay: 80ms; }
[data-reveal-stagger].is-in > *:nth-child(2) { transition-delay: 200ms; }
[data-reveal-stagger].is-in > *:nth-child(3) { transition-delay: 320ms; }
[data-reveal-stagger].is-in > *:nth-child(4) { transition-delay: 440ms; }
[data-reveal-stagger].is-in > *:nth-child(5) { transition-delay: 560ms; }
[data-reveal-stagger].is-in > *:nth-child(6) { transition-delay: 680ms; }
[data-reveal-stagger].is-in > *:nth-child(7) { transition-delay: 800ms; }
[data-reveal-stagger].is-in > *:nth-child(8) { transition-delay: 920ms; }
[data-reveal-stagger].is-in > *:nth-child(9) { transition-delay: 1040ms; }
[data-reveal-stagger].is-in > *:nth-child(10) { transition-delay: 1160ms; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal-stagger] > * { opacity: 1; transform: none; transition: none; }
}

/* Sections */
.section { padding: 160px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 96px 0; } }

/* Grid texture — body bg now provides global grid; .gridded is a no-op overlay */
.gridded { position: relative; }
.gridded > .wrap { position: relative; z-index: 1; }

.section__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin-bottom: 64px;
  align-items: end;
}
@media (max-width: 768px) {
  .section__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}
.section__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.section__title em,
.apply-card__title em {
  font-style: normal;
  font-weight: inherit;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #6B85C9;
  color: #6B85C9;
}
.section__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--paper);
  max-width: 540px;
}

/* ---------- LEISTUNGEN — Reel sections (from V2) ---------- */
.reel {
  position: relative;
  color: var(--bone);
}
.reel__head {
  padding: 140px 32px 80px;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reel__chapter {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.reel__chapter strong { color: var(--bone); font-weight: 500; }
.reel__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reel__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
  text-align: right;
}
@media (max-width: 860px) {
  .reel__head { justify-content: flex-start; grid-template-columns: 1fr; gap: 12px; padding: 96px 20px 56px; }
  .reel__title { text-align: left; }
  .reel__count { text-align: left; }
}

.services {
  display: flex;
  flex-direction: column;
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: transparent;
  overflow: hidden;
  min-height: clamp(480px, 68vh, 720px);
}
.service:nth-child(even) .service__media { order: 2; }
.service:nth-child(even) .service__body { order: 1; }

.service__media {
  position: relative;
  overflow: hidden;
  background: var(--steel);
}
.service__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.85) brightness(0.85);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 800ms;
  mix-blend-mode: normal;
}
.service:hover .service__media img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1) brightness(0.95);
}
.service__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,8,16,0.55) 100%);
  pointer-events: none;
}
.service__media-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(5, 8, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
}
.service__media-tag .dot {
  width: 6px; height: 6px;
  background: var(--brand-light);
  display: inline-block;
}

.service__body {
  padding: clamp(56px, 7vw, 110px) clamp(32px, 5.5vw, 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  position: relative;
  color: var(--bone);
}
.service__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--bone);
}
.service__desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper);
  max-width: 560px;
  margin: 0;
}
.service__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
}
.service__list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--paper);
}
.service__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 1px;
  background: var(--brand-light);
}
.service__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-light);
  border-bottom: 1px solid var(--brand-light);
  padding-bottom: 8px;
  align-self: flex-start;
  transition: color 240ms ease, gap 240ms ease;
}
.service__more:hover { color: var(--bone); gap: 18px; }

@media (max-width: 860px) {
  .service, .service:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .service:nth-child(even) .service__media { order: 1; }
  .service:nth-child(even) .service__body { order: 2; }
  .service__media { min-height: 280px; }
}

/* Referenzprojekte — Slider mit Header */
.refs {
  position: relative;
  color: var(--bone);
  padding: 140px 0 160px;
}
@media (max-width: 860px) {
  .refs { padding: 88px 0 100px; }
}

.refs__head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
@media (max-width: 640px) {
  .refs__head { padding: 0 20px 48px; gap: 14px; }
}
.refs__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.refs__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--bone);
}
.refs__lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--paper);
  opacity: 0.78;
  max-width: 620px;
  margin: 8px 0 0;
}

.refs__scroller {
  position: relative;
}

.refs__track {
  list-style: none;
  margin: 0;
  padding: 0 max(32px, calc((100vw - 1480px) / 2));
  display: flex;
  gap: clamp(20px, 2.4vw, 36px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.refs__track::-webkit-scrollbar { display: none; }
@media (max-width: 640px) {
  .refs__track { padding: 0 20px; }
}

.ref-card {
  flex: 0 0 clamp(280px, 32vw, 480px);
  scroll-snap-align: start;
  list-style: none;
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--steel);
  border: 1px solid var(--hairline-dark);
}
.ref-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.9) brightness(0.92);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}
.ref-card:hover img {
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1) brightness(1);
}

.refs__nav {
  max-width: 1480px;
  margin: 40px auto 0;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 640px) {
  .refs__nav { padding: 0 20px; margin-top: 28px; }
}
.refs__btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--hairline-light);
  font-size: 18px;
  cursor: pointer;
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease;
}
.refs__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.refs__btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Ansprechpartner */
.contacts {
  position: relative;
  color: var(--bone);
  padding: 140px 0 160px;
}
@media (max-width: 860px) {
  .contacts { padding: 88px 0 100px; }
}

.contacts__head {
  max-width: 1100px;
  margin: 0 auto 64px;
  display: grid;
  gap: 18px;
}
@media (max-width: 640px) {
  .contacts__head { margin-bottom: 44px; gap: 14px; }
}
.contacts__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.contacts__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  color: var(--bone);
}

.contacts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--hairline-dark);
}
@media (min-width: 760px) {
  .contacts__list { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  padding: 36px 0 36px;
  border-bottom: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 760px) {
  .contact-card { padding: 40px 48px 40px 0; }
  .contact-card + .contact-card { padding-left: 48px; padding-right: 0; border-left: 1px solid var(--hairline-dark); }
}

.contact-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--bone);
}
.contact-card__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin: 0 0 6px;
}
.contact-card__line {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  color: var(--paper);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  transition: color 200ms ease;
}
.contact-card__line:hover { color: var(--brand-light); }
.contact-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
  min-width: 36px;
}

/* Process — v2 stat-cell layout (4-up grid with hairline dividers) */
.process { background: transparent; color: var(--bone); }
.process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
}
@media (max-width: 1024px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .process__steps { grid-template-columns: 1fr; }
}

.process__step {
  position: relative;
  background: rgba(10, 15, 28, 0.55);
  padding: clamp(28px, 3.2vw, 44px) clamp(24px, 2.8vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    background 400ms ease,
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.process__step:hover { background: rgba(45, 75, 155, 0.18); }
.process__step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-light);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.process__step:hover::before { width: 100%; }

.process__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.process__index {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--brand-light);
}
.process__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
}
.process__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  letter-spacing: -0.035em;
  color: var(--bone);
  margin: 0;
  line-height: 0.95;
}
.process__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--paper);
  margin: 0;
  max-width: 280px;
}

/* About */
.about {
  background: transparent;
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.about > .wrap { position: relative; z-index: 1; }
.about__lede { color: var(--paper); }
.about .eyebrow { color: var(--brand-light); }

/* ---------- MANIFESTO ---------- */
.manifesto {
  position: relative;
  padding: clamp(120px, 18vh, 220px) 0;
  background: transparent;
  color: var(--bone);
}
.manifesto__inner {
  position: relative;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 1;
}
.manifesto__slate {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.manifesto__slate-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--brand-light);
  text-transform: uppercase;
}
.manifesto__slate-line {
  width: 60px;
  height: 1px;
  background: var(--hairline-dark);
}
.manifesto__slate-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
}

.manifesto__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--bone);
}
.manifesto__quote em {
  font-style: normal;
  color: var(--brand-light);
}
.manifesto__sig {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
}
.manifesto__sig-bar { width: 32px; height: 1px; background: var(--brand-light); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: 56px 32px;
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .stat { padding: 32px 0; }
}
.stat__num {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 500;
  background: linear-gradient(180deg, var(--bone) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.9;
  letter-spacing: -0.02em;
  display: inline-block;
}
.stat__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
}
.stat__text {
  color: var(--paper);
  font-size: 15px;
  line-height: 1.55;
  max-width: 360px;
}

.about__story {
  padding: 64px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 64px;
}
@media (max-width: 1024px) { .about__story { grid-template-columns: 1fr; gap: 32px; padding: 48px 32px 0; } }
@media (max-width: 640px) { .about__story { padding: 32px 0 0; } }

.about__story p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--paper);
  margin: 0 0 16px;
}

.certs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.20);
}
.cert__mark {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--bone);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.cert__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--bone);
}
.cert__desc {
  font-size: 14px;
  color: var(--paper);
  margin: 0;
}

/* Testimonials — transparent over dark blue body bg */
.testimonials {
  background: transparent;
  color: var(--bone);
}
.testimonials__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
  gap: 24px;
}
.testimonials__mark {
  width: 56px;
  height: 3px;
  background: var(--brand);
}
.testimonials__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  margin: 0;
  line-height: 0.95;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 15, 28, 0.45);
  color: var(--bone);
  text-decoration: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease, background 200ms ease;
}
.rating-pill:hover {
  border-color: var(--brand-light);
  color: var(--bone);
  background: rgba(45, 75, 155, 0.30);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  transform: translateY(-1px);
}
.rating-pill .google-g {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.rating-pill__stars {
  display: inline-flex;
  gap: 2px;
}
.rating-pill__stars svg {
  width: 14px; height: 14px;
}
.rating-pill__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 14px;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.rating-pill--small {
  padding: 4px 10px 4px 8px;
  gap: 6px;
}
.rating-pill--small .google-g { width: 14px; height: 14px; }
.rating-pill--small .rating-pill__num { font-size: 12px; }

.testimonials__columns {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-height: 740px;
  overflow: hidden;
  margin-top: 16px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.testimonials__col {
  flex: 1 1 0;
  max-width: 340px;
  min-width: 0;
}
.testimonials__col-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: tcol-scroll var(--tcol-duration, 32s) linear infinite;
  will-change: transform;
}
.testimonials__col--medium .testimonials__col-track { --tcol-duration: 36s; }
.testimonials__col--slow   .testimonials__col-track { --tcol-duration: 48s; }
.testimonials__col--fast   .testimonials__col-track { --tcol-duration: 30s; }
.testimonials__col-track:hover { animation-play-state: paused; }
@keyframes tcol-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonials__col-track { animation: none; }
  .testimonials__columns { max-height: none; mask-image: none; -webkit-mask-image: none; }
}
@media (max-width: 1024px) {
  .testimonials__col--tertiary { display: none; }
}
@media (max-width: 768px) {
  .testimonials__col--secondary { display: none; }
  .testimonials__col { max-width: none; }
}

.testimonial__role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--brand-light);
  letter-spacing: 0;
}

.testimonial {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  transition: border-color 280ms ease, box-shadow 280ms ease, transform 280ms ease, background 280ms ease;
}
.testimonial:hover {
  border-color: var(--brand-light);
  background: rgba(45, 75, 155, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  transform: translateY(-3px);
}
.testimonial__stars {
  display: inline-flex;
  gap: 2px;
}
.testimonial__stars svg {
  width: 18px; height: 18px;
}
.testimonial__quote {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-style: italic;
  line-height: 1.6;
  color: var(--paper);
  margin: 0;
  flex-grow: 1;
  quotes: "“" "”";
}
.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-dark);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--bone);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

/* Karriere */
.karriere { background: var(--bone); }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1200px;
}
@media (max-width: 1024px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .benefits { grid-template-columns: 1fr; } }

.benefit {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  padding: 36px 30px 32px;
  display: grid;
  gap: 14px;
  align-content: start;
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(45, 75, 155, 0.16) 0%, transparent 55%),
    #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 12px 32px rgba(45, 75, 155, 0.10);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms ease;
}
.benefit.is-tilting { transition: box-shadow 220ms ease; }
.benefit:hover {
  box-shadow: 0 28px 60px rgba(45, 75, 155, 0.20);
}
@media (max-width: 1024px) {
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .benefits { grid-template-columns: 1fr; gap: 16px; }
}
.benefit__icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
}
.benefit__icon svg { width: 100%; height: 100%; display: block; }
.benefit__icon svg { width: 100%; height: 100%; }
.benefit__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.015em;
  text-transform: none;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.benefit__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--concrete);
  margin: 0;
}

/* Positions section — full-width sky-blue fading to transparent at bottom */
.positions-section {
  position: relative;
  padding: 120px 0 0;
  background: linear-gradient(180deg, var(--sky) 0%, var(--cloud) 35%, transparent 100%);
}
@media (max-width: 768px) {
  .positions-section { padding: 80px 0 0; }
}

/* Apply section spacing (no border-top since positions-section sits above) */
.section--apply { padding: 0 0 120px; }
@media (max-width: 768px) { .section--apply { padding: 0 0 80px; } }

/* Positions */
.positions {
  margin-top: 56px;
  border-top: 1px solid var(--hairline);
}
.position {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  transition: padding-left 250ms ease, color 250ms ease;
}
.position:hover { padding-left: 16px; color: var(--brand); }
.position:hover .position__title { color: var(--brand); }
@media (max-width: 768px) {
  .position { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; gap: 8px 16px; padding: 20px 0; }
  .position__type { grid-column: 2; font-size: 11px; }
  .position__cta { grid-column: 2; justify-self: start; margin-top: 8px; }
}
.position__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--concrete);
}
.position__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  letter-spacing: -0.025em;
  text-transform: none;
  margin: 0;
  line-height: 1.15;
  transition: color 250ms ease;
}
.position__desc {
  font-size: 14px;
  color: var(--concrete);
  margin: 4px 0 0;
}
.position__type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  padding: 6px 12px;
  border: 1px solid var(--hairline);
}
.position__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.position:hover .position__cta { color: var(--brand); }

/* Application form — card with plus corners + 2-column grid */
.apply { padding-top: 80px; }

.apply-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 60px rgba(45, 75, 155, 0.10);
}
@media (max-width: 1024px) { .apply-card { grid-template-columns: 1fr; } }

.apply-card__plus {
  position: absolute;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--brand);
  z-index: 2;
  pointer-events: none;
}
.apply-card__plus svg { width: 100%; height: 100%; display: block; }
.apply-card__plus--tl { top: -12px; left: -12px; }
.apply-card__plus--tr { top: -12px; right: -12px; }
.apply-card__plus--bl { bottom: -12px; left: -12px; }
.apply-card__plus--br { bottom: -12px; right: -12px; }

.apply-card__intro {
  padding: 44px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.apply-card__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  margin: 0;
  line-height: 1;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.apply-card__lede {
  color: var(--concrete);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 460px;
}

.apply-card__form-wrap {
  background: var(--cloud);
  border-left: 1px solid var(--hairline);
  padding: 40px 36px;
}
@media (max-width: 1024px) {
  .apply-card__form-wrap { border-left: 0; border-top: 1px solid var(--hairline); }
}
@media (max-width: 640px) {
  .apply-card__intro { padding: 32px 28px; }
  .apply-card__form-wrap { padding: 28px 24px; }
}

.apply-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .apply-info-grid { grid-template-columns: 1fr; }
}

.apply-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: var(--ink);
  transition: transform 220ms ease;
}
.apply-info:hover { color: var(--ink); transform: translateX(3px); }
.apply-info:hover .apply-info__icon {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #FFFFFF;
}
.apply-info__icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--cloud);
  color: var(--brand);
  flex-shrink: 0;
  transition: background 220ms ease, color 220ms ease;
}
.apply-info__icon svg { width: 20px; height: 20px; }
.apply-info__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 2px;
  color: var(--ink);
  letter-spacing: 0;
}
.apply-info__value {
  font-size: 13px;
  color: var(--concrete);
  margin: 0;
  line-height: 1.4;
}

.contact-card {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--brand);
  color: var(--ink);
  display: grid;
  gap: 8px;
}
.contact-card__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
}
.contact-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
  color: var(--ink);
}
.contact-card a {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
  width: fit-content;
}
.contact-card a:hover { color: var(--brand); border-color: var(--brand); }

/* Form */
.form {
  display: grid;
  gap: 22px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
}
.field label .req { color: var(--brand); }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0;
  color: var(--ink);
  border-radius: 0;
  transition: border-color 180ms ease;
  width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--brand);
  border-bottom-width: 2px;
}
.field textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230A0A0A' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.field--file {
  border: 1px dashed var(--hairline);
  padding: 16px;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}
.field--file:hover { border-color: var(--ink); background: rgba(10,10,10,0.03); }
.field--file input { padding: 0; border: 0; font-family: var(--font-body); font-size: 14px; }
.field--file label { margin-bottom: 4px; }
.field--file .hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--concrete);
  font-style: italic;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--concrete);
  line-height: 1.5;
}
.consent input {
  margin-top: 4px;
  accent-color: var(--brand);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.consent a { text-decoration: underline; text-underline-offset: 3px; }

.form__submit {
  justify-self: start;
  margin-top: 8px;
  border: 0;
}

/* Contact */
.contact { background: var(--bone); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1024px) { .contact__grid { grid-template-columns: 1fr; gap: 40px; } }

.contact__info > * + * { margin-top: 24px; }
.info-block { display: grid; gap: 4px; }
.info-block__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
}
.info-block__value {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: -0.025em;
  margin: 0;
  line-height: 1.1;
}
.info-block__value a { display: inline-block; }
.info-block__value a:hover { color: var(--brand); }

.map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline);
  background: var(--steel);
}

/* Kontakt page — embedded map */
.contact--page { padding-top: calc(var(--nav-h) + 80px); }
.contact--page .section__head {
  grid-template-columns: 1fr 1fr;
  align-items: end;
}
@media (max-width: 1024px) {
  .contact--page .section__head { grid-template-columns: 1fr; }
}
.info-block__value--mono {
  font-size: 18px !important;
  font-family: var(--font-mono) !important;
  font-weight: 500 !important;
}
.contact__map {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact__map iframe {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline);
  display: block;
  filter: invert(0.92) hue-rotate(190deg) saturate(0.55) brightness(0.95) contrast(1.05);
}
.map-consent {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline);
  border-radius: 0;
  background: var(--bone, #f4f1ea);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  color: var(--ink, #1a1a1a);
  transition: border-color 200ms ease, background-color 200ms ease;
}
.map-consent:hover {
  border-color: var(--brand);
  background: #ffffff;
}
.map-consent__icon { color: var(--brand); }
.map-consent__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.map-consent__text {
  font-size: 13px;
  line-height: 1.5;
  max-width: 42ch;
  opacity: 0.8;
}
.map-consent__text a { color: var(--brand); text-decoration: underline; }
.map-consent__action {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--brand);
  border-radius: 999px;
}
.map-consent:hover .map-consent__action { background: var(--brand-dark); }
.contact__map-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: #FFFFFF;
  transition: border-color 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.contact__map-cta:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  box-shadow: 0 8px 22px rgba(45, 75, 155, 0.15);
}
.map--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--bone);
  border: 0;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.map--cta:hover {
  box-shadow: 0 18px 40px rgba(45, 75, 155, 0.35);
  transform: translateY(-3px);
  color: var(--bone);
}
.map__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Footer — blue gradient */
.footer {
  background:
    radial-gradient(80% 60% at 90% 10%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 60%, #1a2d60 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 0 0 32px;
  overflow: hidden;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* Downloads */
.downloads__wrap { max-width: 1100px; }
.downloads__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .downloads__grid { grid-template-columns: 1fr; } }
.download {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: #FFFFFF;
  border: 1px solid var(--hairline);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.download:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(45, 75, 155, 0.15);
  transform: translateY(-2px);
  color: var(--ink);
}
.download__icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #FFFFFF;
}
.download__icon svg { width: 26px; height: 26px; }
.download__meta { min-width: 0; }
.download__type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
  margin: 0 0 4px;
}
.download__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.25;
}
.download__sub {
  font-size: 13px;
  color: var(--concrete);
  margin: 0;
  line-height: 1.4;
}
.download__cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  white-space: nowrap;
}
.download:hover .download__cta { color: var(--brand-dark); }

/* Legal pages (Impressum, Datenschutz) */
.legal {
  padding: calc(var(--nav-h) + 80px) 0 120px;
  background: #FFFFFF;
}
.legal__wrap { max-width: 820px; }
.legal__crumb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  margin: 0 0 24px;
}
.legal__crumb a {
  color: var(--concrete);
  border-bottom: 1px solid transparent;
}
.legal__crumb a:hover { color: var(--brand); border-color: var(--brand); }
.legal__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 48px;
  padding-bottom: 0.12em;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.legal h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 48px 0 16px;
  line-height: 1.2;
}
.legal h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.legal p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 16px;
}
.legal a {
  color: var(--brand);
  border-bottom: 1px solid var(--hairline);
}
.legal a:hover { color: var(--brand-dark); border-color: var(--brand-dark); }
.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
  list-style: disc;
}
.legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 6px;
}
@media (max-width: 768px) {
  .legal { padding: calc(var(--nav-h) + 48px) 0 80px; }
  .legal h2 { font-size: 19px; margin: 36px 0 12px; }
}

/* Page-Hero (sub-pages like Karriere) */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: linear-gradient(180deg, var(--cloud) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--hairline);
}
.page-hero__crumb {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  margin: 0 0 24px;
}
.page-hero__crumb a {
  color: var(--concrete);
  border-bottom: 1px solid transparent;
}
.page-hero__crumb a:hover { color: var(--brand); border-color: var(--brand); }
.page-hero__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 24px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.page-hero__lede {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 32px;
}
.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--nav-h) + 48px) 0 56px; }
}

/* Mid-page blue CTA */
.cta-blue {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(80% 60% at 90% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(255, 255, 255, 0.12) 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #1a2d60 100%);
  overflow: hidden;
}
.cta-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.35) 100%);
  -webkit-mask-image: radial-gradient(circle at 1px 1px, #000 0.6px, transparent 1px);
  -webkit-mask-size: 14px 14px;
  mask-image: radial-gradient(circle at 1px 1px, #000 0.6px, transparent 1px);
  mask-size: 14px 14px;
  opacity: 0.18;
  pointer-events: none;
}
.cta-blue > .wrap { position: relative; z-index: 1; }
.cta-blue__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.cta-blue__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #DFE7F4 60%, #B8C9E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.cta-blue__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
  max-width: 580px;
}
.btn--white {
  background: #FFFFFF;
  color: var(--brand-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn--white:hover {
  background: #FFFFFF;
  color: var(--brand-dark);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
@media (max-width: 768px) {
  .cta-blue { padding: 64px 0; }
}

/* CTA Band — separate section before footer */
.cta-band {
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0A1430 0%, var(--brand-dark) 25%, var(--brand) 55%, var(--brand-light) 80%, #C9D6EE 100%);
  -webkit-mask-image: radial-gradient(circle at 1px 1px, #000 0.6px, transparent 1px);
  -webkit-mask-size: 14px 14px;
  mask-image: radial-gradient(circle at 1px 1px, #000 0.6px, transparent 1px);
  mask-size: 14px 14px;
  opacity: 0.18;
  pointer-events: none;
}
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.035em;
  margin: 8px 0 0;
  line-height: 1.05;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  white-space: pre-line;
  min-height: 2.1em;
}
.cta-band__title.is-typing::after {
  content: "▍";
  -webkit-text-fill-color: var(--brand);
  color: var(--brand);
  background: none;
  margin-left: 0.05em;
  animation: caret 1s steps(1) infinite;
}
.manifesto__quote em.is-typing::after {
  content: "▍";
  color: var(--brand-light);
  margin-left: 0.05em;
  animation: caret 1s steps(1) infinite;
  display: inline-block;
}
@keyframes caret { 50% { opacity: 0; } }
.cta-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta-band { padding: 64px 0; }
}

.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  /* Kompakterer Footer */
  .footer { padding-bottom: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 0; padding: 32px 0 0; }
  .footer__brand-col { margin-bottom: 24px; }
  .footer__tagline { margin-bottom: 16px; font-size: 14px; }

  /* Akkordeon: die drei Überbegriffe einklappbar */
  .footer__col h4 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 12px 0 11px;
    line-height: 1;
    border-top: 1px solid var(--hairline);
    user-select: none;
  }
  .footer__col h4::after {
    content: "+";
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
  }
  .footer__col.is-open h4::after { content: "−"; }
  /* Inhalt eingeklappt — außer die Spalte hat .is-open.
     Höhere Spezifität (.footer + 2 Klassen) schlägt .footer__col--contact a */
  .footer .footer__col:not(.is-open) > a,
  .footer .footer__col:not(.is-open) > .footer__hours { display: none; }
  .footer__col.is-open { padding-bottom: 12px; }
}

.footer__brand-col { max-width: 420px; }
.footer__brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  text-decoration: none;
}
.footer__brand-img {
  height: 80px;
  width: auto;
  display: block;
}
@media (max-width: 640px) { .footer__brand-img { height: 64px; } }
.footer__tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.footer__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__cert {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 18px;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  display: block;
  padding: 5px 0;
  transition: color 180ms ease, transform 180ms ease;
}
.footer__col a:hover { color: #FFFFFF; transform: translateX(3px); }

.footer__col--contact a, .footer__col--contact .footer__hours {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  padding: 6px 0;
  line-height: 1.5;
  transform: none !important;
}
.footer__col--contact a:hover { color: #FFFFFF; }
.footer__col--contact .footer__hours {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
.footer__contact-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  min-width: 32px;
  flex-shrink: 0;
}

.footer__grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255, 255, 255, 0.65); }
.footer__legal a:hover { color: #FFFFFF; }

.footer__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.85);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, color 180ms ease;
}
.footer__socials a:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--brand);
  transform: translateY(-2px);
}
.footer__socials svg { width: 18px; height: 18px; }

/* Office hours slide-in panel */
.hours-trigger {
  position: fixed;
  top: 30vh;
  right: 0;
  z-index: 50;
  background: var(--brand);
  color: var(--bone);
  border: 0;
  padding: 18px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  cursor: pointer;
  transition: background 180ms ease, transform 250ms ease;
}
.hours-trigger:hover { background: var(--brand-dark); }
.hours-trigger.is-open { transform: translateX(-320px); }
@media (max-width: 640px) {
  .hours-trigger.is-open { transform: none; }
}

.hours-panel {
  position: fixed;
  top: 50%;
  right: 0;
  width: 320px;
  max-height: calc(100vh - 32px);
  z-index: 55;
  background: var(--bone);
  color: var(--ink);
  padding: 32px 28px;
  transform: translate(100%, -50%);
  transition: transform 320ms cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: -16px 0 48px rgba(45, 75, 155, 0.18);
  overflow-y: auto;
  border-left: 4px solid var(--brand);
}
.hours-panel.is-open { transform: translate(0, -50%); }

.hours-panel__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.hours-panel__close:hover { background: var(--brand); border-color: var(--brand); color: var(--bone); }

.hours-panel__head { padding-top: 8px; }
.hours-panel__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 8px;
}
.hours-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.025em;
  text-transform: none;
  margin: 0;
  line-height: 1;
}

.hours-list { display: grid; gap: 14px; }
.hours-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
}
.hours-row:last-child { border-bottom: 0; }
.hours-row__day {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
}
.hours-row__time {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  text-align: right;
}

.hours-contact {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--hairline);
}
.hours-contact__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--concrete);
  margin: 8px 0 4px;
}
.hours-contact a {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 15px;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 4px;
  display: inline-block;
  width: fit-content;
}
.hours-contact a:hover { color: var(--brand); border-color: var(--brand); }
.hours-address {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--concrete);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 640px) {
  .hours-panel {
    top: auto;
    bottom: 0;
    right: 0; left: 0;
    width: 100%;
    height: auto;
    max-height: 80vh;
    transform: translateY(100%);
  }
  .hours-panel.is-open { transform: translateY(0); }
  .hours-trigger { top: auto; bottom: 30px; padding: 14px 10px; font-size: 10px; }
}

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

/* ---------- Timeline (about page heritage) ---------- */
.timeline {
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline-dark);
}
.timeline__row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--hairline-dark);
  transition: background 240ms ease, padding-left 240ms ease;
}
.timeline__row:hover {
  background: rgba(75, 110, 200, 0.10);
  padding-left: 20px;
}
.timeline__year {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--brand-light);
  line-height: 1;
}
.timeline__event {
  font-size: 16px;
  line-height: 1.5;
  color: var(--paper);
}
.timeline__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid var(--hairline-dark);
  padding: 6px 12px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .timeline { margin-top: 48px; }
  .timeline__row { grid-template-columns: 90px 1fr; gap: 16px; padding: 18px 0; }
  .timeline__row:hover { padding-left: 12px; }
  .timeline__tag { display: none; }
  .timeline__year { font-size: 24px; }
}

/* ============================================================
   DARK-THEME OVERRIDES — subpages (Karriere, Kontakt, Downloads,
   Impressum, Datenschutz). Body bg already provides the dark
   blue grid + center highlight; section/card overrides here.
   ============================================================ */

/* Section backgrounds → transparent (let body grid show through) */
.karriere,
.contact,
.legal,
.positions-section { background: transparent; color: var(--bone); }
.legal { color: var(--bone); }

/* Karriere — benefit cards as dark glass */
.benefit {
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(75, 110, 200, 0.22) 0%, transparent 55%),
    rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.benefit:hover { box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42); }
.benefit__title {
  background: linear-gradient(180deg, var(--bone) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.benefit__text { color: var(--paper); }

/* Karriere — positions list */
.positions { border-top-color: var(--hairline-dark); }
.position { border-bottom-color: var(--hairline-dark); }
.position:hover, .position:hover .position__title { color: var(--brand-light); }
.position__num { color: var(--brand-light); }
.position__title { color: var(--bone); }
.position__desc { color: var(--paper); }
.position__type { color: var(--paper); border-color: var(--hairline-dark); }
.position__cta { color: var(--bone); }
.position:hover .position__cta { color: var(--brand-light); }

/* Karriere — apply card */
.apply-card {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}
.apply-card__plus { color: var(--brand-light); }
.apply-card__title {
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.apply-card__lede { color: var(--paper); }
.apply-card__form-wrap {
  background: rgba(5, 8, 16, 0.5);
  border-left-color: var(--hairline-dark);
}
@media (max-width: 1024px) {
  .apply-card__form-wrap { border-top-color: var(--hairline-dark); }
}

/* Karriere — apply info icons */
.apply-info { color: var(--bone); }
.apply-info:hover { color: var(--bone); }
.apply-info__icon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--brand-light);
}
.apply-info__label { color: var(--bone); }
.apply-info__value { color: var(--paper); }

/* Form fields */
.field label { color: var(--brand-light); }
.field input,
.field select,
.field textarea {
  color: var(--bone);
  border-bottom-color: rgba(255, 255, 255, 0.30);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.38); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--brand-light); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FFFFFF' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
}
.field--file {
  border-color: rgba(255, 255, 255, 0.28);
}
.field--file:hover {
  border-color: var(--bone);
  background: rgba(255, 255, 255, 0.04);
}
.field--file .hint { color: var(--paper); }
.consent { color: var(--paper); }

/* Contact card (kontakt page) */
.contact-card {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  border-left: 4px solid var(--brand-light);
  color: var(--bone);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact-card__label { color: var(--brand-light); }
.contact-card__name { color: var(--bone); }
.contact-card a { color: var(--bone); border-bottom-color: var(--hairline-dark); }
.contact-card a:hover { color: var(--brand-light); border-color: var(--brand-light); }

/* Contact info blocks (kontakt page) */
.info-block__label { color: var(--brand-light); }
.info-block__value, .info-block__value a { color: var(--bone); }
.info-block__value a:hover { color: var(--brand-light); }

/* Map */
.map { border-color: var(--hairline-dark); background: rgba(255, 255, 255, 0.04); }
.contact__map iframe { border-color: var(--hairline-dark); }
.map-consent {
  background: rgba(10, 15, 28, 0.55);
  border-color: var(--hairline-dark);
  color: var(--bone);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.map-consent:hover { background: rgba(10, 15, 28, 0.7); border-color: var(--brand-light); }
.map-consent__icon { color: var(--brand-light); }
.map-consent__text { color: var(--paper); opacity: 0.9; }
.map-consent__text a { color: var(--brand-light); }
.contact__map-cta {
  background: rgba(10, 15, 28, 0.55);
  color: var(--bone);
  border-color: var(--hairline-dark);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.contact__map-cta:hover { color: var(--bone); border-color: var(--brand-light); }

/* Downloads */
.download {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  color: var(--bone);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.download:hover {
  border-color: var(--brand-light);
  background: rgba(45, 75, 155, 0.18);
  color: var(--bone);
}
.download__type { color: var(--brand-light); }
.download__title { color: var(--bone); }
.download__sub { color: var(--paper); }
.download__cta { color: var(--brand-light); }
.download:hover .download__cta { color: var(--bone); }

/* Legal pages (Impressum / Datenschutz) */
.legal__crumb,
.legal__crumb a { color: var(--brand-light); }
.legal__crumb a:hover { color: var(--bone); border-color: var(--bone); }
.legal__title {
  background: linear-gradient(180deg, var(--bone) 0%, var(--paper) 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.legal h2, .legal h3 { color: var(--bone); }
.legal p { color: var(--paper); }
.legal li { color: var(--paper); }
.legal .eyebrow { color: var(--brand-light); }
.legal__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--paper);
  margin: 0 0 56px;
  max-width: 640px;
}
.legal a { color: var(--brand-light); border-bottom-color: var(--hairline-dark); }
.legal a:hover { color: var(--bone); border-color: var(--bone); }

/* =========================================================
   alt2.css — Cinematic Reportage (Dark) for Röde Recycling
   All rules namespaced under .a2-* to avoid clashes.
   ========================================================= */

:root {
  --a2-bg:        #07090F;
  --a2-bg-soft:   #0A0F1C;
  --a2-bg-band:   #0E1426;
  --a2-ink:       #F5F6FA;
  --a2-ink-mute:  #9AA4BE;
  --a2-ink-quiet: #5F6A85;
  --a2-line:      rgba(255,255,255,0.10);
  --a2-line-soft: rgba(255,255,255,0.05);
  --a2-brand:     #2D4B9B;
  --a2-brand-2:   #6B85C9;
  --a2-accent:    #C9D6F2;

  --a2-font:    'Manrope', system-ui, -apple-system, sans-serif;
  --a2-mono:    'JetBrains Mono', ui-monospace, monospace;

  --a2-nav-h:   76px;
  --a2-wrap:    1440px;
  --a2-pad-x:   clamp(20px, 3vw, 32px);
  --a2-ease:    cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.a2-body {
  margin: 0;
  background: var(--a2-bg);
  color: var(--a2-ink);
  font-family: var(--a2-font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em, i, cite { font-style: normal; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--a2-brand); color: #fff; }

/* ---------- shared ---------- */
.a2-eyebrow {
  display: inline-block;
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink-mute);
  padding: 6px 12px;
  border: 1px solid var(--a2-line);
  border-radius: 999px;
}
.a2-eyebrow--light {
  color: var(--a2-accent);
  border-color: rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
}

.a2-bar {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--a2-brand-2);
  vertical-align: middle;
  margin-right: 12px;
}

/* Reveal on scroll */
.a2-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .9s var(--a2-ease), transform .9s var(--a2-ease);
}
.a2-reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .a2-reveal { opacity: 1; transform: none; transition: none; }
  #a2-hero-img { transform: none !important; }
}

/* ---------- buttons ---------- */
.a2-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .25s var(--a2-ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.a2-btn--primary {
  background: var(--a2-ink);
  color: #07090F;
}
.a2-btn--primary:hover { transform: translateY(-2px); background: #fff; }
.a2-btn--ghost {
  background: transparent;
  color: var(--a2-ink);
  border: 1px solid rgba(255,255,255,0.35);
}
.a2-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

/* =========================================================
   TOPNAV
   ========================================================= */
.a2-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  height: var(--a2-nav-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(7,9,15,0.55), rgba(7,9,15,0));
  transition: background .35s var(--a2-ease), backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.a2-nav.is-scrolled {
  background: rgba(7,9,15,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--a2-line);
}
.a2-nav__inner {
  width: 100%;
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: 0 var(--a2-pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.a2-nav__brand img { height: 28px; width: auto; }
.a2-nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--a2-ink-mute);
}
.a2-nav__links a {
  position: relative;
  padding: 8px 0;
  transition: color .25s;
}
.a2-nav__links a:hover { color: var(--a2-ink); }
.a2-nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 1px; background: var(--a2-brand-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--a2-ease);
}
.a2-nav__links a:hover::after { transform: scaleX(1); }

.a2-nav__actions { display: flex; align-items: center; gap: 18px; }
.a2-nav__phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--a2-mono);
  font-size: 13px;
  color: var(--a2-ink);
  letter-spacing: .04em;
}
.a2-nav__phone-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #5BD78F;
  box-shadow: 0 0 0 4px rgba(91,215,143,0.18);
}
.a2-nav__cta {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .25s, border-color .25s;
}
.a2-nav__cta:hover { background: #fff; color: #07090F; border-color: #fff; }

.a2-nav__burger {
  display: none;
  width: 32px; height: 32px; position: relative;
}
.a2-nav__burger span {
  position: absolute; left: 4px; right: 4px; height: 1.5px;
  background: var(--a2-ink); transition: transform .3s, top .3s, opacity .3s;
}
.a2-nav__burger span:nth-child(1) { top: 12px; }
.a2-nav__burger span:nth-child(2) { top: 20px; }
.a2-nav__burger.is-open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.a2-nav__burger.is-open span:nth-child(2) { top: 16px; transform: rotate(-45deg); }

.a2-mobile {
  position: fixed; top: var(--a2-nav-h); left: 0; right: 0;
  background: rgba(7,9,15,0.96);
  backdrop-filter: blur(14px);
  z-index: 49;
  padding: 24px var(--a2-pad-x);
  display: none;
  flex-direction: column;
  gap: 18px;
  border-bottom: 1px solid var(--a2-line);
  font-size: 18px;
}
.a2-mobile.is-open { display: flex; }

/* =========================================================
   HERO
   ========================================================= */
.a2-hero {
  position: relative;
  height: 78vh; min-height: 520px; max-height: 760px;
  overflow: hidden;
}
.a2-hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.a2-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: 50% 60%;
  animation: a2-kb 22s var(--a2-ease) infinite alternate;
  will-change: transform;
}
@keyframes a2-kb {
  from { transform: scale(1.06) translate3d(-1%, 0, 0); }
  to   { transform: scale(1.14) translate3d(2%, -2%, 0); }
}
.a2-hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,9,15,0.55) 0%, rgba(7,9,15,0.15) 28%, rgba(7,9,15,0.6) 75%, rgba(7,9,15,0.95) 100%),
    radial-gradient(120% 80% at 30% 100%, rgba(45,75,155,0.25), rgba(0,0,0,0) 60%);
}

.a2-hero__meta {
  position: absolute; top: calc(var(--a2-nav-h) + 22px);
  left: var(--a2-pad-x); right: var(--a2-pad-x);
  display: flex; justify-content: space-between;
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  z-index: 2;
}

.a2-hero__copy {
  position: absolute;
  left: var(--a2-pad-x); right: var(--a2-pad-x);
  bottom: clamp(60px, 9vh, 110px);
  max-width: 880px;
  z-index: 2;
}
.a2-hero__title {
  font-family: var(--a2-font);
  font-weight: 700;
  font-size: clamp(44px, 7.4vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
.a2-hero__title em {
  font-style: normal;
  color: var(--a2-brand-2);
  font-weight: inherit;
}
.a2-hero__lede {
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  margin: 0 0 28px;
}
.a2-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.a2-hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  z-index: 2;
  font-family: var(--a2-mono);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.a2-hero__scroll-line {
  width: 1px; height: 42px; background: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.a2-hero__scroll-line::after {
  content: ''; position: absolute; left: 0; right: 0; top: -50%;
  height: 50%; background: #fff;
  animation: a2-scroll-pulse 1.6s ease-in-out infinite;
}
@keyframes a2-scroll-pulse {
  0%   { top: -50%; }
  100% { top: 100%; }
}

/* =========================================================
   STAT BAND
   ========================================================= */
.a2-band {
  background: var(--a2-bg-band);
  border-block: 1px solid var(--a2-line);
}
.a2-band__inner {
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: 36px var(--a2-pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.a2-band__cell {
  display: flex; flex-direction: column; gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--a2-line);
}
.a2-band__cell:first-child { border-left-color: var(--a2-brand-2); }
.a2-band__num {
  font-family: var(--a2-font);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.a2-band__label {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink-mute);
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.a2-manifesto {
  position: relative;
  min-height: 64vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.a2-manifesto__media {
  position: absolute; inset: 0;
}
.a2-manifesto__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.a2-manifesto__veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,9,15,0.92) 0%, rgba(7,9,15,0.55) 55%, rgba(7,9,15,0.25) 100%),
              linear-gradient(180deg, rgba(7,9,15,0.4) 0%, rgba(7,9,15,0) 50%, rgba(7,9,15,0.6) 100%);
}
.a2-manifesto__copy {
  position: relative;
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) var(--a2-pad-x);
  width: 100%;
}
.a2-quote-mark {
  display: block;
  font-family: 'Manrope', serif;
  font-size: clamp(160px, 24vw, 320px);
  line-height: 0.7;
  color: var(--a2-brand-2);
  opacity: 0.4;
  margin-bottom: -40px;
  margin-left: -12px;
  font-weight: 700;
}
.a2-manifesto__quote {
  font-family: var(--a2-font);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  color: #fff;
  max-width: 18ch;
}
.a2-manifesto__quote em {
  font-style: normal;
  color: var(--a2-brand-2);
  font-weight: inherit;
}
.a2-manifesto__sig {
  font-family: var(--a2-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink-mute);
  margin: 0;
}

/* =========================================================
   INTRO (Leistungen)
   ========================================================= */
.a2-intro {
  background: transparent;
  padding: clamp(40px, 5vh, 72px) 0;
}
.a2-intro__inner {
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.a2-intro__title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 18px 0 0;
  color: #fff;
}
.a2-intro__title em {
  font-style: normal;
  color: var(--a2-brand-2);
  font-weight: inherit;
}
.a2-intro__lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--a2-ink-mute);
  max-width: 38ch;
  margin: 0;
  padding-bottom: 14px;
}

/* =========================================================
   LEISTUNG (alternating photo + panel)
   ========================================================= */
.a2-leistung {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 56vh;
  background: var(--a2-bg-soft);
  border-top: 1px solid var(--a2-line-soft);
}
.a2-leistung--rev {
  grid-template-columns: 1fr 1.1fr;
}
.a2-leistung--rev .a2-leistung__media { order: 2; }
.a2-leistung--rev .a2-leistung__panel { order: 1; }

.a2-leistung__media {
  position: relative;
  min-height: 40vh;
  overflow: hidden;
}
.a2-leistung__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--a2-ease);
}
.a2-leistung:hover .a2-leistung__media img {
  transform: scale(1.03);
}
.a2-leistung__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0.15) 0%, rgba(7,9,15,0.45) 100%);
  pointer-events: none;
}
.a2-leistung__index {
  position: absolute;
  top: 28px; left: 28px;
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(255,255,255,0.85);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
}

.a2-leistung__panel {
  padding: clamp(56px, 8vw, 110px) clamp(32px, 5vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
.a2-leistung__title {
  font-weight: 700;
  font-size: clamp(42px, 5.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: #fff;
}
.a2-leistung__lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--a2-ink-mute);
  margin: 0 0 28px;
  max-width: 50ch;
}
.a2-leistung__list {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 0;
  border-top: 1px solid var(--a2-line);
}
.a2-leistung__list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--a2-line-soft);
  font-size: 15px;
  color: var(--a2-ink);
}
.a2-leistung__list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--a2-brand-2);
  flex: 0 0 6px;
}
.a2-leistung__more {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--a2-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--a2-brand-2);
  width: max-content;
  transition: gap .25s var(--a2-ease), color .25s;
}
.a2-leistung__more:hover { gap: 16px; color: var(--a2-brand-2); }

/* =========================================================
   FULLBLEED IMAGE
   ========================================================= */
.a2-fullbleed {
  position: relative;
  margin: 0;
  height: 50vh; min-height: 380px; max-height: 560px;
  overflow: hidden;
}
.a2-fullbleed--tall { height: 64vh; min-height: 480px; max-height: 680px; }
.a2-fullbleed img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s linear;
}
.a2-fullbleed:hover img { transform: scale(1.08); }
.a2-fullbleed::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0.25) 0%, rgba(7,9,15,0) 30%, rgba(7,9,15,0.6) 100%);
  pointer-events: none;
}
.a2-fullbleed__cap {
  position: absolute; left: var(--a2-pad-x); bottom: 28px; z-index: 2;
  display: flex; align-items: baseline; gap: 18px;
  color: #fff;
}
.a2-fullbleed__no {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--a2-brand-2);
}
.a2-fullbleed__txt {
  font-size: 14px;
  letter-spacing: .03em;
  color: rgba(255,255,255,0.85);
}

/* =========================================================
   HISTORIE / TIMELINE
   ========================================================= */
.a2-historie {
  background: transparent;
  padding: clamp(90px, 14vh, 180px) 0;
}
.a2-historie__head {
  max-width: var(--a2-wrap);
  margin: 0 auto 64px;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.a2-historie__title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 18px 0 0;
  color: #fff;
}
.a2-historie__title em { font-style: normal; color: var(--a2-brand-2); font-weight: inherit; }
.a2-historie__lede {
  font-size: 16.5px; line-height: 1.65;
  color: var(--a2-ink-mute);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
}

/* Horizontale Familien-Timeline */
.a2-htimeline {
  list-style: none;
  margin: 0 auto;
  padding: 16px var(--a2-pad-x);
  max-width: var(--a2-wrap);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
  min-height: 460px;
}
/* Horizontale Linie quer durch die Mitte */
.a2-htimeline::before {
  content: "";
  position: absolute;
  left: calc(var(--a2-pad-x) + (100% - 2 * var(--a2-pad-x)) / 14);
  right: calc(var(--a2-pad-x) + (100% - 2 * var(--a2-pad-x)) / 14);
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(107,133,201,0.15),
    var(--a2-brand-2) 12%,
    var(--a2-brand-2) 88%,
    rgba(107,133,201,0.15));
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
.a2-htimeline__node {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  min-width: 0;
}
.a2-htimeline__dot {
  grid-row: 2;
  justify-self: center;
  width: 13px; height: 13px;
  border-radius: 999px;
  background: var(--a2-bg-band);
  border: 1.5px solid var(--a2-brand-2);
  margin: 18px 0;
  z-index: 2;
  transition: background .35s var(--a2-ease), transform .35s var(--a2-ease);
}
.a2-htimeline__node:hover .a2-htimeline__dot {
  background: var(--a2-brand-2);
  transform: scale(1.2);
}
.a2-htimeline__card {
  display: flex; flex-direction: column;
  gap: 6px;
  max-width: 200px;
  margin: 0 auto;
}
.a2-htimeline__node--top .a2-htimeline__card {
  grid-row: 1;
  align-self: end;
  padding-bottom: 10px;
}
.a2-htimeline__node--bottom .a2-htimeline__card {
  grid-row: 3;
  align-self: start;
  padding-top: 10px;
}
.a2-htimeline__year {
  font-family: var(--a2-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--a2-brand-2);
}
.a2-htimeline__head {
  margin: 2px 0 0;
  font-family: var(--a2-font);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
}
.a2-htimeline__node p {
  margin: 6px 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--a2-ink-mute);
}

/* Mobile: vertikaler Fallback (gestapelt, alle Karten links neben Linie) */
@media (max-width: 900px) {
  .a2-htimeline {
    grid-template-columns: 28px 1fr;
    min-height: auto;
    padding-top: 8px;
    gap: 0;
  }
  /* Linie nicht durchgehend, sondern Segment je Knoten (Punkt → Punkt).
     Der letzte Knoten zeichnet keins → Linie endet exakt am letzten Punkt. */
  .a2-htimeline::before { display: none; }
  .a2-htimeline__node:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 32px;
    height: 100%;
    width: 1px;
    background: var(--a2-brand-2);
    z-index: 0;
  }
  .a2-htimeline__node {
    grid-column: 1 / -1;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto;
    text-align: left;
    padding: 18px 0;
    align-items: flex-start;
  }
  .a2-htimeline__dot {
    grid-row: 1;
    grid-column: 1;
    margin: 8px 0 0;
    justify-self: start;
  }
  .a2-htimeline__card,
  .a2-htimeline__node--top .a2-htimeline__card,
  .a2-htimeline__node--bottom .a2-htimeline__card {
    grid-row: 1;
    grid-column: 2;
    align-self: flex-start;
    padding: 0;
    max-width: none;
    margin: 0;
  }
}

/* =========================================================
   PROZESS
   ========================================================= */
.a2-prozess {
  background: var(--a2-bg-band);
  padding: clamp(90px, 14vh, 180px) 0;
  border-block: 1px solid var(--a2-line);
}
.a2-prozess__head {
  max-width: var(--a2-wrap);
  margin: 0 auto 72px;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.a2-prozess__title {
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  color: #fff;
}
.a2-prozess__title em { font-style: normal; color: var(--a2-brand-2); font-weight: inherit; }
.a2-prozess__lede {
  font-size: 16.5px; line-height: 1.65;
  color: var(--a2-ink-mute);
  max-width: 44ch;
  margin: 0;
  padding-bottom: 8px;
}
.a2-prozess__steps {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--a2-pad-x);
  position: relative;
}
.a2-prozess__steps::before {
  content: "";
  position: absolute;
  left: calc(var(--a2-pad-x) + 7px);
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg,
    var(--a2-brand-2) 0%,
    rgba(107,133,201,0.45) 50%,
    rgba(107,133,201,0.15) 100%);
}
.a2-prozess__step {
  position: relative;
  padding: 0 0 clamp(32px, 5vw, 56px) clamp(40px, 5vw, 56px);
  display: flex; flex-direction: column; gap: 10px;
}
.a2-prozess__step:last-child { padding-bottom: 0; }
.a2-prozess__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--a2-bg-band);
  border: 1.5px solid var(--a2-brand-2);
  box-shadow: 0 0 0 4px var(--a2-bg-band);
  transition: background .35s, transform .35s var(--a2-ease);
}
.a2-prozess__step:hover::before {
  background: var(--a2-brand-2);
  transform: scale(1.15);
}
.a2-prozess__name {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.a2-prozess__step p {
  margin: 0;
  font-size: 15.5px;
  color: var(--a2-ink-mute);
  line-height: 1.65;
  max-width: 50ch;
}

/* =========================================================
   STIMMEN (Testimonials)
   ========================================================= */
.a2-stimmen {
  background: var(--a2-bg);
  padding: clamp(90px, 14vh, 180px) 0;
}
.a2-stimmen__head {
  max-width: var(--a2-wrap);
  margin: 0 auto 64px;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.a2-stimmen__title {
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  color: #fff;
}
.a2-stimmen__title em { font-style: normal; color: var(--a2-brand-2); font-weight: inherit; }
.a2-stimmen__rating {
  display: flex; flex-direction: column; gap: 4px;
  align-items: flex-end;
  text-align: right;
}
.a2-stimmen__rating-num {
  font-family: var(--a2-font);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: #fff;
}
.a2-stimmen__rating-stars {
  color: #F5B301;
  font-size: 16px;
  letter-spacing: .15em;
}
.a2-stimmen__rating-meta {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink-mute);
}

.a2-stimmen__grid {
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.a2-stimmen__grid .a2-quote:nth-child(1) { grid-column: span 2; }
.a2-stimmen__grid .a2-quote:nth-child(4) { grid-column: span 2; }

.a2-quote {
  margin: 0;
  padding: 36px 32px;
  background: var(--a2-bg-soft);
  border: 1px solid var(--a2-line);
  position: relative;
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color .35s, transform .35s var(--a2-ease);
}
.a2-quote:hover {
  border-color: var(--a2-brand-2);
  transform: translateY(-4px);
}
.a2-quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 24px;
  font-family: 'Manrope', serif;
  font-size: 80px;
  font-weight: 700;
  color: var(--a2-brand-2);
  line-height: 1;
}
.a2-quote blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--a2-ink);
  font-weight: 500;
  padding-top: 16px;
}
.a2-quote figcaption {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink);
  border-top: 1px solid var(--a2-line);
  padding-top: 18px;
}
.a2-quote figcaption span { color: var(--a2-ink-quiet); }

/* =========================================================
   REFERENZEN GALERIE
   ========================================================= */
.a2-refs {
  background: transparent;
  padding: clamp(90px, 14vh, 180px) 0 clamp(60px, 10vh, 120px);
}
.a2-refs__head {
  max-width: var(--a2-wrap);
  margin: 0 auto 56px;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
.a2-refs__title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 18px 0 0;
  color: #fff;
}
.a2-refs__title em { font-style: normal; color: var(--a2-brand-2); font-weight: inherit; }
.a2-refs__lede {
  font-size: 16.5px; line-height: 1.65;
  color: var(--a2-ink-mute);
  max-width: 38ch;
  margin: 0;
  padding-bottom: 8px;
}
.a2-refs__scroller {
  position: relative;
  padding-left: var(--a2-pad-x);
}
.a2-refs__track {
  list-style: none; padding: 0; margin: 0;
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 24px;
  padding-right: var(--a2-pad-x);
}
.a2-refs__track.is-dragging { cursor: grabbing; }
.a2-refs__track::-webkit-scrollbar { display: none; }
.a2-refs__track > li {
  position: relative;
  flex: 0 0 clamp(280px, 32vw, 480px);
  height: clamp(360px, 44vw, 600px);
  scroll-snap-align: start;
  overflow: hidden;
  background: #000;
}
.a2-refs__track > li img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--a2-ease), filter .4s;
  filter: grayscale(15%) brightness(.92);
}
.a2-refs__track > li:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.a2-refs__track > li::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.a2-refs__track > li > span {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--a2-brand-2);
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

.a2-refs__nav {
  position: static;
  display: flex; gap: 8px;
  justify-content: flex-end;
  padding: 16px var(--a2-pad-x) 0 0;
}
.a2-refs__nav button {
  width: 48px; height: 48px;
  border: 1px solid var(--a2-line);
  border-radius: 999px;
  font-size: 18px;
  color: var(--a2-ink);
  transition: background .25s, border-color .25s, transform .25s;
}
.a2-refs__nav button:hover {
  background: var(--a2-brand);
  border-color: var(--a2-brand);
  transform: translateY(-2px);
}

/* =========================================================
   SERVICES SLIDER (à la GSGE) — horizontal snap with overlay
   ========================================================= */
.a2-services {
  background: transparent;
  padding: 0 0 clamp(60px, 8vw, 100px);
}
.a2-services__scroller {
  position: relative;
  padding-left: var(--a2-pad-x);
}
.a2-services__track {
  list-style: none; margin: 0; padding: 0 var(--a2-pad-x) 24px 0;
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.a2-services__track.is-dragging { cursor: grabbing; }
.a2-services__track::-webkit-scrollbar { display: none; }

.a2-service {
  flex: 0 0 clamp(320px, 48vw, 720px);
  height: clamp(420px, 52vw, 620px);
  scroll-snap-align: start;
  position: relative;
}
.a2-service__link {
  display: block;
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.a2-service__link img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--a2-ease), filter .5s ease;
  filter: brightness(.88);
}
.a2-service__link:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.a2-service__link::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}
.a2-service__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
  color: #fff;
  display: flex; flex-direction: column;
  gap: 14px;
}
.a2-service__title {
  margin: 0;
  font-family: var(--a2-font);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
}
.a2-service__txt {
  margin: 0;
  font-size: clamp(.95rem, 1.05vw, 1.05rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
}
.a2-service__more {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
  font-family: var(--a2-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--a2-brand-2);
  transition: color .25s ease, gap .25s ease;
}
.a2-service__link:hover .a2-service__more { color: #fff; gap: 14px; }

.a2-services__nav {
  position: static;
  display: flex; gap: 8px;
  justify-content: flex-end;
  padding: 16px var(--a2-pad-x) 0 0;
}
.a2-services__nav button {
  width: 48px; height: 48px;
  border: 1px solid var(--a2-line);
  border-radius: 999px;
  font-size: 18px;
  color: var(--a2-ink);
  background: transparent;
  transition: background .25s, border-color .25s, transform .25s;
  cursor: pointer;
}
.a2-services__nav button:hover {
  background: var(--a2-brand);
  border-color: var(--a2-brand);
  transform: translateY(-2px);
}


/* =========================================================
   PEOPLE / Ansprechpartner
   ========================================================= */
.a2-people {
  background: var(--a2-bg);
  padding: clamp(80px, 12vh, 160px) 0;
  border-top: 1px solid var(--a2-line);
}
.a2-people__head {
  max-width: var(--a2-wrap);
  margin: 0 auto 56px;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.a2-people__title {
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 14px 0 0;
  color: #fff;
}
.a2-people__title em { font-style: normal; color: var(--a2-brand-2); font-weight: inherit; }
.a2-people__list {
  list-style: none; padding: 0; margin: 0;
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.a2-card {
  padding: 36px 32px;
  background: var(--a2-bg-soft);
  border: 1px solid var(--a2-line);
  transition: border-color .35s, transform .35s var(--a2-ease);
  display: flex; flex-direction: column; gap: 16px;
}
.a2-card:hover {
  border-color: var(--a2-brand-2);
  transform: translateY(-4px);
}
.a2-card__name {
  font-size: 28px; font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.015em;
}
.a2-card__role {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-brand-2);
  margin: 0 0 8px;
}
.a2-card__line {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--a2-line);
  font-size: 15px;
  color: var(--a2-ink);
  transition: color .25s;
}
.a2-card__line:hover { color: var(--a2-brand-2); }
.a2-card__line span:first-child {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--a2-ink-quiet);
  width: 36px;
  flex: 0 0 36px;
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.a2-final {
  position: relative;
  min-height: 48vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.a2-final__media { position: absolute; inset: 0; }
.a2-final__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%) brightness(.7);
}
.a2-final__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,9,15,0.55), rgba(7,9,15,0.85)),
              radial-gradient(80% 60% at 50% 50%, rgba(45,75,155,0.3), rgba(0,0,0,0) 70%);
}
.a2-final__copy {
  position: relative;
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: clamp(48px, 7vh, 84px) var(--a2-pad-x);
  width: 100%;
  text-align: center;
}
.a2-final__title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 18px 0 22px;
  color: #fff;
}
.a2-final__title em { font-style: normal; color: var(--a2-brand-2); font-weight: inherit; }
.a2-final__lede {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 32px;
  max-width: 56ch;
}
.a2-final__ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.a2-footer {
  background: #04060B;
  padding: clamp(60px, 8vh, 100px) 0 32px;
  border-top: 1px solid var(--a2-line);
}
.a2-footer__inner {
  max-width: var(--a2-wrap);
  margin: 0 auto;
  padding: 0 var(--a2-pad-x);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
.a2-footer__brand p {
  font-size: 14.5px;
  color: var(--a2-ink-mute);
  line-height: 1.6;
  max-width: 42ch;
  margin: 18px 0 20px;
}
.a2-footer__logo { height: 38px; width: auto; }
.a2-footer__certs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.a2-footer__certs span {
  font-family: var(--a2-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-brand-2);
  padding: 6px 10px;
  border: 1px solid var(--a2-line);
  border-radius: 2px;
}
.a2-footer__col h4 {
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--a2-ink-quiet);
  font-weight: 500;
  margin: 0 0 16px;
}
.a2-footer__col a, .a2-footer__col p {
  display: block;
  font-size: 14.5px;
  color: var(--a2-ink);
  margin: 0 0 8px;
  transition: color .25s;
}
.a2-footer__col a:hover { color: var(--a2-brand-2); }
.a2-footer__col p span {
  font-family: var(--a2-mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--a2-ink-quiet);
  display: inline-block;
  width: 64px;
}
.a2-footer__bottom {
  max-width: var(--a2-wrap);
  margin: 56px auto 0;
  padding: 24px var(--a2-pad-x) 0;
  border-top: 1px solid var(--a2-line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--a2-mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--a2-ink-quiet);
}
.a2-footer__socials { display: flex; gap: 16px; }
.a2-footer__socials a {
  color: var(--a2-ink-mute);
  transition: color .25s;
}
.a2-footer__socials a:hover { color: var(--a2-brand-2); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .a2-nav__links { display: none; }
  .a2-nav__phone { display: none; }
  .a2-nav__cta { display: none; }
  .a2-nav__burger { display: block; }

  .a2-band__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }

  .a2-leistung,
  .a2-leistung--rev { grid-template-columns: 1fr; }
  .a2-leistung--rev .a2-leistung__media { order: 1; }
  .a2-leistung--rev .a2-leistung__panel { order: 2; }
  .a2-leistung__media { min-height: 56vh; }
  .a2-leistung__panel { padding: 56px 24px; }

  .a2-intro__inner,
  .a2-historie__head,
  .a2-prozess__head,
  .a2-refs__head,
  .a2-people__head,
  .a2-stimmen__head { grid-template-columns: 1fr; gap: 24px; }
  .a2-stimmen__rating { align-items: flex-start; text-align: left; }

  .a2-stimmen__grid { grid-template-columns: 1fr; }
  .a2-stimmen__grid .a2-quote:nth-child(n) { grid-column: auto; }

  .a2-people__list { grid-template-columns: 1fr; }

  .a2-timeline__row {
    grid-template-columns: 100px 1fr;
    gap: 20px;
  }
  .a2-timeline__tag { grid-column: 1 / -1; justify-self: start; }

  .a2-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}

@media (max-width: 600px) {
  .a2-hero { min-height: 580px; }
  .a2-hero__meta { flex-direction: column; gap: 6px; }
  .a2-band__inner { grid-template-columns: 1fr 1fr; padding: 28px var(--a2-pad-x); }
  .a2-band__num { font-size: 40px; }
  .a2-footer__inner { grid-template-columns: 1fr; }
  .a2-footer__bottom { flex-direction: column; align-items: flex-start; }
  .a2-quote { padding: 28px 22px; }
  .a2-leistung__panel { padding: 44px 22px; }
}
/* ============================================================
   alt1.css  —  Editorial Bento Edition for Röde Recycling
   ------------------------------------------------------------
   Style direction: editorial magazine layout w/ asymmetric
   bento grids, massive display typography, hairline rules,
   numbered sections (à la GSGE / Tausendpfund). Dark theme.
   Prefix: .a1- (no collisions with app.css).
   ============================================================ */

:root {
  /* Brand carry-over */
  --a1-bg:        #07090F;            /* deeper than --night for editorial contrast */
  --a1-bg-2:      #0A0F1C;            /* matches existing --night */
  --a1-bg-tile:   #0F1424;            /* tile surface */
  --a1-bg-tile-2: #131A2E;            /* tile surface alt */
  --a1-ink:       #F2F4FA;            /* primary text on dark */
  --a1-ink-soft:  #C7CEE2;            /* secondary text — etwas heller für bessere Lesbarkeit */
  --a1-muted:     #8C97B0;            /* meta text — heller für bessere Lesbarkeit */
  --a1-line:      rgba(255,255,255,0.08);
  --a1-line-2:    rgba(255,255,255,0.14);
  --a1-line-3:    rgba(255,255,255,0.22);

  --a1-brand:       #2D4B9B;
  --a1-brand-light: #6B85C9;
  --a1-brand-glow:  rgba(107,133,201,0.22);
  --a1-accent:      #E8ECF7;          /* near-white accent */

  --a1-font-display: 'Manrope', system-ui, sans-serif;
  --a1-font-body:    'Manrope', system-ui, sans-serif;
  --a1-font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --a1-pad-x: clamp(20px, 3vw, 32px);
  --a1-pad-y: clamp(3.5rem, 7vw, 6rem);
  --a1-container: 1440px;
  --a1-radius: 0;
  --a1-radius-tile: 0;
}

/* ── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.a1-body {
  margin: 0;
  font-family: var(--a1-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--a1-ink);
  background: var(--a1-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* Subtle grid + brand vignette as editorial paper ground */
  background-image:
    radial-gradient(ellipse 60% 50% at 78% 8%, var(--a1-brand-glow) 0%, transparent 60%),
    radial-gradient(ellipse 70% 55% at 12% 92%, rgba(45,75,155,0.18) 0%, transparent 65%),
    linear-gradient(rgba(107,133,201,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,133,201,0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
  background-attachment: fixed, fixed, scroll, scroll;
}

img { display: block; max-width: 100%; height: auto; }

/* Kein Kursiv — nirgends */
em, i, cite { font-style: normal; }

a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--a1-brand-light); }

::selection { background: var(--a1-brand); color: #fff; }

:focus-visible { outline: 2px solid var(--a1-brand-light); outline-offset: 3px; }

/* ── Typography utilities ─────────────────────────────────── */
.a1-display {
  font-family: var(--a1-font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: none;
  margin: 0;
  color: var(--a1-accent);
  font-size: clamp(3rem, 7.5vw, 8.5rem);
}
.a1-display--mid { font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: 0.98; letter-spacing: -0.035em; }
.a1-display__line { display: block; }
.a1-display__line--out {
  /* Outline-Variante entfernt — Linie nutzt jetzt Standard-Ink-Farbe */
  color: var(--a1-ink);
  font-weight: 800;
}
.a1-display__line--brand { color: var(--a1-brand-light); }
.a1-display--em { font-weight: 800; color: var(--a1-brand-light); }

.a1-mono {
  font-family: var(--a1-font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--a1-muted);
  font-feature-settings: "tnum";
}

.a1-muted { color: var(--a1-muted); }

.a1-lede {
  font-family: var(--a1-font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.6;
  color: var(--a1-ink-soft);
  max-width: 56ch;
  margin: 0;
}

/* ── Reveal animation ─────────────────────────────────────── */
.a1-fadein {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.22,.7,.22,1), transform .9s cubic-bezier(.22,.7,.22,1);
}
.a1-fadein.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .a1-fadein { opacity: 1; transform: none; transition: none; }
}

/* ── Section scaffolding ──────────────────────────────────── */
.a1-section {
  position: relative;
  max-width: var(--a1-container);
  margin: 0 auto;
  padding: var(--a1-pad-y) var(--a1-pad-x);
}

.a1-secrule {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--a1-font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--a1-muted);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.a1-secrule > span:first-child { color: var(--a1-ink); letter-spacing: 0.24em; font-weight: 600; }
.a1-secrule > span + span { position: relative; padding-left: 1.5rem; }
.a1-secrule > span + span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1rem; height: 1px;
  background: var(--a1-line-2);
  transform: translateY(-50%);
}

/* ── Top nav ──────────────────────────────────────────────── */
.a1-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 14px clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(7,9,15,.85) 0%, rgba(7,9,15,.55) 70%, transparent 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.a1-nav.is-scrolled {
  background: rgba(7,9,15,.92);
  border-bottom-color: var(--a1-line);
}
.a1-nav__brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--a1-ink);
}
.a1-nav__brand img { width: 28px; height: 28px; }
.a1-nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.a1-nav__brand-name {
  font-family: var(--a1-font-display);
  font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
}
.a1-nav__brand-meta {
  font-family: var(--a1-font-mono);
  font-size: 9.5px; letter-spacing: 0.18em; color: var(--a1-muted);
  margin-top: 3px;
}
.a1-nav__center {
  display: flex; justify-content: center; gap: clamp(1rem, 2.4vw, 2.4rem);
  font-family: var(--a1-font-display);
  font-weight: 500; font-size: 13px; letter-spacing: -0.005em;
}
.a1-nav__center a {
  display: inline-flex; align-items: baseline; gap: 6px;
  color: var(--a1-ink-soft);
  position: relative;
}
.a1-nav__center a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: -4px;
  height: 1px; background: currentColor;
  transition: right .35s cubic-bezier(.22,.7,.22,1);
}
.a1-nav__center a:hover { color: var(--a1-ink); }
.a1-nav__center a:hover::after { right: 0; }
.a1-nav__num { font-family: var(--a1-font-mono); font-size: 10px; color: var(--a1-muted); }
.a1-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--a1-line-3);
  border-radius: 999px;
  font-family: var(--a1-font-display); font-weight: 600; font-size: 13px;
  color: var(--a1-ink); background: rgba(255,255,255,0.02);
  transition: background .25s ease, border-color .25s ease;
}
.a1-nav__cta:hover { background: var(--a1-brand); border-color: var(--a1-brand); color: #fff; }

@media (max-width: 900px) {
  .a1-nav { grid-template-columns: auto auto; }
  .a1-nav__center { display: none; }
}

/* ── Hero ─────────────────────────────────────────────────── */
.a1-hero {
  position: relative;
  max-width: var(--a1-container);
  margin: 0 auto;
  padding: calc(72px + clamp(2rem, 5vw, 4rem)) var(--a1-pad-x) clamp(3rem, 5vw, 4rem);
}
.a1-hero__rule {
  display: flex; justify-content: flex-start; gap: 1.5rem;
  font-family: var(--a1-font-mono);
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--a1-muted);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--a1-line);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.a1-hero__rule-mid { color: var(--a1-ink-soft); }
.a1-hero__rule > span + span { position: relative; padding-left: 1.5rem; }
.a1-hero__rule > span + span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1rem; height: 1px;
  background: var(--a1-line-2);
  transform: translateY(-50%);
}
@media (max-width: 700px) {
  .a1-hero__rule { flex-wrap: wrap; gap: .75rem 1.25rem; }
  .a1-hero__rule > span + span { padding-left: 0; }
  .a1-hero__rule > span + span::before { display: none; }
}

.a1-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.a1-hero__text {
  display: flex; flex-direction: column; gap: clamp(1.25rem, 2.5vw, 2rem);
}
.a1-hero__sub {
  max-width: 50ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--a1-ink-soft);
  margin: 0;
}
.a1-hero__ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: .25rem;
}
.a1-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.a1-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}

@media (max-width: 900px) {
  .a1-hero__split { grid-template-columns: 1fr; }
  .a1-hero__media { aspect-ratio: 16/10; order: -1; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.a1-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: var(--a1-font-display); font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
  cursor: pointer;
}
.a1-btn--primary {
  background: var(--a1-brand);
  color: #fff;
}
.a1-btn--primary:hover {
  background: var(--a1-brand-light);
  color: #fff;
  transform: translateY(-1px);
}
.a1-btn--ghost {
  background: transparent;
  color: var(--a1-ink);
  border-color: var(--a1-line-3);
}
.a1-btn--ghost:hover {
  border-color: var(--a1-ink-soft);
  color: var(--a1-ink);
}

/* ── Tile primitives ──────────────────────────────────────── */
.a1-tile {
  position: relative;
  background: var(--a1-bg-tile);
  border: 1px solid var(--a1-line);
  border-radius: var(--a1-radius-tile);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  overflow: hidden;
  transition: border-color .35s ease, transform .5s cubic-bezier(.22,.7,.22,1), background .35s ease;
}
.a1-tile:hover { border-color: var(--a1-line-2); }
.a1-tile--brand {
  background: linear-gradient(135deg, var(--a1-brand) 0%, #1F3573 100%);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.a1-tile--brand .a1-mono { color: rgba(255,255,255,0.7); }
.a1-tile--brand p { color: rgba(255,255,255,0.85); }
.a1-tile--ghost {
  background: transparent;
  border: 1px solid var(--a1-line-2);
}
.a1-tile__cap {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 10px;
  background: rgba(7,9,15,0.7);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  font-family: var(--a1-font-mono);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--a1-ink);
}
.a1-tile__cap span:last-child { color: var(--a1-ink-soft); }

/* Hero figure tile uses media-only — pad 0 */
.a1-hero__media.a1-tile { padding: 0; }

.a1-cta-link {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 1rem;
  font-family: var(--a1-font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: inherit;
  margin: auto 0;
}
.a1-cta-link__arrow {
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  transition: transform .35s cubic-bezier(.22,.7,.22,1);
}
.a1-cta-link:hover .a1-cta-link__arrow { transform: translate(4px, -4px); }

.a1-link-ghost {
  font-family: var(--a1-font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--a1-ink-soft);
}
.a1-link-ghost:hover { color: var(--a1-ink); }

/* ── 01 Manifest ──────────────────────────────────────────── */
.a1-manifest__grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.a1-manifest__quote {
  font-family: var(--a1-font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--a1-ink);
  margin: 0;
}
.a1-manifest__quote em {
  color: var(--a1-brand-light);
  font-weight: 700;
}
.a1-manifest__sig {
  display: flex; flex-direction: column; gap: 4px;
  padding-top: 1rem;
  border-top: 1px solid var(--a1-line-2);
}
.a1-manifest__sig p { margin: 0; }
.a1-manifest__sig p strong { font-size: 1.1rem; }

@media (max-width: 800px) {
  .a1-manifest__grid { grid-template-columns: 1fr; }
}

/* ── 02 Leistungen — Bento ────────────────────────────────── */
.a1-leist__head {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.a1-leist__head .a1-lede { justify-self: start; max-width: 38ch; }
@media (max-width: 900px) {
  .a1-leist__head { grid-template-columns: 1fr; }
  .a1-leist__head .a1-lede { justify-self: start; }
}

.a1-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.a1-bento__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,.7,.22,1);
}

.a1-bento__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.a1-bento__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22,.7,.22,1);
}
.a1-bento__tile:hover .a1-bento__media img { transform: scale(1.04); }
.a1-bento__media::after { content: none; }

.a1-bento__body {
  padding: 1.25rem 0 0;
  display: flex; flex-direction: column; gap: .85rem;
}
.a1-bento__num {
  display: inline-block;
}
.a1-bento__title {
  font-family: var(--a1-font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--a1-accent);
  margin: 0;
}
.a1-bento__desc {
  margin: 0;
  font-size: .98rem;
  line-height: 1.5;
  color: var(--a1-ink-soft);
}
.a1-bento__list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: .9rem;
  color: var(--a1-ink-soft);
}
.a1-bento__list li {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--a1-line);
}
.a1-bento__list li::before {
  content: '';
  flex: 0 0 6px;
  height: 1px;
  background: var(--a1-brand-light);
  transform: translateY(-4px);
}
.a1-bento__list--cols { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.a1-bento__more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--a1-font-display); font-weight: 600;
  font-size: .95rem;
  color: var(--a1-ink);
  border-bottom: 1px solid var(--a1-line-2);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .25s ease, border-color .25s ease;
}
.a1-bento__more:hover { color: var(--a1-brand-light); border-color: var(--a1-brand-light); }
.a1-bento__more span {
  transition: transform .35s cubic-bezier(.22,.7,.22,1);
  display: inline-block;
}
.a1-bento__more:hover span { transform: translateX(4px); }

@media (max-width: 700px) {
  .a1-bento { grid-template-columns: 1fr; }
  .a1-bento__list--cols { grid-template-columns: 1fr; }
}

/* ── 03 Stats ────────────────────────────────────────────── */
.a1-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--a1-line);
}
.a1-stat {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.25rem, 2.5vw, 2rem);
  border-right: 1px solid var(--a1-line);
  border-bottom: 1px solid var(--a1-line);
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
}
.a1-stat:last-child { border-right: none; }
.a1-stat__num {
  font-family: var(--a1-font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--a1-accent);
}
.a1-stat__label {
  font-family: var(--a1-font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--a1-brand-light);
}
.a1-stat p { margin: 0; color: var(--a1-ink-soft); font-size: .95rem; max-width: 36ch; }
@media (max-width: 800px) {
  .a1-stats__grid { grid-template-columns: 1fr; }
  .a1-stat { border-right: none; }
}

/* ── 04 Referenzen — Mosaic ───────────────────────────────── */
.a1-refs__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.a1-refs__head .a1-lede { justify-self: start; max-width: 38ch; }
@media (max-width: 900px) {
  .a1-refs__head { grid-template-columns: 1fr; }
  .a1-refs__head .a1-lede { justify-self: start; }
}

.a1-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.25rem);
}
.a1-mosaic__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--a1-bg-tile);
  aspect-ratio: 4 / 3;
  transition: opacity .35s ease;
}
.a1-mosaic__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22,.7,.22,1);
}
.a1-mosaic__cell:hover img { transform: scale(1.05); }
.a1-mosaic__cap {
  position: absolute; left: 12px; bottom: 12px;
  padding: 6px 10px;
  background: rgba(7,9,15,0.75);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  font-size: 10px;
  color: var(--a1-ink);
  letter-spacing: 0.18em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22,.7,.22,1);
}
.a1-mosaic__cell:hover .a1-mosaic__cap { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .a1-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .a1-mosaic { grid-template-columns: 1fr; }
}

/* ── 05 Historie — Timeline ───────────────────────────────── */
.a1-history__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.a1-history__head .a1-lede { justify-self: start; max-width: 38ch; }
@media (max-width: 900px) {
  .a1-history__head { grid-template-columns: 1fr; }
  .a1-history__head .a1-lede { justify-self: start; }
}

.a1-timeline {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--a1-line);
}
.a1-timeline__row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 0.4rem;
  align-items: baseline;
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-bottom: 1px solid var(--a1-line);
  transition: padding-left .4s cubic-bezier(.22,.7,.22,1), background .4s ease;
}
.a1-timeline__year { grid-column: 1; grid-row: 1 / span 2; align-self: center; }
.a1-timeline__txt  { grid-column: 2; grid-row: 1; }
.a1-timeline__row:hover {
  padding-left: 1.25rem;
  background: rgba(255,255,255,0.015);
}
.a1-timeline__year {
  font-family: var(--a1-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--a1-ink);
}
.a1-timeline__txt {
  color: var(--a1-ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
}
.a1-timeline__tag {
  grid-column: 2; grid-row: 2;
  justify-self: start;
  font-family: var(--a1-font-mono);
  font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--a1-muted);
  padding: 4px 10px;
  border: 1px solid var(--a1-line-2);
  border-radius: 999px;
}
.a1-timeline__row--now .a1-timeline__year { color: var(--a1-brand-light); }
.a1-timeline__row--now .a1-timeline__tag {
  color: var(--a1-bg);
  background: var(--a1-brand-light);
  border-color: var(--a1-brand-light);
  font-weight: 600;
}

@media (max-width: 800px) {
  .a1-timeline__row { grid-template-columns: 100px 1fr; gap: 1rem; }
  .a1-timeline__tag { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
}

/* ── 06 Process — Steps ───────────────────────────────────── */
.a1-process__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.a1-process__head .a1-lede { justify-self: start; max-width: 38ch; }
@media (max-width: 900px) {
  .a1-process__head { grid-template-columns: 1fr; }
  .a1-process__head .a1-lede { justify-self: start; }
}

.a1-steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--a1-line);
  border-bottom: 1px solid var(--a1-line);
}
.a1-step {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.75rem);
  border-right: 1px solid var(--a1-line);
  display: flex; flex-direction: column; gap: .75rem;
}
.a1-step:last-child { border-right: none; }
.a1-step__num {
  font-family: var(--a1-font-mono);
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--a1-brand-light);
  display: inline-block;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--a1-line);
  margin-bottom: .25rem;
}
.a1-step h3 {
  font-family: var(--a1-font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--a1-ink);
}
.a1-step p { margin: 0; color: var(--a1-ink-soft); font-size: .95rem; }

@media (max-width: 900px) {
  .a1-steps { grid-template-columns: 1fr 1fr; }
  .a1-step:nth-child(2n) { border-right: none; }
  .a1-step:nth-child(-n+2) { border-bottom: 1px solid var(--a1-line); }
}
@media (max-width: 560px) {
  .a1-steps { grid-template-columns: 1fr; }
  .a1-step { border-right: none; border-bottom: 1px solid var(--a1-line); }
  .a1-step:last-child { border-bottom: none; }
}

/* ── 07 Voices ────────────────────────────────────────────── */
.a1-voices__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.a1-voices__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.a1-voice {
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  border: 1px solid var(--a1-line);
  border-radius: var(--a1-radius-tile);
  background: var(--a1-bg-tile);
  display: flex; flex-direction: column; gap: 1rem;
  grid-column: span 2;
  transition: border-color .35s ease, transform .5s cubic-bezier(.22,.7,.22,1);
}
.a1-voice:hover { border-color: var(--a1-line-2); transform: translateY(-3px); }
.a1-voice:nth-child(1) { grid-column: span 3; }
.a1-voice:nth-child(2) { grid-column: span 3; }
.a1-voice p {
  margin: 0;
  font-family: var(--a1-font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--a1-ink);
}
.a1-voice footer {
  margin-top: auto;
  font-family: var(--a1-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--a1-muted);
}
.a1-voice footer strong {
  color: var(--a1-ink);
  font-weight: 600;
}
.a1-voice--accent {
  background: linear-gradient(135deg, var(--a1-brand) 0%, #1F3573 100%);
  border-color: rgba(255,255,255,.18);
}
.a1-voice--accent p { color: #fff; }
.a1-voice--accent footer { color: rgba(255,255,255,.7); }
.a1-voice--accent footer strong { color: #fff; }

@media (max-width: 900px) {
  .a1-voice,
  .a1-voice:nth-child(1),
  .a1-voice:nth-child(2) { grid-column: span 6; }
  /* Alle Bewertungen einheitlich gestalten (Akzent-Karte angleichen) */
  .a1-voice--accent {
    background: var(--a1-bg-tile);
    border-color: var(--a1-line);
  }
  .a1-voice--accent p { color: var(--a1-ink); }
  .a1-voice--accent footer { color: var(--a1-muted); }
  .a1-voice--accent footer strong { color: var(--a1-ink); }
}

/* ── 08 Kontakt ───────────────────────────────────────────── */
.a1-contact__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}
.a1-contact__intro {
  grid-column: span 6;
  display: flex; flex-direction: column; gap: 1.25rem;
  padding-bottom: 1rem;
}
.a1-contact__card {
  grid-column: span 2;
  background: var(--a1-bg-tile);
  border: 1px solid var(--a1-line);
  border-radius: var(--a1-radius-tile);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex; flex-direction: column; gap: .5rem;
  transition: border-color .35s ease, transform .5s cubic-bezier(.22,.7,.22,1);
}
.a1-contact__card:hover { border-color: var(--a1-line-2); transform: translateY(-2px); }
.a1-contact__card h3 {
  font-family: var(--a1-font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: -0.02em;
  margin: 8px 0 0;
  color: var(--a1-ink);
}
.a1-contact__card a {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: baseline;
  gap: .5rem;
  padding: .65rem 0;
  border-top: 1px solid var(--a1-line);
  font-family: var(--a1-font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--a1-ink);
}
.a1-contact__card a:first-of-type { margin-top: auto; }
.a1-contact__card a:hover { color: var(--a1-brand-light); }

.a1-contact__addr {
  grid-column: span 2;
  background: var(--a1-bg-tile);
  border: 1px solid var(--a1-line);
  border-radius: var(--a1-radius-tile);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex; flex-direction: column; gap: .75rem;
  transition: border-color .35s ease, transform .5s cubic-bezier(.22,.7,.22,1);
}
.a1-contact__addr:hover { border-color: var(--a1-line-2); transform: translateY(-2px); }
.a1-contact__addr-line {
  font-family: var(--a1-font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.015em;
  margin: 8px 0 .5rem;
  color: var(--a1-ink);
  line-height: 1.2;
}
.a1-hours {
  margin: 0; padding-top: 1rem;
  border-top: 1px solid var(--a1-line);
  display: flex; flex-direction: column; gap: 6px;
}
.a1-hours div {
  display: grid; grid-template-columns: 90px 1fr; gap: .5rem;
  font-size: .9rem;
}
.a1-hours dt { color: var(--a1-muted); font-family: var(--a1-font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding-top: 2px; }
.a1-hours dd { margin: 0; color: var(--a1-ink); }

.a1-contact__cta {
  grid-column: span 6;
  min-height: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}
.a1-contact__cta-title {
  font-family: var(--a1-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #fff;
}
.a1-contact__cta:hover .a1-cta-link__arrow { transform: translate(6px, -6px); }

@media (max-width: 900px) {
  .a1-contact__card { grid-column: span 3; }
  .a1-contact__addr { grid-column: span 6; }
}
@media (max-width: 560px) {
  .a1-contact__card { grid-column: span 6; }
}

/* ── Footer ───────────────────────────────────────────────── */
.a1-foot {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.75rem;
  border-top: 1px solid var(--a1-line-2);
  background: var(--a1-bg-2);
}
.a1-foot__top,
.a1-foot__bottom {
  max-width: var(--a1-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--a1-pad-x);
  padding-right: var(--a1-pad-x);
}
.a1-foot__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--a1-line);
}
.a1-foot__brand img {
  width: 160px; height: auto;
  margin-bottom: 1rem;
}
.a1-foot__brand p { color: var(--a1-ink-soft); font-size: .95rem; max-width: 36ch; margin: 0; }
.a1-foot__col { display: flex; flex-direction: column; gap: .5rem; }
.a1-foot__col h4 {
  font-family: var(--a1-font-mono);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--a1-muted);
  margin: 0 0 .5rem;
  font-weight: 500;
}
.a1-foot__col a {
  font-family: var(--a1-font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--a1-ink-soft);
}
.a1-foot__col a:hover { color: var(--a1-ink); }

.a1-foot__bottom {
  margin-top: 1.5rem;
  display: flex; justify-content: flex-start; gap: 1.5rem; flex-wrap: wrap;
  font-size: 12px;
  color: var(--a1-muted);
}
.a1-foot__bottom .a1-mono { font-size: 10.5px; }

@media (max-width: 900px) {
  .a1-foot__top { grid-template-columns: 1fr 1fr; }
  .a1-foot__brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .a1-foot__top { grid-template-columns: 1fr; }
  .a1-foot__brand { grid-column: span 1; }
  .a1-foot__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   Containerdienst page (cd-*)
   Standard dark body background — no white sections.
   Sections are transparent so the night/blueprint-grid
   from body::before shows through, like .process on index.
   ============================================ */

.cd-intro,
.cd-sizes,
.cd-waste,
.cd-info {
  background: transparent;
  color: var(--bone);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(20px, 3vw, 32px);
  position: relative;
}

.cd-intro__inner,
.cd-sizes__inner,
.cd-waste__inner,
.cd-info__inner {
  max-width: 1440px;
  margin: 0 auto;
}

/* Intro */
.cd-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.cd-intro__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 12px 0 0;
  color: var(--bone);
}
.cd-intro__title em {
  font-style: normal;
  color: #6B85C9;
  font-weight: inherit;
}
.cd-intro__lede {
  font-size: 1.05rem;
  color: var(--paper);
  line-height: 1.65;
  margin: 0 0 16px;
}
.cd-intro__lede:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .cd-intro__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Container sizes */
.cd-sizes__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.cd-sizes__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 12px 0 0;
  color: var(--bone);
}
.cd-sizes__title em {
  font-style: normal;
  color: #6B85C9;
  font-weight: inherit;
}
.cd-sizes__lede {
  font-size: 1rem;
  color: var(--paper);
  line-height: 1.65;
  margin: 0;
}
.cd-sizes__lede strong { color: var(--bone); font-weight: 700; }
@media (max-width: 900px) {
  .cd-sizes__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

.cd-sizes__group { margin-bottom: 64px; }
.cd-sizes__group:last-of-type { margin-bottom: 32px; }
.cd-sizes__group-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}
.cd-sizes__group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.55rem;
  margin: 0;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.cd-sizes__group-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brand-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cd-size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1020px) { .cd-size-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cd-size-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } .cd-size { padding: 16px 13px; } }

.cd-size {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  border-radius: 8px;
  padding: 26px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cd-size::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-light);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cd-size:hover {
  transform: translateY(-3px);
  background: rgba(45, 75, 155, 0.18);
  border-color: rgba(107, 133, 201, 0.45);
}
.cd-size:hover::before { width: 100%; }
.cd-size__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--brand-light);
  letter-spacing: -0.04em;
}
.cd-size__badge small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0;
}
.cd-size__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 14px 0 4px;
  color: var(--bone);
}
.cd-size__dims {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--brand-light);
  letter-spacing: 0.03em;
  margin: 0 0 14px;
}
.cd-size__use {
  font-size: 0.92rem;
  color: var(--paper);
  line-height: 1.55;
  margin: 0;
}

.cd-size__viz {
  width: 100%;
  margin: -8px 0 14px;
}
.cd-size__viz-svg {
  width: 100%;
  height: auto;
  display: block;
}
.cd-viz-ground {
  stroke: var(--brand-light);
  stroke-width: 0.35;
  opacity: 0.32;
  stroke-dasharray: 1.2 1.2;
}
.cd-viz-container {
  fill: rgba(107, 133, 201, 0.22);
  stroke: var(--brand-light);
  stroke-width: 0.45;
  transition: fill 280ms ease;
}
.cd-size:hover .cd-viz-container {
  fill: rgba(107, 133, 201, 0.38);
}
.cd-viz-rib {
  stroke: var(--brand-light);
  stroke-width: 0.3;
  opacity: 0.45;
}
.cd-viz-strut {
  stroke: var(--brand-light);
  stroke-width: 0.75;
  opacity: 0.55;
}
.cd-viz-rail {
  fill: rgba(107, 133, 201, 0.45);
  stroke: var(--brand-light);
  stroke-width: 0.35;
}
.cd-viz-pillar {
  fill: rgba(107, 133, 201, 0.22);
  stroke: var(--brand-light);
  stroke-width: 0.4;
}
.cd-viz-seam {
  stroke: var(--brand-light);
  stroke-width: 0.3;
  opacity: 0.5;
}
.cd-viz-band {
  stroke: var(--brand-light);
  stroke-width: 0.4;
  opacity: 0.55;
}
.cd-viz-head {
  fill: var(--bone);
  opacity: 0.9;
}
.cd-viz-body {
  fill: none;
  stroke: var(--bone);
  stroke-width: 0.7;
  stroke-linecap: round;
  opacity: 0.9;
}

.cd-sizes__note,
.cd-waste__note {
  font-size: 0.88rem;
  color: var(--paper);
  text-align: center;
  margin: 40px auto 0;
  max-width: 720px;
  line-height: 1.55;
  opacity: 0.75;
}

/* Waste types */
.cd-waste__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.cd-waste__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 12px 0 0;
  color: var(--bone);
}
.cd-waste__title em {
  font-style: normal;
  color: #6B85C9;
  font-weight: inherit;
}
.cd-waste__lede {
  font-size: 1rem;
  color: var(--paper);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .cd-waste__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}

.cd-waste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1020px) { .cd-waste-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cd-waste-grid { grid-template-columns: 1fr; } }

.cd-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  border-radius: 8px;
  padding: 28px 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
  position: relative;
  overflow: hidden;
}
.cd-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-light);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cd-card:hover {
  transform: translateY(-3px);
  background: rgba(45, 75, 155, 0.18);
  border-color: rgba(107, 133, 201, 0.45);
}
.cd-card:hover::before { width: 100%; }
.cd-card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 600;
  margin-bottom: 4px;
}
.cd-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 6px 0 10px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bone);
}
.cd-card__desc {
  font-size: 0.95rem;
  color: var(--paper);
  line-height: 1.55;
  margin: 0 0 18px;
  flex-grow: 1;
}
.cd-card__lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .cd-card__lists { grid-template-columns: 1fr; gap: 14px; }
}
.cd-card__list h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 8px;
}
.cd-card__list--yes h4 { color: #7DD49C; }
.cd-card__list--no h4 { color: #E89090; }
.cd-card__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--paper);
  line-height: 1.5;
}
.cd-card__list li {
  padding-left: 14px;
  position: relative;
  margin-bottom: 4px;
}
.cd-card__list li:last-child { margin-bottom: 0; }
.cd-card__list--yes li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #7DD49C;
  font-weight: 800;
  font-family: var(--font-mono);
}
.cd-card__list--no li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: #E89090;
  font-weight: 800;
  font-family: var(--font-mono);
}

/* Process — inherits .process { background: transparent; color: bone } */

/* Info / FAQ */
.cd-info__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.cd-info__title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: none;
  margin: 12px 0 0;
  color: var(--bone);
}
.cd-info__title em {
  font-style: normal;
  color: #6B85C9;
  font-weight: inherit;
}
.cd-info__lede {
  font-size: 1rem;
  color: var(--paper);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .cd-info__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
}

.cd-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 1020px) { .cd-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cd-info-grid { grid-template-columns: 1fr; } }

.cd-info-card {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  border-radius: 8px;
  padding: 26px 24px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
  position: relative;
  overflow: hidden;
}
.cd-info-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-light);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cd-info-card:hover {
  transform: translateY(-3px);
  background: rgba(45, 75, 155, 0.18);
  border-color: rgba(107, 133, 201, 0.45);
}
.cd-info-card:hover::before { width: 100%; }
.cd-info-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--bone);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.cd-info-card p {
  color: var(--paper);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Rules — two boxes "darf rein / darf nicht rein" */
.cd-rules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 720px) { .cd-rules { grid-template-columns: 1fr; } }

.cd-rules__col {
  background: rgba(10, 15, 28, 0.55);
  border: 1px solid var(--hairline-dark);
  border-radius: 8px;
  padding: 36px 32px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 280ms ease, background 280ms ease, border-color 280ms ease;
  position: relative;
  overflow: hidden;
}
.cd-rules__col::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--brand-light);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.cd-rules__col:hover {
  transform: translateY(-3px);
  background: rgba(45, 75, 155, 0.18);
  border-color: rgba(107, 133, 201, 0.45);
}
.cd-rules__col:hover::before { width: 100%; }

.cd-rules__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--bone);
}

.cd-rules__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: var(--paper);
  line-height: 1.55;
}
.cd-rules__list li {
  padding: 8px 0 8px 22px;
  position: relative;
}
.cd-rules__list li::before {
  position: absolute;
  left: 0;
  top: 8px;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 1rem;
}
.cd-rules__col:first-child .cd-rules__list li::before {
  content: "+";
  color: #7DD49C;
}
.cd-rules__col:last-child .cd-rules__list li::before {
  content: "−";
  color: #E89090;
}
.cd-rules__list li strong { color: var(--bone); font-weight: 700; }

/* =========================================================
   MOBILE-FEINSCHLIFF (Feedback)
   ========================================================= */
@media (max-width: 640px) {
  /* ALLE Sektions-Überschriften einheitlich: gleiche Größe, Zeilenhöhe, Weight */
  .reel__title,
  .a2-intro__title,
  .a2-refs__title,
  .a2-final__title,
  .section__title,
  .a2-historie__title,
  .a1-display--mid,
  .cd-intro__title,
  .cd-sizes__title,
  .cd-waste__title,
  .cd-info__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  /* Weniger Abstand zwischen den Sektionen */
  .manifesto,
  .a2-manifesto__copy,
  .a2-historie,
  .a2-prozess,
  .a2-stimmen,
  .a2-people {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .a2-refs { padding-top: 56px; padding-bottom: 40px; }

  /* Benefit-Boxen (Karriere) flacher */
  .benefit { padding: 22px 22px 20px; gap: 10px; }
}

/* =========================================================
   CONTAINERDIENST — Mobile-Feinschliff
   ========================================================= */
@media (max-width: 640px) {
  /* "Das nehmen wir an / nicht an": weniger Abstand zwischen den Punkten */
  .cd-rules__list li { padding-top: 4px; padding-bottom: 4px; }

  /* Container-Kacheln kompakter */
  .cd-size { padding: 14px 12px; }
  .cd-size__badge { font-size: 2rem; }
  .cd-size__name { margin: 6px 0 2px; font-size: 1rem; }
  .cd-size__dims { margin: 0; }
  /* Container-Illustration größer + vertikal zentriert, ohne Überlauf */
  .cd-size__viz {
    margin: 0 0 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
  }
  .cd-size__viz-svg { width: 130%; height: auto; }

  /* FAQ-Karten ein-/ausklappbar */
  .cd-info-card { cursor: pointer; padding-top: 16px; padding-bottom: 16px; }
  .cd-info-card h3 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
  }
  .cd-info-card h3::after {
    content: "+";
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--brand-light);
    flex-shrink: 0;
  }
  .cd-info-card.is-open h3::after { content: "−"; }
  .cd-info-card:not(.is-open) p { display: none; }
  .cd-info-card.is-open p { margin-top: 12px; }
}

/* =========================================================
   GLOBAL: Fließtext auf Mobile kleiner (~14,5px statt 16–17px)
   ========================================================= */
@media (max-width: 640px) {
  .hero__lede,
  .section__lede,
  .refs__lede,
  .process__text,
  .about__lede,
  .stat__text,
  .benefit__text,
  .apply-card__lede,
  .page-hero__lede,
  .cta-blue__lede,
  .legal__lede,
  .a2-hero__lede,
  .a2-intro__lede,
  .a2-leistung__lede,
  .a2-historie__lede,
  .a2-prozess__lede,
  .a2-refs__lede,
  .a2-final__lede,
  .a1-lede,
  .a1-hero__text,
  .a1-voice p,
  .cd-intro__lede,
  .cd-sizes__lede,
  .cd-waste__lede,
  .cd-info__lede,
  .cd-info-card p,
  .cd-rules__list,
  .a1-contact__card a,
  .footer__col a,
  .a2-footer__col a,
  .a2-footer__col p {
    font-size: 14.5px;
    line-height: 1.55;
  }
}

/* =========================================================
   KONTAKT-KARTEN (GF / Dispo / Adresse) — Mobile kompakt + einklappbar
   ========================================================= */
@media (max-width: 640px) {
  .a1-contact__grid { grid-auto-rows: auto; gap: 10px; }
  .a1-contact__card,
  .a1-contact__addr {
    position: relative;
    cursor: pointer;
    padding: 13px 16px;
    gap: .25rem;
  }
  .a1-contact__card h3 { margin: 2px 0 0; }
  .a1-contact__addr-line { margin: 2px 0 0; }
  /* +/− Indikator oben rechts */
  .a1-contact__card::after,
  .a1-contact__addr::after {
    content: "+";
    position: absolute;
    top: 12px; right: 14px;
    font-family: var(--a1-font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--a1-muted);
  }
  .a1-contact__card.is-open::after,
  .a1-contact__addr.is-open::after { content: "−"; }
  /* Eingeklappt: nur die ersten zwei Zeilen (Label + Name) */
  .a1-contact__card:not(.is-open) > *:nth-child(n+3),
  .a1-contact__addr:not(.is-open) > *:nth-child(n+3) { display: none; }
  .a1-contact__card.is-open a:first-of-type { margin-top: .4rem; }
}

/* =========================================================
   MOBILE-FEINSCHLIFF (Feedback Runde 2)
   ========================================================= */
@media (max-width: 640px) {
  /* "Was wir machen" größer, weniger Abstand drumherum (v.a. unten) */
  .reel__title { font-size: clamp(2.1rem, 9vw, 2.8rem); }
  .reel__head { padding: 64px 20px 8px; }

  /* Sektionsabstände generell enger */
  .section { padding: 64px 0; }
  /* Prozess-Sektion an die a2-Rhythmik angleichen (Abstand vor "Familienbetrieb") */
  .process { padding-top: 32px; padding-bottom: 32px; }

  /* Einheitliche vertikale Abstände der großen a2-Sektionen:
     oben (über den Überschriften) = 28px, unten (unter Pfeilen/Inhalt) = 32px */
  .a2-services { padding-bottom: 32px; }                       /* unter den Leistungs-Pfeilen */
  .a2-refs { padding-top: 28px; padding-bottom: 32px; }        /* über "Ein Auszug…", unter den Galerie-Pfeilen */
  .a2-historie { padding-top: 28px; padding-bottom: 32px; }    /* über "Familienbetrieb…" */
  .a2-final__copy { padding-top: 28px; padding-bottom: 32px; } /* über "Projekt in Planung…" */

  /* "Was wir machen" nah an die nächste Überschrift + wenig Abstand zu den Slides */
  .a2-intro { padding-top: 12px; padding-bottom: 20px; }

  /* Nach "…sortenreinen Gewerbeabbruch" weniger Abstand zum Slider */
  .a2-refs__head { margin-bottom: 22px; }

  /* Prozess-Karten: kleinere Überschrift + flachere Boxen */
  .process__title { font-size: clamp(1.5rem, 6.5vw, 1.9rem); }
  .process__step { padding: 20px 22px; gap: 12px; }
  /* Weniger Abstand zwischen Intro-Text und den Prozess-Schritten */
  .process .section__head { margin-bottom: 20px; }

  /* Historie: weniger Abstand zwischen Intro und Timeline */
  .a2-historie__head { margin-bottom: 22px; }

  /* "Anfrage senden" so klein wie "Projekt in Planung?" */
  .a1-contact__cta-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}
