/* ============================================================
   Bamboo Bay — Spacing, radii, shadows, motion
   8px base rhythm; soft warm shadows; gentle, unhurried motion.
   ============================================================ */
:root {
  /* ---- Spacing (8px base) ---- */
  --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 vertical rhythm */
  --section-pad: 6rem;
  --container-max: 1200px;

  /* ---- Radii (soft, not pill — refined boutique) ---- */
  --radius-xs: 4px;
  --radius-sm: 8px;    /* buttons, inputs */
  --radius-md: 12px;   /* feature cards */
  --radius-lg: 16px;   /* room cards / media */
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* ---- Shadows (warm, low, diffuse) ---- */
  --shadow-xs: 0 1px 2px rgba(43, 36, 34, 0.06);
  --shadow-sm: 0 4px 12px rgba(43, 36, 34, 0.08);
  --shadow-md: 0 8px 24px rgba(43, 36, 34, 0.10);
  --shadow-lg: 0 18px 48px rgba(43, 36, 34, 0.14);
  --shadow-gold: 0 8px 22px rgba(209, 154, 45, 0.30);

  /* ---- Motion ---- */
  --ease-calm: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);       /* @kind other */
  --dur-fast: 0.18s; /* @kind other */
  --dur-base: 0.3s;  /* @kind other */
  --dur-slow: 0.6s;  /* @kind other */
  --lift: -3px;      /* @kind spacing */
}
