.page-contact {
  background: var(--ivory);
  color: var(--ink);
}

/* ===== 首屏：对角切分 + 联系主入口 ===== */
.contact-hero {
  position: relative;
  background: var(--green);
  color: var(--ivory);
  padding: 0 0 3.25rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), 0 100%);
}

.contact-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0 96px, rgba(201,164,74,.38) 96px 100%);
  z-index: 2;
}

.contact-hero-pattern {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 64%;
  opacity: .35;
  pointer-events: none;
}

.contact-hero-pattern line {
  stroke: var(--gold);
  stroke-width: 1;
  stroke-dasharray: 5 9;
}

.contact-hero-pattern circle {
  fill: var(--gold);
}

.contact-breadcrumb {
  color: var(--mut);
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .08em;
  padding: 2rem 0 0;
}

.contact-breadcrumb a {
  color: var(--glow);
  text-decoration: none;
}

.contact-breadcrumb a:hover {
  color: var(--gold);
}

.contact-breadcrumb .sep {
  color: var(--gold);
  margin: 0 .6rem;
}

.contact-hero-grid {
  display: grid;
  gap: 2.25rem 3.25rem;
  align-items: center;
  padding-top: 3.25rem;
  padding-bottom: 2.25rem;
}

.contact-hero-kicker {
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .34em;
  color: var(--gold);
  margin: 0 0 .65rem;
}

.contact-hero-copy h1 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: .02em;
  margin: 0 0 .75rem;
  color: var(--ivory);
}

.contact-hero-copy .lead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--glow);
  margin: 0 0 1.5rem;
}

.contact-hero-desc {
  font-family: var(--serif);
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--mut);
  max-width: 34em;
  margin: 0 0 1.75rem;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
}

.contact-btn-solid,
.contact-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .6rem 1.15rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: .08em;
  text-decoration: none;
  border-radius: 2px;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.contact-btn-solid {
  background: var(--gold);
  color: var(--green);
  border: 1px solid var(--gold);
}

.contact-btn-solid:hover {
  background: var(--glow);
  border-color: var(--glow);
}

.contact-btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,240,230,.55);
}

.contact-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-hero-meta {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .12em;
  color: rgba(245,240,230,.62);
  margin-top: 1.75rem;
}

.hero-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: .5rem;
  box-shadow: 0 0 10px var(--gold);
}

.contact-hero-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(201,164,74,.45);
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
}

.contact-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 官方联系邮箱 ===== */
.contact-mail-section {
  background: var(--ivory);
  color: var(--ink);
  padding: 4.25rem 0 2.5rem;
  position: relative;
}

.contact-mail-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 70%);
  opacity: .55;
}

.contact-mail-inner {
  display: grid;
  gap: 2.25rem;
}

.contact-section-head .idx,
.contact-hours-main .idx,
.contact-address-copy .idx {
  font-family: var(--mono);
  font-size: .8125rem;
  letter-spacing: .3em;
  color: var(--gold);
  text-transform: uppercase;
}

.contact-section-head h2,
.contact-hours-main h2,
.contact-address-copy h2 {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.4vw, 2.4rem);
  line-height: 1.18;
  margin: .55rem 0 1rem;
}

.contact-section-head p {
  font-family: var(--serif);
  font-size: .9375rem;
  color: rgba(43,43,40,.78);
  line-height: 1.75;
  max-width: 34em;
}

.contact-brace-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ln);
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.5);
  box-shadow: 0 22px 52px rgba(11,61,46,.08);
  padding: 1rem 1.25rem 1rem 3.25rem;
}

.contact-brace-card::before {
  content: "\7b";
  position: absolute;
  left: .2rem;
  top: 50%;
  transform: translateY(-54%);
  font-family: var(--sans);
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  opacity: .22;
  pointer-events: none;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: .2rem 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed rgba(201,164,74,.38);
  align-items: baseline;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-sn {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--clay);
  letter-spacing: .14em;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
}

.contact-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .14em;
  color: var(--gray);
}

.contact-item:nth-child(2) .contact-label::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-left: .4rem;
  vertical-align: 2px;
}

.mail-address {
  font-family: var(--mono);
  font-size: clamp(1.05rem, 3.4vw, 1.6rem);
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  word-break: break-all;
  line-height: 1.4;
  border-bottom: 1px dashed transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.mail-address:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-note {
  font-family: var(--serif);
  font-size: .875rem;
  color: rgba(43,43,40,.68);
  line-height: 1.55;
}

.contact-tel {
  font-family: var(--mono);
  font-size: clamp(1.05rem, 3.4vw, 1.6rem);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--green);
  text-decoration: none;
  width: fit-content;
  border-bottom: 2px dotted var(--gold);
  transition: color .25s var(--ease);
}

