/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #D4AF37;
    --primary-hover: #C5A028;
    --secondary-color: #1A1A1A;
    --accent-color: #EAB308;
    --background-color: #000000;
    --surface-color: #0A0A0A;
    --text-color: #FFFFFF;
    --text-muted: #A3A3A3;
    --border-color: #222222;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}