.site-footer{
  background: var(--oliva, #5F5C42);
  color: #fff;
  padding: 64px 0 96px;
  margin-top: 14px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 1.55fr 0.9fr 1fr;
  gap: 56px;
  align-items: start;
}

.footer-brand{
  padding-right: 34px;
  border-right: 1px solid rgba(255,255,255,.10);
}

.footer-logo{
  height: 78px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 18px;
}

.footer-title{
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
  max-width: 360px;
  text-shadow: 0 1px 1px rgba(0,0,0,.12);
}

.footer-text{
  color: rgba(255,255,255,.88);
  font-size: .98rem;
  line-height: 1.85;
  margin: 0 0 14px;
  max-width: 360px;
}

.footer-highlight{
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  margin: 6px 0 0;
  max-width: 360px;
  text-shadow: 0 1px 1px rgba(0,0,0,.10);
}

.footer-column{
  padding-top: 4px;
}

.footer-heading{
  font-size: .95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: .02em;
}

.footer-links{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a{
  display: block;
  color: rgba(255,255,255,.88);
  font-size: .93rem;
  text-decoration: none;
  line-height: 1.65;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}

.footer-links a:hover{
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact a{
  font-weight: 600;
}

.footer-social{
  margin-top: 22px;
}

.footer-social-title{
  margin: 0 0 8px;
  color: #ffffff;
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.footer-bottom{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-bottom p{
  margin: 0;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(255,255,255,.68);
}

/* Tablet */
@media (max-width: 980px){
  .site-footer{
    padding: 52px 0 92px;
  }

  .footer-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand{
    padding-right: 0;
    padding-bottom: 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .footer-logo{
    height: 88px;
    margin-bottom: 16px;
  }

  .footer-title{
    font-size: 1.65rem;
    max-width: 100%;
    margin-bottom: 14px;
  }

  .footer-text{
    max-width: 100%;
    font-size: .98rem;
    line-height: 1.75;
  }

  .footer-highlight{
    max-width: 100%;
    font-size: .98rem;
  }

  .footer-column{
    padding-top: 0;
  }

  .footer-bottom{
    margin-top: 28px;
    padding-top: 16px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .site-footer{
    padding: 42px 0 92px;
  }

  .footer-grid{
    gap: 22px;
  }

  .footer-brand{
    padding-bottom: 2px;
  }

  .footer-logo{
    height: 84px;
    margin-bottom: 14px;
  }

  .footer-title{
    font-size: 1.5rem;
    line-height: 1.24;
    margin: 0 0 12px;
    max-width: 100%;
    color: #ffffff;
  }

  .footer-text{
    font-size: .97rem;
    line-height: 1.72;
    margin-bottom: 12px;
    max-width: 100%;
    color: rgba(255,255,255,.94);
  }

  .footer-highlight{
    font-size: .97rem;
    line-height: 1.62;
    max-width: 100%;
    color: #ffffff;
    font-weight: 700;
  }

  .footer-heading{
    font-size: .96rem;
    margin-bottom: 10px;
  }

  .footer-links{
    gap: 6px;
  }

  .footer-links a{
    font-size: .95rem;
    line-height: 1.62;
  }

  .footer-social{
    margin-top: 18px;
  }

  .footer-social-title{
    font-size: .92rem;
  }

  .footer-bottom{
    margin-top: 24px;
    padding-top: 14px;
  }

  .footer-bottom p{
    font-size: .84rem;
    color: rgba(255,255,255,.82);
  }
}