.site-footer {
  padding: 48px var(--gutter) 36px;
  background: var(--ink-navy);
  color: var(--paper);
}

.site-footer .footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
  color: rgba(250, 248, 243, 0.82);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.site-footer .footer-company {
  margin-bottom: 20px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer .footer-lines .row {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.site-footer .footer-lines .row + .row { margin-top: 4px; }
.site-footer .footer-lines .label { flex: 0 0 auto; color: rgba(250, 248, 243, 0.9); }
.site-footer .footer-lines .val { color: rgba(250, 248, 243, 0.72); }

.site-footer .footer-notice {
  max-width: none;
  margin-top: 22px;
  color: rgba(250, 248, 243, 0.64);
  font-size: 13px;
  line-height: 1.85;
}

.site-footer .footer-notice a,
.site-footer .footer-legal-line a {
  color: inherit;
  transition: color var(--dur-hover) var(--ease-out);
}

.site-footer .footer-notice a:hover,
.site-footer .footer-legal-line a:hover { color: var(--gilt); }

.site-footer .footer-legal-line {
  margin-top: 12px;
  color: rgba(250, 248, 243, 0.5);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-footer .footer-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer .footer-qr {
  width: 112px;
  height: 112px;
  padding: 8px;
  background: var(--paper);
  color: var(--ink-navy);
  display: grid;
  place-items: center;
}

.site-footer .footer-qr img,
.site-footer .footer-qr svg {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer .footer-qr-caption {
  color: rgba(250, 248, 243, 0.78);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 960px) {
  .site-footer { padding: 40px var(--gutter) 32px; }
  .site-footer .footer-bar { grid-template-columns: 1fr; gap: 28px; }
  .site-footer .footer-qr-block { align-items: flex-start; }
}
