/* LatValley Zone Pre-Footer CTA component */
.lv-pre-footer-cta {
	position: relative;
	min-height: 0;
	overflow: hidden;
	background-color: var(--lv-green-deep, #2E3A1A);
	background-image: var(--lv-gradient-cta, linear-gradient(135deg, #2E3A1A 0%, #3d4f22 100%));
	background-position: center;
	background-size: cover;
	background-attachment: scroll;
}

.lv-pre-footer-cta__overlay {
	display: flex;
	min-height: 0;
	align-items: center;
	justify-content: center;
	padding: 60px 16px;
	background: linear-gradient(135deg, rgba(46, 58, 26, 0.88) 0%, rgba(31, 40, 17, 0.88) 100%);
}

.lv-pre-footer-cta__content {
	position: relative;
	z-index: var(--lv-z-content, 1);
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.lv-pre-footer-cta__subtitle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 15px;
	color: var(--lv-gold-core, #C9A030);
	font-family: var(--lv-font-body, 'Roboto', sans-serif);
	font-size: var(--lv-font-size-label, 14px);
	font-weight: 700;
	letter-spacing: var(--lv-letter-spacing-label, 0.1em);
	line-height: 1.4;
	text-transform: uppercase;
}

.lv-pre-footer-cta__mountain-icon {
	display: block;
	flex: 0 0 auto;
}

.lv-pre-footer-cta__title {
	margin: 0 0 35px;
	color: var(--lv-surface, #FFFFFF);
	font-family: var(--lv-font-heading, 'Playfair Display', serif);
	font-size: 32px;
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.2;
}


.lv-pre-footer-cta__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.lv-pre-footer-cta__btn {
	min-width: 190px;
}

.lv-btn--ghost-white {
	align-items: center;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.65);
	color: #fff;
	display: inline-flex;
	gap: 8px;
	justify-content: center;
}

.lv-btn--ghost-white:hover,
.lv-btn--ghost-white:focus-visible { background: rgba(255, 255, 255, 0.15); border-color: #fff; color: #fff; }

@media (min-width: 768px) {
	.lv-pre-footer-cta {
		min-height: 320px;
		background-attachment: scroll;
	}

	.lv-pre-footer-cta__overlay {
		min-height: 320px;
		padding: 70px 20px;
	}

	.lv-pre-footer-cta__title {
		font-size: clamp(32px, 5vw, 42px);
	}
}

@media (min-width: 1200px) {
	.lv-pre-footer-cta {
		min-height: 380px;
		background-attachment: fixed;
	}

	.lv-pre-footer-cta__overlay {
		min-height: 380px;
		padding: 80px 0;
	}

	.lv-pre-footer-cta__title {
		font-size: clamp(32px, 5vw, 54px);
	}
}

@media (max-width: 767px) {
	.lv-pre-footer-cta__btn {
		width: 100%;
	}
}

@media (max-width: 479px) {
	.lv-pre-footer-cta__actions { align-items: stretch; flex-direction: column; gap: 12px; }
	.lv-pre-footer-cta__btn { width: 100%; }
}