.ln-hero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: #1D1B1A;
	font-family: "Plus Jakarta Sans", sans-serif;
}

.ln-hero-section__main {
	position: relative;
	overflow: hidden;
}

.ln-hero-section__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: sepia(0.35) saturate(1.25) brightness(0.85) hue-rotate(-6deg);
}

.ln-hero-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg,
			rgba(20, 14, 8, 0.92) 0%,
			rgba(20, 14, 8, 0.78) 38%,
			rgba(20, 14, 8, 0.42) 60%,
			rgba(20, 14, 8, 0.14) 100%);
	pointer-events: none;
}

.ln-hero-section__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 50px 56px 25px;
}

.ln-hero-section__content {
	max-width: 600px;
}

.ln-hero-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.ln-hero-section__eyebrow-line {
	flex: 0 0 24px;
	height: 1px;
	background-color: #B67A3C;
	opacity: 0.9;
}

.ln-hero-section__eyebrow-text {
	font-family: inherit;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #B67A3C;
	white-space: nowrap;
}

.ln-hero-section__heading {
	margin: 0 0 24px;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 72px;
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: #fff;
}

.ln-hero-section__heading-accent {
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	color: #B67A3C;
}

.ln-hero-section__heading.tagline {
	margin: 0 0 10px;
}

.ln-hero-section__tagline {
	margin: 0px 0 15px;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 25px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: #ffffff;
}

.ln-hero-section__description {
	margin: 0 0 36px;
	max-width: 500px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.ln-hero-section__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.ln-hero-section__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 26px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.ln-hero-section__button:hover {
	transform: none;
}

.ln-hero-section__button--primary {
	color: #fff;
	background: #B67A3C;
	box-shadow: none;
}

.ln-hero-section__button--primary:hover {
	color: #fff;
	background: #8F5C28;
	box-shadow: none;
}

.ln-hero-section__button--secondary {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.85);
}

.ln-hero-section__button--secondary:hover {
	color: #fff;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.ln-hero-section__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
}

