/* 首页独立收尾区：使用唯一类名，避免命中历史 Footer 样式。 */
.home-closing {
  width: 100%;
  margin: 0;
  padding: 44px max(24px, 4vw) 32px;
  box-sizing: border-box;
  background: #11100e;
  color: #f4ede2;
  text-align: center;
}

.home-closing__inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.home-closing__entry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #eee5d8;
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: none;
  border: 0;
  box-shadow: none;
}

.home-closing__entry span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.home-closing__entry:hover span {
  transform: translateX(4px);
}

.home-closing__legal {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35em;
  margin: 30px 0 0;
  color: rgba(244, 237, 226, 0.52);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.home-closing__record {
  padding: 0;
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  box-shadow: none;
}

.home-closing__record:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .home-closing {
    padding: 38px 24px 28px;
  }

  .home-closing__entry {
    font-size: 18px;
  }

  .home-closing__legal {
    max-width: 190px;
    margin: 28px auto 0;
    font-size: 11px;
    line-height: 1.8;
  }

  .home-closing__separator {
    display: none;
  }
}
