:root {
  color-scheme: light;
  --red: #d7000f;
  --red-hover: #b9000d;
  --text-main: #101010;
  --text-body: #666666;
  --text-contact: #1a0404;
  --border: #dddddd;
  --page-bg: #f7f7f7;
  --container: min(1640px, calc(100vw - 280px));
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a,
a:hover,
a:focus,
a:focus-visible,
a:active,
a:visited {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  color: var(--text-main);
  background: var(--page-bg);
}

.contact-page {
  width: 100%;
  overflow: hidden;
  background: var(--page-bg);
}

.contact-hero {
  position: relative;
  height: 643px;
  overflow: visible;
  background: #f7f7f7;
  z-index: 0;
}

.contact-hero__copy {
  position: absolute;
  left: calc((100vw - var(--container)) / 2 + 3px);
  top: 127px;
  z-index: 3;
}

.contact-hero__hello {
  font-family: "Outfit", "Microsoft YaHei", Arial, sans-serif;
  font-size: 68px;
  line-height: 1.32;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 36px;
  letter-spacing: 0;
}

.contact-hero__title {
  font-size: 32px;
  line-height: 1.58;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.contact-hero__title span {
  display: block;
}

.contact-hero__title strong {
  color: var(--red);
  font-weight: 700;
}

.contact-hero__intro {
  margin-top: 33px;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: var(--text-body);
}

.contact-hero__building {
  position: absolute;
  left: 0;
  top: 2px;
  width: 100%;
  height: auto;
  z-index: 2;
}

.contact-hero__redline {
  position: absolute;
  left: calc((100vw - var(--container)) / 2);
  bottom: -2px;
  width: calc(100vw - ((100vw - var(--container)) / 2));
  height: 13px;
  background: var(--red);
  z-index: 4;
}

.contact-form-section {
  position: relative;
  min-height: 837px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.contact-form {
  position: relative;
  z-index: 1;
  width: calc(100vw - 135px);
  max-width: 1785px;
  min-height: 755px;
  margin-left: max(0px, calc((100vw - 1920px) / 2 + 135px));
  background: #fff;
  padding: 62px 0 50px 71px;
}

.contact-form::after {
  content: "";
  position: absolute;
  right: -0.5%;
  bottom: 0;
  inline-size: 14.75%;
  aspect-ratio: 263 / 312;
  background: url("/wp-content/uploads/2026/05/127.png") center / contain no-repeat;
  pointer-events: none;
}

.contact-form__group {
  position: relative;
  z-index: 2;
}

.contact-form__section-title {
  font-size: 20px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-main);
  margin: 0;
}

.contact-form__section-title span {
  color: var(--red);
}

.contact-form__radios {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-top: 17px;
}

.contact-radio {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  line-height: 42px;
  color: var(--text-main);
  letter-spacing: 1px;
}

.contact-radio__mark {
  position: relative;
  inline-size: 14px;
  block-size: 14px;
  flex: 0 0 14px;
  border: 1px solid #d7d7d7;
  border-radius: 50%;
  background: #fff;
}

.contact-radio.is-active .contact-radio__mark {
  border-color: var(--red);
}

.contact-radio.is-active .contact-radio__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--red);
}

.contact-form__group--basic {
  margin-top: 29px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(3, 462px);
  gap: 28px;
  margin-top: 28px;
}

.contact-field {
  display: block;
  margin: 0;
}

.contact-field > span {
  display: block;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 15px;
}

.contact-form__grid .contact-field > span {
  margin-bottom: 15px;
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text-main);
  font-family: inherit;
  font-size: 18px;
  line-height: 42px;
  letter-spacing: 1px;
  outline: 0;
  box-shadow: none;
}

.contact-field input {
  height: 52px;
  padding: 4px 18px;
}

.contact-field textarea {
  height: 170px;
  padding: 10px 18px;
  resize: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #d8d8d8;
  font-weight: 400;
  opacity: 1;
}

