.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-block: clamp(24px, 3vw, 32px);
  isolation: isolate;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
}

.site-footer__contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__contact-line a {
  color: inherit;
  transition: color 0.25s ease;
}

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

.site-footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.site-footer__bottom {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 560px) {
  .site-footer__contact-line {
    gap: 10px;
    font-size: 0.84rem;
  }
}
