/* ============================================================
   Dimension Outdoor — v2-extra
   New patterns: cookie banner, search, contact, insights,
   mediakit, dossier blocks, CMS portal chrome
   ============================================================ */

/* ============================================================
   Global: hide section number markers, brand tag, and
   the small kicker labels above section titles.
   ============================================================ */
.v2-page-num,
.v2-brand-tag,
.v2-section-kicker { display: none !important; }

/* Photo overlays: no headings/labels/captions on background images —
   keep the architecture/motif clean across the whole site. */
.v2-photo-label,
.v2-msg-photo-label,
.v2-photo-cap,
.v2-msg-photo-cap,
.v2-photo-meta { display: none !important; }

/* ============================================================
   Section 02 — Brand Message: cut-out stele as hero product.
   Single visual element, centred on the light beige paper.
   No labels, captions, frames or background imagery.
   ============================================================ */
.v2-msg-stele {
  position: relative;
  background: var(--v2-paper);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.v2-msg-stele-img {
  height: 88%;
  width: auto;
  max-width: 92%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 34px 60px rgba(12,13,14,0.22));
}
@media (max-width: 960px) {
  .v2-msg-stele { min-height: 520px; }
  .v2-msg-stele-img { height: auto; max-height: 480px; max-width: 78%; }
}

/* Restore the original hero balance: headline + body grouped near the
   top with a tight gap (instead of being pushed apart), and the stele
   grounded so it sits on the same plane as the body / USP bar. */
.v2-msg-left {
  justify-content: flex-start !important;
  gap: 28px !important;
  padding-top: 24px !important;
}
/* Compact the hero: tighten the section's own vertical padding and pull
   the USP bar up so it reads as the natural close of the section. */
.v2-section.v2-msg-grid {
  padding-top: 48px !important;
  padding-bottom: 24px !important;
  align-items: stretch;
}
.v2-msg-stele {
  align-items: center;            /* vertically centre the stele to the text block */
  padding-top: 0;
  padding-bottom: 8px;
  min-height: 420px;
  overflow: visible;              /* let the grounding shadow breathe */
}
.v2-msg-stele-img {
  height: 94%;                    /* fill the (now shorter) container */
  max-height: 440px;
}
.v2-prod-caps {
  margin-top: 28px !important;
}
@media (max-width: 960px) {
  .v2-msg-left { padding-top: 8px !important; }
  .v2-msg-stele { align-items: center; padding-top: 0; min-height: 460px; }
  .v2-msg-stele-img { height: auto; }
}

/* ============================================================
   Hero photo — real image override
   ============================================================ */
.v2-hero-photo--image { background-color: var(--v2-paper-2); }
.v2-hero-photo--image::before,
.v2-hero-photo--image::after { content: none !important; display: none !important; }
.v2-hero-photo--image .v2-photo-label {
  color: var(--v2-paper);
  background: rgba(12,13,14,0.55);
  border-color: rgba(236,231,221,0.18);
}
.v2-hero-photo--image .v2-photo-cap {
  color: rgba(236,231,221,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

/* Brand-message photo (section 02) — real image override */
.v2-msg-photo--image { background-color: var(--v2-paper-2); }
.v2-msg-photo--image::before,
.v2-msg-photo--image::after { content: none !important; display: none !important; }
.v2-msg-photo--image .v2-photo-cap {
  color: rgba(236,231,221,0.92);
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

/* Application cards (section 03) — real image override */
.v2-prod-card.has-image .v2-prod-billboard,
.v2-prod-card.has-image .v2-prod-skyline { display: none !important; }
.v2-prod-card.has-image::before { display: none !important; }
.v2-prod-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; display: block;
}
.v2-prod-card.has-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,13,14,0) 45%, rgba(12,13,14,0.62) 100%);
  z-index: 1; pointer-events: none;
}
.v2-prod-card.has-image .v2-prod-foot { z-index: 2; }
.v2-prod-card.has-image .v2-prod-corner { z-index: 2; }
.v2-prod-card.has-image .v2-prod-name,
.v2-prod-card.has-image .v2-prod-meta { color: var(--v2-paper); }

/* ============================================================
   Section 03 — uniform 2×2 network grid.
   Equally sized tiles: same width, height and aspect ratio,
   cleanly aligned. A trailing 5th tile spans both columns as a
   full-width closer instead of leaving an empty half-row.
   ============================================================ */
.v2-prod-grid--quad {
  grid-template-columns: 1fr 1fr !important;
  gap: 20px;
}
.v2-prod-grid--quad .v2-prod-card {
  aspect-ratio: 4 / 3 !important;   /* uniform landscape framing */
  grid-column: auto !important;     /* neutralise any .wide spans */
}
.v2-prod-grid--quad .v2-prod-card:last-child {
  grid-column: span 2 !important;
}
@media (max-width: 720px) {
  .v2-prod-grid--quad { grid-template-columns: 1fr !important; }
  .v2-prod-grid--quad .v2-prod-card:last-child { grid-column: auto !important; }
}

/* ============================================================
   Cookie banner — bottom-right, paper-on-ink, mono labels
   ============================================================ */
.v2-cookie {
  position: fixed;
  inset: auto 20px 20px auto;
  z-index: 1000;
  width: min(420px, calc(100vw - 40px));
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  padding: 24px 26px 22px;
  display: none;
  flex-direction: column;
  gap: 18px;
  font-family: var(--v2-font-body);
  box-shadow: 0 24px 60px rgba(12,13,14,.18);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .35s var(--v2-ease-out), opacity .35s var(--v2-ease-out);
}
.v2-cookie.is-visible { display: flex; transform: translateY(0); opacity: 1; }
.v2-cookie-head {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-paper-3);
  display: flex; align-items: center; gap: 12px;
}
.v2-cookie-head::before { content: ''; width: 22px; height: 1px; background: var(--v2-paper-3); }
.v2-cookie-body { font-size: 13.5px; line-height: 1.55; color: var(--v2-paper-2); }
.v2-cookie-body a { color: var(--v2-paper); text-decoration: underline; text-underline-offset: 3px; }
.v2-cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.v2-cookie-btn {
  flex: 1; min-width: 0;
  height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  background: var(--v2-paper);
  color: var(--v2-ink);
  border: 1px solid var(--v2-paper);
  cursor: pointer;
  padding: 0 16px;
  transition: background var(--v2-dur) var(--v2-ease), color var(--v2-dur) var(--v2-ease);
}
.v2-cookie-btn:hover { background: var(--v2-paper-2); }
.v2-cookie-btn.ghost { background: transparent; color: var(--v2-paper); border-color: var(--v2-paper-3); }
.v2-cookie-btn.ghost:hover { background: rgba(255,255,255,.06); }
.v2-cookie-prefs {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  font-size: 12.5px;
  color: var(--v2-paper-2);
}
.v2-cookie.is-prefs-open .v2-cookie-prefs { display: flex; }
.v2-cookie-pref {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px;
}
.v2-cookie-pref-meta { line-height: 1.45; }
.v2-cookie-pref-meta b { color: var(--v2-paper); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; display: block; margin-bottom: 2px; }
.v2-cookie-pref input { accent-color: var(--v2-paper); width: 16px; height: 16px; margin-top: 4px; }
.v2-cookie-pref input:disabled { opacity: 0.55; }

/* ============================================================
   Search — eingang in nav + page
   ============================================================ */
.v2-nav-search-btn {
  background: transparent;
  border: 0;
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px;
  padding: 0 4px;
  transition: color var(--v2-dur) var(--v2-ease);
}
.v2-nav-search-btn:hover { color: var(--v2-ink); }
.v2-nav-search-btn svg { width: 14px; height: 14px; }

.v2-search-overlay {
  position: fixed; inset: 0;
  z-index: 1100;
  background: rgba(12,13,14,.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
}
.v2-search-overlay.is-open { display: flex; }
.v2-search-panel {
  width: min(720px, calc(100vw - 40px));
  background: var(--v2-paper);
  border: 1px solid var(--v2-line);
  padding: 22px 28px 28px;
  max-height: 72vh;
  display: flex; flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 80px rgba(12,13,14,.28);
}
.v2-search-head {
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--v2-line-soft);
  padding-bottom: 14px;
}
.v2-search-head svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--v2-ink-mute); }
.v2-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--v2-ink);
  outline: none;
  padding: 6px 0;
}
.v2-search-close {
  background: transparent;
  border: 0;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  cursor: pointer;
}
.v2-search-close:hover { color: var(--v2-ink); }
.v2-search-meta {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  display: flex; justify-content: space-between;
}
.v2-search-results {
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.v2-search-result {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--v2-line-faint);
  align-items: center;
  color: var(--v2-ink);
  text-decoration: none;
  transition: background var(--v2-dur) var(--v2-ease);
}
.v2-search-result:last-child { border-bottom: 0; }
.v2-search-result:hover { background: var(--v2-paper-warm); }
.v2-search-result-cat {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-search-result-title {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--v2-ink);
  line-height: 1.3;
}
.v2-search-result-blurb { font-size: 13.5px; color: var(--v2-ink-mute); line-height: 1.45; margin-top: 4px; }
.v2-search-result-arr { font-family: var(--v2-font-mono); color: var(--v2-ink-mute); }
.v2-search-empty { padding: 30px 4px; color: var(--v2-ink-mute); font-size: 14px; }

/* On-page search (suche.html) */
.v2-search-page-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  background: transparent;
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(36px, 4.4vw, 64px);
  color: var(--v2-ink);
  padding: 18px 0;
  outline: none;
}
.v2-search-page-input::placeholder { color: var(--v2-line); font-style: italic; }

/* ============================================================
   Form input baseline (reused on kontakt / bewerbung / cms)
   ============================================================ */
.v2-form .v2-field label,
.v2-input-label {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  display: block;
  margin-bottom: 10px;
}
.v2-form input,
.v2-form textarea,
.v2-form select,
.v2-input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--v2-line);
  font-family: var(--v2-font-body);
  font-size: 16px;
  color: var(--v2-ink);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color var(--v2-dur) var(--v2-ease);
}
.v2-form input:focus,
.v2-form textarea:focus,
.v2-form select:focus,
.v2-input:focus { border-bottom-color: var(--v2-ink); }
.v2-form textarea { resize: vertical; min-height: 80px; }

/* ============================================================
   Eigentümer-Dossier — Eligibility, Earnings, Vertrag
   ============================================================ */
