/**
 * Home promo — full-bleed fixed background, text in container.
 */

.na-promo {
	position: relative;
	isolation: isolate;
	min-height: clamp(28rem, 58vh, 36rem);
	display: flex;
	align-items: center;
	color: var(--na-ink, #1c1a18);
	overflow: hidden;
}

.na-promo__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: #ebe6e1;
	background-position: right center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.na-promo__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.88) 0%,
		rgba(255, 255, 255, 0.72) 38%,
		rgba(255, 255, 255, 0.28) 62%,
		rgba(255, 255, 255, 0.08) 100%
	);
	pointer-events: none;
}

.na-promo__inner {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: min(var(--ml-container-max, 1300px), calc(100% - 2rem));
	max-width: var(--ml-container-max, 1300px);
	margin-inline: auto;
	padding-top: clamp(4rem, 8vw, 6.5rem);
	padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

/* Keep content on the site container even if Layout = full width */
body.ml-layout-full .na-promo__inner.ml-container {
	width: min(var(--ml-container-max, 1300px), calc(100% - 2rem));
	max-width: var(--ml-container-max, 1300px);
	margin-inline: auto;
	padding-inline: 0;
}

.na-promo__content {
	max-width: 32rem;
}

.na-promo__title {
	margin: 0 0 0.85rem;
	font-family: var(--ml-font-body);
	font-size: clamp(1.15rem, 2.2vw, 1.55rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-transform: uppercase;
	color: #3d3a45;
}

.na-promo__subtitle {
	margin: 0 0 1.1rem;
	font-family: var(--ml-font-heading);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.05rem, 1.8vw, 1.25rem);
	line-height: 1.45;
	color: #4a4652;
}

.na-promo__text {
	margin: 0 0 1.75rem;
	font-family: var(--ml-font-body);
	font-size: 0.92rem;
	line-height: 1.7;
	color: #6a6670;
	max-width: 28rem;
}

.na-promo__actions {
	margin: 0;
}

.na-promo .na-btn--outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1.45rem;
	border: 1px solid var(--na-ink, #1c1a18);
	background: var(--na-ink, #1c1a18);
	color: #fff;
	font-family: var(--ml-font-button, var(--ml-font-body));
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.na-promo .na-btn--outline:hover,
.na-promo .na-btn--outline:focus-visible {
	background: #fff;
	color: var(--na-ink, #1c1a18);
}

@media (max-width: 900px) {
	.na-promo__bg {
		background-attachment: scroll;
		background-position: 70% center;
	}

	.na-promo__bg::after {
		background: linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.9) 0%,
			rgba(255, 255, 255, 0.78) 55%,
			rgba(255, 255, 255, 0.45) 100%
		);
	}

	.na-promo__content {
		max-width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.na-promo__bg {
		background-attachment: scroll;
	}
}
