/* Explain: Theme design tokens (colors, fonts) — single source of truth. - */
:root {
    /* Deep Royal Blue */
    --primary-color: #0c1b33;
    --primary-hover: #162c50;
    
    /* Burnished Gold */
    --secondary-color: #c5a059;
    --secondary-hover: #d6b571;
    
    /* Neutral / Corporate Palette */
    --background-color: #ffffff;
    --surface-color: #f8fafc;
    --text-color: #1e293b;
    --text-muted: #475569;
    --border-color: #e2e8f0;
    
    /* Typography: Luxury & Authority */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}