.v2-dossier {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--v2-line-soft);
  border-bottom: 1px solid var(--v2-line-soft);
}
@media (max-width: 900px) { .v2-dossier { grid-template-columns: 1fr; } }
.v2-dossier-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--v2-line-soft);
  display: flex; flex-direction: column; gap: 14px;
}
.v2-dossier-cell:last-child { border-right: 0; }
@media (max-width: 900px) {
  .v2-dossier-cell { border-right: 0; border-bottom: 1px solid var(--v2-line-soft); }
  .v2-dossier-cell:last-child { border-bottom: 0; }
}
.v2-dossier-num {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-quiet);
}
.v2-dossier-h {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 28px;
  line-height: 1.15;
  color: var(--v2-ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.v2-dossier-list { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.v2-dossier-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--v2-ink-soft);
  padding: 8px 0;
  border-top: 1px solid var(--v2-line-faint);
}
.v2-dossier-list li:first-child { border-top: 0; }
.v2-dossier-list li::before {
  content: attr(data-i);
  font-family: var(--v2-font-mono);
  font-size: 10px;
  color: var(--v2-ink-quiet);
  letter-spacing: .1em;
  padding-top: 4px;
}

/* Earnings table */
.v2-earn {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--v2-font-body);
}
.v2-earn thead th {
  text-align: left;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid var(--v2-line);
  font-weight: 400;
}
.v2-earn tbody td {
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid var(--v2-line-faint);
  vertical-align: top;
  font-size: 15px;
  color: var(--v2-ink-soft);
}
.v2-earn .v2-earn-type {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--v2-ink);
}
.v2-earn .v2-earn-type small { display: block; font-size: 12.5px; color: var(--v2-ink-mute); margin-top: 4px; font-weight: 400; letter-spacing: .04em; }
.v2-earn .v2-earn-num {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--v2-ink);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.v2-earn .v2-earn-num small { display: block; font-size: 11px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); margin-top: 4px; font-family: var(--v2-font-mono); }

/* Timeline (Vertragslaufzeit) */
.v2-timeline {
  position: relative;
  padding: 30px 0 10px;
}
.v2-timeline-axis {
  height: 1px; background: var(--v2-line);
  position: relative;
  margin: 90px 0 60px;
}
.v2-timeline-dot {
  position: absolute;
  width: 9px; height: 9px;
  background: var(--v2-ink);
  border-radius: 50%;
  top: -4px;
  transform: translateX(-50%);
}
.v2-timeline-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--v2-line);
  border-radius: 50%;
}
.v2-timeline-label {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
  width: 160px;
  font-size: 13.5px;
  color: var(--v2-ink-soft);
  line-height: 1.4;
}
.v2-timeline-label.top { bottom: 24px; }
.v2-timeline-label.bot { top: 24px; }
.v2-timeline-label b { display: block; font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); font-weight: 400; margin-bottom: 4px; }
@media (max-width: 720px) {
  .v2-timeline-axis { display: none; }
  .v2-timeline { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .v2-timeline-dot { position: static; transform: none; margin-bottom: 4px; }
  .v2-timeline-label { position: static; transform: none; width: auto; text-align: left; border-left: 1px solid var(--v2-line); padding: 6px 0 6px 14px; }
}

/* Eligibility checklist */
.v2-elig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 720px) { .v2-elig { grid-template-columns: 1fr; } }
.v2-elig-col { padding: 30px 0; }
.v2-elig-col + .v2-elig-col { border-left: 1px solid var(--v2-line-soft); padding-left: 40px; }
@media (max-width: 720px) { .v2-elig-col + .v2-elig-col { border-left: 0; padding-left: 0; border-top: 1px solid var(--v2-line-soft); padding-top: 30px; } }
.v2-elig-h {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.v2-elig-h::before { content: ''; width: 24px; height: 1px; background: var(--v2-line); }
.v2-elig-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.v2-elig-list li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--v2-ink-soft);
}
.v2-elig-list li::before {
  position: absolute;
  left: 0; top: 1px;
  font-family: var(--v2-font-mono);
  font-size: 14px;
  color: var(--v2-ink);
}
.v2-elig-list.yes li::before { content: '+'; }
.v2-elig-list.no li::before { content: '–'; color: var(--v2-ink-quiet); }
.v2-elig-list.no li { color: var(--v2-ink-mute); }

/* Calculator-style pull-out */
.v2-pullcalc {
  background: var(--v2-paper-warm);
  border: 1px solid var(--v2-line-soft);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 720px) { .v2-pullcalc { grid-template-columns: 1fr; padding: 28px; } }
.v2-pullcalc-key {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin-bottom: 6px;
}
.v2-pullcalc-h {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--v2-ink);
  letter-spacing: -.01em;
}
.v2-pullcalc-body { font-size: 15px; line-height: 1.6; color: var(--v2-ink-soft); }
.v2-pullcalc-stat {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--v2-ink);
  font-variant-numeric: tabular-nums;
}
.v2-pullcalc-stat small { display: block; font-size: 14px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); margin-top: 10px; font-family: var(--v2-font-mono); }

/* ============================================================
   Insights / Blog
   ============================================================ */
.v2-insights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--v2-line-soft);
}
@media (max-width: 900px) { .v2-insights { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .v2-insights { grid-template-columns: 1fr; } }

.v2-insight-card {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--v2-line-soft);
  border-bottom: 1px solid var(--v2-line-soft);
  display: flex; flex-direction: column;
  gap: 16px;
  color: var(--v2-ink);
  text-decoration: none;
  background: transparent;
  transition: background var(--v2-dur) var(--v2-ease);
  min-height: 360px;
  position: relative;
}
.v2-insight-card:hover { background: var(--v2-paper-warm); }
.v2-insight-card:nth-child(3n) { border-right: 0; }
@media (max-width: 900px) {
  .v2-insight-card { border-right: 1px solid var(--v2-line-soft); }
  .v2-insight-card:nth-child(3n) { border-right: 1px solid var(--v2-line-soft); }
  .v2-insight-card:nth-child(2n) { border-right: 0; }
}
.v2-insight-meta {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  display: flex; justify-content: space-between;
}
.v2-insight-title {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: var(--v2-ink);
  margin: 6px 0 0;
  text-wrap: balance;
}
.v2-insight-blurb {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--v2-ink-mute);
  margin: 0;
}
.v2-insight-foot {
  margin-top: auto;
  padding-top: 18px;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  border-top: 1px solid var(--v2-line-faint);
}
.v2-insight-arr { color: var(--v2-ink); }

/* Insight article body */
.v2-article {
  max-width: 760px;
  margin: 0 auto;
}
.v2-article-kicker {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.v2-article-title {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.96;
  letter-spacing: -.04em;
  color: var(--v2-ink);
  margin: 0 0 30px;
  text-wrap: balance;
}
.v2-article-lede {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  color: var(--v2-ink-soft);
  margin: 0 0 60px;
  text-wrap: pretty;
}
.v2-article p { font-size: 17px; line-height: 1.7; color: var(--v2-ink-soft); margin: 0 0 22px; }
.v2-article h2 {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--v2-ink);
  margin: 56px 0 24px;
}
.v2-article h3 {
  font-family: var(--v2-font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--v2-ink);
  margin: 32px 0 12px;
}
.v2-article ul, .v2-article ol { padding-left: 20px; margin: 0 0 22px; }
.v2-article li { font-size: 17px; line-height: 1.7; color: var(--v2-ink-soft); margin-bottom: 8px; }
.v2-article blockquote {
  border-left: 1px solid var(--v2-ink);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.3;
  color: var(--v2-ink);
  font-style: italic;
}
.v2-article-figure {
  margin: 36px -40px;
  background: var(--v2-paper-warm);
  border: 1px solid var(--v2-line-soft);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  position: relative;
  background-image: repeating-linear-gradient(45deg, transparent 0 14px, rgba(180,172,151,.18) 14px 15px);
}
.v2-article-figure span { background: var(--v2-paper-warm); padding: 6px 14px; border: 1px solid var(--v2-line-soft); }
@media (max-width: 720px) { .v2-article-figure { margin: 32px 0; } }
.v2-article-caption {
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin: -24px 0 36px;
}

/* ============================================================
   Mediakit — downloads
   ============================================================ */
.v2-download {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--v2-line-soft);
  text-decoration: none;
  color: var(--v2-ink);
  transition: background var(--v2-dur) var(--v2-ease);
}
.v2-download:hover { background: var(--v2-paper-warm); padding-left: 12px; padding-right: 12px; }
.v2-download-num {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  color: var(--v2-ink-quiet);
  text-transform: uppercase;
}
.v2-download-title { font-family: var(--v2-font-display); font-weight: 400; font-size: 18px; color: var(--v2-ink); }
.v2-download-blurb { font-size: 13px; color: var(--v2-ink-mute); margin-top: 4px; }
.v2-download-meta {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  text-align: right;
  min-width: 110px;
}
.v2-download-arr {
  font-family: var(--v2-font-mono);
  font-size: 12px;
  color: var(--v2-ink-mute);
  border: 1px solid var(--v2-line);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--v2-dur) var(--v2-ease), color var(--v2-dur) var(--v2-ease);
}
.v2-download:hover .v2-download-arr { background: var(--v2-ink); color: var(--v2-paper); border-color: var(--v2-ink); }
@media (max-width: 720px) {
  .v2-download { grid-template-columns: 1fr auto; gap: 12px; }
  .v2-download-num, .v2-download-meta { grid-column: 1/-1; }
}

