/* Contact form — matches the Glint template tokens (see :root vars in the page CSS) */
.contact-form-card {
  border-radius: var(--border-radius--border-radius);
  background-color: var(--color--gray-2);
  padding: 30px;
}

.contact-field-label {
  font-family: var(--font-family--heading);
  color: var(--color--heading);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.contact-input {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #dfe3e8;
  border-radius: var(--border-radius--button-radius);
  background-color: var(--color--white);
  font-family: var(--font-family--body);
  font-size: 16px;
  color: var(--color--gray-1);
  transition: border-color .3s ease-in-out;
}

.contact-input:focus {
  outline: none;
  border-color: var(--color--primary-1);
}

textarea.contact-input {
  min-height: 140px;
  resize: vertical;
}

.contact-submit {
  border: 0;
  border-radius: var(--border-radius--button-radius);
  background-color: var(--color--primary-1);
  color: var(--color--white);
  padding: 15px 30px;
  font-family: var(--font-family--body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.contact-submit:hover {
  opacity: .88;
}

.contact-submit[disabled] {
  opacity: .6;
  cursor: default;
}

.contact-form .cf-turnstile {
  margin-bottom: 20px;
}

/* Honeypot — hidden from humans, present for bots */
.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.contact-form-done,
.contact-form-fail {
  display: none;
  border-radius: var(--border-radius--button-radius);
  padding: 16px 20px;
  margin-top: 20px;
  font-family: var(--font-family--body);
}

.contact-form-done {
  background-color: #e7f6ee;
  color: #1c7c4d;
}

.contact-form-fail {
  background-color: #fdecea;
  color: #b3261e;
}

@media screen and (max-width: 767px) {
  .contact-form-card {
    padding: 20px;
  }
}

/* Site is self-hosted now — suppress the runtime-injected Webflow badge */
.w-webflow-badge,
a[href*="utm_campaign=brandjs"] {
  display: none !important;
}
