/* 1882 Homestead — $10-off newsletter popup ----------------------------- */
.hh-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(22, 33, 45, 0.7);
	padding: 1rem;
}
.hh-popup-overlay.is-open { display: flex; }

.hh-popup {
	position: relative;
	width: 100%;
	max-width: 460px;
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	border-top: 6px solid #9b2a2a;
	animation: hh-pop-in 0.25s ease;
}
@keyframes hh-pop-in {
	from { transform: translateY(14px); opacity: 0; }
	to   { transform: translateY(0); opacity: 1; }
}
.hh-popup__inner { padding: 2rem 2rem 2.25rem; text-align: center; }
.hh-popup__logo { max-width: 180px; height: auto; margin: 0 auto 1rem; display: block; }
.hh-popup__eyebrow {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9b2a2a;
	font-weight: 700;
	font-size: 0.8rem;
	margin: 0 0 0.35rem;
}
.hh-popup__title {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	color: #1f2d3d;
	font-size: 1.9rem;
	line-height: 1.05;
	margin: 0 0 0.5rem;
	font-weight: 700;
}
.hh-popup__title strong { color: #9b2a2a; }
.hh-popup__text { color: #4b5563; font-size: 0.95rem; margin: 0 0 1.25rem; }
.hh-popup__form { display: flex; flex-direction: column; gap: 0.6rem; }
.hh-popup__input {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1px solid #cbd2da;
	border-radius: 3px;
	font-size: 1rem;
}
.hh-popup__input:focus { outline: 2px solid #c9a24a; border-color: #c9a24a; }
.hh-popup__btn {
	width: 100%;
	padding: 0.85rem 1rem;
	border: none;
	border-radius: 3px;
	background: #9b2a2a;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.2s ease;
}
.hh-popup__btn:hover { background: #7e2020; }
.hh-popup__btn:disabled { opacity: 0.6; cursor: default; }
.hh-popup__fine { font-size: 0.72rem; color: #9097a1; margin: 0.85rem 0 0; }
.hh-popup__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 1.6rem;
	line-height: 1;
	color: #1f2d3d;
	cursor: pointer;
	opacity: 0.55;
}
.hh-popup__close:hover { opacity: 1; }
.hh-popup__success { display: none; }
.hh-popup.is-success .hh-popup__form,
.hh-popup.is-success .hh-popup__text,
.hh-popup.is-success .hh-popup__eyebrow,
.hh-popup.is-success .hh-popup__fine { display: none; }
.hh-popup.is-success .hh-popup__success { display: block; }
.hh-popup__code {
	display: inline-block;
	margin-top: 0.75rem;
	padding: 0.5rem 1rem;
	border: 2px dashed #c9a24a;
	border-radius: 4px;
	font-family: 'Oswald', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #1f2d3d;
}
.hh-popup__error { color: #9b2a2a; font-size: 0.85rem; min-height: 1rem; }
