/* Quiet grey editorial field — the dot density fades across the page, not the colour. */
.manifesto {
  position: relative;
  min-height: min(540px, 42vw);
  overflow: hidden;
  padding: 1.8rem 2.5rem 2.35rem;
  color: #202522;
  background: #d9d9d4 !important;
  isolation: isolate;
}

.manifesto::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  opacity: .9;
  background:
    radial-gradient(circle, rgba(28, 34, 31, .23) 0 1px, transparent 1.35px) 0 0 / 17px 17px,
    radial-gradient(circle at 18% 24%, rgba(255, 255, 252, .8), transparent 30%),
    radial-gradient(circle at 82% 61%, rgba(47, 52, 49, .22), transparent 45%);
  -webkit-mask-image: linear-gradient(100deg, transparent 0%, rgba(0,0,0,.32) 25%, #000 68%, transparent 100%);
  mask-image: linear-gradient(100deg, transparent 0%, rgba(0,0,0,.32) 25%, #000 68%, transparent 100%);
}

.manifesto > .section-number {
  position: absolute;
  top: 1.7rem;
  left: 2.45rem;
  z-index: 2;
  margin: 0;
  color: rgba(32, 37, 34, .72);
  font-size: clamp(.52rem, .56vw, .68rem);
  letter-spacing: .16em;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(min(540px, 42vw) - 4.15rem);
  grid-template-columns: 1.18fr .9fr .82fr;
  grid-template-rows: auto 1fr auto;
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: clamp(1.2rem, 3vw, 2.8rem);
  padding: clamp(3.3rem, 5vw, 4.8rem) 8% 0;
}

.manifesto .manifesto-line,
.manifesto-caption,
.manifesto-slogan,
.manifesto-footer {
  margin: 0;
  font-style: normal;
  font-weight: 400;
}

.manifesto-caption,
.manifesto-slogan,
.manifesto-footer {
  font-family: var(--font-mono);
  font-size: clamp(.52rem, .61vw, .71rem) !important;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.45;
}

.manifesto-caption {
  grid-column: 1 / -1;
  grid-row: 1;
  color: rgba(32, 37, 34, .64);
}

.manifesto .manifesto-line {
  align-self: start;
  color: #202522;
  font-family: var(--font-ui);
  font-size: clamp(.9rem, 1.08vw, 1.24rem) !important;
  font-weight: 400 !important;
  letter-spacing: -.025em;
  line-height: 1.55;
}

.manifesto .manifesto-line-a { grid-column: 1; grid-row: 2; }
.manifesto .manifesto-line-b { grid-column: 2; grid-row: 2; align-self: center; }
.manifesto .manifesto-line-c { grid-column: 3; grid-row: 2; align-self: end; color: #202522; }

.manifesto-slogan {
  grid-column: 1 / 3;
  grid-row: 3;
  align-self: end;
  color: rgba(32, 37, 34, .82);
}

.manifesto-footer {
  grid-column: 3;
  grid-row: 3;
  justify-self: end;
  align-self: end;
  color: rgba(32, 37, 34, .6);
  text-align: right;
  white-space: nowrap;
}

.manifesto .manifesto-mark {
  position: absolute;
  top: 15%;
  right: 8%;
  z-index: 0;
  color: rgba(32, 37, 34, .24) !important;
  font-family: var(--font-ui);
  font-size: clamp(2rem, 3vw, 3.4rem) !important;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 700px) {
  .manifesto { min-height: 480px; padding: 1.25rem 1.1rem 1.7rem; }
  .manifesto > .section-number { top: 1.2rem; left: 1.1rem; }
  .manifesto-grid {
    min-height: 420px;
    grid-template-columns: 1fr;
    grid-template-rows: auto repeat(3, auto) 1fr auto;
    row-gap: 1rem;
    padding: 3.8rem 7% 0;
  }
  .manifesto-caption { grid-column: 1; grid-row: 1; }
  .manifesto .manifesto-line { grid-column: 1; font-size: .9rem !important; }
  .manifesto .manifesto-line-a { grid-row: 2; }
  .manifesto .manifesto-line-b { grid-row: 3; }
  .manifesto .manifesto-line-c { grid-row: 4; }
  .manifesto-slogan { grid-column: 1; grid-row: 5; align-self: end; font-size: .53rem !important; }
  .manifesto-footer { grid-column: 1; grid-row: 6; justify-self: start; font-size: .5rem !important; text-align: left; }
  .manifesto .manifesto-mark { top: 12%; right: 8%; font-size: 2rem !important; }
}
