.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: #000000;
  color: var(--color-text-on-dark);
  box-sizing: border-box;
}

.site-footer__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  padding: var(--space-xl) var(--section-padding-x);
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  box-sizing: border-box;
}

.site-footer__col {
  flex: none;
  text-align: left;
}

.site-footer__logo {
  width: 100px;
  height: auto;
  margin-bottom: var(--space-md);
}

.site-footer__tagline {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: var(--font-weight-medium);
  line-height: var(--lh-body);
  color: var(--color-text-on-dark);
  max-width: 420px;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.site-footer__title {
  font-family: var(--font-sans);
  font-size: var(--text-subheading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--lh-body);
  margin-bottom: var(--space-sm);
  color: var(--color-text-on-dark);
}

.site-footer__location-title {
  margin-top: var(--space-lg);
}

.site-footer__address {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: var(--color-text-on-dark);
  margin: 0;
}

.site-footer__links {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: var(--font-weight-medium);
  line-height: 1.18;
}

.site-footer__links li + li {
  margin-top: var(--space-xs);
}

.site-footer__links a {
  color: var(--color-text-on-dark);
  transition: opacity var(--transition-fast);
}

.site-footer__links a:hover {
  opacity: 0.85;
}

.site-footer__social {
  display: flex;
  gap: var(--space-sm);
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-on-dark);
  transition: opacity var(--transition-fast);
}

.site-footer__social-link:hover {
  opacity: 0.85;
}

.site-footer__social-link img {
  width: 20px;
  height: 20px;
  opacity: 1;
  display: block;
  filter: none;
  object-fit: contain;
}

.site-footer__bottom {
  padding: var(--space-md) var(--section-padding-x);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
}

.site-footer__copyright {
  font-family: var(--font-sans);
  font-size: var(--text-caption);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-lg);
    padding: var(--space-xl) clamp(1rem, 5vw, var(--section-padding-x));
  }

  .site-footer__col {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    text-align: left;
  }

  .site-footer__brand {
    flex: 1 1 0;
  }

  .site-footer__logo {
    margin-bottom: var(--space-sm);
  }

  .site-footer__tagline {
    max-width: 100%;
    font-size: var(--text-caption);
  }

  .site-footer__connect,
  .site-footer__sitemap {
    text-align: left;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer__title {
    font-size: var(--text-label);
  }

  .site-footer__tagline,
  .site-footer__address,
  .site-footer__links {
    font-size: var(--text-caption);
  }

  .site-footer__bottom {
    padding: var(--space-md) clamp(1rem, 5vw, var(--section-padding-x));
    width: 100%;
    box-sizing: border-box;
  }

  .site-footer__copyright {
    font-size: var(--text-caption);
    overflow-wrap: break-word;
  }
}

@media (max-width: 380px) {
  .site-footer__inner {
    padding: var(--space-lg) 1rem;
    gap: var(--space-md);
  }
}
