/* =========================
   SITE HEADER
   ========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  border-bottom: none;
  transition:
    background 0.25s ease,
    padding 0.25s ease,
    box-shadow 0.25s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(7, 23, 27, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.site-header.scrolled {
  padding: 12px 0;
}

.site-header.scrolled .nav-inner {
  background: rgba(7, 23, 27, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.site-brand img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 600px) {

  /* tighter pill */
  .nav-inner {
    min-height: 56px;
    padding: 0 14px;
    gap: 12px;
  }

  /* 🔥 LOGO — better proportion */
  .site-brand img {
    height: auto;
    width: 150px;
    max-width: 46vw;
  }

  /* hide nav links */
  .site-nav {
    display: none;
  }

  /* 🔥 BUTTON — reduce dominance */
  .nav-actions .btn-primary {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(16, 183, 201, 0.25);

  }

}