/* ============================
   Base typography & body
   ============================ */
body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Paper noise texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* Focus visible (A11y) */
:focus-visible {
  outline: 2px solid var(--c-accent-2);
  outline-offset: 3px;
}
