/* ============================================================
   Hochschulberatung — Premium Consulting Relaunch
   Three design variants switchable via Tweaks:
   - editorial  (serif, cream, terracotta)
   - modernist  (sans, linen, deep sage)
   - statement  (italic serif display, bone, burnt sienna)
   ============================================================ */

:root {
  /* shared geometry */
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  /* default = redaktion (editorial calm) */
  --bg: #F3EEE3;
  --bg-2: #ECE5D5;
  --ink: #002F52;
  --ink-2: #2C4151;
  --muted: #6B6354;
  --hairline: rgba(0, 47, 82, 0.13);
  --accent: #01ADDD;
  --accent-2: #96BB31;
  --accent-dark: #003D66;
  --accent-text: #0A6E8C;  /* darkened brand teal for cyan-style TEXT on light bg (WCAG AA) */
  --paper: #FBF7EC;

  --serif-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --serif-body:    "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans:          "Manrope", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --calibri:       "Calibri", "Carlito", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:          "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* default tokens — actual variant overrides below */
  --ff-display: var(--serif-display);
  --ff-body:    var(--calibri);
  --display-tracking: -0.012em;
  --display-weight: 500;
  --display-style: normal;

  --section-pad: clamp(64px, 8vw, 128px);
}

/* ---- VARIANT: REDAKTION (default) — Newsreader serif on warm paper,
   italic-forward, brand navy with cyan/lime as sparse punctuation ---- */
[data-variant="modernist"],
:root {
  --bg: #F3EEE3;           /* warm bone */
  --bg-2: #ECE5D5;
  --ink: #002F52;          /* brand navy */
  --ink-2: #2C4151;
  --muted: #6B6354;        /* warm grey */
  --hairline: rgba(0, 47, 82, 0.13);
  --accent: #01ADDD;       /* brand cyan */
  --accent-2: #96BB31;     /* brand lime */
  --accent-dark: #003D66;  /* brand navy */
  --accent-text: #0A6E8C;  /* cyan-style text on light bg */
  --paper: #FBF7EC;        /* warm white */

  --ff-display: var(--serif-display);
  --ff-body:    var(--calibri);
  --display-tracking: -0.012em;
  --display-weight: 500;
  --display-style: normal;
}

/* ---- VARIANT: EDITORIAL — Newsreader serif on brand palette ---- */
[data-variant="editorial"] {
  --bg: #F5F2EB;           /* warm ivory */
  --bg-2: #ECE6DA;
  --ink: #002F52;          /* keep brand navy */
  --ink-2: #2E4055;
  --muted: #6B6354;
  --hairline: rgba(0, 47, 82, 0.13);
  --accent: #01ADDD;
  --accent-2: #96BB31;
  --accent-dark: #003D66;
  --accent-text: #0A6E8C;
  --paper: #FBF8F1;

  --ff-display: var(--serif-display);
  --ff-body:    var(--sans);
  --display-tracking: -0.02em;
  --display-weight: 500;
  --display-style: normal;
}

/* ---- VARIANT: STATEMENT — Instrument Serif italic, bold navy + brand palette ---- */
[data-variant="statement"] {
  --bg: #FAFBFD;
  --bg-2: #EEF1F7;
  --ink: #003D66;          /* the brand navy */
  --ink-2: #2E4F6E;
  --muted: #5E6B7D;
  --hairline: rgba(0, 61, 102, 0.16);
  --accent: #01ADDD;
  --accent-2: #96BB31;
  --accent-dark: #003D66;
  --accent-text: #0A6E8C;
  --paper: #FFFFFF;

  --ff-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --ff-body:    "Albert Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --display-tracking: -0.015em;
  --display-weight: 400;
  --display-style: italic;
}

/* ============================================================
   Base
   ============================================================ */

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.wide {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   Typography
   ============================================================ */

.display {
  font-family: var(--ff-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-style: var(--display-style);
  line-height: 0.96;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

.display-xl { font-size: clamp(52px, 7.6vw, 140px); line-height: 0.94; letter-spacing: -0.03em; }
.display-l  { font-size: clamp(44px, 6.4vw, 96px); }
.display-m  { font-size: clamp(32px, 4vw, 64px); line-height: 1.02; }
.display-s  { font-size: clamp(24px, 2.6vw, 40px); line-height: 1.08; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

.lead {
  font-family: var(--ff-body);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 64ch;
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum" 1;
}

.num {
  font-family: var(--ff-display);
  font-variant-numeric: tabular-nums;
  font-weight: var(--display-weight);
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: var(--display-weight);
  font-style: var(--display-style);
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-2);   /* brand lime */
  display: inline-block;
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent-2) 22%, transparent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  cursor: pointer;
  background: none;
  border: 0;
  letter-spacing: 0.005em;
}

.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 2px;
  background: var(--accent);
}

/* ---- Responsive Navigation: Burger ab ≤ 1040px ---- */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
  border-bottom: 0 solid var(--hairline);
  background: color-mix(in oklab, var(--bg) 96%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
}
.nav-mobile.open {
  max-height: 85vh;
  border-bottom-width: 1px;
}
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 8px 0 24px;
  display: flex;
  flex-direction: column;
}
.nav-mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 16px 2px;
  min-height: 44px;
}
.nav-mobile-link.active { color: var(--accent-text); }
.nav-mobile-cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 1040px) {
  .nav-desktop { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: block; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.btn-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.btn-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-link:hover { color: var(--accent); }
.btn-link:hover::after { transform: translateX(4px); }

/* ============================================================
   Section primitives
   ============================================================ */

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-divider {
  border-top: 1px solid var(--hairline);
}

.section-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.section-label .ix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding: clamp(40px, 5vw, 72px) 0 clamp(56px, 7vw, 110px);
  position: relative;
}

/* Magazine masthead row */
.hero-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  margin-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 2.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-masthead .hm-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.hero-masthead .hm-right {
  color: var(--muted);
  text-align: right;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 22px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--muted);
  margin-left: 4px;
}
.hero-status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent-2) 26%, transparent);
}

/* Signature: portico of fine vertical rules */
.home-graphic--portikus { inset: 0; }
.home-graphic--portikus svg { width: 100%; height: 100%; }

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-meta .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--paper);
}
.hero-meta .chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent-2) 28%, transparent);
}

.hero-headline {
  margin: 0 0 clamp(36px, 5vw, 60px);
  font-weight: 600;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
}

[data-variant="modernist"] .hero-headline em,
:root .hero-headline em {
  font-style: italic;
  font-weight: 500;
  font-family: var(--ff-display);
  color: var(--ink);
}

/* Override the body :root default that the [data-variant="editorial"] rule should fix */
[data-variant="editorial"] .hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--ff-display);
  font-weight: 500;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}

.hero-subhead {
  font-family: var(--ff-display);
  font-style: var(--display-style, normal);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: var(--display-tracking, -0.01em);
  display: flex;
  flex-wrap: wrap;
  gap: 0.12em 0.4em;
  margin: 0 0 clamp(36px, 5vw, 60px);
  color: var(--ink);
}
.hero-subhead span { white-space: nowrap; }
.hero-subhead span:nth-child(2) { color: var(--accent); }
.hero-subhead span:nth-child(3) { color: var(--accent-2); }
.hero.has-graphic .hero-subhead { color: #fff; }

.hero-aside {
  background: var(--ink);
  color: #fff;
  padding: 36px 34px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
}
.hero-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 35px, rgba(255,255,255,0.05) 35px 36px);
  pointer-events: none;
}
.hero-aside::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent) 0 60%, var(--accent-2) 60% 100%);
}

.hero-aside p {
  margin: 0 0 20px;
  position: relative;
}
.hero-aside .mono { color: rgba(255,255,255,0.55) !important; }

