:root {
  /* Colors — Primary Palette */
  --color-bg: #FFF5C3;
  --color-bg-alt: #fffce8;
  --color-bg-card: #F2EBBF;
  --color-bg-card-hover: #ede5b0;
  --color-surface: #fffce8;
  --color-border: rgba(92, 75, 81, 0.2);
  --color-border-light: rgba(92, 75, 81, 0.12);

  --color-text: #5c4b51;
  --color-text-secondary: rgba(92, 75, 81, 0.7);
  --color-text-muted: rgba(92, 75, 81, 0.45);

  --color-primary: #00B597;
  --color-primary-hover: #009b82;
  --color-primary-light: rgba(0, 181, 151, 0.1);

  --color-heading: #74162B;
  --color-cta: #F06060;
  --color-cta-hover: #d94e4e;

  --color-accent: #F3B562;
  --color-success: #8CBEB2;
  --color-warning: #F3B562;
  --color-error: #F06060;

  /* Typography */
  --font-heading: 'Rubik Mono One', 'Archivo Black', 'Dela Gothic One', sans-serif;
  --font-body: 'Space Mono', 'Roboto Mono', 'Inter', monospace;
  --font-mono: 'Space Mono', 'Roboto Mono', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  --leading-tight: 1.15;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

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

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(92, 75, 81, 0.1);
  --shadow-md: 0 4px 12px rgba(92, 75, 81, 0.12);
  --shadow-lg: 0 8px 24px rgba(92, 75, 81, 0.15);
  --shadow-glow: 0 0 20px rgba(0, 181, 151, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index */
  --z-nav: 1000;
  --z-overlay: 2000;
  --z-modal: 3000;
}
