/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(45, 74, 62, 0.98);
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(45, 74, 62, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: white;
  font-size: 0.7rem;
}
.logo-text {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.3;
}
.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
nav a:hover {
  color: var(--gold-light);
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
nav a:hover::after {
  width: 100%;
}
.nav-contact {
  background: var(--gold);
  color: white !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
}
.nav-contact::after {
  display: none !important;
}
.nav-contact:hover {
  background: var(--gold-light);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--forest-deep);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
  }
  nav.show {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}
