.page-contact {
  --ct-gap: 20px;
  background: var(--ph-cream);
  color: var(--ph-ink);
  overflow-x: clip;
}

/* ---------- 首屏 ---------- */
.page-contact .ct-hero {
  position: relative;
  background: var(--ph-night);
  color: var(--ph-cream);
  padding: 26px 0 76px;
  overflow: hidden;
}

.page-contact .ct-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 68, 43, .55) 0%, rgba(232, 68, 43, 0) 70%);
  pointer-events: none;
}

.page-contact .ct-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  background: var(--ph-cream);
  clip-path: polygon(0 46%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-contact .ct-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.page-contact .ct-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  letter-spacing: .04em;
}

.page-contact .ct-crumb li {
  display: inline-flex;
  align-items: center;
  color: rgba(244, 240, 232, .62);
}

.page-contact .ct-crumb li + li::before {
  content: "/";
  margin: 0 9px;
  color: var(--ph-gold);
}

.page-contact .ct-crumb a {
  color: rgba(244, 240, 232, .74);
  text-decoration: none;
  border-bottom: 1px solid rgba(244, 240, 232, .3);
}

.page-contact .ct-crumb a:hover {
  color: var(--ph-cream);
  border-bottom-color: var(--ph-flame);
}

.page-contact .ct-crumb [aria-current="page"] {
  color: var(--ph-gold);
}

.page-contact .ct-hero__title {
  margin: 0 0 18px;
  font-family: var(--ph-font-display);
  font-weight: 900;
  font-size: clamp(2rem, 8.4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ph-cream);
}

.page-contact .ct-hero__brand {
  background: linear-gradient(96deg, var(--ph-flame) 0%, var(--ph-gold) 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-contact .ct-hero__lead {
  max-width: 36em;
  margin: 0 0 26px;
  font-size: clamp(1rem, 2.5vw, 1.08rem);
  line-height: 1.8;
  color: rgba(244, 240, 232, .82);
}

.page-contact .ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-contact .ct-hero__rail {
  display: none;
}

@media (min-width: 860px) {
  .page-contact .ct-hero {
    padding: 40px 0 92px;
  }

  .page-contact .ct-hero__inner {
    grid-template-columns: minmax(0, 1fr) 104px;
    align-items: end;
    gap: 32px;
  }

  .page-contact .ct-hero__rail {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 200px;
    padding-left: 16px;
    border-left: 2px solid rgba(200, 154, 60, .45);
  }

  .page-contact .ct-hero__rail .ph-anno {
    color: var(--ph-gold);
  }
}

/* ---------- 左右分屏 ---------- */
.page-contact .ct-split {
  padding: 42px 0 8px;
}

.page-contact .ct-split__inner {
  display: grid;
  gap: 30px;
}

.page-contact .ct-intro {
  margin: 0 0 22px;
  max-width: 34em;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ph-rock);
}

@media (min-width: 900px) {
  .page-contact .ct-split {
    padding-top: 62px;
  }

  .page-contact .ct-split__inner {
    grid-template-columns: 55fr 45fr;
    gap: 38px;
    align-items: start;
  }
}

/* ---------- 咨询类型选择 ---------- */
.page-contact .ct-picker {
  position: relative;
}

.page-contact .ct-picker__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.page-contact .ct-picker__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-contact .ct-picker__tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  border: 2px solid var(--ph-ink);
  border-radius: var(--ph-pill);
  background: transparent;
  color: var(--ph-ink);
  font-size: .94rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .18s var(--ph-ease), background .18s var(--ph-ease),
              box-shadow .18s var(--ph-ease), color .18s var(--ph-ease);
}

.page-contact .ct-picker__tab:hover {
  transform: translateY(-2px);
  background: rgba(232, 68, 43, .08);
}

.page-contact #ct-r-biz:checked ~ .ct-picker__tabs .ct-picker__tab--biz,
.page-contact #ct-r-sub:checked ~ .ct-picker__tabs .ct-picker__tab--sub,
.page-contact #ct-r-fix:checked ~ .ct-picker__tabs .ct-picker__tab--fix,
.page-contact #ct-r-med:checked ~ .ct-picker__tabs .ct-picker__tab--med {
  background: var(--ph-flame);
  color: var(--ph-cream);
  box-shadow: var(--ph-hard-sm);
}

.page-contact .ct-picker__radio:focus-visible ~ .ct-picker__tabs {
  outline: 3px solid var(--ph-ice);
  outline-offset: 4px;
}

.page-contact .ct-picker__panels {
  padding: 22px;
  border: 2px solid var(--ph-ink);
  background: var(--ph-cream-2);
  box-shadow: var(--ph-hard);
}

.page-contact .ct-picker__panel {
  display: none;
}

.page-contact #ct-r-biz:checked ~ .ct-picker__panels .ct-picker__panel--biz,
.page-contact #ct-r-sub:checked ~ .ct-picker__panels .ct-picker__panel--sub,
.page-contact #ct-r-fix:checked ~ .ct-picker__panels .ct-picker__panel--fix,
.page-contact #ct-r-med:checked ~ .ct-picker__panels .ct-picker__panel--med {
  display: block;
}