.ln-hero-section__button-icon svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.ln-hero-section__media {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	width: 58%;
	-webkit-mask-image: linear-gradient(to right,
			transparent 0%,
			rgba(0, 0, 0, 0.35) 8%,
			rgba(0, 0, 0, 0.85) 16%,
			#000 24%);
	mask-image: linear-gradient(to right,
			transparent 0%,
			rgba(0, 0, 0, 0.35) 8%,
			rgba(0, 0, 0, 0.85) 16%,
			#000 24%);
}

.ln-hero-section__media--badge-only {
	background: transparent;
	-webkit-mask-image: none;
	mask-image: none;
	pointer-events: none;
}

.ln-hero-section__image {
	display: block;
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	object-position: top center;
	filter: saturate(1.05) contrast(1.02);
}

/* ── Badge ── */
.ln-hero-section__badge {
	position: absolute;
	right: 40px;
	bottom: 40px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 126px;
	height: 126px;
	border-radius: 50%;
	border: 1px solid #B67A3C;
	background: rgba(20, 14, 8, 0.52);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	text-align: center;
	padding: 14px;
	gap: 6px;
}

.ln-hero-section__badge-value {
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.01em;
}

.ln-hero-section__badge-label {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 11px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.35;
	letter-spacing: 0.01em;
	text-align: center;
}

.ln-hero-section__stats {
	position: relative;
	z-index: 2;
}

.ln-hero-section__stats-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 28px 56px;
}

.ln-hero-section__stat {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	padding: 0 32px;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.ln-hero-section__stat:first-child {
	padding-left: 0;
}

.ln-hero-section__stat:last-child {
	padding-right: 0;
	border-right: 0;
}

.ln-hero-section__stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	font-size: 34px;
	line-height: 1;
	color: #205247;
}

.ln-hero-section__stat-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ln-hero-section__stat:first-child .ln-hero-section__stat-icon {
	font-size: 42px;
}

.ln-hero-section__stat-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.ln-hero-section__stat-value {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
	line-height: 1;
}

.ln-hero-section__stat-number {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	letter-spacing: -0.01em;
}

.ln-hero-section__stat-stars {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 2px;
	color: #B67A3C;
}

.ln-hero-section__stat-label {
	margin-top: 6px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	color: #fff;
}

/* ── 1280px: Reduce padding ── */
@media (max-width: 1280px) {
	.ln-hero-section__inner {
		padding: 80px 40px 24px;
	}

	.ln-hero-section__stats-inner {
		padding: 22px 40px;
	}
}

/* ── 1024px: Stack — image top, content below ── */
@media (max-width: 1024px) {
	.ln-hero-section__main {
		display: flex;
		flex-direction: column;
	}

	.ln-hero-section__media {
		position: relative;
		width: 100%;
		height: 340px;
		order: -1;
		flex-shrink: 0;
		-webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
		mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
	}

	.ln-hero-section__media--badge-only {
		height: 0;
	}

	.ln-hero-section__badge {
		right: 24px;
		bottom: -56px;
		width: 110px;
		height: 110px;
	}

	.ln-hero-section__badge-value {
		font-size: 28px;
	}

	.ln-hero-section__overlay {
		background: linear-gradient(180deg,
				rgba(29, 27, 26, 0.35) 0%,
				rgba(29, 27, 26, 0.82) 65%,
				rgba(29, 27, 26, 0.97) 100%);
	}

	.ln-hero-section__inner {
		padding: 36px 32px 44px;
	}

	.ln-hero-section__content {
		max-width: none;
	}

	.ln-hero-section__heading {
		font-size: 48px;
	}

	.ln-hero-section__description {
		font-size: 16px;
	}

	/* Stats: 2-column grid on tablet */
	.ln-hero-section__stats-inner {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 0;
		padding: 20px 32px;
	}

	.ln-hero-section__stat {
		justify-content: flex-start;
		padding: 0 20px;
	}

	.ln-hero-section__stat:nth-child(2n) {
		border-right: 0;
	}

	.ln-hero-section__stat:nth-child(2n+1) {
		border-right: 1px solid rgba(255, 255, 255, 0.14);
	}
}

/* ── 768px: Mobile landscape / large phone ── */
@media (max-width: 768px) {
	.ln-hero-section__media {
		height: 280px;
	}

	.ln-hero-section__badge {
		display: none;
	}

	.ln-hero-section__inner {
		padding: 28px 20px 36px;
	}

	.ln-hero-section__heading {
		font-size: 40px;
	}

	.ln-hero-section__eyebrow-text {
		font-size: 11px;
		letter-spacing: 0.15em;
		white-space: normal;
	}

	.ln-hero-section__description {
		font-size: 15px;
		margin-bottom: 28px;
	}

	.ln-hero-section__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.ln-hero-section__button {
		width: 100%;
		justify-content: center;
	}
}

/* ── 480px: Small phones ── */
@media (max-width: 480px) {
	.ln-hero-section__media {
		height: 240px;
	}

	.ln-hero-section__inner {
		padding: 24px 16px 32px;
	}

	.ln-hero-section__heading {
		font-size: 34px;
		line-height: 1.18;
	}

	.ln-hero-section__tagline {
		font-size: 17px;
		margin: 0px 0 5px;
	}

	.ln-hero-section__description {
		font-size: 14px;
	}

	/* Stats: single column on phones */
	.ln-hero-section__stats-inner {
		grid-template-columns: 1fr;
		padding: 16px 20px;
		gap: 0;
	}

	.ln-hero-section__stat {
		justify-content: flex-start;
		padding: 14px 0;
		border-right: 0 !important;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.ln-hero-section__stat:last-child {
		padding-bottom: 14px;
		border-bottom: 0;
	}
}