.page-home {
  display: block;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--font-body);
}

.page-home .mono {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: .02em;
}

/* ---------- 首屏 ---------- */
.page-home .hm-open {
  padding: clamp(28px, 5vw, 64px) 0 clamp(32px, 5vw, 60px);
  background: linear-gradient(180deg, var(--mist) 0%, var(--mist) 58%, var(--sand) 100%);
  border-bottom: var(--line);
}

.page-home .hm-open__inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.page-home .hm-open__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(14px, 2vw, 22px);
}

.page-home .hm-open__title {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.9rem, 5.6vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 clamp(16px, 2vw, 22px);
  max-width: 18ch;
}

.page-home .hm-open__lead {
  font-size: clamp(1rem, 2.3vw, 1.0625rem);
  line-height: 1.85;
  margin: 0 0 clamp(20px, 3vw, 28px);
  max-width: 46ch;
}

.page-home .hm-open__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.page-home .hm-open__figure {
  margin: 0;
  border: var(--line);
  box-shadow: var(--shadow-hard);
  background: var(--sand);
}

.page-home .hm-open__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-home .hm-open__caption {
  font-family: var(--font-mono);
  font-size: .8125rem;
  line-height: 1.6;
  padding: 10px 14px;
  border-top: 3px solid var(--ink);
  background: var(--sand);
  color: var(--ink);
}

@media (min-width: 920px) {
  .page-home .hm-open__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
  }
}

/* ---------- 时段轴 ---------- */
.page-home .hm-slots {
  margin-top: clamp(30px, 4vw, 52px);
  border: var(--line);
  background: var(--mist);
  padding: clamp(18px, 2.6vw, 28px);
  box-shadow: var(--shadow-hard);
}

.page-home .hm-slots__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 20px;
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.page-home .hm-slots__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  letter-spacing: -.01em;
  margin: 0;
}

.page-home .hm-slots__hint {
  font-size: .875rem;
  line-height: 1.6;
  margin: 0;
  color: var(--tea);
  font-weight: 600;
}

.page-home .hm-slots__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .hm-slots__item {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: var(--sand);
  border: 2px solid var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.page-home .hm-slots__item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.page-home .hm-slots__dot {
  width: 13px;
  height: 13px;
  background: var(--orange);
  border: 2px solid var(--ink);
  display: block;
}

.page-home .hm-slots__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.0625rem;
}

.page-home .hm-slots__time {
  font-size: 1.2rem;
  color: var(--tea);
}

.page-home .hm-slots__desc {
  font-size: .875rem;
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 768px) {
  .page-home .hm-slots__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ---------- 城区网格 ---------- */
.page-home .hm-cities {
  padding: clamp(44px, 6vw, 92px) 0;
  background: var(--mist);
}

.page-home .hm-cities__head .section__lead {
  max-width: 62ch;
}

.page-home .hm-cities__grid {
  margin-top: clamp(26px, 3.5vw, 40px);
  padding: clamp(14px, 2vw, 20px);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border: var(--line);
  background-color: var(--mist);
  background-image: radial-gradient(var(--sand) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
}

.page-home .hm-city {
  position: relative;
  padding: 18px 16px 20px;
  background: var(--mist);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.page-home .hm-city:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}

.page-home .hm-city__pin {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  margin-bottom: 12px;
}

.page-home .hm-city__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  margin: 0 0 8px;
}

.page-home .hm-city__count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  font-size: .875rem;
  line-height: 1.5;
}

.page-home .hm-city__num {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--tea);
}

.page-home .hm-cities__belt {
  margin-top: clamp(22px, 3vw, 32px);
  padding: clamp(18px, 2.6vw, 26px);
  display: grid;
  gap: 16px;
  align-items: center;
  border: var(--line);
  background: var(--deep);
  color: var(--mist);
}

.page-home .hm-cities__belt-text {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.85;
}

.page-home .hm-cities__belt .btn {
  justify-self: start;
}

