.page-products {
  --p-shadow: 5px 5px 0 var(--ink);
  --p-pad: clamp(20px, 3.2vw, 44px);
  --p-gap: clamp(18px, 3vw, 30px);
  background: var(--mist);
  color: var(--ink);
  font-family: var(--font-body);
  padding-bottom: clamp(56px, 8vw, 110px);
  overflow-x: clip;
}

.page-products .breadcrumb {
  padding-top: 22px;
}

.page-products h1,
.page-products h2,
.page-products h3 {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: inherit;
}

.page-products p {
  margin: 0;
}

.page-products a:focus-visible,
.page-products button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ---------- 首屏 ---------- */
.prod-hero__box {
  margin-top: 20px;
  border: 3px solid var(--ink);
  box-shadow: var(--p-shadow);
  background: var(--mist);
}

.prod-hero__main {
  padding: var(--p-pad);
}

.prod-hero__main h1 {
  font-size: clamp(31px, 5.4vw, 54px);
  line-height: 1.12;
  margin: 16px 0 18px;
}

.prod-hero__lead {
  font-size: clamp(15.5px, 1.6vw, 17.5px);
  line-height: 1.85;
}

.prod-hero__aside {
  border-top: 3px solid var(--ink);
  background: var(--sand);
  padding: var(--p-pad);
  display: grid;
  gap: 16px;
  align-content: start;
}

.prod-fact {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 2px dotted rgba(33, 28, 22, 0.32);
}

.prod-fact:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.prod-fact__num {
  flex: none;
  min-width: 2.4em;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--clay);
}

.prod-fact__txt {
  font-size: 15px;
  line-height: 1.55;
}

@media (min-width: 960px) {
  .prod-hero__box {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(264px, 1fr);
    align-items: stretch;
  }

  .prod-hero__aside {
    border-top: 0;
    border-left: 3px solid var(--ink);
  }
}

/* ---------- 通用区块 ---------- */
.prod-section {
  margin-top: clamp(48px, 7vw, 96px);
}

.prod-head {
  max-width: 760px;
}

.prod-head h2 {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.18;
  margin: 14px 0 14px;
}

.prod-lead {
  font-size: clamp(15.5px, 1.5vw, 17px);
  line-height: 1.88;
}

/* ---------- 图片 ---------- */
.shot {
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--mist);
}

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

.shot--43 img {
  aspect-ratio: 4 / 3;
}

.shot--wide img {
  aspect-ratio: 2 / 1;
}

.shot__cap {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 11px 14px;
  border-top: 3px solid var(--ink);
  background: var(--sand);
}

/* ---------- 服务项目总览 ---------- */
.svc-media {
  display: grid;
  gap: 3px;
  background: var(--ink);
  border: 3px solid var(--ink);
  margin: clamp(24px, 3.4vw, 38px) 0 clamp(22px, 3vw, 34px);
}

@media (min-width: 820px) {
  .svc-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 3px solid var(--ink);
  background: var(--mist);
}

.svc-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "no body"
    "no tag";
  gap: 8px 16px;
  padding: 22px 18px;
  border-bottom: 3px solid var(--ink);
  transition: background-color 180ms var(--ease);
}

.svc-row:last-child {
  border-bottom: 0;
}

.svc-row:hover,
.svc-row:focus-within {
  background: var(--sand);
}

.svc-row__no {
  grid-area: no;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--clay);
  padding-top: 3px;
}

.svc-row__body {
  grid-area: body;
}

.svc-row__title {
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.3;
  margin: 0 0 8px;
}

.svc-row__desc {
  font-size: 15.5px;
  line-height: 1.85;
}

.svc-row__tag {
  grid-area: tag;
  justify-self: start;
  align-self: start;
}

@media (min-width: 900px) {
  .svc-row {
    grid-template-columns: 72px minmax(0, 1fr) 200px;
    grid-template-areas: "no .page-products tag";
    align-items: center;
    gap: 10px 24px;
    padding: 26px 24px;
  }

  .svc-row__tag {
    justify-self: end;
    align-self: center;
  }
}

/* ---------- 六档对比台 ---------- */
.prod-section--band {
  background: var(--sand);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: clamp(42px, 6vw, 84px) 0;
}

.prod-section--band .prod-lead {
  color: var(--ink);
}

.page-products .table-wrap {
  margin-top: clamp(24px, 3.4vw, 38px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 3px solid var(--ink);
  background: var(--mist);
}

.tier-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  font-size: 15px;
}

.tier-table__cap {
  caption-side: top;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  background: var(--mist);
  color: var(--ink);
  border-bottom: 3px solid var(--ink);
}

.tier-table thead th {
  background: var(--tea);
  color: #FFFFFF;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-align: left;
  padding: 14px 16px;
  border-right: 3px solid var(--ink);
  white-space: nowrap;
}

.tier-table thead th:last-child {
  border-right: 0;
}

.tier-table tbody th,
.tier-table tbody td {
  padding: 14px 16px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  vertical-align: middle;
  text-align: left;
}

