.site-nav .is-current {
  color: var(--mint);
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #101413;
}

.contact-page-grid-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 84%);
}

.contact-page-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 80px;
  align-items: end;
  padding-top: 150px;
  padding-bottom: 74px;
}

.contact-page-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.2vw, 82px);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.contact-page-hero-shell > div:first-child > p:last-child {
  max-width: 720px;
  margin-top: 30px;
  color: var(--muted-inverse);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.85;
}

.contact-page-mark {
  display: grid;
  justify-items: end;
  color: rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid var(--line-inverse);
  padding-bottom: 10px;
  font-family: "Arial Narrow", "DIN Condensed", sans-serif;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}

.contact-page-mark span {
  font-size: 52px;
}

.contact-page-mark strong {
  color: var(--signal);
  font-size: 15px;
  letter-spacing: 0.25em;
}

.contact-page-main {
  padding: 118px 0;
  background:
    linear-gradient(rgba(16, 20, 19, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 20, 19, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.contact-page-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.sales-profile {
  padding: 48px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sales-profile h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.sales-role {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.sales-methods {
  display: grid;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.sales-methods a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 6px 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition:
    color 180ms ease,
    padding 180ms ease;
}

.sales-methods a:hover {
  padding-left: 8px;
  color: var(--signal-dark);
}

.sales-methods span {
  grid-row: 1 / 3;
  padding-top: 3px;
  color: var(--signal-dark);
  font-size: 13px;
  font-weight: 800;
}

.sales-methods strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.8vw, 22px);
}

.sales-methods small {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 860px) {
  .contact-page-hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 142px;
    padding-bottom: 72px;
  }

  .contact-page-mark {
    justify-items: start;
  }

  .contact-page-main {
    padding: 88px 0;
  }

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

@media (max-width: 600px) {
  .contact-page-hero-shell {
    padding-top: 122px;
    padding-bottom: 58px;
  }

  .contact-page-hero h1 {
    font-size: clamp(40px, 11.6vw, 52px);
  }

  .contact-page-mark span {
    font-size: 42px;
  }

  .sales-profile {
    padding: 28px 22px;
  }

  .sales-profile h2 {
    font-size: clamp(32px, 9.4vw, 43px);
  }

  .sales-methods a {
    grid-template-columns: 54px 1fr;
  }

}
