/* ============================================================
   Wealth Compoundry — Design Tokens
   Single source of truth for the brand palette, type, and layout.
   Wealth Compoundry is a brand of Beat Lynch, Inc.

   Consumed by the canonical brand surfaces (index, news, glossaries
   hub) via  <link rel="stylesheet" href="assets/tokens.css">.

   Fonts themselves are loaded per-page from Google Fonts; the tokens
   below only reference the family names.

   Note: some surfaces carry their own scoped palettes on purpose —
   the legal docs, the glossary reading views, the member-briefing
   letters, and the Beat Lynch reports. Those variants are documented
   in DESIGN-SYSTEM.md and are intentionally NOT flattened onto this
   set.
   ============================================================ */
:root{
  /* ---- Core neutrals ---- */
  --ink:#0E0D0B;         /* near-black — primary dark background        */
  --ink-soft:#1A1813;    /* raised surface / panel on ink              */
  --cream:#ebeae0;       /* primary text on ink; light surface fill    */
  --cream-deep:#dcdbd0;  /* secondary / deeper cream                   */
  --text:#2A2620;        /* dark body text on light surfaces           */
  --muted:#94918a;       /* secondary, labels, eyebrows                */

  /* ---- Brand gold ---- */
  --gold:#b8963f;        /* primary brand gold — accents, CTAs, links  */
  --gold-bright:#c09650; /* hover / highlight gold                     */
  --gold-deep:#816929;   /* deep gold — gradients, pressed states      */

  /* ---- Accent ---- */
  --seal:#9C2B1E;        /* patriotic red seal (flag section, seals)   */

  /* ---- Typography ---- */
  --serif:'Cormorant Garamond', Georgia, serif;  /* display headings   */
  --body:'Manrope', system-ui, sans-serif;       /* brand body + UI    */
  --sans:'Inter', system-ui, sans-serif;         /* small labels       */

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