/* Leyrer + Graf — Spacing, radii, borders, shadows, motion
   The brand is FLAT and airy: generous whitespace, square-cornered photography,
   pill-shaped buttons, almost no drop shadows. Shadows are reserved for genuine
   elevation (hover-lifted cards, overlays). */
:root {
  /* Spacing scale (4px base) */
  --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;

  /* Section rhythm */
  --gutter: 24px;            /* grid gutter */
  --section-pad-y: 96px;     /* vertical padding of page sections */
  --content-max: 1200px;     /* max content width */

  /* Radii — square photography & cards, full-pill buttons */
  --radius-none: 0;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-card: 0px;        /* cards & images are square-cornered */
  --radius-pill: 999px;      /* buttons + tags are pills */

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

  /* Shadows — used sparingly */
  --shadow-none: none;
  --shadow-card: 0 1px 2px rgba(40, 38, 34, 0.06), 0 4px 16px rgba(40, 38, 34, 0.08);
  --shadow-raised: 0 8px 28px rgba(40, 38, 34, 0.14);
  --shadow-overlay: 0 24px 64px rgba(20, 18, 16, 0.28);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur-base: 200ms;
  --dur-slow: 360ms;

  /* Focus ring */
  --focus-ring: 0 0 0 3px rgba(243, 108, 33, 0.35);
}
