.contact-page .contact-simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(44px, 6vw, 112px);
  align-items: center;
  min-height: 0;
  padding: clamp(128px, 12vw, 178px) var(--page-pad) clamp(64px, 7vw, 104px);
  background: var(--paper);
}

.contact-simple-copy h1 {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(52px, 5.6vw, 82px);
  line-height: 0.96;
}

.contact-simple-copy h1 em {
  color: var(--gold);
}

.contact-simple-copy > p:last-child {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(8, 47, 57, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.contact-page .contact-simple-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(8, 47, 57, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  box-shadow: 0 22px 60px rgba(8, 47, 57, 0.1);
}

.contact-page .contact-simple-form > label {
  min-width: 0;
  padding: 13px 15px 10px;
  border: 1px solid rgba(8, 47, 57, 0.16);
  border-radius: 6px;
  background: var(--white);
}

.contact-page .contact-simple-form > label > span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-page .contact-simple-form input,
.contact-page .contact-simple-form select,
.contact-page .contact-simple-form textarea {
  width: 100%;
  padding: 7px 0 3px;
  border: 0;
  border-bottom: 1px solid rgba(8, 47, 57, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.contact-page .contact-simple-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-page .contact-simple-form .full-field,
.contact-page .contact-simple-form .form-submit,
.contact-page .contact-simple-form .form-note,
.contact-page .contact-simple-form .form-consent {
  grid-column: 1 / -1;
}

.contact-page .contact-simple-form .form-submit {
  min-height: 58px;
  margin-top: 2px;
  font-size: 15px;
}

.contact-page .contact-simple-form .form-note {
  margin: -2px 0 0;
  text-align: center;
}

.contact-direct-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 var(--page-pad) clamp(64px, 8vw, 112px);
  padding: 27px 0;
  border-top: 1px solid rgba(8, 47, 57, 0.2);
  border-bottom: 1px solid rgba(8, 47, 57, 0.2);
}

.contact-direct-bar > div:not(:first-child) {
  border-left: 1px solid rgba(8, 47, 57, 0.16);
  padding-left: clamp(22px, 3vw, 54px);
}

.contact-direct-bar span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-direct-bar a,
.contact-direct-bar p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.contact-direct-bar a:hover {
  color: var(--teal);
}

@media (max-width: 900px) {
  .contact-page .contact-simple-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 116px;
  }

  .contact-simple-copy h1 {
    font-size: clamp(48px, 11vw, 72px);
  }
}

@media (max-width: 640px) {
  .contact-page .contact-simple-hero {
    gap: 32px;
    padding-bottom: 46px;
  }

  .contact-page .contact-simple-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .contact-page .contact-simple-form .full-field,
  .contact-page .contact-simple-form .form-submit,
  .contact-page .contact-simple-form .form-note,
  .contact-page .contact-simple-form .form-consent {
    grid-column: auto;
  }

  .contact-direct-bar {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 23px 0;
  }

  .contact-direct-bar > div:not(:first-child) {
    border-left: 0;
    border-top: 1px solid rgba(8, 47, 57, 0.16);
    padding: 22px 0 0;
  }
}
