.site-footer {
  background: rgb(var(--color-coal));
  color: rgb(255 255 255 / 0.7);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo {
  height: 24px;
  width: auto;
}

.footer-contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.1);
  color: rgb(255 255 255 / 0.75);
  font-size: 0.8125rem;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.footer-contact-btn:hover,
.footer-contact-btn:focus-visible {
  background: rgb(var(--color-gold));
  border-color: transparent;
  color: rgb(var(--color-coal));
}

.footer-contact-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: rgb(var(--color-gold));
  transition: color 0.2s ease;
}

.footer-contact-btn:hover svg,
.footer-contact-btn:focus-visible svg {
  color: rgb(var(--color-coal));
}

.footer-tagline {
  margin: 0;
  max-width: 22rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.5);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgb(255 255 255 / 0.06);
  color: rgb(255 255 255 / 0.6);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  background: rgb(var(--color-gold));
  color: rgb(var(--color-coal));
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-address {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.5);
}

.footer-col-title {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  text-align: center;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.4);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}

.footer-legal-link {
  display: inline-block;
  border: 0;
  background: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.75rem;
  color: rgb(255 255 255 / 0.4);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: rgb(var(--color-gold));
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 64px;
  }

  .footer-contact-col {
    align-items: flex-end;
    text-align: right;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-legal-links {
    justify-content: flex-end;
  }
}
