.page-contact {
  --page-gold-line: rgba(212, 175, 55, 0.35);
  --page-card-bg: rgba(18, 18, 26, 0.78);
  --page-text-soft: rgba(245, 240, 225, 0.72);
  --page-text-dim: rgba(245, 240, 225, 0.5);
  color: var(--color-rice);
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.12), transparent 26%),
    radial-gradient(circle at 10% 80%, rgba(230, 0, 18, 0.16), transparent 32%),
    linear-gradient(178deg, var(--color-deep-red) 0%, var(--color-night) 46%, var(--color-night-soft) 100%);
  position: relative;
  overflow-x: hidden;
}

.contact-hero {
  padding: 2.25rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(212, 175, 55, 0.14));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.contact-hero .breadcrumb {
  margin-bottom: 2.6rem;
  position: relative;
  z-index: 2;
}
.contact-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.contact-hero__text {
  max-width: 880px;
}
.contact-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.contact-hero__kicker::after {
  content: "";
  width: 2.6rem;
  height: 2px;
  background: var(--color-china-red);
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.16;
  margin: 0 0 1.35rem;
  color: var(--color-rice);
}
.contact-hero__text > p {
  color: var(--page-text-soft);
  font-size: 1.04rem;
  line-height: 1.85;
  max-width: 640px;
  margin: 0;
}
.contact-hero__deco {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.contact-hero__line {
  width: 4.5rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.8), transparent);
}
.contact-hero__num {
  font-family: var(--font-num);
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.4);
}
@media (min-width: 820px) {
  .contact-hero {
    padding-top: 3rem;
  }
  .contact-hero__deco {
    display: flex;
  }
  .contact-hero__text > p {
    font-size: 1.12rem;
  }
}

.page-contact .section-head {
  margin-bottom: 2.5rem;
}
.page-contact .section-head h2 {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-rice);
  margin: 0.35rem 0 0.6rem;
}
.page-contact .section-head p {
  color: var(--page-text-dim);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
.page-contact .section-number {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.5rem;
}

.contact-channels {
  padding: 4rem 0 1rem;
}
.channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .channel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.channel-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-gold-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  border-radius: var(--radius-pill);
  opacity: 0.75;
}
.channel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: var(--shadow-gold);
}
.channel-card__icon {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.22), rgba(212, 175, 55, 0.14));
  border: 1px solid var(--page-gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.channel-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}
.channel-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.5rem;
}
.channel-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-rice);
  margin: 0;
}
.channel-card__header .tag {
  margin: 0;
  flex-shrink: 0;
}
.channel-card__role {
  color: var(--page-text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 0.75rem;
  flex: 1;
}
.channel-card__value {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-rice);
  text-decoration: none;
  margin: 0.4rem 0 0.7rem;
  word-break: break-word;
}
a.channel-card__value {
  color: var(--color-gold);
  border-bottom: 1px dashed rgba(212, 175, 55, 0.45);
  padding-bottom: 0.1rem;
}
a.channel-card__value:hover {
  color: var(--color-gold-light);
  border-bottom-color: var(--color-gold);
}
.channel-card__note {
  color: rgba(245, 240, 225, 0.45);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.channel-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(230, 0, 18, 0.18), rgba(212, 175, 55, 0.08));
  border: 1px solid var(--page-gold-line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.channel-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.channel-banner__text p {
  color: var(--page-text-soft);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
.channel-banner__text p + p {
  margin-top: 0.6rem;
}
@media (min-width: 700px) {
  .channel-banner {
    grid-template-columns: 240px 1fr;
    align-items: center;
    padding: 1.5rem 1.75rem;
  }
}

.contact-location {
  padding: 4.5rem 0 1rem;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 960px) {
  .location-grid {
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
  }
}
.location-map {
  position: relative;
  border: 1px solid var(--page-gold-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-night);
}
.location-map img {
  width: 100%;
  height: auto;
  display: block;
}
.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.location-info {
  background: var(--page-card-bg);
  border: 1px solid var(--page-gold-line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}
.location-info__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 0, 18, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.34);
  margin-bottom: 1.25rem;
}
.location-info__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.location-info h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-gold);
  margin: 0 0 1rem;
}
.location-address {
  font-family: var(--font-num);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--color-rice);
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--color-gold);
  padding: 0.75rem 1rem;
  margin: 0 0 1rem;
}
.location-info p {
  color: var(--page-text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0 0 0.8rem;
}

.contact-response {
  padding: 4.5rem 0 1rem;
}
.response-panel {
  background: linear-gradient(135deg, rgba(123, 12, 27, 0.78), rgba(18, 18, 26, 0.82));
  border: 1px solid var(--page-gold-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 860px) {
  .response-panel {
    grid-template-columns: 1fr 1.4fr;
    align-items: center;
    padding: 2.5rem 3rem;
  }
}
.response-panel .section-head {
  margin-bottom: 0;
}
.response-body {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 1.25rem;
}
@media (min-width: 860px) {
  .response-body {
    border-top: 0;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 0;
    padding-left: 2rem;
  }
}
.response-body > p {
  color: var(--page-text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 1.25rem;
}
.response-body a {
  color: var(--color-gold-light);
  font-family: var(--font-num);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.4);
  text-underline-offset: 4px;
}
.response-body a:hover {
  color: var(--color-gold);
}
.response-timeline {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.response-timeline li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--page-text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}
.response-timeline li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}
.time-capsule {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--color-gold-light);
  white-space: nowrap;
}

.contact-send {
  padding: 4.5rem 0 1rem;
}
.send-card {
  background: var(--page-card-bg);
  border: 1px solid var(--page-gold-line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.75rem;
}
@media (min-width: 700px) {
  .send-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
  }
}
.send-card__text {
  flex: 1;
}
.send-card__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--color-rice);
  margin: 0.35rem 0 0.7rem;
}
.send-card__text p {
  color: var(--page-text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 0;
}
.page-contact .send-card .btn-primary {
  background: linear-gradient(135deg, var(--color-china-red) 0%, var(--color-deep-red) 100%);
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-rice);
  box-shadow: 0 10px 30px rgba(230, 0, 18, 0.28);
  text-align: center;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-contact .send-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 0, 18, 0.35);
}

.contact-links {
  padding: 4rem 0 3rem;
}
.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) {
  .link-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.link-tile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--page-card-bg);
  border: 1px solid rgba(245, 240, 225, 0.12);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  color: var(--color-rice);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.link-tile:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.06);
}
.link-tile__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.link-tile__desc {
  color: var(--page-text-dim);
  font-size: 0.85rem;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-tile__arrow {
  color: var(--color-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}
