/* ============================================================
   SYNTHESE-BLOCK (Block 3 der Mega-Section)
   ============================================================ */

.synthese {
  background-color: var(--background-secondary);
  padding-block: clamp(80px, 10vw, 120px);
}

/* ── 50/50 Split ── */
.synthese-split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

/* ── Text-Spalte ── */
.synthese-text {
  max-width: 480px;
}

.synthese-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 24px;
}

.synthese-headline {
  font-size: clamp(1.875rem, 3.25vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.synthese-subline {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 400;
  line-height: 1.65;
  color: #5A5A5A;
}

/* ── Bild-Spalte ── */
.synthese-visual-wrap {
  width: 100%;
}

.synthese-visual {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease-out;
}

@media (hover: hover) {
  .synthese-visual:hover {
    transform: scale(1.02);
  }
}

.synthese-visual-delay {
  --stagger-delay: 200ms;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1023px) {
  .synthese-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .synthese-text {
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .synthese-split {
    gap: 36px;
  }
}
