

.header-spacer{height:var(--header-h)}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  height:var(--header-h);
  background:linear-gradient(180deg,rgba(47,127,224,.97) 0%,rgb(0 162 159) 100%);
  backdrop-filter:blur(12px) saturate(125%);
  -webkit-backdrop-filter:blur(12px) saturate(125%);
  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 22px rgba(8,31,72,.18);
}

.site-header .container,
.site-header .header-inner,
.site-header .site-nav,
.site-header .menu{background:transparent}

.site-header .header-inner{
  height:var(--header-h);
  display:flex;
  align-items:center;
  gap:clamp(8px,1vw,12px);
  min-width:0;
}

.site-header .brand{
  flex:0 0 auto;
  flex-shrink:0;
}

.site-header .brand__link{
  display:inline-flex;
  align-items:center;
  padding:2px 0;
}

.site-header .brand__logo{
  height:clamp(36px,3vw,46px);
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.10));
}

.site-header .header-search{
  flex:1 1 0;
  min-width:0;
}

.site-header .search-form{position:relative}

.site-header .search-field-wrap{
  display:flex;
  align-items:center;
  gap:clamp(6px,.7vw,8px);
  width:100%;
  min-height:clamp(38px,2.9vw,44px);
  background:linear-gradient(180deg,rgba(255,255,255,.95) 0%,rgba(242,246,252,.92) 100%);
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  padding:clamp(6px,.7vw,7px) clamp(11px,.9vw,14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 4px 14px rgba(8,29,65,.10);
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease;
}

.site-header .search-form:focus-within .search-field-wrap{
  border-color:rgba(255,255,255,.52);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 8px 18px rgba(8,29,65,.14);
  transform:translateY(-1px);
}

.site-header .search-icon{
  color:#6f8098;
  flex:0 0 auto;
}

.site-header .search-field{
  flex:1 1 0;
  min-width:0;
  background:transparent;
  border:0;
  color:#24374f;
  outline:none;
  font-size:var(--fs-sm);
  line-height:1.2;
}

.site-header .search-field::placeholder{
  color:#7b8ba1;
  opacity:1;
}

.site-header .site-nav{display:block;flex:0 0 auto}

.site-header .menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:clamp(8px,.8vw,10px);
  align-items:center;
}

.site-header .menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:clamp(38px,2.7vw,40px);
  padding:clamp(7px,.7vw,8px) clamp(11px,.9vw,13px);
  border-radius:999px;
  color:rgba(255,255,255,.96);
  font-size:var(--fs-sm);
  font-weight:700;
  letter-spacing:.1px;
  line-height:1.2;
  transition:background .2s ease,box-shadow .2s ease,transform .2s ease,color .2s ease;
}

.site-header .menu a:hover{
  background:rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10);
  transform:translateY(-1px);
  color:#fff;
}

.site-header .menu .current-menu-item > a,
.site-header .menu .current_page_item > a,
.site-header .menu .current-menu-ancestor > a{
  background:linear-gradient(180deg,rgba(255,255,255,.20) 0%,rgba(255,255,255,.12) 100%);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 6px 14px rgba(8,29,65,.12);
  color:#fff;
}

.site-header .hamburger{
  display:none;
  flex:0 0 auto;
  flex-shrink:0;
  width:clamp(38px,2.9vw,44px);
  height:clamp(38px,2.9vw,44px);
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,rgba(255,255,255,.14) 0%,rgba(255,255,255,.08) 100%);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  border-radius:999px;
  padding:0;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 4px 12px rgba(8,29,65,.10);
  transition:background .2s ease,transform .2s ease,box-shadow .2s ease;
}

.site-header .hamburger:hover{
  background:linear-gradient(180deg,rgba(255,255,255,.18) 0%,rgba(255,255,255,.10) 100%);
  transform:translateY(-1px);
}

.drawer-backdrop{
  position:fixed;
  inset:0;
  background:rgba(7,16,31,.48);
  z-index:999;
}

.mobile-drawer{
  position:fixed;
  left:0;
  right:0;
  top:var(--header-h);
  z-index:1001;
  background:linear-gradient(180deg,rgba(14,29,56,.98) 0%,rgba(10,22,43,.98) 100%);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow:0 18px 28px rgba(0,0,0,.24);
  max-height:50vh;
  overflow:auto;
  transform-origin:top;
  animation:drawerIn .28s ease;
}

@keyframes drawerIn{from{transform:translateY(-6px) scaleY(.96);opacity:0}to{transform:translateY(0) scaleY(1);opacity:1}}

.mobile-drawer__inner{padding:clamp(12px,1vw,14px)}

.mobile-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.mobile-menu a{
  display:block;
  padding:11px 12px;
  border-radius:14px;
  color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}

.mobile-menu a:hover{
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.12);
  transform:translateY(-1px);
}

@media (max-width:1080px){
  .site-header .site-nav{display:none}
  .site-header .hamburger{display:inline-flex}
}

@media (max-width:680px){
  .site-header .header-inner{gap:8px}
  .site-header .brand__logo{height:34px}
  .site-header .search-field-wrap{min-height:38px;padding:6px 12px}
  .site-header .search-field{font-size:13px}
}

@media (max-width:560px){
  .site-header .search-icon{display:none}
  .site-header .search-field{font-size:12.5px}
  .site-header .hamburger{width:38px;height:38px}
}
