/* Mobile burger nav — shared across all site pages */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin-left: auto;
  margin-right: 12px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #EDF5EF;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(6, 16, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #1C3024;
  z-index: 99;
  padding: 8px 0 24px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile-links { list-style: none; }
.nav-mobile-links li a {
  display: block;
  padding: 14px 24px;
  color: #7DAA8A;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #1C3024;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile-links li a:hover { color: #EDF5EF; background: #101F14; }
.nav-mobile-links li.active a { color: #EDF5EF; }
.nav-mobile-cta {
  display: block;
  margin: 16px 24px 0;
  background: #00E676;
  color: #06100A;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s;
}
.nav-mobile-cta:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
}
