.page-width {
  width: min(var(--page-width), calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  min-height: 5.4rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  justify-self: start;
  font-size: 1.2rem;
  letter-spacing: normal;
  line-height: 1;
  text-decoration: none;
}

.splash-wordmark {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-synthesis: none;
}

.splash-wordmark::after {
  content: attr(data-wordmark);
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.5);
  filter: blur(8px);
  pointer-events: none;
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav,
.header-cta,
.site-footer {
  color: var(--secondary);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta,
.site-footer a {
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--primary);
}

.header-cta {
  justify-self: end;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  gap: 1.25rem;
}
