.site-footer {
  background: #1a2e20;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer-top {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.site-footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
}

.site-footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.site-footer-link {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-link:hover {
  color: #fff;
}

.site-footer-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer-social {
  display: inline-flex;
  line-height: 0;
}

.site-footer-social svg {
  display: block;
}

.site-footer-disclaimer {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 16px;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 32px 24px;
  }
}
