/* ============================================================================
   Oran Duggan — brand tokens (SINGLE SOURCE OF TRUTH for the site)
   Colours, fonts and layout variables. Every live page links this file, so a
   brand change happens HERE once, not in every HTML file.
   Full spec + usage notes: references/brand.md
   ============================================================================ */
:root{
  /* --- darks (ink / text) --- */
  --night:#0B1410;        /* deepest near-black green */
  --ink:#15201A;          /* primary dark ink-green — body text + wordmark */
  --ink-2:#1D2C24;        /* slightly lighter ink (hovers) */

  /* --- paper (backgrounds) --- */
  --limestone:#ECE7DB;    /* warm signature background */
  --paper:#F5F1E8;        /* lighter paper / card tone */

  /* --- gold (accent) --- */
  --brass:#9A7536;        /* gold accent */
  --brass-bright:#CDA86A; /* brighter gold (hovers) */

  /* --- greens (support) --- */
  --answered:#6FA283;     /* success / "answered" green */
  --slate:#5C6B61;        /* muted green-grey — secondary text */

  /* --- utility tints --- */
  --line:rgba(21,32,26,.12);       /* hairline borders */
  --panel:rgba(255,255,255,.62);   /* translucent panel fill */

  /* --- type --- */
  --serif:"Fraunces",Georgia,serif;               /* headings */
  --sans:"Hanken Grotesk",system-ui,sans-serif;   /* body */
  --mono:"IBM Plex Mono",ui-monospace,monospace;  /* eyebrows / labels */

  /* --- layout --- */
  --maxw:1180px;          /* content max width */
}
