:root {
  /* Primary - Deep navy (trust, professionalism) */
  --color-primary: #1A3E5C;
  --color-primary-light: #2B5F8A;
  --color-primary-dark: #0F2A40;

  /* Secondary - Sage green (health, growth) */
  --color-secondary: #3B8F7E;
  --color-secondary-light: #56B5A2;
  --color-secondary-dark: #2A6D5F;

  /* Accent - Warm amber (warmth, humanity) */
  --color-accent: #D4956B;
  --color-accent-light: #E4B08E;
  --color-accent-dark: #B87A52;

  /* Tertiary - Lavender (calm, GGZ) */
  --color-tertiary: #8B7EB8;
  --color-tertiary-light: #A99DD0;
  --color-tertiary-dark: #6E629A;

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-bg: #F7FAF9;
  --color-bg-alt: #EDF2F0;
  --color-bg-light: #F0F5F3;
  --color-border: #CDD8D3;
  --color-text: #1A2B3C;
  --color-text-light: #4A5E6F;
  --color-text-muted: #7A8D9A;

  /* Semantic */
  --color-success: #3B8F7E;
  --color-warning: #D4956B;
  --color-error: #C1443E;
  --color-info: #8B7EB8;
  --color-available: #3B8F7E;
  --color-limited: #D4956B;
  --color-unavailable: #C1443E;
  --color-vergoed: #3B8F7E;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 1.5rem;
  --header-height: 72px;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

@media (max-width: 768px) {
  :root {
    --text-4xl: 1.875rem;
    --text-5xl: 2.25rem;
    --container-padding: 1rem;
    --header-height: 60px;
  }
}
