/* ============================================================
   Realty ONE Group West — Spacing, Radius, Shadow, Motion
   ============================================================ */
:root {
  /* Spacing — 4px base */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4  */
  --space-2: 0.5rem;    /* 8  */
  --space-3: 0.75rem;   /* 12 */
  --space-4: 1rem;      /* 16 */
  --space-5: 1.5rem;    /* 24 */
  --space-6: 2rem;      /* 32 */
  --space-7: 3rem;      /* 48 */
  --space-8: 4rem;      /* 64 */
  --space-9: 6rem;      /* 96 */
  --space-10: 8rem;     /* 128 */

  /* Radius — modern, lightly squared (the mark is the only true circle) */
  --radius-xs:  3px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 999px;
  --radius-circle: 50%;

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

  /* Shadows — soft, warm-tinted, never harsh */
  --shadow-xs: 0 1px 2px rgba(26, 23, 18, 0.06);
  --shadow-sm: 0 2px 6px rgba(26, 23, 18, 0.07);
  --shadow-md: 0 6px 18px rgba(26, 23, 18, 0.09);
  --shadow-lg: 0 16px 40px rgba(26, 23, 18, 0.12);
  --shadow-xl: 0 28px 70px rgba(26, 23, 18, 0.16);
  /* Gold glow for hero CTAs on dark */
  --shadow-gold: 0 10px 30px rgba(199, 170, 95, 0.35);

  /* Layout */
  --container-sm: 640px;
  --container-md: 960px;
  --container-lg: 1200px;
  --container-xl: 1440px;

  /* Motion — confident, eased, never bouncy */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --ease-in:       cubic-bezier(0.4, 0, 1, 1); /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-normal: 220ms; /* @kind other */
  --dur-slow:   400ms; /* @kind other */
}
