/* ===========================================================================
   PLATZ 28 — Spacing, radius, shadow, motion tokens
   =========================================================================== */

:root {
  /* --- Spacing scale (4px base) --- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* --- Radius --- */
  --radius-xs: 4px;
  --radius-sm: 7px;
  --radius-md: 11px;   /* default UI card / button */
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-circle: 50%;  /* the badge motif */

  /* --- Borders --- */
  --bw-hair: 1px;   /* @kind other */
  --bw-thick: 2px;  /* @kind other */

  /* --- Elevation: deep night shadows + warm lantern glow --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 10px 26px rgba(0, 0, 0, 0.46);
  --shadow-lg: 0 26px 64px rgba(0, 0, 0, 0.58);
  --shadow-inset: inset 0 1px 0 rgba(245, 241, 233, 0.05);
  --glow-amber: 0 0 0 1px rgba(232, 148, 58, 0.30), 0 6px 30px var(--amber-glow);

  /* --- Content protection gradient (text over photography) --- */
  --scrim-bottom: linear-gradient(to top, rgba(7,9,10,0.92) 0%, rgba(7,9,10,0.55) 38%, rgba(7,9,10,0) 78%);  /* @kind other */
  --scrim-full: linear-gradient(to top, rgba(7,9,10,0.88) 0%, rgba(7,9,10,0.35) 50%, rgba(7,9,10,0.55) 100%);  /* @kind other */

  /* --- Motion --- */
  --ease-out: cubic-bezier(0.20, 0.70, 0.20, 1.00);  /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0.05, 0.35, 1.00);  /* @kind other */
  --dur-fast: 120ms;  /* @kind other */
  --dur: 200ms;       /* @kind other */
  --dur-slow: 380ms;  /* @kind other */

  /* --- Layout --- */
  --container: 1200px;       /* @kind other */
  --container-narrow: 820px; /* @kind other */
  --header-h: 68px;          /* @kind other */
}
