/* ──────────────────────────────────────────────────────────────
   Uniek Stukadoors · Design tokens
   Eén bron van waarheid voor kleuren, typografie en ritme (DRY).
   ────────────────────────────────────────────────────────────── */

:root {
  /* Merkkleuren — afgeleid van het logo */
  --brand:        #F26A1B;
  --brand-600:    #D85A10;
  --brand-700:    #B8480A;
  --brand-50:     #FEF1E7;
  --brand-100:    #FDDFC8;

  /* Neutralen (antraciet i.p.v. puur zwart) */
  --ink:          #202124;
  --ink-900:      #16181C;
  --ink-700:      #34373D;
  --ink-500:      #5B5F66;
  --ink-400:      #888D95;
  --ink-300:      #C2C6CC;
  --line:         #E7E9ED;
  --surface:      #FFFFFF;
  --surface-2:    #F7F8FA;
  --surface-3:    #EFF1F4;

  /* Functioneel */
  --success:      #1E9E5A;
  --danger:       #D23B3B;

  /* Typografie */
  --font-head: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-xs:   0.78rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.175rem;
  --fs-xl:   1.4rem;
  --fs-2xl:  1.85rem;
  --fs-3xl:  2.4rem;
  --fs-4xl:  clamp(2.4rem, 5vw, 3.6rem);
  --fs-hero: clamp(2.6rem, 6vw, 4.6rem);

  --lh-tight: 1.12;
  --lh-snug:  1.3;
  --lh-base:  1.65;

  /* Ritme / spacing (8pt) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Vorm */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Schaduw */
  --shadow-sm: 0 1px 2px rgba(22, 24, 28, .06), 0 1px 3px rgba(22, 24, 28, .08);
  --shadow:    0 6px 24px rgba(22, 24, 28, .08);
  --shadow-lg: 0 18px 50px rgba(22, 24, 28, .14);
  --shadow-brand: 0 12px 30px rgba(242, 106, 27, .32);

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --header-h: 84px;

  /* Beweging */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .18s;
  --t: .32s;
  --t-slow: .6s;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
