:root {
  /* ── Colors ── */
  --color-bg-primary:  #111827;
  --color-bg-mid:      #0e1520;
  --color-bg-deep:     #0a0f19;
  --color-bg-light:    #1a2333;
  --color-bg-card:     #162030;

  --color-accent:       #C8A84B;
  --color-accent-light: #ddc06e;
  --color-accent-warm:  #b8892d;
  --color-accent-dim:   rgba(200, 168, 75, 0.18);
  --color-accent-border: rgba(200, 168, 75, 0.30);

  --color-text-primary: #F0EDE6;
  --color-text-muted:   #8A8F9A;
  --color-text-dark:    #111827;
  --color-border:       rgba(200, 168, 75, 0.20);
  --color-border-dim:   rgba(200, 168, 75, 0.10);

  /* ── Typography ── */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Spacing ── */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* ── Radius ── */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  /* ── Motion ── */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   0.2s;
  --duration-normal: 0.4s;
  --duration-slow:   0.7s;

  /* ── Nav ── */
  --nav-height: 76px;

  /* ── Glow ── */
  --glow-accent:    0 0 28px rgba(200, 168, 75, 0.55);
  --glow-accent-sm: 0 0 16px rgba(200, 168, 75, 0.38);
  --glow-accent-lg: 0 0 48px rgba(200, 168, 75, 0.35);
  --glow-warm:      0 0 32px rgba(184, 137, 45, 0.40);

  /* ── Shadows ── */
  --shadow-card:   0 4px 32px rgba(0, 0, 0, 0.60);
  --shadow-strong: 0 8px 48px rgba(0, 0, 0, 0.85);
  --shadow-nav:    0 2px 24px rgba(0, 0, 0, 0.50);
}
