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

html.lenis {
  height: auto;
}

/* Custom cursor only when fine pointer (keeps touch / keyboard UX) */
@media (hover: hover) and (pointer: fine) {
  html {
    cursor: none;
  }
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: none), (pointer: coarse) {
  #cur,
  #cur2 {
    display: none !important;
  }
}

/* Shared logo asset (nav, footer, preloader, 404, privacy) */
.nav-logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
