/* ============================================================
   VELIORA — Design Tokens
   ============================================================ */

:root {
  /* ── Colors ── */
  --color-bg:           #F8F6F2;
  --color-bg-dark:      #0D0D0D;
  --color-bg-section:   #F2EEE8;
  --color-surface:      #FFFFFF;
  --color-primary:      #1A1A1A;
  --color-accent:       #B8956A;
  --color-accent-light: #D4B896;
  --color-accent-dark:  #8C6A45;
  --color-text:         #2C2C2C;
  --color-text-muted:   #717171;
  --color-text-light:   #A0A0A0;
  --color-border:       #E4DED6;
  --color-border-dark:  #2A2A2A;
  --color-white:        #FFFFFF;
  --color-black:        #0D0D0D;

  /* ── Typography ── */
  --font-editorial: 'Cormorant Garamond', 'Georgia', serif;
  --font-ui:        'DM Sans', 'Helvetica Neue', sans-serif;

  /* ── Font sizes ── */
  --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.5rem;    /* 56px */
  --text-5xl:  4.5rem;    /* 72px */
  --text-6xl:  6rem;      /* 96px */

  /* ── Line heights ── */
  --leading-tight:  1.1;
  --leading-snug:   1.25;
  --leading-normal: 1.5;
  --leading-relaxed:1.7;
  --leading-loose:  1.9;

  /* ── Letter spacing ── */
  --tracking-tight:  -0.03em;
  --tracking-normal:  0;
  --tracking-wide:    0.08em;
  --tracking-wider:   0.15em;
  --tracking-widest:  0.25em;

  /* ── Spacing ── */
  --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 */
  --space-40:  10rem;     /* 160px */

  /* ── Section padding ── */
  --section-py:    7rem;
  --section-py-sm: 4rem;

  /* ── Container ── */
  --container-max:  1280px;
  --container-text: 720px;

  /* ── Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   450ms ease;
  --transition-reveal: 700ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ── Z-index ── */
  --z-base:    0;
  --z-above:   10;
  --z-nav:     100;
  --z-overlay: 200;
  --z-modal:   300;
}
