/* PIZCA Consult - Design Tokens */
:root {
  /* Brand Colors (aligned with logo: deep navy, metallic gold) */
  --color-primary: #0d2237;
  --color-primary-dark: #081829;
  --color-primary-light: #152d47;
  --color-accent: #b8962e;
  --color-accent-dark: #94781f;
  --color-accent-light: #d4af37;
  
  /* Neutrals (clean white, charcoal text per logo) */
  --color-bg: #ffffff;
  --color-bg-alt: #f6f7f9;
  --color-bg-muted: #eef0f3;
  --color-text: #1e293b;
  --color-text-muted: #334155;
  --color-text-light: #64748b;
  --color-border: #e2e8f0;
  
  /* Typography */
  --font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1.0625rem;
  --font-size-lg: 1.1875rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-hero: 2.75rem;
  --line-height-tight: 1.25;
  --line-height-normal: 1.55;
  --line-height-relaxed: 1.7;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 41, 66, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(15, 41, 66, 0.08), 0 2px 4px -2px rgba(15, 41, 66, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 41, 66, 0.08), 0 4px 6px -4px rgba(15, 41, 66, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

@media (min-width: 768px) {
  :root {
    --font-size-hero: 3.25rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --font-size-hero: 3.75rem;
  }
}