:root {
  --site-header-bg: #343434;
  --site-header-text: #fffffd;
  --site-header-accent: #fff8cc;
}

.site-header.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  max-width: none;
  min-height: clamp(94px, 7vw, 132px);
  height: auto;
  margin: 0;
  padding: 0 clamp(28px, 8vw, 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 248, 204, 0.18);
  border-bottom: 1px solid rgba(255, 248, 204, 0.52);
  background: var(--site-header-bg);
  color: var(--site-header-text);
}

.site-header .site-logo {
  display: block;
  width: clamp(100px, 6.5vw, 145px);
  color: inherit;
  font: clamp(50px, 3.55vw, 78px)/0.58 Italiana, Georgia, serif;
  letter-spacing: -0.09em;
  text-decoration: none;
  text-transform: none;
}

.site-header .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 1.55vw, 37px);
  position: static;
  padding: 0;
  background: transparent;
}

.site-header .site-nav a {
  padding: 34px 0 29px;
  border-bottom: 3px solid transparent;
  color: inherit;
  font: 700 clamp(12px, 0.68vw, 16px) Raleway, Arial, sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header .site-nav a:hover,
.site-header .site-nav a:focus-visible,
.site-header .site-nav a[aria-current="page"] {
  border-bottom-color: var(--site-header-accent);
  color: var(--site-header-accent);
}

.site-header .site-menu {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 253, 0.35);
  background: transparent;
  color: inherit;
}

.site-header .site-menu i {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}

@media (max-width: 700px) {
  .site-header.site-header {
    min-height: 82px;
    padding: 0 20px;
  }

  .site-header .site-logo {
    width: 88px;
    font-size: 46px;
  }

  .site-header .site-menu {
    display: block;
  }

  .site-header .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid rgba(255, 248, 204, 0.52);
    background: var(--site-header-bg);
  }

  .site-header .site-nav.open {
    display: flex;
  }

  .site-header .site-nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom-width: 1px;
  }
}
