/* ==========================================================================
   Steuerkanzlei Stahlecker · Karriere
   Visuelle Identität: Editorial / Old-Money mit § als Leitmotiv
   - Asymmetrische Splits, nummerierte Sektionen (§ 01 …)
   - Cream-warmer Hintergrund statt cleanes Weiß
   - Rot sparsamer als Akzent (kein Rot-Spam)
   - Top-Bar mit Trust-Signal, separater Hauptheader
   ========================================================================== */

:root {
  /* Stahlecker bestätigte Primärfarbe */
  --red: #7F0000;
  --red-deep: #5C0000;
  --red-soft: rgba(127, 0, 0, 0.06);
  --red-line: rgba(127, 0, 0, 0.16);

  /* Sekundärfarbe Slate-Petrol – Komplementär zu Bordeaux,
     leitet sich aus den BWA-Chart-Farben (#1890d7) der Originalseite ab,
     ruhiger gestimmt für Editorial-Feeling */
  --slate: #2D4A5C;
  --slate-2: #3F6B82;
  --slate-soft: rgba(45, 74, 92, 0.08);

  --ink: #14171C;
  --ink-2: #2C2C2C;
  --muted: #5A6068;
  --muted-2: #8A8E94;

  /* Off-White-Skala – neutral statt cremig (kein Gelb-Stich) */
  --paper: #FBFAF7;
  --paper-2: #F4F1EC;
  --paper-3: #E9E5DD;
  --line: #DAD5CB;
  --line-soft: #ECE7DD;
  --white: #FFFFFF;

  --font-display: "Spectral", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  --container: 1240px;
  --container-narrow: 920px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.10);

  --topbar-h: 36px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red-deep); }

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

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); }
.section { padding: 120px 0; }
.section--tight { padding: 70px 0; }
.section--white { background: var(--white); }
.section--paper2 { background: var(--paper-2); }
.section--ink { background: var(--ink); color: #fff; }

/* ---------- Typography ---------- */
.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.08; }
h1.display { font-size: clamp(36px, 4.6vw, 60px); font-weight: 500; }
h2.display { font-size: clamp(30px, 3.8vw, 50px); font-weight: 500; }
h3.display { font-size: clamp(24px, 2.4vw, 32px); font-weight: 500; }

.section-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.section-num::before {
  content: "§";
  font-size: 22px;
  color: var(--red);
  line-height: 1;
}
.section-num__divider {
  display: inline-block;
  margin: 0 2px;
  color: currentColor;
}
.section-num__divider::before {
  content: "·";
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-block;
}
.eyebrow--white { color: rgba(255,255,255,0.9); }

.lead {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.5vw, 22px);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
}

.section-head { max-width: 760px; margin: 0 auto 64px; }
.section-head--center { text-align: center; }
.section-head .section-num { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .lead { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn,
a.btn,
button.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px;
  padding: 16px 28px !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px !important;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  border-radius: 0;
  line-height: 1;
  min-height: 48px;
}
.btn--primary,
a.btn--primary {
  background: var(--red) !important;
  color: #fff !important;
  border-color: var(--red) !important;
  box-shadow: 0 2px 0 var(--red-deep), 0 6px 18px rgba(127,0,0,0.22);
}
.btn--primary:hover,
a.btn--primary:hover {
  background: var(--red-deep) !important;
  border-color: var(--red-deep) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
.btn--ink,
a.btn--ink {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
}
.btn--ink:hover { background: #000; }
.btn--ghost,
a.btn--ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff !important; }
.btn--white,
a.btn--white {
  background: #fff;
  color: var(--red-deep) !important;
  border-color: #fff;
}
.btn--white:hover { background: var(--paper); }
.btn--outline-white,
a.btn--outline-white {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--lg,
a.btn--lg { padding: 20px 36px !important; font-size: 16px !important; min-height: 56px; }

.btn .arrow { transition: transform .25s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- TOP-BAR ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--topbar-h);
}
.topbar__left,
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #E8E4D9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.topbar__badge::before {
  content: "★";
  color: #E8E4D9;
}
.topbar__sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.18);
}
.topbar a {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.topbar a:hover { color: #fff; }
.topbar svg { width: 12px; height: 12px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.05); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 16px 28px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 32px;
  min-height: var(--header-h);
}
.brand img { height: 48px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .25s ease;
}
.nav a:hover { color: var(--red); }
.nav a:hover::after { width: 100%; }
.nav a.is-active { color: var(--red); }
.nav a.is-active::after { width: 100%; }

/* Header CTA – eigene Klasse, nicht via .nav a übersteuerbar */
.header-cta {
  /* erbt von .btn .btn--primary, alle wichtigen Properties via !important */
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
}

/* ---------- HERO (asymmetrischer Split) ---------- */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 64px;
}
.hero__text {
  padding: 60px 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}
