.page-contact {
  --pc-hair: rgba(244, 241, 232, .13);
  --pc-hair-soft: rgba(244, 241, 232, .08);
  --pc-gap: clamp(14px, 2.2vw, 26px);
  display: block;
}

.page-contact .m8-section {
  padding-block: clamp(48px, 6.6vw, 92px);
}

.page-contact .breadcrumbs {
  padding-top: clamp(18px, 2.6vw, 30px);
}

.page-contact .contact-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.4vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--cream);
  margin: 12px 0 16px;
  max-width: 26ch;
}

/* ---------- 首屏 ---------- */
.contact-hero {
  padding-top: clamp(24px, 3vw, 40px);
}

.contact-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 6.6vw, 4rem);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--cream);
  margin: 14px 0 20px;
  max-width: 21ch;
  transform: skewX(-2deg);
  transform-origin: left bottom;
}

.contact-hero__lede {
  max-width: 62ch;
  color: var(--text-soft);
}

.contact-hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(30px, 4.6vw, 54px);
  align-items: start;
}

.contact-channels {
  display: grid;
  gap: 14px;
}

.channel {
  position: relative;
  padding: clamp(16px, 2.2vw, 26px);
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(27, 33, 30, .92), rgba(14, 18, 16, .94));
  transition: border-color var(--ease), background var(--ease);
}

.channel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--copper);
  opacity: .6;
}

.channel:hover,
.channel:focus-within {
  border-color: var(--lime-line);
}

.channel__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.channel__key {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.channel__lamp {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(198, 255, 61, .7);
}

.channel__state {
  margin-left: auto;
  font-size: 10.5px;
  letter-spacing: .1em;
  color: var(--lime);
  padding: 3px 8px;
  border: 1px solid rgba(198, 255, 61, .3);
  border-radius: 999px;
  white-space: nowrap;
}

.channel__val {
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1rem, 3.6vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--cream);
  word-break: break-word;
}

.channel__val--sm {
  font-size: clamp(.95rem, 3vw, 1.2rem);
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 0;
}

.channel__note {
  margin: 12px 0 0;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 56ch;
}

.channel__foot {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.channel--addr::before {
  background: var(--clay);
}

.contact-hero__figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--pc-hair);
  background: var(--stand);
}

.contact-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05);
}

/* ---------- 右侧面板 ---------- */
.contact-panel {
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.contact-panel__k {
  display: block;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 8px;
}

.contact-panel__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 3.4vw, 1.6rem);
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 10px;
}

.contact-panel__intro {
  margin: 0 0 6px;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-mute);
}

.field-list {
  list-style: none;
  margin: 12px 0 24px;
  padding: 0;
}

.field {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-bottom: 1px solid var(--pc-hair-soft);
  border-left: 2px solid transparent;
  transition: border-color var(--ease), background var(--ease);
}

.field:last-child {
  border-bottom: 0;
}

.field:focus-within,
.field:hover {
  border-left-color: var(--lime);
  background: rgba(198, 255, 61, .045);
}

.field__label {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lime);
}

.field__hint {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text-soft);
}

.coop-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coop-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-soft);
  cursor: default;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.coop-tag:hover {
  color: var(--carbon);
  background: var(--lime);
  border-color: var(--lime);
}

/* ---------- 服务时间 ---------- */
.contact-hours {
  border-top: 1px solid var(--pc-hair);
}

.contact-hours__lede {
  max-width: 62ch;
  color: var(--text-soft);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: clamp(22px, 3.6vw, 40px);
}

.hours-card {
  position: relative;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  background: rgba(27, 33, 30, .72);
}

.hours-card--live {
  border-color: var(--lime-line);
  background: linear-gradient(150deg, rgba(198, 255, 61, .13), rgba(27, 33, 30, .9));
}

.hours-card__k {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--text-mute);
  text-transform: uppercase;
}

.hours-card__v {
  margin: 10px 0 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--cream);
}

.hours-card--live .hours-card__v {
  color: var(--lime);
}

.hours-card__d {
  margin: 0;
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 46ch;
}

/* ---------- 商务合作 ---------- */
.contact-coop {
  background: linear-gradient(180deg, rgba(63, 90, 70, .16), transparent 70%);
}

.contact-coop__lede {
  max-width: 64ch;
  color: var(--text-soft);
}

.coop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pc-gap);
  margin-top: clamp(22px, 3.6vw, 40px);
}

.coop-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  background: rgba(27, 33, 30, .78);
  align-self: stretch;
  transition: border-color var(--ease), transform var(--ease);
}

.coop-card:hover {
  border-color: var(--lime-line);
  transform: translateY(-2px);
}

