/* BOND. Newsletter form (sdílené napříč všemi stránkami) */
.newsletter-signup {
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 32px 32px 36px;
  background: rgba(212, 197, 169, 0.12);
  border: 1px solid rgba(212, 197, 169, 0.4);
  border-radius: 20px;
  text-align: center;
}
.newsletter-eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #8C7E66;
  margin-bottom: 10px;
}
.newsletter-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: #4A6346;
  margin-bottom: 6px;
}
.newsletter-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: #6E6957;
  max-width: 460px;
  margin: 0 auto 22px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex; gap: 8px;
  max-width: 460px; margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-input {
  flex: 1 1 200px;
  padding: 12px 16px;
  border: 1.5px solid #D4C5A9;
  border-radius: 100px;
  background: #FDFAF5;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: #2D2D2B;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-input:focus { border-color: #4A6346; }
.newsletter-form button {
  padding: 12px 26px;
  border-radius: 100px;
  border: none;
  background: #4A6346;
  color: #F5F0E8;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.newsletter-form button:hover:not(:disabled) { background: #2D2D2B; }
.newsletter-form button:disabled { opacity: 0.6; cursor: wait; }
.newsletter-gdpr {
  display: block;
  max-width: 460px;
  margin: 14px auto 0;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  color: #6E6957;
  text-align: left;
  line-height: 1.5;
  cursor: pointer;
}
.newsletter-gdpr input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #4A6346;
  vertical-align: middle;
}
.newsletter-gdpr a {
  color: #4A6346;
  text-decoration: underline;
}
.newsletter-msg {
  margin-top: 14px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  min-height: 18px;
  text-align: center;
}
.newsletter-msg.error,
.newsletter-msg.success {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
}
.newsletter-msg.error {
  color: #6B2723;
  background: rgba(181,68,58,.18);
  border: 1.5px solid rgba(181,68,58,.55);
  font-weight: 600;
  animation: bondNlErrorPulse .35s ease;
}
@keyframes bondNlErrorPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.newsletter-msg.success {
  color: #2F4A2C;
  background: rgba(74,99,70,.14);
  border: 1px solid rgba(74,99,70,.32);
}
@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-input {
    flex: 0 0 auto;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
  }
  .newsletter-form button {
    flex: 0 0 auto;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
  }
}
