.site-footer {
  background: #000;
  background-image: var(--footer-bg);
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
  color: #b8b8b8;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-transform: lowercase;
}

.footer-sub {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-menu a {
  color: var(--muted);
}

.footer-menu a:hover {
  color: #fff;
}

.footer-contacts {
  display: grid;
  gap: 14px;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: 0.5px;
}

.footer-column-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column-links li {
  margin-bottom: 8px;
}

.footer-column-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column-links a:hover {
  color: #fff;
}

.contact-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-line,
.contact-link {
  color: #b5b5b5;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
}

.contact-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #888;
}
