/* Use existing slab layout; just style the form inside the right column */

.hero-slab--contact .hero-slab__right {
  /* ensure nice width and spacing if needed */
  max-width: 480px;
}

/* Form layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #d0d4e0;
  font: inherit;
  box-sizing: border-box;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid #022351;
  outline-offset: 1px;
}

/* Honeypot: invisible to humans, visible to basic bots */
.contact-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Error copy */
.form-error {
  color: #b00020;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}