.hero-credentials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.hero-credentials li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: rgba(255,255,255,0.9);
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-credentials li:first-child { border-top: 0; }
.hero-credentials li .num-s {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Services grid (Leistungen)
   ============================================================ */

.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.svc {
  grid-column: span 4;
  background: var(--bg);
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: default;
}
.svc:hover {
  background: var(--ink);
  color: #ffffff;
}
.svc:hover .svc-ix {
  color: rgba(255, 255, 255, 0.6);
}
.svc:hover .svc-bullets {
  color: #ffffff;
}
.svc:hover .svc-title { color: #ffffff; }
.svc:hover .svc-desc  { color: #ffffff; }

.svc-ix {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}
.svc-no {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(38px, 3.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.svc-tot {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.svc:hover .svc-no { color: #fff; }
.svc:hover .svc-tot { color: rgba(255, 255, 255, 0.55); }

.svc-title {
  font-family: var(--ff-display);
  font-weight: var(--display-weight);
  font-style: var(--display-style);
  letter-spacing: var(--display-tracking);
  font-size: clamp(26px, 2vw, 30px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
  flex-shrink: 0;
  min-height: 2.1em;
}

.svc-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  text-wrap: pretty;
  flex-shrink: 0;
}

.svc-bullets {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--muted);
}
.svc-bullets li::before {
  content: "—";
  margin-right: 8px;
  opacity: 0.5;
}

.svc.feature {
  grid-column: span 6;
}
.svc.feature + .svc {
  grid-column: span 6;
}

@media (max-width: 1100px) {
  .svc { grid-column: span 6; }
  .svc.feature { grid-column: span 6; }
}
@media (max-width: 700px) {
  .svc, .svc.feature { grid-column: span 12; }
}

/* ============================================================
   Stats / Trust strip
   ============================================================ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 0;
  overflow: hidden;
}

.stat {
  background: var(--ink);
  color: #fff;
  padding: 48px 30px 54px;
  position: relative;
  overflow: hidden;
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 31px, rgba(255,255,255,0.04) 31px 32px);
  pointer-events: none;
}
.stat .num-big {
  display: block;
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: 600;
  font-size: clamp(46px, 7vw, 116px);
  letter-spacing: -0.035em;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  max-width: 100%;
  overflow-wrap: break-word;
  font-variant-numeric: tabular-nums;
}
.stat .num-big sup {
  font-size: 0.4em;
  letter-spacing: 0;
  vertical-align: top;
  margin-left: 3px;
  color: var(--accent);   /* cyan */
}
.stat:nth-child(2n) .num-big sup { color: var(--accent-2); }  /* lime */
.stat .stat-label {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
  text-wrap: pretty;
  position: relative;
}

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

/* ============================================================
   Logo wall
   ============================================================ */

.logowall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  background: var(--paper);
}
.logowall .logo {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--ink-2);
  font-family: var(--ff-body);
  font-size: 12px;
  text-align: center;
  line-height: 1.25;
  transition: background 0.2s ease;
  position: relative;
  background: #fff;
}
.logowall .logo:hover {
  background: #fff;
}
.logowall .logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.95);
  opacity: 0.78;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.logowall .logo:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
}

@media (max-width: 1100px) {
  .logowall { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .logowall { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   Portrait section (About Magnus)
   ============================================================ */

.portrait-section {
  background: var(--bg);
  position: relative;
}
.portrait-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--hairline);
}

.portrait-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}

.portrait-figure {
  margin: 0;
  position: relative;
}

.portrait-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--bg-2);
  filter: saturate(0.94) contrast(1.02);
  display: block;
}

.portrait-figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.portrait-figure figcaption span:first-child {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--ff-display);
  font-style: var(--display-style);
  letter-spacing: var(--display-tracking);
  font-size: 16px;
}

.portrait-body {
  padding-top: 8px;
}

.portrait-body h2 {
  text-wrap: balance;
  line-height: 0.98;
}

.portrait-roles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.portrait-roles li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.portrait-roles .k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.portrait-roles strong {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 20px;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.portrait-roles p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* --- Drei Aufgaben = drei Logofarben (Cyan · Lime · Navy) --- */
.portrait-heading .ph-role { position: relative; }
.portrait-heading .ph-role::after {
  content: ".";
  font-style: normal;
}
.portrait-heading .ph-1 { color: var(--accent-text); }
.portrait-heading .ph-2 { color: var(--green-text); }
.portrait-heading .ph-3 { color: var(--ink); }

.portrait-roles li {
  position: relative;
  padding-left: 18px;
  transition: background 0.2s ease;
}
.portrait-roles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 2px;
}
.portrait-roles li.is-1::before { background: var(--accent); }
.portrait-roles li.is-2::before { background: var(--accent-2); }
.portrait-roles li.is-3::before { background: var(--ink); }
.portrait-roles li.is-1 .k { color: var(--accent-text); }
.portrait-roles li.is-2 .k { color: var(--green-text); }
.portrait-roles li.is-3 .k { color: var(--ink); }
.portrait-roles strong::after {
  content: ".";
}
.portrait-roles li.is-1 strong { color: var(--accent-text); }
.portrait-roles li.is-2 strong { color: var(--green-text); }
.portrait-roles li.is-3 strong { color: var(--ink); }
.portrait-roles li:hover { background: color-mix(in oklab, var(--paper) 70%, transparent); }

@media (max-width: 900px) {
  .portrait-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Cases / Testimonials
   ============================================================ */

.cases {
  display: flex;
  flex-direction: column;
}
.case {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(28px, 4vw, 80px);
  padding: clamp(48px, 5vw, 80px) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.case:last-child { border-bottom: 1px solid var(--hairline); }

.case-meta { position: sticky; top: 96px; }
.case-meta .case-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-md);
  margin-bottom: 22px;
  background: var(--bg-2);
  filter: saturate(0.92);
}
.case-meta .case-img.logo {
  object-fit: contain;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  filter: none;
}
.case-meta .ix {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.case-meta .inst {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.case-meta .role {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.4;
}
.case-meta .scope {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-meta .scope span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--paper);
}

.case-body blockquote {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.case-body blockquote::before {
  content: "„";
  color: var(--accent);
  margin-right: 2px;
}
.case-body blockquote::after {
  content: "“";
  color: var(--accent);
  margin-left: 2px;
}

.case-body .author {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-body .author .sep { color: var(--hairline); }

@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; }
  .case-meta { position: static; }
}

/* ============================================================
   Whitepaper CTA
   ============================================================ */

.cta-whitepaper {
  background: var(--ink);
  color: var(--bg);
  border-radius: 0;
  padding: clamp(48px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-whitepaper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in oklab, var(--accent) 45%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 8% 92%, color-mix(in oklab, var(--accent-2) 35%, transparent) 0%, transparent 40%);
  pointer-events: none;
}

.cta-whitepaper h3 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: var(--display-tracking);
  margin: 0 0 20px;
  color: var(--bg);
}
.cta-whitepaper .lead { color: rgba(255, 255, 255, 0.75); margin-bottom: 28px; }

.cta-whitepaper .pages {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-form {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.cta-form input {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--bg);
  font: 14px/1.4 var(--sans);
  padding: 14px 16px;
  border-radius: 8px;
  outline: none;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.cta-form input:focus { border-color: var(--accent); }
.cta-form .privacy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.45;
  margin-top: 2px;
}
.cta-form button {
  background: var(--accent);
  color: white;
  border: 0;
  padding: 14px 18px;
  border-radius: 8px;
  font: 500 14px/1 var(--sans);
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: 0.005em;
}
.cta-form button:hover { background: var(--accent-2); }

@media (max-width: 900px) {
  .cta-whitepaper { grid-template-columns: 1fr; }
}

/* ============================================================
   Contact section
   ============================================================ */

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form .field label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font: 15px/1.45 var(--sans);
  padding: 12px 14px;
  border-radius: 8px;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--ink); }

.contact-side .v-card {
  border: 1px solid var(--hairline);
  padding: 32px;
  background: var(--paper);
  border-radius: var(--r-lg);
}
.contact-side .portrait-ph {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-2);
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  filter: saturate(0.95);
}

@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */

