/* Burgundy Homes brand accent applied on top of the base design system in style2.css */
:root,
[data-theme=light] {
	--color-accent: #76040C;
	--color-accent-soft: #ad6c72;
	--color-accent-deep: #2e1012;
	--font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* style2.css hardcodes "Bricolage Grotesque" on html and .font-sans instead of referencing --font-sans,
   so the variable override above doesn't reach body text on its own */
html,
.font-sans {
	font-family: var(--font-sans);
}

/* style2.css defaults btn-primary to --color-ink; brand calls for burgundy as the primary button color */
.btn-primary {
	background: var(--color-accent);
	border-color: var(--color-accent);
}
.btn-primary:hover {
	background: var(--color-ink);
	border-color: var(--color-ink);
}

/* .side-link defaults to dark ink tones, which disappear against the black footer */
footer .side-link {
	color: rgb(255 255 255 / .6);
}
footer .side-link:hover {
	color: #fff;
}
