/* ============================================================
   Home v2 — content-first imagery
   Bilder sind Argument, nicht Dekoration.
   ============================================================ */

/* ───────── Hero v2 ───────── */
.hero-v2 { padding: 64px 0 80px; }
.hero-v2-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: start;
}
.hero-v2-left { display: flex; flex-direction: column; min-width: 0; }
.hero-v2-left h1 { max-width: 12ch; }
.hero-v2-search { margin-top: 24px; }

.hero-v2-right { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 16px; }
.hero-v2-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
}
.hero-v2-photo > *:first-child { width: 100%; height: 100%; object-fit: cover; }
.hero-v2-photo figcaption {
  position: absolute; left: 18px; right: 18px; bottom: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-radius: var(--r-l);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.hero-v2-photo .cap-eyebrow {
  display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--coral); font-weight: 600; margin-bottom: 6px;
}
.hero-v2-photo p {
  margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink);
}
.hero-v2-photo p em { font-style: italic; color: var(--ink-2); display: inline; }
.hero-v2-photo .cap-source {
  display: block; margin-top: 8px;
  font-size: 12.5px; color: var(--ink-3);
}
.hero-v2-meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-paper); border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
}
.hero-v2-meta > div {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 2px;
  border-right: 1px solid var(--line);
}
.hero-v2-meta > div:last-child { border-right: none; }
.hero-v2-meta span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.hero-v2-meta strong { font-size: 14px; color: var(--ink); font-weight: 500; }

@media (max-width: 1080px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-v2-right { position: static; }
  .hero-v2-photo { aspect-ratio: 4/3; }
}

