/*
Theme Name: g&a management partner
Theme URI: https://ga-mp.com
Author: g&a management partner GmbH
Author URI: https://ga-mp.com
Description: Individuell entwickeltes WordPress-Theme fuer g&a management partner GmbH, Muenchen. Basiert 1:1 auf dem freigegebenen HTML/CSS-Mockup (Playfair Display / Inter, Blau-Creme-Dunkel-Palette).
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: gamp
*/

    /* ═══════════════════════════════════════════════
       DESIGN TOKENS
    ═══════════════════════════════════════════════ */
    :root {
      --bg:           #F7F5F2;
      --surface:      #FFFFFF;
      --text:         #1A1A18;
      --muted:        #6B6560;
      --light:        #9E9893;
      --blue:         #014a77;
      --blue-mid:     #1a72a8;
      --blue-light:   #e8f0f7;
      --border:       #E2DDD8;
      --dark:         #111214;
      --dark-mid:     #1C1F23;
      --cream:        #F7F5F2;

      --serif:  'Playfair Display', Georgia, serif;
      --sans:   'Inter', system-ui, sans-serif;

      --max:    1160px;
      --r:      2px;
      --ease:   0.2s ease;

      --s1: 0.5rem;
      --s2: 1rem;
      --s3: 2rem;
      --s4: 4rem;
      --s5: 7rem;
    }

    /* ═══════════════════════════════════════════════
       RESET
    ═══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
    }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }
    ul   { list-style: none; }
    button { cursor: pointer; background: none; border: none; font: inherit; }

    /* ═══════════════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════════════ */
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--s3);
    }
    .section        { padding: var(--s5) 0; }
    .section--white { background: var(--surface); }
    .section--dark  { background: var(--dark); color: var(--cream); }
    .section--blue  { background: var(--blue); color: var(--cream); }
    .section--tint  { background: var(--blue-light); }

    .eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: var(--s2);
      display: block;
    }
    .eyebrow--light { color: rgba(247,245,242,0.5); }

    .rule {
      width: 36px; height: 1px;
      background: var(--blue);
      display: block;
      margin-bottom: var(--s3);
    }
    .rule--light { background: rgba(247,245,242,0.35); }

    /* ═══════════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════════ */
    .header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      background: #FFFFFF;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
      padding: 0 var(--s3);
    }
    /* Logo SVG */
    .logo { display: flex; align-items: center; flex-shrink: 0; }
    .logo__svg { height: 40px; width: auto; display: block; }
    @media (max-width: 600px) { .logo__svg { height: 32px; } }

    .nav__list {
      display: flex;
      align-items: center;
      gap: var(--s3);
    }
    .nav__link {
      font-size: 0.84rem;
      font-weight: 400;
      color: var(--muted);
      letter-spacing: 0.02em;
      transition: color var(--ease);
    }
    .nav__link:hover { color: var(--text); }

    .nav__cta {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--blue);
      border: 1px solid var(--blue);
      padding: 0.45em 1.2em;
      border-radius: var(--r);
      letter-spacing: 0.02em;
      transition: all var(--ease);
    }
    .nav__cta:hover { background: var(--blue); color: #fff; }

    .nav__toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }
    .nav__toggle span {
      display: block; width: 24px; height: 1.5px;
      background: var(--text);
      transition: var(--ease);
    }
    .nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav__toggle.open span:nth-child(2) { opacity: 0; }
    .nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .nav__drawer {
      display: none;
      position: fixed; top: 68px; left: 0; right: 0;
      background: #FFFFFF;
      border-bottom: 1px solid var(--border);
      padding: var(--s3);
      z-index: 99;
    }
    .nav__drawer.open { display: block; }
    .nav__drawer .nav__link {
      display: block;
      font-size: 1rem;
      padding: 0.75em 0;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }
    .nav__drawer .nav__cta {
      display: inline-block;
      margin-top: var(--s2);
    }

    /* ═══════════════════════════════════════════════
       HERO — problem-first, erste Person, Boagworld-Stil
    ═══════════════════════════════════════════════ */
    .hero {
      background: var(--dark);
      color: var(--cream);
      min-height: 100svh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding-top: 68px;
      position: relative;
      overflow: hidden;
    }
    /* Subtile Blautonung rechts */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 85% 40%, rgba(1,74,119,0.25) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero__content {
      padding: var(--s5) var(--s3) var(--s5) var(--s3);
      position: relative; z-index: 1;
      max-width: 860px;
      margin: 0;
      grid-column: 1 / -1;
      text-align: left;
    }

    .hero__eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue-mid);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .hero__eyebrow::after {
      content: '';
      display: block;
      height: 1px; width: 48px;
      background: var(--blue-mid);
      flex-shrink: 0;
    }

    .hero__h1 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.8vw, 3.8rem);
      font-weight: 600;
      line-height: 1.12;
      letter-spacing: -0.02em;
      margin-bottom: 2rem;
    }
    .hero__h1 em {
      font-style: italic;
      color: rgba(247,245,242,0.78);
    }

    .hero__body {
      font-size: 1.05rem;
      font-weight: 400;
      color: rgba(247,245,242,0.65);
      max-width: 560px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }
    .hero__body strong {
      color: rgba(247,245,242,0.9);
      font-weight: 600;
    }

    .hero__actions {
      display: flex;
      gap: var(--s2);
      flex-wrap: wrap;
      align-items: center;
    }
    .btn-primary {
      display: inline-block;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.03em;
      padding: 0.9em 2em;
      background: var(--cream); color: var(--dark);
      border-radius: var(--r);
      transition: all var(--ease);
    }
    .btn-primary:hover { background: var(--blue-mid); color: #fff; }

    .btn-ghost {
      display: inline-block;
      font-size: 0.88rem; font-weight: 400;
      letter-spacing: 0.03em;
      padding: 0.9em 2em;
      border: 1px solid rgba(247,245,242,0.25);
      color: rgba(247,245,242,0.7);
      border-radius: var(--r);
      transition: all var(--ease);
    }
    .btn-ghost:hover { border-color: rgba(247,245,242,0.6); color: var(--cream); }

    /* ═══════════════════════════════════════════════
       DIFFERENZIERUNG — "Das ist der Unterschied"
    ═══════════════════════════════════════════════ */
    .diff { padding: var(--s5) 0; }

    .warum__intro {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }
    .warum__intro strong {
      font-weight: 600;
      color: var(--blue);
    }
    .services__intro {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }

    .diff__points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--s2) var(--s3);
      margin-top: var(--s3);
    }
    .diff__point { }
    .diff__point-title {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 0.3em;
    }
    .diff__point-text {
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* Warum g&a — dunkler Hintergrund, Punkte als helle Karten */
    #warum .warum__intro { color: rgba(247,245,242,0.65); }
    #warum .warum__intro strong { color: #fff; }
    #warum .diff__point {
      background: var(--cream);
      padding: var(--s3);
      border-radius: var(--r);
    }

    /* ═══════════════════════════════════════════════
       METRIKEN-STRIP — ELEKS-Stil, dunkel
    ═══════════════════════════════════════════════ */
    .metrics {
      background: var(--dark-mid);
      color: var(--cream);
      padding: var(--s4) 0;
    }
    .metrics__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
    }
    .metric {
      padding: var(--s3) var(--s3) var(--s3) 0;
      border-right: 1px solid rgba(247,245,242,0.08);
    }
    .metric:last-child { border-right: none; padding-right: 0; }
    .metric:not(:first-child) { padding-left: var(--s3); }

    .metric__num {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 600;
      line-height: 1;
      color: var(--cream);
      margin-bottom: 0.4em;
    }
    .metric__label {
      font-size: 0.8rem;
      color: rgba(247,245,242,0.45);
      font-weight: 400;
      line-height: 1.5;
    }

    /* ═══════════════════════════════════════════════
       LEISTUNGEN — "Leistungen", MECE 4 Kernfelder
    ═══════════════════════════════════════════════ */
    .leistungen { }

    .leistungen__header,
    .aktuelles__header,
    .referenzen__header,
    .team__header,
    .services__header,
    .warum__header {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--s4);
      margin-bottom: var(--s4);
      align-items: end;
    }
    .leistungen__intro {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }

    .leistungen__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: var(--border);
    }
    .leistung {
      background: var(--surface);
      padding: var(--s3) var(--s3) var(--s3);
      display: flex;
      flex-direction: column;
      gap: var(--s2);
      transition: background var(--ease);
      position: relative;
    }
    .leistung:hover { background: #fafafa; }

    /* Icon */
    .leistung__icon {
      width: 40px; height: 40px;
      background: var(--blue-light);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-bottom: 0.25rem;
    }
    .leistung__icon svg {
      width: 20px; height: 20px;
      stroke: var(--blue);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Elegantes & im Logo-Stil */
    .amp {
      font-family: var(--sans);
      font-style: normal;
      font-weight: 400;
      font-size: 0.86em;
      letter-spacing: 0.01em;
    }

    /* Service name headline */
    .leistung__name {
      font-family: var(--serif);
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.25;
      color: var(--text);
      margin-bottom: 0.1rem;
    }

    /* Customer problem question */
    .leistung__problem-q {
      font-size: 0.84rem;
      color: var(--muted);
      line-height: 1.65;
      font-style: italic;
    }

    /* Solution arrow */
    .leistung__solution {
      font-size: 0.84rem;
      color: var(--text);
      line-height: 1.65;
      padding-left: 0.9em;
      border-left: 2px solid var(--blue);
      flex: 1;
    }

    /* Enabler-Streifen */
    .enabler {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--blue);
      margin-top: 1px;
    }
    .enabler__item {
      background: var(--blue-light);
      padding: var(--s2) var(--s3);
      display: flex;
      align-items: center;
      gap: var(--s2);
    }
    .enabler__badge {
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      background: var(--blue);
      padding: 0.3em 0.7em;
      border-radius: 1px;
      flex-shrink: 0;
    }
    .enabler__label {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--blue);
    }
    .enabler__sub {
      font-size: 0.78rem;
      color: var(--blue-mid);
      margin-left: auto;
    }


    /* ═══════════════════════════════════════════════
       TRUST-BAR — Kundenlogos
    ═══════════════════════════════════════════════ */
    .trustbar {
      background: var(--surface);
      padding: var(--s4) 0;
      border-bottom: 1px solid var(--border);
    }
    .trustbar__label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--light);
      text-align: center;
      margin-bottom: var(--s3);
    }
    .trustbar__grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.6rem 2.4rem;
    }
    .trustbar__item {
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.01em;
      color: var(--muted);
      opacity: 0.72;
      transition: opacity var(--ease), color var(--ease);
      white-space: nowrap;
    }
    .trustbar__item:hover { opacity: 1; color: var(--blue); }

    @media (max-width: 860px) {
      .trustbar__grid { gap: 0.5rem 1.4rem; }
      .trustbar__item { font-size: 0.85rem; }
    }

    /* ═══════════════════════════════════════════════
       AKTUELLES — Fokusthema Commerce Media
    ═══════════════════════════════════════════════ */
    .aktuelles { background: var(--bg); }

    .aktuelles__hero {
      width: 100vw;
      height: 360px;
      background-size: cover;
      background-position: center center;
      background-attachment: fixed;
      margin-bottom: var(--s5);
      position: relative;
      overflow: hidden;
    }

    @media (max-width: 860px) {
      .aktuelles__hero { height: 240px; }
    }
    @media (max-width: 600px) {
      .aktuelles__hero { height: 180px; }
    }

    .aktuelles__intro {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }

    .aktuell__feature {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
    }

    /* Blauer Streifen oben */
    .aktuell__head {
      background: var(--blue);
      padding: var(--s3) var(--s3) var(--s3);
      display: flex;
      align-items: flex-start;
      gap: var(--s3);
    }
    .aktuell__tag {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(247,245,242,0.7);
      background: rgba(255,255,255,0.12);
      padding: 0.3em 0.8em;
      border-radius: 2px;
      flex-shrink: 0;
      margin-top: 0.2em;
    }
    .aktuell__head-titles { flex: 1; }
    .aktuell__title {
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2.4vw, 2rem);
      font-weight: 600;
      line-height: 1.2;
      color: #fff;
      margin-bottom: 0.6rem;
    }
    .aktuell__subtitle {
      font-size: 0.9rem;
      color: rgba(247,245,242,0.72);
      line-height: 1.6;
    }

    /* Body */
    .aktuell__body {
      padding: var(--s3);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--s3) var(--s4);
    }
    .aktuell__body--full { grid-column: 1 / -1; }

    .aktuell__section-label {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.8rem;
      display: block;
    }

    /* Readiness-Fragen */
    .aktuell__questions {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5em;
      margin-bottom: 0.5rem;
    }
    .aktuell__question {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.55;
      padding: 0.65em 0.9em;
      background: var(--blue-light);
      border-left: 2px solid var(--blue-mid);
      border-radius: 0 2px 2px 0;
    }

    /* 5 Säulen */
    .aktuell__pillars {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 2px;
      overflow: hidden;
    }
    .aktuell__pillar {
      background: var(--surface);
      padding: var(--s2);
      text-align: center;
    }
    .aktuell__pillar-icon {
      width: 32px; height: 32px;
      background: var(--blue-light);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 0.5rem;
    }
    .aktuell__pillar-icon svg {
      width: 16px; height: 16px;
      stroke: var(--blue); fill: none;
      stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
    }
    .aktuell__pillar-name {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
      margin-bottom: 0.3rem;
    }
    .aktuell__pillar-desc {
      font-size: 0.7rem;
      color: var(--muted);
      line-height: 1.45;
    }


    /* ═══════════════════════════════════════════════
       EXPERTISE-SÄULEN — Eva & Malte
    ═══════════════════════════════════════════════ */
    .expertise__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--s4);
      margin-top: var(--s4);
    }
    .expertise {
      background: var(--blue-light);
      padding: var(--s3);
      border-radius: 3px;
      border-left: 3px solid var(--blue);
    }
    .expertise__name {
      font-family: var(--serif);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 0.5rem;
    }
    .expertise__role {
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1rem;
      display: block;
    }
    .expertise__focus {
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.65;
    }
    .expertise__focus strong {
      color: var(--blue);
      font-weight: 600;
    }

    /* ═══════════════════════════════════════════════
       SERVICE-FORMATE
    ═══════════════════════════════════════════════ */
    .services__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--s2);
      margin-top: var(--s3);
    }
    @media (max-width: 1080px) { .services__grid { grid-template-columns: 1fr 1fr; gap: var(--s3); } }
    @media (max-width: 460px)  { .services__grid { grid-template-columns: 1fr; } }
    .service-format {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: var(--s2) 1.35rem;
      border-radius: 3px;
      display: flex;
      flex-direction: column;
      gap: var(--s2);
    }
    .service-format__title {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }
    .service-format__desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.65;
      flex: 1;
    }
    .service-format__focus {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
    }

    /* ═══════════════════════════════════════════════
       CASE STUDIES / PROJEKTE
    ═══════════════════════════════════════════════ */
    .cases { background: var(--bg); }
    .cases__header {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--s4);
      margin-bottom: var(--s4);
      align-items: end;
    }
    .cases__intro {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }
    .cases__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--s3);
    }
    .case {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all var(--ease);
    }
    .case:hover { border-color: var(--blue); box-shadow: 0 4px 12px rgba(1,74,119,0.08); }
    .case__visual {
      width: 100%;
      height: 160px;
      background: linear-gradient(135deg, var(--blue-light) 0%, rgba(1,74,119,0.05) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 2.5rem;
      color: rgba(1,74,119,0.15);
      font-weight: 600;
    }
    .case__content {
      padding: var(--s3);
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--s1);
    }
    .case__title {
      font-family: var(--serif);
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }
    .case__client {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
    }
    .case__desc {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
    }

    @media (max-width: 860px) {
      .aktuelles__header   { grid-template-columns: 1fr; gap: var(--s2); }
      .aktuell__pillars    { grid-template-columns: 1fr 1fr; }
      .aktuell__questions  { grid-template-columns: 1fr; }
      .aktuell__body       { grid-template-columns: 1fr; }
      .expertise__grid     { grid-template-columns: 1fr; }
      .services__grid      { grid-template-columns: 1fr 1fr; }
      .cases__grid         { grid-template-columns: 1fr 1fr; }
      .cases__header       { grid-template-columns: 1fr; gap: var(--s2); }
    }
    @media (max-width: 600px) {
      .aktuell__pillars    { grid-template-columns: 1fr 1fr; }
      .aktuell__head       { flex-direction: column; gap: var(--s2); }
    }

    /* ═══════════════════════════════════════════════
       REFERENZEN — echte Zitate
    ═══════════════════════════════════════════════ */
    .referenzen { }

    .referenzen__h2 { line-height: 1.2; }
    .referenzen__intro {
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }

    .referenzen__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--s3);
    }
    .referenz {
      background: var(--surface);
      padding: var(--s3);
      border-top: 2px solid var(--blue);
      display: flex;
      flex-direction: column;
      gap: var(--s2);
    }
    .referenz__quote {
      font-family: var(--serif);
      font-size: 1.0rem;
      font-style: italic;
      font-weight: 400;
      color: var(--text);
      line-height: 1.7;
      flex: 1;
    }
    .referenz__quote::before { content: '\201E'; }
    .referenz__quote::after  { content: '\201C'; }

    .referenz__person {
      display: flex;
      align-items: center;
      gap: var(--s2);
      padding-top: var(--s2);
      border-top: 1px solid var(--border);
    }
    .referenz__portrait {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--blue-light);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.72rem; font-weight: 600; color: var(--blue);
      flex-shrink: 0;
    }
    .referenz__name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.3;
    }
    .referenz__role {
      font-size: 0.77rem;
      color: var(--muted);
    }

    /* Branchen-Streifen */
    .branchen {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      padding-top: var(--s4);
      border-top: 1px solid var(--border);
      margin-top: var(--s4);
      align-items: center;
    }
    .branchen__label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--light);
      margin-right: var(--s1);
    }
    .branche {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--blue);
      border: 1px solid var(--blue);
      padding: 0.35em 0.6em;
      border-radius: 1px;
      white-space: nowrap;
    }

    /* ═══════════════════════════════════════════════
       TEAM, Kachel-Layout (Senior Partner)
    ═══════════════════════════════════════════════ */
    .team__intro {
      font-size: 0.97rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }

    .team__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--s3);
      align-items: start;
    }
    .team__card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: var(--s3);
      display: flex;
      flex-direction: column;
      gap: var(--s2);
      height: 100%;
    }
    .team__card--netzwerk { grid-column: 1 / -1; background: #FCFBFA; }
    .team__card-head {
      display: grid;
      grid-template-columns: 84px 1fr;
      gap: var(--s2);
      align-items: center;
    }
    .team__portrait {
      width: 84px; height: 84px;
      border-radius: 50%;
      overflow: hidden;
      background: #E4E0DB;
      flex-shrink: 0;
    }
    .team__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
    .team__portrait--mark {
      display: flex; align-items: center; justify-content: center;
      background: var(--blue-light);
    }
    .team__portrait-number { font-family: var(--serif); font-weight: 600; font-size: 1.4rem; color: var(--blue); }
    .team__name {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      margin-bottom: 0.3em;
    }
    .team__role {
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      line-height: 1.5;
    }
    .team__bio {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.75;
    }
    .team__tags { display: flex; flex-wrap: wrap; gap: 0.4em; margin-top: auto; }
    .team__tag {
      font-size: 0.72rem;
      color: var(--blue);
      background: var(--blue-light);
      border: 1px solid transparent;
      border-radius: 3px;
      padding: 0.35em 0.7em;
      transition: border-color var(--ease), background var(--ease);
    }
    a.team__tag:hover { border-color: var(--blue-mid); background: #dce9f4; }
    .team__tag--static { color: var(--muted); background: #EFEDEA; }
    .team__linkedin {
      display: inline-flex; align-items: center; gap: 0.4em;
      font-size: 0.78rem; font-weight: 600; color: var(--blue);
      border-bottom: 1px solid transparent;
      transition: border-color var(--ease);
      align-self: flex-start;
    }
    .team__linkedin:hover { border-color: var(--blue); }

    @media (max-width: 720px) {
      .team__card-head { grid-template-columns: 64px 1fr; }
      .team__portrait { width: 64px; height: 64px; }
    }

    /* Netzwerk */
    .netzwerk {
      grid-column: 1 / -1;
      border-top: 1px solid var(--border);
      padding-top: var(--s4);
      margin-top: var(--s2);
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: var(--s4);
      align-items: start;
    }
    .netzwerk__h3 {
      font-family: var(--serif);
      font-size: 1.4rem;
      font-weight: 600;
      line-height: 1.3;
      margin-top: var(--s2);
    }
    .netzwerk__text {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ═══════════════════════════════════════════════
       KONTAKT / FOOTER
    ═══════════════════════════════════════════════ */
    .kontakt {
      background: var(--blue);
      color: var(--cream);
      padding: var(--s5) 0 0;
    }
    .kontakt__layout {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: var(--s4);
      align-items: end;
      padding-bottom: var(--s5);
      border-bottom: 1px solid rgba(247,245,242,0.08);
    }
    .kontakt__header {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--s4);
      align-items: end;
      margin-bottom: var(--s4);
    }
    .kontakt__header .kontakt__h2  { margin-bottom: 0; }
    .kontakt__header .kontakt__sub { margin-bottom: 0; max-width: none; }
    .kontakt__formwrap {
      padding-bottom: var(--s5);
      border-bottom: 1px solid rgba(247,245,242,0.08);
    }
    .kontakt__h2 {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3.6rem);
      font-weight: 400;
      line-height: 1.1;
      margin-bottom: var(--s3);
    }
    .kontakt__sub {
      font-size: 0.97rem;
      font-weight: 400;
      color: rgba(247,245,242,0.5);
      max-width: 460px;
      line-height: 1.8;
      margin-bottom: var(--s3);
    }
    .kontakt__cta {
      display: inline-block;
      font-size: 0.88rem; font-weight: 600;
      letter-spacing: 0.03em;
      padding: 0.9em 2.2em;
      background: var(--cream); color: var(--dark);
      border-radius: var(--r);
      transition: all var(--ease);
    }
    .kontakt__cta:hover { background: var(--blue-mid); color: #fff; }

    .kontakt__details { }
    .detail-group { margin-bottom: var(--s3); }

    .detail-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(247,245,242,0.3);
      margin-bottom: 0.5em;
      display: block;
    }
    .detail-value {
      font-size: 0.9rem;
      color: rgba(247,245,242,0.75);
      line-height: 1.75;
    }
    .detail-value a {
      color: rgba(247,245,242,0.75);
      transition: color var(--ease);
    }
    .detail-value a:hover { color: var(--cream); }

    .footer__bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: var(--s3) 0;
      flex-wrap: wrap;
      gap: var(--s2);
    }
    .footer__copy {
      font-size: 0.76rem;
      color: rgba(247,245,242,0.25);
    }
    .footer__links {
      display: flex; gap: var(--s3);
    }
    .footer__link {
      font-size: 0.76rem;
      color: rgba(247,245,242,0.25);
      transition: color var(--ease);
    }
    .footer__link:hover { color: rgba(247,245,242,0.6); }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 960px) {
      :root { --s5: 5rem; }
      .nav__list { display: none; }
      .nav__toggle { display: flex; }

      .hero { grid-template-columns: 1fr; }
      .hero__content { padding: var(--s5) var(--s3); }

      .diff__points        { grid-template-columns: 1fr; }
      .metrics__grid       { grid-template-columns: 1fr 1fr; }
      .leistungen__header, .aktuelles__header, .referenzen__header,
      .team__header, .services__header, .warum__header { grid-template-columns: 1fr; gap: var(--s2); }
      .leistungen__grid    { grid-template-columns: 1fr 1fr; }
      .enabler             { grid-template-columns: 1fr; }
      .referenzen__grid    { grid-template-columns: 1fr; }
      .team__grid          { grid-template-columns: 1fr; }
      .netzwerk            { grid-template-columns: 1fr; gap: var(--s2); }
      .kontakt__layout     { grid-template-columns: 1fr; }
      .kontakt__header     { grid-template-columns: 1fr; gap: var(--s2); }
    }

    @media (max-width: 600px) {
      :root { --s5: 3.5rem; --s4: 2.5rem; }
      .metrics__grid { grid-template-columns: 1fr 1fr; gap: var(--s2); }
      .metric { border-right: none; border-bottom: 1px solid rgba(247,245,242,0.08); padding: var(--s2) 0; }
      .metric:last-child { border-bottom: none; }
      .team__card { padding: var(--s2); }
      .team__card-head { grid-template-columns: 56px 1fr; }
      .team__portrait { width: 56px; height: 56px; }
      .footer__bar { flex-direction: column; align-items: flex-start; }
    }
    /* ═══════════════════════════════════════════════
       LEISTUNGEN — dekorative Großzahl im Hintergrund
    ═══════════════════════════════════════════════ */
    .leistung { position: relative; overflow: hidden; }
    .leistung__bg-num {
      position: absolute;
      top: -0.15em; right: -0.05em;
      font-family: var(--serif);
      font-size: 8rem;
      font-weight: 600;
      color: rgba(1,74,119,0.055);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      z-index: 0;
    }
    .leistung > *:not(.leistung__bg-num) { position: relative; z-index: 1; }

    /* ═══════════════════════════════════════════════
       ACCORDION — <details> / <summary>
    ═══════════════════════════════════════════════ */
    .leistung__expand {
      margin-top: var(--s2);
      border-top: 1px solid var(--border);
    }
    .leistung__expand summary {
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75em 0;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--blue);
      cursor: pointer;
      user-select: none;
      gap: 0.5em;
    }
    .leistung__expand summary::-webkit-details-marker { display: none; }
    .leistung__expand summary .expand-icon {
      width: 18px; height: 18px;
      border: 1px solid var(--blue);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem;
      line-height: 1;
      flex-shrink: 0;
      transition: background var(--ease), color var(--ease);
    }
    .leistung__expand[open] summary .expand-icon {
      background: var(--blue); color: #fff;
    }
    .leistung__expand[open] summary .expand-icon::after { content: '−'; }
    .leistung__expand summary .expand-icon::after { content: '+'; }

    .leistung__detail-list {
      padding: var(--s1) 0 var(--s2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.4em 1.5em;
    }
    .leistung__detail-item {
      font-size: 0.79rem;
      color: var(--muted);
      line-height: 1.5;
      padding-left: 0.9em;
      position: relative;
    }
    .leistung__detail-item::before {
      content: '·';
      position: absolute; left: 0;
      color: var(--blue);
      font-weight: 600;
    }

    @media (max-width: 600px) {
      .leistung__detail-list { grid-template-columns: 1fr; }
      .leistungen__grid      { grid-template-columns: 1fr; }
    }


    /* ═══════════════════════════════════════════════
       HERO BEWEGTBILD — langsamer Ken-Burns-Effekt
    ═══════════════════════════════════════════════ */
    @keyframes kenburns {
      0%   { background-size: 104%; background-position: 48% 50%; }
      100% { background-size: 116%; background-position: 54% 46%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero { animation: none !important; }
      .claim__item { animation: none !important; opacity: 1 !important; position: relative !important; }
    }

    /* ═══════════════════════════════════════════════
       CLAIM-ANIMATION — rotierende Schlagworte
    ═══════════════════════════════════════════════ */
    @keyframes claimfade {
      0%    { opacity: 0; transform: translateY(12px); }
      4%    { opacity: 1; transform: translateY(0); }
      18%   { opacity: 1; transform: translateY(0); }
      22%   { opacity: 0; transform: translateY(-12px); }
      100%  { opacity: 0; transform: translateY(-12px); }
    }
    .claimbar {
      background: var(--dark-mid);
      color: var(--cream);
      padding: var(--s4) 0;
      border-bottom: 1px solid rgba(247,245,242,0.08);
    }
    .claim__stage {
      position: relative;
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .claim__item {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      animation: claimfade 45s infinite;
    }
    .claim__item:nth-child(1) { animation-delay: 0s; }
    .claim__item:nth-child(2) { animation-delay: 9s; }
    .claim__item:nth-child(3) { animation-delay: 18s; }
    .claim__item:nth-child(4) { animation-delay: 27s; }
    .claim__item:nth-child(5) { animation-delay: 36s; }
    /* ═══════════════════════════════════════════════
       LOGO-LEISTE — echte Logos statt Textnamen
    ═══════════════════════════════════════════════ */
    .logobar { background: var(--surface); padding: var(--s4) 0; border-bottom: 1px solid var(--border); }
    .logobar__label {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--light);
      text-align: center; margin-bottom: var(--s3);
    }
    .logobar__grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: var(--s3) var(--s2);
      align-items: center;
    }
    .logobar__slot {
      height: 58px;
      display: flex; align-items: center; justify-content: center;
      border: 1px dashed var(--border);
      border-radius: var(--r);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--light);
      background: #FCFBFA;
      transition: all var(--ease);
      text-align: center;
      padding: 0 0.5rem;
    }
    .logobar__slot:hover { border-color: var(--blue); color: var(--blue); }
    .logobar__slot img { max-width: 100%; max-height: 32px; object-fit: contain; }

    /* Metriken: 3-spaltig */
    .metrics__grid--three { grid-template-columns: repeat(3, 1fr) !important; }

    /* Leistungen: Layout-Fixes (Evas Feedback) */
    .leistungen__grid > .leistung { min-height: 100%; }
    .leistung__icon { width: 52px; height: 52px; }
    .leistung__icon svg { width: 26px; height: 26px; }
    .leistung__expand { margin-top: auto; padding-top: var(--s2); }
    .leistung__solution { border-left-width: 2px; margin-left: 1px; }

    /* Cluster-Zwischenüberschriften */
    .cluster-head {
      grid-column: 1 / -1;
      background: var(--surface);
      padding: var(--s3) var(--s3) 0;
      display: flex; align-items: baseline; gap: var(--s2);
    }
    .cluster-head__title {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--blue);
    }
    .cluster-head__rule { flex: 1; height: 1px; background: var(--border); }

    /* Kontaktformular */
    .kform,
    .kform .wpcf7-form { display: grid; gap: var(--s2); max-width: 460px; margin-top: var(--s3); }
    .kform__field { display: flex; flex-direction: column; gap: 0.35rem; }
    .kform__label {
      font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(247,245,242,0.55);
    }
    .kform input, .kform textarea {
      font-family: var(--sans); font-size: 0.92rem;
      background: rgba(247,245,242,0.06);
      border: 1px solid rgba(247,245,242,0.18);
      border-radius: var(--r);
      color: var(--cream);
      padding: 0.7rem 0.9rem;
      transition: border-color var(--ease);
    }
    .kform input:focus, .kform textarea:focus { outline: none; border-color: var(--blue-mid); }
    .kform textarea { resize: vertical; min-height: 90px; }
    .kform__submit {
      justify-self: start;
      background: var(--cream); color: var(--dark);
      border: none; border-radius: var(--r);
      padding: 0.75rem 1.6rem;
      font-size: 0.86rem; font-weight: 600;
      cursor: pointer; transition: background var(--ease), color var(--ease);
    }
    .kform__submit:hover { background: var(--blue-mid); color: #fff; }

    @media (max-width: 860px) {
      .logobar__grid { grid-template-columns: repeat(3, 1fr); }
      .metrics__grid--three { grid-template-columns: 1fr !important; }
      .claim__stage { height: 170px; }
    }
    @media (max-width: 600px) {
      .logobar__grid { grid-template-columns: repeat(2, 1fr); }
      .claimbar { padding: var(--s3) 0; }
      .claim__stage { height: 165px; }
    }

    /* ═══════════════════════════════════════════════
       HERO-VIDEO
    ═══════════════════════════════════════════════ */
    .hero__video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero__video.is-ready { opacity: 1; }
    .hero__scrim {
      position: absolute; inset: 0; z-index: 0;
      background: linear-gradient(to right,
        rgba(17,18,20,0.72) 0%,
        rgba(17,18,20,0.42) 55%,
        rgba(17,18,20,0.14) 100%);
      pointer-events: none;
    }
    .hero::before { z-index: 1; }
    @media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }

    /* ═══════════════════════════════════════════════
       SCROLL-TRIGGERED FADE-IN (Kennzahlen)
    ═══════════════════════════════════════════════ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .metric.fade-prep { opacity: 0; }
    .metric.fade-in {
      animation: fadeInUp 0.8s ease-out forwards;
    }
    @media (prefers-reduced-motion: reduce) {
      .metric.fade-prep,
      .metric.fade-in {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }
    }

    /* ═══════════════════════════════════════════════
       SCROLL-TRIGGERED FADE-IN (Kennzahlen)
    ═══════════════════════════════════════════════ */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .metric.fade-prep { opacity: 0; }
    .metric.fade-in   { animation: fadeInUp 0.8s ease-out forwards; }
    @media (prefers-reduced-motion: reduce) {
      .metric.fade-prep, .metric.fade-in { opacity: 1 !important; animation: none !important; transform: none !important; }
    }

    /* ═══════════════════════════════════════════════
       MARKEN-MOTIV, versetzte Kästen aus dem Logo
    ═══════════════════════════════════════════════ */
    .deco { position: absolute; pointer-events: none; z-index: 0; }
    .deco svg { display: block; width: 100%; height: auto; }
    .deco--metrics {
      top: -18%; right: -4%; width: 340px; opacity: 0.55;
    }
    .deco--kontakt {
      bottom: 4%; right: -3%; width: 300px; opacity: 0.5;
    }
    .metrics, .kontakt, .team { position: relative; overflow: hidden; }
    .metrics .wrap, .kontakt .wrap, .team .wrap { position: relative; z-index: 1; }
    @media (max-width: 860px) { .deco { display: none; } }

    #leistungen-h2, #aktuelles-h2, #ref-h2, #team-h2, #warum-h2, #services-h2 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-top: 0.5rem;
    }
  
    /* ═══════════════════════════════════════════════
       ERGEBNISSE-SEITE (Unterseite)
    ═══════════════════════════════════════════════ */
    .nav__link--active { color: var(--blue); font-weight: 600; }
    .nav__drawer .nav__link--active { color: var(--blue); }

    .pagehead {
      background: var(--dark);
      color: var(--cream);
      padding: calc(68px + var(--s4)) 0 var(--s4);
      position: relative;
      overflow: hidden;
    }
    .pagehead::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 85% 20%, rgba(1,74,119,0.28) 0%, transparent 65%);
      pointer-events: none;
    }
    .pagehead__crumb {
      position: relative; z-index: 1;
      font-size: 0.8rem;
      color: rgba(247,245,242,0.55);
      margin-bottom: var(--s3);
      display: inline-block;
      transition: color var(--ease);
    }
    .pagehead__crumb:hover { color: var(--cream); }
    .pagehead__h1 {
      position: relative; z-index: 1;
      font-family: var(--serif);
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 1.2rem;
      max-width: 780px;
    }
    .pagehead__body {
      position: relative; z-index: 1;
      font-size: 1rem;
      color: rgba(247,245,242,0.65);
      max-width: 620px;
      line-height: 1.8;
    }

    .ergebnisse-filter {
      position: sticky;
      top: 68px;
      z-index: 50;
      background: var(--surface);
      border-bottom: 1px solid var(--border);
    }
    .ergebnisse-filter__list {
      display: flex;
      gap: 0.5rem;
      padding: 0.9rem var(--s3);
      overflow-x: auto;
      max-width: var(--max);
      margin: 0 auto;
      scrollbar-width: none;
    }
    .ergebnisse-filter__list::-webkit-scrollbar { display: none; }
    .ergebnisse-filter__link {
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--muted);
      padding: 0.5em 1.1em;
      border: 1px solid var(--border);
      border-radius: 999px;
      white-space: nowrap;
      transition: all var(--ease);
      flex-shrink: 0;
    }
    .ergebnisse-filter__link:hover { border-color: var(--blue); color: var(--blue); }

    .ergebnisse__header {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: var(--s4);
      margin-bottom: var(--s4);
      align-items: end;
    }
    .ergebnisse__header-title {
      display: flex;
      align-items: center;
      gap: var(--s2);
    }
    .ergebnisse__icon {
      width: 40px; height: 40px;
      background: var(--blue-light);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ergebnisse__icon svg {
      width: 20px; height: 20px;
      stroke: var(--blue);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .ergebnisse__count {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--light);
    }
    .ergebnisse__intro {
      font-size: 0.95rem;
      font-weight: 400;
      color: var(--muted);
      line-height: 1.8;
    }

    .ergebnisse__grid {
      display: flex;
      flex-wrap: wrap;
      border-top: 1px solid var(--border);
      border-left: 1px solid var(--border);
    }
    .ergebnis-card {
      flex: 0 0 33.3333%;
      box-sizing: border-box;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: var(--s3);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      transition: background var(--ease);
    }
    .ergebnis-card:hover { background: #fafafa; }
    .ergebnis-card__cat {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--light);
    }
    .ergebnis-card__title {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.3;
      color: var(--text);
    }
    .ergebnis-card__desc {
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.7;
      flex: 1;
    }
    .ergebnis-card--empty {
      border: 1px dashed var(--border);
      background: transparent;
      justify-content: center;
    }
    .ergebnis-card--empty .ergebnis-card__desc {
      font-style: italic;
      color: var(--light);
    }

    @media (max-width: 960px) {
      .ergebnisse__header { grid-template-columns: 1fr; gap: var(--s2); }
      .ergebnis-card      { flex-basis: 50%; }
    }
    @media (max-width: 600px) {
      .ergebnis-card    { flex-basis: 100%; }
      .pagehead { padding-top: calc(68px + var(--s3)); }
    }
  
    /* ═══════════════════════════════════════════════
       ERGEBNISSE — CASE-DETAILSEITE
    ═══════════════════════════════════════════════ */
    .case-block {
      max-width: 760px;
      margin: 0 auto;
    }
    .case-crumbs {
      position: relative; z-index: 1;
      font-size: 0.8rem;
      color: rgba(247,245,242,0.55);
      margin-bottom: var(--s3);
    }
    .case-crumbs a { color: rgba(247,245,242,0.55); transition: color var(--ease); }
    .case-crumbs a:hover { color: var(--cream); }
    .case-crumbs span { margin: 0 0.4em; }
    .case-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--blue-mid);
      background: rgba(106,174,207,0.12);
      border: 1px solid rgba(106,174,207,0.3);
      border-radius: 999px;
      padding: 0.35em 0.9em;
      margin-bottom: 1.2rem;
    }

    .case-label {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 0.8rem;
      display: block;
    }
    .case-lead {
      font-size: 1.08rem;
      color: var(--text);
      line-height: 1.85;
      font-family: var(--serif);
      font-style: italic;
      font-weight: 400;
    }
    .case-list {
      padding: 0.2rem 0 0;
      display: grid;
      gap: 0.7em;
    }
    .case-list-item {
      font-size: 0.94rem;
      color: var(--text);
      line-height: 1.7;
      padding-left: 1.1em;
      position: relative;
    }
    .case-list-item::before {
      content: '·';
      position: absolute; left: 0;
      color: var(--blue);
      font-weight: 700;
      font-size: 1.2em;
      line-height: 1.3;
    }
    .case-callout {
      background: var(--blue);
      color: var(--cream);
      padding: var(--s3);
      border-radius: var(--r);
      font-size: 1.02rem;
      font-weight: 600;
      letter-spacing: 0.005em;
      line-height: 1.65;
      text-transform: uppercase;
    }
    .case-divider {
      height: 1px;
      background: var(--border);
      margin: var(--s4) 0;
      border: none;
    }
    .case-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: var(--s2);
      flex-wrap: wrap;
    }
    .case-nav__back { font-size: 0.86rem; color: var(--blue); font-weight: 600; }
    .case-nav__back:hover { text-decoration: underline; }

    @media (max-width: 600px) {
      .case-callout { font-size: 0.92rem; }
    }
  
    .case-sublist {
      margin-top: 0.5em;
      padding-left: 0;
      display: grid;
      gap: 0.5em;
    }
    .case-list-item--sub {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.65;
      padding-left: 1.6em;
      position: relative;
    }
    .case-list-item--sub::before {
      content: '–';
      position: absolute; left: 1.1em;
      color: var(--blue-mid);
      font-weight: 600;
    }


    /* ═══════════════════════════════════════════════
       WORDPRESS-ERGAENZUNGEN (Theme-Migration)
    ═══════════════════════════════════════════════ */
    /* Contact Form 7 in das bestehende .kform-Layout einpassen.
       Hinweis: das umschliessende <div class="kform"> wird bewusst in
       footer.php selbst gesetzt (nicht ueber das CF7-Attribut html_class),
       damit die Layout-Regeln unabhaengig davon greifen, an welches
       Element CF7 die html_class-Klasse tatsaechlich haengt. */
    .kform .wpcf7-form-control-wrap { display: contents; }
    .kform .wpcf7-not-valid-tip { display:block; font-size:0.78rem; color:#C0392B; margin-top:4px; }
    .kform .wpcf7-response-output { margin: var(--s2) 0 0; padding: 0.8em 1em; border-radius: 6px; font-size: 0.85rem; border: 1px solid var(--border); }
    .kform .wpcf7-form.sent .wpcf7-response-output { border-color: var(--blue); color: var(--blue); }
    .kform .wpcf7-form.invalid .wpcf7-response-output,
    .kform .wpcf7-form.failed .wpcf7-response-output { border-color: #C0392B; color: #C0392B; }
    .kform .wpcf7-spinner { margin-left: 0.6em; }

    /* Case-Detail: Sub-Listen (verschachtelte Aufzaehlung) */
    .case-sublist { margin: 0.5em 0 0 1.2em; padding: 0; list-style: none; }
    .case-list-item--sub { position: relative; padding-left: 1.1em; margin-top: 0.4em; font-size: 0.95em; color: var(--muted); }
    .case-list-item--sub::before { content: "–"; position: absolute; left: 0; }

    /* Admin-Bar Offset, damit der fixierte Header nicht ueberdeckt wird */
    body.admin-bar .header { top: 32px; }
    @media screen and (max-width: 782px) { body.admin-bar .header { top: 46px; } }

    /* WordPress Kern-Bildausrichtungen (fuer Beitragsinhalte / editorbasierte Seiten) */
    .alignleft { float: left; margin: 0 1.5em 1em 0; }
    .alignright { float: right; margin: 0 0 1em 1.5em; }
    .aligncenter { display: block; margin: 0 auto 1em; }
    .screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