.foot {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(56px, 6vw, 88px) 0 36px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 8%, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 40%);
  pointer-events: none;
}
.foot > .wide { position: relative; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot h2 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 18px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot ul a, .foot ul li { color: rgba(255, 255, 255, 0.78); font-size: 14px; font-family: var(--sans); cursor: pointer; }
.foot ul a:hover { color: var(--accent-2); }

.foot-mark {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: var(--display-tracking);
  color: var(--bg);
  margin: 0 0 20px;
  display: block;
}

.foot-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

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

/* ============================================================
   Marquee (logo strip)
   ============================================================ */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 80px;
  align-items: center;
  animation: marquee 60s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee-track .item {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 80px;
}
.marquee-track .item::after {
  content: "✦";
  color: var(--accent);
  font-size: 14px;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Approach (Leistungen page) — process timeline
   ============================================================ */

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.approach .step {
  background: var(--bg);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  transition: background 0.22s ease;
}
.approach .step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-2);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.28s ease;
}
.approach .step:hover {
  background: var(--paper);
}
.approach .step:hover::before {
  transform: scaleY(1);
}
.approach .step:hover .ix {
  color: var(--green-text);
}
.approach .step .ix {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.approach .step h4 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: var(--display-tracking);
}
.approach .step p {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

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

/* ============================================================
   Publications list (Leistungen page)
   ============================================================ */

.pubs {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.pub {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
  transition: background 0.15s ease;
}
.pub:hover { background: color-mix(in oklab, var(--paper) 60%, transparent); }
.pub-y { color: var(--accent); font-size: 12px; letter-spacing: 0.04em; }
.pub-t {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
}
.pub-d {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 700px) {
  .pub { grid-template-columns: 60px 1fr; }
  .pub-d { grid-column: 2; font-size: 12px; }
}

/* ============================================================
   Page header (Leistungen)
   ============================================================ */

.page-head {
  padding: clamp(80px, 10vw, 160px) 0 clamp(40px, 5vw, 80px);
}
.page-head .crumb {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.page-head .crumb span { color: var(--ink-2); }

/* ============================================================
   Service detail rows (Leistungen)
   ============================================================ */

.svc-row {
  display: grid;
  grid-template-columns: 0.5fr 1.2fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  padding: clamp(48px, 5vw, 88px) 0;
  border-top: 1px solid var(--hairline);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--hairline); }

.svc-row .ix {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.svc-row h3 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.05;
  letter-spacing: var(--display-tracking);
  margin: 0 0 24px;
}

.svc-row p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 16px;
  text-wrap: pretty;
}

.svc-row .deliverables {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.svc-row .deliverables li {
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
}
.svc-row .deliverables li:first-child { border-top: 0; padding-top: 0; }
.svc-row .deliverables li .k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .svc-row { grid-template-columns: 1fr; }
}

/* ============================================================
   Porträt page
   ============================================================ */

.portraet-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  margin-top: 32px;
  align-items: end;
}
.portraet-hero-photo {
  margin: 0;
}
.portraet-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-md);
  background: var(--bg-2);
  display: block;
}
.portraet-hero-text .display-xl {
  font-size: clamp(36px, 5vw, 78px);
  line-height: 1;
}
.portraet-hero-meta {
  display: flex;
  gap: clamp(20px, 3vw, 56px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
  flex-wrap: wrap;
}
.portraet-hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.portraet-hero-meta .num-big {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.portraet-hero-meta sup {
  font-size: 0.5em;
  color: var(--accent-2);
  vertical-align: top;
}

@media (max-width: 900px) {
  .portraet-hero { grid-template-columns: 1fr; }
}

/* Bio grid (also used for Verbundprojekte) */
.bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}
.bio-aside { position: sticky; top: 96px; }
@media (max-width: 900px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-aside { position: static; }
}

/* Competencies grid */
.competencies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.comp-card {
  background: var(--bg);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  min-height: 240px;
  position: relative;
  transition: background 0.22s ease;
}
.comp-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.comp-card:hover {
  background: var(--paper);
}
.comp-card:hover::after {
  transform: scaleX(1);
}
.comp-card:hover .comp-k {
  color: var(--green-text);
}
.comp-k {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.comp-t {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 24px;
  margin: 0 0 14px;
  line-height: 1.1;
}
.comp-d {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 1100px) {
  .competencies { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .competencies { grid-template-columns: 1fr; }
}

/* Vita */
.vita {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.vita-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: baseline;
}
.vita-y {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.vita-t {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 26px;
  margin: 0 0 6px;
  line-height: 1.1;
}
.vita-d {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 64ch;
}
@media (max-width: 700px) {
  .vita-row { grid-template-columns: 1fr; gap: 8px; }
}

/* Project list */
.projects-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.projects-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink-2);
  display: flex;
  align-items: baseline;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 24px;
}
.kicker::before {
  content: "";
  width: 30px;
  height: 9px;
  background: linear-gradient(90deg,
    var(--ink) 0 33.33%,
    var(--accent) 33.33% 66.66%,
    var(--accent-2) 66.66% 100%);
}

.page-fade-in {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  .page-fade-in {
    animation: fadeUp 0.5s ease both;
  }
}
@keyframes fadeUp {
  from { transform: translateY(8px); }
  to   { transform: translateY(0); }
}

/* ============================================================
   Case Studies page
   ============================================================ */

.cs-hero {
  position: relative;
  min-height: clamp(420px, 56vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: clamp(40px, 5vw, 80px);
}

/* ============================================================
   Home — subtle graphic header treatment
   No photography; just a quiet decorative layer that lets the
   headline and lead breathe.
   ============================================================ */

.hero.has-graphic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero.has-graphic > .wide { position: relative; z-index: 2; }

/* ---- Home hero recoloured as a bold navy cover ---- */
.hero.has-graphic .hero-masthead {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}
.hero.has-graphic .hero-masthead .hm-right { color: rgba(255, 255, 255, 0.6); }
.hero.has-graphic .hero-kicker { color: var(--accent-2); }      /* lime */
.hero.has-graphic .hero-headline { color: #fff; }
.hero.has-graphic .hero-headline em { color: var(--accent); }   /* cyan */
.hero.has-graphic .lead { color: rgba(255, 255, 255, 0.85); }
.hero.has-graphic .lead strong { color: #fff; }
.hero.has-graphic .hero-status { color: rgba(255, 255, 255, 0.7); }

.hero.has-graphic .btn {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.hero.has-graphic .btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: var(--ink);
}
.hero.has-graphic .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero.has-graphic .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Kurzprofil panel becomes a strong cyan block (third colour) */
.hero.has-graphic .hero-aside {
  background: var(--accent);   /* cyan */
  color: var(--ink);
}
.hero.has-graphic .hero-aside::before {
  background: repeating-linear-gradient(90deg, transparent 0 35px, rgba(0, 47, 82, 0.07) 35px 36px);
}
.hero.has-graphic .hero-aside::after {
  background: linear-gradient(90deg, var(--ink) 0 55%, var(--accent-2) 55% 100%);
}
.hero.has-graphic .hero-aside .mono { color: rgba(0, 47, 82, 0.62) !important; }
.hero.has-graphic .hero-credentials li {
  color: var(--ink);
  border-top-color: rgba(0, 47, 82, 0.18);
}
.hero.has-graphic .hero-credentials li .num-s {
  color: var(--ink);
  font-weight: 600;
}

.home-graphic {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.home-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Akzent — diagonal bars in the top-right corner */
.home-graphic--akzent {
  /* SVG fills the box */
}

/* Numerisch — large hairline chapter mark */
.home-graphic--numerisch text {
  font-feature-settings: "tnum" 1;
}

/* Raster — fine grid that fades into the bg */
.home-graphic--raster {
  inset: 0;
}
.home-graphic-accent {
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(120px, 18vw, 220px);
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 55%, var(--accent-2) 55%, var(--accent-2) 100%);
}

/* Subtle bottom hairline + accent bar — unifies all variants
   and echoes the colored bar from .cs-hero. */
.hero.has-graphic::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent) 0 18%, var(--accent-2) 18% 32%, rgba(255,255,255,0.18) 32% 100%);
  z-index: 1;
}

/* ============================================================
   Shared header-banner treatment for Home + Leistungen.
   Re-uses the same visual language as .cs-hero.
   ============================================================ */

.hero.has-banner,
.page-head.has-banner {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}
.hero.has-banner { padding-top: clamp(96px, 11vw, 160px); padding-bottom: clamp(64px, 8vw, 120px); }
.page-head.has-banner { padding-top: clamp(112px, 12vw, 180px); padding-bottom: clamp(72px, 8vw, 120px); }

.hero-banner-img,
.page-head-banner-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-banner-img img,
.page-head-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}
.page-head-banner-img img { opacity: 0.5; }
.hero-banner-img::after,
.page-head-banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 47, 82, 0.20) 0%, rgba(0, 47, 82, 0.55) 70%, rgba(0, 47, 82, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 47, 82, 0.62) 0%, rgba(0, 47, 82, 0.10) 65%);
}

/* Decorative element from the old site: an off-white horizontal bar
   that anchors the headline and ties the composition to the rest
   of the page. */
.hero.has-banner::after,
.page-head.has-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 18%, var(--accent-2) 18%, var(--accent-2) 32%, transparent 32%);
  z-index: 1;
}

