/* ── Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(250,250,248,.72);
  border-bottom: 1px solid rgba(221,227,218,.6);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}

.logo {
  display: flex; align-items: center; gap: 18px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
}

.logo-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}
.logo-text .name { line-height: 1; }
.logo-text .by {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
}
.logo-text .by em {
  font-style: italic;
  color: var(--emerald-deep);
  font-family: 'Playfair Display', Georgia, serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
}

.nav-links {
  display: flex; gap: 36px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a { position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--emerald); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: var(--emerald);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

@media (max-width: 820px) {
  .nav-links { display: none; }
}