@media (min-width: 860px) {
  .page-home .hm-cities__belt {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .page-home .hm-cities__belt .btn {
    justify-self: end;
  }
}

/* ---------- 六档标准 ---------- */
.page-home .hm-tiers {
  padding: clamp(44px, 6vw, 92px) 0;
  background: var(--deep);
  color: var(--mist);
}

.page-home .hm-tiers .section__title {
  color: var(--mist);
}

.page-home .hm-tiers .section__lead {
  color: var(--sand);
  max-width: 60ch;
}

.page-home .hm-tiers__body {
  margin-top: clamp(26px, 3.5vw, 40px);
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.page-home .hm-tiers__panel {
  overflow-x: auto;
  border: 3px solid var(--sand);
  background: var(--mist);
  color: var(--ink);
}

.page-home .hm-tiers__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: .9375rem;
}

.page-home .hm-tiers__caption {
  caption-side: top;
  text-align: left;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: .8125rem;
  background: var(--tea);
  color: var(--mist);
  letter-spacing: .02em;
}

.page-home .hm-tiers__table th,
.page-home .hm-tiers__table td {
  border: 1px solid var(--sand);
  padding: 12px 15px;
  text-align: left;
  line-height: 1.5;
}

.page-home .hm-tiers__table thead th {
  background: var(--tea);
  color: var(--mist);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9375rem;
  border-color: var(--tea);
}

.page-home .hm-tiers__table tbody th {
  font-family: var(--font-head);
  font-weight: 800;
  background: var(--sand);
  white-space: nowrap;
}

.page-home .hm-tiers__table tbody tr:nth-child(even) td {
  background: rgba(230, 217, 196, .35);
}

.page-home .hm-tiers__table tbody tr:hover td {
  background: var(--gold);
  color: var(--ink);
}

.page-home .hm-tiers__figure {
  margin: 0;
  border: 3px solid var(--sand);
  background: rgba(246, 242, 233, .06);
}

.page-home .hm-tiers__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.page-home .hm-tiers__caption-line {
  font-size: .8125rem;
  line-height: 1.6;
  padding: 10px 14px;
  border-top: 2px solid var(--sand);
  color: var(--sand);
}

.page-home .hm-tiers__more {
  margin: clamp(24px, 3vw, 34px) 0 0;
}

@media (min-width: 940px) {
  .page-home .hm-tiers__body {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
    align-items: start;
  }
}

/* ---------- 响应时间 ---------- */
.page-home .hm-response {
  padding: clamp(44px, 6vw, 92px) 0;
  background: var(--clay);
  color: var(--mist);
  border-top: var(--line);
  border-bottom: var(--line);
}

.page-home .hm-response__inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.page-home .hm-response .section__title {
  color: var(--mist);
}

.page-home .hm-response .section__lead {
  color: #F3E3DC;
  max-width: 56ch;
}

.page-home .hm-response__bands {
  margin-top: clamp(20px, 3vw, 28px);
  display: grid;
  gap: 12px;
}

.page-home .hm-band {
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border: 3px solid var(--ink);
  background: var(--mist);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.page-home .hm-band:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.page-home .hm-band--hot {
  background: var(--gold);
}

.page-home .hm-band__zone {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
}

.page-home .hm-band__time {
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--orange);
}

.page-home .hm-band--hot .hm-band__time {
  color: var(--ink);
}

.page-home .hm-band__note {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: .82;
}

.page-home .hm-response__cta {
  margin: clamp(20px, 3vw, 28px) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-home .hm-response__figure {
  margin: 0;
  border: 3px solid var(--sand);
  box-shadow: 6px 6px 0 var(--ink);
}

.page-home .hm-response__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (min-width: 720px) {
  .page-home .hm-response__bands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 940px) {
  .page-home .hm-response__inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  }
}

/* ---------- 服务场景与流程 ---------- */
.page-home .hm-scenes {
  padding: clamp(44px, 6vw, 92px) 0;
  background: var(--mist);
}

.page-home .hm-scenes__grid {
  margin-top: clamp(26px, 3.5vw, 40px);
  display: grid;
  gap: 16px;
}

.page-home .hm-scene {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
  border: var(--line);
  background: var(--mist);
  box-shadow: var(--shadow-hard);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.page-home .hm-scene:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.page-home .hm-scene__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.375rem);
  letter-spacing: -.01em;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.page-home .hm-scene__desc {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.85;
}

.page-home .hm-scene__fit {
  margin: 0;
  align-self: end;
  font-family: var(--font-mono);
  font-size: .8125rem;
  line-height: 1.6;
  padding: 7px 10px;
  background: var(--sand);
  border: 2px solid var(--ink);
  display: inline-block;
  justify-self: start;
}

@media (min-width: 800px) {
  .page-home .hm-scenes__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home .hm-scenes__banner {
  margin: clamp(26px, 3.5vw, 40px) 0 0;
  border: var(--line);
  background: var(--sand);
}

.page-home .hm-scenes__banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.page-home .hm-scenes__banner-caption {
  font-family: var(--font-mono);
  font-size: .8125rem;
  line-height: 1.6;
  padding: 10px 14px;
  border-top: 3px solid var(--ink);
  color: var(--ink);
}

.page-home .hm-flow {
  list-style: none;
  margin: clamp(26px, 3.5vw, 40px) 0 0;
  padding: 0;
  display: grid;
  border: var(--line);
  background: var(--sand);
}

.page-home .hm-flow__item {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 2.4vw, 24px);
  border-bottom: 2px solid var(--ink);
}

.page-home .hm-flow__item:last-child {
  border-bottom: 0;
}

.page-home .hm-flow__index {
  font-size: 1.375rem;
  line-height: 1;
  color: var(--orange);
}

.page-home .hm-flow__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.0625rem;
  margin: 0;
}

