.site-footer {
  background: rgba(255, 250, 241, 0.94);
  color: var(--ink);
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.footer-simple {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  gap: 18px 28px;
  font-size: 14px;
  align-items: center;
}

.footer-item {
  min-width: 0;
  white-space: nowrap;
}

.footer-simple strong {
  color: var(--ink);
  font-weight: 600;
}

.footer-simple span {
  color: var(--gold-dark);
  font-weight: 700;
}

.footer-simple a {
  color: inherit;
  text-decoration: none;
}

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

@media (max-width: 860px) {
  .footer-simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px 18px;
    font-size: 13px;
  }

  .footer-item {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .footer-simple {
    font-size: 12.5px;
    gap: 10px 12px;
  }
}
