/*
  Tokens: Utilitarian, stark, high-contrast industrial aesthetic.
  Avoids clichés like glassmorphism or generic gradients.
*/

:root {
  /* Colors - High contrast */
  --c-bg: #0a0a0a;
  --c-text: #e5e5e5;
  --c-text-muted: #888888;
  --c-accent: #cc2936; /* Deep crimson */
  --c-accent-hover: #ff3344;
  --c-border: #333333;
  --c-surface: #121212;
  --c-surface-alt: #1a1a1a;

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Lora', serif;

  /* Scale */
  --s-xs: 0.75rem;
  --s-sm: 0.875rem;
  --s-base: 1rem;     /* 16px */
  --s-lg: 1.25rem;
  --s-xl: 1.5rem;
  --s-2xl: 2rem;
  --s-3xl: 3rem;
  --s-4xl: 4.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Borders */
  --border-width: 1px;
  --border-radius: 0; /* Strictly sharp corners, no rounded-everything */

  /* Layout */
  --max-width: 1200px;
  --content-width: 720px;
}

@media (min-width: 768px) {
  :root {
    --s-3xl: 4rem;
    --s-4xl: 6rem;
  }
}
