.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0 40px;
  background: rgba(255,254,249,0.85);
  border-bottom: 1px solid #f0efe9;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1c1c1e;
  text-decoration: none;
  flex: 0 0 auto;
}

.site-nav .brand img {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.site-nav .brand span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.3px;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav .nav-links li {
  margin: 0;
  padding: 0;
}

.site-nav .nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, opacity 0.2s;
}

.site-nav .nav-links a:hover {
  color: #1c1c1e;
  text-decoration: none;
}

.site-nav .nav-links a.active {
  color: #92400e;
  background: #fef3c7;
}

.site-nav .nav-links .cta {
  padding: 7px 16px;
  color: #fff;
  background: #1c1c1e;
}

.site-nav .nav-links .cta:hover {
  color: #fff;
  opacity: 0.82;
}

@media (max-width: 768px) {
  .site-nav {
    padding: 0 20px;
  }

  .site-nav .nav-links {
    gap: 12px;
  }

  .site-nav .nav-links li:not(.mobile-keep) {
    display: none;
  }
}
