/* css/reset.css */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  background-color: var(--ink);
}

body {
  font-family: var(--font-display);
  color: var(--paper);
  background-color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  cursor: none; /* Custom cursor everywhere */
}

/* Prevent scrolling while loading */
body.loading {
  overflow: hidden;
}

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; cursor: none; }
button { background: none; border: none; cursor: none; font-family: inherit; }
input, select, textarea { font-family: inherit; cursor: none; outline: none; }

/* Font Utility Classes */
.grotesk { font-family: var(--font-display); }
.editorial { font-family: var(--font-accent); font-style: italic; }
.mono { font-family: var(--font-mono); }
