.contact {
  text-align: left;
}

.review-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.review-copy > p:not(.eyebrow) {
  color: #aab5ba;
  max-width: 500px;
}

.direct-contact {
  border-top: 1px solid #39505c;
  margin-top: 38px;
  padding-top: 24px;
}

.direct-contact span,
.direct-contact small {
  display: block;
  color: #82939b;
  font-size: 12px;
}

.direct-contact a {
  display: inline-block;
  color: var(--gold);
  font: 600 18px Manrope, sans-serif;
  margin: 5px 0;
  text-decoration: none;
}

.property-review {
  background: #fff;
  color: var(--ink);
  padding: 36px;
  text-align: left;
}

.property-review label {
  color: #536169;
  display: grid;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.property-review input,
.property-review select,
.property-review textarea {
  background: #fbfaf6;
  border: 1px solid #cfd4d3;
  border-radius: 0;
  color: var(--ink);
  font: 400 16px/1.4 "DM Sans", sans-serif;
  margin-bottom: 18px;
  padding: 13px 14px;
  width: 100%;
}

.property-review textarea {
  min-height: 112px;
  resize: vertical;
}

.property-review input:focus,
.property-review select:focus,
.property-review textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.property-review .button {
  border: 0;
  cursor: pointer;
  margin-top: 2px;
}

.form-note {
  color: #748087;
  font-size: 12px;
  margin: 12px 0 0;
}

.form-note.ready {
  color: #76602f;
}

@media (max-width: 850px) {
  .review-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .property-review {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