.contact-field--textarea {
  inline-size: min(1442px, calc(100vw - 478px));
  margin-top: 33px;
}

.contact-submit {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  inline-size: min(315px, 100%);
  height: 57px;
  margin: 54px 0 0 557px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: inherit;
  font-size: 20px;
  line-height: 42px;
  font-weight: 700;
  letter-spacing: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--red-hover);
  transform: translateY(-1px);
  color: #fff;
}

.contact-info {
  min-height: 1320px;
  background: var(--page-bg);
}

.contact-info__inner {
  position: relative;
  width: var(--container);
  height: 1320px;
  margin: 0 auto;
}

.contact-info__intro {
  position: absolute;
  left: 0;
  top: 111px;
  inline-size: min(470px, 100%);
}

.contact-info__badge {
  display: inline-flex;
  align-items: center;
  height: 31px;
  padding: 0 7px;
  margin: 0 0 26px;
  background: linear-gradient(90deg, #8c8c8c 0%, var(--red) 100%);
  color: #fff;
  font-size: 20px;
  line-height: 31px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-info__intro h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 2px;
  color: #333333;
}

.contact-info__address {
  margin: 35px 0 0;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 1.5px;
  color: #121010;
}

.contact-info__social {
  display: flex;
  gap: 20px;
  margin-top: 68px;
}

.contact-info__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #c9cfd1;
  border-radius: 50%;
  background: #fbfbfb;
  color: #666a6d;
  font-size: 28px;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-info__social .iconfont {
  font-size: 28px !important;
  line-height: 1;
}

.contact-info__social a:hover,
.contact-info__social a:focus-visible {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.contact-info__cards {
  position: absolute;
  left: 696px;
  top: 108px;
  display: grid;
  grid-template-columns: repeat(2, 387px);
  column-gap: 169px;
  row-gap: 66px;
}

.contact-card {
  min-height: 123px;
  padding-bottom: 25px;
  border-bottom: 1px solid #d6d6d6;
}

.contact-card h3 {
  margin: 0 0 19px;
  color: var(--red);
  font-size: 18px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.contact-card p {
  margin: 0;
  color: var(--text-contact);
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.contact-map {
  position: absolute;
  left: 0;
  top: 561px;
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  background: #e7edf3;
}

.contact-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
}

.contact-cta {
  position: relative;
  height: 454px;
  overflow: hidden;
  background: #111;
}

.contact-cta__image,
.contact-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-cta__image {
  object-fit: cover;
  object-position: center 58%;
}

.contact-cta__shade {
  background: rgba(0, 0, 0, 0.62);
}

.contact-cta__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 119px;
  text-align: center;
  color: #fff;
}

.contact-cta__copy p {
  margin: 0 0 21px;
  color: var(--red);
  font-family: "Outfit", "Microsoft YaHei", Arial, sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.contact-cta__copy h2 {
  margin: 0;
  color: #fff;
  font-size: 42px;
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: 2px;
}

.video-modal-open,
.video-modal-open body {
  overflow: hidden;
}

.shared-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.shared-video-modal.is-open {
  display: flex;
}

.shared-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.shared-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
}

.shared-video-modal__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.shared-video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 1500px) {
  :root {
    --container: calc(100vw - 120px);
  }

  .contact-hero__building {
    left: 0;
    width: 100%;
    transform: none;
  }

  .contact-form {
    width: calc(100vw - 80px);
    margin-left: 80px;
    padding-left: 56px;
  }

  .contact-form__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100vw - 260px);
  }

  .contact-field--textarea {
    width: calc(100vw - 260px);
  }

  .contact-submit {
    margin-left: calc((100vw - 260px - 315px) / 2);
  }

  .contact-info__cards {
    left: 42%;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    column-gap: 56px;
    width: 58%;
  }

  .contact-map {
    width: 100%;
  }
}

