/* ============================================================
   Lintel — brand tokens
   Additive layer over site/styles.css. Load AFTER styles.css.

   Six brand colours. Vermilion is the only hot one. Warm stone,
   slate grey and foundation black are data and surface colours and
   are never used as an accent.

   Signal amber is NOT a brand colour. It survives as one reserved
   semantic token for the evidence register's Untested rows, and
   appears nowhere else on the site.
   ============================================================ */

:root{
  /* --- brand --- */
  --verm:#F04C3A;            /* 4.9:1 on charcoal */
  --verm-deep:#A8321F;       /* 5.6:1 on soft white */
  --verm-ink:#0C0D0E;        /* type on a vermilion fill */
  --verm-wash:rgba(240,76,58,.08);
  --verm-edge:rgba(240,76,58,.34);

  --charcoal:#0C0D0E;        /* the field */
  --found:#202928;           /* foundation black — panels, plates */
  --stone:#C0BA9A;           /* warm stone */
  --slate:#798788;           /* slate grey */
  --softw:#F7F7F7;           /* soft white */

  --stone-wash:rgba(192,186,154,.09);
  --slate-wash:rgba(121,135,136,.10);

  /* --- grounds --- */
  --flow:url('/assets/bg-flow-hero.svg');
  --flow-wide:url('/assets/bg-flow-wide.svg');
  --grid:url('/assets/bg-grid-dark.svg');

  /* --- mark + wordmark --- */
  --wordmark-family:var(--f-sans);
  --wordmark-weight:600;
  --wordmark-tracking:-.03em;
  --mark-h:15px;
  --mark-h-lg:30px;
}

:root[data-theme="light"]{
  --verm:#A8321F; --verm-ink:#F7F7F7;
  --verm-wash:rgba(168,50,31,.07); --verm-edge:rgba(168,50,31,.30);
  --stone:#6E675C; --slate:#4A5657;
  --flow:url('/assets/bg-flow-light.svg');
  --flow-wide:url('/assets/bg-flow-light.svg');
  --grid:url('/assets/bg-grid-light.svg');
}
.lt{
  --verm:#A8321F; --verm-ink:#F7F7F7;
  --verm-wash:rgba(168,50,31,.07); --verm-edge:rgba(168,50,31,.30);
  --stone:#6E675C; --slate:#4A5657;
  --flow:url('/assets/bg-flow-light.svg');
  --grid:url('/assets/bg-grid-light.svg');
}
