.inquiry-section {
  padding: 100px max(8vw, 25px);
  background: var(--cream);
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
  align-items: start;
}

.inquiry-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
  margin: 0 0 22px;
}

.inquiry-intro p:last-child {
  color: var(--muted);
  max-width: 480px;
}

.inquiry-form {
  background: #fff;
  padding: clamp(28px, 4vw, 54px);
  box-shadow: 0 22px 60px rgba(7, 26, 51, .09);
  border-top: 4px solid var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.form-field em {
  font-style: normal;
  font-size: 11px;
  color: #fff;
  background: var(--blue);
  padding: 2px 6px;
  margin-left: 5px;
}

.form-wide { grid-column: 1 / -1; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c9d2dd;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s;
}

.form-field textarea {
  resize: vertical;
  min-height: 180px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 60, 105, .13);
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 26px 0 22px;
  font-size: 14px;
}

.check-row input {
  width: 19px;
  height: 19px;
  margin-top: 4px;
  accent-color: var(--navy);
  flex: 0 0 auto;
}

.check-row a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
}

.form-submit:hover { background: var(--blue); }

.form-note,
.form-status {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
}

.form-status {
  color: var(--blue);
  font-weight: 700;
}

.contact-secondary { padding-top: 90px; }

@media (max-width: 850px) {
  .inquiry-section {
    grid-template-columns: 1fr;
    padding: 75px 25px;
  }

  .inquiry-form { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
}