@media (max-width: 1350px) {
  .contact-info {
    min-height: 1380px;
  }

  .contact-info__inner {
    height: 1380px;
  }

  .contact-info__intro {
    top: 92px;
    inline-size: 100%;
  }

  .contact-info__cards {
    left: 0;
    top: 360px;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 52px;
  }

  .contact-card p {
    font-size: 18px;
    line-height: 30px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .contact-map {
    top: 760px;
  }
}

@media (max-width: 1024px) {
  :root {
    --container: calc(100vw - 40px);
  }

  .contact-hero {
    height: auto;
    min-height: 860px;
  }

  .contact-hero__copy {
    left: 20px;
    top: 72px;
  }

  .contact-hero__hello {
    font-size: 54px;
    margin-bottom: 30px;
  }

  .contact-hero__title {
    font-size: 28px;
  }

  .contact-hero__building {
    top: 250px;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
  }

  .contact-hero__redline {
    left: 20px;
    width: calc(100vw - 40px);
    bottom: 0;
  }

  .contact-form {
    width: calc(100vw - 40px);
    min-height: auto;
    margin: 0 auto;
    padding: 52px 20px 70px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
  }

  .contact-field--textarea {
    width: 100%;
  }

  .contact-submit {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form::after {
    display: none;
  }

  .contact-info {
    min-height: auto;
    padding: 70px 0 90px;
  }

  .contact-info__inner {
    height: auto;
  }

  .contact-info__intro,
  .contact-info__cards,
  .contact-map {
    position: static;
  }

  .contact-info__cards {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .contact-card p {
    white-space: normal;
  }

  .contact-map {
    width: 100%;
    height: 460px;
    margin-top: 70px;
  }

  .contact-cta__copy h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .contact-submit {
    inline-size: 100%;
    max-inline-size: none;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .contact-hero {
    min-height: 710px;
  }

  .contact-hero__copy {
    left: 18px;
    top: 42px;
    max-width: calc(100vw - 36px);
  }

  .contact-hero__hello {
    font-size: 44px;
    margin-bottom: 24px;
  }

  .contact-hero__title {
    font-size: 23px;
    line-height: 1.5;
  }

  .contact-hero__intro {
    margin-top: 22px;
    font-size: 14px;
    line-height: 26px;
  }

  .contact-hero__building {
    top: 280px;
    left: 0;
    width: 100%;
    height: auto;
    transform: none;
  }

  .contact-hero__redline {
    left: 14px;
    width: calc(100vw - 28px);
  }

  .contact-form {
    width: calc(100vw - 28px);
    padding: 38px 20px 56px;
  }

  .contact-form-section {
    min-height: auto;
    padding-bottom: 0;
  }

  .contact-form__radios {
    gap: 28px;
    flex-wrap: wrap;
  }

  .contact-radio {
    font-size: 17px;
  }

  .contact-field input {
    height: 48px;
  }

  .contact-field textarea {
    height: 150px;
  }

  .contact-submit {
    inline-size: min(240px, 100%);
    height: 52px;
    font-size: 18px;
  }

  .contact-submit {
    inline-size: 100%;
    max-inline-size: none;
  }

  .contact-info {
    padding: 52px 0 64px;
  }

  .contact-info__intro h2,
  .contact-cta__copy h2 {
    font-size: 28px;
  }

  .contact-info__address,
  .contact-card p {
    font-size: 18px;
    line-height: 30px;
  }

  .contact-info__social {
    margin-top: 40px;
  }

  .contact-map {
    height: 330px;
  }

  .contact-cta {
    height: 360px;
  }

  .contact-cta__copy {
    padding: 92px 18px 0;
  }
}

@media (max-width: 480px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .contact-hero {
    min-height: 520px;
  }

  .contact-hero__copy {
    left: 14px;
    top: 34px;
    max-width: calc(100vw - 28px);
  }

  .contact-hero__hello {
    font-size: 38px;
    margin-bottom: 18px;
  }

  .contact-hero__title {
    font-size: 21px;
    line-height: 1.44;
    letter-spacing: 0.3px;
  }

  .contact-hero__intro {
    margin-top: 18px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .contact-hero__building {
    top: 220px;
  }

  .contact-hero__redline {
    left: 12px;
    width: calc(100vw - 24px);
    height: 10px;
  }

  .contact-form {
    width: calc(100vw - 24px);
    padding: 32px 16px 44px;
  }

  .contact-form__section-title {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.4px;
  }

  .contact-form__radios {
    gap: 16px 24px;
    margin-top: 12px;
  }

  .contact-radio {
    gap: 10px;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.3px;
  }

  .contact-form__group--basic {
    margin-top: 24px;
  }

  .contact-form__grid {
    gap: 18px;
    margin-top: 20px;
  }

  .contact-field > span {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.2px;
    border-radius: 6px;
  }

  .contact-field input {
    height: 46px;
    padding: 4px 14px;
  }

  .contact-field textarea {
    height: 132px;
    padding: 9px 14px;
  }

  .contact-field--textarea {
    margin-top: 24px;
  }

  .contact-submit {
    inline-size: 100%;
    height: 48px;
    margin-top: 36px;
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 5px;
  }

  .contact-info {
    padding: 44px 0 52px;
  }

  .contact-info__badge {
    height: 28px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.4px;
  }

  .contact-info__intro h2,
  .contact-cta__copy h2 {
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0.5px;
  }

  .contact-info__address,
  .contact-card p {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.2px;
  }

  .contact-info__address {
    margin-top: 24px;
  }

  .contact-info__social {
    gap: 14px;
    margin-top: 32px;
  }

  .contact-info__social a {
    inline-size: 42px;
    block-size: 42px;
  }

  .contact-info__social .iconfont {
    font-size: 24px !important;
  }

  .contact-info__cards {
    row-gap: 34px;
    margin-top: 42px;
  }

  .contact-card {
    min-height: auto;
    padding-bottom: 20px;
  }

  .contact-card h3 {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 28px;
  }

  .contact-map {
    height: 260px;
    margin-top: 48px;
    border-radius: 12px;
  }

  .contact-cta {
    height: 286px;
  }

  .contact-cta__copy {
    padding: 58px 16px 0;
  }

  .contact-cta__copy p {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 390px) {
  :root {
    --container: calc(100vw - 20px);
  }

  .contact-hero {
    min-height: 490px;
  }

  .contact-hero__copy {
    left: 12px;
    top: 28px;
    max-width: calc(100vw - 24px);
  }

  .contact-hero__hello {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .contact-hero__title {
    font-size: 19px;
    line-height: 1.42;
  }

  .contact-hero__intro {
    margin-top: 14px;
    font-size: 13px;
    line-height: 22px;
  }

  .contact-hero__building {
    top: 210px;
  }

  .contact-hero__redline {
    left: 10px;
    width: calc(100vw - 20px);
  }

  .contact-form {
    width: calc(100vw - 20px);
    padding: 28px 14px 38px;
  }

  .contact-form__radios {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-radio {
    line-height: 30px;
  }

  .contact-form__grid {
    gap: 16px;
  }

  .contact-field--textarea {
    margin-top: 20px;
  }

  .contact-submit {
    height: 46px;
    margin-top: 30px;
    letter-spacing: 4px;
  }

  .contact-info {
    padding: 38px 0 46px;
  }

  .contact-info__intro h2,
  .contact-cta__copy h2 {
    font-size: 21px;
  }

  .contact-info__social {
    gap: 10px;
  }

  .contact-info__social a {
    inline-size: 40px;
    block-size: 40px;
  }

  .contact-info__cards {
    row-gap: 28px;
    margin-top: 36px;
  }

  .contact-map {
    height: 230px;
    margin-top: 40px;
  }

  .contact-cta {
    height: 252px;
  }

  .contact-cta__copy {
    padding-top: 46px;
  }
}
