.site-footer{
  background:var(--light-green);
}
.site-footer__inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
  min-height:136px;
}

/* Лого ліворуч (стилі .logo вже є в header.css) */
.site-footer__inner .logo{ justify-self:start; }

/* Меню по центру */
.footer-nav{ justify-self:center; }
.footer-nav__list{ display:flex; align-items:center; gap:24px; }
.footer-nav__list a{ font-size:14px; font-weight:400; color:#000; transition:color .15s ease; }
.footer-nav__list a:hover{ color:var(--green); }

/* Контакти праворуч */
.footer-contacts{ justify-self:end; display:flex; flex-direction:column; gap:8px; }
.footer-contacts__item{ display:flex; align-items:center; gap:8px; font-size:14px; font-weight:400; color:#000; }
.footer-contacts__item:hover{ color:var(--green); }
.footer-ico{ width:20px; height:20px; flex:none; display:block; }
/* Копірайт */
.footer-copyright{
  border-top:1px solid rgba(13,55,1,.1);
  padding:20px 0;
}
.footer-copyright .container{
  text-align:center;
  font-size:13px;
  color:#333333;
}