/* Homepage trust benefits */

.lg-home {
	padding: 28px 0 64px;
}

.lg-home-intro > .lg-container,
.lg-home-about > .lg-container {
	padding-right: var(--lg-page-gutter);
	padding-left: var(--lg-page-gutter);
}

.lg-home-intro {
	padding: 34px 0 18px;
}

.lg-home-intro__eyebrow,
.lg-home-about__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--lg-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lg-home-intro h1 {
	max-width: 900px;
	margin: 0;
	color: var(--lg-navy);
	font-size: clamp(2rem, 2.7vw + 1rem, 4rem);
	font-weight: 700;
	letter-spacing: -.035em;
	line-height: 1.04;
}

.lg-home-intro p {
	max-width: 820px;
	margin: 18px 0 0;
	color: var(--lg-gray);
	font-size: clamp(1rem, .4vw + .9rem, 1.2rem);
	line-height: 1.65;
}

.lg-home-trust > .lg-container {
	padding-right: var(--lg-page-gutter);
	padding-left: var(--lg-page-gutter);
}

.lg-home-trust {
	margin-top: 72px;
}

.lg-home-trust__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--lg-border);
	border: 1px solid rgba(39, 57, 96, .08);
	border-radius: 16px;
	box-shadow: 0 12px 36px rgba(20, 35, 64, .07);
	overflow: hidden;
}

.lg-home-trust__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	padding: 20px 24px;
	background: #fff;
}

.lg-home-trust__item:not(:last-child)::after {
	display: none;
}

.lg-home-trust__icon {
	display: flex;
	flex: 0 0 58px;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	color: var(--lg-orange);
	background: rgba(243, 83, 33, .1);
	border-radius: 50%;
}

.lg-home-trust__icon svg {
	display: block;
	width: 31px;
	height: 31px;
	fill: currentColor;
}

.lg-home-trust__text {
	min-width: 0;
}

.lg-home-trust__text h3 {
	margin: 0 0 5px;
	color: var(--lg-navy);
	font-size: clamp(1rem, .35vw + .9rem, 1.18rem);
	font-weight: 600;
	line-height: 1.2;
}

.lg-home-trust__text p {
	margin: 0;
	color: var(--lg-gray);
	font-size: 14px;
	line-height: 1.45;
}

.lg-home__content {
	padding-top: 48px;
}

/* Homepage news and offers */

.lg-home-news {
	padding-top: 72px;
}

.lg-home-news__heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
}

.lg-home-news__eyebrow {
	display: block;
	margin-bottom: 7px;
	color: var(--lg-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lg-home-news__heading h2 {
	margin: 0;
	color: var(--lg-navy);
	font-size: clamp(1.55rem, 1.2vw + 1.1rem, 2.2rem);
	font-weight: 650;
	line-height: 1.15;
}

.lg-home-news__all,
.lg-home-news__read {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--lg-orange);
	font-weight: 700;
	text-decoration: none;
}

.lg-home-news__all {
	min-height: 42px;
	white-space: nowrap;
}

.lg-home-news__all span,
.lg-home-news__read span {
	transition: transform .2s ease;
}

.lg-home-news__all:hover span,
.lg-home-news__read:hover span {
	transform: translateX(4px);
}

.lg-home-news__grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.lg-home-news__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid rgba(39, 57, 96, .1);
	border-radius: 0;
	background: #fff;
	box-shadow: 0 12px 34px rgba(20, 35, 64, .07);
	transition: transform .2s ease, box-shadow .2s ease;
}

.lg-home-news__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(20, 35, 64, .12);
}

.lg-home-news__image {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #fff;
	color: var(--lg-navy);
	font: 700 36px/1 var(--lg-font-heading);
}

.lg-home-news__image img {
	display: block;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	object-fit: contain;
	padding: 14px;
	transition: transform .35s ease;
}

.lg-home-news__card:hover .lg-home-news__image img {
	transform: scale(1.035);
}

.lg-home-news__body {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	min-width: 0;
	aspect-ratio: 1 / 1;
	box-sizing: border-box;
	padding: 16px;
}

.lg-home-news__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin-bottom: 8px;
	color: var(--lg-gray);
	font-size: 11px;
}

.lg-home-news__meta span {
	color: var(--lg-orange);
	font-weight: 700;
	text-transform: uppercase;
}

.lg-home-news__body h3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 650;
	line-height: 1.25;
}

.lg-home-news__body h3 a {
	color: var(--lg-navy);
	text-decoration: none;
}

.lg-home-news__body p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	margin: 0 0 10px;
	color: var(--lg-gray);
	font-size: 12px;
	line-height: 1.45;
}

.lg-home-news__read {
	margin-top: auto;
	font-size: 12px;
}

/* Homepage category cards */

.lg-home-categories {
	padding-top: 58px;
}

.lg-home-categories > .lg-container {
	padding-right: var(--lg-page-gutter);
	padding-left: var(--lg-page-gutter);
}