/* Hero recolouring when banner is on */
.hero.has-banner .hero-headline,
.hero.has-banner .hero-headline em { color: #fff; }
.hero.has-banner .hero-headline em { color: var(--accent); }
[data-variant="modernist"] .hero.has-banner .hero-headline em { color: var(--accent); }
.hero.has-banner .hero-meta .chip {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero.has-banner .hero-meta .chip .dot { box-shadow: 0 0 0 3px rgba(150, 187, 49, 0.4); }
.hero.has-banner .lead,
.hero.has-banner .lead strong { color: rgba(255, 255, 255, 0.92); }
.hero.has-banner .lead strong { color: #fff; }
.hero.has-banner .hero-aside { border-top-color: rgba(255, 255, 255, 0.22); }
.hero.has-banner .hero-aside p { color: rgba(255, 255, 255, 0.7) !important; }
.hero.has-banner .hero-credentials li { color: rgba(255, 255, 255, 0.85); }
.hero.has-banner .hero-credentials li .num-s { color: rgba(255, 255, 255, 0.5); }
.hero.has-banner .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.hero.has-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Page-head recolouring when banner is on */
.page-head.has-banner .crumb { color: rgba(255, 255, 255, 0.7); }
.page-head.has-banner .crumb a { color: rgba(255, 255, 255, 0.9); }
.page-head.has-banner .crumb span { color: #fff; }
.page-head.has-banner h1 { color: #fff; }
.page-head.has-banner h1 em { color: var(--accent); }
.page-head.has-banner .lead { color: rgba(255, 255, 255, 0.92); }
.page-head.has-banner .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.page-head.has-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}
.cs-hero-img {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cs-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}
.cs-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 47, 82, 0.05) 0%, rgba(0, 47, 82, 0.55) 60%, rgba(0, 47, 82, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 47, 82, 0.45) 0%, rgba(0, 47, 82, 0.0) 60%);
}
.cs-hero-inner {
  width: 100%;
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(40px, 5vw, 72px);
  color: #fff;
  position: relative;
}
.cs-hero-inner .crumb {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}
.cs-hero-inner .crumb a { color: rgba(255, 255, 255, 0.9); }
.cs-hero-inner .crumb span { color: #fff; }
.cs-hero-inner .kicker {
  color: rgba(255, 255, 255, 0.78);
}
.cs-hero-inner .kicker::before {
  background: var(--accent);
}
.cs-hero-title {
  color: #fff;
  margin: 0 0 28px;
  max-width: 16ch;
}
.cs-hero-title em {
  font-style: italic;
  font-family: var(--ff-display);
}
[data-variant="modernist"] .cs-hero-title em {
  font-style: normal;
  font-weight: 400;
}
.cs-hero-lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
}

/* ---- Featured case ---- */

.cs-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(40px, 5vw, 72px) 0;
}
.cs-featured-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cs-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.cs-featured.is-logo .cs-featured-img {
  background: #fff;
}
.cs-featured.is-logo .cs-featured-img img {
  object-fit: contain;
  padding: 12% 16%;
  filter: none;
}
.cs-featured-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--paper);
  color: var(--ink-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--hairline);
}
.cs-featured-body { padding: 12px 0; }
.cs-featured-title {
  margin: 12px 0 18px;
  line-height: 1;
}
.cs-featured-desc {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.4vw, 20px);
}

@media (max-width: 900px) {
  .cs-featured { grid-template-columns: 1fr; }
}

/* ---- Card grid ---- */

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.cs-card {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr;
  transition: background 0.2s ease;
}
.cs-card:hover { background: var(--paper); }

.cs-card-img {
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.cs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform 0.5s ease;
}
.cs-card:hover .cs-card-img img { transform: scale(1.03); }

.cs-card.is-logo .cs-card-img {
  background: #fff;
}
/* Wortmarke-Fallback für Cases ohne Logo-Datei: Name in der Display-Serife,
   gleiche weiße Fläche und Proportion wie die Logo-Karten. */
.cs-card.is-wordmark .cs-card-img {
  background: #fff;
  display: grid;
  place-items: center;
  padding: 8% 12%;
}
.cs-wordmark {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: 500;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: center;
  text-wrap: balance;
}
.cs-card.is-logo .cs-card-img img {
  object-fit: contain;
  padding: 14% 22%;
  filter: grayscale(20%);
}
.cs-card.is-logo:hover .cs-card-img img {
  transform: none;
  filter: grayscale(0%);
}

.cs-card-body {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cs-ix {
  color: var(--accent);
  letter-spacing: 0.05em;
}
.cs-year {
  color: var(--muted);
  letter-spacing: 0.05em;
}
.cs-role {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0;
}
.cs-inst {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.cs-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
.cs-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.cs-scope span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--paper);
  letter-spacing: 0.01em;
}
.cs-link { margin-top: 8px; align-self: flex-start; }

/* "More on request" tile */
.cs-card-more {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cs-card-more::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 12%, color-mix(in oklab, var(--accent) 35%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 8% 92%, color-mix(in oklab, var(--accent-2) 24%, transparent) 0%, transparent 45%);
  pointer-events: none;
}
.cs-card-more .cs-card-body {
  padding: 48px 36px 44px;
  min-height: 100%;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.cs-card-more .cs-ix { color: rgba(255, 255, 255, 0.55); }
.cs-card-more .cs-inst {
  color: var(--bg);
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1;
  margin: 12px 0 18px;
}
.cs-card-more .cs-inst em {
  color: var(--accent);
  font-style: italic;
  font-family: var(--ff-display);
}
[data-variant="modernist"] .cs-card-more .cs-inst em {
  font-style: normal;
  font-weight: 400;
}
.cs-card-more .cs-desc {
  color: rgba(255, 255, 255, 0.74);
  max-width: 38ch;
}
.cs-card-more .cs-link {
  color: var(--accent-2);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
}
.cs-card-more .cs-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.cs-card-more .cs-link:hover { color: #fff; }
.cs-card-more .cs-link:hover::after { transform: translateX(4px); }
/* Die generische .cs-card:hover-Regel hellt auf --paper auf — auf der
   dunklen "Mehr auf Anfrage"-Kachel würde das den Text auswaschen.
   Stattdessen ein dezent helleres Navy als Hover. */
.cs-card-more:hover { background: var(--accent-dark); }

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

/* ============================================================
   Case detail page (e.g. HU Berlin)
   ============================================================ */

.case-detail .cs-hero {
  min-height: clamp(440px, 60vh, 680px);
}

.case-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.case-aside { position: sticky; top: 96px; }
.case-aside-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px 28px 14px;
}
.case-aside-logo {
  width: 100%;
  max-width: 220px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
  filter: none;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 10px 14px;
}
.case-aside-dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.case-aside-dl > div {
  padding: 16px 0;
  border-top: 1px solid var(--hairline);
}
.case-aside-dl > div:first-child { border-top: 0; padding-top: 4px; }
.case-aside-dl dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.case-aside-dl dd {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.45;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.case-tags span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--bg);
  letter-spacing: 0.01em;
}
.case-body .kicker { margin-bottom: 16px; }

@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-aside { position: static; }
}

/* ---- Milestones grid ---- */

.case-milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.case-ms {
  background: var(--bg);
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: background 0.2s ease;
}
.case-ms:hover { background: var(--paper); }
.case-ms-k {
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.case-ms h3 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 22px;
  margin: 0 0 6px;
  line-height: 1.1;
  color: var(--ink);
}
.case-ms p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

@media (max-width: 1000px) { .case-milestones { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .case-milestones { grid-template-columns: 1fr; } }

/* ---- Big pull quote / testimonial ---- */

.case-quote-section {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.case-quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 14%, color-mix(in oklab, var(--accent) 30%, transparent) 0%, transparent 48%),
    radial-gradient(circle at 8% 88%, color-mix(in oklab, var(--accent-2) 18%, transparent) 0%, transparent 45%);
  pointer-events: none;
}
.case-quote-section .kicker {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  margin-bottom: 32px;
}
.case-quote-section .kicker::before { background: var(--accent); }
.case-quote {
  margin: 0;
  position: relative;
  max-width: 1100px;
}
.case-quote blockquote {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.28;
  color: #fff;
  margin: 0 0 40px;
  text-wrap: pretty;
  position: relative;
  padding-left: clamp(28px, 4vw, 56px);
}
.case-quote blockquote::before {
  content: "\201E";
  position: absolute;
  left: -8px;
  top: -0.35em;
  font-size: clamp(80px, 8vw, 140px);
  color: var(--accent);
  font-family: var(--ff-display);
  line-height: 1;
}
.case-quote figcaption {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 600px;
}
.case-quote figcaption img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}
.case-quote .qauthor {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  font-size: 20px;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: var(--display-tracking);
}
.case-quote .qrole {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ---- Mock caption ---- */

.mock-caption {
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  max-width: 60ch;
  line-height: 1.55;
}

/* ============================================================
   HU Berlin site mockup
   ============================================================ */

.hu-mock-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow:
    0 30px 80px -30px rgba(0, 47, 82, 0.35),
    0 8px 24px -8px rgba(0, 47, 82, 0.12);
  background: #fff;
  font-family: "Source Sans Pro", "Source Sans 3", -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  color: #1d1d1b;
  position: relative;
  isolation: isolate;
}
.hu-mock-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 38px;
  background: #eef0f4;
  border-bottom: 1px solid #d6dae1;
  padding: 0 14px;
}
.hu-mock-lights {
  display: flex;
  gap: 7px;
  width: 60px;
}
.hu-mock-lights span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}
.hu-mock-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d6dae1;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  color: #4b5563;
  max-width: 520px;
  margin: 0 auto;
}
.hu-mock-shot {
  background:
    linear-gradient(90deg,
      rgba(0, 47, 82, 0.04) 0%,
      rgba(0, 47, 82, 0.09) 50%,
      rgba(0, 47, 82, 0.04) 100%);
  overflow: hidden;
  position: relative;
  min-height: clamp(180px, 50vw, 320px);
}
/* Hochformat-Screenshot: niemals stauchen — natürliches Seitenverhältnis
   beibehalten (max-width:100% + height:auto), keine erzwungene Mindesthöhe
   auf dem Bild selbst. */
