/* ============================================================
   SPACING & RADII
   Soft 8px base rhythm. Wedding/editorial feel → generous
   section padding and gently rounded corners (cards ~16px,
   pills fully round).
   ============================================================ */
:root {
  --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 padding presets */
  --pad-section-y: var(--space-9);
  --pad-card: var(--space-5);

  /* container widths */
  --container-narrow: 640px;   /* LP single-column mobile-first */
  --container: 980px;
  --container-wide: 1180px;

  /* radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;   /* default card */
  --radius-xl: 24px;
  --radius-pill: 999px;
  --radius-circle: 50%;

  /* border widths */
  --border-w: 1px;
  --border-w-thick: 2px;
}