.coop-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  line-height: 1.25;
  color: var(--cream);
  margin: 0;
}

.coop-card__text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.72;
  color: var(--text-soft);
}

.coop-card__list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  border-top: 1px dashed var(--pc-hair);
  padding-top: 12px;
}

.coop-card__list li {
  position: relative;
  padding-left: 16px;
  font-size: .86rem;
  line-height: 1.6;
  color: var(--text-mute);
}

.coop-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--copper);
}

.contact-coop__cta {
  margin: clamp(22px, 3.4vw, 36px) 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--copper);
  background: rgba(184, 115, 51, .09);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .93rem;
  line-height: 1.72;
  color: var(--text-soft);
  max-width: 72ch;
}

/* ---------- 数据纠错 ---------- */
.contact-fix {
  border-top: 1px solid var(--pc-hair);
}

.contact-fix__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.contact-fix__hint {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--carbon);
  background: var(--amber);
  padding: 6px 12px;
  border-radius: 999px;
}

.fix-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: fix;
}

.fix-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--pc-hair-soft);
  transition: background var(--ease);
}

.fix-item:first-child {
  border-top: 1px solid var(--pc-hair-soft);
}

.fix-item:hover {
  background: rgba(244, 241, 232, .035);
}

.fix-item__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--copper);
  padding-top: 3px;
}

.fix-item__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--cream);
  margin: 0 0 5px;
}

.fix-item__text {
  margin: 0;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-mute);
}

/* ---------- 广西服务 ---------- */
.contact-guangxi {
  position: relative;
  border-top: 1px solid var(--pc-hair);
  overflow: hidden;
}

.guangxi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
}

.guangxi-media {
  margin: 0;
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--stand);
}

.guangxi-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 14 / 9;
  object-fit: cover;
  filter: saturate(.9) brightness(.92);
}

.guangxi-copy .m8-prose {
  max-width: 60ch;
  color: var(--text-soft);
}

.guangxi-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: clamp(18px, 3vw, 28px);
}

.gx-fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  background: rgba(27, 33, 30, .68);
}

.gx-fact__k {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.gx-fact__v {
  font-size: .95rem;
  font-weight: 700;
  color: var(--lime);
  text-align: right;
}

/* ---------- 快捷入口 ---------- */
.contact-shortcuts__lede {
  max-width: 60ch;
  color: var(--text-soft);
}

.shortcut-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: clamp(22px, 3.4vw, 36px);
}

.shortcut {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--pc-hair);
  border-radius: var(--radius);
  background: rgba(27, 33, 30, .62);
  text-decoration: none;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
}

.shortcut:hover,
.shortcut:focus-visible {
  border-color: var(--lime-line);
  background: rgba(198, 255, 61, .06);
  transform: translateY(-2px);
}

.shortcut__k {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
}

.shortcut__t {
  font-size: .95rem;
  line-height: 1.62;
  color: var(--cream);
}

.shortcut__a {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--lime);
}

/* ---------- 收尾 ---------- */
.contact-outro {
  position: relative;
  margin-top: clamp(36px, 5vw, 64px);
  padding-block: clamp(30px, 4.6vw, 54px);
  border-top: 1px solid var(--pc-hair);
  background:
    radial-gradient(120% 150% at 10% 0%, rgba(184, 115, 51, .18), transparent 62%),
    radial-gradient(90% 130% at 95% 100%, rgba(198, 255, 61, .09), transparent 60%),
    rgba(27, 33, 30, .6);
}

.contact-outro__inner {
  display: grid;
  gap: 10px;
  position: relative;
}

.contact-outro__k {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}

.contact-outro__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 3.6vw, 1.7rem);
  line-height: 1.3;
  color: var(--cream);
  max-width: 30ch;
}

.contact-outro__meta {
  margin: 4px 0 0;
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--text-mute);
  word-break: break-word;
}

/* ---------- 响应式 ---------- */
@media (min-width: 640px) {
  .hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guangxi-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  .contact-hero__split {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .coop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-fix__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }

  .guangxi-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
}

@media (min-width: 1080px) {
  .contact-hero__split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: clamp(28px, 3.4vw, 52px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-contact .channel,
  .page-contact .coop-card,
  .page-contact .shortcut,
  .page-contact .field,
  .page-contact .coop-tag {
    transition: color var(--ease), background var(--ease), border-color var(--ease), opacity var(--ease);
    transform: none;
  }

  .page-contact .coop-card:hover,
  .page-contact .shortcut:hover,
  .page-contact .shortcut:focus-visible {
    transform: none;
  }
}