.lg-home-categories__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 26px;
	text-align: center;
}

.lg-home-categories__eyebrow {
	margin-bottom: 7px;
	color: var(--lg-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .11em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lg-home-categories__heading h2 {
	margin: 0;
	color: var(--lg-navy);
	font-size: clamp(1.55rem, 1.2vw + 1.1rem, 2.2rem);
	font-weight: 650;
	line-height: 1.15;
}

.lg-home-categories__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.lg-home-category-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(39, 57, 96, .09);
	border-radius: 14px;
	box-shadow: 0 7px 24px rgba(20, 35, 64, .055);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.lg-home-category-card:hover {
	border-color: rgba(243, 83, 33, .32);
	box-shadow: 0 16px 34px rgba(20, 35, 64, .11);
	transform: translateY(-4px);
}

.lg-home-category-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	min-height: 0;
	overflow: hidden;
	background: linear-gradient(145deg, #fff 10%, #f5f6f8 100%);
}

.lg-home-category-card__image {
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px;
	object-fit: contain;
	object-position: center;
	transform: translateY(-3%);
	transition: transform .28s ease;
}

.lg-home-category-card:hover .lg-home-category-card__image {
	transform: translateY(-3%) scale(1.045);
}

.lg-home-category-card__placeholder {
	display: block;
	width: 82px;
	height: 82px;
	margin: auto;
	fill: none;
	stroke: rgba(39, 57, 96, .28);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
}

.lg-home-category-card__body {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 72px;
	padding: 18px 20px;
	border-top: 1px solid var(--lg-border);
}

.lg-home-category-card__title {
	min-width: 0;
	color: var(--lg-navy);
	font-family: var(--lg-font-heading);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	overflow-wrap: anywhere;
}

.lg-home-category-card__arrow {
	display: flex;
	flex: 0 0 32px;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-left: auto;
	color: #fff;
	background: var(--lg-orange);
	border-radius: 50%;
	transition: background .2s ease, transform .2s ease;
}

.lg-home-category-card__arrow svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.lg-home-category-card:hover .lg-home-category-card__arrow {
	background: var(--lg-orange-2);
	transform: translateX(3px);
}

@media (max-width: 1080px) {
	.lg-home-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Homepage product tabs */

.lg-home-product-tabs {
	padding-top: 72px;
}

.lg-home-product-tabs > .lg-container {
	padding-right: var(--lg-page-gutter);
	padding-left: var(--lg-page-gutter);
}

.lg-home-product-tabs__header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 18px;
}

.lg-home-product-tabs__eyebrow {
	display: block;
	margin-bottom: 14px;
	color: var(--lg-orange);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1.4;
}

.lg-home-product-tabs__intro-title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.75rem, 1.4vw + 1rem, 2.75rem);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.08;
}

/* Homepage business entity and showroom */

.lg-home-about {
	padding-top: 72px;
}

.lg-home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
	gap: 42px;
	align-items: start;
}

.lg-home-about__content h2 {
	max-width: 760px;
	margin: 0 0 22px;
	color: var(--lg-navy);
	font-size: clamp(1.7rem, 1.4vw + 1rem, 2.65rem);
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.12;
}

.lg-home-about__copy {
	color: var(--lg-gray);
	font-size: 16px;
	line-height: 1.75;
}

.lg-home-about__copy p {
	margin: 0 0 16px;
}

.lg-home-about__copy p:last-child {
	margin-bottom: 0;
}

.lg-home-about__copy a {
	color: var(--lg-orange);
	font-weight: 650;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.lg-home-showroom {
	overflow: hidden;
	background: var(--lg-navy);
	color: #fff;
}

.lg-home-showroom__image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.lg-home-showroom__body {
	padding: 28px;
}

.lg-home-showroom__body h3 {
	margin: 0 0 10px;
	color: #fff;
	font-size: 1.45rem;
	line-height: 1.2;
}

.lg-home-showroom__body p {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 14px;
	line-height: 1.6;
}

.lg-home-showroom__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
	margin-top: 22px;
}

.lg-home-showroom__actions a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--lg-orange);
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
}

.lg-home-product-tabs__nav {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	padding: 4px;
	overflow-x: auto;
	background: #ebeef1;
	border-radius: 999px;
	scrollbar-width: none;
}

.lg-home-product-tabs__nav::-webkit-scrollbar {
	display: none;
}

.lg-home-product-tabs__tab {
	min-height: 44px;
	padding: 9px 21px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--lg-gray);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.lg-home-product-tabs__tab.is-active {
	background: #fff;
	box-shadow: 0 2px 9px rgba(20, 35, 64, .14);
	color: var(--lg-navy);
}

.lg-home-product-tabs__tab:focus-visible {
	outline: 2px solid var(--lg-orange);
	outline-offset: 2px;
}