.contact-tel:hover {
  color: var(--gold);
}

/* ===== 服务时间 ===== */
.contact-hours {
  background: var(--gray);
  color: var(--ivory);
  padding: 4.5rem 0 3.75rem;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(201,164,74,.35);
}

.contact-hours-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.contact-hours-main .idx {
  color: var(--gold);
}

.contact-hours-main h2 {
  color: var(--ivory);
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: .02em;
}

.contact-hours-main p {
  font-family: var(--serif);
  font-size: .9375rem;
  line-height: 1.8;
  color: rgba(245,240,230,.86);
  max-width: 28em;
}

.clock-svg {
  display: block;
  width: min(240px, 70vw);
  height: auto;
  margin: 1.5rem auto;
}

.clock-base {
  fill: rgba(11,61,46,.35);
  stroke: rgba(201,164,74,.75);
  stroke-width: 1.5;
}

.clock-dash {
  fill: none;
  stroke: rgba(245,240,230,.35);
  stroke-width: 1;
  stroke-dasharray: 2 7;
}

.clock-arc {
  fill: none;
  stroke: var(--gold);
  stroke-width: 6;
  stroke-linecap: round;
}

.clock-hand {
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
}

.clock-core {
  fill: var(--gold);
}

.clock-text-left,
.clock-text-right {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--ivory);
  letter-spacing: .04em;
}

.clock-text-left {
  text-anchor: start;
}

.clock-text-right {
  text-anchor: end;
}

.hours-visual {
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 1px solid rgba(201,164,74,.4);
  box-shadow: 0 18px 44px rgba(18,18,18,.25);
}

.hours-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 通讯地址 ===== */
.contact-address-section {
  background: var(--carbon);
  color: var(--ivory);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-address-section::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201,164,74,.18);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-address-section::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(201,164,74,.08);
  border-radius: 50%;
  transform: translateY(-50%);
}

.contact-address-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.contact-address-copy h2 {
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(1.4rem, 4.4vw, 2.3rem);
  line-height: 1.35;
  max-width: 16em;
}

.contact-address-copy p {
  font-family: var(--serif);
  font-size: .9375rem;
  color: rgba(245,240,230,.75);
  line-height: 1.8;
  max-width: 34em;
  margin-top: .35rem;
}

.address-map-texture {
  height: 220px;
  border: 1px solid rgba(201,164,74,.45);
  background-image:
    linear-gradient(rgba(201,164,74,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,74,.12) 1px, transparent 1px),
    linear-gradient(rgba(201,164,74,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,164,74,.05) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px, 12px 12px, 12px 12px;
  position: relative;
  overflow: hidden;
}

.address-map-texture::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 14px;
  height: 14px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 8px rgba(201,164,74,.15), 0 0 28px rgba(201,164,74,.5);
}

.address-map-texture::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150%;
  height: 1px;
  background: rgba(201,164,74,.25);
  transform: translate(-50%, -50%) rotate(-29deg);
}

/* ===== 自助入口 ===== */
.contact-selfserve {
  background: var(--ivory);
  color: var(--ink);
  padding: 4.25rem 0 0;
}

.contact-selfserve .contact-section-head {
  max-width: 880px;
}

.contact-selfserve .contact-btn-outline {
  border-color: rgba(11,61,46,.35);
  color: var(--green);
}

.contact-selfserve .contact-btn-outline:hover {
  border-color: var(--green);
  color: var(--gold);
}

.selfserve-links {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: 1.75rem;
}

.contact-trust {
  margin: 3.5rem auto 0;
  max-width: 780px;
  font-family: var(--serif);
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(43,43,40,.68);
  background: rgba(140,47,47,.06);
  border-left: 3px solid var(--red);
  padding: 1.1rem 1.35rem;
}

/* ===== 响应式：平板与桌面 ===== */
@media (min-width: 720px) {
  .contact-hero {
    padding-bottom: 4.25rem;
  }

  .contact-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 3rem 4rem;
  }

  .contact-hours-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
    gap: 3.5rem;
  }

  .contact-address-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    gap: 3rem;
  }

  .clock-svg {
    width: 250px;
    margin: 1.5rem 0 1.5rem auto;
  }

  .contact-brace-card {
    padding: 1.5rem 2rem 1.5rem 4.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-mail-inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 4.5rem;
    align-items: start;
  }

  .contact-section-head {
    position: sticky;
    top: 2rem;
  }

  .contact-brace-card {
    padding: 2.25rem 2.5rem 2.25rem 5rem;
  }

  .contact-item {
    padding: 1.6rem 0;
  }

  .address-map-texture {
    height: 260px;
  }
}
