/* Explain: Defines corporate color palette, typography, and layout tokens. - */
:root {
    /* Corporate Palette */
    --primary-color: #0c3154; /* Ultra Deep Corporate Blue */
    --primary-hover: #071e35;
    --secondary-color: #d97706; /* Refined Corporate Amber */
    --background-color: #f8fafc;
    --surface-color: #ffffff;
    --surface-warm: #f1f5f9;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout & UI */
    --radius-default: 0.25rem; /* Coins plus francs pour un style B2B */
    --shadow-soft: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);

    /* Legacy mappings */
    --espresso-color: var(--primary-color);
    --rose-nude-color: var(--secondary-color);
    --pearl-color: #ffffff;
    --champagne-color: var(--secondary-color);
    --soft-gray-color: var(--border-color);
    --radius-oval: var(--radius-default);
}