/* ──────────────────────────────────────────────
   Manuscript — distinctive elements layer
   Plate frame, running head, colophon, drop-cap
   ────────────────────────────────────────────── */

/* Mono running head — sits at top of each Manuscript page */
.m-running-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 40px;
  position: sticky;
  top: 84px;
  z-index: 199;
  background: var(--surface, #F5F0E8);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 16px 64px 14px;
  border-bottom: 1px solid var(--rule);
}
.m-running-head__center {
  color: var(--burgundy);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
.m-running-head__right { color: var(--ink-mute); text-align: right; }
.m-running-head span:first-child { text-align: left; }
/* Folio label removed — the sticky running head now carries the page identifier */
.m-hero__folio { display: none; }
@media (max-width: 640px) {
  .m-running-head {
    grid-template-columns: 1fr !important;
    column-gap: 0;
    row-gap: 3px;
    padding: 9px 20px;
    text-align: center;
  }
  .m-running-head > span:first-child { display: none !important; }
  .m-running-head__center { display: block !important; text-align: center; }
  .m-running-head__right { display: block !important; text-align: center; }
}

/* ──────────────────────────────────────────────
   Plate — double-rule frame with roman cartouche
   ────────────────────────────────────────────── */
.m-plate {
  position: relative;
  margin: 56px auto;
  max-width: 720px;
  padding: 56px 64px 52px;
  border: 1px solid var(--burgundy);
  outline: 1px solid var(--burgundy);
  outline-offset: -7px;
}
.m-plate__cartouche {
  position: absolute;
  top: -12px;
  left: 64px;
  background: var(--pulp, var(--parchment));
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.m-plate__corner {
  position: absolute;
  bottom: -8px;
  right: 64px;
  background: var(--pulp, var(--parchment));
  padding: 0 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-deep, var(--gold));
}
.m-plate__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--burgundy);
  margin: 0;
  text-wrap: balance;
  text-align: center;
}
.m-plate__quote em { color: var(--gold-deep, var(--gold)); font-style: italic; }
.m-plate__attr {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* On dark backgrounds */
.m-section--ink .m-plate, .m-section--burgundy .m-plate {
  border-color: var(--gold);
  outline-color: var(--gold);
}
.m-section--ink .m-plate__cartouche,
.m-section--burgundy .m-plate__cartouche { background: var(--burgundy-deep, var(--burgundy)); color: var(--gold); }
.m-section--ink .m-plate__quote,
.m-section--burgundy .m-plate__quote { color: var(--pulp); }
.m-section--ink .m-plate__quote em,
.m-section--burgundy .m-plate__quote em { color: var(--gold); }
.m-section--ink .m-plate__corner,
.m-section--burgundy .m-plate__corner { background: var(--burgundy-deep, var(--burgundy)); color: var(--gold); }

/* ──────────────────────────────────────────────
   Section colophon — running foot under sections
   ────────────────────────────────────────────── */
.m-colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 18px 0 0;
  margin-top: 64px;
  border-top: 1px solid var(--rule);
}
.m-colophon__lead { color: var(--burgundy); font-weight: 500; }
.m-section--ink .m-colophon, .m-section--burgundy .m-colophon {
  color: rgba(237,229,211,0.5);
  border-top-color: rgba(201,168,76,0.35);
}
.m-section--ink .m-colophon__lead, .m-section--burgundy .m-colophon__lead { color: var(--gold); }

/* ──────────────────────────────────────────────
   Drop-cap — first letter of opening paragraph
   ────────────────────────────────────────────── */
.m-prose--dropcap > p:first-child::first-letter {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  float: left;
  font-size: 5.6em;
  line-height: 0.86;
  padding: 0.06em 0.12em 0 0;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}
.m-section--ink .m-prose--dropcap > p:first-child::first-letter,
.m-section--burgundy .m-prose--dropcap > p:first-child::first-letter { color: var(--gold); }

/* ──────────────────────────────────────────────
   Insight section — Plate above, narrow prose column below
   ────────────────────────────────────────────── */
.m-insight__plate {
  margin: 24px auto 56px;
  max-width: 880px;
}
.m-insight__plate .m-plate {
  margin: 0;
  max-width: none;
  padding: 72px 88px 64px;
}
.m-insight__plate .m-plate__quote {
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}
.m-insight__column {
  max-width: 640px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────────
   Situation plate — fills the right column
   ────────────────────────────────────────────── */
.m-situation__plate { display: flex; align-items: center; justify-content: flex-end; }
.m-situation__plate .m-plate { margin: 0 auto; max-width: 600px; width: 100%; }
.m-situation__plate .m-plate__quote { font-size: clamp(24px, 2.2vw, 32px); }

/* ──────────────────────────────────────────────
   Situation title — non-italic, gold accents on
   "corporate scaffolding" and "gone"
   ────────────────────────────────────────────── */
.m-situation__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: 92px;
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--burgundy);
  margin: 0;
  text-align: right;
  text-wrap: balance;
}
.m-situation__title .gold {
  color: var(--gold-deep, var(--gold));
  font-weight: 400;
}