.hu-mock-shot img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* HU navigation */
.hu-nav {
  background: #c0042b;
  color: #fff;
}
.hu-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  font-size: 14px;
}
.hu-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.hu-nav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 18px;
}
.hu-nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
}
.hu-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}
.hu-nav-links span { cursor: default; }
.hu-nav-divider { opacity: 0.4; }
.hu-nav-dim { opacity: 0.6; }
.hu-nav-search svg { display: block; }

/* HU hero */
.hu-hero {
  position: relative;
  height: 360px;
  background: #1d2533;
  color: #fff;
  overflow: hidden;
}
.hu-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.hu-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.hu-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
  max-width: 640px;
}
.hu-hero-siegel {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 4px;
}
.hu-hero h1 {
  font-family: Georgia, "Source Serif Pro", serif;
  font-size: 42px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hu-hero p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.9);
}
.hu-hero-ctas {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
}
.hu-hero-ctas a { color: #fff; }
.hu-hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hu-hero-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}
.hu-hero-dots .on { background: #fff; }

/* HU sections */
.hu-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 28px;
}
.hu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hu-section-head h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  color: #1d1d1b;
}
.hu-more {
  color: #c0042b;
  font-size: 14px;
  font-weight: 600;
}

/* News grid */
.hu-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hu-news-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hu-news-img {
  aspect-ratio: 4 / 3;
  background: #e8eaef;
  overflow: hidden;
  border-radius: 2px;
}
.hu-news-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hu-news-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #6b6b6b;
  margin-top: 2px;
}
.hu-news-cat {
  color: #c0042b;
  font-weight: 600;
}
.hu-news-card h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
  color: #1d1d1b;
  font-weight: 600;
}

/* Feature tiles */
.hu-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hu-feature {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  border: 1px solid #e3e6ec;
  background: #fafafa;
}
.hu-feature-img {
  background-color: #e8eaef;
  background-size: cover !important;
  background-position: center !important;
  min-height: 140px;
}
.hu-feature-body {
  padding: 16px 18px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hu-feature-body h3 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #1d1d1b;
}
.hu-feature-body p {
  font-size: 13px;
  line-height: 1.4;
  color: #4b5563;
  margin: 0;
}
.hu-feature-body a {
  color: #c0042b;
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* HU footer strip */
.hu-foot {
  border-top: 1px solid #e3e6ec;
  padding: 18px 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b6b6b;
}
.hu-foot-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .hu-nav-links { display: none; }
  .hu-news-grid { grid-template-columns: repeat(2, 1fr); }
  .hu-features { grid-template-columns: 1fr; }
  .hu-feature { grid-template-columns: 1fr; }
  .hu-feature-img { min-height: 160px; }
  .hu-feature-body { padding: 16px; }
  .hu-hero h1 { font-size: 32px; }
}

/* Selection */
::selection {
  background: var(--accent);
  color: white;
}

/* ============================================================
   Ergebnis-Zeile (Home-Cases & Case-Studies)
   ============================================================ */
.case-result {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
}
.case-result-k {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 3px 8px;
  border: 1px solid color-mix(in oklab, var(--accent) 40%, var(--hairline));
  border-radius: 999px;
  white-space: nowrap;
}
.case-result-v {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: pretty;
}

.cs-result {
  margin: 4px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.cs-result-k {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  padding: 2px 8px;
  border: 1px solid color-mix(in oklab, var(--accent) 38%, var(--hairline));
  border-radius: 999px;
  white-space: nowrap;
}
.cs-result-v {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: pretty;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  gap: 16px;
  align-items: baseline;
  padding: 26px 4px 26px 0;
  color: var(--ink);
}
.faq-ix {
  color: var(--accent);
  font-size: 12px;
  padding-top: 4px;
}
.faq-q-text {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.2;
  text-wrap: pretty;
}
.faq-toggle {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
  justify-self: end;
  transition: color 0.2s ease;
}
.faq-q:hover .faq-q-text { color: var(--accent-dark); }
.faq-q:hover .faq-toggle { color: var(--accent); }
.faq-item.open .faq-toggle { color: var(--accent); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  padding-left: 60px;
  max-width: 64ch;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
  opacity: 0;
  transition: opacity 0.3s ease, padding-bottom 0.3s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a > p {
  opacity: 1;
  padding-bottom: 28px;
}

.faq-aside {
  position: sticky;
  top: 96px;
  border: 1px solid var(--hairline);
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 32px 30px 34px;
}
.faq-aside-lead {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 21px;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .faq-q { grid-template-columns: 32px 1fr 24px; gap: 12px; }
  .faq-a > p { padding-left: 44px; }
}

/* ============================================================
   Reduced-motion: Marquee anhalten, Fokus auf Inhalt
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Bild-Fallback: bricht nie als kaputtes Icon — zeigt einen ruhigen
   getönten Platzhalter, falls ein externes Bild ausfällt. */
img.img-fallback {
  background:
    repeating-linear-gradient(135deg,
      var(--bg-2) 0, var(--bg-2) 10px,
      color-mix(in oklab, var(--bg-2) 80%, var(--ink) 4%) 10px,
      color-mix(in oklab, var(--bg-2) 80%, var(--ink) 4%) 20px) !important;
  object-fit: contain !important;
}

/* ============================================================
   Publikationen-Seite
   ============================================================ */
.pub-featured {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(40px, 5vw, 72px) 0;
}
.pub-featured-cover {
  background: #fff;
  border-radius: var(--r-md);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
}
.pub-featured-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  box-shadow: 0 24px 48px -20px rgba(0, 47, 82, 0.4), 0 6px 14px -8px rgba(0, 47, 82, 0.3);
  border-radius: 2px;
}
.pub-featured-title { margin: 14px 0 18px; line-height: 1.02; }
.pub-featured-desc { margin: 0 0 28px; font-size: clamp(17px, 1.4vw, 20px); }

.pub-card-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.pub-year { color: var(--accent); font-size: 12px; letter-spacing: 0.04em; }
.pub-dot { color: var(--hairline); }
.pub-type {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.pub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pub-card {
  background: var(--bg);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.4vw, 36px);
  align-items: start;
  transition: background 0.2s ease;
}
.pub-card:hover { background: var(--paper); }
.pub-cover {
  background: #fff;
  border-radius: var(--r-sm);
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.pub-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  box-shadow: 0 14px 28px -14px rgba(0, 47, 82, 0.42), 0 4px 10px -6px rgba(0, 47, 82, 0.3);
  border-radius: 1px;
}
.pub-card-body { padding-top: 4px; min-width: 0; }
.pub-title {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.12;
  margin: 12px 0 12px;
  color: var(--ink);
  text-wrap: pretty;
}
.pub-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.pub-stat {
  display: inline-block;
  font-size: 11px;
  color: var(--accent-dark);
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border: 1px solid color-mix(in oklab, var(--accent) 35%, var(--hairline));
  border-radius: 999px;
  margin-bottom: 18px;
}
.pub-card-foot { margin-top: 4px; }
.pub-card-foot .btn { padding: 10px 18px; font-size: 13px; }

@media (max-width: 980px) {
  .pub-featured { grid-template-columns: 1fr; }
  .pub-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pub-card { grid-template-columns: 1fr; }
  .pub-cover { width: 172px; aspect-ratio: 3 / 4; }
}

/* ============================================================
   WCAG 2.2 — Barrierefreiheit
   ============================================================ */

/* --- 1.4.3 Kontrast: cyan-artiger TEXT auf hellem Grund nutzt das
   abgedunkelte Marken-Teal (--accent-text, >= 4.5:1). Cyan (--accent)
   bleibt für Balken, Punkte und Text auf dunklem Grund erhalten. --- */
.portrait-roles .k,
.approach .step .ix,
.pub-y,
.svc-row .ix,
.comp-k,
.vita-y,
.cs-ix,
.case-ms-k,
.faq-ix,
.pub-year {
  color: var(--accent-text);
}
/* dekorative/große Akzent-Glyphen & Display-em auf hellem Grund */
.hero-headline em,
.case-body blockquote::before,
.case-body blockquote::after,
.case-quote blockquote::before,
.cs-card-more .cs-inst em,
.marquee-track .item::after {
  color: var(--accent-text);
}
/* Hover-/aktive Textzustände auf hellem Grund */
a:hover { color: var(--accent-text); }
.btn-link:hover { color: var(--accent-text); }
.faq-q:hover .faq-toggle,
.faq-item.open .faq-toggle { color: var(--accent-text); }
/* Primär-Button im Hover: weiße Schrift braucht dunkleren Grund (>=4.5:1) */
.btn:hover { background: var(--accent-text); border-color: var(--accent-text); color: #fff; }

/* --- 2.4.7 / 2.4.11 Sichtbarer Fokus: deutlicher, kontraststarker
   Fokusring (mind. 3:1, 3px Stärke + Offset). --- */
:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
  border-radius: 3px;
}
/* heller Ring auf dunklen Flächen */
.foot :focus-visible,
.hero.has-graphic :focus-visible,
.hero.has-banner :focus-visible,
.cs-hero :focus-visible,
.cs-hero-inner :focus-visible,
.cta-whitepaper :focus-visible,
.page-stage :focus-visible,
.hero-aside :focus-visible {
  outline-color: #ffffff;
}

/* --- 2.4.7 Formularfelder: sichtbarer Fokusring. Die Feld-Basisregeln
   setzen outline:none mit höherer Spezifität als die globale
   :focus-visible-Regel — daher hier explizit wiederherstellen. --- */
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
  border-color: var(--ink);
}
.cta-form input:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  border-color: var(--accent);
}
/* Markenkonforme, gut sichtbare Checkboxen (Datenschutz-Einwilligung).
   Ersetzt den fehlerhaften Inline-width-Wert; 22px Kästchen in 44px-Treffer. */
