/* ═══════════ 3 · RESET & ELEMENTOS BASE ═══════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: auto
}

html.lenis,
html.lenis body {
  height: auto
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

em {
  font-style: italic;
  color: var(--brand)
}

.text-brand-accent {
  color: var(--brand);
  font-style: italic;
  display: inline;
}

::selection {
  background: var(--brand);
  color: #fff
}
