/* Structural Base CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--line-height-base);
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3, .section-title { font-size: var(--section-heading-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-red);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}