.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  border-bottom:1px solid #e5e7df
}
.header-inner {
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand {
  display:inline-flex;
  align-items:center;
  flex:none
}
.brand img {
  width:155px;
  height:auto
}
.desktop-nav {
  display:flex;
  gap:34px;
  align-items:center;
  margin-left:auto
}
.desktop-nav a {
  font-size:.88rem;
  font-weight:700;
  transition:color .2s
}
.desktop-nav a:hover {
  color:#496c40
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:54px;
  padding:14px 23px;
  border:1px solid transparent;
  border-radius:4px;
  font-weight:700;
  line-height:1.25;
  transition:transform .2s,background .2s,color .2s
}
.button:hover {
  transform:translateY(-2px)
}
.arrow-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:none;
  width:20px;
  height:20px;
  line-height:0;
  transition:transform .2s ease
}
.arrow-icon svg {
  display:block;
  width:100%;
  height:100%
}
.button:hover .arrow-icon,.text-link:hover .arrow-icon,.contact-panel>a:hover .arrow-icon {
  transform:translate(2px,-2px)
}
.text-link[href="#situazioni"]:hover .arrow-icon {
  transform:translateY(3px)
}
.button-small {
  min-height:43px;
  padding:10px 16px;
  font-size:.87rem;
  background:var(--green);
  color:#fff
}
.button-small:hover,.button-primary:hover {
  background:#164d1d
}
.menu-toggle,.mobile-nav {
  display:none
}
