/* Site header — responsive nav (no Tailwind breakpoint dependency) */

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4rem;
}

.site-header-logo {
  flex-shrink: 0;
  position: relative;
  z-index: 51;
}

.site-header-logo img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(11rem, 46vw);
  object-fit: contain;
}

@media (min-width: 768px) {
  .site-header-logo img {
    height: 3.25rem;
    max-width: 11.25rem;
  }
}

.site-header-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 0.65rem;
  min-width: 0;
  padding: 0 0.5rem;
}

.site-header-nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  color: #d1d5db;
  text-decoration: none;
  padding: 0.25rem 0;
  position: relative;
}

.site-header-nav-link:hover,
.site-header-nav-link.is-active {
  color: #fff;
}

.site-header-nav-underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #c5a059;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.site-header-nav-link:hover .site-header-nav-underline,
.site-header-nav-link.is-active .site-header-nav-underline {
  transform: scaleX(1);
}

.site-header-cta {
  display: none;
  flex-shrink: 0;
}

.site-header-cta a {
  display: inline-block;
  background: #c5a059;
  color: #1a1a1a;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.site-header-cta a:hover {
  background: #d4b56e;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

.site-header-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.5rem;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

.site-header-menu-btn:hover {
  color: #c5a059;
  background: rgba(255, 255, 255, 0.06);
}

.site-header-mobile-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
  padding: 1rem 1.5rem 1.25rem;
}

.site-header-mobile-panel.is-open {
  display: block;
}

.site-header-mobile-panel a {
  display: block;
  padding: 0.55rem 0;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
}

.site-header-mobile-panel a:hover {
  color: #c5a059;
}

.site-header-mobile-panel .site-header-mobile-book {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
  background: #c5a059;
  color: #1a1a1a;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
}

/* Desktop nav from 1280px — avoids overlap at 1024–1279 */
@media (min-width: 1280px) {
  .site-header-nav {
    display: flex;
    gap: 1rem;
  }

  .site-header-nav-link {
    font-size: 0.9375rem;
  }

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

  .site-header-menu-btn {
    display: none;
  }

  .site-header-mobile-panel {
    display: none !important;
  }
}

@media (min-width: 1440px) {
  .site-header-nav {
    gap: 1.5rem;
  }

  .site-header-nav-link {
    font-size: 1.0625rem;
  }

  .site-header-cta a {
    padding: 0.75rem 1.75rem;
    font-size: 1.0625rem;
  }
}
