.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-slate);
  background: rgba(9, 9, 11, 0.97);
}

.site-header__inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  gap: var(--space-5);
}

.site-header__brand {
  display: flex;
  min-width: 0;
  max-width: 14.375rem;
  flex: 0 1 auto;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}

.site-header__logo {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  object-fit: contain;
}

.site-header__brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.site-header__brand-name {
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-header__brand-note {
  margin-top: 0.25rem;
  color: var(--color-gold);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-4);
}

.site-header__nav-list {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav-list li,
.site-header__nav-list li + li {
  display: flex;
  margin: 0;
  padding: 0;
}

.site-header__nav-list li.site-header__nav-mobile-only {
  display: none;
}

.site-header__nav-list a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--color-mist);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.site-header__nav-list a:hover,
.site-header__nav-list a[aria-current="page"] {
  border-bottom-color: var(--color-gold);
  color: var(--color-white);
}

.site-header__reserve {
  flex: 0 0 auto;
  white-space: nowrap;
}

.site-header__nav-mobile-only,
.nav-toggle {
  display: none;
}

@media (max-width: 1120px) {
  .site-header__inner {
    min-height: 4.75rem;
    gap: var(--space-4);
  }

  .nav-toggle {
    display: inline-flex;
    width: 2.875rem;
    min-height: 2.875rem;
    flex: 0 0 2.875rem;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    margin-left: auto;
    padding: 0.625rem;
    border: 1px solid var(--color-slate-light);
    border-radius: var(--radius-sm);
    background: var(--color-charcoal);
    color: var(--color-white);
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
  }

  .nav-toggle:hover,
  .nav-toggle[aria-expanded="true"] {
    border-color: var(--color-gold);
  }

  .nav-toggle__line {
    display: block;
    width: 1.25rem;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(0.375rem) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-0.375rem) rotate(-45deg);
  }

  .site-header__nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    max-height: calc(100vh - 4.75rem);
    overflow-y: auto;
    padding: var(--space-5) var(--gutter) var(--space-6);
    border-bottom: 1px solid var(--color-gold);
    background: var(--color-charcoal);
    box-shadow: var(--shadow-panel);
  }

  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-5);
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header__nav-list li,
  .site-header__nav-list li.site-header__nav-mobile-only {
    display: flex;
  }

  .site-header__nav-list a {
    width: 100%;
    min-height: 2.875rem;
    justify-content: space-between;
    border-bottom-color: var(--color-slate);
  }

  .site-header__nav-list a[aria-current="page"] {
    border-bottom-color: var(--color-gold);
  }

  .site-header__reserve {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header__brand {
    gap: var(--space-2);
  }

  .site-header__logo {
    width: 2.125rem;
    height: 2.125rem;
    flex-basis: 2.125rem;
  }

  .site-header__brand-name {
    font-size: 1.0625rem;
  }

  .site-header__brand-note {
    display: none;
  }
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}