/* ── Contact form inputs ── */
.form-input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid hsl(35 20% 82%);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: 'Zen Kaku Gothic New', system-ui, sans-serif;
  transition: border-color 0.2s;
  background: hsl(40 30% 97%);
}
.form-input:focus {
  outline: none;
  border-color: hsl(35 15% 65%);
  box-shadow: 0 0 0 3px hsl(35 15% 65% / 0.1);
}
textarea.form-input { resize: vertical; min-height: 120px; }

/* Sent state: disabled but legible */
.form-input-sent {
  background: transparent;
  border-color: hsl(35 20% 88%);
  color: hsl(30 15% 15%);
  opacity: 1;
  cursor: default;
  -webkit-text-fill-color: hsl(30 15% 15%);
}
textarea.form-input-sent { resize: none; }
