/* ─── SITE NAV ──────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
  border-bottom: 0.5px solid transparent;
}

.site-nav.scrolled {
  background: rgba(4, 2, 1, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(210, 185, 140, 0.1);
}

/* Brand */
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  color: #f0e8d8;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-brand em {
  font-style: italic;
  color: #c8a87a;
}

.nav-brand:hover { color: #fff; }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(210, 185, 140, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: rgba(210, 185, 140, 1);
}
