.home-hero {
	background-color: #2b2b2b;
}

.home-hero__inner {
	position: relative;
	background-image: var(--hero-bg);
	background-position: right 0px center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 600px;
	padding: 10vh 0;
	display: flex;
	align-items: stretch;
	color: #dddddd;
	overflow: hidden;
}

.home-hero__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, #423932 0%, rgba(109,102,97,0.84) 52%, rgba(202,200,198,0) 58%);
	z-index: 1;
}

.home-hero__col {
	position: relative;
	z-index: 2;
	max-width: 72%;
}

.home-hero__title {
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 48px;
	line-height: 1.2;
	color: #dddddd;
	text-transform: uppercase;
	margin: 0 0 18px;
}

.home-hero__subtitle {
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	color: #dddddd;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 32px;
	padding-left: 30px;
}

.home-hero__lead {
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
	color: #dddddd;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 14px;
}

.home-hero__list {
	font-family: var(--font-sans);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.5;
	color: #dddddd;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 32px;
	padding-left: 30px;
}

.home-hero__buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 460px;
}

.home-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 28px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	color: #343434 !important;
	font-family: var(--font-sans);
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-hero__btn:hover {
	background-color: #f2f2f2;
	border-color: #cccccc;
	text-decoration: none;
}

.home-hero__btn-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ff1b25;
	flex-shrink: 0;
}

@media (max-width: 1100px) {
	.home-hero__col { max-width: 65%; }
}

@media (max-width: 768px) {
	.home-hero__inner { min-height: 480px; padding: 5vh 0; }
	.home-hero__inner::before {
		background: linear-gradient(180deg, rgba(66,57,50,0.92) 0%, rgba(109,102,97,0.6) 100%);
	}
	.home-hero__col { max-width: 100%; }
	.home-hero__title { font-size: 22px; }
	.home-hero__subtitle,
	.home-hero__lead { font-size: 14px; }
	.home-hero__list { font-size: 16px; padding-left: 16px; }
}
