/* --- 1. DESIGN VARIABLES & ROOT SYSTEM --- */
:root {
    --luxury-dark: #0f172a;        /* Midnight Slate deep tone */
    --luxury-gold: #f59e0b;        /* Velvet Gold accent marker (orange) */
    --luxury-light: #faf9f6;       /* Alabaster Warm off-white canvas */
    --body-text: #475569;          /* Readable charcoal variant for paragraphs */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* --- 7. OVERRIDES FOR BRAND INTEGRATION --- */
.btn-warning {
    background-color: var(--luxury-gold) !important;
    border-color: var(--luxury-gold) !important;
    color: var(--luxury-dark) !important;
}

.btn-warning:hover, .btn-warning:focus {
    background-color: #d97706 !important; /* deeper orange hover */
    border-color: #d97706 !important;
    transform: translateY(-2px);
}

.border-warning { border-color: var(--luxury-gold) !important; }
.text-warning { color: var(--luxury-gold) !important; }
