/* ============================================================
   Contact form — additive styles for the PHP enquiry form in the
   CTA section. Self-contained so it never touches the design-system
   token files. Tuned for the dark CTA background.
   ============================================================ */

.contact-form {
  max-width: 46rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  text-align: left;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

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

.contact-form .field {
  display: block;
  margin-bottom: 1.1rem;
}

.contact-form .field-label {
  display: block;
  margin-bottom: .5rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}

.contact-form .field-label small {
  text-transform: none;
  letter-spacing: 0;
  opacity: .6;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: inherit;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 4px;
  transition: border-color .2s ease, background-color .2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: inherit; opacity: .45; }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .1);
}

.contact-form textarea { resize: vertical; min-height: 7.5rem; }

.contact-form button[type="submit"] { margin-top: .5rem; }

/* Honeypot — visually and assistively hidden, still in the DOM for bots. */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Status / validation messages */
.form-note {
  max-width: 46rem;
  margin: 1.75rem auto 0;
  padding: .9rem 1.2rem;
  border-radius: 4px;
  text-align: left;
  font-size: .95rem;
}

.form-note ul { margin: 0; padding-left: 1.1rem; }

.form-note--ok {
  background: rgba(120, 190, 140, .14);
  border: 1px solid rgba(120, 190, 140, .5);
}

.form-note--err {
  background: rgba(210, 120, 110, .14);
  border: 1px solid rgba(210, 120, 110, .5);
}
