.oaklores-home-hero {
	position: relative;
	width: 100%;
	min-height: 460px;
	overflow: hidden;
	background: #faf9f6;
}

/* Image itself is softened rather than covered by a black overlay */
.oaklores-home-hero-image {
	position: absolute;
	inset: -3%;
	width: 106%;
	height: 106%;
	object-fit: cover;
	display: block;

	opacity: 0.4;
	filter: saturate(0.92) contrast(1.03);

	-webkit-mask-image: radial-gradient(
		ellipse at center,
		black 35%,
		rgba(0, 0, 0, 0.8) 65%,
		transparent 100%
	);

	mask-image: radial-gradient(
		ellipse at center,
		black 35%,
		rgba(0, 0, 0, 0.8) 65%,
		transparent 100%
	);

	animation: oaklores-hero-image 12s ease-in-out infinite alternate;
}

@keyframes oaklores-hero-image {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.035);
	}
}
/* Remove the previous dark overlay */
.oaklores-home-hero-overlay {
	display: none;
}

.oaklores-home-hero-content {
	position: relative;
	z-index: 2;
	max-width: 650px;
	padding: 65px 70px;
	color: #2b211d;

	animation: oaklores-hero-content 1.2s ease-out both;
}

@keyframes oaklores-hero-content {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.oaklores-home-hero-kicker {
	margin-bottom: 14px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #7d402d;
}

.oaklores-home-hero-title {
	margin: 0 0 22px;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(48px, 6vw, 78px);
	font-weight: 500;
	line-height: 0.95;
	color: #3a2923;
}

.oaklores-home-hero-text {
	max-width: 560px;
	margin: 0 0 32px;
	font-family: "Cormorant Garamond", serif;
	font-size: 21px;
	line-height: 1.45;
	color: #3f332e;
}

.oaklores-home-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.oaklores-home-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 135px;
	padding: 12px 22px;
	border-radius: 5px;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.oaklores-home-hero-btn-primary {
	background: #b85c3a;
	color: #fff;
}

.oaklores-home-hero-btn-primary:hover {
	background: #9f4d31;
	color: #fff;
}

.oaklores-home-hero-btn-secondary {
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid #8c6658;
	color: #4a3027;
	backdrop-filter: blur(3px);
}

.oaklores-home-hero-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.8);
	color: #2b211d;
}

@media (max-width: 700px) {

	.oaklores-home-hero {
		min-height: 460px;
	}

	.oaklores-home-hero-content {
		padding: 60px 28px;
	}

	.oaklores-home-hero-title {
		font-size: 52px;
	}

	.oaklores-home-hero-text {
		font-size: 19px;
	}

	.oaklores-home-hero-image {
		opacity: 0.28;
	}

}