/* ── 頁尾:比照樂遊網四欄版式,深咖啡底(v20260901b) ── */
.footer {
  margin-top: 56px;
  padding: 44px 0 0;
  background:
    linear-gradient(rgba(44, 30, 18, .84), rgba(34, 22, 13, .93)),
    url("../images/footer-night.png") center / cover no-repeat,
    #241811;
  color: #fff3d9;
  border-top: 1px solid rgba(255, 145, 77, .3);
}
.footer * { box-sizing: border-box; }
.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 30px;
}
.fbrand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff3d9;
  text-decoration: none;
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7048, #ffd36b);
  color: #fff;
  font-size: 20px;
  flex: 0 0 auto;
}
.fbrand > span:last-child {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .04em;
}
.footer-brand p {
  max-width: 380px;
  margin: 12px 0 0;
  color: rgba(255, 243, 217, .72);
  font-size: 14px;
  line-height: 1.85;
}
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.footer-tags span {
  padding: 4px 11px;
  border: 1px solid rgba(255, 179, 120, .5);
  border-radius: 999px;
  color: #ffc08a;
  font-size: 12px;
  font-weight: 700;
}
.footer-inner nav { display: grid; align-content: start; gap: 8px; }
.footer-inner h3 {
  margin: 4px 0 8px;
  color: #ffc08a;
  font-size: 15px;
  letter-spacing: .1em;
}
.footer-inner nav a {
  color: rgba(255, 243, 217, .82);
  font-size: 14px;
  text-decoration: none;
}
.footer-inner nav a:hover { color: #ffc08a; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 30px auto 0;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 179, 120, .28);
  color: rgba(255, 243, 217, .62);
  font-size: 13px;
}
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; }
}