.page-home .hm-flow__text {
  margin: 0;
  font-size: .875rem;
  line-height: 1.8;
}

@media (min-width: 780px) {
  .page-home .hm-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .hm-flow__item {
    border-bottom: 0;
    border-right: 2px solid var(--ink);
  }
  .page-home .hm-flow__item:last-child {
    border-right: 0;
  }
}

/* ---------- 专题与帮助 ---------- */
.page-home .hm-more {
  padding: clamp(44px, 6vw, 92px) 0;
  background: var(--mist);
  border-top: var(--line);
}

.page-home .hm-more__grid {
  margin-top: clamp(26px, 3.5vw, 40px);
  display: grid;
  gap: 20px;
}

.page-home .hm-desk {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(20px, 2.8vw, 30px);
  border: var(--line);
  box-shadow: var(--shadow-hard);
}

.page-home .hm-desk--tea {
  background: var(--tea);
  color: var(--mist);
}

.page-home .hm-desk--deep {
  background: var(--indigo);
  color: var(--mist);
}

.page-home .hm-desk__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.3rem, 2.6vw, 1.6rem);
  letter-spacing: -.02em;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 3px solid currentColor;
}

.page-home .hm-desk__lead {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.85;
}

.page-home .hm-desk__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .hm-desk__list li {
  font-size: .875rem;
  line-height: 1.75;
  padding-left: 18px;
  position: relative;
}

.page-home .hm-desk__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border: 2px solid currentColor;
}

.page-home .hm-desk .btn {
  justify-self: start;
}

@media (min-width: 820px) {
  .page-home .hm-more__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  }
}

/* ---------- 品牌横幅 ---------- */
.page-home .hm-cred {
  padding: clamp(34px, 4.5vw, 64px) 0;
  background: var(--wine);
  color: var(--mist);
  border-top: var(--line);
}

.page-home .hm-cred__inner {
  display: grid;
  gap: 20px;
  align-items: center;
}

.page-home .hm-cred__title {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  margin: 0 0 12px;
}

.page-home .hm-cred__text {
  margin: 0;
  font-size: .9375rem;
  line-height: 1.9;
  max-width: 68ch;
}

.page-home .hm-cred__cta {
  margin: 0;
}

@media (min-width: 860px) {
  .page-home .hm-cred__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home .hm-city,
  .page-home .hm-band,
  .page-home .hm-scene,
  .page-home .hm-slots__item {
    transition: none;
  }
  .page-home .hm-city:hover,
  .page-home .hm-band:hover,
  .page-home .hm-scene:hover,
  .page-home .hm-slots__item:hover {
    transform: none;
  }
}
