.home-hero{
	position:relative;
	height: calc(100vh - 230px);
	min-height: 490px;
	display:flex;
	align-items:flex-end;
	padding: 110px 0 120px;
	overflow:hidden;
}

.home-hero__media{
	position:absolute;
	inset:0;
	background:#0a3020;
}

.home-hero__media img{
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
}

.home-hero__media::after{
	content:"";
	position:absolute;
	inset:0;
	background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.50) 100%);
}

/* Blue polygon â€” sits behind the text */
.home-hero__overlay{
	position:absolute;
	bottom:0;
	left:0;
	width: 623px;
	height: 399px;
	background:var(--brand-blue);
	clip-path: polygon(0 0, 100% 0, 100% 346px, 0 1047px);
}

/* Content sits ON TOP of the blue overlay */
.home-hero__content{
	position:relative;
	z-index:2;
	text-align:left;
	max-width: 580px;
	width: auto;
	padding: 0 0 20px 0;
	margin: 0;
	margin-left: max(40px, 60px);
}

.home-hero__title{
	color:#ffffff;
	font-family: var(--serif);
	font-size: 46px;
	font-weight: 600;
	line-height: 1.3;
	text-shadow:0 4px 16px rgba(0,0,0,.22);
	margin-bottom: 30px;
}
.home-hero__title span {
	position: relative;
	display: inline-block;
}
.home-hero__title span:after {
	content: '';
	display: block;
	background-image: url(../../../assets/img/price-line.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 9px;
}

/* CTA â€” square button with triangle point on right */
.home-hero__cta{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 12px 28px;
	border-radius: 0!important;
	margin-right: 18px;
}
.home-hero__cta::after{
	content: "";
	position: absolute;
	top: -1px;
	right: -34px;
	width: 34px;
	height: calc(100% + 2px);
	background: var(--brand-yellow);
	clip-path: polygon(0 0, 0% 0, 100% 0, 0 100%);
	transition: all .3s ease;
}
.home-hero__cta:hover::after { background: #fff }

.home-hero__lines{
	position:absolute;
	bottom:0;
	left:0;
	width: 250%;
	z-index:3;
	line-height:0;
	opacity:.8;
}
.home-hero__lines img{
	width:100%;
	height: 75px;
	object-fit: cover;
}
@media (max-width: 1400px) {
	.home-hero {
		padding: 60px 0;
	}
	.home-hero__title {
		font-size: 40px;
	}
	.home-hero__cta {
		font-size: 18px
	}
	.home-hero__overlay {
		width: 500px;
		height: 300px;
		clip-path: polygon(0 0, 100% 0, 100% 80%, 0 240%);
	}
	.home-hero__content {
		padding: 0 30px;
		margin: 0;
	}
	.home-hero__lines {
		height: 30px
	}
}
@media (max-width: 991px){
	.home-hero{padding: 0 0 40px;}
	.home-hero__title{ font-size:40px; }
	.home-hero__overlay{width: 450px;height: 260px;}
	.home-hero__content{}
}
@media (max-width: 520px){
	.home-hero__title{font-size: 27px;padding: 0 0;margin: 0 0 20px;}
	.home-hero__cta{ font-size:14px; padding:10px 22px; margin-right: 14px; }
	.home-hero__cta::after{/* right: -14px; *//* border-top-width: 38px; *//* border-left-width: 14px; */}
	.home-hero__overlay{width: 90%;height: 220px;}
	.home-hero__content{margin-left: 0;width: 90%;padding: 0 20px;}
}

.menu > .container {
	width: 100%!important;
	max-width: 100%!important;
}