:root {
  /* Couleurs */
  --color-bg: #0D0D0D;
  --color-bg-alt: #1A1A1A;
  --color-bg-card: #161616;
  --color-gold: #C9A84C;
  --color-gold-light: #E2C97E;
  --color-gold-dark: #A8872F;
  --color-text: #F0EBE0;
  --color-text-muted: #999999;
  --color-border: #2A2A2A;
  --color-white: #FFFFFF;
  --color-cream: #EDE7D8;
  --color-cream-dark: #D4C9B0;

  /* Typographie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-md: 1.125rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.5rem;
  --size-4xl: 3.5rem;
  --size-5xl: 5rem;
  --size-hero: clamp(4.5rem, 11vw, 9.5rem);

  /* Espacement */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Ombres */
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);

  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 5vw, 3rem);
  --nav-height: 80px;
}
