.contact > p:not(.eyebrow) {
  max-width: 620px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  max-width: 980px;
  margin: 46px auto 0;
  overflow: hidden;
  border: 1px solid rgba(11, 28, 44, .12);
  background: #fff;
  box-shadow: 0 26px 70px rgba(11, 28, 44, .10);
  text-align: left;
}

.contact-direct {
  padding: 42px 36px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(71, 137, 187, .22), transparent 34%),
    linear-gradient(145deg, #0b2941, #071b2c);
}

.contact-kicker {
  margin: 0 0 28px;
  color: #d8ac55;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .055);
  transition: transform .2s, border-color .2s, background .2s;
}

.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 172, 85, .45);
  background: rgba(255, 255, 255, .09);
}

.contact-channel > span:last-child,
.contact-channel small,
.contact-channel strong {
  display: block;
}

.contact-channel small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .52);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-channel strong {
  font-size: 13px;
}

.contact-icon {
  display: grid;
  flex: 0 0 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(216, 172, 85, .42);
  border-radius: 50%;
  color: #d8ac55;
  font-size: 11px;
  font-weight: 800;
}

.contact-hours {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  line-height: 1.7;
}

.private-contact-form {
  padding: 40px 42px;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.form-heading span {
  color: #0b1c2c;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  font-weight: 600;
}

.form-heading small {
  color: #6d7a84;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.private-contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}

.private-contact-form label > span {
  color: #40505c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.private-contact-form input,
.private-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(11, 28, 44, .16);
  border-radius: 0;
  outline: none;
  background: #fbfaf7;
  color: #0b1c2c;
  font: 13px/1.6 "Manrope", Arial, sans-serif;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.private-contact-form input {
  height: 46px;
  padding: 0 14px;
}

.private-contact-form textarea {
  min-height: 118px;
  padding: 12px 14px;
  resize: vertical;
}

.private-contact-form input:focus,
.private-contact-form textarea:focus {
  border-color: #bb8f39;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216, 172, 85, .12);
}

.contact-form-status {
  min-height: 18px;
  margin: -4px 0 8px;
  color: #66757f;
  font-size: 11px;
}

.contact-form-status.error {
  color: #a32d2d;
}

.contact-form-status.success {
  color: #087a55;
  font-weight: 700;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.contact-form-actions {
  display: flex;
  gap: 10px;
}

.contact-submit {
  min-height: 46px;
  border: 0;
  padding: 0 17px;
  font: 800 10px "Manrope", Arial, sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .2s, background .2s;
}

.contact-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d8ac55;
  color: #102639;
}

.contact-submit:hover:not(:disabled) {
  transform: translateY(-2px);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: .68;
}

.privacy-note {
  margin: 17px 0 0;
  color: #77838c;
  font-size: 9px;
  line-height: 1.6;
}

.privacy-note span {
  margin-right: 5px;
  color: #38a674;
}

@media (max-width: 780px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-direct,
  .private-contact-form {
    padding: 32px 26px;
  }
}

@media (max-width: 520px) {
  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form-actions {
    flex-direction: column;
  }

  .contact-submit {
    width: 100%;
  }
}
