.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1100;
  transition: var(--transition);
}
.site-nav.is-scrolled { background: var(--color-white); box-shadow: 0 2px 12px rgba(2, 62, 138, 0.12); }
.site-nav__inner {
  width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand__name { font-family: var(--font-display); font-size: 1.1rem; }

.nav-toggle { border: 0; background: transparent; color: var(--color-text); font-size: 1.5rem; }
.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(82vw, 320px);
  height: 100vh;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 6rem 1.5rem 2rem;
  transition: 0.3s ease;
}
.nav-links.is-open { right: 0; }
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav-overlay.is-open { opacity: 1; pointer-events: auto; }

.nav-link { padding: 0.4rem 0; font-weight: 500; position: relative; }
.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--color-primary);
}

.quote-btn { display: inline-flex; align-items: center; gap: 0.4rem; }
.quote-count {
  min-width: 20px;
  height: 20px;
  border-radius: 20px;
  display: inline-grid;
  place-items: center;
  background: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 0.72rem;
}

@media (min-width: 1024px) {
  .nav-toggle, .nav-overlay { display: none; }
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
  }
}
