.contact {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: 7vw;
  align-items: start;
}

.contact-intro > p:not(.section-name) {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 250, 241, .62);
  font-size: 14px;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(193, 154, 89, .38);
  background: rgba(255, 250, 241, .045);
  box-shadow: 0 24px 58px rgba(15, 10, 15, .22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 241, .2);
  border-radius: 0;
  padding: 13px 14px;
  background: rgba(255, 250, 241, .07);
  color: var(--ivory);
  font: inherit;
  font-size: 13px;
  outline: none;
}

.form-field select {
  color-scheme: dark;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 250, 241, .34);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(193, 154, 89, .14);
}

.contact-form button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  padding: 13px 18px;
  background: var(--gold);
  color: var(--aubergine);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--ivory);
  border-color: var(--ivory);
}

.contact-form button svg {
  width: 15px;
  height: 15px;
}

.form-status {
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  background: rgba(193, 154, 89, .12);
  color: var(--ivory);
  font-size: 12px;
  line-height: 1.6;
}

.form-status.error {
  border-left-color: #d48b8b;
  background: rgba(212, 139, 139, .11);
}

.website-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy {
  margin: 0;
  color: rgba(255, 250, 241, .42);
  font-size: 10px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .contact-form {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
