/* Arcadia Homes — Spacing, radius, shadow, layout tokens */
:root {
  /* Spacing scale (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 — restrained; brand skews architectural/square */
  --radius-none: 0;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-pill: 999px;

  /* Shadows — soft, warm-tinted, low-contrast (light imagery-led feel) */
  --shadow-xs: 0 1px 2px rgba(66, 58, 45, 0.06);
  --shadow-sm: 0 2px 8px rgba(66, 58, 45, 0.07);
  --shadow-md: 0 8px 24px rgba(66, 58, 45, 0.09);
  --shadow-lg: 0 20px 48px rgba(66, 58, 45, 0.12);

  /* Image scrim gradients (for text over photos) */
  --scrim-bottom: linear-gradient(to top, rgba(18,17,16,0.7) 0%, rgba(18,17,16,0.15) 45%, rgba(18,17,16,0) 75%); /* @kind other */
  --scrim-full: linear-gradient(to top, rgba(18,17,16,0.55), rgba(18,17,16,0.15)); /* @kind other */

  /* Layout */
  --container-max: 1280px;  /* @kind other */
  --container-wide: 1480px; /* @kind other */
  --gutter: clamp(1.25rem, 4vw, 4rem); /* @kind spacing */

  /* Motion — subtle, gentle fades & reveals (per brief) */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);   /* @kind other */
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 160ms;  /* @kind other */
  --dur-med: 320ms;   /* @kind other */
  --dur-slow: 640ms;  /* @kind other */
}
