/* ============================================================
   Jakober Musi — Spacing, radius, borders, shadow, motion
   Edel & modern: restrained radii, hairline borders, soft
   low-contrast shadows. The brass hairline is a signature detail.
   ============================================================ */

: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 */

  /* ---- Radius (restrained — the badge uses a generous, soft corner) ---- */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;   /* badge / large media */
  --radius-pill: 999px;
  --radius-round: 50%;

  /* ---- Border widths ---- */
  --border-thin:  1px;
  --border-base:  1.5px;
  --border-thick: 3px;
  --border-bar:   6px;   /* the signature frame rule above/below image fields — colour follows the variant: --bar-on-red / --bar-on-blue / --bar-on-paper */

  /* ---- Shadows (warm, low-contrast — never pure black) ---- */
  --shadow-xs:  0 1px 2px rgba(26, 20, 16, 0.06);
  --shadow-sm:  0 2px 8px rgba(26, 20, 16, 0.07);
  --shadow-md:  0 8px 24px rgba(26, 20, 16, 0.10);
  --shadow-lg:  0 20px 48px rgba(26, 20, 16, 0.14);
  --shadow-red: 0 14px 36px rgba(174, 1, 24, 0.26);   /* red CTA lift */

  /* ---- Layout ---- */
  --container:    1200px;
  --container-narrow: 760px;
  --gutter:       clamp(1rem, 4vw, 3rem); /* @kind spacing */

  /* ---- Motion (calm, confident — no bounce) ---- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   480ms; /* @kind other */
}
