/**
 * BV Core — intro video hero + stats strip.
 * Values from the Blue Vineyard Figma design.
 */

.bv-intro {
	--bv-navy: #07112c;
	--bv-lavender: #d3ddf8;

	font-family: "Archivo", inherit;
}

.bv-intro *,
.bv-intro *::before,
.bv-intro *::after {
	box-sizing: border-box;
}

.bv-intro__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 32px;
	background: #0b1631;
	box-shadow: 0 24px 60px -20px rgba(7, 17, 44, 0.45);
}

/* Background poster. */
.bv-intro__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bv-intro__bg--empty {
	background: linear-gradient(135deg, #12203f, #0b1631);
}

/* Subtle darkening for contrast (stronger toward the stats strip). */
.bv-intro__frame::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 17, 44, 0.12) 0%, rgba(7, 17, 44, 0.1) 55%, rgba(7, 17, 44, 0.4) 100%);
	pointer-events: none;
}

/* ------------------------------------------------------ Play button --- */

.bv-intro__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120px;
	height: 120px;
	border-radius: 50%;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	z-index: 2;
	cursor: pointer;
	transition: transform 0.25s ease;
	-webkit-tap-highlight-color: transparent;
}

.bv-intro__play svg {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 8px 24px rgba(7, 17, 44, 0.35));
}

.bv-intro__play:hover,
.bv-intro__play:focus-visible {
	transform: translate(-50%, -50%) scale(1.06);
	outline: none;
}

/* ------------------------------------------------------ Stats strip --- */

.bv-intro__stats {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 32px 64px;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}

.bv-intro__stats-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 1664px;
	margin: 0 auto;
}

.bv-intro__stat {
	display: flex;
	align-items: center;
	gap: 16px;
}

.bv-intro__stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}

.bv-intro__stat-icon img {
	display: block;
	width: 32px;
	height: 32px;
}

.bv-intro__stat-text {
	display: flex;
	flex-direction: column;
	white-space: nowrap;
}

.bv-intro__stat-number {
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	color: #fff;
}

.bv-intro__stat-label {
	font-size: 14px;
	line-height: 22px;
	font-weight: 600;
	color: var(--bv-lavender);
}

.bv-intro__stat-divider {
	flex-shrink: 0;
	width: 1px;
	height: 64px;
	background: rgba(255, 255, 255, 0.16);
}

/* ------------------------------------------------------- Responsive --- */

@media (max-width: 1200px) {
	.bv-intro__stats {
		padding: 24px 32px;
	}

	.bv-intro__stats-inner {
		justify-content: flex-start;
		gap: 20px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.bv-intro__stats-inner::-webkit-scrollbar {
		display: none;
	}

	.bv-intro__stat {
		flex-shrink: 0;
	}
}

@media (max-width: 782px) {
	.bv-intro__frame {
		border-radius: 20px;
		aspect-ratio: 4 / 3;
	}

	.bv-intro__play {
		width: 84px;
		height: 84px;
	}

	.bv-intro__stats {
		padding: 16px 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bv-intro__play {
		transition: none;
	}
}
