/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */

:root {
    /* Colors */
    --color-background: #F9F8FA;
    --color-surface: #FFFFFF;
    --color-surface-alt: #F4F2F6;

    --color-heading: #31343D;
    --color-text: #565B65;
    --color-muted: #8A909A;

    --color-primary: #4C5E78;
    --color-primary-hover: #3A495F;
    --color-primary-active: #2E3B4D;

    --color-border: #D8DADF;

    /* Typography */
    --font-heading: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;

    /* Font Sizes */
    --fs-xs: .875rem;
    --fs-sm: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 2rem;
    --fs-2xl: 3rem;
    --fs-hero: 3.5rem;

    /* Line Heights */
    --lh-body: 1.7;
    --lh-heading: 1.15;

    /* Spacing */
    --space-1: .5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;

    /* Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;

    /* Shadows */
    --shadow-sm: 0 6px 20px rgb(0 0 0 / 5%);
    --shadow-lg: 0 20px 60px rgb(0 0 0 / 8%);

    /* Width */
    --container: 1280px;

    /* Transition */
    --transition: 180ms ease;
}
