:root {
  /* Primary Palette — Warm Luxury Neutrals */
  --color-cream: #FAF7F2;
  --color-warm-white: #FFFDF9;
  --color-ivory: #F5F0E8;
  --color-sand: #E8DFD1;
  --color-taupe: #B8A99A;
  --color-charcoal: #2C2C2C;
  --color-deep-brown: #1A1A1A;
  --color-gold: #C9A96E;
  --color-gold-light: #D4BC8B;
  --color-gold-dark: #A8893E;

  /* Dark Section Palette */
  --color-dark-bg: #1A1613;
  --color-dark-text: #F5F0E8;

  /* Functional */
  --color-overlay: rgba(26, 22, 19, 0.85);
  --color-success: #6B8F71;
  --color-error: #C4594A;

  /* Font Families */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Fluid Type Scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 7rem);

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

  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;
  --space-section: clamp(5rem, 4rem + 5vw, 10rem);

  /* Layout */
  --container-max: 1400px;
  --container-narrow: 900px;
  --container-wide: 1600px;
  --gutter: clamp(1rem, 0.5rem + 2.5vw, 3rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-slower: 1200ms;
  --transition-base: var(--duration-normal) var(--ease-out-expo);
}
