/* ── NDP Subscribe Form ──────────────────────────────────────────────────── */

.ndp-subscribe-form {
	text-align: center;
}

.ndp-subscribe-form__heading {
	margin: 0 0 0.5em;
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.ndp-subscribe-form__subheading {
	margin: 0 0 1.5rem;
	font-size: 1rem;
	opacity: 0.85;
}

.ndp-subscribe-form__form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	max-width: 420px;
	margin: 0 auto;
}

.ndp-subscribe-form__input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.18);
	border-radius: 6px;
	font-size: 1rem;
	background: #fff;
	color: #111;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ndp-subscribe-form__input:focus {
	outline: none;
	border-color: #c8a96e;
	box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.18);
}

.ndp-subscribe-form__input::placeholder {
	color: #9ca3af;
}

.ndp-subscribe-form__btn {
	width: 100%;
	padding: 0.875rem 1.5rem;
	background: #c8a96e;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
	letter-spacing: 0.02em;
}

.ndp-subscribe-form__btn:hover:not(:disabled) {
	background: #b8955a;
}

.ndp-subscribe-form__btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.ndp-subscribe-form__message {
	margin-top: 0.75rem;
	padding: 0.75rem 1rem;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 500;
	text-align: left;
}

.ndp-subscribe-form__message--success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.ndp-subscribe-form__message--error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}
