/* === Global Palette === */
:root {
    /* Primary accent - Logo Gold */
    --primary-color: #E88634;
    --primary-color-dark: #D87A2F;
    --primary-color-light: #F5A862;

    /* Royal base - Logo Deep Black */
    --royal-base: #1A1A1A;
    --royal-base-light: #2d2d2d;

    /* Secondary accent - Warm Cream */
    --secondary-color: #E5D5B7;

    /* Warm-tinted neutral palette */
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;

    /* Legacy mappings */
    --accent-color: var(--royal-base);
    --background-dark: var(--royal-base);
    --brand-accent: var(--primary-color);
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
