:root {
  /* Palette — Organic Luxury */
  --color-bg-dark: #0c0c0b;
  --color-bg-warm: #1a1a1a;
  --color-surface: #f5f0e8;
  --color-surface-hover: #ede8df;
  --color-cream: #faf8f5;
  --color-accent-gold: #b8860b;
  --color-accent-gold-hover: #d4a017;
  --color-accent-gold-light: rgba(184, 134, 11, 0.12);
  --color-accent-teal: #5f9ea0;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #6b5b4f;
  --color-text-light: #f5f0e8;
  --color-text-muted: rgba(255,255,255,0.6);
  --color-border: #d4c5b5;
  --color-border-light: #e8e0d5;
  --color-error: #8b3a3a;
  --color-success: #4a7c59;
  --color-warning: #c4882b;
  --color-white: #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.75rem;
  --fs-6xl: 5rem;
  --lh-tight: 1.1;
  --lh-normal: 1.6;
  --ls-wide: 0.08em;
  --ls-wider: 0.15em;
  --ls-widest: 0.25em;

  /* Spacing — generous for luxury */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 12rem;

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows — warm glow */
  --shadow-sm: 0 1px 3px rgba(26,26,26,0.06);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.08);
  --shadow-lg: 0 16px 48px rgba(26,26,26,0.12);
  --shadow-gold: 0 8px 32px rgba(184,134,11,0.15);

  /* Transitions — luxury = unhurried */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 700ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-drawer: 300;
  --z-modal: 400;
  --z-toast: 500;
}
