/*
 * Canonical brand palette. Loads globally before style.css.
 * --td-primary / --td-secondary = primary navy / coral.
 * --td-accent-orange = warm accent (distinct from coral).
 *
 * Avoid large-area rgba()/opacity on --td-primary over white: it composites to a washed slate.
 * Use solid fills for slabs; keep low-alpha only for UI chrome.
 */
:root {
  --td-primary: #294467;
  --td-primary-rgb: 41, 68, 103;
  --td-primary-hover: #1f364f;

  --td-secondary: #c65252;
  --td-secondary-rgb: 198, 82, 82;
  --td-secondary-hover: #a84343;

  --td-accent-orange: #ed5a32;

  --td-policy-footer-bg: #17253e;
}
