/* Templeton Global Search colour tokens: the single source for site colours.
   Text roles are named for the background they sit on, so a grey tuned for paper
   is never reused on navy (the 2026-09-17 footer contrast bug). */
:root{
  /* palette */
  --navy:#20546e; --navy-d:#0e3346; --navy-dd:#0b2834;
  --steel:#2f6f9f; --sky:#7fb0cf;
  --gold:#cfa15a; --gold-light:#e8c98f;
  --paper:#f5f3ee; --paper-2:#eceae3; --paper-3:#e4ddd0;

  /* text on light (paper / white) */
  --ink:#1c2b33;            /* headings, strong text */
  --ink-soft:#33444e;       /* body copy */
  --ink-muted:#5d6b73;      /* labels, meta, captions: 4.9:1 on paper */

  /* text on dark (navy / photo scrims) */
  --on-dark:#ffffff;        /* headings, buttons */
  --on-dark-soft:#e2ebf1;   /* lead paragraphs, form labels */
  --on-dark-body:#c8d4dc;   /* body copy */
  --on-dark-muted:#aebdc4;  /* labels, footers, captions: 7.9:1 on #0b2834 */
  --on-brand-accent:#9fc6df;/* links on the #20546e contact band */

  /* feedback */
  --ok:#2e6b3e; --error:#a23b3b;
  --ok-on-dark:#bfe3c8; --error-on-dark:#f3c6b8;

  /* legacy names still used in page CSS */
  --muted:var(--ink-muted); --oxblood:var(--navy); --oxblood-dark:var(--navy-d);
  --rust:var(--sky); --ground:var(--navy-dd);
}
