/* 606 Guest House — Spacing, radius, shadow, layout tokens */
:root {
  /* Spacing scale (rem, 4px base) */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Corner radii — soft, boutique. Never fully pill on cards. */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
  --r-card: var(--r-lg);

  /* Shadows — warm-tinted, soft. Light, editorial. */
  --sh-xs: 0 1px 2px rgba(42,38,32,0.06);
  --sh-sm: 0 2px 8px rgba(42,38,32,0.08);
  --sh-md: 0 8px 24px rgba(42,38,32,0.10);
  --sh-lg: 0 18px 48px rgba(42,38,32,0.14);
  --sh-xl: 0 30px 70px rgba(28,26,23,0.22);
  --sh-inset: inset 0 1px 0 rgba(255,255,255,0.5);

  /* Focus ring */
  --ring: 0 0 0 3px rgba(198,137,47,0.35);

  /* Layout */
  --container: 1200px; /* @kind other */
  --container-narrow: 820px; /* @kind other */
  --container-wide: 1400px; /* @kind other */
  --gutter: clamp(1.25rem, 5vw, 4rem); /* @kind other */
  --header-h: 72px; /* @kind other */
  --utility-h: 40px; /* @kind other */

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1); /* @kind other */
  --dur-fast: 140ms; /* @kind other */
  --dur: 260ms; /* @kind other */
  --dur-slow: 520ms; /* @kind other */

  /* Overlay / protection gradients */
  --scrim-bottom: linear-gradient(to top, rgba(20,18,15,0.78) 0%, rgba(20,18,15,0.35) 40%, rgba(20,18,15,0) 75%); /* @kind other */
  --scrim-full: linear-gradient(to top, rgba(20,18,15,0.72), rgba(20,18,15,0.28)); /* @kind other */
}
