:root {
  --bg-base:        #FAF8F4;
  --bg-surface:     #FFFFFF;
  --bg-subtle:      #F3EFE6;
  --bg-contrast:    #0E0E10;

  --gold-100:       #F7E7B4;
  --gold-300:       #E8C97A;
  --gold-500:       #C9A227;
  --gold-700:       #A8842A;
  --gold-900:       #6B5316;

  --gold-gradient:  linear-gradient(135deg, #F7E7B4 0%, #C9A227 45%, #A8842A 100%);
  --gold-shine:     linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);

  --text-primary:   #0E0E10;
  --text-secondary: #5A5750;
  --text-muted:     #8C8880;
  --text-on-dark:   #F5F3EF;

  --border-subtle:  rgba(201, 162, 39, 0.18);
  --border-strong:  rgba(201, 162, 39, 0.42);

  --success:        #4ADE80;
  --error:          #E05252;

  --font-display:   'Manrope', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  --fs-h1:          clamp(2rem, 3.6vw + 1rem, 3.75rem);
  --fs-h2:          clamp(1.5rem, 2vw + 1rem, 2.25rem);
  --fs-h3:          1.0625rem;
  --fs-body:        1rem;
  --fs-small:       0.8125rem;

  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       1.5rem;
  --space-lg:       2.5rem;
  --space-xl:       4rem;
  --space-2xl:      6rem;
  --space-3xl:      9rem;

  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-pill:    999px;

  --shadow-soft:    0 4px 24px rgba(14, 14, 16, 0.06);
  --shadow-medium:  0 12px 48px rgba(14, 14, 16, 0.10);
  --shadow-gold:    0 8px 32px rgba(201, 162, 39, 0.25);

  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:    cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:  180ms;
  --duration-base:  320ms;
  --duration-slow:  640ms;

  --container-max:  1320px;
  --container-pad:  clamp(1.25rem, 4vw, 2.5rem);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
