/* ============================================================
   LitHERacy — signup form states
   ============================================================
   The "be the first to know" box. Shared by the homepage footer
   and the site footer, both of which sit on the dark ink panel.
   ============================================================ */

/* Spam trap. Must exist in the DOM for Netlify to check it, and must
   never be visible or focusable for a real person. */
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.form-msg {
  margin: 14px 0 0;
  font-family: var(--font-hand), cursive;
  font-size: 21px;
  line-height: 1.35;
  color: var(--lavender);
  min-height: 1.35em;
}
.form-msg:empty { display: none; }
.form-msg.is-error { color: #F0A9A9; }

form[data-lit-signup][data-state="sending"] button[type="submit"] {
  opacity: 0.6;
  cursor: progress;
}
form[data-lit-signup][data-state="done"] input[type="email"],
form[data-lit-signup][data-state="done"] button[type="submit"] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-msg { transition: none; }
}

/* ============================================================
   Footer legal line
   ============================================================ */
.footer-legal {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,241,232,0.14);
  display: grid;
  gap: 6px;
}
.footer-legal p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(245,241,232,0.5);
}
.footer-legal .foot-ack { max-width: 62ch; }

@media (max-width: 620px) {
  .footer-legal { margin-top: 18px; }
}
