.azelys #mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  transition: height .3s;
}

/* Logo */
.azelys .nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.azelys .nav-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* links */
.azelys .nav-link-custom {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  transition: color .2s;
  padding: 4px 0;
}

.azelys .nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: left;
}

.azelys .nav-link-custom:hover {
  color: var(--ink);
}

.azelys .nav-link-custom:hover::after {
  transform: scaleX(1);
}

/* CTA */
.azelys .nav-cta {
  background: var(--ink);
  color: var(--warm-white) !important;
  padding: 10px 24px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}

.azelys .nav-cta:hover {
  background: var(--gold) !important;
}

/* Bootstrap overrides */
.azelys .navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.azelys .navbar-toggler:focus {
  box-shadow: none;
}

.azelys .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(14,14,14,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.azelys #navMenu .nav-link-custom {
  border-bottom: 1px solid var(--border);
}

/* Mobile menu */
@media (max-width: 991.98px) {
  .azelys #navMenu {
    background: rgba(250,248,244,.97);
    padding: 16px 24px;
  }

  .azelys #navMenu .nav-link-custom {
    display: block;
    padding: 10px 0;
  }
}