.site-footer {
  color: var(--text-color, #eee);
  background: linear-gradient(0deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.footer-social {
  min-width: 220px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}

.footer-social a:hover { 
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-columns {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 24px 36px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.footer-col nav, .footer-col ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a {
  color: var(--text-color, #eee);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  width: fit-content;
  border-bottom: 1px dotted transparent;
  transition: color 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

.footer-col a:hover {
  opacity: 1;
  border-bottom-color: currentColor;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}

.footer-bottom .footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom .footer-bottom-links a {
  color: var(--text-color, #eee);
  text-decoration: none;
  font-size: 13px;
  opacity: 0.85;
}

.footer-bottom .footer-bottom-links a:hover { opacity: 1; }

@media (max-width: 840px) {
  .footer-inner { flex-direction: column; }
  .footer-columns { grid-template-columns: repeat(2, minmax(160px, 1fr)); }
}

@media (max-width: 520px) {
  .footer-columns { grid-template-columns: 1fr; }
  .footer-social { min-width: 0; }
}
