/* ============================================
   LUCIENNE — Navigation & Cursor
   ============================================ */

/* ── Custom Cursor ── */
.cur {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}
.cur.big {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--rose);
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 56px;
  background: rgba(254, 252, 251, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.nav-r {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-r a {
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  font-weight: 400;
  transition: color .2s;
}

.nav-r a:hover { color: var(--ink); }

.nav-r a.book {
  background: var(--ink);
  color: var(--white);
  padding: 10px 26px;
  font-size: .63rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .2s;
}

.nav-r a.book:hover { background: var(--rose); }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-r a:not(.book) { display: none; }
}
