.contact-section {
  max-width: 68rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
}

.contact-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
  color: #111;
}

.form-field textarea {
  resize: vertical;
}

button[type="submit"] {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: #111;
  color: #fff;
}

button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.contact-status {
  min-height: 1.5rem;
  font-weight: 700;
}

.hidden-field {
  display: none;
}

@media (max-width: 760px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}