/* ========================================
   HHM Design Tokens — CSS Custom Properties
   ======================================== */

:root {
    /* Primary palette */
    --gold: #e4a357;
    --theme-pink: #e55069;
    --coral: #cf5f63;
    --purple: #9d5b85;
    --indigo: #68639c;
    --light-gold: #E7A25C;
    --slate-dark: #5A5788;
    --slate-medium: #9091A5;

    /* Light/neutral layout backgrounds */
    --dark: #F7F7FA;
    --darker: #ECECF1;
    --darkest: #1E1B2C;
    --dark-card: rgba(255, 255, 255, 0.85);
    --dark-surface: rgba(255, 255, 255, 0.5);

    /* Theme typography colors (redefined to be dark slate/grey for light theme) */
    --white: #1E1B2C;
    --white-90: #34314A;
    --white-70: #5A5775;
    --white-50: #9091A5;
    --white-30: rgba(90, 87, 136, 0.3);
    --white-15: rgba(90, 87, 136, 0.15);
    --white-10: rgba(90, 87, 136, 0.08);
    --white-05: rgba(90, 87, 136, 0.04);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--light-gold));
    --gradient-coral: linear-gradient(135deg, var(--coral), var(--purple));
    --gradient-indigo: linear-gradient(135deg, var(--indigo), var(--purple));
    --gradient-hero: linear-gradient(135deg, var(--gold), var(--coral), var(--purple), var(--indigo));
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    --gradient-section: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Font sizes — fluid scale */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --text-md: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
    --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
    --text-xl: clamp(1.3rem, 1.1rem + 1vw, 1.75rem);
    --text-2xl: clamp(1.6rem, 1.3rem + 1.5vw, 2.25rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);

    /* Font weights */
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;

    /* Spacing scale */
    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(90, 87, 136, 0.08);
    --shadow-md: 0 4px 16px rgba(90, 87, 136, 0.12);
    --shadow-lg: 0 8px 32px rgba(90, 87, 136, 0.16);
    --shadow-xl: 0 16px 48px rgba(90, 87, 136, 0.2);
    --shadow-glow-gold: 0 0 20px rgba(228, 163, 87, 0.3);
    --shadow-glow-coral: 0 0 20px rgba(207, 95, 99, 0.3);
    --shadow-glow-purple: 0 0 20px rgba(157, 91, 133, 0.3);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(90, 87, 136, 0.12);
    --glass-blur: 16px;

    /* Z-index scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1200px;
    --container-wide: 1400px;
    --nav-height: 70px;
    --section-padding: clamp(3rem, 5vw, 6rem);
}
