/* ============================================================================
   LUTZ UND LUTZ · SPACING, LAYOUT & MOTION TOKENS
   8-pt scale (4 is the half-step). 12-col grid. Premium = subtle motion.
   ============================================================================ */

:root {
  /* ---- Spacing — 8-pt scale --------------------------------------------- */
  --space-0:  0;
  --space-1:  0.25rem;  /* 4   */
  --space-2:  0.5rem;   /* 8   */
  --space-3:  0.75rem;  /* 12  */
  --space-4:  1rem;     /* 16  */
  --space-5:  1.5rem;   /* 24  */
  --space-6:  2rem;     /* 32  */
  --space-7:  3rem;     /* 48  */
  --space-8:  4rem;     /* 64  */
  --space-9:  6rem;     /* 96  */
  --space-10: 8rem;     /* 128 */

  /* ---- Layout ------------------------------------------------------------ */
  --container:      1200px;
  --container-wide: 1280px;
  --container-text: 720px;   /* readable measure */
  --grid-cols:      12; /* @kind other */
  --gutter:         var(--space-5);
  --section-y:      var(--space-9);

  --bp-mobile:  480px; /* @kind other */
  --bp-tablet:  768px; /* @kind other */
  --bp-desktop: 1024px; /* @kind other */

  /* ---- Motion + focus ---------------------------------------------------- */
  --ease-out:    cubic-bezier(.22,.61,.36,1);    /* @kind other */
  --ease-in-out: cubic-bezier(.65,.05,.36,1);    /* @kind other */
  --dur-fast:    140ms; /* @kind other */
  --dur:         220ms; /* @kind other */
  --dur-slow:    360ms; /* @kind other */

  --focus-ring:         0 0 0 3px var(--color-vanille), 0 0 0 5px var(--color-orange-500); /* @kind shadow */
  --focus-ring-on-dark: 0 0 0 3px var(--color-petrol-900), 0 0 0 5px var(--color-orange-400); /* @kind shadow */
}
