/* Top strip — logo + mobile menu only (help/booking moved to footer) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header__top {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.site-header__top-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.site-header__brand {
  line-height: 0;
  flex: 0 0 auto;
}

.site-header__logo {
  display: block;
  max-height: clamp(48px, 10vw, 64px);
  width: auto;
}

.site-header__menu-btn {
  display: none;
  padding: 10px 18px;
  background: var(--color-navy, #00285f);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* Navy nav bar — matches original .main-navbar */
.site-header__bar {
  background: var(--color-navy, #00285f);
}

.site-header__bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 8px;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  font-size: 14px;
  font-weight: 600;
}

.site-header__nav a {
  display: block;
  padding: 14px 14px;
  color: #fff !important;
  text-decoration: none;
  border-bottom: 3px solid transparent;
}

.site-header__nav a:hover {
  color: var(--color-orange, #f78b00) !important;
  text-decoration: none;
}

.site-header__nav a.is-current {
  color: var(--color-orange, #f78b00) !important;
  box-shadow: inset 0 -3px 0 var(--color-orange, #f78b00);
}

@media (max-width: 900px) {
  .site-header__menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__nav {
    display: none;
    flex-direction: column;
    padding: 8px 0 12px;
  }

  .site-header__nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-header--open .site-header__nav {
    display: flex;
  }
}

@media (min-width: 901px) {
  .site-header__menu-btn {
    display: none !important;
  }
}
