/* ========== Footer ========== */
footer.site {
  background: #11161B;
  color: var(--ink-soft);
  padding: 80px 0 0;
  border-top: 1px solid var(--line);
  position: relative;
}
footer.site::before {
  content:""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr; gap: 56px; padding-bottom: 60px;
}
.footer-brand img { height: 80px; margin-bottom: 24px; }
.footer-brand p { font-size: 17px; color: var(--ink-soft); max-width: 320px; margin: 0 0 24px; line-height: 1.6; }
.footer-brand .slog {
  font-family: 'Staatliches', sans-serif; font-size: 28px; color: var(--acid);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 16px; color: var(--ink); margin: 0 0 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 17px; color: var(--ink-soft); transition: 0.2s; }
.footer-col a:hover { color: var(--acid); }
.footer-col ul a:hover { padding-left: 6px; }
.footer-col .contact-row { font-size: 17px; line-height: 1.6; margin-bottom: 18px; }
.footer-col .contact-row .k { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.16em; font-size: 16px; color: var(--ink-mute); margin-bottom: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px;}
.footer-social a {
  width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.footer-social a:hover { background: var(--acid); border-color: var(--acid); color: #0A0D0E; transform: translateY(-2px); }
.footer-social svg { width: 14px; height: 14px; }
.copyright {
  border-top: 1px solid var(--line); padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-mute);
}
.copyright a { color: var(--ink-soft); }
.copyright a:hover { color: var(--acid); }
.copyright .legal { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.copyright .legal a:not(:last-child)::after {
  content:"/"; margin-left: 18px; color: var(--ink-dim);
}

/* ========== Responsive: Footer ========== */

@media (max-width: 1100px) {
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
    gap: 36px; 
  }
}

@media (max-width: 640px) {
  .footer-grid { 
    grid-template-columns: 1fr; 
  }
}