/* Design Tokens */
:root {
  /* Colors */
  --cream: #F5F0E8;
  --cream-deep: #EFE8DC;
  --dark: #1C1C1A;
  --dark-soft: #2C2C2A;
  --stone: #8C8880;
  --stone-light: #B5B0A6;
  --gold: #B8975A;
  --gold-light: #D4B07A;
  --gold-soft: rgba(184, 151, 90, 0.12);
  --sage: #6B7B6E;
  --sage-light: #E8EDE9;
  --sage-dark: #3A4A3C;
  --white: #FFFFFF;
  --border: rgba(28, 28, 26, 0.10);
  --border-strong: rgba(28, 28, 26, 0.18);
  --success: #6BCB77;
  --danger: #C25B5B;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, sans-serif;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(28, 28, 26, 0.04);
  --shadow-md: 0 4px 16px rgba(28, 28, 26, 0.06);
  --shadow-lg: 0 12px 40px rgba(28, 28, 26, 0.08);
  --shadow-xl: 0 24px 80px rgba(28, 28, 26, 0.12);

  /* Container */
  --container: 1240px;
  --container-narrow: 880px;

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.25s cubic-bezier(0.32, 0.72, 0, 1);
  --t-slow: 0.5s cubic-bezier(0.32, 0.72, 0, 1);

  /* Z-index */
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}
