/* ============================================================
   Steiff Editorial — Spacing, layout, borders, motion
   Generous whitespace. radius 0 everywhere (circles excepted).
   No shadows. No gradients.
   ============================================================ */

:root {
  /* ---- Spacing scale ---- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* ---- Layout ---- */
  --container-max: 1800px;
  --container-pad: 40px;
  --section-gap: 96px;       /* vertical rhythm between sections */
  --grid-gap: 24px;

  /* ---- Borders ---- */
  --radius-none: 0;          /* default for everything */
  --radius-circle: 50%;      /* avatars, carousel arrows, icons only */
  --border-width: 1px;
  --border-hairline: 1px solid var(--line);

  /* ---- Button geometry ---- */
  --btn-pad-y-top: 13px;
  --btn-pad-y-bottom: 11px;
  --btn-pad-x: 40px;

  /* ---- Elevation ---- */
  --shadow-none: none;       /* the brand uses NO shadows */

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --duration-fast: 120ms; /* @kind other */
  --duration-base: 200ms; /* @kind other */
  --hover-opacity: 0.8; /* @kind other */ /* primary hover = subtle fade */
}
