:root {
  --bg: #f4f1ea;
  --ink: #1a1714;
  --muted: #5c574f;
  --rule: #d4cfc4;
  --measure: 38rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", Times, serif;
  font-optical-sizing: auto;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  font-synthesis: none;
}

main {
  width: min(100% - 3rem, 58rem);
  margin: 0 auto;
  padding: 12vh 0 18vh;
}

h1,
h2,
p,
ul {
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.intro {
  max-width: var(--measure);
}

.intro h1 {
  margin-bottom: 2.25rem;
}

.tagline {
  margin-bottom: 2.25rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.4;
  text-wrap: pretty;
}

.intro p + p {
  margin-top: 1.15rem;
}

.location {
  color: var(--muted);
}

.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem 6rem;
  margin-top: 6rem;
  padding-top: 5rem;
  border-top: 1px solid var(--rule);
}

.paths section p + p {
  margin-top: 1.15rem;
}

.areas {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.areas li + li {
  margin-top: 0.45rem;
}

footer {
  margin-top: 5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--rule);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 2rem;
}

@media (max-width: 720px) {
  main {
    width: min(100% - 2.25rem, 58rem);
    padding: 10vh 0 14vh;
  }

  .paths {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    margin-top: 4.5rem;
    padding-top: 4rem;
  }

  footer {
    margin-top: 4.5rem;
    padding-top: 3rem;
  }
}
