#shared-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 52px;
  transition: background 0.4s, padding 0.4s, border-bottom 0.4s;
}

#shared-nav.scrolled {
  background: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 52px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

#shared-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4af37;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  flex-shrink: 0;
}

#shared-nav .nav-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

#shared-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

#shared-nav .nav-links a {
  position: relative;
  color: #7a7670;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.25s;
}

#shared-nav .nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #d4af37;
  transform: scaleX(0);
  transition: transform 0.25s;
}

#shared-nav .nav-links a:hover,
#shared-nav .nav-links a.is-active {
  color: #f0ede6;
}

#shared-nav .nav-links a:hover::after,
#shared-nav .nav-links a.is-active::after {
  transform: scaleX(1);
}

#shared-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

#shared-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 11px 24px;
  background: #d4af37;
  color: #060608;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, color 0.25s, border-color 0.25s;
}

#shared-nav .nav-cta:hover {
  background: #f5d678;
  transform: translateY(-1px);
}

#shared-nav .nav-cta-secondary {
  background: transparent;
  color: #f0ede6;
  border: 1px solid rgba(240, 237, 230, 0.2);
}

#shared-nav .nav-cta-secondary:hover {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
}

#shared-nav .nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
}

#shared-nav .nav-hamburger span {
  width: 24px;
  height: 2px;
  background: #f0ede6;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  #shared-nav {
    padding: 16px 18px;
    gap: 12px;
    flex-wrap: wrap;
  }

  #shared-nav.scrolled {
    padding: 12px 18px;
  }

  #shared-nav .nav-logo {
    font-size: 19px;
    letter-spacing: 1.5px;
  }

  #shared-nav .nav-logo-img {
    width: 26px;
    height: 26px;
  }

  #shared-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0 6px;
  }

  #shared-nav .nav-links.open {
    display: flex;
  }

  #shared-nav .nav-actions {
    margin-left: auto;
  }

  #shared-nav .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 560px) {
  #shared-nav {
    padding: 14px 14px;
  }

  #shared-nav.scrolled {
    padding: 12px 14px;
  }

  #shared-nav .nav-actions {
    width: 100%;
    order: 4;
    flex-direction: column;
    display: none;
  }

  #shared-nav .nav-links.open + .nav-actions,
  #shared-nav .nav-actions {
    display: flex;
  }

  #shared-nav .nav-cta {
    width: 100%;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 1px;
  }
}
