/* ============================================================
   LGS Ellwangen 2026 — Spacing, radii, shadows, layout
   The brand leans on generous WHITESPACE ("viel Weißraum"),
   soft organic dividers (Schleier wave), and flat, clean
   surfaces — so shadows are restrained and radii are gentle.
   ============================================================ */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --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 — section rhythm */

  /* ---- Radii (gentle, friendly; never sharp, never pill-everything) ---- */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;   /* default card / input */
  --radius-lg: 22px;   /* large cards / media */
  --radius-xl: 32px;
  --radius-pill: 999px;/* chips, tags, buttons */
  --radius-round: 50%;

  /* ---- Borders ---- */
  --border-width: 1px;
  --border-width-strong: 2px;

  /* ---- Shadows (soft, low, dark-blue tinted — not gray) ---- */
  --shadow-xs: 0 1px 2px rgba(0, 59, 73, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 59, 73, 0.08);
  --shadow-md: 0 10px 28px rgba(0, 59, 73, 0.10);
  --shadow-lg: 0 24px 56px rgba(0, 59, 73, 0.14);
  --shadow-focus: 0 0 0 3px rgba(44, 143, 184, 0.35);

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-wide: 1360px;
  --container-narrow: 760px;  /* readable prose measure */
  --gutter: var(--space-5);

  /* ---- Motion (calm, natural; fades + gentle ease, no bounce) ---- */
  --ease-standard: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 140ms; /* @kind other */
  --duration-base: 240ms; /* @kind other */
  --duration-slow: 420ms; /* @kind other */
}
