/* ============================================================
   Newsletter signup widget — shared styles
   Two-step progressive form (email first, then enrichment).
   Class-based & self-scoped so multiple instances can live on
   one page (e.g. a mid-page band + a compact footer form).
   Uses each page's existing --navy / --accent tokens + .btn.
   ============================================================ */

/* ---- Mid-page band ---- */
.nl-band { background: var(--navy); padding: 64px 0; }
.nl-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.nl-copy { flex: 1 1 380px; max-width: 520px; }
.nl-eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px;
  font-weight: 600; color: var(--accent); margin: 0 0 10px;
}
.nl-copy h3 {
  font-family: 'Playfair Display', serif; font-size: 30px; line-height: 1.15;
  color: #fff; margin: 0 0 12px;
}
.nl-sub { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,.72); margin: 0; }
.nl-sub strong { color: #fff; }
.nl-sub em { color: #fff; font-style: italic; }
.nl-formwrap { flex: 1 1 360px; max-width: 440px; width: 100%; }

/* ---- Fields & rows (shared) ---- */
.nl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-input {
  flex: 1 1 200px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px; background: rgba(255,255,255,.08); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 15px; outline: none;
  transition: border-color .2s, background .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-input:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.13); }
.nl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }

.nl-s2-lead { color: #fff; font-size: 15px; line-height: 1.5; margin: 0 0 12px; }
.nl-skip {
  background: none; border: none; color: rgba(255,255,255,.6); font-size: 14px;
  cursor: pointer; text-decoration: underline; font-family: 'Inter', sans-serif; padding: 0 6px;
}
.nl-skip:hover { color: #fff; }
.nl-err { color: #FFB4A2; font-size: 13.5px; min-height: 18px; margin: 8px 0 0; }
.nl-fine { color: rgba(255,255,255,.42); font-size: 12.5px; margin: 12px 0 0; line-height: 1.5; }

.nl-done-title {
  font-family: 'Playfair Display', serif; font-size: 24px; color: #fff; margin: 0 0 8px;
}
.nl-done-sub { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.6; margin: 0; }

/* ---- Compact footer variant ---- */
.nl-footer { max-width: 420px; }
.nl-footer .nl-eyebrow { color: var(--accent); }
.nl-footer .nl-foot-title {
  font-size: 16px; font-weight: 600; color: #fff; margin: 0 0 6px;
}
.nl-footer .nl-foot-sub {
  font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,.55); margin: 0 0 14px;
}
.nl-footer .nl-input { font-size: 14px; padding: 11px 14px; }
.nl-footer .nl-fine { font-size: 11.5px; }
.nl-footer .nl-done-title { font-size: 18px; }
.nl-footer .nl-done-sub { font-size: 13.5px; }

@media (max-width: 600px) {
  .nl-grid { grid-template-columns: 1fr; }
  .nl-band { padding: 48px 0; }
  .nl-copy h3 { font-size: 26px; }
}