.v2-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--v2-line-soft);
}
@media (max-width: 720px) { .v2-logo-grid { grid-template-columns: repeat(2, 1fr); } }
.v2-logo-tile {
  aspect-ratio: 4/3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-right: 1px solid var(--v2-line-soft);
  border-bottom: 1px solid var(--v2-line-soft);
  position: relative;
  background: var(--v2-paper);
  text-decoration: none;
  transition: background var(--v2-dur) var(--v2-ease);
}
.v2-logo-tile:hover { background: var(--v2-paper-warm); }
.v2-logo-tile.dark { background: var(--v2-ink); }
.v2-logo-tile.dark:hover { background: var(--v2-accent); }
.v2-logo-tile-wm {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(13px, 1.4vw, 18px);
  color: var(--v2-ink);
  letter-spacing: -.01em;
}
.v2-logo-tile.dark .v2-logo-tile-wm { color: var(--v2-paper); }
.v2-logo-tile-tag {
  font-family: var(--v2-font-display);
  font-size: 9px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: lowercase;
  color: var(--v2-ink-mute);
  margin-top: 4px;
}
.v2-logo-tile.dark .v2-logo-tile-tag { color: var(--v2-paper-3); }
.v2-logo-tile-foot {
  position: absolute;
  bottom: 10px; left: 12px; right: 12px;
  display: flex; justify-content: space-between;
  font-family: var(--v2-font-mono);
  font-size: 9.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-logo-tile.dark .v2-logo-tile-foot { color: var(--v2-paper-3); }

/* ============================================================
   Kontakt — multi-channel grid
   ============================================================ */
.v2-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-line-soft);
  border-bottom: 1px solid var(--v2-line-soft);
}
@media (max-width: 900px) { .v2-channels { grid-template-columns: 1fr; } }
.v2-channel {
  padding: 36px 32px;
  border-right: 1px solid var(--v2-line-soft);
  display: flex; flex-direction: column; gap: 14px;
}
.v2-channel:last-child { border-right: 0; }
@media (max-width: 900px) {
  .v2-channel { border-right: 0; border-bottom: 1px solid var(--v2-line-soft); }
  .v2-channel:last-child { border-bottom: 0; }
}
.v2-channel-num {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-quiet);
}
.v2-channel-h {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--v2-ink);
}
.v2-channel-body { font-size: 14.5px; line-height: 1.55; color: var(--v2-ink-soft); margin: 0; }
.v2-channel-cta {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink);
  border-top: 1px solid var(--v2-line-faint);
  display: flex; justify-content: space-between;
}

/* Office locations grid */
.v2-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .v2-offices { grid-template-columns: 1fr; } }
.v2-office {
  border-top: 1px solid var(--v2-line);
  padding-top: 22px;
}
.v2-office-key {
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin-bottom: 10px;
}
.v2-office-city {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--v2-ink);
  margin: 0 0 18px;
}
.v2-office-addr { font-size: 14.5px; line-height: 1.55; color: var(--v2-ink-soft); margin: 0; }
.v2-office-addr a { color: var(--v2-ink); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   Danke-Seite
   ============================================================ */
.v2-thanks {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .v2-thanks { grid-template-columns: 1fr; gap: 40px; min-height: 0; } }
.v2-thanks-mark {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -.05em;
  color: var(--v2-ink);
  text-wrap: balance;
}
.v2-thanks-mark em { font-style: italic; font-weight: 300; }
.v2-thanks-kicker {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.v2-thanks-kicker::before { content: ''; width: 28px; height: 1px; background: var(--v2-line); }
.v2-thanks-h {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--v2-ink);
}
.v2-thanks-body { font-size: 16px; line-height: 1.6; color: var(--v2-ink-soft); margin: 0 0 24px; }
.v2-thanks-steps {
  list-style: none; padding: 0; margin: 24px 0 30px;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--v2-line-soft);
}
.v2-thanks-steps li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--v2-line-soft);
  font-size: 14.5px;
  align-items: center;
}
.v2-thanks-steps li b { font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-quiet); }
.v2-thanks-steps li i { font-style: normal; font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); }

/* ============================================================
   CMS Portal chrome (used by /cms/*)
   ============================================================ */
body.cms {
  background: #FAFAF7;
  color: var(--v2-ink-soft);
  font-family: var(--v2-font-body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
.cms-app {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
@media (max-width: 900px) { .cms-app { grid-template-columns: 1fr; } }
.cms-side {
  background: var(--v2-ink);
  color: var(--v2-paper);
  padding: 24px 0;
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  border-right: 1px solid var(--v2-ink);
}
@media (max-width: 900px) { .cms-side { position: static; height: auto; } }
.cms-side-brand { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.cms-side-wm { font-family: var(--v2-font-display); font-weight: 300; font-size: 16px; color: var(--v2-paper); letter-spacing: -.01em; }
.cms-side-tag { font-family: var(--v2-font-display); font-size: 10.5px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-paper-3); margin-top: 4px; }
.cms-side-version { display: inline-block; margin-top: 10px; font-family: var(--v2-font-mono); font-size: 9.5px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-paper-3); padding: 3px 8px; border: 1px solid rgba(255,255,255,.16); }

.cms-side-section { padding: 22px 24px 8px; font-family: var(--v2-font-mono); font-size: 9.5px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-paper-3); }
.cms-side-nav { display: flex; flex-direction: column; }
.cms-side-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px;
  color: var(--v2-paper-2);
  font-size: 13.5px;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background var(--v2-dur) var(--v2-ease), color var(--v2-dur) var(--v2-ease);
}
.cms-side-link:hover { background: rgba(255,255,255,.04); color: var(--v2-paper); }
.cms-side-link.active { background: rgba(255,255,255,.06); color: var(--v2-paper); border-left-color: var(--v2-paper); }
.cms-side-link .badge {
  font-family: var(--v2-font-mono);
  font-size: 9.5px;
  letter-spacing: var(--v2-mono-ls);
  background: var(--v2-paper);
  color: var(--v2-ink);
  padding: 2px 6px;
}
.cms-side-foot {
  margin-top: auto;
  padding: 18px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; gap: 12px;
}
.cms-side-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--v2-paper-warm);
  color: var(--v2-ink);
  font-family: var(--v2-font-display); font-weight: 600; font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.cms-side-user { font-size: 13px; }
.cms-side-user b { display: block; color: var(--v2-paper); font-weight: 500; }
.cms-side-user span { color: var(--v2-paper-3); font-size: 11.5px; }

.cms-main { padding: 28px 36px 80px; min-width: 0; }
@media (max-width: 720px) { .cms-main { padding: 22px 18px 60px; } }
.cms-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--v2-line-soft);
  margin-bottom: 28px;
  gap: 18px;
}
.cms-crumb {
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.cms-crumb a { color: var(--v2-ink-mute); text-decoration: none; }
.cms-crumb a:hover { color: var(--v2-ink); }
.cms-h1 {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--v2-ink);
  margin: 6px 0 0;
}
.cms-top-actions { display: flex; gap: 10px; }
.cms-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 16px;
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  background: var(--v2-ink);
  color: var(--v2-paper);
  border: 1px solid var(--v2-ink);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--v2-dur) var(--v2-ease);
}
.cms-btn:hover { background: var(--v2-accent); }
.cms-btn.ghost { background: transparent; color: var(--v2-ink); }
.cms-btn.ghost:hover { background: var(--v2-paper-warm); }
.cms-btn.danger { background: transparent; color: #8a1f1f; border-color: rgba(138,31,31,.4); }
.cms-btn.danger:hover { background: rgba(138,31,31,.06); }

.cms-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--v2-line-soft);
  background: #fff;
  margin-bottom: 28px;
}
@media (max-width: 900px) { .cms-stats { grid-template-columns: 1fr 1fr; } }
.cms-stat { padding: 22px 24px; border-right: 1px solid var(--v2-line-soft); }
.cms-stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .cms-stat { border-bottom: 1px solid var(--v2-line-soft); }
  .cms-stat:nth-child(2n) { border-right: 0; }
  .cms-stat:nth-child(n+3) { border-bottom: 0; }
}
.cms-stat-key { font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); }
.cms-stat-num {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--v2-ink);
  margin: 10px 0 4px;
  font-variant-numeric: tabular-nums;
}
.cms-stat-delta { font-family: var(--v2-font-mono); font-size: 10.5px; letter-spacing: var(--v2-mono-ls); color: var(--v2-ink-quiet); }
.cms-stat-delta.up { color: #2a6c4a; }
.cms-stat-delta.down { color: #8a1f1f; }

.cms-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}
@media (max-width: 1100px) { .cms-grid { grid-template-columns: 1fr; } }

.cms-card {
  background: #fff;
  border: 1px solid var(--v2-line-soft);
  padding: 22px 24px;
}
.cms-card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--v2-line-soft);
  margin-bottom: 16px;
}
.cms-card-h {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--v2-ink);
  margin: 0;
  letter-spacing: -.005em;
}
.cms-card-meta { font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); }

