/* ==========================================================
   ÉLAN Design Tokens
   Version: 2.0.0
========================================================== */

:root {

    /* ======================================================
       COLORS
    ====================================================== */

    --color-primary: #C8A97E;
    --color-primary-dark: #B7925F;
    --color-primary-light: #E4D2BA;

    --color-background: #FAF8F5;
    --color-surface: #FFFFFF;

    --color-text: #2B2B2B;
    --color-text-light: #777777;
    --color-heading: #181818;

    --color-border: rgba(0,0,0,.08);

    --color-white: #FFFFFF;
    --color-black: #000000;

    --color-overlay: rgba(0,0,0,.28);

    /* ======================================================
       TYPOGRAPHY
    ====================================================== */

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;

    --font-size-xs: clamp(.75rem,.72rem + .1vw,.8rem);
    --font-size-sm: clamp(.875rem,.84rem + .15vw,.95rem);
    --font-size-md: clamp(1rem,.96rem + .2vw,1.125rem);
    --font-size-lg: clamp(1.25rem,1.1rem + .5vw,1.5rem);
    --font-size-xl: clamp(2rem,1.6rem + 1vw,2.75rem);
    --font-size-2xl: clamp(3rem,2.4rem + 2vw,4.5rem);

    --line-height-tight: 1.15;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.9;

    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;

    /* ======================================================
       SPACING (8pt Grid)
    ====================================================== */

    --space-1: .25rem;
    --space-2: .5rem;
    --space-3: .75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;
    --space-10: 8rem;

    --section-spacing: clamp(5rem,10vw,8rem);

    --container-width: 1200px;
    --container-narrow: 760px;
    --container-padding: clamp(1.25rem,4vw,2rem);

    /* ======================================================
       BORDER RADIUS
    ====================================================== */

    --radius-xs: .25rem;
    --radius-sm: .5rem;
    --radius-md: .75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 999px;

    /* ======================================================
       SHADOWS
    ====================================================== */

    --shadow-sm:
        0 2px 6px rgba(0,0,0,.05);

    --shadow-md:
        0 8px 20px rgba(0,0,0,.08);

    --shadow-lg:
        0 20px 45px rgba(0,0,0,.12);

    --shadow-xl:
        0 32px 70px rgba(0,0,0,.16);

    /* ======================================================
       ANIMATION DURATIONS
    ====================================================== */

    --duration-fast: 180ms;
    --duration-normal: 350ms;
    --duration-slow: 700ms;
    --duration-hero: 1200ms;

    /* ======================================================
       EASING
    ====================================================== */

    --ease-standard: cubic-bezier(.2,.8,.2,1);

    --ease-emphasized: cubic-bezier(.22,.61,.36,1);

    --ease-decelerate: cubic-bezier(0,0,.2,1);

    --ease-accelerate: cubic-bezier(.4,0,1,1);

    /* ======================================================
       Z INDEX
    ====================================================== */

    --z-base: 1;
    --z-content: 10;
    --z-navigation: 100;
    --z-overlay: 900;
    --z-modal: 1000;
    --z-loader: 9999;

}