.cta-form .privacy input[type="checkbox"],
.contact-form .privacy input[type="checkbox"],
.privacy input[type="checkbox"] {
  appearance: auto;
  width: 22px !important;
  height: 22px;
  min-width: 22px;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--accent-dark);
  cursor: pointer;
}
.cta-form .privacy,
.contact-form .privacy { align-items: flex-start; }
.cta-form .privacy input[type="checkbox"] { accent-color: var(--accent); }

/* --- 2.4.11 Focus Not Obscured: Sticky-Header darf fokussierte
   Elemente beim Tabben nicht verdecken. --- */
html { scroll-padding-top: 96px; }

/* --- 2.5.8 Zielgröße (min. 24×24 CSS-px) für eigenständige Links/Buttons --- */
.btn-link {
  min-height: 24px;
}
.foot ul a,
.foot ul li,
.foot-legal a,
.contact-side .v-card a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
.nav-link {
  min-height: 24px;
}

/* --- Bewegung reduzieren: respektiert vorhandene reduced-motion-Regeln,
   ergänzt um sanftes Abschalten dekorativer Übergänge --- */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
}

/* --- 2.4.1 Skip-Link: erste fokussierbare Stelle, springt zum Inhalt --- */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 4px;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.16s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid #fff;
  outline-offset: 2px;
}
main:focus { outline: none; }

/* --- 2.1.1 Footer-Navigation als echte, tastaturbedienbare Buttons --- */
.foot ul button.foot-navlink {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.foot ul button.foot-navlink:hover { color: var(--accent-2); }

/* ============================================================
   D1/D2 — Probleme & Lösungen
   ============================================================ */
.problems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 56px) clamp(40px, 5vw, 96px);
  margin-top: clamp(32px, 4vw, 56px);
}
.problem {
  border-top: 2px solid var(--ink);
  padding: 22px 18px 24px;
  position: relative;
  transition: background 0.22s ease;
}
.problem::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 2px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.problem:hover {
  background: var(--paper);
}
.problem:hover::after {
  transform: scaleX(1);
}
.problem:hover .problem-ix {
  color: var(--green-text);
}
.problem-ix {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.problem-q {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.problem-t {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.problem-d {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 760px) {
  .problems { grid-template-columns: 1fr; }
}

/* ============================================================
   D4 — Formular-Erfolgsmeldung
   ============================================================ */
.form-success {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  align-self: start;
}
.form-success-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
}
.form-success h4 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 24px;
  margin: 4px 0 0;
  color: inherit;
}
.form-success p {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  max-width: 46ch;
}
/* helle Variante auf der dunklen Whitepaper-Fläche */
.cta-whitepaper .form-success { color: #fff; }
.cta-whitepaper .form-success p { color: rgba(255,255,255,0.8); }
.cta-whitepaper .form-success a { color: #fff; text-decoration: underline; }

/* ============================================================
   D3 — Rechtstexte (Impressum / Datenschutz)
   ============================================================ */
.legal-doc {
  max-width: 70ch;
}
.legal-doc .legal-note {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}
.legal-doc h2 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--ink);
  margin: 36px 0 12px;
}
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc p {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.legal-doc a { color: var(--accent-text); }
.legal-doc a:hover { text-decoration: underline; }
.legal-doc ol,
.legal-doc ul {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-doc li {
  margin: 0 0 12px;
}
.legal-doc li strong {
  color: var(--ink);
}

/* ============================================================
   WARM-GREEN-LAYER — „Grün = Ergebnis & Bestätigung" (KRÄFTIG)
   Bringt das Logo-Grün warm und präsent ein, ohne die
   Marken-Blautöne (Interaktion) zu verdrängen. AA-geprüft.
   (Eigener Block am Dateiende — leicht abschaltbar.)
   ============================================================ */
:root { --green-text: #4F6A16; --green-solid: #4F6A16; }  /* tiefes Oliv-Grün, AA */

/* Ergebnis-Marker (jede Case-Karte) → gefüllte, warme Grün-Pille */
.case-result-k,
.cs-result-k {
  color: #FBF7EC;
  background: var(--green-solid);
  border-color: var(--green-solid);
  font-weight: 600;
}
.case-result,
.cs-result {
  border-top-color: color-mix(in oklab, var(--accent-2) 30%, var(--hairline));
}

/* Kicker-Label: Text in warmem Grün + grünerer Tick (nur heller Grund) */
.kicker { color: var(--green-text); }
.kicker::before {
  background: linear-gradient(90deg,
    var(--ink) 0 24%,
    var(--accent) 24% 46%,
    var(--accent-2) 46% 100%);
}

/* Erfolgs-Häkchen in Formularen → tiefes Grün */
.form-success-mark { background: var(--green-solid); }

/* FAQ: geöffneter/aktiver Toggle → Grün statt Teal */
.faq-q:hover .faq-toggle,
.faq-item.open .faq-toggle { color: var(--green-text); }

/* Hero-Akzentstreifen: deutlich mehr Grün */
.hero-aside::after {
  background: linear-gradient(90deg, var(--accent) 0 40%, var(--accent-2) 40% 100%);
}

/* ============================================================
   ROLLEN-EINSTIEG (A1) — IT-Leitung / Hochschulkommunikation
   ============================================================ */
.roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.role-col {
  background: var(--bg);
  padding: clamp(32px, 3.4vw, 52px) clamp(26px, 2.6vw, 44px);
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}
.role-col:hover { background: var(--paper); }
.role-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.role-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}
.role-col.is-komm .role-eyebrow { color: var(--green-text); }
.role-col.is-komm .role-eyebrow::before { background: var(--accent-2); }
.role-h {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(23px, 2.3vw, 30px);
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 14px;
}
.role-lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 22px;
  text-wrap: pretty;
}
.role-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.role-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.role-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--accent-text);
  font-family: var(--mono);
}
.role-col.is-komm .role-list li::before { color: var(--green-text); }
.role-foot { margin-top: auto; }
@media (max-width: 760px) {
  .roles { grid-template-columns: 1fr; }
}

