.ln-page-hero {
	position: relative;
	overflow: hidden;
	background-color: #1A1008;
	font-family: "Plus Jakarta Sans", sans-serif;
}

/* ── Background image ── */

.ln-page-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
}

/* Dark gradient overlay — strong on left, fades to transparent on right */
.ln-page-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg,
			rgba(15, 9, 3, 0.88) 0%,
			rgba(15, 9, 3, 0.65) 40%,
			rgba(15, 9, 3, 0.20) 70%,
			rgba(15, 9, 3, 0.05) 100%);
	pointer-events: none;
}

/* ── Inner ── */

.ln-page-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 56px 70px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 260px;
}

/* ── Left: content ── */

.ln-page-hero__content {
	flex: 0 0 55%;
	max-width: 55%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Eyebrow */
.ln-page-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ln-page-hero__eyebrow-line {
	display: block;
	width: 20px;
	height: 1px;
	background-color: #B67A3C;
	flex-shrink: 0;
}

.ln-page-hero__eyebrow-text {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #B67A3C;
}

/* Heading */
.ln-page-hero__heading {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.1;
	color: #FFFFFF !important;
	margin: 0;
}

/* Description */
.ln-page-hero__desc {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
	max-width: 420px;
}

/* ── Right: badge ── */

.ln-page-hero__badge {
	flex-shrink: 0;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	border: 1.5px solid #205247;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2px;
	padding: 12px;
	position: absolute;
	right: 15px;
	bottom: 15px;
}

.ln-page-hero__badge-number {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	color: #205247;
}

.ln-page-hero__badge-label {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.04em;
	text-transform: capitalize;
}

/* ── Responsive ── */

@media (max-width: 1280px) {
	.ln-page-hero__inner {
		padding: 36px 40px;
		min-height: 240px;
	}

	.ln-page-hero__heading {
		font-size: 42px;
	}
}

@media (max-width: 1024px) {
	.ln-page-hero__inner {
		padding: 32px 32px;
		min-height: 220px;
	}

	.ln-page-hero__heading {
		font-size: 36px;
	}

	.ln-page-hero__content {
		flex: 0 0 65%;
		max-width: 65%;
	}

	.ln-page-hero__badge {
		width: 90px;
		height: 90px;
	}

	.ln-page-hero__badge-number {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.ln-page-hero__inner {
		padding: 28px 20px;
		min-height: 200px;
	}

	.ln-page-hero__overlay {
		background: linear-gradient(90deg,
				rgba(15, 9, 3, 0.92) 0%,
				rgba(15, 9, 3, 0.75) 60%,
				rgba(15, 9, 3, 0.35) 100%);
	}

	.ln-page-hero__content {
		flex: 1;
		max-width: 70%;
	}

	.ln-page-hero__heading {
		font-size: 30px;
	}

	.ln-page-hero__desc {
		font-size: 13px;
	}

	.ln-page-hero__badge {
		width: 80px;
		height: 80px;
	}

	.ln-page-hero__badge-number {
		font-size: 24px;
	}

	.ln-page-hero__badge-label {
		font-size: 9px;
	}
}

@media (max-width: 480px) {
	.ln-page-hero__inner {
		padding: 24px 16px;
		min-height: 180px;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.ln-page-hero__content {
		flex: none;
		max-width: 100%;
	}

	.ln-page-hero__heading {
		font-size: 26px;
	}

	.ln-page-hero__badge {
		align-self: flex-end;
	}
}