.club-header {
  position: sticky;
  z-index: 300;
  top: 0;
  width: 100%;
  border-block-end: var(--border-brass);
  background: var(--color-smoked-glass);
}

.club-header__bar {
  display: flex;
  width: min(100% - (var(--gutter) * 2), var(--container-max));
  min-height: 4.75rem;
  margin-inline: auto;
  align-items: center;
  gap: clamp(0.75rem, 1.8vw, 1.75rem);
}

.club-header__brand {
  display: inline-flex;
  min-width: 0;
  flex: 0 1 auto;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-antique-cream);
  text-decoration: none;
}

.club-header__mark {
  width: 2.625rem;
  height: 2.625rem;
  flex: 0 0 2.625rem;
  object-fit: contain;
}

.club-header__wordmark {
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.club-header__navigation {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.club-header__nav-list {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.65rem, 1.2vw, 1.15rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.club-header__nav-list li,
.club-header__nav-list a,
.club-header__contact-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--color-linen);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.club-header__nav-list a:hover,
.club-header__contact-link:hover {
  color: var(--color-antique-cream);
}

.club-header__menu-actions,
.club-header__nav-list li.club-header__mobile-only,
.club-header__toggle {
  display: none;
}

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

@media (max-width: 73rem) {
  .club-header__bar {
    min-height: 4.5rem;
  }

  .club-header__navigation {
    position: fixed;
    z-index: 101;
    top: 4.5rem;
    right: 0;
    bottom: 0;
    width: min(26rem, 100%);
    padding: 1.5rem var(--gutter) 2rem;
    overflow-y: auto;
    border-inline-start: var(--border-brass);
    background: rgba(36, 25, 20, 0.98);
    box-shadow: var(--shadow-elevated);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity var(--transition-base), transform var(--transition-base);
  }

  .club-header__navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .club-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-block-start: var(--border-quiet);
  }

  .club-header__nav-list li {
    border-block-end: var(--border-quiet);
  }

  .club-header__nav-list a {
    width: 100%;
    min-height: 3rem;
  }

  .club-header__nav-list li.club-header__mobile-only,
  .club-header__menu-actions {
    display: flex;
  }

  .club-header__menu-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .club-header__contact-link {
    display: none;
  }

  .club-header__toggle {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.27rem;
    margin-inline-start: auto;
    padding: 0;
    border: var(--border-brass);
    background: transparent;
    color: var(--color-antique-cream);
    flex-direction: column;
  }

  .club-header__toggle:hover {
    border-color: var(--color-antique-cream);
  }

  .club-header__toggle-line {
    display: block;
    width: 1.15rem;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
  }

  .club-header__toggle[aria-expanded="true"] .club-header__toggle-line:first-child {
    transform: translateY(0.36rem) rotate(45deg);
  }

  .club-header__toggle[aria-expanded="true"] .club-header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .club-header__toggle[aria-expanded="true"] .club-header__toggle-line:last-child {
    transform: translateY(-0.36rem) rotate(-45deg);
  }

  .club-header__reserve--desktop {
    display: none;
  }
}

@media (max-width: 31rem) {
  .club-header__bar {
    gap: 0.6rem;
  }

  .club-header__mark {
    width: 2.125rem;
    height: 2.125rem;
    flex-basis: 2.125rem;
  }

  .club-header__wordmark {
    font-size: 0.75rem;
    letter-spacing: 0.11em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .club-header__navigation {
    transition: none;
  }
}