/* LatValley Zone Video CTA component */
.lv-video-cta {
	--lv-video-cta-overlay-start: rgba(30, 45, 15, 0.9);
	--lv-video-cta-overlay-end: rgba(30, 45, 15, 0.62);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 72px 0;
	background-color: var(--lv-green-deep, #2E3A1A);
	background-image: var(--lv-video-cta-bg-image, var(--lv-gradient-cta, linear-gradient(135deg, #2E3A1A 0%, #3d4f22 100%)));
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--lv-surface, #FFFFFF);
}

.lv-video-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: var(--lv-z-content, 1);
	background: linear-gradient(90deg, var(--lv-video-cta-overlay-start) 0%, var(--lv-video-cta-overlay-end) 100%);
	pointer-events: none;
}

.lv-video-cta__container {
	position: relative;
	z-index: var(--lv-z-sticky, 100);
	width: min(calc(100% - 32px), 1320px);
	margin: 0 auto;
}

.lv-video-cta__wrapper {
	display: grid;
	align-items: center;
	gap: 40px;
}

.lv-video-cta__content,
.lv-video-cta__visual {
	min-width: 0;
}

.lv-video-cta__header {
	margin: 0;
}

.lv-video-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	color: var(--lv-gold-light, #E0BB5A);
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 12px;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.lv-video-cta__mountain-icon {
	width: 32px;
	height: 20px;
}

.lv-video-cta__title {
	max-width: 640px;
	margin: 0;
	color: var(--lv-surface, #FFFFFF);
	font-family: 'Playfair Display', Georgia, serif;
	font-size: clamp(34px, 7vw, 60px);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 1.12;
}

.lv-video-cta__desc {
	max-width: 640px;
	margin: 22px 0 0;
	color: rgba(251, 248, 242, 0.92);
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
}

.lv-video-cta__amenities {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
}

.lv-video-cta__amenity-item {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 10px;
}

.lv-video-cta__amenity-icon {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	color: var(--lv-gold-light, #E0BB5A);
	font-size: 28px;
	line-height: 1;
}

.lv-video-cta__amenity-img {
	display: block;
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.lv-video-cta__amenity-text {
	color: var(--lv-surface, #FFFFFF);
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
}

.lv-video-cta__action {
	margin-top: 34px;
}

.lv-video-cta__more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 28px;
	border: 1px solid var(--lv-gold-light, #E0BB5A);
	border-radius: 4px;
	color: var(--lv-gold-light, #E0BB5A);
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.lv-video-cta__more-link:hover,
.lv-video-cta__more-link:focus-visible {
	border-color: var(--lv-gold-pale, #F0D98A);
	background: var(--lv-gold-light, #E0BB5A);
	color: var(--lv-green-deep, #2E3A1A);
}

.lv-video-cta__preview-box {
	position: relative;
	overflow: hidden;
	min-height: 220px;
	aspect-ratio: 16 / 9;
	background: var(--lv-gradient-footer, linear-gradient(160deg, #2E3A1A 0%, #1F2811 100%));
	box-shadow: var(--lv-shadow-lg, 0 8px 40px rgba(30, 45, 15, 0.16));
}

.lv-video-cta__thumbnail,
.lv-video-cta__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lv-video-cta__thumbnail {
	transition: transform 0.5s ease;
}

.lv-video-cta__preview-box::after {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(180deg, rgba(30, 45, 15, 0.05) 20%, rgba(30, 45, 15, 0.72) 100%);
	pointer-events: none;
}

.lv-video-cta__play-link {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	transform: translate(-50%, -50%);
	flex-direction: column;
	gap: 12px;
	color: var(--lv-surface, #FFFFFF);
	text-align: center;
}

.lv-video-cta__play-circle {
	position: relative;
	display: grid;
	width: 80px;
	height: 80px;
	place-items: center;
	border-radius: 50%;
	background: var(--lv-surface, #FFFFFF);
	color: var(--lv-green-mid, #4E7A22);
	font-size: 22px;
	line-height: 1;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lv-video-cta__play-circle::before,
.lv-video-cta__play-circle::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 50%;
	content: '';
	animation: lv-video-cta-pulse-ring 2.2s ease-out infinite;
}

.lv-video-cta__play-circle::after {
	animation-delay: 1.1s;
}

.lv-video-cta__play-link:hover .lv-video-cta__play-circle,
.lv-video-cta__play-link:focus-visible .lv-video-cta__play-circle {
	background: var(--lv-green-mid, #4E7A22);
	color: var(--lv-surface, #FFFFFF);
	transform: scale(1.06);
}

.lv-video-cta__play-label {
	color: #FFFFFF !important;
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.lv-video-cta__play-link:focus-visible,
.lv-video-cta__more-link:focus-visible {
	outline: 2px solid var(--lv-gold-pale, #F0D98A);
	outline-offset: 5px;
}

@keyframes lv-video-cta-pulse-ring {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.65);
		opacity: 0;
	}
}

@media (min-width: 768px) {
	.lv-video-cta {
		padding: 60px 0;
	}

	.lv-video-cta__container {
		width: min(calc(100% - 40px), 1320px);
	}

	.lv-video-cta__wrapper {
		gap: 50px;
	}
}

@media (min-width: 1200px) {
	.lv-video-cta {
		padding: 100px 0;
	}

	.lv-video-cta__wrapper {
		grid-template-columns: minmax(0, 55fr) minmax(0, 45fr);
	}
}

@media (min-width: 1440px) {
	.lv-video-cta__container {
		width: min(calc(100% - 64px), 1320px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lv-video-cta__thumbnail,
	.lv-video-cta__play-circle,
	.lv-video-cta__play-circle::before,
	.lv-video-cta__play-circle::after,
	.lv-video-cta__more-link {
		animation: none;
		transition: none;
	}
}