/* ============================================================
   FRCG — design tokens (single source of truth)
   Previously duplicated in _includes/site.njk and _includes/base.njk;
   the two had drifted (--blue: #7089ee vs #5570e6). Unified here on the
   main-site value #7089ee so every page shares one cobalt accent.
   Loaded before site.css / base.css on every page.
   ============================================================ */
:root{
  --concrete-900:#15120e;
  --concrete-850:#1a1713;
  --concrete-800:#221d18;
  --concrete-700:#2c2620;
  --bone:#ece4d6;
  --bone-200:#ded2bd;
  --bone-400:#b9ac95;
  --steel:#928a7c;

  /* firm's colors — navy + cobalt */
  --navy:#28285a;          /* brand navy (logo) — accent on light bg */
  --navy-700:#363a78;
  --blue:#7089ee;          /* cobalt accent on dark bg */
  --blue-bright:#8aa0f4;
  --blue-soft:#cdd6f7;

  --line:rgba(236,228,214,.14);
  --line-strong:rgba(236,228,214,.28);
  --line-dark:rgba(21,18,14,.14);

  --serif:"Fraunces",Georgia,serif;
  --mono:"IBM Plex Mono",ui-monospace,monospace;
  --sans:"Hanken Grotesk",system-ui,sans-serif;
  --ease:cubic-bezier(.2,.7,.2,1);
}
