/* ============================================================
   DESIGN TOKENS — Hypnose Pertuis
   ============================================================ */

:root {
  /* ── Colors ─────────────────────────────────────────────── */
  --color-forest:       hsl(160, 45%, 15%);
  --color-forest-light: hsl(160, 40%, 25%);
  --color-forest-dark:  hsl(160, 50%, 10%);

  --color-indigo:       hsl(235, 50%, 22%);
  --color-indigo-light: hsl(235, 45%, 32%);
  --color-indigo-dark:  hsl(235, 55%, 12%);

  --color-lavender:     hsl(265, 60%, 78%);
  --color-lavender-soft:hsl(265, 50%, 88%);
  --color-mint:         hsl(165, 55%, 70%);
  --color-mint-soft:    hsl(165, 45%, 85%);

  --color-cream:        hsl(40, 30%, 96%);
  --color-white:        hsl(0, 0%, 100%);
  --color-offwhite:     hsl(40, 20%, 98%);

  --color-text:         hsl(220, 15%, 20%);
  --color-text-muted:   hsl(220, 10%, 45%);
  --color-text-light:   hsl(220, 10%, 65%);
  --color-text-on-dark: hsl(40, 20%, 95%);

  /* Gradients */
  --gradient-hero:      linear-gradient(135deg, var(--color-indigo-dark) 0%, var(--color-forest-dark) 50%, var(--color-indigo) 100%);
  --gradient-cta:       linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-light) 100%);
  --gradient-accent:    linear-gradient(135deg, var(--color-lavender) 0%, var(--color-mint) 100%);
  --gradient-card:      linear-gradient(180deg, hsla(270, 50%, 85%, 0.08) 0%, hsla(165, 45%, 80%, 0.04) 100%);

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

  --text-xs:            0.75rem;    /* 12px */
  --text-sm:            0.875rem;   /* 14px */
  --text-base:          1rem;       /* 16px */
  --text-md:            1.125rem;   /* 18px */
  --text-lg:            1.25rem;    /* 20px */
  --text-xl:            1.5rem;     /* 24px */
  --text-2xl:           2rem;       /* 32px */
  --text-3xl:           2.5rem;     /* 40px */
  --text-4xl:           3.25rem;    /* 52px */
  --text-5xl:           4rem;       /* 64px */

  --leading-tight:      1.15;
  --leading-normal:     1.6;
  --leading-relaxed:    1.8;

  --tracking-tight:     -0.02em;
  --tracking-normal:    0;
  --tracking-wide:      0.08em;
  --tracking-wider:     0.15em;

  /* ── Spacing (8-pt grid) ────────────────────────────────── */
  --space-1:            0.25rem;    /* 4px */
  --space-2:            0.5rem;     /* 8px */
  --space-3:            0.75rem;    /* 12px */
  --space-4:            1rem;       /* 16px */
  --space-5:            1.25rem;    /* 20px */
  --space-6:            1.5rem;     /* 24px */
  --space-8:            2rem;       /* 32px */
  --space-10:           2.5rem;     /* 40px */
  --space-12:           3rem;       /* 48px */
  --space-16:           4rem;       /* 64px */
  --space-20:           5rem;       /* 80px */
  --space-24:           6rem;       /* 96px */
  --space-32:           8rem;       /* 128px */

  /* ── Borders & Radii ────────────────────────────────────── */
  --radius-sm:          0.375rem;
  --radius-md:          0.75rem;
  --radius-lg:          1rem;
  --radius-xl:          1.5rem;
  --radius-2xl:         2rem;
  --radius-full:        9999px;

  /* ── Shadows ────────────────────────────────────────────── */
  --shadow-sm:          0 1px 3px hsla(220, 15%, 20%, 0.06);
  --shadow-md:          0 4px 12px hsla(220, 15%, 20%, 0.08);
  --shadow-lg:          0 8px 30px hsla(220, 15%, 20%, 0.1);
  --shadow-xl:          0 16px 50px hsla(220, 15%, 20%, 0.12);
  --shadow-glow-mint:   0 0 30px hsla(165, 45%, 80%, 0.3);
  --shadow-glow-lavender: 0 0 30px hsla(270, 50%, 85%, 0.3);

  /* ── Transitions ────────────────────────────────────────── */
  --ease-out:           cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:        cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:      150ms;
  --duration-normal:    300ms;
  --duration-slow:      500ms;
  --duration-slower:    800ms;

  /* ── Layout ─────────────────────────────────────────────── */
  --container-max:      1280px;
  --container-narrow:   900px;
  --header-height:      80px;

  /* ── Z-index ────────────────────────────────────────────── */
  --z-base:             1;
  --z-dropdown:         10;
  --z-sticky:           100;
  --z-overlay:          500;
  --z-modal:            1000;
}
