/* ==========================================================================
   Hero Section (S1)
   ========================================================================== */

.section-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding: 120px 0 100px;
}

/* Background layer */
.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder when no image yet */
.hero-bg-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0F1E36 0%, #0A1628 40%, #1A2A44 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-bg-placeholder span {
	color: rgba(255, 255, 255, 0.1);
	font-size: 0.85rem;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Dark overlay gradient — stronger on left for text readability */
.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(10, 22, 40, 0.52) 0%,
		rgba(10, 22, 40, 0.35) 25%,
		rgba(10, 22, 40, 0.05) 100%
	);
	z-index: 1;
}

/* Content sits above the overlay */
.section-hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 840px;
}

/* Eyebrow label */
.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--cwv-gold);
	margin-bottom: 28px;
}

.hero-eyebrow svg {
	flex-shrink: 0;
}

/* Headline */
.hero-content h1 {
	font-size: clamp(2.6rem, 5vw, 3.8rem);
	line-height: 1.12;
	margin-bottom: 1.5rem;
	color: var(--cwv-white);
	font-weight: 600;
}

/* Highlighted keyword in headline */
.hero-highlight {
	position: relative;
	display: inline;
}

.hero-highlight::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--cwv-gold);
	border-radius: 2px;
}

/* Subheadline */
.hero-content .hero-subheadline {
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 2.5rem;
	max-width: 660px;
}

/* CTA row */
.hero-ctas {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 2rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
	.section-hero {
		min-height: 85vh;
		padding: 100px 0 80px;
	}

	.hero-content {
		max-width: 540px;
	}
}

@media screen and (max-width: 768px) {
	.section-hero {
		min-height: auto;
		padding: 100px 0 70px;
	}

	.hero-overlay {
		background: linear-gradient(
			180deg,
			rgba(10, 22, 40, 0.88) 0%,
			rgba(10, 22, 40, 0.82) 100%
		);
	}

	.hero-content {
		max-width: 100%;
	}

	.hero-content h1 {
		font-size: clamp(2rem, 6vw, 2.8rem);
	}

	.hero-ctas {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
}

@media screen and (max-width: 480px) {
	.section-hero {
		padding: 90px 0 60px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.hero-eyebrow {
		font-size: 0.7rem;
		letter-spacing: 2px;
		margin-bottom: 20px;
	}
}