.site-header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: #617d24; /* secondary */
  color: white;
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.site-title {
  font-weight: bold;
  font-size: 1.5rem;
}

.site-phone {
  font-weight: normal;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 500;
  font-size: 1.3rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #e0b300; /* tertiary */
}

.mobile-menu-toggle {
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #617d24;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  width: 75%;
  border-bottom-right-radius: 1rem;
  transition: transform 0.3s ease;
}

.mobile-menu a {
  color: white;
  font-size: 1.3rem;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #e0b300;
}

.hidden {
  display: none;
}

/* Responsive rules */
@media (min-width: 868px) {
  .desktop-only {
    display: flex;
  }

  .mobile-only,
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 867px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}
