/* ==========================================================================
   Homepage hero
   ========================================================================== */

.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: clamp(34rem, 80vh, 52rem);
	padding-block: 6rem;
	overflow: hidden;
	background:
		linear-gradient(
			135deg,
			rgba(127, 169, 230, 0.3),
			rgba(233, 123, 167, 0.2)
		),
		var(--wf-cream, #fffdf9);
}


.hero__content {
	position: relative;
	z-index: 1;
	max-width: 52rem;
}

.hero__eyebrow {
	margin-bottom: 1rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hero__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.75rem, 5.5vw, 4.75rem);
	line-height: 1.02;
}

.hero__description {
	max-width: 38rem;
	margin-bottom: 2rem;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.7;
	color: rgba(255,255,255,.96);
	text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
