.dcc-hero {
	position: relative;
	min-height: clamp(560px, 50vw, 760px);
	display: flex;
	align-items: center;
	color: var(--dcc-white);
	overflow: hidden;
	background: var(--dcc-navy);
}

.dcc-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.dcc-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.dcc-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(10,21,48,.85) 0%, rgba(10,21,48,.55) 55%, rgba(10,21,48,.25) 100%);
}

.dcc-hero__container {
	position: relative;
	z-index: 2;
	width: var(--container);
	max-width: 100%;
	margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 3rem);
	padding-block: clamp(3rem, 5vw, 5rem);
	max-width: clamp(540px, 60vw, 820px);
	margin-right: auto;
	margin-left: clamp(1rem, 8vw, 7rem);
}

.dcc-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: clamp(.65rem, 1vw, 1rem);
	margin-bottom: clamp(1rem, 1.5vw, 1.4rem);
	color: var(--dcc-gold);
	font-family: var(--ff-sans);
	font-weight: 600;
	font-size: clamp(.75rem, .78vw, .85rem);
	letter-spacing: .22em;
	text-transform: uppercase;
}

.dcc-hero__eyebrow-line {
	display: inline-block;
	width: clamp(40px, 4vw, 64px);
	height: 1px;
	background: var(--dcc-gold);
}

.dcc-hero__heading {
	font-family: var(--ff-serif);
	font-weight: 700;
	font-size: clamp(2.25rem, 4vw, 4.25rem);
	line-height: 1.08;
	margin: 0 0 clamp(1rem, 1.5vw, 1.5rem);
	color: var(--dcc-white);
	letter-spacing: -.005em;
}

.dcc-hero__sub {
	font-family: var(--ff-sans);
	font-weight: 400;
	font-size: clamp(1rem, 1.1vw, 1.125rem);
	line-height: 1.55;
	color: rgba(255,255,255,.88);
	margin: 0 0 clamp(1.5rem, 2.5vw, 2.25rem);
	max-width: 38ch;
}

.dcc-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(.65rem, 1vw, 1rem);
}

@media (max-width: 600px) {
	.dcc-hero { min-height: 540px; }
	.dcc-hero__container { margin-left: 1rem; padding-block: 3rem; }
	.dcc-hero__overlay {
		background: linear-gradient(180deg, rgba(10,21,48,.7) 0%, rgba(10,21,48,.65) 100%);
	}
}

@media (min-width: 1441px) {
	.dcc-hero {
		min-height: clamp(720px, 52vw, 920px);
	}

	.dcc-hero__container {
		max-width: clamp(680px, 50vw, 920px);
		margin-left: clamp(7rem, 10vw, 11rem);
		padding-block: clamp(4rem, 5vw, 6rem);
	}

	.dcc-hero__eyebrow {
		font-size: clamp(.85rem, .85vw, .95rem);
		gap: clamp(.85rem, 1.1vw, 1.25rem);
		margin-bottom: clamp(1.25rem, 1.6vw, 1.6rem);
	}

	.dcc-hero__eyebrow-line {
		width: clamp(56px, 4.5vw, 80px);
	}

	.dcc-hero__heading {
		font-size: clamp(3.5rem, 4.4vw, 5.25rem);
		margin-bottom: clamp(1.25rem, 1.8vw, 1.75rem);
	}

	.dcc-hero__sub {
		font-size: clamp(1.0625rem, 1.1vw, 1.25rem);
		margin-bottom: clamp(2rem, 2.6vw, 2.75rem);
		max-width: 42ch;
	}

	.dcc-hero__buttons {
		gap: clamp(.85rem, 1.1vw, 1.25rem);
	}
}
