#contact {
  min-height: 100%;
  background: #f4f4f4;
  transform: none;
}

.contact-page-inner {
  min-height: 100%;
  padding: 56px 8vw 96px;
  display: grid;
  align-content: start;
}

.contact-block {
  max-width: 620px;
  margin: 0 auto;
  width: 100%;
}

.contact-label {
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #828286;
  text-transform: uppercase;
  opacity: 0.6;
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-title {
  font-size: var(--page-title-size);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #1D1D1F;
  margin: 0 0 28px 0;
}

.contact-intro {
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.68);
  margin: 0;
}

.contact-links {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}

.contact-links a,
.contact-links a:visited,
.contact-links a:active {
  color: #1D1D1F;
  text-decoration: none;
}

.contact-links a {
  position: relative;
  display: block;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.contact-links a:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-links a:hover {
  color: #000;
  padding-left: 10px;
  background-color: rgba(0, 0, 0, 0.025);
  border-top-color: rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

@media (max-width: 640px) {
  .contact-page-inner {
    min-height: calc(100svh - 120px);
    padding: 40px 24px 72px;
    align-content: start;
  }

  .contact-block {
    max-width: 100%;
    margin: 0;
  }

  .contact-title {
    max-width: 100%;
    font-size: clamp(32px, 8.6vw, 42px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    margin-bottom: 24px;
  }

  .contact-intro {
    max-width: 34ch;
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-links {
    margin-top: 40px;
  }

  .contact-links a {
    padding: 18px 0;
    font-size: 17px;
  }
}