/* ============================================================
   Yellow Pages Malta — Spacing, radius, shadow, layout tokens
   ============================================================ */
:root {
  /* Spacing scale (4px base) */
  --space-0: 0;
  --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;

  /* Radius — brand uses soft, friendly rounding + pill CTAs */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* Shadows — soft, warm-neutral, low spread */
  --shadow-xs: 0 1px 2px rgba(23,23,23,0.06);
  --shadow-sm: 0 2px 8px rgba(23,23,23,0.06);
  --shadow-md: 0 6px 20px rgba(23,23,23,0.08);
  --shadow-lg: 0 16px 40px rgba(23,23,23,0.12);
  --shadow-brand: 0 8px 24px rgba(255,214,1,0.35);

  /* Layout */
  --container-max: 1200px; /* @kind other */
  --container-pad: 24px;   /* @kind spacing */
  --header-height: 72px;   /* @kind other */

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