/* ━━━━━━━━━━━━━━ NAV ━━━━━━━━━━━━━━ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 30px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.5s, background 0.5s, backdrop-filter 0.5s;
}
#nav.scrolled {
  padding: 18px 52px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(25,24,15,0.07);
}
/* Text switches to dark on scroll */
#nav.scrolled .nav-logo { color: var(--text); }
#nav.scrolled .nav-links a { color: rgba(25,24,15,0.52); }
#nav.scrolled .nav-links a:hover { color: var(--text); }
#nav.scrolled .nav-cta {
  color: var(--text);
  border-color: rgba(25,24,15,0.22);
}
#nav.scrolled .nav-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(240,235,227,0.92);
  text-decoration: none;
  transition: color 0.4s;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,235,227,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: rgba(240,235,227,0.92); }
/* Nav CTA button — always visible on desktop, cream on dark hero */
.nav-cta {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,235,227,0.82);
  border: 1px solid rgba(240,235,227,0.28);
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Burger visible only on mobile */
.nav-burger { display: none; }
.nav-mobile-menu { display: none; }
