.site-footer {
  background: var(--page-bg);
  padding: 60px var(--page-margin) 30px;
}

.footer-top {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.footer-brand {
  flex: 1 1 280px;
  max-width: 360px;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
}

.footer-col a:hover {
  color: var(--gold);
}

/* Click-to-copy links (email, phone) */
.copy-link {
  position: relative;
  cursor: pointer;
}

.copy-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%) translateY(6px);
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 12.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-natural), transform 0.25s var(--ease-natural);
}

.copy-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gold);
}

.copy-link.copied .copy-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-natural), transform 0.2s var(--ease-natural);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-social svg,
.footer-social i {
  width: 17px;
  height: 17px;
  font-size: 15px;
  stroke: var(--bg-dark);
  fill: var(--bg-dark);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-divider {
  max-width: 1400px;
  margin: 44px auto 24px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  color: var(--gray-text);
  font-size: 14px;
  text-align: center;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom .asr-link {
  color: var(--gold);
}

.footer-bottom .dot {
  opacity: 0.5;
}

@media (max-width: 700px) {
  .footer-top {
    flex-direction: column;
    gap: 34px;
  }
}
