.contact-section {
  padding: 140px 0;
  color: #fff;
  text-align: center;
}

.contact-section__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-section__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 0 auto 30px;
}

.contact-section__heading-en {
  font-family: "Caslon", serif;
  font-size: 60px;
  letter-spacing: 0.04em;
  line-height: 0.95em;
  font-weight: 500;
}

.contact-section__heading-ja {
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 16px;
  letter-spacing: 0;
  position: relative;
  padding-left: 25px;
}

.contact-section__heading-ja::before {
  content: "";
  width: 15px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact-section__lead {
  font-size: 18px;
  line-height: 2;
  margin: 0;
}

.contact-section__actions {
  background: #fff;
  color: var(--vk-color-custom-4);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.contact-section__call {
  padding: 24px 36px;
  position: relative;
}

.contact-section__call a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  text-align: center;
  justify-content: center;
}

.contact-section__call::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  right: 0;
  width: 1px;
  background: rgba(0, 0, 0, 1);
}

.contact-section__call-icon {
  background: url(../../img/icon-tel.svg) center no-repeat;
  background-size: contain;
  display: inline-block;
  width: 40px;
  height: 40px;
}

.contact-section__call-number {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-section__call-hours {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.08em;
}

.contact-section__link {
  padding: 24px 36px;
}

@media (max-width: 767.98px) {
  .contact-section__link {
    padding: 24px 25px;
  }
}

.contact-section__link a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--vk-color-custom-4);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.12em;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-section__link a:hover,
.contact-section__link a:focus-visible {
  background: #343a36;
}

.contact-section__link-icon {
  display: inline-block;
  background: url(../../img/icon-mail.svg) center no-repeat;
  background-size: contain;
  width: 36px;
  height: 24px;
}

@media (max-width: 1199.98px) {
  .contact-section__call-number {
    font-size: 40px;
  }
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 120px 0;
  }

  .contact-section__heading-en {
    font-size: 56px;
  }

  .contact-section__actions {
    grid-template-columns: 1fr;
  }

  .contact-section__call::after {
    top: auto;
    bottom: 0;
    right: 15px;
    left: 15px;
    width: auto;
    height: 1px;
    background: rgba(0, 0, 0, 1);
  }

  .contact-section__call a,
  .contact-section__link a {
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 15px;
  }

  .contact-section__call-number {
    font-size: 28px;
  }
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 90px 0;
  }

  .contact-section__inner {
    gap: 48px;
  }

  .contact-section__heading-en {
    font-size: 35px;
  }

  .contact-section__lead {
    font-size: 16px;
  }

  .contact-section__call-number {
    font-size: 24px;
    letter-spacing: 0.1em;
  }

  .contact-section__call-icon {
    width: 30px;
    height: 30px;
  }

  .contact-section__link-icon {
    width: 30px;
  }

  .contact-section__call a {
    padding: 0;
  }

  .contact-section__link a {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}

section.contact-hero {
  padding-bottom: 80px;
  text-align: left;
  color: #1d201f;
}

.contact-hero__title {
  margin: 0 0 32px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  section.contact-hero {
    padding-bottom: 60px;
  }

  .contact-hero__title {
    font-size: 22px;
    line-height: 1.5;
  }
}