.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--cream);
	overflow: hidden;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video, .hero__image, .hero__placeholder { width: 100%; height: 100%; object-fit: cover; }
.hero__placeholder { background: linear-gradient(160deg, var(--ink), #2a2722); }
.hero__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(26,26,24,0.55) 0%, rgba(26,26,24,0.35) 40%, rgba(26,26,24,0.85) 100%);
}

.hero__content {
	position: relative;
	z-index: 1;
	padding-top: 120px;
	padding-bottom: 50px;
	max-width: 900px;
}

/* Header + hero share one horizontal container boundary: same max-width and
   100px side padding as .site-header__inner, so their left edges align. */
.hero__content.container {
	max-width: var(--container-max-width);
	padding-left: var(--container-padding-x);
	padding-right: var(--container-padding-x);
	padding-top: 0;
}

.hero__overline {
	color: var(--color-accent);
	font-family: var(--font-primary);
	text-transform: uppercase;
	letter-spacing: 2.42px;
	font-size: 12px;
	margin-bottom: 20px;
}

.hero__headline {
	font-size: clamp(40px, 6vw, 76px);
	margin-bottom: 28px;
	width: clamp(600px, 80%, 80%);
	max-width: 80%;
}

.hero__headline-accent { color: var(--color-accent); }

.hero__subtext {
	font-family: var(--font-primary);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text-light);
	max-width: 560px;
	margin-bottom: 40px;
}

.hero__ctas { display: flex; gap: 20px; flex-wrap: wrap; }

/* Trust ribbon divider: sits right below the CTA row, using the same 40px
   rhythm as the other hero element gaps (see .hero__subtext margin-bottom). */
.hero__divider {
	width: 100%;
	height: 1px;
	background: rgba(245, 241, 235, 0.15);
	margin-top: 40px;
}

@media (max-width: 640px) {
	.hero__content.container { padding-top: 40px; }
	.hero__headline { font-size: clamp(32px, 6vw, 76px); width: 100%; max-width: 100%; }
	.hero__ctas .btn { width: 100%; }
}