.cms-table { width: 100%; border-collapse: collapse; }
.cms-table th {
  text-align: left;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--v2-line-soft);
  font-weight: 400;
}
.cms-table td {
  padding: 14px 14px 14px 0;
  border-bottom: 1px solid var(--v2-line-faint);
  font-size: 13.5px;
  color: var(--v2-ink-soft);
  vertical-align: middle;
}
.cms-table tr:last-child td { border-bottom: 0; }
.cms-table tbody tr:hover td { background: #FAF8F1; }
.cms-table-title { font-family: var(--v2-font-display); font-weight: 500; font-size: 14.5px; color: var(--v2-ink); }
.cms-table-sub { font-size: 11.5px; color: var(--v2-ink-mute); margin-top: 2px; }

.cms-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--v2-font-mono);
  font-size: 9.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--v2-paper-warm);
  color: var(--v2-ink);
}
.cms-status.live { background: #E4EFE5; color: #2a6c4a; }
.cms-status.draft { background: #F3EAD8; color: #7a5a1c; }
.cms-status.new { background: var(--v2-ink); color: var(--v2-paper); }
.cms-status.archived { background: var(--v2-paper-2); color: var(--v2-ink-mute); }
.cms-status.review { background: #EAEAF3; color: #2c3a7a; }
.cms-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.cms-search-input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--v2-line-soft);
  background: #fff;
  padding: 0 14px;
  font-family: var(--v2-font-body);
  font-size: 13px;
  color: var(--v2-ink);
  outline: none;
}
.cms-search-input:focus { border-color: var(--v2-ink); }

.cms-filter {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.cms-chip {
  height: 30px;
  padding: 0 12px;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  border: 1px solid var(--v2-line-soft);
  background: #fff;
  color: var(--v2-ink-mute);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.cms-chip:hover { color: var(--v2-ink); border-color: var(--v2-line); }
.cms-chip.active { background: var(--v2-ink); color: var(--v2-paper); border-color: var(--v2-ink); }
.cms-chip-count { color: inherit; opacity: 0.6; }

/* CMS form */
.cms-form { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
@media (max-width: 1000px) { .cms-form { grid-template-columns: 1fr; } }
.cms-form-main { display: flex; flex-direction: column; gap: 20px; }
.cms-form-side { display: flex; flex-direction: column; gap: 18px; }
.cms-field { display: flex; flex-direction: column; gap: 8px; }
.cms-field-label { font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); }
.cms-field-input,
.cms-field-textarea,
.cms-field-select {
  border: 1px solid var(--v2-line-soft);
  background: #fff;
  font-family: var(--v2-font-body);
  font-size: 14px;
  color: var(--v2-ink);
  padding: 10px 12px;
  outline: none;
  transition: border-color var(--v2-dur) var(--v2-ease);
}
.cms-field-input:focus,
.cms-field-textarea:focus,
.cms-field-select:focus { border-color: var(--v2-ink); }
.cms-field-input.big {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -.01em;
  padding: 14px 14px;
}
.cms-field-textarea { min-height: 160px; line-height: 1.55; resize: vertical; }
.cms-field-textarea.editor { min-height: 360px; font-size: 15px; line-height: 1.65; }

.cms-toolbar {
  display: flex; gap: 4px;
  border: 1px solid var(--v2-line-soft);
  border-bottom: 0;
  background: #FAF8F1;
  padding: 6px;
}
.cms-toolbar-btn {
  height: 32px; min-width: 32px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid transparent;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  color: var(--v2-ink-soft);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
}
.cms-toolbar-btn:hover { background: #fff; border-color: var(--v2-line-soft); }
.cms-toolbar-btn.active { background: var(--v2-ink); color: var(--v2-paper); border-color: var(--v2-ink); }
.cms-toolbar-divider { width: 1px; background: var(--v2-line-soft); margin: 4px 6px; }

/* Media library */
.cms-media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 1100px) { .cms-media-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cms-media-grid { grid-template-columns: repeat(2, 1fr); } }
.cms-media-tile {
  background: #fff;
  border: 1px solid var(--v2-line-soft);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color var(--v2-dur) var(--v2-ease);
}
.cms-media-tile:hover { border-color: var(--v2-ink); }
.cms-media-thumb {
  aspect-ratio: 4/3;
  background-image: repeating-linear-gradient(45deg, var(--v2-paper-warm) 0 10px, var(--v2-paper-2) 10px 11px);
  border-bottom: 1px solid var(--v2-line-soft);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute);
}
.cms-media-thumb span { background: rgba(255,255,255,.7); padding: 3px 8px; }
.cms-media-meta { padding: 10px 12px; }
.cms-media-name { font-family: var(--v2-font-mono); font-size: 11.5px; color: var(--v2-ink); word-break: break-all; }
.cms-media-sub { font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); margin-top: 4px; display: flex; justify-content: space-between; }

/* Activity timeline */
.cms-activity { display: flex; flex-direction: column; }
.cms-activity-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--v2-line-faint);
}
.cms-activity-item:last-child { border-bottom: 0; }
.cms-activity-time {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-quiet);
  padding-top: 2px;
}
.cms-activity-body { font-size: 13.5px; line-height: 1.5; color: var(--v2-ink-soft); }
.cms-activity-body b { color: var(--v2-ink); font-weight: 500; }
.cms-activity-body em { font-style: normal; font-family: var(--v2-font-mono); font-size: 11.5px; color: var(--v2-ink-mute); }

/* Login screen */
.cms-login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--v2-paper);
}
@media (max-width: 900px) { .cms-login { grid-template-columns: 1fr; } }
.cms-login-side {
  background: var(--v2-ink);
  color: var(--v2-paper);
  padding: 40px 56px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 100vh;
}
@media (max-width: 900px) { .cms-login-side { min-height: 50vh; padding: 32px; } }
.cms-login-wm { font-family: var(--v2-font-display); font-weight: 300; font-size: 20px; letter-spacing: -.01em; }
.cms-login-wm small { display: block; font-size: 11px; letter-spacing: var(--v2-mono-ls); text-transform: lowercase; color: var(--v2-paper-3); margin-top: 4px; }
.cms-login-display {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -.04em;
  color: var(--v2-paper);
  text-wrap: balance;
}
.cms-login-display em { font-style: italic; font-weight: 300; }
.cms-login-foot {
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-paper-3);
  display: flex; justify-content: space-between; gap: 18px;
}
.cms-login-form-wrap {
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
}
.cms-login-form {
  width: 100%; max-width: 380px;
  display: flex; flex-direction: column; gap: 20px;
}
.cms-login-form h1 {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: -.02em;
  color: var(--v2-ink);
  margin: 0 0 4px;
}
.cms-login-form p { font-size: 13.5px; color: var(--v2-ink-mute); margin: 0 0 12px; }
.cms-login-form .cms-btn { height: 48px; justify-content: center; width: 100%; }
.cms-login-helper { display: flex; justify-content: space-between; font-family: var(--v2-font-mono); font-size: 10px; letter-spacing: var(--v2-mono-ls); text-transform: uppercase; color: var(--v2-ink-mute); margin-top: 6px; }
.cms-login-helper a { color: var(--v2-ink-mute); text-decoration: underline; }
.cms-login-helper a:hover { color: var(--v2-ink); }

/* Inline kbd */
kbd {
  font-family: var(--v2-font-mono);
  font-size: 10.5px;
  background: var(--v2-paper-warm);
  border: 1px solid var(--v2-line-soft);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--v2-ink);
}

/* ============================================================
   Press page — upgraded patterns
   ============================================================ */

/* Hero side-rail: live ticker */
.v2-pr-ticker {
  border-top: 1px solid var(--v2-line);
  padding-top: 28px;
  display: grid;
  gap: 0;
}
.v2-pr-ticker-head {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink);
  margin-bottom: 4px;
}
.v2-pr-ticker-dot {
  width: 8px; height: 8px;
  background: #2E7D3D;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46,125,61,.18);
  animation: v2-pr-pulse 2s ease-in-out infinite;
}
@keyframes v2-pr-pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(46,125,61,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(46,125,61,0); }
}
.v2-pr-ticker-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--v2-line-faint);
}
.v2-pr-ticker-row:last-child { border-bottom: 0; }
.v2-pr-ticker-num {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: 54px;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--v2-ink);
  font-variant-numeric: tabular-nums;
}
.v2-pr-ticker-key {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin-bottom: 6px;
}
.v2-pr-ticker-val {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: var(--v2-ink);
}

/* Feature release card */
.v2-pr-feature {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.6fr 56px;
  gap: 48px;
  border-top: 1px solid var(--v2-ink);
  padding: 56px 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background var(--v2-dur) var(--v2-ease);
}
.v2-pr-feature::before {
  content: '';
  position: absolute;
  inset: 0 -24px;
  background: var(--v2-paper-warm);
  opacity: 0;
  transition: opacity var(--v2-dur) var(--v2-ease);
  z-index: -1;
}
.v2-pr-feature:hover::before { opacity: 1; }
.v2-pr-feature:hover .v2-pr-feature-arr { transform: translateX(8px); }
.v2-pr-feature:last-of-type { border-bottom: 1px solid var(--v2-ink); }

.v2-pr-feature-anchor { display: grid; gap: 18px; align-content: start; }
.v2-pr-feature-num {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(80px, 11vw, 156px);
  letter-spacing: -0.05em;
  line-height: 0.82;
  color: var(--v2-ink);
  font-variant-numeric: tabular-nums;
}
.v2-pr-feature-num sup {
  font-size: 0.30em;
  font-weight: 300;
  letter-spacing: 0;
  vertical-align: top;
  position: relative;
  top: 0.55em;
  color: var(--v2-ink-mute);
  margin-left: 6px;
}
.v2-pr-feature-numcap {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  max-width: 22ch;
  line-height: 1.5;
}

.v2-pr-feature-meta { display: grid; gap: 18px; align-content: start; }
.v2-pr-feature-tags {
  display: flex; flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-pr-feature-tags::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--v2-line);
  flex-shrink: 0;
}
.v2-pr-feature-date { font-variant-numeric: tabular-nums; color: var(--v2-ink); }
.v2-pr-feature-cat { color: var(--v2-ink); }
.v2-pr-feature-status {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--v2-ink); font-weight: 600;
}
.v2-pr-feature-status::before {
  content: '';
  width: 6px; height: 6px;
  background: #2E7D3D;
  border-radius: 50%;
}
.v2-pr-feature-title {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--v2-ink);
  margin: 0;
  text-wrap: balance;
}
.v2-pr-feature-title em { font-style: italic; font-weight: 400; }
.v2-pr-feature-blurb {
  font-size: 16px;
  line-height: 1.55;
  color: var(--v2-ink-soft);
  max-width: 60ch;
  margin: 0;
}
.v2-pr-feature-spec {
  display: flex; flex-wrap: wrap;
  gap: 22px 36px;
  margin-top: 8px;
}
.v2-pr-feature-spec > div { display: grid; gap: 4px; }
.v2-pr-feature-spec-k {
  font-family: var(--v2-font-mono);
  font-size: 9.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-pr-feature-spec-v {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 14.5px;
  color: var(--v2-ink);
}
.v2-pr-feature-arr {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: 56px;
  color: var(--v2-ink);
  align-self: end;
  justify-self: end;
  transition: transform var(--v2-dur) var(--v2-ease);
  line-height: 1;
}
@media (max-width: 900px) {
  .v2-pr-feature { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .v2-pr-feature-num { font-size: 96px; }
  .v2-pr-feature-arr { font-size: 36px; justify-self: start; align-self: start; }
}

/* Press dashboard stats strip */
.v2-pr-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  margin: 0;
}
@media (max-width: 900px) { .v2-pr-numbers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .v2-pr-numbers { grid-template-columns: 1fr; } }
.v2-pr-num-cell {
  padding: 40px 28px 36px 0;
  border-right: 1px solid var(--v2-line-soft);
}
.v2-pr-num-cell:last-child { border-right: 0; padding-right: 0; }
@media (max-width: 900px) {
  .v2-pr-num-cell:nth-child(2n) { border-right: 0; }
  .v2-pr-num-cell:nth-child(-n+2) { border-bottom: 1px solid var(--v2-line-soft); }
}
@media (max-width: 540px) {
  .v2-pr-num-cell { border-right: 0 !important; border-bottom: 1px solid var(--v2-line-soft) !important; }
  .v2-pr-num-cell:last-child { border-bottom: 0 !important; }
}
.v2-pr-num-key {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.v2-pr-num-key::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--v2-line);
}
.v2-pr-num-val {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--v2-ink);
  font-variant-numeric: tabular-nums;
}
.v2-pr-num-val sup {
  font-size: 0.40em;
  font-weight: 300;
  margin-left: 2px;
  color: var(--v2-ink-mute);
  vertical-align: top;
  position: relative;
  top: 0.55em;
}
.v2-pr-num-sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--v2-ink-soft);
  margin-top: 12px;
  max-width: 26ch;
}

