/* ============================================================
   The Gamekeepers Cottage — Spacing, radii, shadows, layout
   Calm, generous rhythm. 4px base unit.
   ============================================================ */

:root {
  /* Spacing scale (4px base) */
  --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;

  /* Corner radii — soft, never sharp, never pill-everything */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 999px;

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

  /* Shadows — soft, warm, low-contrast (sun through trees) */
  --shadow-xs: 0 1px 2px rgba(43, 42, 36, 0.06);
  --shadow-sm: 0 2px 8px rgba(43, 42, 36, 0.07);
  --shadow-md: 0 8px 24px rgba(43, 42, 36, 0.09);
  --shadow-lg: 0 18px 48px rgba(43, 42, 36, 0.12);
  --shadow-focus: 0 0 0 3px rgba(47, 93, 58, 0.22);

  /* Layout */
  --container-max: 1200px; /* @kind spacing */
  --container-narrow: 760px; /* @kind spacing */
  --header-height: 76px; /* @kind spacing */

  /* Motion — gentle, no bounce */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur-base: 220ms; /* @kind other */
  --dur-slow: 360ms; /* @kind other */
}
