.site-footer {
  background-color: #e6e0d6;
  color: #444;
  font-family: 'Inter', 'Noto', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 4rem;
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

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

.footer-text p {
  margin: 0 0 0.5rem;
}
.footer-text p:last-child { margin-bottom: 0; }
.footer-text em { font-style: italic; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
  white-space: nowrap;
}

.footer-links a {
  color: #7a6145;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { text-decoration: underline; }

.footer-links svg { flex-shrink: 0; }

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-links {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