.tier-table tbody th {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

.tier-table tbody td:last-child,
.tier-table tbody th:last-child {
  border-right: 0;
}

.tier-table tbody tr:nth-child(even) {
  background: rgba(230, 217, 196, 0.5);
}

.tier-table tbody tr:target {
  background: var(--gold);
  box-shadow: inset 5px 0 0 var(--wine);
}

.tier-table .num {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.tier-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.page-products .tier-jump .tag {
  display: inline-block;
  text-decoration: none;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.page-products .tier-jump .tag:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.tier-note {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.8;
  padding-left: 14px;
  border-left: 4px solid var(--wine);
}

/* ---------- 材料用量 ---------- */
.mat-layout {
  display: grid;
  gap: var(--p-gap);
  margin-top: clamp(24px, 3.4vw, 38px);
}

@media (min-width: 980px) {
  .mat-layout {
    grid-template-columns: minmax(0, 1.42fr) minmax(240px, 1fr);
    align-items: start;
  }
}

.mat-chart {
  border: 3px solid var(--ink);
  background: var(--mist);
  padding: clamp(18px, 2.4vw, 28px);
  box-shadow: var(--p-shadow);
}

.mat-chart__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
}

.mat-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.mat-bar {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 66px;
  align-items: center;
  gap: 10px;
}

.mat-bar__label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mat-bar__track {
  display: block;
  height: 24px;
  border: 3px solid var(--ink);
  background: var(--mist);
}

.mat-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 0%);
  background: var(--tea);
  transition: width 400ms var(--ease);
}

.mat-bar:nth-child(2n) .mat-bar__fill {
  background: var(--clay);
}

.mat-bar__value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: right;
  white-space: nowrap;
}

@media (min-width: 620px) {
  .mat-bar {
    grid-template-columns: 104px minmax(0, 1fr) 76px;
    gap: 14px;
  }

  .mat-bar__label {
    font-size: 13.5px;
  }
}

/* ---------- 时段与响应 ---------- */
.prod-section--deep {
  background: var(--deep);
  color: var(--mist);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: clamp(44px, 6vw, 88px) 0;
}

.prod-section--deep .prod-head h2 {
  color: var(--mist);
}

.prod-section--deep .prod-lead {
  color: rgba(246, 242, 233, 0.88);
}

.win-shot {
  margin-top: clamp(24px, 3.4vw, 38px);
  border-color: var(--mist);
  background: var(--deep);
}

.win-shot .shot__cap {
  border-top-color: var(--mist);
  background: rgba(246, 242, 233, 0.08);
  color: var(--mist);
}

.win-axis {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(24px, 3.4vw, 38px);
}

.resp-grid {
  list-style: none;
  margin: clamp(20px, 3vw, 34px) 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

@media (min-width: 760px) {
  .resp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.resp {
  border: 3px solid var(--mist);
  padding: 20px 20px 22px;
  background: rgba(246, 242, 233, 0.06);
  transition: background-color 180ms var(--ease), transform 180ms var(--ease);
}

.resp:hover {
  background: rgba(233, 185, 73, 0.14);
  transform: translateY(-3px);
}

.resp__zone {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 12px;
}

.resp__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--mist);
  margin-bottom: 12px;
}

.resp__unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0;
  margin-left: 7px;
  color: rgba(246, 242, 233, 0.82);
}

.resp__desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(246, 242, 233, 0.8);
}

/* ---------- 预约流程 ---------- */
.flow {
  list-style: none;
  margin: clamp(26px, 3.6vw, 42px) 0 0;
  padding: 0 0 0 4px;
  position: relative;
}

.flow::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 10px;
  bottom: 34px;
  width: 3px;
  background: var(--ink);
}

.flow__step {
  position: relative;
  padding: 0 0 28px 66px;
}

.flow__step:last-child {
  padding-bottom: 0;
}

.flow__no {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.flow__step:nth-child(even) .flow__no {
  background: var(--sand);
}

.flow__body h3 {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.35;
  margin: 10px 0 8px;
}

.flow__body p {
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 66ch;
}

.prepare {
  margin-top: clamp(34px, 4.6vw, 54px);
  border: 3px solid var(--ink);
  background: var(--sand);
  padding: clamp(20px, 2.8vw, 32px);
  box-shadow: var(--p-shadow);
}

.prepare__title {
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--ink);
}

.prepare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.prepare__list li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  line-height: 1.8;
}

.prepare__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border: 2px solid var(--ink);
}

@media (min-width: 760px) {
  .prepare__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 32px;
  }
}

/* ---------- 场景组合 ---------- */
.prod-section--sand {
  background: var(--sand);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: clamp(42px, 6vw, 84px) 0;
}

.scene-list {
  list-style: none;
  margin: clamp(24px, 3.4vw, 38px) 0 0;
  padding: 0;
  display: grid;
  gap: 3px;
  background: var(--ink);
  border: 3px solid var(--ink);
}

.scene {
  background: var(--mist);
  padding: 18px;
  display: grid;
  gap: 10px;
  transition: background-color 180ms var(--ease);
}

.scene:hover {
  background: #FFFDF8;
}

.scene__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(17px, 1.9vw, 20px);
  letter-spacing: -0.01em;
}

.scene__tier {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.scene__time {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink);
}

@media (min-width: 800px) {
  .scene {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
  }
}

/* ---------- 结尾行动区 ---------- */
.prod-cta {
  margin-top: clamp(48px, 7vw, 96px);
}

.prod-cta__box {
  border: 3px solid var(--ink);
  background: var(--clay);
  color: var(--mist);
  padding: clamp(24px, 3.6vw, 48px);
  box-shadow: var(--p-shadow);
}

.prod-cta__box h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.2;
  color: var(--mist);
  margin: 0 0 14px;
}

.prod-cta__text {
  font-size: clamp(15.5px, 1.5vw, 17px);
  line-height: 1.85;
  color: rgba(246, 242, 233, 0.92);
  max-width: 62ch;
}

.prod-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.prod-cta__links {
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(246, 242, 233, 0.9);
}

.prod-cta__links a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prod-cta__links a:hover {
  color: #FFFFFF;
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-products .svc-row,
  .page-products .resp,
  .page-products .scene,
  .page-products .tier-jump .tag,
  .page-products .mat-bar__fill {
    transition: none !important;
  }

  .page-products .resp:hover,
  .page-products .tier-jump .tag:hover {
    transform: none !important;
  }
}
<<<END>>>

.page-products {
  --w: 1rem;
}