.hero__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__num::before {
  content: "§";
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.hero h1 {
  margin-bottom: 28px;
  color: var(--ink);
}
.hero h1 em {
  font-style: italic;
  color: var(--red-deep);
  font-weight: 400;
}
.hero .subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero p.body {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  display: flex;
  align-items: stretch;
}
.hero__media-frame {
  position: relative;
  flex: 1;
  margin: 50px 0;
  background: var(--ink);
  overflow: hidden;
}
.hero__media-frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(105%);
}
.hero__media-frame::after {
  content: "";
  position: absolute;
  top: -16px; right: -16px;
  bottom: 16px; left: 16px;
  border: 2px solid var(--red);
  z-index: -1;
}
.hero__credit {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,26,26,0.78);
  color: rgba(255,255,255,0.95);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  font-weight: 600;
}

/* ---------- KPI BANNER (inspiriert von Stripe Careers) ---------- */
.kpi-banner {
  background: var(--ink);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.kpi-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
}
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.kpi {
  padding: 0 36px;
  border-left: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kpi:first-child { border-left: 0; padding-left: 0; }
.kpi__num {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.kpi__num em {
  font-style: italic;
  color: #E8E4D9;
  font-size: 0.7em;
  font-weight: 400;
  margin-left: 4px;
}
.kpi__label {
  font-size: 13px;
  color: rgba(255,255,255,0.70);
  line-height: 1.45;
  letter-spacing: 0.02em;
  max-width: 220px;
}
.kpi__label strong { color: #fff; font-weight: 600; }

/* ---------- STATEMENT (großes Editorial-Quote) ---------- */
.statement {
  padding: 140px 0;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "„";
  position: absolute;
  top: 60px;
  left: 8%;
  font-family: var(--font-display);
  font-size: 320px;
  color: var(--red);
  opacity: 0.10;
  line-height: 0.8;
  font-weight: 600;
  pointer-events: none;
}
.statement__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.statement__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.statement__eyebrow::before {
  content: "";
  width: 32px; height: 1px; background: var(--slate);
}
.statement__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
}
.statement__quote em { color: var(--red-deep); font-style: italic; font-weight: 500; }
.statement__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.statement__author-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--red);
  flex-shrink: 0;
}
.statement__author-photo img { width: 100%; height: 100%; object-fit: cover; }
.statement__author-text {
  display: flex;
  flex-direction: column;
}
.statement__author-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.statement__author-role {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--white);
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}
.trust-strip__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  width: 100%;
  text-align: center;
}
.trust-seal { position: relative; height: 92px; display: flex; align-items: center; }
.trust-seal img { max-height: 92px; width: auto; filter: grayscale(15%); transition: all .25s ease; }
.trust-seal:hover img { filter: none; transform: scale(1.04); }
.trust-seal__tooltip {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  padding: 6px 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.trust-seal:hover .trust-seal__tooltip { opacity: 1; }
.trust-strip__caption {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.trust-strip__caption strong { color: var(--ink); }

/* ---------- JOB CARDS ---------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.job-card__num {
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--paper-3);
  line-height: 1;
}
.job-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.job-card:hover .job-card__num { color: var(--red-soft); }
.job-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta svg { width: 12px; height: 12px; color: var(--red); }
.job-card__teaser { color: var(--ink-2); flex: 1; font-size: 15.5px; }
.job-card__cta {
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.job-card__cta:hover { color: var(--red); border-bottom-color: var(--red); gap: 12px; }

.section-cta { text-align: center; margin-top: 64px; }

/* ---------- TWO-COL ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 88px;
  align-items: center;
}
.two-col--reverse > :first-child { order: 2; }
.two-col__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink);
}
.two-col__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.two-col__media::after {
  content: "";
  position: absolute;
  top: -18px; left: -18px;
  bottom: 18px; right: 18px;
  border: 2px solid var(--red);
  z-index: -1;
}
.two-col__text .section-num { margin-bottom: 18px; }
.two-col__text h2 { margin-bottom: 28px; }
.two-col__text p { margin-bottom: 20px; font-size: 17px; }
.two-col__text .btn { margin-top: 12px; }
.two-col__text strong { color: var(--ink); font-weight: 600; }

/* ---------- PERSONA CARDS (mit Bild oben) ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.persona-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.persona-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.persona-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-2);
  position: relative;
}
.persona-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.persona-card:hover .persona-card__photo img { transform: scale(1.05); }
.persona-card__num {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}
.persona-card__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.persona-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}
.persona-card p { font-size: 15px; color: var(--ink-2); flex: 1; line-height: 1.55; }
.persona-card__cta {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 3px;
}
.persona-card:hover .persona-card__cta { color: var(--red); border-bottom-color: var(--red); gap: 12px; }

/* ---------- TRUSTED ADVISORS ---------- */
.advisor-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.advisor-map {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px;
  position: relative;
}
.advisor-map__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.advisor-map__title svg { width: 24px; height: 24px; color: var(--red); }
.locations { display: flex; flex-wrap: wrap; gap: 8px; }
.location-chip {
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.location-chip--main {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.location-chip__dot {
  width: 5px; height: 5px;
  background: var(--red);
  display: inline-block;
}
.location-chip--main .location-chip__dot { background: #E8E4D9; }
.advisor-badge {
  margin-top: 26px;
  padding: 22px 24px;
  background: var(--paper);
  border-left: 3px solid var(--red);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 30px;
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.benefit:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.benefit__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.benefit__icon {
  width: 48px; height: 48px;
  background: var(--slate-soft);
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s ease;
}
.benefit__icon svg { width: 24px; height: 24px; stroke-width: 1.6; }
.benefit:hover .benefit__icon {
  background: var(--red);
  color: #fff;
}
.benefit__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-2);
  letter-spacing: 0.06em;
}
.benefit h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}
.benefit p { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

/* ---------- STORIES ---------- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .3s ease;
}
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--ink); }
.story-card__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.story-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.story-card:hover .story-card__media img { transform: scale(1.04); }
.story-card__body { padding: 30px; }
.story-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}
.story-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 6px 0 18px;
}
.story-card__quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid var(--red);
}
.story-card__cta {
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.story-card__cta:hover { color: var(--red); border-bottom-color: var(--red); gap: 12px; }

/* ---------- DIGITAL ---------- */
.digital {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.digital__list {
  list-style: none;
  margin-top: 32px;
}
.digital__list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  color: var(--ink);
  font-size: 16px;
}
.digital__list li:last-child { border-bottom: 0; }
.digital__list li::before {
  content: "✓";
  width: 28px; height: 28px;
  background: var(--ink);
  color: #E8E4D9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.eyecatcher {
  display: block;
  width: fit-content;
  padding: 6px 14px;
  background: var(--ink);
  color: #E8E4D9;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ---------- TIMELINE ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step__num {
  width: 60px; height: 60px;
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.step__time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ---------- CONTACT CARD ---------- */
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 56px 48px;
  text-align: center;
  position: relative;
}
.contact-card::before {
  content: "§";
  position: absolute;
  top: 20px; right: 30px;
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--paper-3);
  font-weight: 500;
  line-height: 1;
}
.contact-card__photo {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 26px;
  border: 3px solid var(--paper-2);
  box-shadow: 0 0 0 1px var(--red);
}
.contact-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.contact-card__name {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
}
.contact-card__role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 6px 0 24px;
}
.contact-card__quote {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.5;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card__contacts {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.contact-card__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}
.contact-card__contacts a:hover { color: var(--red); }
.contact-card__contacts svg { width: 16px; height: 16px; color: var(--red); }
.contact-card__divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 18px auto 22px;
  max-width: 200px;
}
.contact-card__direct {
  background: var(--paper);
  padding: 18px 22px;
  font-size: 15px;
  color: var(--ink);
}
.contact-card__direct a { font-weight: 600; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  position: relative;
  padding: 140px 0;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.30;
}
.final-cta__inner {
  position: relative;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.final-cta .section-num { color: #E8E4D9; margin-bottom: 22px; }
.final-cta .section-num::before { color: #E8E4D9; }
.final-cta h2 { color: #fff; margin-bottom: 22px; }
.final-cta h2 em { font-style: italic; color: #E8E4D9; font-weight: 400; }
.final-cta p {
  color: rgba(255,255,255,0.86);
  font-size: 19px;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.5;
}
.final-cta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.final-cta small {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.final-cta small a { color: #fff; text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.78);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.site-footer .brand img {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
}
.site-footer p { font-size: 14px; line-height: 1.65; }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8E4D9;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .social { display: flex; gap: 14px; }
.footer-bottom .social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
}
.footer-bottom .social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.footer-bottom .social svg { width: 16px; height: 16px; }

/* ---------- SUB-PAGES ---------- */
.sub-hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.sub-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  gap: 64px;
}
.sub-hero__text {
  padding: 56px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sub-hero h1 { color: var(--ink); margin: 18px 0 18px; max-width: 600px; }
.sub-hero h1 em { font-style: italic; color: var(--red-deep); font-weight: 400; }
.sub-hero .subline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  max-width: 560px;
}
.sub-hero__media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}
.sub-hero__media-frame {
  position: relative;
  flex: 1;
  margin: 40px 0;
  overflow: hidden;
  background: var(--ink);
}
.sub-hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }
.sub-hero__media-frame::after {
  content: "";
  position: absolute;
  top: -16px; right: -16px;
  bottom: 16px; left: 16px;
  border: 2px solid var(--red);
  z-index: -1;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumb a { color: var(--ink); text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
}
.feature__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature p { font-size: 15px; color: var(--ink-2); }

.story-block {
  background: var(--white);
  border-left: 4px solid var(--red);
  padding: 44px 52px;
  margin: 36px 0;
}
.story-block .quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 18px;
}
.story-block .author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- SCHNELLBEWERBUNG / QUIZ ---------- */
.quiz {
  padding: 60px 0 100px;
  background: var(--white);
}
.quiz__inner { max-width: 820px; margin: 0 auto; padding: 0 28px; }

.quiz__progress-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: block;
}
.quiz__progress-label strong { color: var(--red); font-weight: 700; }
.quiz__progress {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.quiz__progress-step {
  flex: 1;
  height: 3px;
  background: var(--line-soft);
  transition: background .3s ease;
}
.quiz__progress-step.is-done,
.quiz__progress-step.is-active { background: var(--red); }

.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: quizFade .35s ease; }
@keyframes quizFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.quiz__num::before {
  content: "§";
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}
.quiz__question {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.quiz__question em { font-style: italic; color: var(--red-deep); }
.quiz__hint {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

.options { display: grid; gap: 12px; margin-bottom: 36px; }
.options--2 { grid-template-columns: repeat(2, 1fr); }

.option { position: relative; display: block; cursor: pointer; }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: all .2s ease;
  min-height: 64px;
}
.option:hover .option__inner { border-color: var(--ink); background: var(--paper-2); }
.option input:checked + .option__inner {
  border-color: var(--red);
  background: var(--red-soft);
  box-shadow: 0 0 0 1px var(--red);
}
.option input:focus-visible + .option__inner {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.option__check {
  width: 22px; height: 22px;
  border: 1.5px solid var(--line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all .2s ease;
}
.option--radio .option__check { border-radius: 50%; }
.option input:checked + .option__inner .option__check {
  background: var(--red); border-color: var(--red);
}
.option__check svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.option input:checked + .option__inner .option__check svg { opacity: 1; }
.option__label { font-weight: 500; font-size: 16px; color: var(--ink); flex: 1; }
.option__sub { display: block; font-size: 13px; font-weight: 400; color: var(--muted); margin-top: 3px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}
.field label .req { color: var(--red); }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: all .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}
.field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0 8px;
  padding: 16px 18px;
  background: var(--paper-2);
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.field-consent input { margin-top: 3px; flex-shrink: 0; width: auto; }
.field-consent a { color: var(--red); text-decoration: underline; }

.quiz__error {
  display: none;
  background: rgba(127,0,0,0.08);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  margin-bottom: 22px;
  color: var(--red-deep);
  font-size: 14px;
  font-weight: 500;
}
.quiz__error.is-visible { display: block; }

.quiz__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quiz__back {
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.quiz__back:hover { color: var(--ink); }
.quiz__back[hidden] { visibility: hidden; }

.quiz__success { text-align: center; padding: 50px 0 30px; }
.quiz__success-icon {
  width: 80px; height: 80px;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
}
.quiz__success h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.quiz__success h2 em { font-style: italic; color: var(--red-deep); }
.quiz__success p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.quiz__success__contacts {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin-top: 32px;
}
.quiz__success__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}
.quiz__success__contacts svg { width: 16px; height: 16px; color: var(--red); }

/* ---------- KONTAKT-SEITE ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 32px; }
.kontakt-block {
  padding: 28px;
  background: var(--paper-2);
  border-left: 3px solid var(--red);
}
.kontakt-block h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.kontakt-block p { font-size: 16px; color: var(--ink-2); line-height: 1.6; }
.kontakt-block a { color: var(--ink); font-weight: 500; text-decoration: none; }
.kontakt-block a:hover { color: var(--red); }
.kontakt-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kontakt-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.kontakt-meta-item svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.kontakt-meta-item strong { display: block; color: var(--ink); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }

.kontakt-map {
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.kontakt-map iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(0.85) contrast(1.05);
}
.kontakt-map__caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(20,23,28,0.86);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kontakt-map__caption svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .options--2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .quiz { padding: 40px 0 80px; }
  .kontakt-block { padding: 22px 20px; }
}

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  padding: 12px 16px;
  z-index: 60;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
  border-top: 2px solid var(--red);
}
.mobile-cta-bar .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav.is-open .btn { margin-top: 12px; width: 100%; }

  .hero__inner, .sub-hero__inner { grid-template-columns: 1fr; gap: 0; min-height: auto; }
  .hero__text { padding: 60px 0 40px; }
  .hero__media { min-height: 380px; }
  .hero__media-frame { margin: 0 0 60px; }
  .sub-hero__text { padding: 60px 0 30px; }
  .sub-hero__media-frame { margin: 0 0 50px; min-height: 320px; }

  .jobs-grid, .stories-grid, .feature-list { grid-template-columns: repeat(2, 1fr); }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; gap: 24px; }
  .timeline::before { display: none; }
  .step__num { margin-bottom: 12px; }
  .two-col, .digital, .advisor-block { grid-template-columns: 1fr; gap: 48px; }
  .two-col__media { aspect-ratio: 4/3; max-width: 600px; }
  .two-col--reverse > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .kpi { padding: 0 28px; }
  .kpi:nth-child(3) { border-left: 0; padding-left: 0; }
  .statement { padding: 100px 0; }
  .statement::before { font-size: 220px; left: 4%; top: 40px; }

  .mobile-cta-bar { display: block; }
  body { padding-bottom: 76px; }
}

@media (max-width: 720px) {
  .topbar__right { display: none; }
  .topbar__inner { justify-content: center; }
  .section { padding: 80px 0; }
  .kpi-grid { grid-template-columns: 1fr; gap: 32px; }
  .kpi { padding: 0; border-left: 0; }
  .statement { padding: 70px 0; }
  .statement__quote { font-size: clamp(22px, 5vw, 32px); }
  .jobs-grid, .stories-grid, .feature-list,
  .persona-grid, .benefits-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-card { padding: 36px 24px; }
  .story-block { padding: 28px 24px; }
  .story-block .quote { font-size: 20px; }
  .hero__num { font-size: 13px; }
  .hero__num::before { font-size: 24px; }
  .advisor-map { padding: 28px 22px; }
}
