/* Explain: Theme design tokens (colors, fonts) with updated gold accent and refined font choices. */
:root {
    --bg-black: #0B0B0B;
    --bg-soft-black: #111111;
    --bg-white: #F7F5F0;
    --bg-pure-white: #FFFFFF;
    
    --text-black: #111111;
    --text-white: #F7F5F0;
    --text-muted: #6b7280;
    
    --accent-gold: #C2A05E;
    
    --font-heading: 'Lora', serif;
    --font-body: 'Inter', sans-serif;
    
    --background-color: var(--bg-white);
    --text-color: var(--text-black);
}