
/* THE ORDER — Design Tokens
   Ancient. Unmoving. Weight-bearing.
*/

:root {
  /* Materials */
  --bg: #f4f1ec;          /* bone / parchment */
  --card: #f7f4ef;        /* slightly lifted parchment */
  --ink: #2a2724;         /* charcoal/umber ink */
  --muted: #6a625b;       /* softened ink */
  --line: rgba(42, 39, 36, 0.14);

  /* Rare accents */
  --accent-indigo: #2b3550;
  --accent-sage: #6b776a;
  --accent-rust: #7a4b33;

  /* Typography */
  --font-serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-size: 16px;
  --line-height: 1.55;

  /* Spacing */
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 14px;
  --space-4: 18px;
  --space-5: 26px;
  --space-6: 36px;

  /* Radius */
  --r-1: 10px;
  --r-2: 16px;

  /* Shadow (very soft) */
  --shadow: 0 10px 28px rgba(42, 39, 36, 0.10);

  /* Motion */
  --fade: 160ms;

  /* Width */
  --max: 560px;
}

