:root {
  /* Colors - Industrial/Brutalist Palette */
  --bg-primary: #f2f2f2;
  --bg-secondary: #e6e6e6;
  --bg-dark: #1a1a1a;
  --bg-accent: #ff3b00; /* High contrast orange for actions */

  --text-primary: #1a1a1a;
  --text-secondary: #4d4d4d;
  --text-light: #f2f2f2;

  --border-color: #1a1a1a;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-text: 'Chivo', sans-serif;

  /* Type Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.5rem;
  --text-xl: 2rem;
  --text-2xl: 3rem;
  --text-3xl: 4.5rem;
  --text-4xl: 6rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-24: 12rem;

  /* Layout */
  --container-max: 1440px;
  --container-pad: var(--space-4);

  /* Borders */
  --border-width: 2px;
}

@media (min-width: 768px) {
  :root {
    --container-pad: var(--space-8);
  }
}
