/* POPHIES Manufacturing & Delivery page — page-specific rules only.
   Route: /manufacturing-delivery/ — 网站规划.md §6.6 (lines 212–230).
   Shared classes and tokens live in assets/css/tokens.css and style.css; only
   the page's own blocks are styled here. */

/* ---------- 01. Stage chain ---------- */

/* An ordered list carries the seven stages, so the counter is left to the
   explicit "Stage 01" label in each item instead of a list marker. */
ol.md-stages {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 2.5rem 3rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 900px) {
  ol.md-stages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.md-stage { min-width: 0; }

.md-stage__row {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--stone);
}

.md-stage__label {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--brass);
}

.md-stage__value {
  margin: 0;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--ink);
}

/* The two shop-floor photographs sit under the chain, next to the stage they
   belong to, until real files replace the placeholders (§18, lines 926–939). */
.md-workshop { margin-top: 3.5rem; }

/* ---------- 02 and 05. Body copy beside a fact strip or link cards ---------- */

.md-copy {
  max-width: var(--read);
  margin-top: 3rem;
  color: var(--graphite);
}

.md-copy p:last-child { margin-bottom: 0; }

/* ---------- 03. EXW and FOB comparison ---------- */

.md-terms {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 800px) {
  .md-terms { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
}

.md-term {
  min-width: 0;
  padding: 1.75rem;
  border: 1px solid var(--stone);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
  background: var(--surface-soft);
}

.md-term__title { margin: 0 0 0.15em; font-size: 1.5rem; }
.md-term__meta { margin: 0 0 0.4em; }

.md-term__row {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--stone);
}

.md-term__label {
  margin: 0 0 0.3em;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--graphite);
}

.md-term__value { margin: 0; font-size: var(--fs-small); line-height: 1.6; }

/* ---------- 04. Packing and transport ---------- */

.md-packing { align-items: start; }

/* The list is the whole body of the split, so it aligns with the photograph
   beside it instead of starting lower down. */
.md-packing__list {
  margin-top: 0;
  font-size: var(--fs-small);
  line-height: 1.6;
  color: var(--graphite);
}
