.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,33,24,0.06);
}

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 164px; }

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold-dark); }

.nav-cta { padding: 10px 24px; font-size: 0.85rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 860px) {
  .nav-logo img { height: 100px; }
  .nav-links {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(43,33,24,0.08);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
