.site-header-nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 72rem;
  margin: 0 auto;
}

.site-header-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--espresso, #3D2B1F);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-header-brand-dot {
  color: var(--gold, #C4965A);
}

.site-header-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.site-header-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(61, 43, 31, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header-link:hover,
.site-header-link.is-active {
  color: var(--espresso, #3D2B1F);
}

.site-header-link.is-active {
  font-weight: 600;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header-cta {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--espresso, #3D2B1F);
  color: var(--cream, #FAF7F2);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header-cta:hover {
  background: rgba(61, 43, 31, 0.9);
}

.site-header-cta.is-active {
  background: var(--gold, #C4965A);
  color: #1A1A1A;
}

.site-header-hamburger {
  display: flex;
}

.site-header-mobile-cta {
  color: var(--gold, #C4965A);
  font-weight: 600;
  border-bottom: none;
  margin-top: 0.5rem;
}

.mobile-menu-link.is-active {
  font-weight: 600;
}

@media (min-width: 640px) {
  .site-header-cta {
    display: inline-flex;
  }
}

@media (min-width: 768px) {
  .site-header-nav {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .site-header-links {
    display: flex;
  }

  .site-header-hamburger {
    display: none;
  }

  #mobile-menu {
    display: none !important;
  }
}
