/* Custom Properties — Straxverk */
:root {
  /* Brand Colors */
  --brand-primary: #EBECEC;
  --brand-secondary: #595F72;
  --brand-dark: #2D3340;

  /* Backgrounds */
  --bg-default: #FFFFFF;
  --bg-surface: #F5F6F6;
  --bg-muted: #EBECEC;
  --bg-dark: #1A1C22;

  /* Text */
  --text-primary: #1A1C22;
  --text-secondary: #595F72;
  --text-muted: #8A909E;

  /* Interactive */
  --interactive-primary: #595F72;
  --interactive-hover: #474D5E;

  /* Utility Colors */
  --color-white: #FFFFFF;
  --color-divider: rgba(45, 51, 64, 0.15);
  --color-overlay: rgba(26, 28, 34, 0.45);
  --color-nav-bg: rgba(26, 28, 34, 0.95);
  --color-nav-text: rgba(255, 255, 255, 0.8);
  --color-error: #E74C3C;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --text-display: clamp(48px, 7vw, 96px);
  --text-h1: clamp(40px, 5.5vw, 72px);
  --text-h2: clamp(32px, 4vw, 48px);
  --text-h3: clamp(22px, 2.5vw, 28px);
  --text-h4: clamp(18px, 1.5vw, 22px);
  --text-body: 16px;
  --text-body-lg: 18px;
  --text-small: 14px;
  --text-label: 12px;
  --text-nav: 14px;

  --leading-display: 0.92;
  --leading-h1: 0.95;
  --leading-h2: 1.0;
  --leading-body: 1.6;

  --tracking-display: -2px;
  --tracking-h1: -1.5px;
  --tracking-h2: -1px;
  --tracking-tight: -0.5px;

  /* Spacing — 8-point grid */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-5xl: 120px;
  --space-6xl: 160px;

  /* Layout */
  --nav-height: 80px;
  --container-max: 1320px;
  --container-padding: 40px;

  /* Transitions */
  --transition-fast: 300ms ease-out;
  --transition-base: 500ms ease-out;
  --transition-slow: 800ms ease-out;
  --transition-reveal: 600ms ease-out;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 100px;
}
