/**
 * Design tokens — CURRY HOUSE INB
 */
:root {
    /* Brand */
    --color-primary: #590303;
    --color-primary-dark: #3d0202;
    --color-primary-light: #7a1515;

    /* Accents */
    --color-gold: #c9a962;
    --color-gold-light: #e8d5a3;
    --color-cream: #faf6f0;
    --color-ivory: #f5efe6;

    /* Neutrals */
    --color-text: #2c2420;
    --color-text-muted: #6b5f56;
    --color-text-on-dark: #faf6f0;
    --color-text-on-dark-muted: rgba(250, 246, 240, 0.75);
    --color-border: rgba(89, 3, 3, 0.12);
    --color-white: #ffffff;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.75rem;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Layout */
    --container-max: 1200px;
    --header-top-height: 40px;
    --header-main-height: 80px;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(89, 3, 3, 0.08);
    --shadow-md: 0 4px 20px rgba(89, 3, 3, 0.12);
    --shadow-lg: 0 8px 40px rgba(89, 3, 3, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