/* Coverage highlight cards */
.v2-pr-cov-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--v2-ink);
  border-bottom: 1px solid var(--v2-ink);
  margin-bottom: 56px;
  background: var(--v2-paper-warm);
}
@media (max-width: 900px) { .v2-pr-cov-featured { grid-template-columns: 1fr; } }
.v2-pr-cov-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 32px 30px 28px;
  border-right: 1px solid var(--v2-line-soft);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background var(--v2-dur) var(--v2-ease);
}
.v2-pr-cov-card:last-child { border-right: 0; }
@media (max-width: 900px) {
  .v2-pr-cov-card { border-right: 0; border-bottom: 1px solid var(--v2-line-soft); }
  .v2-pr-cov-card:last-child { border-bottom: 0; }
}
.v2-pr-cov-card:hover { background: var(--v2-paper); }
.v2-pr-cov-card:hover .v2-pr-cov-arr { transform: translate(4px, -4px); }
.v2-pr-cov-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-pr-cov-source { color: var(--v2-ink); font-weight: 600; }
.v2-pr-cov-headline {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--v2-ink);
  margin: 0;
  text-wrap: balance;
}
.v2-pr-cov-blurb {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--v2-ink-soft);
  margin: 0;
}
.v2-pr-cov-arr {
  align-self: end; justify-self: end;
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 24px;
  color: var(--v2-ink);
  transition: transform var(--v2-dur) var(--v2-ease);
  line-height: 1;
}

/* Press contact quick links */
.v2-pr-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--v2-line-soft);
  margin-top: 40px;
}
@media (max-width: 900px) { .v2-pr-quick { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .v2-pr-quick { grid-template-columns: 1fr; } }
.v2-pr-quick a {
  display: grid;
  gap: 6px;
  padding: 22px 22px 22px 0;
  border-right: 1px solid var(--v2-line-soft);
  color: var(--v2-ink);
  transition: background var(--v2-dur) var(--v2-ease), padding var(--v2-dur) var(--v2-ease);
}
.v2-pr-quick a:last-child { border-right: 0; }
@media (max-width: 900px) {
  .v2-pr-quick a:nth-child(2n) { border-right: 0; }
  .v2-pr-quick a:nth-child(-n+2) { border-bottom: 1px solid var(--v2-line-soft); }
}
@media (max-width: 540px) {
  .v2-pr-quick a { border-right: 0 !important; border-bottom: 1px solid var(--v2-line-soft) !important; padding-right: 0; }
  .v2-pr-quick a:last-child { border-bottom: 0 !important; }
}
.v2-pr-quick a:hover { background: var(--v2-paper-warm); padding-left: 12px; }
.v2-pr-quick-k {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-pr-quick-v {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--v2-ink);
}
.v2-pr-quick-sub {
  font-size: 12.5px;
  color: var(--v2-ink-mute);
  margin-top: 2px;
}

/* ============================================================
   Partner logo wall (references page)
   ============================================================ */
.v2-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--v2-line);
  border-left: 1px solid var(--v2-line);
}
@media (max-width: 900px) { .v2-logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .v2-logos { grid-template-columns: repeat(2, 1fr); } }
.v2-logo {
  position: relative;
  border-right: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 24px;
  background: var(--v2-paper);
  transition: background var(--v2-dur) var(--v2-ease);
}
.v2-logo:hover { background: var(--v2-paper-warm); }
.v2-logo:hover .v2-logo-mark { opacity: 1; transform: translateY(-2px); }
.v2-logo:hover .v2-logo-tag { opacity: 1; }
.v2-logo-mark {
  font-family: var(--v2-font-display);
  color: var(--v2-ink);
  opacity: 0.55;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: opacity var(--v2-dur) var(--v2-ease), transform var(--v2-dur) var(--v2-ease);
  user-select: none;
}
.v2-logo-tag {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--v2-font-mono);
  font-size: 9.5px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  opacity: 0;
  transition: opacity var(--v2-dur) var(--v2-ease);
  white-space: nowrap;
}

/* Per-logo type tweaks — keeps each wordmark feeling distinct */
.v2-logo svg { display: block; height: 36px; width: auto; max-width: 100%; }
.v2-logo img { display: block; max-height: 56px; max-width: 78%; object-fit: contain; filter: grayscale(1); opacity: 0.85; }
.v2-logo:hover img { opacity: 1; }
/* Square / compact wordmark logos sit larger so they read at a similar visual weight */
.v2-logo img.v2-logo-lg { max-height: 80px; }

