.site-footer {
  margin-top: 48px;
  padding: 28px 16px 40px;
  background: var(--main-bg-color);
  border-top: 1px solid rgba(166, 122, 82, 0.18);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 64px;
  height: auto;
  display: block;
}

.footer-tagline {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--main-text-dark-color);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(166, 122, 82, 0.35);
  color: var(--main-text-dark-color);
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgba(166, 122, 82, 0.16);
  border-color: rgba(166, 122, 82, 0.6);
  transform: translateY(-2px);
  outline: none;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
    width: 100%;
  }
}
