/* Contact form — styled to match the site aesthetic. */
.contact-form-wrap { max-width: 640px; margin: 0 auto; }
.contact-form {
  font-family: "Cormorant Garamond", Garamond, "Times New Roman", serif;
  color: #2b2b2b;
}
.contact-form .cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .cf-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.contact-form label {
  font-size: 15px;
  letter-spacing: .02em;
  margin-bottom: 7px;
  color: #3a3a3a;
}
.contact-form .cf-req { color: #c79288; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 16px;
  color: #2b2b2b;
  background: #fff;
  border: 1px solid #cfc9c2;
  border-radius: 4px;
  padding: 11px 12px;
  width: 100%;
  box-sizing: border-box;
}
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #c79288;
  box-shadow: 0 0 0 2px rgba(199,146,136,.2);
}
.contact-form .cf-submit {
  display: inline-block;
  background: #c79288;
  color: #fff;
  font-family: inherit;
  font-size: 16.8px;
  letter-spacing: .336px;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  margin-top: 4px;
  cursor: pointer;
  transition: background-color .15s ease;
}
.contact-form .cf-submit:hover { background: #b87f74; }
.contact-form .cf-submit:disabled { opacity: .6; cursor: default; }
/* honeypot — hidden from users */
.contact-form .cf-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.contact-form .cf-status {
  margin-top: 16px;
  font-size: 16px;
  padding: 10px 0;
}
.contact-form .cf-ok    { color: #3f7d54; }
.contact-form .cf-error { color: #b5452f; }

@media (max-width: 575px) {
  .contact-form .cf-row { grid-template-columns: 1fr; gap: 0; }
}