/* ============================================================
   WARUM RELAUNCHES SCHEITERN (B3)
   ============================================================ */
.derisk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.derisk {
  background: var(--bg);
  padding: clamp(28px, 2.6vw, 40px) clamp(22px, 2vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s ease;
}
.derisk:hover { background: var(--paper); }
.derisk-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.derisk-risk {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 20px;
  line-height: 1.15;
  color: var(--ink);
}
.derisk-fix {
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--ink-2);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid color-mix(in oklab, var(--accent-2) 32%, var(--hairline));
  text-wrap: pretty;
}
.derisk-fix strong { color: var(--green-text); font-weight: 600; }
@media (max-width: 860px) {
  .derisk-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOSSAR / WISSENS-HUB (D8)
   ============================================================ */
.glossar-intro { max-width: 62ch; }
.glossar-group { margin-top: clamp(40px, 4.5vw, 64px); }
.glossar-group > h2 {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--ink);
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.glossar-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-top: 0;
}
.glossar-item {
  background: var(--bg);
  padding: clamp(20px, 2vw, 28px);
  transition: background 0.2s ease;
}
.glossar-item:hover { background: var(--paper); }
.glossar-item.is-wide { grid-column: 1 / -1; }
.glossar-term {
  font-family: var(--ff-display);
  font-style: var(--display-style);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.glossar-abbr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--green-text);
  text-transform: uppercase;
}
.glossar-def {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .glossar-list { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE HARDENING — Mobile-First-Korrekturen
   Kein horizontales Scrollen, keine \u00fcberbreiten Container,
   keine abgeschnittenen Inhalte. Greift \u00fcber alle Seiten.
   ============================================================ */

/* Globaler Schutz: nichts darf seitlich aus dem Viewport ragen.
   `clip` statt `hidden` — verhindert horizontales Scrollen, OHNE
   einen Scroll-Container zu erzeugen (sonst bricht position:sticky
   des Hauptmenüs). */
html, body { overflow-x: clip; max-width: 100%; }
img, svg, video, canvas { max-width: 100%; }

/* Inline-2-Spalten-CTAs (cta-final & verwandte) auf schmalen Screens
   einspaltig \u2014 \u00fcberschreibt das inline gesetzte grid-template-columns. */
@media (max-width: 760px) {
  .cta-final {
    grid-template-columns: 1fr !important;
    gap: clamp(20px, 5vw, 40px) !important;
    padding: clamp(36px, 8vw, 72px) 0 !important;
  }
}

/* Lange deutsche Komposita in gro\u00dfen Headlines sauber umbrechen,
   damit nichts \u00fcber den Rand l\u00e4uft (Hyphenation via lang="de"). */
@media (max-width: 600px) {
  .display,
  .hero-headline,
  .cs-hero-title,
  .display-xl, .display-l, .display-m, .display-s {
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .display-xl { font-size: clamp(34px, 10.5vw, 140px); line-height: 0.98; }
  .display-l  { font-size: clamp(29px, 8.6vw, 96px); line-height: 1.0; }
  .display-m  { font-size: clamp(26px, 7vw, 64px); }
}

/* Stat-Kacheln: auf sehr schmalen Screens Padding reduzieren, damit
   gro\u00dfe Zahlen (z. B. 999+) vollst\u00e4ndig in die Kachel passen. */
@media (max-width: 600px) {
  .stat { padding: 34px 22px 38px; }
  .stat .num-big { font-size: clamp(44px, 13vw, 92px); }
}
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
}

/* Marquee-Items auf Mobil etwas kompakter, Track bleibt clipped. */
@media (max-width: 600px) {
  .marquee-track .item { font-size: 24px; gap: 48px; }
  .marquee-track { gap: 48px; }
}

/* Hero-Aside (Kurzprofil) darf nicht durch min-content \u00fcberlaufen. */
.hero-aside, .hero-grid > * { min-width: 0; }

/* HU-Mock: Browser-Chrome-URL auf kleinen Screens nicht erzwingen. */
@media (max-width: 560px) {
  .hu-mock-url { max-width: none; font-size: 11px; }
  .hu-mock-chrome { gap: 8px; padding: 0 10px; }
}

/* Grids generell gegen 0-Breite-Overflow absichern. */
.services, .competencies, .derisk-grid, .roles, .problems,
.case-milestones, .cs-grid, .pub-grid, .stats, .logowall { min-width: 0; }
.svc, .comp-card, .derisk, .role-col, .problem,
.case-ms, .cs-card, .pub-card, .stat { min-width: 0; }

/* ============================================================
   PAGE STAGE — generative Bühnenflächen für alle Unterseiten.
   Teilt die Design-DNA der Startseite (Navy, Raster, Kolonnade,
   Akzentbalken, Colophon) + seitenindividuelle, technisch-
   wissenschaftliche Motive. Ersetzt die fotografischen Header.
   ============================================================ */
.page-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding-top: clamp(92px, 11vw, 152px);
  padding-bottom: clamp(52px, 7vw, 104px);
}
/* unterer Akzentbalken — identische Sprache wie .hero.has-graphic */
.page-stage::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: linear-gradient(90deg,
    var(--accent) 0 18%, var(--accent-2) 18% 32%, rgba(255,255,255,0.16) 32% 100%);
  z-index: 3;
}

.ps-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ps-grid { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.ps-motif {
  position: absolute;
  right: clamp(0px, 2vw, 40px);
  bottom: 14px;
  width: min(58%, 700px);
  height: auto;
  display: block;
}
/* Schleier: dunkelt links ab, damit Text immer ruhig lesbar bleibt */
.ps-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, color-mix(in oklab, var(--ink) 86%, transparent) 42%, transparent 78%),
    linear-gradient(180deg, transparent 60%, color-mix(in oklab, var(--ink) 55%, transparent) 100%);
}

.ps-inner { position: relative; z-index: 2; }

