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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background-color: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.page {
  position: relative;
  z-index: 1;
}

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 18ch;
}

.section-lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
