:root {
  /* Colors — dark luxury palette */
  --color-bg: #0a0908;
  --color-bg-elevated: #14110d;
  --color-surface: #1c1813;
  --color-border: #2a241c;
  --color-border-strong: #3a3225;

  --color-gold: #c9a96e;
  --color-gold-light: #d8bd87;
  --color-gold-dim: #8a7448;

  --color-text: #f2ebdd;
  --color-text-muted: #a89e8a;
  --color-text-dim: #6e6555;

  /* Typography */
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.6875rem, 0.66rem + 0.15vw, 0.75rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.3vw, 1.0625rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.4vw, 1.1875rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  --text-2xl: clamp(1.625rem, 1.4rem + 1.1vw, 2.25rem);
  --text-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);
  --text-5xl: clamp(3rem, 2.4rem + 3vw, 4.5rem);
  --text-6xl: clamp(3.5rem, 2.8rem + 3.6vw, 6rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: clamp(1.25rem, 5vw, 3rem);
  --header-height: 5rem;

  /* Other */
  --radius-sm: 2px;
  --radius-md: 4px;
  --transition: 320ms cubic-bezier(0.2, 0.6, 0.2, 1);
  --letter-spacing-wide: 0.15em;
  --letter-spacing-wider: 0.25em;
  --letter-spacing-widest: 0.4em;
}