/* ───────── Why-cards (3-column, middle is photo) ───────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
.why-card {
  display: flex; flex-direction: column; gap: 16px;
  padding: 36px 32px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: inherit;
  min-height: 380px;
  transition: all .2s;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.why-num {
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  color: var(--coral); font-variant-numeric: tabular-nums;
}
.why-card h3 { margin: 0; font-size: 24px; font-weight: 500; line-height: 1.2; letter-spacing: -.01em; color: var(--ink); }
.why-card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.why-foot {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--coral);
  text-decoration: none;
}

/* Photo card variant: photo as background, content as overlay at bottom */
.why-card-photo {
  position: relative;
  padding: 0;
  border: none;
  overflow: hidden;
  min-height: 380px;
  display: block;
}
.why-card-photo > *:first-child {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .4s ease;
}
.why-card-photo:hover > *:first-child { transform: scale(1.04); }
.why-card-photo .why-card-overlay {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 14px;
  padding: 36px 32px 32px;
  margin-top: auto;
  height: 100%;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.18) 35%, rgba(0,0,0,.78) 100%);
  color: #fff;
}
.why-card-photo h3, .why-card-photo p { color: #fff; }
.why-card-photo .why-num { color: rgba(255,255,255,.7); }
.why-card-photo p { color: rgba(255,255,255,.85); }
.why-card-photo .why-foot { color: #fff; }

/* Coral solid variant */
.why-card-coral {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}
.why-card-coral h3, .why-card-coral p { color: #fff; }
.why-card-coral .why-num { color: rgba(255,255,255,.75); }
.why-card-coral p { color: rgba(255,255,255,.88); }
.why-card-coral .why-foot { color: #fff; }
.why-card-coral:hover { box-shadow: 0 24px 48px -16px rgba(255,114,95,.5); }

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card, .why-card-photo { min-height: 280px; }
}

/* ───────── Editorial split (photo + argument) ───────── */
.editorial-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.editorial-photo {
  margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.editorial-photo > *:first-child {
  aspect-ratio: 5/6;
  border-radius: var(--r-2xl);
  overflow: hidden;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.editorial-photo figcaption {
  font-size: 13px; line-height: 1.55;
  color: var(--ink-3);
  padding: 0 4px;
  border-left: 2px solid var(--coral);
  padding-left: 14px;
  max-width: 52ch;
}
.editorial-text { display: flex; flex-direction: column; }
.editorial-text .body-l { max-width: 52ch; margin-bottom: 18px; }
.inline-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--coral); border-bottom: 1px solid currentColor;
  text-decoration: none; font-weight: 500;
  align-self: flex-start;
  padding-bottom: 2px; margin-top: 8px;
}
.inline-link:hover { color: var(--coral-600); }
.inline-link-lg { font-size: 16px; }

@media (max-width: 1000px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 32px; }
  .editorial-photo > *:first-child { aspect-ratio: 4/3; }
}

/* ───────── Hood card — show price and arrow as a foot row ───────── */
.hood-body { flex-direction: column; align-items: stretch !important; gap: 16px; }
.hood-body > div:first-child { display: flex; flex-direction: column; gap: 4px; }
.hood-body .hood-sub { font-size: 12px; color: var(--ink-3); }

/* ───────── Tools grid ───────── */
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tool-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 28px 26px; min-height: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  text-decoration: none; color: inherit;
  transition: all .25s ease;
}
.tool-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.tool-card.dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.tool-card.dark p { color: rgba(255,255,255,.7); }
.tool-card.coral { background: var(--coral); color: #fff; border-color: var(--coral); }
.tool-card.coral p { color: rgba(255,255,255,.85); }
.tool-icon {
  width: 52px; height: 52px; border-radius: var(--r-m);
  background: var(--coral-50); color: var(--coral);
  display: grid; place-items: center;
}
.tool-card.dark .tool-icon { background: rgba(255,255,255,.12); color: #fff; }
.tool-card.coral .tool-icon { background: rgba(255,255,255,.18); color: #fff; }
.tool-card h3 { margin: 4px 0 0; font-size: 20px; font-weight: 500; letter-spacing: -.01em; }
.tool-card p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink-3); flex: 1; }
.tool-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; margin-top: auto; }
.tool-card.dark .tool-cta, .tool-card.coral .tool-cta { color: #fff; }

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

/* ───────── Feature tour (single editorial item replacing insta grid) ───────── */
.feature-tour-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: stretch;
  margin-bottom: 56px;
}
.feature-tour-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: var(--r-2xl);
  overflow: hidden;
}
.feature-tour-photo > *:first-child { width: 100%; height: 100%; object-fit: cover; }
.feature-tour-badge {
  position: absolute; left: 20px; top: 20px;
  padding: 8px 14px; background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px); border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  letter-spacing: .04em;
}
.feature-tour-text { display: flex; flex-direction: column; justify-content: center; }
.feature-tour-meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0; margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature-tour-meta > div {
  padding: 16px 4px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--line);
}
.feature-tour-meta > div:last-child { border-right: none; }
.feature-tour-meta span { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.feature-tour-meta strong { font-size: 17px; color: var(--ink); font-weight: 500; font-variant-numeric: tabular-nums; }

.tour-archive {
  display: grid;
  grid-template-columns: auto repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.archive-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  padding-right: 12px;
}
.tour-thumb {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 12px; align-items: center;
  text-decoration: none; color: inherit;
}
.tour-thumb > *:first-child {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: var(--r-m); flex-shrink: 0;
}
.tour-thumb span {
  display: block; font-size: 11px; color: var(--ink-3);
  letter-spacing: .04em; margin-bottom: 2px;
}
.tour-thumb strong {
  font-size: 13px; font-weight: 500; color: var(--ink);
  line-height: 1.35; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-thumb:hover strong { color: var(--coral); }

@media (max-width: 1000px) {
  .feature-tour-grid { grid-template-columns: 1fr; gap: 24px; }
  .tour-archive { grid-template-columns: 1fr 1fr; }
  .archive-label { grid-column: 1 / -1; }
  .feature-tour-meta { grid-template-columns: 1fr 1fr; }
  .feature-tour-meta > div:nth-child(2) { border-right: none; }
}


/* ============================================================
   New sections (Team · CRM · Bestandsmandate) — added 2026
   ============================================================ */

/* ───────── Advisor strip (Team auf Homepage) ───────── */
.advisor-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.advisor-card {
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform .2s ease, box-shadow .2s ease;
}
.advisor-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift, 0 12px 32px -12px rgba(0,0,0,.18));
}
.advisor-portrait {
  aspect-ratio: 1 / 1.05;
  border-radius: var(--r-l);
  overflow: hidden;
  background: var(--bg-paper);
}
.advisor-portrait > * { width: 100%; height: 100%; }
.advisor-meta h3, .advisor-meta h4 {
  margin: 0 0 4px;
  font-size: 16px; font-weight: 500; letter-spacing: -.01em;
  color: var(--ink);
}
.advisor-meta span {
  font-size: 12.5px; line-height: 1.45; color: var(--ink-3);
  display: block;
}

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

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

}

