/* Nav fixa: logótipo, pill de links (desktop) e CTA */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: rgba(251, 249, 243, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.nav--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 16px rgba(18, 17, 14, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex: 0 0 auto;
}
.nav__cta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.875rem;
  flex: 0 0 auto;
}

.nav__pill {
  display: none;
}
@media (min-width: 860px) {
  .nav__pill {
    display: block;
  }
}
.nav__pill ul {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(18, 17, 14, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.6);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.nav__pill a {
  display: block;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-muted);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.nav__pill a:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(18, 17, 14, 0.08);
}
