:root {
  /* Warm premium palette */
  --bg-main: #f5efe8;
  --bg-soft: #f9f6f2;
  --bg-card: #ffffff;

  --gold-light: #e6c98a;
  --gold-mid: #c8a96a;
  --gold-dark: #9f7f47;
  --gold-deep: #7a5c2e;

  --text-dark: #2f2418;
  --text-soft: #7a6a55;

  /* Compatibility aliases */
  --color-primary: var(--gold-mid);
  --color-primary-dark: var(--gold-dark);
  --color-secondary: var(--gold-light);
  --color-bg: var(--bg-main);
  --color-surface: var(--bg-soft);
  --color-surface-2: var(--bg-card);
  --color-text: var(--text-dark);
  --color-text-muted: var(--text-soft);
  --color-border: rgba(122, 92, 46, 0.26);
  --color-success: #2e7d32;
  --color-warning: #d4a017;
  --color-error: #b00020;

  /* Gradients */
  --gradient-hero: linear-gradient(145deg, var(--bg-soft) 0%, var(--bg-main) 100%);
  --gradient-gold: linear-gradient(
    145deg,
    var(--gold-light) 0%,
    var(--gold-mid) 35%,
    var(--gold-dark) 70%,
    var(--gold-deep) 100%
  );

  /* Typography */
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
  --radius-pill: 999px;

  /* Container */
  --container-max: 1200px;

  /* Elevation */
  --shadow-soft: 0 12px 28px rgba(122, 92, 46, 0.14);
}
