html {
  cursor: none;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--charcoal);
  background-color: var(--sand);
  overflow-x: hidden;
}

/* Hide native scrollbar while Lenis is active */
body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Selection */
::selection {
  background: var(--moss);
  color: var(--sand);
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.overflow-hidden {
  overflow: hidden;
}

/* Section containers */
.section-inner {
  width: min(90rem, 90vw);
  margin-inline: auto;
}
