*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg-page);
  color: var(--color-wool-ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
  /* Wool texture: SVG noise grain overlay on white */
}

/* Wool texture grain layer */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.028;      /* Very subtle — just enough to feel the wool texture */
  pointer-events: none;
  z-index: 9999;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }
canvas { display: block; }
