:root {
    /* Purple-fuchsia palette (not locked in, easy to adjust) */
    --color-primary: #4E1D4E;
    --color-primary-light: #6A2C6A;
    --color-primary-dark: #361436;
    --color-accent: #8C3085;
    --color-accent-light: #B050A8;

    --color-white: #FFFFFF;
    --color-offwhite: #FDF8FD;
    --color-gray-100: #F5F0F5;
    --color-gray-200: #E8E0E8;
    --color-gray-300: #D0C4D0;
    --color-gray-500: #8A7A8A;
    --color-gray-700: #4A3E4A;
    --color-gray-900: #2A1E2A;

    --color-success: #2D8B4E;
    --color-error: #C0392B;

    /* Typography */
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --font-heading: 'Lobster Two', cursive;

    --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.5rem;

    --leading-tight: 1.25;
    --leading-normal: 1.6;

    /* 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;
    --space-4xl: 6rem;

    /* Layout */
    --max-width: 72rem;
    --max-width-narrow: 48rem;
    --border-radius: 0.5rem;
    --border-radius-sm: 0.25rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(42, 30, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(42, 30, 42, 0.1);
    --shadow-lg: 0 8px 24px rgba(42, 30, 42, 0.12);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
}
