/* ============================================
   BASE & RESET - Nokhba Design System v2.0
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-white);
  color: var(--clr-body);
  line-height: var(--lh-wide);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

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

section {
  padding: var(--section-py) var(--container-pad);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}
