.site-footer {
  background: #D9D9D9;
  color: #000;
  margin-top: 60px;
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 120px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* Логотип */
.site-footer__col--brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-footer__logo img {
  display: block;
  height: 160px;
  width: auto;
}

/* Навигация */
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-menu a {
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 200;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-menu a:hover {
  color: var(--color-accent);
}

/* Контакты */
.site-footer__col--contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__phone {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 200;
  color: #000;
  text-decoration: none;
  line-height: 1.1;
  white-space: nowrap;
}

.site-footer__phone:hover {
  color: var(--color-accent);
}

.site-footer__email {
  font-family: var(--font-primary);
  font-size: 25px;
  font-weight: 200;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  margin-bottom: 8px;
}

.site-footer__email:hover {
  color: var(--color-accent);
}

.site-footer__legal-link {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 200;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}

.site-footer__legal-link:hover {
  color: var(--color-accent);
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}

.site-footer__social-link svg {
  width: 28px;
  height: 28px;
}

.site-footer__social-link:hover {
  background: #e8e8e8;
}

/* Название компании под логотипом */
.site-footer__brand-name {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  margin: 0;
  line-height: 1.2;
}