/* Reference wall — focus refs (brand colour, linked) vs muted refs (greyscale) */
a.v2-logo { text-decoration: none; color: inherit; }
.v2-logo.is-focus img { filter: none; opacity: 1; }
.v2-logo.is-focus .v2-logo-mark { opacity: 1; }
.v2-logo.is-muted .v2-logo-mark { filter: grayscale(1); opacity: 0.5; }
.v2-logo.is-muted:hover .v2-logo-mark { opacity: 0.72; transform: translateY(-2px); }
.v2-logo.is-muted img { filter: grayscale(1); opacity: 0.7; }
.v2-logo.is-muted:hover img { opacity: 0.85; }
.v2-logo-onwhite { mix-blend-mode: multiply; }
.v2-logo--dark { background: var(--v2-ink); }
.v2-logo--dark:hover { background: #17191b; }
.v2-logo--dark .v2-logo-tag { color: rgba(255,255,255,0.55); }

.v2-logo-telekom svg { height: 28px; }
.v2-logo-telekom-sub { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.v2-logo-telekom-sub small { font-family: var(--v2-font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--v2-ink); }
.v2-logo-magenta { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.v2-logo-magenta-text { font-family: var(--v2-font-display); font-weight: 500; font-size: 14px; font-style: italic; letter-spacing: -0.01em; }
.v2-logo-rhein { font-weight: 800; font-size: 18px; letter-spacing: 0.06em; border-top: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; padding: 6px 14px; }
.v2-logo-rhein small { display: block; font-size: 8px; font-weight: 600; letter-spacing: 0.16em; margin-top: 4px; }
.v2-logo-retail { font-weight: 700; font-size: 19px; font-style: italic; letter-spacing: -0.01em; }
.v2-logo-justeat { font-weight: 800; font-size: 16px; letter-spacing: 0.04em; line-height: 1.05; }
.v2-logo-justeat small { display: block; font-weight: 400; font-size: 12px; letter-spacing: 0; font-style: italic; }
.v2-logo-esp { font-weight: 700; font-size: 22px; letter-spacing: 0.08em; line-height: 1.05; }
.v2-logo-esp small { display: block; font-size: 11px; font-weight: 400; letter-spacing: 0.18em; margin-top: 2px; }
.v2-logo-ppds { font-weight: 900; font-size: 26px; letter-spacing: -0.04em; line-height: 0.9; }
.v2-logo-tpvision { font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.v2-logo-fdp { font-weight: 900; font-size: 32px; line-height: 0.9; letter-spacing: -0.02em; }
.v2-logo-fdp .fdp-dot { font-weight: 900; }
.v2-logo-ultra { font-weight: 500; font-size: 22px; font-style: italic; letter-spacing: -0.02em; background: var(--v2-ink); color: var(--v2-paper); padding: 16px 22px; line-height: 1; }
.v2-logo-ultra small { display: block; font-size: 9px; font-weight: 400; letter-spacing: 0.18em; font-style: normal; margin-top: 4px; }
.v2-logo-zalando { font-weight: 400; font-size: 22px; letter-spacing: 0; }
.v2-logo-dpw { font-weight: 700; font-size: 22px; font-style: italic; border: 2px solid currentColor; padding: 10px 18px; letter-spacing: -0.02em; }
.v2-logo-rt { font-weight: 800; font-size: 14px; letter-spacing: -0.01em; background: var(--v2-ink); color: var(--v2-paper); padding: 9px 12px; line-height: 1; }
.v2-logo-flink { font-weight: 800; font-size: 24px; letter-spacing: -0.04em; }
.v2-logo-flink .dot { color: var(--v2-ink); }
.v2-logo-outsite { font-weight: 500; font-size: 18px; letter-spacing: 0.02em; }
.v2-logo-outsite small { display: block; font-size: 9.5px; font-weight: 400; letter-spacing: 0.22em; color: var(--v2-ink-mute); text-transform: uppercase; margin-top: 2px; }
.v2-logo-stroeer { font-weight: 900; font-size: 26px; letter-spacing: -0.04em; }
.v2-logo-blowup { font-weight: 800; font-size: 14px; letter-spacing: 0.04em; background: var(--v2-ink); color: var(--v2-paper); padding: 8px 14px; border-radius: 999px; text-transform: uppercase; line-height: 1; }
.v2-logo-iph { font-weight: 900; font-size: 28px; letter-spacing: -0.02em; line-height: 0.95; }
.v2-logo-iph small { display: block; font-size: 8.5px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; color: var(--v2-ink-mute); }
.v2-logo-aach { font-weight: 600; font-size: 14px; letter-spacing: 0.02em; line-height: 1.15; text-align: center; font-family: var(--v2-font-display); }
.v2-logo-aach em { font-style: italic; font-weight: 400; }
.v2-logo-awk { font-weight: 900; font-size: 24px; letter-spacing: 0.04em; line-height: 1.05; }
.v2-logo-awk small { display: block; font-size: 8.5px; font-weight: 600; letter-spacing: 0.18em; margin-top: 4px; color: var(--v2-ink-mute); }
.v2-logo-garbe { font-family: var(--v2-font-display); font-weight: 300; font-size: 20px; letter-spacing: 0.02em; line-height: 1.05; text-align: center; }
.v2-logo-garbe strong { display: block; font-weight: 700; letter-spacing: -0.01em; font-size: 22px; }
.v2-logo-garbe small { display: block; font-size: 8.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 4px; color: var(--v2-ink-mute); }

/* Comparison table — subtle divider under the dark "Dimension Outdoor" header,
   matching the soft row separators of the left column for visual consistency. */
.v2-vs-head .v2-vs-do { box-shadow: inset 0 -1px 0 var(--v2-line-soft); }

/* Hero CTA — Premium Outline refinement
   Lighter, more architectural treatment: transparent fill, hairline ink border,
   generous padding, finer typography, minimalist arrow. Scoped to the hero
   so navigation CTA and other buttons stay untouched. */
.v2-hero-cta-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 20px;
  margin-top: 24px;
}
.v2-hero-cta-row .v2-btn {
  height: 60px;
  padding: 0 36px;
  gap: 18px;
  background: transparent;
  color: var(--v2-ink);
  border: 1px solid var(--v2-ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  white-space: nowrap;
  box-sizing: border-box;
  /* Snap color on state change; only background & border ease.
     Avoids the mid-transition moment where ink text on darkening bg is unreadable. */
  transition: background var(--v2-dur) var(--v2-ease),
              border-color var(--v2-dur) var(--v2-ease);
}
/* Primary CTA may sit a touch wider than the ghost — intentional, balanced. */
.v2-hero-cta-row .v2-btn:not(.v2-btn-ghost) { padding: 0 44px; }
.v2-hero-cta-row .v2-btn:hover,
.v2-hero-cta-row .v2-btn:focus-visible,
.v2-hero-cta-row .v2-btn:active {
  background: var(--v2-ink);
  color: var(--v2-paper); /* warm cream — high-contrast, never stark white */
  border-color: var(--v2-ink);
}
.v2-hero-cta-row .v2-btn .v2-btn-arr {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.85;
  transform: translateY(-0.5px);
}
.v2-hero-cta-row .v2-btn:hover .v2-btn-arr { opacity: 1; }
@media (max-width: 560px) {
  .v2-hero-cta-row { flex-wrap: wrap; gap: 12px; }
  .v2-hero-cta-row .v2-btn,
  .v2-hero-cta-row .v2-btn:not(.v2-btn-ghost) { padding: 0 28px; width: 100%; justify-content: center; }
}

/* Header navigation — Premium Outline refinement
   Reduce the heavy filled CTA to a hairline outline button that lives inside
   the design system; soften the language switcher to true utility weight.
   Dashboard.pdf v3: button must NEVER turn solid ink on any state —
   stay in the beige/taupe family with only subtle interaction.
   Dashboard.pdf v4: remove the rectangular hover box entirely. The button
   reads as a quiet link with a single hairline underneath; hover only
   shifts text opacity and nudges the arrow. No fill, no border-box. */
.v2-nav-cta {
  height: 36px;
  padding: 0 4px;
  gap: 12px;
  background: transparent;
  color: var(--v2-ink);
  border: 0;
  border-bottom: 1px solid var(--v2-ink);
  border-radius: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  transition: opacity var(--v2-dur) var(--v2-ease),
              border-color var(--v2-dur) var(--v2-ease);
}
.v2-nav-cta:hover,
.v2-nav-cta:focus,
.v2-nav-cta:focus-visible,
.v2-nav-cta:active {
  background: transparent;
  color: var(--v2-ink);
  border-color: var(--v2-ink);
  outline: none;
  opacity: 0.7;
}
.v2-nav-cta:active { opacity: 0.55; }
.v2-nav-cta > span:last-child {
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.85;
  transform: translateY(-0.5px);
}
.v2-nav-cta:hover > span:last-child { opacity: 1; }

/* Language switcher — utility tone, subtler than primary nav */
.v2-lang {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--v2-ink-quiet);
  gap: 8px;
}
.v2-lang button { font-weight: 400; opacity: 0.7; transition: color var(--v2-dur) var(--v2-ease), opacity var(--v2-dur) var(--v2-ease); }
.v2-lang button:hover { opacity: 1; }
.v2-lang button.active { color: var(--v2-ink); font-weight: 500; opacity: 1; }
.v2-lang > span { opacity: 0.45; }

/* ============================================================
   Homepage makeover — editorial subheaders, KPI list,
   contact invite line, pillars CTA
   ============================================================ */

/* Small editorial kicker above the hero KPI strip. */
.v2-glance-head {
  margin: 72px 0 28px;
}
.v2-glance-head .v2-eyebrow { display: inline-flex; }

/* Section 05 — Scale: small editorial intro above the KPI list. */
.v2-scale-intro {
  margin: 0 0 40px;
}
.v2-scale-intro .v2-eyebrow { display: inline-flex; }

/* Editorial eyebrow — mirrors the kicker visual language but isn't subject
   to the global .v2-section-kicker { display:none !important; } reset. */
.v2-eyebrow {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  color: var(--v2-ink-mute);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.v2-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--v2-line);
}

/* Editorial KPI list — number left, description right, rows stacked.
   Replaces the 4-column dense grid for a calmer, more architectural reading. */
.v2-scale--editorial {
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}
.v2-scale--editorial .v2-scale-cell {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: 36px 0;
  border-right: 0;
  border-bottom: 1px solid var(--v2-line-soft);
}
.v2-scale--editorial .v2-scale-cell:first-child { padding-top: 0; }
.v2-scale--editorial .v2-scale-cell:last-child { border-bottom: 0; padding-bottom: 0; }
.v2-scale--editorial .v2-scale-num {
  flex: 0 0 auto;
  min-width: clamp(220px, 28%, 340px);
  line-height: 1;
}
.v2-scale--editorial .v2-scale-lab {
  flex: 1 1 auto;
  max-width: 56ch;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .v2-scale--editorial .v2-scale-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 0;
  }
  .v2-scale--editorial .v2-scale-num { min-width: 0; }
}

/* Section 08 — Principles: subtle next-step CTA beneath the four cards. */
.v2-pillars-foot {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
/* Quiet variant of the ghost button — slightly smaller and finer
   so it reads as a subtle continuation, not a primary CTA. */
.v2-btn-quiet {
  height: 52px;
  padding: 0 32px;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  transition: background var(--v2-dur) var(--v2-ease),
              border-color var(--v2-dur) var(--v2-ease);
}
.v2-btn-quiet:hover,
.v2-btn-quiet:focus-visible {
  background: var(--v2-ink);
  color: var(--v2-paper);
  border-color: var(--v2-ink);
}
.v2-btn-quiet .v2-btn-arr {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.85;
}
.v2-btn-quiet:hover .v2-btn-arr { opacity: 1; }

/* Section 09 — Contact: elegant invite line between headline and lede. */
.v2-contact-invite {
  margin: 22px auto 0;
  text-align: center;
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.005em;
  color: var(--v2-ink);
  text-wrap: balance;
}

/* ============================================================
   Iteration — May 2026 refinements
   - Top nav stays beige under all states (no black flash)
   - Removes hairlines around the hero KPI strip and scale section
   - Brings the brand-message product caps closer to the message
   - Restyles the leistungen statement as a quiet editorial line
   ============================================================ */

/* Top bar — never darken on hover / active / focus / tap.
   Removes browser tap-highlight and any framework pressed state.
   The light beige (when scrolled) is the only background it ever shows. */
.v2-nav,
.v2-nav *,
.v2-nav a,
.v2-nav button {
  -webkit-tap-highlight-color: transparent;
}
.v2-nav,
.v2-nav-inner,
.v2-nav-links a,
.v2-nav-burger,
.v2-lang button,
.v2-nav-search-btn {
  background-color: transparent;
}
.v2-nav:hover,
.v2-nav:focus-within,
.v2-nav:active {
  background-color: transparent;
}
.v2-nav.is-scrolled,
.v2-nav.is-scrolled:hover,
.v2-nav.is-scrolled:focus-within,
.v2-nav.is-scrolled:active {
  background: rgba(236, 231, 221, 0.85);
}
/* Smooth, modern transitions on every nav interactive element */
.v2-nav-links a,
.v2-lang button,
.v2-nav-search-btn,
.v2-wordmark {
  transition:
    color 220ms cubic-bezier(0.32, 0.72, 0.32, 1),
    opacity 220ms cubic-bezier(0.32, 0.72, 0.32, 1),
    transform 220ms cubic-bezier(0.32, 0.72, 0.32, 1);
}
/* Subtle active feedback — no black, just a whisper of opacity */
.v2-nav-links a:active,
.v2-lang button:active,
.v2-nav-search-btn:active,
.v2-wordmark:active {
  opacity: 0.7;
  background: transparent !important;
}
.v2-nav-links a:focus,
.v2-nav-links a:focus-visible,
.v2-lang button:focus,
.v2-lang button:focus-visible,
.v2-nav-search-btn:focus,
.v2-nav-search-btn:focus-visible {
  outline: none;
  background: transparent !important;
}
/* CTA pill in nav — Dashboard.pdf v4: link-style, no rectangle. Active
   state is just an additional opacity dip; no background fill at all. */
.v2-nav-cta:active {
  background: transparent;
  opacity: 0.55;
}

/* Dashboard (index) — remove the hairline directly ABOVE the "1.700+"
   KPI strip in the hero. Spacing above is preserved by padding. */
.v2-hero-foot {
  border-top: 0;
  /* Bottom-align the four KPI cells so the numbers and "+" signs sit on
     one common baseline even when a key label wraps to two lines. */
  align-items: end;
}

/* Dashboard (index) — remove the hairline directly BELOW the "Keine
   Investitionen auf Eigentümerseite erforderlich." cell. */
.v2-scale {
  border-bottom: 0;
}

/* Über uns — Team grid with only two members: keep the original card
   width, distribute evenly and centre the pair. */
.v2-team--duo {
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
}
@media (max-width: 820px) {
  .v2-team--duo {
    grid-template-columns: minmax(0, 380px);
    justify-content: center;
  }
}

/* Über uns — company-quote placeholder tile (replaces a team member).
   Reuses the member 4/5 box so it aligns perfectly with the CEO card. */
.v2-member--quote .v2-member-quote-box {
  aspect-ratio: 4/5;
  border: 1px solid var(--v2-line-soft);
  background:
    linear-gradient(180deg, rgba(218,211,197,0.18) 0%, rgba(180,172,151,0.28) 100%),
    var(--v2-paper-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px;
  text-align: center;
}
.v2-member-quote-mark {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: 96px;
  line-height: 0.6;
  color: var(--v2-ink);
  opacity: 0.32;
}
.v2-member-quote-text {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin: 8px 0 0;
}

/* Über uns — free-standing company pull-quote (no box / no fill),
   vertically centred against the CEO photo in the two-column grid. */
.v2-member--quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v2-member-pullquote {
  margin: 0;
  padding: 8px 8px 8px 0;
}
.v2-member-pullquote-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--v2-sand, #b4ac97);
  margin-bottom: 28px;
}
.v2-member-pullquote-text {
  font-family: var(--v2-font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--v2-ink);
  margin: 0;
  text-wrap: pretty;
}
.v2-member-pullquote-by {
  margin-top: 28px;
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}

/* Dashboard (index) — Section 02: the four product caps
   (PREMIUM HARDWARE / SCALABLE NETWORK / INTELLIGENT PLATFORM /
   MEASURABLE IMPACT). Per Dashboard.pdf v3: REMOVE the top
   hairline entirely (keep the section above breathing), give
   labels more vertical air, and let the bottom rule on the
   section frame do the work. */
.v2-prod-caps {
  margin-top: 56px;
  padding-top: 72px;
  padding-bottom: 56px;
  border-top: 0;
}

/* Dashboard (index) — Section 05 (Scale): per Dashboard_2.pdf the
   top hairline above "1.700+" must be REMOVED completely (Dashboard.pdf
   v3 had asked to soften it; v4 asks to drop it entirely). */
.v2-page[data-screen-label="05 Scale"] .v2-scale {
  border-top: 0;
}
.v2-scale--editorial .v2-scale-cell {
  gap: 64px;
}
.v2-scale--editorial .v2-scale-num {
  min-width: clamp(280px, 34%, 420px);
}
@media (max-width: 720px) {
  .v2-scale--editorial .v2-scale-cell { gap: 16px; }
  .v2-scale--editorial .v2-scale-num { min-width: 0; }
}

/* Dashboard (index) — Section 09 (Contact): per Dashboard_2.pdf the
   "STANDORTPRÜFUNG ANFRAGEN" submit button must sit horizontally
   centred to the entire content width, not flush-left. */
.v2-contact .v2-form-actions {
  justify-content: center;
  margin-top: 32px;
}

/* Leistungen — Dashboard_2.pdf: the second intro block (above the
   service list "L2 Services") should breathe more between headline
   and body and then sit visually closer to the service overview
   below. Slight column-gap bump + reduced bottom margin does both. */
.v2-page[data-screen-label="L2 Services"] .v2-section-head {
  column-gap: 96px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .v2-page[data-screen-label="L2 Services"] .v2-section-head {
    margin-bottom: 40px;
  }
}

/* Dashboard (index) — Section 09 (Contact): when the Berlin
   block is removed, center the remaining single contact column
   so it doesn't sit awkwardly on the left edge of the grid. */
.v2-contact-info--single {
  grid-template-columns: auto;
  justify-content: center;
  text-align: center;
}

/* Leistungen — quiet editorial pull, no rules above/below */
.v2-pull.v2-pull--quiet {
  border-top: 0;
  border-bottom: 0;
  text-align: center;
  margin: 96px auto;
  max-width: 880px;
  padding: 24px 0;
}
.v2-pull.v2-pull--quiet .v2-pull-body {
  max-width: none;
  text-wrap: balance;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--v2-ink);
}
.v2-pull.v2-pull--quiet .v2-pull-attr {
  margin-top: 28px;
  opacity: 0.5;
  font-size: 10px;
  letter-spacing: 0.22em;
}

/* Prozess — Dashboard.pdf v3: process step dividers — soft taupe top
   on the first step, no hairline below the last step. */
.v2-process-v-step:first-child {
  border-top-color: var(--v2-line-soft);
}
.v2-process-v-step:last-child {
  border-bottom: 0;
}

/* ============================================================
   Dashboard_3.pdf — unified hero spacing across the site
   ============================================================
   The Prozess and Referenzen page heroes used to sit very far
   down the viewport (min-height: 70vh + align-items: flex-end
   on .v2-pagehero), making the headline feel disconnected from
   the navigation. The Über-uns hero felt the opposite — tight
   and cramped. Per Dashboard_3.pdf, align all three so the hero
   matches the calm, top-anchored treatment of the Leistungen
   page: compact top padding, flex-start alignment, no forced
   viewport-height minimum. This affects every .v2-pagehero
   instance, which is the desired consistency. */
.v2-pagehero {
  padding-top: 64px;
  padding-bottom: 180px;
  /* Dashboard_5.pdf — shared height floor so the closing hairline of
     every sub-page hero (Leistungen, Prozess, Referenzen, Über uns …)
     lands on the same vertical position. Heroes stay top-anchored;
     this only extends the empty space below the headline on the
     pages whose headline takes fewer lines. */
  min-height: 600px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .v2-pagehero {
    padding-top: 40px;
    padding-bottom: 60px;
    min-height: 0;
  }
}

/* Prozess — Dashboard_3.pdf: process-phase titles
   ("Potenzialanalyse", "Werberecht & Genehmigung", etc.) should
   pick up the heavier display scale used by service titles on
   the Leistungen page. Same family + weight already; only the
   font-size needs to rise to match clamp(28px, 3vw, 44px). */
.v2-process-v-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

/* Prozess — Dashboard_3.pdf: more vertical breathing between
   the hero ("Fünf Phasen. Ein Lebenszyklus.") and the first
   steps section ("Vom ersten Termin bis zur quartalsweisen…"). */
.v2-page.compact[data-screen-label="P1 Hero"] + .v2-page[data-screen-label="P2 Steps"] {
  padding-top: 120px;
}
.v2-page.compact[data-screen-label="P1 Hero"] + .v2-page[data-screen-label="P2 Steps"] .v2-section {
  padding-top: 120px;
}

/* Referenzen — Dashboard_3.pdf: more vertical breathing between
   the hero ("Anlagen, die real laufen.") and the cases section
   below it. */
.v2-page.compact[data-screen-label="R1 Hero"] + .v2-page[data-screen-label="R2 Cases"] {
  padding-top: 120px;
}
.v2-page.compact[data-screen-label="R1 Hero"] + .v2-page[data-screen-label="R2 Cases"] .v2-section {
  padding-top: 120px;
}
/* Referenzen — Dashboard_3.pdf: more vertical breathing above
   the Partner Wall section ("Partner, Kunden, Eigentümer."). */
.v2-page[data-screen-label="R2 Cases"] + .v2-page[data-screen-label="R3 Partner Wall"] {
  padding-top: 120px;
}
.v2-page[data-screen-label="R2 Cases"] + .v2-page[data-screen-label="R3 Partner Wall"] .v2-section {
  padding-top: 120px;
}

/* ============================================================
   Dashboard_3.pdf — Partner / Client logo wall: brand color
   ============================================================
   The text-mark logos lived entirely in ink. Per Dashboard_3.pdf
   each should pick up its brand color while staying harmonious
   with the warm-beige page surround. Colors are applied tonally,
   not at full saturation, so the wall reads premium and unified
   instead of like a stock partner grid. */
.v2-logo-mark.v2-logo-flink    { color: #FF3D8A; }
.v2-logo-mark.v2-logo-flink .dot { color: #FF3D8A; }
.v2-logo-mark.v2-logo-stroeer  { color: #E94E1B; }
.v2-logo-mark.v2-logo-blowup   { color: #C8102E; }
.v2-logo-mark.v2-logo-justeat  { color: #FF8000; }
.v2-logo-mark.v2-logo-zalando  { color: #FF6900; }
.v2-logo-mark.v2-logo-iph      { color: #B8923E; }
.v2-logo-mark.v2-logo-garbe    { color: #1F3C6E; }
.v2-logo-mark.v2-logo-aach     { color: #1F6638; }
.v2-logo-mark.v2-logo-awk      { color: #1F4E8C; }
.v2-logo-mark.v2-logo-ppds     { color: #0066CC; }
.v2-logo-mark.v2-logo-tpvision { color: #0066CC; }
.v2-logo-mark.v2-logo-esp      { color: #003E7E; }
.v2-logo-mark.v2-logo-fdp      { color: #E5007D; background: var(--v2-ink); padding: 14px 18px; }
.v2-logo-mark.v2-logo-fdp .fdp-dot { color: #FFED00; }
.v2-logo-mark.v2-logo-rhein    { color: #6F4F9A; }
.v2-logo-mark.v2-logo-retail   { color: #2E7D5E; }
.v2-logo-mark.v2-logo-outsite  { color: #2A2B2C; }
.v2-logo-mark.v2-logo-ultra    { color: #C2185B; }
.v2-logo-mark.v2-logo-dpw      { color: #1F3C6E; }
.v2-logo-mark.v2-logo-rt       { color: var(--v2-paper); background: #C8102E; }
/* keep all secondary text (small/captions) at quiet ink so the
   color stays focused on the wordmark itself. */
.v2-logo-mark.v2-logo-awk small,
.v2-logo-mark.v2-logo-iph small,
.v2-logo-mark.v2-logo-outsite small,
.v2-logo-mark.v2-logo-justeat small,
.v2-logo-mark.v2-logo-rhein small,
.v2-logo-mark.v2-logo-ultra small,
.v2-logo-mark.v2-logo-esp small,
.v2-logo-mark.v2-logo-garbe small {
  color: var(--v2-ink-mute);
}

/* ============================================================
   Nav dropdown — "Leistungen" with sub-items (DOOH-Beratung).
   Desktop: hover/focus panel. Mobile drawer: inline sub-links.
   ============================================================ */
.v2-nav-group { position: relative; display: inline-flex; align-items: center; }
.v2-nav-dd {
  position: absolute;
  top: 100%; left: -16px;
  min-width: 220px;
  padding: 10px 0;
  margin-top: 14px;
  background: rgba(236,231,221,0.97);
  backdrop-filter: saturate(140%) blur(12px);
  border: 1px solid var(--v2-line-faint);
  box-shadow: 0 18px 40px -24px rgba(12,13,14,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--v2-dur) var(--v2-ease), transform var(--v2-dur) var(--v2-ease), visibility var(--v2-dur);
  z-index: 30;
}
.v2-nav-group:hover .v2-nav-dd,
.v2-nav-group:focus-within .v2-nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.v2-nav-dd a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--v2-ink-mute);
  white-space: nowrap;
}
.v2-nav-dd a::after { display: none; }
.v2-nav-dd a:hover,
.v2-nav-dd a.active { color: var(--v2-ink); }

@media (max-width: 900px) {
  .v2-nav-group { display: block; width: 100%; }
  .v2-nav-dd {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    min-width: 0; margin: 0; padding: 0;
    background: none; backdrop-filter: none;
    border: none; box-shadow: none;
  }
  .v2-nav-dd a {
    font-family: var(--v2-font-display);
    font-weight: 300;
    font-size: 22px;
    color: var(--v2-ink-mute);
    padding: 8px 0 8px 20px;
    white-space: normal;
  }
}

/* ============================================================
   Leistungen sub-pages — added patterns
   ============================================================ */

/* Media-Investitionen: the scope list sits in a non-final .v2-page,
   so the page's own bottom rule already separates it from the
   "Ablauf" section. Drop the list's own closing rule so only ONE
   divider remains (matching the single inter-page rule elsewhere). */
.v2-srvc-list--no-end-rule .v2-srvc-row:last-child { border-bottom: 0; }

/* Vermarktung: 2×2 card raster (same tile style as the
   Leistungsübersicht value grid, two columns instead of three). */
.v2-values--quad { grid-template-columns: 1fr 1fr; }
@media (max-width: 760px) { .v2-values--quad { grid-template-columns: 1fr; } }

/* Analoge Werbeflächen: staggered two-column blocks, alternating
   alignment, separated by hairline rules — deliberately NOT a
   numbered list. */
.v2-stagger {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--v2-line-soft);
}
.v2-stagger-block {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--v2-line-soft);
  align-items: start;
}
.v2-stagger-block:nth-child(even) { direction: rtl; }
.v2-stagger-block:nth-child(even) > * { direction: ltr; }
.v2-stagger-block:nth-child(even) .v2-stagger-title { text-align: right; }
/* Aligned variant — all blocks same orientation (title left, body right), no zigzag */
.v2-stagger--aligned .v2-stagger-block:nth-child(even) { direction: ltr; }
.v2-stagger--aligned .v2-stagger-block:nth-child(even) .v2-stagger-title { text-align: left; }
.v2-stagger-title {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--v2-ink);
  margin: 0;
  text-wrap: balance;
}
.v2-stagger-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--v2-ink-soft);
  text-wrap: pretty;
  margin: 0;
}
@media (max-width: 900px) {
  .v2-stagger-block,
  .v2-stagger-block:nth-child(even) { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; direction: ltr; }
  .v2-stagger-block:nth-child(even) .v2-stagger-title { text-align: left; }
}

/* "Für wen geeignet?" — compact label + tag list */
.v2-fit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 48px;
}
.v2-fit-label {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  display: inline-flex; align-items: center; gap: 14px;
}
.v2-fit-label::before { content: ''; width: 28px; height: 1px; background: var(--v2-line); }
.v2-fit .v2-srvc-tags { margin-top: 0; }

/* Analoge Werbeflächen: vertical timeline (Zeitstrahl) — a continuous
   rail on the left, four stations top to bottom, each with a subtle
   sand-tone marker, a step number, the title and the description. */
.v2-rail { position: relative; display: grid; gap: 0; max-width: 920px; }
.v2-rail-step { position: relative; padding: 0 0 56px 56px; }
.v2-rail-step:last-child { padding-bottom: 0; }
/* Marker — subtle sand dot, with a paper ring masking the rail behind. */
.v2-rail-step::before {
  content: '';
  position: absolute;
  left: 1px; top: 1px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--v2-line);
  box-shadow: 0 0 0 5px var(--v2-paper);
  z-index: 1;
}
/* Connecting rail segment down to the next station. */
.v2-rail-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px; top: 1px; bottom: 0;
  width: 1px;
  background: var(--v2-line-soft);
}
.v2-rail-num {
  font-family: var(--v2-font-mono);
  font-size: 11px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  line-height: 1;
  margin-bottom: 16px;
}
.v2-rail-title {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--v2-ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.v2-rail-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--v2-ink-soft);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}
@media (max-width: 720px) {
  .v2-rail-step { padding-left: 44px; padding-bottom: 44px; }
}

/* Leistungsübersicht — interactive accordion tiles (scoped, so the
   careers/about .v2-value grids stay unchanged). */
.v2-values--accordion { row-gap: 80px; column-gap: 40px; }
.v2-values--accordion .v2-value { align-self: start; padding-top: 32px; }
/* Collapsed tiles show only the title (+ toggle); the explanatory text
   lives in the expanding panel, so nothing is shown twice. */
.v2-values--accordion .v2-value-body { display: none; }
.v2-values--accordion .v2-value-head {
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}
.v2-values--accordion .v2-value-head .v2-value-title { margin: 0; min-height: 3.4em; text-wrap: pretty; transition: color var(--v2-dur) var(--v2-ease); }
.v2-values--accordion .v2-value-head:hover .v2-value-title { color: var(--v2-ink-mute); }
/* Toggle glyph — a thin plus that becomes a minus when open. */
.v2-values--accordion .v2-value-toggle {
  flex: 0 0 14px;
  width: 14px; height: 14px;
  position: relative;
  margin-top: 6px;
}
.v2-values--accordion .v2-value-toggle::before,
.v2-values--accordion .v2-value-toggle::after {
  content: '';
  position: absolute;
  background: var(--v2-ink);
}
.v2-values--accordion .v2-value-toggle::before { left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-50%); }
.v2-values--accordion .v2-value-toggle::after {
  top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%);
  transition: transform var(--v2-dur) var(--v2-ease), opacity var(--v2-dur) var(--v2-ease);
}
.v2-values--accordion .v2-value.is-open .v2-value-toggle::after { transform: translateX(-50%) scaleY(0); opacity: 0; }
.v2-values--accordion .v2-value-head:hover .v2-value-toggle::before,
.v2-values--accordion .v2-value-head:hover .v2-value-toggle::after { background: var(--v2-ink-mute); }
/* Expanding detail panel — open state is pure CSS (can't get stuck);
   the Web Animations API adds the smooth height tween in JS. */
.v2-values--accordion .v2-value-more {
  overflow: hidden;
  max-height: 0;
}
.v2-values--accordion .v2-value.is-open .v2-value-more { max-height: none; }
.v2-values--accordion .v2-value-more-inner { }
.v2-values--accordion .v2-value-more p {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--v2-line-faint);
  font-size: 14px;
  line-height: 1.6;
  color: var(--v2-ink-soft);
}
@media (prefers-reduced-motion: reduce) {
  .v2-values--accordion .v2-value-toggle::after { transition: none; }
}
@media (max-width: 760px) {
  .v2-values--accordion { row-gap: 32px; }
  .v2-values--accordion .v2-value-head .v2-value-title { min-height: auto; }
}

/* ============================================================
   Media-Investitionen — horizontal process timeline (MI3).
   Continuous hairline with markers, large step numbers; wraps to
   a left-rail vertical timeline on mobile.
   ============================================================ */
.v2-tl {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 48px;
  border-top: 1px solid var(--v2-line);
  position: relative;
}
.v2-tl-step {
  position: relative;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* marker dot sitting on the top line */
.v2-tl-step::before {
  content: '';
  position: absolute;
  top: -5px; left: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--v2-ink);
}
.v2-tl-num {
  font-family: var(--v2-font-display);
  font-weight: 200;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--v2-ink);
  font-variant-numeric: tabular-nums;
}
.v2-tl-label {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
  margin-top: 4px;
}
.v2-tl-title {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  margin: 0;
  text-wrap: balance;
}
.v2-tl-body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--v2-ink-soft);
  margin: 0;
  text-wrap: pretty;
}
/* Tablet — two per row */
@media (max-width: 980px) and (min-width: 721px) {
  .v2-tl { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
}
/* Mobile — vertical left-rail timeline */
@media (max-width: 720px) {
  .v2-tl {
    grid-template-columns: 1fr;
    column-gap: 0;
    border-top: 0;
    border-left: 1px solid var(--v2-line);
  }
  .v2-tl-step { padding: 0 0 40px 32px; }
  .v2-tl-step:last-child { padding-bottom: 0; }
  .v2-tl-step::before { top: 4px; left: -5px; }
}

/* Presse — press-contact: 2-col intro (headline left, text right) with a
   refined mail box below, aligned to the description column. */
.v2-press-box-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  margin-top: 44px;
}
.v2-press-box {
  grid-column: 2;
  border: 1px solid var(--v2-line);
  background: var(--v2-paper-warm);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v2-press-box-key {
  font-family: var(--v2-font-mono);
  font-size: 10px;
  letter-spacing: var(--v2-mono-ls);
  text-transform: uppercase;
  color: var(--v2-ink-mute);
}
.v2-press-box-mail {
  font-family: var(--v2-font-display);
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  letter-spacing: -0.02em;
  color: var(--v2-ink);
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  width: max-content;
  max-width: 100%;
  transition: gap var(--v2-dur) var(--v2-ease), opacity var(--v2-dur) var(--v2-ease);
}
.v2-press-box-mail span { font-size: 0.62em; color: var(--v2-ink-mute); }
.v2-press-box-mail:hover { gap: 24px; opacity: 0.8; }
@media (max-width: 900px) {
  .v2-press-box-wrap { grid-template-columns: 1fr; gap: 0; }
  .v2-press-box { grid-column: 1; padding: 30px 28px; }
}

/* Kontakt — soften the contact-switch grid into calm editorial cards
   (no boxy dividers): each option carries a thin top rule and spacing. */
.v2-channels--soft {
  border-top: 0;
  border-bottom: 0;
  column-gap: 48px;
  row-gap: 40px;
}
.v2-channels--soft .v2-channel {
  border-right: 0;
  border-top: 1px solid var(--v2-line);
  padding: 26px 0 0;
}
.v2-channels--soft .v2-channel-cta { border-top: 0; }
.v2-channels--soft .v2-channel-cta a { border-bottom: 1px solid transparent; transition: border-color var(--v2-dur) var(--v2-ease); }
.v2-channels--soft .v2-channel:hover .v2-channel-cta a { border-bottom-color: var(--v2-ink); }
@media (max-width: 900px) {
  .v2-channels--soft .v2-channel { border-bottom: 0; }
}


/* ---------- CMS-Inhalte auf der Website (Insights, Presse, Projekte, Jobs) ---------- */
.cms-projekt-body { font-size: 16px; line-height: 1.7; }
  .cms-projekt-body h2 { font-size: 26px; margin: 40px 0 14px; }
  .cms-projekt-body h3 { font-size: 20px; margin: 30px 0 10px; }
  .cms-projekt-body p { margin: 0 0 16px; }
  .cms-projekt-body ul, .cms-projekt-body ol { margin: 0 0 16px; padding-left: 24px; }
  .cms-projekt-body li { margin-bottom: 6px; }
  .cms-projekt-body blockquote { border-left: 3px solid var(--v2-ink, #111); margin: 0 0 16px; padding: 6px 0 6px 18px; color: var(--v2-ink-mute, #555); }
