/* ==========================================================================
   Pirova Schoonmaak — Design Tokens
   ========================================================================== */

:root {
  /* Kleuren */
  --color-teal: #14B8A6;
  --color-teal-deep: #0D6E63;
  --color-teal-ink: #0A2E2B;
  --color-mint: #7EEFDD;
  --color-mist: #EAFBF8;
  --color-coral: #F4515F;
  --color-coral-deep: #D93B49;
  --color-white: #FFFFFF;
  --color-border: #D8EFEA;
  --color-text: #0A2E2B;
  --color-text-muted: #4A6360;
  --color-text-soft: #7A9490;

  /* Typografie */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --fs-h1: clamp(2.25rem, 4.5vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.25rem);
  --fs-h3: 1.375rem;
  --fs-eyebrow: 0.8125rem;
  --fs-body: 1rem;
  --fs-body-lg: 1.0625rem;
  --fs-small: 0.8125rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --lh-tight: 1.15;
  --lh-base: 1.6;
  --ls-eyebrow: 0.14em;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 90px;

  /* Layout */
  --container-width: 1120px;
  --container-padding: 40px;
  --header-height: 84px;

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-full: 999px;

  /* Schaduw & transitie */
  --shadow-card: 0 1px 3px rgba(10, 46, 46, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(10, 46, 46, 0.12);
  --transition-base: 0.2s ease;
  --transition-slow: 0.4s ease;

  /* Z-index schaal */
  --z-header: 100;
  --z-overlay: 200;
}
