/* ── Footer ── */
.site-footer {
  padding: 64px 80px 48px;
  background: var(--dark-bg);
  color: var(--cream);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250, 248, 244, 0.65);
  max-width: 280px;
  margin-top: 16px;
  font-weight: 300;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  height: 64px;
  width: auto;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.55);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(250, 248, 244, 0.8);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 248, 244, 0.48);
}

.footer-legal {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-legal li a {
  font-size: 13px;
  color: rgba(250, 248, 244, 0.48);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-legal li a:hover {
  color: rgba(250, 248, 244, 0.8);
}
