/* Don's Service — brand palette.
 *
 * Ported 1:1 from the source SvelteKit site (fixitdon.com), whose shadcn
 * tokens were:
 *   --primary:   236 100% 24%  -> #020075  (navy)
 *   --secondary:   0 100% 42%  -> #D60000  (red; the brand SVGs use #D90000)
 * The hero headline there used a slightly deeper navy, #000537.
 */
:root {
  --color-primary: #020075;
  --color-dark: #000537;
  --color-secondary: #d90000;
  --color-surface: #ffffff;
  --color-text: #000537;
}
