/* brand.css — single source of truth for the club palette.
   Loaded AFTER each page's inline <style> so these tokens win over the
   per-page :root fallbacks.

   Sampled from assets/btfc-logo.png (canvas pixel counts):
     crest royal blue  #0c54a8  (~48% of the badge)
     crest outline     #003c8a
     silver lettering  ~#b9c3d2
   The crest has NO gold and only a speck of red — those two stay as
   functional accents (warnings / errors), not brand colours.

   Direction (club feedback 2026-07): backgrounds were "too dark" —
   near-black is replaced with deep club navy, and the secondary accent
   is a proper pitch green. --red stays aliased to blue for backward
   compat with older markup (do not "fix"). */

:root {
  --blue: #0d5cb4;        /* crest royal, lifted a touch for dark bg */
  --blue-deep: #003c8a;   /* crest outline navy */
  --blue-glow: #5a8aff;

  --red: #0d5cb4;         /* legacy alias — intentionally blue */
  --red-deep: #003c8a;
  --red-glow: #5a8aff;

  --accent-red: #c1262e;  /* functional: errors, cup badges */
  --accent-gold: #e3b73a; /* functional: warnings only — not on the crest */
  --accent-green: #2fa24c;/* pitch green — the football accent */
  --silver: #b9c3d2;      /* crest lettering silver */

  /* Backgrounds: deep club navy instead of near-black. */
  --ink: #0e1f42;
  --ink-2: #142a54;
  --ink-3: #1b3563;
  --line: #2c4677;

  --bone: #f5f8fd;
  --bone-2: #e3ecf8;
  --mute: #93a3c2;
}
