  @import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=IBM+Plex+Serif:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Oswald:wght@200;300;400;500;600;700&display=swap');

  :root {
    --ink: #e0dcd4;
    --paper: #0a0a0c;
    --gold: #b8963e;
    --gold-light: #e8d5a0;
    --rust: #c47a6a;
    --slate: #111318;
    --slate-mid: #16181e;
    --muted: #8a9aaa;
    --divider: #1e2230;
    --copper: #c47a3a;
    --deep: #060608;
    --ff-mono: 'Goldman', sans-serif;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'IBM Plex Serif', serif;
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ───── NOISE TEXTURE OVERLAY ───── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }
