:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f5f2;
  color: #1d2521;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f4f5f2;
}

a {
  color: inherit;
}

.site-header {
  height: 64px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cbd0ca;
  background: #f4f5f2;
}

.wordmark {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 24px;
}

nav a,
.text-link {
  font-size: 14px;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  min-height: calc(88vh - 64px);
  overflow: hidden;
  background: #27342e;
}

.hero img {
  width: 100%;
  height: calc(88vh - 64px);
  min-height: 520px;
  object-fit: cover;
  display: block;
  filter: brightness(0.62);
}

.hero-copy {
  position: absolute;
  left: 5vw;
  bottom: 8vh;
  max-width: 720px;
  color: #ffffff;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.03;
  font-weight: 500;
}

.hero-copy > p:last-child {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: 20px;
  line-height: 1.55;
}

.notes,
.hours {
  padding: 72px 5vw;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(280px, 1.15fr);
  gap: 8vw;
  border-bottom: 1px solid #cbd0ca;
}

h2 {
  max-width: 500px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 500;
}

.notes > p,
.hours > p {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.75;
}

.hours {
  background: #dfe6df;
}

.hours .section-label,
.hours > p {
  margin-top: 0;
}

.muted {
  color: #58645e;
}

footer {
  min-height: 96px;
  padding: 32px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #58645e;
  font-size: 13px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.not-found main {
  width: min(680px, 100%);
}

.not-found h1 {
  color: #1d2521;
  font-size: 52px;
}

.not-found p:not(.kicker) {
  margin: 24px 0;
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .site-header {
    padding: 0 20px;
  }

  nav {
    gap: 16px;
  }

  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 48px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy > p:last-child {
    font-size: 17px;
  }

  .notes,
  .hours {
    padding: 52px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  h2 {
    font-size: 34px;
  }

  .notes > p,
  .hours > p {
    margin-top: 0;
    font-size: 16px;
  }

  footer {
    padding: 28px 20px;
  }
}
