/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #000;
  color: rgb(255, 255, 255, 0.75);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-grid {
  display: flex;
  gap: 48px;
}

.footer-links-grid ul li {
  margin-bottom: 10px;
}

.footer-links-grid a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links-grid a:hover {
  color: var(--white);
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--white);
}

.email-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-brand {
  text-align: right;
  align-self: start;
}

.footer-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  margin-left: auto;
  margin-bottom: 16px;
  margin-top: -8px;
}

.footer-social-label {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgb(255, 255, 255, 0.75);
}

.footer-socials {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.footer-socials a {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}

.footer-socials a:hover {
  opacity: 0.7;
}

.footer-socials img {
  width: 100%;
  height: 100%;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgb(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgb(255, 255, 255, 0.4);
}
