:root {
  /* Color Palette - Warm Light */
  --bg-primary: #faf8f5;
  --bg-secondary: #f2ede6;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.72);

  --accent-gold: #c9a84c;
  --accent-gold-light: #e8d49a;
  --accent-gold-dark: #9a7a2e;
  --accent-charcoal: #1a1a2e;
  --accent-rust: #c0532a;

  --text-primary: #1a1a2e;
  --text-secondary: #5a5470;
  --text-muted: #9b94a8;
  --text-light: #ffffff;

  --border-light: rgba(201, 168, 76, 0.2);
  --border-medium: rgba(201, 168, 76, 0.4);
  --shadow-soft: 0 4px 32px rgba(26, 26, 46, 0.08);
  --shadow-card: 0 8px 48px rgba(26, 26, 46, 0.12);
  --shadow-glow: 0 0 40px rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

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

  /* Layout */
  --max-width: 1280px;
  --nav-height: 80px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --border-radius-full: 999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
