/* Explain: Theme design tokens (colors, fonts) — single source of truth */
:root {
    --primary-color: #d4af37;
    --primary-hover: #b5952f;
    --secondary-color: #b87333;
    --accent-color: #991b1b;
    --background-color: #0a0a0a;
    --surface-color: #171717;
    --surface-light: #262626;
    --text-color: #f5f5f5;
    --text-muted: #a3a3a3;
    --border-color: #262626;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}
