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

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, 12.5px + 0.37vw, 23px);
  scroll-snap-type: y proximity;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.65;
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 2.7vw, 2rem);
}
