:root {
  /* Core palette */
  --color-black: #070707;
  --color-ink: #14110f;
  --color-ink-soft: #38332f;
  --color-muted: #7b7169;

  --color-paper: #fbfaf7;
  --color-cream: #f1ebe2;
  --color-cream-dark: #e7ded2;

  --color-rust: #c65335;
  --color-rust-dark: #9f3d27;
  --color-ochre: #bd843a;
  --color-gold-muted: #c69a55;

  --color-white: #ffffff;
  --color-line: rgba(20, 17, 15, 0.14);
  --color-line-light: rgba(255, 255, 255, 0.16);

  /* Typography */
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: Inter, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 860px;
  --gutter: 24px;

  /* Radius */
  --radius-sm: 2px;
  --radius-md: 6px;

  /* Transitions */
  --transition: 180ms ease;

  /* Shadows */
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.08);
}