/* Eleven Royal Terrace — spacing & layout rhythm tokens */
:root {
  --space-2xs: 6px;
  --space-xs: 10px;
  --space-sm: 14px;
  --space-md: 18px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 40px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 80px;
  --space-6xl: 96px;
  --space-7xl: 120px;

  /* Fluid rhythm used site-wide for section padding + page gutter */
  --gutter: clamp(20px, 4vw, 64px); /* @kind spacing */
  --section-padding: clamp(80px, 12vh, 160px);

  --content-max: 1440px;
  --content-narrow: 920px;
}
