/* Shared site navigation — keep in sync with src/components/sections/Navigation.tsx */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  font-family: 'Inter', system-ui, sans-serif;
}
.site-nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-nav-logo {
  height: 42px;
  width: auto;
  display: block;
}
.site-nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-size: 15px;
  font-weight: 500;
}
.site-nav-links a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.site-nav-links a:hover {
  color: #0F5C4D;
}
.site-nav-links .nav-active {
  color: #0F5C4D;
  font-weight: 700;
}
.site-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-nav-badge-link {
  display: none;
  line-height: 0;
  transition: transform 0.2s;
}
.site-nav-badge-link:hover {
  transform: scale(1.05);
}
.site-nav-badge {
  height: 40px;
  width: auto;
  display: block;
}
.site-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-right: -0.5rem;
  color: #111827;
  line-height: 0;
}
.site-nav-toggle svg {
  width: 24px;
  height: 24px;
}
.site-nav-mobile {
  display: none;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  padding: 0.75rem 1.5rem 1.5rem;
}
.site-nav-mobile.is-open {
  display: block;
}
.site-nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav-mobile a:hover {
  color: #0F5C4D;
}
.site-nav-mobile .nav-active {
  color: #0F5C4D;
  font-weight: 700;
}
.site-nav-mobile-badges {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
}
.site-nav-mobile-badges img {
  height: 40px;
  width: auto;
}
/* Spacer for pages whose content starts at the top of the flow */
.site-nav-spacer {
  height: 72px;
}
@media (min-width: 768px) {
  .site-nav-badge-link {
    display: inline-block;
  }
  .site-nav-mobile-badges {
    display: none;
  }
}
@media (min-width: 1280px) {
  .site-nav-links {
    display: flex;
  }
  .site-nav-toggle {
    display: none;
  }
}
@media (max-width: 640px) {
  .site-nav-inner {
    height: 64px;
    padding: 0 1rem;
  }
  .site-nav-logo {
    height: 34px;
  }
  .site-nav-spacer {
    height: 64px;
  }
}
