/*
 * Shared by every page, public and admin. The brand tokens live here and
 * nowhere else: change a colour once and the whole site follows. Pages that
 * need their own palette (the gate scanner) override on their body class.
 */

:root{
  --maroon: #7c1230;
  --maroon-dark: #4e0a1e;
  --cream: #f4f4f4;
  --page-bg: #e2e2e2;
  --ink: #242424;
  --ink-soft: #6e6e6e;
  --line: rgba(0,0,0,.12);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{ background:var(--page-bg); color:var(--ink); }
