/* ============================================================
   ACERINA AMADOR — Manifesto — "one breath" statement fold
   Namespace: .mf  ·  Section-scoped only (no :root, no globals)
   ============================================================ */

.mf {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: var(--space-2xl);
}

/* Faint red bleed — the same warm source that lit the hero, further off */
.mf::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(64% 52% at 86% 4%,
      color-mix(in oklab, var(--vermelho-deep) 22%, transparent) 0%,
      transparent 62%);
}

.mf__grid {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.25rem, 6vw, 3.25rem);
  width: 100%;
  max-width: var(--maxw-wide);
  margin-inline: auto;
}

/* ---------------- Statement column ---------------- */
.mf__body {
  min-width: 0;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 3.25rem);
}

.mf__lead {
  max-width: 22ch;
  font-size: clamp(2.05rem, 1.2rem + 4.6vw, 3.9rem);
  line-height: 0.96;
  letter-spacing: var(--track-display);
  color: var(--bone);
  text-wrap: balance;
  overflow-wrap: break-word;
}
.mf__hot { color: var(--vermelho); }

/* ---------------- Meta: precise prose + distilled tri-word ---------------- */
.mf__meta {
  max-width: min(100%, 52rem);
  border-top: 1px solid var(--hairline);
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.6vw, 1.9rem);
}
.mf__para {
  font-family: var(--font-text);
  font-size: var(--fs-lead);
  line-height: var(--lh-snug);
  color: var(--bone-dim);
  text-wrap: pretty;
}
.mf__keys {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85em;
  font-family: var(--font-text);
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--bone-dim);
}
.mf__sep { color: var(--vermelho-bright); font-weight: 700; }

/* ---------------- Movement band ---------------- */
.mf__figure {
  position: relative;
  height: clamp(280px, 52vh, 460px);
  /* dissolve the band into the obsidian at top & bottom — a trail of light */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
}
.mf__figure .media { height: 100%; }
.mf__figure .media img {
  position: absolute;
  inset: -14% 0;          /* buffer so scrub-parallax never bares an edge */
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: 50% 32%;
  filter: grayscale(0.5) contrast(1.12) brightness(0.72);
}

/* ==================== Two-column film frame ==================== */
@media (min-width: 880px) {
  .mf__grid {
    grid-template-columns: minmax(0, 1fr) clamp(180px, 26vw, 360px);
    column-gap: clamp(2.5rem, 5vw, 5rem);
    align-items: stretch;
    min-height: clamp(560px, 78vh, 860px);
  }
  .mf__body {
    padding-inline: 0;
    padding-left: var(--gutter);
    justify-content: space-between;   /* one breath: statement top, detail bottom */
    gap: clamp(3rem, 7vw, 6rem);
  }
  .mf__figure {
    height: auto;                     /* grid stretch supplies the full band height */
  }
}
