:root{
    --green-deep: #33593f;
}

/* ---------- 页脚 ---------- */
.site-footer {
  margin-top: 40px;
  background: linear-gradient(160deg, var(--green-deep), #274b33);
  color: #e9e2cf;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-brand img {
  width: 52px;
  margin-bottom: 12px;
}

.footer-brand h3 {
  font-size: 20px;
  letter-spacing: 2px;
  color: #f6ecd2;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(233, 226, 207, 0.72);
  margin-top: 6px;
  max-width: 30ch;
}

.footer-col h4 {
  font-size: 15px;
  color: #f6ecd2;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(233, 226, 207, 0.78);
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(233, 226, 207, 0.78);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(233, 226, 207, 0.16);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(233, 226, 207, 0.6);
}