.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5vw;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(250, 248, 245, .96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.about-page .site-header {
  color: var(--ink);
}

.wordmark {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .16em;
  line-height: 1;
}

.wordmark span {
  display: block;
  margin-top: 7px;
  font: 500 8px var(--sans);
  letter-spacing: .3em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 42px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav a,
.header-actions a {
  transition: opacity .2s;
}

.main-nav a:hover,
.header-actions a:hover {
  opacity: .65;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  gap: 5px;
  flex-direction: column;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}

.menu-button span {
  width: 22px;
  height: 1px;
  background: currentColor;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 5vw;
  background: var(--ink);
  color: #fff;
}

.site-footer > p {
  margin: 0;
  color: #b8aaa0;
  font: italic 16px var(--serif);
}

.site-footer > div {
  display: flex;
  gap: 22px;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer .wordmark {
  font-size: 17px;
}

@media (max-width: 800px) {
  .site-header {
    padding: 22px 6vw;
  }

  .main-nav {
    position: absolute;
    top: 73px;
    left: 5vw;
    right: 5vw;
    display: none;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 24px;
    background: var(--ink);
    color: #fff;
  }

  .main-nav.open,
  .menu-button {
    display: flex;
  }

  .header-actions {
    gap: 15px;
  }

  .site-footer {
    display: block;
    padding: 40px 7vw;
  }

  .site-footer > p {
    margin: 30px 0;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .bag-link {
    display: none;
  }

  .wordmark {
    font-size: 17px;
  }

  .site-footer > div {
    gap: 12px 18px;
  }
}
