/* manifesto - cream sectie met tape-label, heading en scattered chips */

.cr-manifesto {
  background: var(--crotona-cream);
  color: var(--crotona-ink);
  padding: clamp(64px, 8vw, 96px) clamp(20px, 5vw, 60px) clamp(56px, 7vw, 80px);
}

.cr-manifesto__inner {
  max-width: 1240px;
  margin: 0 auto;
}

.cr-manifesto__label {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.cr-manifesto__cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

/* heading - groot, uppercase, tight */
.cr-manifesto__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--crotona-ink);
}

/* chips - gedeelde basis voor pillars en cluster.
   Rotate via --cr-rot zodat reveal.js (data-reveal-keep-transform)
   de rotatie niet kan clobberen. */
.cr-manifesto__chip {
  display: inline-block;
  border: 2.5px solid var(--crotona-ink);
  padding: 10px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--crotona-ink);
  box-shadow: 4px 4px 0 var(--crotona-ink);
  white-space: nowrap;
  transform: rotate(var(--cr-rot, 0deg));
  transition: transform 0.25s ease;
}

.cr-manifesto__chip:hover {
  transform: rotate(0deg) scale(1.03);
}

.cr-manifesto__chip--small {
  font-size: 12px;
  padding: 8px 12px;
  letter-spacing: 0.04em;
}

/* stacked chip: kleine "· LABEL" boven, grotere VALUE eronder.
   Display block-ish ipv inline om white-space:nowrap te respecteren
   per regel zonder dat label en value op dezelfde lijn vallen. */
.cr-manifesto__chip--stacked {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 16px 12px;
  white-space: nowrap;
}
.cr-manifesto__chip--stacked .cr-manifesto__chip-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.55;
  margin: 0;
  font-weight: 700;
}
.cr-manifesto__chip--stacked .cr-manifesto__chip-value {
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1;
}

/* linker kolom - rij met drie pillars */
.cr-manifesto__pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 12px;
}

/* rechter kolom - body in een cream "card" met ink border en stamp shadow */
.cr-manifesto__card {
  background: var(--crotona-cream);
  border: 2px solid var(--crotona-ink);
  box-shadow: 8px 8px 0 var(--crotona-ink);
  padding: clamp(24px, 3vw, 32px) clamp(28px, 3.5vw, 40px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.cr-manifesto__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  margin: 0 0 20px;
  text-transform: lowercase;
  color: var(--crotona-ink);
}

.cr-manifesto__body--secondary {
  opacity: 0.88;
  margin-bottom: 0;
}

/* cluster - 3-koloms grid van stacked chips (label boven value),
   lichte rotaties zodat het paste-up voelt. */
.cr-manifesto__cluster {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start;
  gap: 18px 14px;
}

.cr-manifesto__chip-label {
  opacity: 0.6;
  margin-right: 2px;
}

/* responsive - kolommen stacken, padding kleiner */
@media (max-width: 1023px) {
  .cr-manifesto__cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cr-manifesto__cluster {
    max-width: none;
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 767px) {
  .cr-manifesto__title {
    font-size: clamp(32px, 9vw, 44px);
    overflow-wrap: anywhere;
  }
  .cr-manifesto__chip {
    font-size: 13px;
    padding: 8px 14px;
    box-shadow: 3px 3px 0 var(--crotona-ink);
  }
  .cr-manifesto__chip--small {
    font-size: 11px;
    padding: 7px 11px;
  }
  /* cluster: één kolom op smal scherm, chips kunnen lange waardes
     wrappen ipv buiten viewport prikken. */
  .cr-manifesto__cluster {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cr-manifesto__chip--stacked {
    white-space: normal;
  }
}

/* respect reduced motion - kill animation/transition, niet de
   statische rotate (die is geen motion, alleen decor). */
@media (prefers-reduced-motion: reduce) {
  .cr-manifesto__chip {
    transition: none;
  }
}
