/* ============================================================
   COSMIC PLATE · CORE DESIGN SYSTEM
   ============================================================ */

:root {
  /* ── Paper geometry ── */
  --paper-w: 420mm;   /* A2 width, height varies with image */
  --safe: 28mm;       /* outer breathing room */

  /* ── Palette (warm gallery card) ── */
  --paper: #f1ede3;
  --ink: #14120d;
  --ink-soft: #5d574a;
  --rule: #c4bda9;
  --accent: #876a36;
  --image-bg: #000;
  --canvas: #1f1d1a;

  /* ── Type ── */
  --font-display: "Instrument Serif", "EB Garamond", Georgia, serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;
  --font-body: "Newsreader", "Source Serif Pro", Georgia, serif;
}

@page {
  size: A2 portrait;
  margin: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "lnum", "kern";
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.nowrap {
  white-space: nowrap;
}
