/* ===== HEADER BASE ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.06);

  transition: all 0.3s ease;
}

/* SCROLL STATE */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* CONTAINER */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.header-logo {
  max-height: 200px;
  width: auto;
  display: block;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* NAV LINKS */
.site-nav a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #222;
  transition: all 0.25s ease;
}

/* HOVER */
.site-nav a:hover {
  color: #d4af37;
}

/* CTA BUTTON */
.nav-cta {
  background: #111;
  color: #fff !important;

  padding: 10px 18px;
  border-radius: 999px;

  font-weight: 500;
}

/* CTA HOVER */
.nav-cta:hover {
  background: #d4af37;
  color: #111 !important;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {

  .header-container {
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .header-logo {
    max-height: 50px;
  }
}
