.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-accent-strong);
  color: #cfd8dd;
  padding: 3.5rem 0 2rem;
}

.site-footer a {
  color: #e7ebed;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background: #ffffff;
  flex-shrink: 0;
}

.footer-brand__logo {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
}

.footer-col p {
  color: #b7c2c8;
  font-size: 0.9375rem;
  max-width: 22rem;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col__list a,
.footer-col__list span {
  font-size: 0.9375rem;
  color: #cfd8dd;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-item .icon {
  width: 1.1rem;
  height: 1.1rem;
  color: #8fa3ad;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #93a2a9;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-bottom__links a {
  color: #93a2a9;
  font-size: 0.8125rem;
}

.footer-bottom__links a:hover {
  color: #ffffff;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 700px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
