/**
 * Brand colour.
 *
 * Kadence had NO palette stored — not on staging, not on live — so accent
 * colour 1 was falling through to the theme default, a coral (#e98369). It was
 * never a Spartan colour; it just happened to be what shipped. It carried the
 * mega-menu column headings, star ratings and validation text.
 *
 * #001F3F is the navy already used 31 times in the quote builder's own markup,
 * so this aligns the theme with the colour the site was already using rather
 * than introducing a new one.
 *
 * Done as a variable override rather than by authoring a full nine-colour
 * palette into theme mods: it travels with the plugin instead of becoming
 * another deploy hand-edit, it cannot get the other eight colours wrong, and it
 * is one line to revert.
 */

/* Only the two slots that were carrying the theme default coral. Buttons and
   the rest of the palette are deliberately left alone. */
html:root {
	--global-palette1: #001F3F !important;
}

/* Hover state for the same accent — a touch lighter so hover still reads as a
   change rather than as nothing happening. */
html:root {
	--global-palette2: #0e3a63 !important;
}
