/* ── Navigation ─────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(8, 7, 10, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 151, 58, 0.2);
}

.nav-logo { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; }
.nav-logo-main { font-family: var(--decor); font-size: 1.3rem; letter-spacing: 0.06em; color: var(--gold); line-height: 1; }
.nav-logo-sub { font-family: var(--body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(242, 235, 217, 0.35); margin-top: 0.15rem; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; list-style: none; }
.nav-links a { font-family: var(--body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(242, 235, 217, 0.6); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.45rem 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-l) !important; }
