/* Design tokens — the single source of truth for colours, type and spacing.
   Change a value here and it propagates across the whole site. */
:root{
  /* brand */
  --ink:#383b45;
  --rust:#c17262;
  --rust-deep:#6a423d;
  --rust-ink:#b3634f;      /* darker rust for text on light backgrounds (contrast) */
  --paper:#f4f1ec;
  --paper-2:#efe8dc;
  --slate:#2c2e35;
  --slate-2:#23242b;
  /* neutrals */
  --bg:#faf8f4;
  --line:#e6e0d4;
  --muted:#7c7568;
  --green:#3a8f5f;
  /* layout */
  --maxw:1120px;
  --radius:14px;
  --radius-lg:18px;
  --shadow-card:0 10px 30px rgba(56,59,69,.06);
  --shadow-pop:0 18px 44px rgba(193,114,98,.18);
  --shadow-float:0 22px 54px rgba(0,0,0,.24);
  /* type */
  --font:'Lato',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
}
