/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  background: rgba(243,220,176,.94);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 22px;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links a {
  opacity: .85;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover { opacity: 1; }

.nav-links a.active {
  opacity: 1;
  color: var(--coffee);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--coffee);
  border-radius: 2px;
}

.nav-cta {
  font-family: var(--f-stamp);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--coffee);
  color: var(--cream);
  border: 1.5px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform .12s ease;
}

.nav-cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

@media (min-width: 780px) {
  .nav-links { display: flex; }
  .burger { display: none; }
}
