:root {
  /* Fonts */
  --font-heading: "Archivo Black", sans-serif;
  --font-body: "Manrope", sans-serif;

  /* Colors */
  --color-black: #000000;
  --color-white: #ffffff;

  --color-bg: #0d0d0d;
  --color-surface: #1a1a1a;
  --color-border: #2a2a2a;

  --color-paper: #f5f1e8;
  --color-paper-muted: #d9d1c4;

  --color-text: #ededed;
  --color-text-muted: #a0a0a0;

  --color-accent: #7fae85;
  --color-accent-dark: #4e6a53;
  --color-accent-soft: #8fae93;

  --color-rust: #8b5a3c;
  --color-rust-dark: #5c3a28;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;

  /* Shadows */
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.25);
  --shadow-hard: 0 8px 0 rgba(0, 0, 0, 0.35);

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;

  /* Z-index */
  --z-base: 1;
  --z-header: 100;
  --z-dropdown: 200;
  --z-overlay: 300;
  --z-modal: 400;

  /* Breakpoints */
  --bp-xs: 480px;
  --bp-sm: 768px;
  --bp-md: 1024px;
  --bp-lg: 1280px;
  --bp-xl: 1440px;
}
