.contact-page {
  background: var(--paper-bright);
}

.contact-page .site-nav .is-active {
  color: var(--signal);
}

.contact-hero {
  min-height: calc(100svh - 124px);
  background: var(--ink);
  color: var(--on-primary);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.contact-hero__copy {
  padding: clamp(80px, 11vw, 160px) clamp(44px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero .eyebrow {
  color: var(--signal);
}

.contact-hero h1 {
  margin: 22px 0 32px;
  color: var(--on-primary);
  font-size: clamp(84px, 10vw, 150px);
  font-weight: 400;
  line-height: 0.76;
  text-transform: uppercase;
}

.contact-hero h1 strong,
.contact-hero h1 em {
  display: block;
}

.contact-hero h1 strong {
  font-family: var(--name-font);
  font-weight: 700;
}

.contact-hero h1 em {
  margin: 18px 0 0 7px;
  color: var(--signal);
  font-family: var(--display);
  font-size: 0.56em;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
}

.contact-hero__copy > p:last-child {
  max-width: 570px;
  margin: 0;
  color: var(--on-primary-muted);
  font-size: 19px;
  line-height: 1.7;
}

.contact-hero__visual {
  min-height: 100%;
  margin: 0;
  background: var(--paper-deep);
  overflow: hidden;
}

.contact-hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% 46%;
}

.contact-options {
  padding: 120px 0 140px;
  background: var(--paper-bright);
}

.contact-options__inner {
  width: min(calc(100% - 72px), 1160px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-card {
  min-height: 560px;
  min-width: 0;
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-card--partnerships {
  background: var(--paper);
  color: var(--ink);
}

.contact-card--questions {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--on-primary);
}

.contact-card .eyebrow {
  color: var(--cobalt);
}

.contact-card--questions .eyebrow {
  color: var(--ink);
}

.contact-card h2 {
  width: 100%;
  max-width: 500px;
  margin: 24px 0 30px;
  color: inherit;
  font-family: var(--name-font);
  font-size: clamp(36px, 3.3vw, 48px);
  line-height: 1.04;
  text-transform: uppercase;
}

.contact-card > p:not(.eyebrow) {
  max-width: 450px;
  margin: 0 0 30px;
  color: inherit;
  font-size: 17px;
  line-height: 1.7;
}

.contact-link {
  min-height: 46px;
  margin-top: auto;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-link:hover {
  background: var(--ink);
  color: var(--on-primary);
  transform: translateY(-2px);
}

.contact-link--light {
  margin-top: 0;
  border-color: var(--on-primary);
  color: var(--on-primary);
}

.contact-link--light:hover {
  background: var(--on-primary);
  color: var(--ink);
}

.contact-card__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 900px) {
  .contact-hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .contact-hero__copy {
    padding-inline: 36px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contact-hero__copy {
    min-height: 530px;
    padding: 82px 20px 72px;
  }

  .contact-hero h1 {
    margin-top: 24px;
    font-size: 76px;
  }

  .contact-hero__copy > p:last-child {
    font-size: 16px;
  }

  .contact-hero__visual {
    min-height: 600px;
  }

  .contact-hero__visual img {
    object-position: 52% 50%;
  }

  .contact-options {
    padding: 72px 0 88px;
  }

  .contact-options__inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    min-height: 500px;
    padding: 34px 24px;
  }

  .contact-card h2 {
    font-size: clamp(28px, 8.2vw, 32px);
  }

  .contact-card > p:not(.eyebrow) {
    font-size: 15px;
  }
}
