/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    --primary-color: #0f172a;      /* Bleu profond (Slate 900) */
    --secondary-color: #1d4ed8;    /* Bleu royal (Blue 700) */
    --accent-color: #d4af37;       /* Doré élégant */
    --accent-hover: #b4942d;
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}