/* ============================================================
   MOUK — Reset & Base
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  background: var(--void);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}

* { cursor: none !important; }

a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { border: none; background: none; font-family: inherit; color: inherit; }
img  { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; line-height: 1; }

::selection {
  background: var(--gold);
  color: var(--void);
}
