/* =========================
   FOOTER
========================= */

.site-footer {
  background: #f0f0f0;
  border-top: 1px solid #dddddd;
  font-family: 'Quicksand', sans-serif;
  color: #333333;
}

.site-footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
}

/* =========================
   BRAND
========================= */

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-footer__logo {
  display: inline-flex;
  width: fit-content;
}

.site-footer__logo img {
  display: block;
  width: 90px;
  height: auto;
}

.site-footer__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: black;
  max-width: 320px;
}

/* =========================
   NAVIGATION
========================= */

.site-footer__nav {
  width: 100%;
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__menu li:not(:last-child) {
  margin-bottom: 12px;
}

.site-footer__menu a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
  color: #FD7F28;
}

/* =========================
   CONTACTS
========================= */

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-style: normal;
}

.site-footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;

  color: #222222;
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;

  transition:
    color 0.25s ease,
    transform 0.2s ease;
}

.site-footer__contact:hover,
.site-footer__contact:focus-visible {
  color: #FD7F28;
  transform: translateX(2px);
}

.site-footer__contact img {
  flex-shrink: 0;
  display: block;
}

/* =========================
   SOCIAL
========================= */

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__social a {
  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #FD7F28;
  border-radius: 42px;

  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: #ff9d57;
  transform: translateY(-2px);
}

.site-footer__social svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* =========================
   BOTTOM
========================= */

.site-footer__bottom {
  border-top: 1px solid #dddddd;
  padding: 18px 20px;
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: #666666;
}

/* =========================
   TABLET
========================= */

@media (min-width: 768px) {

  .site-footer__container {
    grid-template-columns:
      minmax(220px, 1fr)
      minmax(220px, 1fr);
  }

}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1100px) {

  .site-footer__container {
    grid-template-columns:
      1.2fr
      1fr
      1fr
      auto;

    align-items: start;
    gap: 60px;
  }

}