.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 28px 0;
}

.nav-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 185px;
  position: relative;
  z-index: 90;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 32px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.nav-menu a {
  position: relative;
  transition: color 0.25s ease;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--sage-light);
  transition: width 0.25s ease;
}

.nav-menu a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--sage-light);
}

.nav-cta {
  background: rgba(255, 255, 255, 0.94);
  color: var(--sage-deep) !important;
  padding: 13px 20px;
  border-radius: 999px;
  text-shadow: none !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 18px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 12px 16px;
  }
}

@media (max-width: 1024px) {
  .logo {
    width: 165px;
  }

  .nav-menu {
    gap: 18px;
    padding-top: 26px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 18px 0;
  }

  .nav-wrapper {
    align-items: center;
  }

  .logo {
    width: 145px;
    z-index: 90;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 90;
  }

  .nav-menu {
    position: absolute;
    top: 116px;
    left: 14px;
    right: 14px;
    z-index: 80;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    color: var(--charcoal);
    text-shadow: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    text-shadow: none;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    background: var(--sage-dark);
    color: var(--white) !important;
  }

  .menu-toggle span {
    background: var(--white);
  }
}