/* /manifesto — editorial page. Class prefix mf- so it does not collide with
   .id- / .bts- / .manifesto (the home-page partial keeps its own copy). */

/* PAGE-LEVEL OVERRIDES */

.mf-body {
  background: var(--bg);
  color: var(--fg);
}

/* NAV */

.mf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(26, 24, 20, 0.08);
  background: var(--bg);
}

.mf-nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--fg);
  text-decoration: none;
}

.mf-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.mf-nav-back:hover {
  color: var(--accent);
}

/* PAGE WRAPPER */

.mf-page {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 0;
}

/* INTRO */

.mf-intro {
  padding: 8rem 6rem 6rem;
}

.mf-intro-inner {
  max-width: 860px;
}

.mf-intro-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.mf-intro-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.mf-intro-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.35;
  margin-bottom: 3.5rem;
  max-width: 56ch;
}

.mf-intro-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

.mf-intro-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 60ch;
}

.mf-intro-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.85;
}

.mf-intro-capture-meta {
  margin-top: 4rem;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  border-top: 1px solid rgba(26, 24, 20, 0.12);
  padding-top: 1.5rem;
}

.mf-intro-capture-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.mf-intro-capture-line {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
}

/* SECTION (shared by origin / thrift-grade / scarcity / no-mall-luxury / rhythm) */

.mf-section {
  padding: 8rem 6rem;
}

.mf-section-inner {
  max-width: 860px;
  margin: 0 auto;
}

.mf-section-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

.mf-section-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.mf-section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  max-width: 26ch;
}

.mf-section-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
  max-width: 60ch;
}

.mf-section-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.85;
}

.mf-section-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 0;
  max-width: 56ch;
  quotes: none;
}

/* Two-tone rhythm — alternate sections get the dark backdrop so the eye
   reads the editorial as discrete beats, not a wall of text. */

.mf-origin,
.mf-scarcity,
.mf-rhythm {
  background: var(--dark);
  color: var(--bg);
}

.mf-origin .mf-section-eyebrow,
.mf-scarcity .mf-section-eyebrow,
.mf-rhythm .mf-section-eyebrow {
  color: var(--accent);
}

.mf-origin .mf-section-title,
.mf-origin .mf-section-quote,
.mf-scarcity .mf-section-title,
.mf-scarcity .mf-section-quote,
.mf-rhythm .mf-section-title,
.mf-rhythm .mf-section-quote {
  color: var(--bg);
}

.mf-origin .mf-section-body p,
.mf-scarcity .mf-section-body p,
.mf-rhythm .mf-section-body p {
  color: rgba(245, 240, 232, 0.78);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .mf-nav { padding: 1rem 1.25rem; }
  .mf-intro { padding: 5rem 2rem 3.5rem; }
  .mf-section { padding: 5rem 2rem; }
  .mf-intro-capture-meta { flex-direction: column; gap: 0.5rem; }
}
