.contact-page {
  max-width: 48rem;
  border: 1px solid rgba(67, 90, 46, 0.18);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 220, 0.94));
  box-shadow: 0 1.5rem 4rem rgba(67, 90, 46, 0.1), inset 0 1px rgba(255, 255, 255, 0.95);
}
.contact-page > p { max-width: 42ch; margin-bottom: 2rem; font-size: 1.1rem; }
.contact-required, .contact-help, .contact-privacy { color: var(--ink-soft, #526837); font-size: 0.9rem; }
.contact-required { padding-top: 1.5rem; border-top: 1px solid rgba(67, 90, 46, 0.16); }
.contact-field { display: grid; gap: 0.6rem; margin-top: 1.4rem; }
.contact-field label { font-weight: 800; }
.contact-field label span { font-weight: 400; }
.contact-field input, .contact-field textarea {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(67, 90, 46, 0.38);
  border-radius: 0.8rem;
  color: var(--ink);
  caret-color: var(--red, #ae2b1d);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 2px rgba(67, 90, 46, 0.04), 0 1px rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 160ms ease, background-color 160ms ease;
}
.contact-field input:hover, .contact-field textarea:hover { border-color: var(--green, #435a2e); }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: var(--ink-soft, #526837); opacity: 1; }
.contact-field input:autofill {
  -webkit-text-fill-color: var(--ink, #435a2e);
  box-shadow: inset 0 0 0 1000px #f5ecdc;
}
.contact-field textarea { resize: vertical; min-height: 10rem; }
.contact-field input:focus-visible, .contact-field textarea:focus-visible,
.contact-submit:focus-visible { outline: 3px solid var(--orange-dark, #bd3d0d); outline-offset: 3px; }
.contact-field input:focus-visible, .contact-field textarea:focus-visible { background: #fff; }
.contact-field .contact-help { margin: 0; line-height: 1.5; }
.contact-privacy { margin: 1.5rem 0 0; }
.contact-status { margin: 1rem 0; color: var(--red, #ae2b1d); font-weight: 700; }
.contact-status:empty { display: none; }
.contact-submit { min-height: 3.5rem; margin-top: 1.25rem; border-radius: 999px; }
.contact-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.contact-thanks-link { display: inline-flex; margin-top: 1rem; }
@media (max-width: 480px) {
  .contact-page { padding: 1.4rem; border-radius: 1.15rem; }
  .contact-submit, .contact-thanks-link { width: 100%; justify-content: space-between; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-field input, .contact-field textarea { transition: none; }
}
