.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  padding:var(--space-3) 0;
}

.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-3);
  padding:1rem 2rem;
}

.site-header__brand{
  display:flex;
  align-items:center;
  gap:0.75rem;
  min-width:0;
}

.site-header__logo{
  height:52px;
  width:auto;
}

.site-header__brand-text{
  font-family:var(--font-heading);
  font-size:1.25rem;
}

.site-header__toggle{
  display:none;
  flex-direction:column;
  gap:4px;
  padding:0.5rem;
}

.site-header__toggle-line{
  width:24px;
  height:2px;
  background:var(--color-text-primary);
}



.site-header__menu{
  list-style:none;
  display:flex;
  gap:1.5rem;
  align-items:center;
  margin:0;
}

.site-header__menu li{
  margin:0;
}

@media(max-width:900px){
  .site-header__toggle{display:flex;}

  .site-header__nav{
    position:absolute;
    top:100%;
    right:1rem;
    left:1rem;
    background:rgba(248,245,241,0.95);
    backdrop-filter:blur(12px);
    border-radius:var(--radius-md);
    padding:1rem;
    display:none;
  }

  .site-header__nav.is-open{display:block;}

  .site-header__menu{
    flex-direction:column;
    align-items:flex-start;
  }

  .site-header__logo{height:36px;}
  .site-header__brand-text{display:none;}
}