/* Marvela — Spacing, radius & sizing tokens
   Base unit 8px. Quiet luxury reads through restraint: generous outer whitespace,
   tight inner rhythm, near-square corners (never bubbly/pill except small tags). */

:root {
  --space-0: 0px;
  --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;
  --space-11: 160px;

  /* Section-level rhythm (marketing pages) */
  --section-padding-y: var(--space-10);
  --section-padding-x: var(--space-7);
  --content-max-width: 1180px;
  --content-max-width-narrow: 720px;

  /* Radius — deliberately restrained */
  --radius-none: 0px;
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --radius-pill: 999px; /* tags/badges only */

  /* Borders */
  --border-width-hairline: 1px;
  --border-width-thick: 1.5px;

  /* Shadows — soft and low-contrast; navy never black */
  --shadow-xs: 0 1px 2px color-mix(in oklab, var(--navy-950) 8%, transparent);
  --shadow-sm: 0 2px 8px color-mix(in oklab, var(--navy-950) 10%, transparent);
  --shadow-md: 0 8px 24px color-mix(in oklab, var(--navy-950) 12%, transparent);
  --shadow-lg: 0 20px 48px color-mix(in oklab, var(--navy-950) 16%, transparent);
  --shadow-gold-glow: 0 0 0 1px color-mix(in oklab, var(--gold-500) 55%, transparent);

  /* Motion — understated, editorial: fades and slow easing, no bounce */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-editorial: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-standard: 280ms; /* @kind other */
  --duration-slow: 480ms; /* @kind other */

  /* Icon sizing */
  --icon-sm: 16px;
  --icon-md: 20px;
  --icon-lg: 24px;
}