.lg-home-product-tabs__panel ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lg-home-product-tabs .lg-archive-card {
	border-color: #e2e5e9;
}

.lg-home-product-tabs__intro-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
	justify-content: space-between;
	gap: 36px;
	padding: 30px;
	overflow: hidden;
	background: var(--lg-navy);
	border: 1px solid var(--lg-navy);
	color: #fff;
}

.lg-home-product-tabs__intro-card::after {
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 230px;
	height: 230px;
	background: rgba(243, 83, 33, .16);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 50%;
	content: '';
	pointer-events: none;
}

.lg-home-product-tabs__intro-card > * {
	position: relative;
	z-index: 1;
}

.lg-home-product-tabs__cta {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	justify-content: center;
	gap: 13px;
	min-height: 48px;
	padding: 12px 24px;
	background: var(--lg-orange);
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	transition: background .18s ease, transform .18s ease;
}

.lg-home-product-tabs__cta:hover {
	background: var(--lg-orange-2);
	color: #fff;
	transform: translateY(-2px);
}

.lg-home-product-tabs__cta span {
	font-size: 18px;
}

@media (max-width: 1080px) {
	.lg-home-product-tabs__panel ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.lg-home-product-tabs {
		padding-top: 56px;
	}

	.lg-home-product-tabs__nav {
		max-width: 100%;
	}
}

@media (max-width: 820px) {
	.lg-home-product-tabs__panel ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.lg-home-product-tabs__intro-title {
		font-size: clamp(1.85rem, 9vw, 2.55rem);
	}

	.lg-home-product-tabs__header {
		margin-bottom: 22px;
	}

	.lg-home-product-tabs__nav {
		width: 100%;
	}

	.lg-home-product-tabs__tab {
		flex: 0 0 auto;
		min-height: 40px;
		padding: 8px 16px;
		font-size: 13px;
	}

	.lg-home-product-tabs__panel ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg-home-product-tabs__cta {
		width: 100%;
	}

	.lg-home-product-tabs__intro-card {
		min-height: 360px;
		padding: 26px;
	}
}

@media (max-width: 900px) {
	.lg-home-about__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.lg-home-news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg-home-news__image {
		flex-basis: auto;
		min-height: 0;
	}

	.lg-home-trust__item {
		gap: 13px;
		padding: 24px 18px;
	}

	.lg-home-trust__icon {
		flex-basis: 50px;
		width: 50px;
		height: 50px;
	}

	.lg-home-trust__icon svg {
		width: 27px;
		height: 27px;
	}
}

@media (max-width: 700px) {
	.lg-home {
		padding-top: 18px;
	}

	.lg-home-intro {
		padding-top: 22px;
	}

	.lg-home-intro p {
		margin-top: 14px;
		font-size: 15px;
		line-height: 1.55;
	}

	.lg-home-about {
		padding-top: 48px;
	}

	.lg-home-showroom__body {
		padding: 22px;
	}

	.lg-home-trust {
		margin-top: 48px;
	}

	.lg-home-news {
		padding-top: 48px;
	}

	.lg-home-news__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
		margin-bottom: 20px;
	}

	.lg-home-news__all {
		min-height: 36px;
	}

	.lg-home-news__card {
		flex-direction: column;
	}

	.lg-home-news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.lg-home-news__image {
		flex-basis: auto;
		width: 100%;
		min-height: 0;
		aspect-ratio: 1 / 1;
	}

	.lg-home-news__image img {
		padding: 8px;
	}

	.lg-home-news__body {
		padding: 10px;
	}

	.lg-home-news__meta {
		gap: 3px 6px;
		margin-bottom: 6px;
		font-size: 9px;
	}

	.lg-home-news__body h3 {
		-webkit-line-clamp: 3;
		margin-bottom: 6px;
		font-size: 12px;
		line-height: 1.2;
	}

	.lg-home-news__body p {
		display: none;
	}

	.lg-home-news__read {
		gap: 4px;
		font-size: 10px;
	}

	.lg-home-trust__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 12px;
	}

	.lg-home-trust__item {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding: 14px;
	}

	.lg-home-trust__icon {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
	}

	.lg-home-trust__icon svg {
		width: 23px;
		height: 23px;
	}

	.lg-home-trust__text h3 {
		font-size: 14px;
	}

	.lg-home-trust__text p {
		font-size: 12px;
		line-height: 1.35;
	}

	.lg-home__content {
		padding-top: 36px;
	}

	.lg-home-categories {
		padding-top: 44px;
	}

	.lg-home-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.lg-home-categories__heading {
		margin-bottom: 20px;
	}

	.lg-home-category-card__body {
		min-height: 66px;
		padding: 14px;
	}

	.lg-home-category-card__title {
		font-size: 14px;
	}

	.lg-home-category-card__arrow {
		flex-basis: 28px;
		width: 28px;
		height: 28px;
		font-size: 16px;
	}

	.lg-home-category-card__image {
		padding: 12px;
	}
}
