:root {
  /* Ink — text colors, lightest → darkest */
  --ink-900: #101c33;
  --ink-800: #1c2d4d;
  --ink-700: #344968;
  --ink-500: #51637f;
  --ink-300: #93a3b8;
  --ink-100: #e4e9f0;
  --ink-50:  #f6f8fa;

  /* Paper — background colors, white → warm cream */
  --paper-900: #1f1710;
  --paper-50:  #f7f2e6;
  --paper-30:  #ffffff;

  --gold:       #a3791f;
  --gold-light: #c9a84c;
  --green:      #16a34a;
  --red-soft:   #dc2626;

  /* Typography */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'IBM Plex Mono', monospace;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows — dark, soft, calibrated for light backgrounds */
  --shadow-sm: 0 2px 10px rgba(16,28,51,.06);
  --shadow-md: 0 8px 28px rgba(16,28,51,.08);
  --shadow-lg: 0 20px 50px rgba(16,28,51,.12);

  /* Max widths */
  --max-w: 1180px;
  --max-w-text: 720px;
}