/* ============================================
   Design Tokens — Maison Lumière
   All CSS custom properties defined on :root
   ============================================ */

:root {
  /* ----- Colors: Palette ----- */
  --color-white: #FFFFFF;
  --color-off-white: #F5F3EF;
  --color-sand: #E8DCC8;
  --color-warm-beige: #DFD5C5;
  --color-charcoal: #2A2A2A;
  --color-off-black: #1A1A1A;
  --color-dark-brown: #3C2F24;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #6B6B6B;
  --color-text-light: #999999;
  --color-border: #E5E0D8;
  --color-accent: #C9A96E;
  --color-accent-hover: #B8954E;
  --color-overlay: rgba(0, 0, 0, 0.5);

  /* ----- Spacing Scale ----- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;

  /* ----- Typography: Font Families ----- */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* ----- Typography: Font Sizes ----- */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;

  /* ----- Typography: Line Heights ----- */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* ----- Typography: Font Weights ----- */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* ----- Breakpoints ----- */
  --bp-sm: 640px;
  --bp-md: 768px;
  --bp-lg: 1024px;
  --bp-xl: 1280px;

  /* ----- Transitions ----- */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* ----- Z-Index Scale ----- */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-overlay: 400;
  --z-modal: 500;
  --z-cursor: 9999;

  /* ----- Layout ----- */
  --container-max: 1280px;
  --grid-gutter: 24px;
}
