.site-header {
  position: relative;
  z-index: 20;
  padding: 22px 0 0;
}

.nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(73,50,79,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 36px rgba(73,50,79,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.02em;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  display: block;
}

.brand-text {
  font-weight: 800;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover { color: var(--plum); }

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.nav-cta {
  background: var(--plum);
  color: #fff;
  padding: 13px 18px;
  font-size: 14px;
  flex: none;
}

.nav-cta:hover,
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(73,50,79,.20); }

