.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(251, 250, 247, 0.85);
  border-bottom: var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: var(--space-3);
}

@media (max-width: 760px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: var(--space-4);
  }
}