/* Masthead-Zeile — echot die Startseite */
.ps-masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  margin-bottom: clamp(26px, 3.4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.ps-masthead .ps-mh-left { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; }
.ps-masthead .ps-mh-right { color: rgba(255, 255, 255, 0.6); text-align: right; }

/* ---- Textfarben auf der Bühne (wie .page-head.has-banner) ---- */
.page-stage .crumb { color: rgba(255, 255, 255, 0.7); }
.page-stage .crumb a { color: rgba(255, 255, 255, 0.9); }
.page-stage .crumb a:hover { color: #fff; }
.page-stage .crumb span { color: #fff; }
.page-stage h1,
.page-stage .display { color: #fff; }
.page-stage h1 em { color: var(--accent); font-style: italic; font-family: var(--ff-display); }
[data-variant="modernist"] .page-stage h1 em { color: var(--accent); }
.page-stage .lead { color: rgba(255, 255, 255, 0.9); }
.page-stage .lead strong { color: #fff; }
.page-stage .mono { color: rgba(255, 255, 255, 0.6) !important; }
.page-stage .kicker { color: rgba(255, 255, 255, 0.82); }
.page-stage .kicker::before {
  background: linear-gradient(90deg,
    #ffffff 0 33.33%, var(--accent) 33.33% 66.66%, var(--accent-2) 66.66% 100%);
}

/* Buttons auf der Bühne — wie auf der dunklen Startseite */
.page-stage .btn { background: #fff; border-color: #fff; color: var(--ink); }
.page-stage .btn:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--ink); }
.page-stage .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.page-stage .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

/* ---- Motiv-Primitive ---- */
.ps-link { stroke: rgba(255, 255, 255, 0.18); stroke-width: 1; }
.ps-link.is-acc { stroke: var(--accent); stroke-opacity: 0.6; stroke-width: 1.4; }
.ps-link.is-lime { stroke: var(--accent-2); stroke-opacity: 0.6; stroke-width: 1.4; }
.ps-node { fill: rgba(255, 255, 255, 0.55); }
.ps-node.is-acc { fill: var(--accent); }
.ps-node.is-lime { fill: var(--accent-2); }
.ps-mod rect { fill: none; stroke: rgba(255, 255, 255, 0.12); }
.ps-ticks line { stroke: rgba(255, 255, 255, 0.12); stroke-width: 1; }
.ps-base { stroke: rgba(255, 255, 255, 0.22); stroke-width: 1; }
.ps-sign line { stroke: rgba(255, 255, 255, 0.10); stroke-width: 1; }

/* Datenlabels — ruhige Mono-Annotationen mit echten Kennzahlen */
.ps-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  fill: rgba(255, 255, 255, 0.55);
}
/* "Datensignal" entlang der Akzentlinien */
.ps-flow {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 2 168;
  opacity: 0;
}
.ps-flow.is-acc { stroke: var(--accent); }
.ps-flow.is-lime { stroke: var(--accent-2); }

/* ---- Bewegung: ausschließlich bei erlaubter Bewegung, bewusst kaum
   wahrnehmbar — Lebendigkeit, nicht Aufmerksamkeit. ---- */
@media (prefers-reduced-motion: no-preference) {
  .ps-node {
    animation: ps-pulse 9s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }
  .ps-node.is-acc, .ps-node.is-lime {
    animation: ps-pulse-strong 10s ease-in-out infinite;
  }
  .ps-links line { animation: ps-link-breathe 11s ease-in-out infinite; }
  .ps-flow { opacity: 0.85; animation: ps-flow 7.5s linear infinite; }
  .ps-grid { animation: ps-grid-breathe 16s ease-in-out infinite; }
}
@keyframes ps-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
@keyframes ps-pulse-strong {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.95; }
}
@keyframes ps-link-breathe {
  0%, 100% { stroke-opacity: 0.14; }
  50% { stroke-opacity: 0.22; }
}
@keyframes ps-flow {
  from { stroke-dashoffset: 170; }
  to { stroke-dashoffset: 0; }
}
@keyframes ps-grid-breathe {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

/* Glossar-Bühne kompakter (sehr textlastige Folgeseite) */
.page-stage--glossar { padding-bottom: clamp(44px, 6vw, 88px); }

/* Porträt-Bühne: Foto als ruhige persönliche Ebene im Navy-Band */
.page-stage .portraet-hero { margin-top: clamp(18px, 3vw, 34px); }
.page-stage .portraet-hero-photo img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  filter: saturate(0.96) contrast(1.02);
}
.page-stage .portraet-hero-meta { border-top-color: rgba(255, 255, 255, 0.22); }
.page-stage .portraet-hero-meta .num-big { color: #fff; }
.page-stage .portraet-hero-meta .mono { color: rgba(255, 255, 255, 0.6) !important; }

/* Mobil: Motiv zurücknehmen, Raster bleibt — Text hat Vorrang */
@media (max-width: 760px) {
  .ps-motif { opacity: 0.5; width: 80%; }
  .ps-veil {
    background:
      linear-gradient(90deg, var(--ink) 0%, color-mix(in oklab, var(--ink) 80%, transparent) 60%, color-mix(in oklab, var(--ink) 45%, transparent) 100%),
      linear-gradient(180deg, transparent 55%, var(--ink) 100%);
  }
  .ps-masthead .ps-mh-right { display: none; }
}
@media (max-width: 480px) {
  .ps-motif { display: none; }
}

/* ============================================================
   Optimierungen 2026 — Mobile · Touch-Targets · Card-Raster
   Bewusst ans Dateiende gestellt: überschreibt frühere Regeln
   gezielt über die Kaskade (gleiche/höhere Spezifität, später).
   ============================================================ */

/* Kein horizontales Scrollen — clip statt hidden, damit position:sticky
   (Navigation) erhalten bleibt. */
html { overflow-x: clip; }

/* --- Touch-Targets: echte Buttons mind. 44×44 px (WCAG 2.5.5) --- */
.btn,
.cta-form button,
.contact-form button[type="submit"],
.nav-mobile-cta { min-height: 44px; }

/* Eigenständige Text-Links auf Touch komfortabel treffbar */
@media (max-width: 760px) {
  .cs-link,
  .btn-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  /* Mehr Luft zwischen gestapelten Aktions-Buttons */
  .cta-final div[style*="gap: 12px"],
  .cta-final div[style*="gap:12px"] { gap: 16px !important; }
}

/* --- Fließtext mobil: mind. 18 px, Zeilenhöhe 1.6, Zeilenlänge ≤ ~72 ch --- */
@media (max-width: 760px) {
  body { line-height: 1.6; }
  .lead { font-size: 18px; line-height: 1.6; }
  .body,
  .cs-desc, .cs-featured-desc,
  .pub-desc, .pub-featured-desc,
  .case-body p,
  .case-body .lead,
  .legal-body p,
  .glossar-list p,
  .result-list li {
    font-size: 18px;
    line-height: 1.6;
  }
  .lead, .body, .cs-featured-desc, .pub-featured-desc, .case-body p { max-width: 72ch; }
}

/* --- Card-Raster: 1 Spalte mobil · 2 Spalten Tablet · 3 Spalten Desktop --- */
/* Case-Studies-Karten (vertikal, Bild oben) vertragen 3 Spalten;
   Publikations-Karten (horizontal, Cover + Text) bleiben max. 2-spaltig. */
@media (min-width: 1200px) {
  .cs-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 781px) and (max-width: 1199px) {
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) { .cs-grid { grid-template-columns: 1fr; } }
@media (min-width: 768px) { .pub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .pub-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Leistungen — Ergebnis-Block „Was Sie am Ende haben"
   ============================================================ */
.outcome {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(36px, 4vw, 56px) 0 clamp(32px, 3.5vw, 48px);
  margin-bottom: clamp(20px, 2.5vw, 36px);
}
.outcome-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.outcome-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px) clamp(24px, 4vw, 56px);
}
.outcome-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.4;
  color: var(--ink);
  padding-bottom: clamp(16px, 2vw, 28px);
  border-bottom: 1px solid var(--hairline);
}
.outcome-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent-2) 22%, transparent);
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.outcome-check svg { width: 15px; height: 15px; display: block; }
@media (max-width: 980px) {
  .outcome-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .outcome-list { grid-template-columns: 1fr; }
}

/* ============================================================
   Case-Detail — „Ergebnis & Nutzen für die Hochschule"
   ============================================================ */
.case-outcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}
.case-outcome h3 {
  font-family: var(--ff-display);
  font-weight: var(--display-weight);
  font-style: var(--display-style);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  margin: 0 0 12px;
}
.case-outcome .result-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.case-outcome .result-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-2);
}
.case-outcome .outcome-check { width: 26px; height: 26px; }
@media (max-width: 900px) {
  .case-outcome { grid-template-columns: 1fr; }
}

/* ============================================================
   Publikationen — Zielgruppe-Zeile
   ============================================================ */
.pub-audience {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin: 0 0 18px;
}
.pub-audience-k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  border-radius: 999px;
  padding: 3px 9px;
  flex: none;
  white-space: nowrap;
}
.pub-featured-desc + .pub-audience { font-size: 14px; margin-bottom: 24px; }
.cta-audience {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 14px 0 0;
}
.cta-audience strong { color: #fff; font-weight: 600; }

/* ============================================================
   Cookie-Consent-Banner (DSGVO) — markenkonform, dunkel
   ============================================================ */
#consent-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 16px);
  width: min(960px, calc(100% - 28px));
  z-index: 200;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#consent-banner.is-visible { opacity: 1; transform: translate(-50%, 0); }
.consent-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  flex-wrap: wrap;
}
.consent-text { flex: 1 1 380px; min-width: 240px; }
.consent-text strong {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 5px;
}
.consent-text p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 64ch;
}
.consent-text a { color: var(--accent); text-decoration: underline; }
.consent-actions { display: flex; gap: 12px; flex: none; }
.consent-actions .btn { min-height: 44px; }
.consent-actions .btn[data-consent="accept"] {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.consent-actions .btn[data-consent="accept"]:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.consent-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: none;
}
.consent-actions .btn-ghost:hover { background: rgba(255, 255, 255, 0.10); }
@media (max-width: 560px) {
  .consent-inner { padding: 16px 16px 18px; }
  .consent-actions { width: 100%; }
  .consent-actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   A11y — Kontrast: Markencyan (#01ADDD) erfüllt als KLEINER Text auf
   hellem Grund die WCAG-AA-Schwelle (4,5:1) nicht. Für diese kleinen
   Index-/Jahres-Labels die bereits vorhandene, dunklere Teal-Variante
   (--accent-text #0A6E8C, AA) verwenden. Optik nahezu identisch; cyan
   als Dekor und auf dunklem Grund bleibt unverändert. Hover-Zustände
   (--green-text) haben höhere Spezifität und bleiben erhalten.
   ============================================================ */
.problem-ix,
.svc-row .ix,
.comp-k,
.vita-y,
.pub-y,
.pub-year,
.approach .step .ix,
.faq-ix,
.cs-ix,
.case-ms-k { color: var(--accent-text); }
