/* ==========================================================================
   Etappe 2 – Manifest (#manifest)
   Links die Kernaussage in großer Fraunces, rechts die leisere Stimme.
   Die Hierarchie entsteht aus Größe und Platz, nicht aus Farbwechseln.
   ========================================================================== */

.manifest {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: var(--space-xl);
  align-items: start;
}

.manifest__statement {
  grid-column: 1 / span 7;
}

.manifest__claim {
  color: var(--heading);
  font-size: clamp(2rem, 1.417rem + 2.593vw, 3.75rem);
  font-weight: 360;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: pretty;
}

.manifest__turn {
  margin-top: var(--space-m);
  max-width: 36ch;
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.4;
}

.manifest__notes {
  display: grid;
  grid-column: 9 / -1;
  gap: var(--space-m);
  max-width: 42ch;
  padding-top: 0.4rem;
}

@media (max-width: 56rem) {
  .manifest {
    grid-template-columns: minmax(0, 1fr);
    row-gap: var(--space-l);
  }

  .manifest__statement,
  .manifest__notes {
    grid-column: 1;
  }

  .manifest__notes {
    max-width: var(--measure);
    padding-top: 0;
  }
}
