/* ── Email signup slide-in form ── */

#signup-form-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 300;
  width: 320px;
  background: #f4ecd8;
  border: 0.5px solid #D9CCBA;
  padding: 32px 28px 28px;

  /* hidden state */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#signup-form-wrap.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Close button */
#signup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: rgba(42,38,28,0.4);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
#signup-close:hover { color: #2a261c; }

/* Eyebrow */
#signup-form-wrap .form-eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #a88c5a;
  margin-bottom: 10px;
}

/* Heading */
#signup-form-wrap .form-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #2a261c;
  line-height: 1.3;
  margin-bottom: 8px;
}

/* Subtext */
#signup-form-wrap .form-sub {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: rgba(42,38,28,0.5);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Fields */
#signup-form-wrap input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid #D9CCBA;
  padding: 10px 0;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 300;
  color: #2a261c;
  outline: none;
  transition: border-color 0.2s;
}
#signup-form-wrap input::placeholder {
  color: rgba(42,38,28,0.35);
  font-style: italic;
}
#signup-form-wrap input:focus {
  border-bottom-color: #a88c5a;
}

/* Submit */
#signup-form-wrap button[type="submit"] {
  display: block;
  width: 100%;
  background: #2a261c;
  color: #f4ecd8;
  border: none;
  padding: 13px 0;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.25s, letter-spacing 0.25s;
}
#signup-form-wrap button[type="submit"]:hover {
  background: #3a3528;
  letter-spacing: 0.23em;
}

/* Inline error */
#signup-error {
  display: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: #8b3a2a;
  background: rgba(139,58,42,0.06);
  border-left: 2px solid rgba(139,58,42,0.3);
  padding: 8px 10px;
  margin-top: 12px;
  line-height: 1.5;
}

/* Confirmation message */
#signup-confirm {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: #2a261c;
  text-align: center;
  padding: 8px 0 4px;
  line-height: 1.5;
}

/* Mobile: full-width bottom sheet */
@media (max-width: 600px) {
  #signup-form-wrap {
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    border-top: 0.5px solid #D9CCBA;
    transform: translateY(100%);
  }
  #signup-form-wrap.visible {
    transform: translateY(0);
  }
}