/* ───────── CRM differential ─────────
   Die Sektion war frueher dunkel; heute liegt sie auf .section.paper und
   styles-truth.css setzt die Textfarben (Zeilen 232 ff.). Die alten
   Weiss-Regeln hier waren tot ueberschrieben und sind raus (Audit 31.08.).
   Die dunklen Stat-Kacheln (.crm-stat) sind bewusst geblieben. */
.crm-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.crm-text em.accent { color: var(--coral); font-style: normal; font-weight: inherit; }
.crm-text h2 {
  /* 02.09. (GF): „Boutique-Beratung mit dem / Wissen einer Datenbank." soll in
     zwei Zeilen brechen, nicht mit „dem" allein. Neben dem Kennzahlen-Block
     ist die Spalte ~700 px schmal; bei 64 px passt „Boutique-Beratung mit dem"
     nicht auf eine Zeile. 3,8vw (max 54 px) passt von 1000 bis 1600 px,
     balance verteilt die Zeilen gleichmaessig. */
  font-size: clamp(32px, 3.8vw, 54px);
  text-wrap: balance;
}
.crm-bullets {
  margin-top: 28px;
  display: grid; gap: 12px;
}
.crm-bullets > div {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
}
.crm-bullet-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}
.crm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  align-self: start;
}
.crm-stat {
  padding: 32px 28px;
  background: var(--ink);
  display: flex; flex-direction: column; gap: 10px;
}
.crm-stat .num {
  font-size: 44px; font-weight: 300; letter-spacing: -.03em;
  line-height: 1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.crm-stat .lbl {
  font-size: 13px; line-height: 1.45;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1000px) {
  .crm-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .crm-stats { grid-template-columns: 1fr; }
  .crm-stat .num { font-size: 36px; }
}

/* ───────── Bestandsmandate teaser (Homepage) ───────── */
.bestand-teaser {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.bestand-teaser-text h2 em.italic { color: var(--coral); }
.bestand-teaser-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.bestand-teaser-item {
  background: #fff;
  padding: 24px 22px;
  display: flex; gap: 16px;
}
.bestand-teaser-num {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
  padding-top: 3px;
  min-width: 22px;
}
.bestand-teaser-item h3, .bestand-teaser-item h4 {
  margin: 0 0 6px;
  font-size: 17px; font-weight: 500; letter-spacing: -.01em;
  color: var(--ink);
}
.bestand-teaser-item p {
  margin: 0;
  font-size: 14px; line-height: 1.5; color: var(--ink-3);
}

@media (max-width: 1000px) {
  .bestand-teaser { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .bestand-teaser-list { grid-template-columns: 1fr; }
}

/* ───────── Bestandsmandate page ───────── */
.bestand-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bestand-service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 30px;
  display: flex; gap: 22px;
}
.bestand-service-num {
  font-size: 38px; font-weight: 300; letter-spacing: -.03em;
  color: var(--coral); line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 60px;
}
.bestand-service-body h3 {
  margin: 0 0 10px;
  font-size: 22px; font-weight: 500; letter-spacing: -.012em;
  color: var(--ink);
}
.bestand-service-body p {
  margin: 0;
  font-size: 15px; line-height: 1.55; color: var(--ink-2);
}
.bestand-service-meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px; letter-spacing: .04em;
  color: var(--ink-3);
  font-style: italic;
}

.bestand-why {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.bestand-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.bestand-stats > div {
  background: #fff;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.bestand-stats .num {
  font-size: 38px; font-weight: 300; letter-spacing: -.03em;
  line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.bestand-stats .lbl {
  font-size: 13px; line-height: 1.45; color: var(--ink-3);
}

@media (max-width: 1000px) {
  .bestand-services { grid-template-columns: 1fr; }
  .bestand-why { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .bestand-stats { grid-template-columns: 1fr; }
  .bestand-service { flex-direction: column; gap: 14px; }
}

/* ───────── Mietbenchmark-Check (Bestandsmandate) ───────── */
.bench-card { display: grid; grid-template-columns: 340px 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--r-m); overflow: hidden; }
.bench-form { padding: 32px 30px; display: grid; gap: 20px; align-content: start; border-right: 1px solid var(--line); background: var(--bg-paper); }
.bench-field { display: grid; gap: 7px; }
.bench-field label { font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--ink); }
.bench-field select, .bench-field input { font: inherit; font-size: 15px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); width: 100%; }
.bench-field select:focus, .bench-field input:focus { outline: none; border-color: var(--ink); }
.bench-result { padding: 32px 34px; display: flex; flex-direction: column; gap: 18px; }
.bench-verdict { font-size: 26px; font-weight: 500; letter-spacing: -.015em; line-height: 1.3; }
.bench-bar-wrap { margin-top: 4px; }
.bench-bar { position: relative; height: 10px; border-radius: 999px; background: linear-gradient(90deg, #7fae8e 0%, #e3c98f 55%, var(--coral) 100%); }
.bench-marker { position: absolute; top: 50%; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); border: 3px solid #fff; box-shadow: 0 1px 5px rgba(0,0,0,.3); transform: translate(-50%,-50%); transition: left .25s; }
.bench-ticks { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12.5px; color: var(--ink-3); }
.bench-ticks strong { color: var(--ink); font-weight: 600; }
.bench-saving { background: var(--coral-50); border-radius: 10px; padding: 14px 16px; font-size: 14.5px; line-height: 1.5; }
.bench-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .bench-card { grid-template-columns: 1fr; } .bench-form { border-right: none; border-bottom: 1px solid var(--line); } }

/* ───────── Language switcher (Header) ───────── */
.lang-switch {
  display: inline-flex;
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  margin-right: 4px;
}
.lang-switch button {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--ink-3);
  background: transparent;
  transition: background .2s, color .2s;
  font-family: inherit;
}
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.on { background: var(--ink); color: #fff; }

.lang-banner {
  background: var(--coral-50);
  border-bottom: 1px solid var(--coral-100);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 13.5px; color: var(--ink);
  text-align: center;
}
.lang-banner a { color: var(--coral-600); text-decoration: underline; font-weight: 500; }
.lang-banner-close {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  color: var(--ink);
  font-size: 16px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit;
}
.lang-banner-close:hover { background: rgba(0,0,0,0.16); }

@media (max-width: 720px) {
  .lang-switch { display: none; }
}


/* ───────── Case studies (Vermittlungen) ───────── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.case-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift, 0 18px 40px -16px rgba(0,0,0,.22));
}
.case-photo {
  position: relative;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--bg-paper);
}
.case-photo > *:first-child { width: 100%; height: 100%; object-fit: cover; }
.case-tag {
  position: absolute; left: 16px; top: 16px; z-index: 1;
}
/* 01.09. (impeccable): steht das Schild als erstes Kind im Foto, streckte
   .case-photo > *:first-child es unsichtbar auf Fotogroesse; 32px ragten
   aus dem Kasten. Die Regel dort meint das Bild, nicht das Schild. */
.case-photo > .case-tag { width: auto; height: auto; }
.case-body {
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px 24px 24px;
  flex: 1;
}
.case-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.case-body h3 {
  margin: 0;
  font-size: 21px; font-weight: 500; letter-spacing: -.012em;
  line-height: 1.3; color: var(--ink);
}
.case-body p {
  margin: 0;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
}
.case-quote {
  margin: 0;
  font-size: 15.5px; line-height: 1.5; color: var(--ink);
  font-style: italic;
  border-left: 2px solid var(--coral);
  padding-left: 14px;
}
.case-attrib {
  font-size: 12.5px; color: var(--ink-3);
  margin-top: -6px;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  margin-top: auto;
}
.case-stats > div {
  background: #fff;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.case-stats span {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-4);
}
.case-stats strong {
  font-size: 14px; font-weight: 500; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
/* 02.09.: Bei drei Kennzahlen blieb eine graue Leerzelle; die letzte Zelle
   nimmt dann beide Spalten. */
.case-stats > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
.case-link {
  font-size: 13.5px; font-weight: 500; color: var(--coral);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.case-link:hover { color: var(--coral-600); }

.case-disclaimer {
  max-width: 520px;
  margin-top: 32px;
  font-size: 12.5px; color: var(--ink-4);
  text-align: center;
  font-style: italic;
}

@media (max-width: 1100px) {
  .case-grid { grid-template-columns: 1fr 1fr; }
  .case-grid > :nth-child(3) { grid-column: 1 / -1; max-width: 50%; }
}
@media (max-width: 720px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-grid > :nth-child(3) { max-width: none; }
}


/* ───────── Case detail page ───────── */
.case-detail-head {
  display: grid;
  /* 02.09. (Critique P1): `1.4fr 1fr` gab dem laengsten Wort der H1 nach und
     quetschte das Eckdaten-Panel auf 200 px („Stahltwiete 22 (Ferro22)" in
     drei Zeilen). Die Spalte bekommt eine Untergrenze, die H1 darf umbrechen. */
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
}
/* `.hero h1` (styles.css) schlaegt die display-Klasse; der Case-Kopf bekommt
   seine Groesse deshalb hier, eine Stufe unter der Listenseite. */
.case-detail-head h1 {
  font-size: clamp(36px, 5vw, 72px); line-height: 1.04;
  gap: 56px;
  align-items: start;
  margin-top: 8px;
}
.case-detail-facts {
  background: var(--bg-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 24px 20px;
}
.case-detail-facts h4, .case-detail-facts h2 {
  margin: 0 0 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
}
.case-detail-facts dl {
  margin: 0;
  display: grid; gap: 0;
}
.case-detail-facts dl > div {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.case-detail-facts dl > div:last-child { border-bottom: none; }
.case-detail-facts dt {
  font-size: 12.5px; color: var(--ink-3);
}
.case-detail-facts dd {
  margin: 0;
  font-size: 14px; color: var(--ink); font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.case-detail-photo {
  margin: 0;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--bg-paper);
}
.case-detail-photo > *:first-child { width: 100%; height: 100%; object-fit: cover; }

.case-detail-quote {
  margin: 0 0 48px;
  padding: 32px 32px 28px;
  background: var(--bg-paper);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-xl) var(--r-xl) 0;
}
.case-detail-quote svg { color: var(--coral); display: block; margin-bottom: 14px; }
.case-detail-quote p {
  margin: 0 0 14px;
  font-size: 22px; line-height: 1.4; letter-spacing: -.012em;
  color: var(--ink); font-style: italic; font-weight: 300;
}
.case-detail-quote cite {
  font-style: normal;
  font-size: 13.5px; color: var(--ink-3);
}

.case-detail-story {
  display: grid; gap: 36px;
}
.case-detail-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.case-detail-block:last-child { border-bottom: none; }
.case-detail-num {
  font-size: 36px; font-weight: 300; letter-spacing: -.03em;
  color: var(--coral); line-height: 1;
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.case-detail-block h3 {
  margin: 0 0 10px;
  font-size: 22px; font-weight: 500; letter-spacing: -.012em;
  color: var(--ink);
}
.case-detail-block p {
  margin: 0;
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
}

/* CTA-Case-Card-Variante in der "Weitere Vermittlungen" Sektion */
.case-card-cta {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  display: flex; align-items: stretch;
  padding: 36px 32px;
  border: 1px solid var(--ink);
}
.case-card-cta > div { display: flex; flex-direction: column; gap: 14px; }
.case-card-cta .eyebrow { color: rgba(255,255,255,0.6); }
.case-card-cta h3 {
  margin: 0;
  font-size: 22px; font-weight: 500; letter-spacing: -.012em;
  color: #fff;
}
.case-card-cta p {
  margin: 0;
  font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,0.78);
}
.case-card-cta .case-link {
  margin-top: auto;
  color: var(--coral);
}
.case-card-cta:hover { background: #1a1a1a; }

/* Crumbs (lokal, falls nicht aus seo-pages.jsx geerbt) */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: var(--ink-3);
  margin-bottom: 8px;
}
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span:last-child a { color: var(--ink); }
.crumb-sep { color: var(--ink-4); margin-right: 8px; }

@media (max-width: 1000px) {
  .case-detail-head { grid-template-columns: 1fr; gap: 32px; }
  .case-detail-block { grid-template-columns: 56px 1fr; gap: 18px; }
  .case-detail-num { font-size: 28px; }
}

/* Mobile (GF-Video 22.07.) — hier statt styles.css, weil diese Datei später
   lädt und gleichrangige Regeln sonst gewinnen (CSS-Reihenfolge-Falle) */
@media (max-width: 700px) {
  .tools-grid { grid-template-columns: 1fr; }
  .tool-card { min-width: 0; max-width: 100%; }
}
