/* Reset & Typography */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--maroon);
  line-height: 1.2;
}

h1 { font-size: 3.2rem; font-weight: 800; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 600; }

a {
  color: var(--maroon);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

ul { list-style: none; }

img { max-width: 100%; height: auto; }

.white { color: var(--white) !important; }

@media screen and (max-width: 767px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
}