.page-contact .ct-picker__ptitle {
  margin: 0 0 16px;
  font-family: var(--ph-font-display);
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -.01em;
  color: var(--ph-ink);
}

.page-contact .ct-checklist {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.page-contact .ct-checklist li {
  position: relative;
  padding-left: 20px;
  font-size: .97rem;
  line-height: 1.76;
  color: var(--ph-rock);
}

.page-contact .ct-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  background: var(--ph-flame);
  transform: rotate(45deg);
}

.page-contact .ct-checklist strong {
  color: var(--ph-ink);
  font-weight: 800;
}

.page-contact .ct-hint {
  margin: 0;
  padding-top: 14px;
  border-top: 2px solid rgba(16, 16, 20, .14);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--ph-flame-deep);
}

/* ---------- 右侧说明牌 ---------- */
.page-contact .ct-right {
  display: grid;
  border: 2px solid var(--ph-ink);
  background: var(--ph-night);
  box-shadow: var(--ph-hard);
  overflow: hidden;
}

.page-contact .ct-media {
  margin: 0;
  display: block;
}

.page-contact .ct-media__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid var(--ph-gold);
}

.page-contact .ct-board {
  padding: 22px 22px 26px;
}

.page-contact .ct-board__cap {
  margin: 0 0 18px;
  font-family: var(--ph-font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--ph-gold);
}

.page-contact .ct-board__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-contact .ct-board__row {
  display: grid;
  gap: 5px;
  padding: 15px 0;
  border-top: 1px solid rgba(200, 154, 60, .35);
}

.page-contact .ct-board__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-contact .ct-board__k {
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(244, 240, 232, .58);
}

.page-contact .ct-board__v {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ph-cream);
  overflow-wrap: break-word;
  word-break: break-word;
}

.page-contact .ct-board__note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 154, 60, .35);
  font-size: .87rem;
  line-height: 1.72;
  color: rgba(244, 240, 232, .68);
}

/* ---------- 处理顺序 ---------- */
.page-contact .ct-hours {
  padding: 52px 0 8px;
}

.page-contact .ct-hours__grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-contact .ct-hours__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 38px;
    align-items: start;
  }
}

.page-contact .ct-order {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ph-ink);
}

.page-contact .ct-order__item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-bottom: 2px solid rgba(16, 16, 20, .14);
}

.page-contact .ct-order__num {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ph-clay);
}

.page-contact .ct-order__title {
  margin: 0 0 7px;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--ph-ink);
}

.page-contact .ct-order__desc {
  margin: 0;
  font-size: .96rem;
  line-height: 1.78;
  color: var(--ph-rock);
}

.page-contact .ct-order__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 11px;
  border: 2px solid var(--ph-gold);
  border-radius: var(--ph-pill);
  background: rgba(200, 154, 60, .12);
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--ph-clay);
}

.page-contact .ct-hours__fig {
  margin: 0;
  border: 2px solid var(--ph-ink);
  background: var(--ph-cream-2);
  box-shadow: var(--ph-hard);
}

.page-contact .ct-hours__fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 2px solid var(--ph-ink);
}

.page-contact .ct-hours__fig figcaption {
  padding: 14px 18px;
  font-size: .87rem;
  line-height: 1.68;
  color: var(--ph-rock);
}

/* ---------- 自助入口 ---------- */
.page-contact .ct-self {
  padding: 52px 0 78px;
}

.page-contact .ct-self__lead {
  margin: 0 0 26px;
  max-width: 40em;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ph-rock);
}

.page-contact .ct-self__grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .page-contact .ct-self__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.page-contact .ct-self__card {
  position: relative;
  display: block;
  padding: 22px 20px 24px;
  border: 2px solid var(--ph-ink);
  background: var(--ph-cream-2);
  color: var(--ph-ink);
  text-decoration: none;
  box-shadow: var(--ph-hard-sm);
  transition: transform .18s var(--ph-ease), box-shadow .18s var(--ph-ease),
              background .18s var(--ph-ease);
}

.page-contact .ct-self__card:hover,
.page-contact .ct-self__card:focus-visible {
  transform: translate(-2px, -3px);
  box-shadow: var(--ph-hard);
  background: var(--ph-cream);
}

.page-contact .ct-self__idx {
  display: block;
  margin-bottom: 12px;
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--ph-flame-deep);
}

.page-contact .ct-self__card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -.01em;
}

.page-contact .ct-self__card p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.72;
  color: var(--ph-rock);
}

.page-contact .ct-self__foot {
  margin: 26px 0 0;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ph-rock);
}

.page-contact .ct-self__foot a {
  color: var(--ph-flame-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--ph-flame-deep);
}

.page-contact .ct-self__foot a:hover {
  color: var(--ph-ink);
  border-bottom-color: var(--ph-ink);
}

@media (prefers-reduced-motion: reduce) {
  .page-contact .ct-picker__tab,
  .page-contact .ct-self__card {
    transition: none;
  }

  .page-contact .ct-picker__tab:hover,
  .page-contact .ct-self__card:hover,
  .page-contact .ct-self__card:focus-visible {
    transform: none;
  }
}
