.page-contact {
  overflow-x: hidden;
  background: var(--paper);
}

/* ========== 首屏 Hero ========== */
.contact-hero {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.contact-hero__slash {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 230px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 18% 100%);
  z-index: 1;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 36px;
  padding-bottom: 76px;
}

.contact-hero .breadcrumbs {
  margin-bottom: 40px;
}

.contact-hero__content {
  max-width: 620px;
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 24px;
}

.contact-kicker__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 0;
}

.contact-hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 200;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-hero__lede {
  margin: 0 0 32px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-main);
  max-width: 460px;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero__ticket {
  display: none;
}

/* ========== 通用分节 ========== */
.contact-section {
  padding: 84px 0;
}

/* ========== 客服渠道 ========== */
.contact-channels {
  background: var(--paper);
  padding-top: 72px;
}

.contact-channels__head {
  max-width: 640px;
  margin-bottom: 44px;
}

.contact-channels__head .section-title,
.contact-business .section-title {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-channels__head .section-lede {
  font-size: 0.98rem;
  line-height: 1.85;
  color: var(--text-main);
}

.contact-cards {
  display: grid;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 24px;
  background: var(--white);
  border-top: 6px solid var(--ink);
  box-shadow: 0 1px 0 0 var(--gray-light), 0 3px 12px rgba(17, 17, 17, 0.05);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 12px 0 var(--ink);
  border-top-color: var(--orange);
}

.contact-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--orange);
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.contact-card:hover .contact-card__icon {
  background: var(--ink);
  color: var(--orange);
}

.contact-card__body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.contact-card__value {
  font-size: clamp(1.05rem, 3.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-card__note {
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--gray-mid);
}

.contact-card__arrow {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--ink);
  transition: transform 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.contact-card:hover .contact-card__arrow {
  transform: translateX(4px);
  color: var(--orange);
}

.contact-card--phone {
  background: var(--blue);
  border-top-color: var(--orange);
  box-shadow: 0 1px 0 0 var(--blue), 0 3px 12px rgba(10, 37, 64, 0.18);
  color: var(--white);
}

.contact-card--phone:hover {
  box-shadow: 10px 12px 0 var(--orange);
  border-top-color: var(--orange);
}

.contact-card--phone .contact-card__label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-card--phone .contact-card__value,
.contact-card--phone .contact-card__note {
  color: var(--white);
}

.contact-card--phone .contact-card__note {
  color: rgba(255, 255, 255, 0.7);
}

.contact-card--phone .contact-card__icon {
  background: var(--orange);
  color: var(--white);
}

.contact-card--phone:hover .contact-card__icon {
  background: var(--white);
  color: var(--orange);
}

.contact-card--phone .contact-card__arrow {
  color: var(--orange);
}

.contact-card--phone:hover .contact-card__arrow {
  color: var(--white);
}

.contact-channels__footnote {
  margin-top: 36px;
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.8;
}

.contact-channels__footnote a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-channels__footnote a:hover {
  border-bottom-color: var(--orange);
}

/* ========== 服务时间 ========== */
.contact-hours {
  background: var(--blue);
  color: var(--white);
  padding: 84px 0;
  overflow: hidden;
}

.contact-hours__panel {
  position: relative;
  display: grid;
  gap: 40px;
}

.contact-hours__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--orange);
}

.contact-hours__panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  bottom: -70px;
  border: 18px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.contact-hours__meta {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.section-label--light {
  color: rgba(255, 255, 255, 0.65);
}

.section-label--light::before {
  background-color: var(--orange);
}

.contact-hours__title {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--white);
}

.contact-hours__main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-content: center;
  max-width: 560px;
}

.contact-hours__clock {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 200;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

.contact-hours__clock strong {
  display: block;
  font-size: 1.35em;
  font-weight: 600;
  line-height: 1.1;
  color: var(--orange);
}

.contact-hours__desc {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

.contact-hours__list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-hours__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
}

.contact-hours__list li span {
  color: rgba(255, 255, 255, 0.62);
}

.contact-hours__list li strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.94rem;
}

/* ========== 商务合作 ========== */
.contact-business {
  background: var(--paper);
  position: relative;
}

.contact-business::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
}

.contact-business__inner {
  display: grid;
  gap: 56px;
  padding-left: clamp(0px, 3vw, 28px);
}

.contact-business__lead {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  max-width: 540px;
}

.contact-business__text {
  margin: 0 0 30px;
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--text-main);
  max-width: 540px;
}

.contact-business__text a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-business__text a:hover {
  border-bottom-color: var(--orange);
}

.contact-business__stats {
  display: grid;
  gap: 34px;
  align-content: center;
  padding-left: 24px;
  border-left: 4px solid var(--orange);
}

.contact-stat {
  display: grid;
  gap: 6px;
}

.contact-stat__num {
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-stat__label {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ========== 来访指引 ========== */
.contact-visit {
  background: var(--white);
  padding-bottom: 96px;
}

.contact-visit__grid {
  display: grid;
  gap: 48px;
}

.contact-visit__media {
  position: relative;
  align-self: stretch;
}

.contact-visit__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--gray-light);
  background: var(--paper);
}

.contact-visit__flag {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 16px;
}

.contact-visit__content .section-title {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.contact-visit__address {
  font-style: normal;
  font-size: clamp(1.15rem, 3.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin: 18px 0 12px;
}

.contact-visit__note {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--text-main);
  margin: 0 0 28px;
}

.contact-visit__routes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-visit__route {
  display: flex;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-light);
}

.contact-visit__route-tag {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 0;
  align-self: flex-start;
}

.contact-visit__route p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text-main);
}

.contact-visit__links {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 2;
}

.contact-visit__links a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.contact-visit__links a:hover {
  border-bottom-color: var(--orange);
}

/* ========== 响应式增强 ========== */
@media (min-width: 768px) {
  .contact-hero__slash {
    width: 54%;
    height: 100%;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  }

  .contact-hero__inner {
    padding-top: 48px;
    padding-bottom: 88px;
  }

  .contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    min-height: 520px;
  }

  .contact-section {
    padding: 96px 0;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .contact-card {
    padding: 36px 28px;
  }

  .contact-card__value {
    font-size: 1.4rem;
  }

  .contact-hours {
    padding: 96px 0;
  }

  .contact-hours__panel {
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    padding: 0 clamp(24px, 5vw, 64px);
  }

  .contact-hours__panel::before {
    width: 100%;
  }

  .contact-business__inner {
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: end;
    padding-left: clamp(0px, 4vw, 40px);
  }

  .contact-visit {
    padding-top: 96px;
  }

  .contact-visit__grid {
    grid-template-columns: 2fr 3fr;
    gap: 56px;
    align-items: center;
  }

  .contact-visit__flag {
    padding: 12px 18px;
  }
}

@media (min-width: 960px) {
  .contact-hero__ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    justify-self: end;
    width: 190px;
    height: 270px;
    background: var(--white);
    border: 2px solid var(--ink);
    transform: rotate(6deg);
    box-shadow: 10px 14px 0 var(--ink);
  }

  .contact-hero__ticket-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 1px solid var(--ink);
    background: var(--paper);
    text-align: center;
  }

  .contact-hero__ticket-sport {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--gray-mid);
  }

  .contact-hero__ticket-game {
    font-size: 74px;
    font-weight: 200;
    line-height: 1;
    color: var(--orange);
  }

  .contact-hero__ticket-score {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--ink);
  }
}
