/* ==========================================================================
   FILE: assets/css/variables.css
   PURPOSE: Global site theme — colors and fonts, used by every other CSS
   file via var(--dc-...). Enqueue this file FIRST, before any other CSS.
   EDIT: Change values here to re-theme the whole site from one place.
   ========================================================================== */

:root {
	/* Colors — white/black premium theme */
	--dc-bg: #ffffff;
	--dc-bg-alt: #f7f7f5;
	--dc-text: #111111;
	--dc-text-muted: #555555;
	--dc-border: #e5e5e0;
	--dc-accent: #000000;
	--dc-accent-hover: #2b2b2b;
	--dc-gold: #d4af37;

	/* Typography */
	--dc-font-heading: 'Playfair Display', 'Georgia', serif;
	--dc-font-body: 'Inter', 'Helvetica Neue', sans-serif;

	--dc-tracking-wide: 0.08em;
}