/* ========================================================
	GREENHUB WEBSITE 2026
	HOMEPAGE MASTER CSS
======================================================== */



/* ============================
	BASE
============================ */

:root {
	--gh-black: #111111;
	--gh-border: #E8E4DD;
	--gh-brown: #BFA27D;
	--gh-brown-dark: #A9875F;
	--gh-cream: #F6F3ED;
	--gh-green: #B8E64F;
	--gh-green-dark: #95CB1C;
	--gh-grey-dark: #3A3A3A;
	--gh-grey: #6E6E6E;
	--gh-light: #FAF9F6;
	--gh-line: #E7E2D9;
	--gh-link: #10C5D3;
	--gh-white: #FFFFFF;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--gh-light);
	color: var(--gh-black);
	margin: 0;
	padding: 0;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all .3s ease;
}

a:hover {
	text-decoration: none;
}

.site--container {
	max-width: 1840px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-style: normal;
	line-height: 1.05;
	margin: 0;
}

p,
li,
span,
label,
input,
button {
	font-family: 'Eina 01', Arial, sans-serif;
}

p {
	color: var(--gh-black);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
}

.gh--sectionlabel {
	color: var(--gh-brown-dark);
	display: inline-block;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: .1rem;
	line-height: 1;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.gh--sectiontitle {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: clamp(2rem, 3vw, 3.15rem);
	font-weight: 800;
	letter-spacing: -.02rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	text-align: center;
}

.gh--sectiontext {
	color: var(--gh-grey-dark);
	font-size: 1.25rem;
	line-height: 1.7;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.gh--button {
	align-items: center;
	border: 1.5px solid transparent;
	border-radius: 10rem;
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .015rem;
	line-height: 1;
	min-height: 56px;
	padding: .95rem 1.45rem 1rem 1.45rem;
	transition: all .3s ease;
	white-space: nowrap;
}

.gh--button--primary {
	background-color: var(--gh-green);
	border-color: var(--gh-green);
	color: var(--gh-black);
}

.gh--button--primary:hover {
	background-color: var(--gh-black);
	border-color: var(--gh-black);
	color: var(--gh-white);
}

.gh--button--secondary {
	background-color: transparent;
	border-color: var(--gh-black);
	color: var(--gh-black);
}

.gh--button--secondary:hover {
	background-color: var(--gh-black);
	border-color: var(--gh-black);
	color: var(--gh-white);
}

.gh--button--neutral {
	background-color: #D8D3CB;
	border-color: #D8D3CB;
	color: var(--gh-black);
}

.gh--button--neutral:hover {
	background-color: var(--gh-black);
	border-color: var(--gh-black);
	color: var(--gh-white);
}



/* ============================
	TOPBAR
============================ */

.site--topbar {
	background-color: var(--gh-white);
	border-bottom: 1px solid var(--gh-line);
	padding: 1rem 0;
	position: relative;
	z-index: 1040;
}

.topbar--actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	justify-content: flex-end;
}

.topbar--button {
	align-items: center;
	border: 1.5px solid transparent;
	border-radius: 10rem;
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: .8rem 1.2rem .85rem 1.2rem;
	transition: all .3s ease;
	white-space: nowrap;
}

.topbar--button--retailer {
	background-color: var(--gh-brown);
	border-color: var(--gh-brown);
	color: var(--gh-white);
}

.topbar--button--retailer:hover {
	background-color: var(--gh-black);
	border-color: var(--gh-black);
	color: var(--gh-white);
}

.topbar--button--shop {
	background-color: var(--gh-green-dark);
	border-color: var(--gh-green-dark);
	color: var(--gh-white);
}

.topbar--button--shop:hover {
	background-color: var(--gh-black);
	border-color: var(--gh-black);
	color: var(--gh-white);
}

.topbar--contact {
	align-items: center;
	display: flex;
	height: 100%;
}

.topbar--language {
	align-items: center;
	background-color: var(--gh-white);
	border: 1px solid var(--gh-line);
	border-radius: 50%;
	color: var(--gh-grey);
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: .82rem;
	font-weight: 700;
	height: 38px;
	justify-content: center;
	line-height: 1;
	width: 38px;
}

.topbar--language.active {
	border-color: #CFC7BB;
	color: var(--gh-black);
}

.topbar--language:hover {
	border-color: #CFC7BB;
	color: var(--gh-black);
}

.topbar--languages {
	align-items: center;
	display: flex;
	gap: .35rem;
}

.topbar--search {
	height: 100%;
}

.topbar--searchbutton {
	align-items: center;
	background-color: transparent;
	border: none;
	color: var(--gh-grey);
	display: inline-flex;
	font-size: 1rem;
	height: 100%;
	justify-content: center;
	min-width: 54px;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: all .3s ease;
}

.topbar--searchbutton:hover {
	color: var(--gh-black);
}

.topbar--searchform {
	position: relative;
	width: 100%;
}

.topbar--searchinput {
	background-color: var(--gh-light);
	border: 1.5px solid var(--gh-line);
	border-radius: 10rem;
	color: var(--gh-black);
	font-size: 1rem;
	height: 48px;
	padding: .85rem 3.2rem .9rem 1.2rem;
	transition: all .3s ease;
	width: 100%;
}

.topbar--searchinput:focus {
	background-color: var(--gh-white);
	border-color: var(--gh-black);
	box-shadow: none;
	outline: none;
}

.topbar--searchinput::placeholder {
	color: #949494;
	opacity: 1;
}

.topbar--utilitylink {
	align-items: center;
	color: var(--gh-black);
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	gap: .6rem;
	line-height: 1;
}

.topbar--utilitylink:hover {
	color: var(--gh-link);
}

.topbar--utilitylink i {
	font-size: 1.2rem;
}

@media (max-width: 1199px) {
	.topbar--actions {
		justify-content: flex-start;
	}

	.topbar--button {
		min-height: 46px;
		padding: .85rem 1.05rem .9rem 1.05rem;
	}
}

@media (max-width: 767px) {
	.topbar--actions {
		flex-direction: column;
		align-items: stretch;
	}

	.topbar--button {
		width: 100%;
	}

	.topbar--utilitylink {
		font-size: 1.15rem;
	}
}


/* ============================
	NAVIGATION
============================ */

.site--brand {
	align-items: center;
	display: inline-flex;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
}

.site--brandlogo {
	height: 82px;
	object-fit: contain;
	width: auto;
}

.site--nav {
	background-color: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(232, 228, 221, .65);
	padding: 1.05rem 0;
	position: sticky;
	top: 0;
	z-index: 1035;
}

.site--navcontainer {
	align-items: center;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.site--navitem {
	list-style: none;
}

.site--navlink {
	color: var(--gh-black);
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.45rem;
	font-weight: 700;
	letter-spacing: .035rem;
	line-height: 1;
	padding: .75rem 0;
	position: relative;
	transition: all .3s ease;
	white-space: nowrap;
}

.site--navlink.active,
.site--navlink:hover {
	color: var(--gh-link);
}

.site--navlist {
	align-items: center;
	display: flex;
	gap: 3rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--navtoggler {
	align-items: center;
	background-color: transparent;
	border: none;
	box-shadow: none;
	display: inline-flex;
	flex-direction: column;
	gap: .3rem;
	justify-content: center;
	padding: .35rem 0 .35rem .75rem;
	position: relative;
	z-index: 2;
}

.site--navtoggler:focus {
	box-shadow: none;
	outline: none;
}

.site--navtogglerline {
	background-color: var(--gh-black);
	border-radius: 10rem;
	display: block;
	height: 2px;
	transition: all .3s ease;
	width: 28px;
}

.site--navtoggler:hover .site--navtogglerline {
	background-color: var(--gh-link);
}



/* ============================
	OFFCANVAS
============================ */

.site--offcanvas {
	background-color: var(--gh-white);
	border-left: 1px solid var(--gh-line);
	width: min(100%, 430px) !important;
	z-index: 2000 !important;
}

.site--offcanvasactions {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	margin-top: 2rem;
}

.site--offcanvasbody {
	display: flex;
	flex-direction: column;
	padding: 2rem 1.5rem 2rem 1.5rem;
}

.site--offcanvasclose:focus {
	box-shadow: none;
	outline: none;
}

.site--offcanvasheader {
	border-bottom: 1px solid var(--gh-line);
	padding: 1.5rem 1.5rem 1.25rem 1.5rem;
}

.site--offcanvaslink {
	color: var(--gh-black);
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.15;
	padding: .1rem 0;
	transition: all .3s ease;
}

.site--offcanvaslink.active,
.site--offcanvaslink:hover {
	color: var(--gh-link);
}

.site--offcanvasnav {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
	list-style: none;
	margin: 2rem 0 0 0;
	padding: 0;
}

.site--offcanvassearch {
	margin-top: .25rem;
}

.site--offcanvastitle {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.3rem;
	font-weight: 800;
	line-height: 1;
}

@media (max-width: 1199px) {
	.site--brandlogo {
		height: 62px;
	}
}

@media (max-width: 575px) {
	.site--offcanvasbody {
		padding: 1.75rem 1.15rem 1.5rem 1.15rem;
	}

	.site--offcanvasheader {
		padding: 1.15rem 1.15rem 1rem 1.15rem;
	}

	.site--offcanvaslink {
		font-size: 1.45rem;
	}
}


/* ============================
	NAVIGATION RESPONSIVE
============================ */

@media (max-width: 1199px) {
	.site--brandlogo {
		height: 58px;
	}
}

@media (max-width: 575px) {
	.site--offcanvasbody {
		padding: 1.75rem 1.15rem 1.5rem 1.15rem;
	}

	.site--offcanvasheader {
		padding: 1.15rem 1.15rem 1rem 1.15rem;
	}
}



/* ============================
	HERO
============================ */

.home--hero {
	align-items: center;
	display: flex;
	min-height: 840px;
	overflow: hidden;
	position: relative;
}

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

.home--heroimagebox {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.home--heroinner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1500px;
	padding: 10rem 0 8rem 0;
	position: relative;
	z-index: 3;
}

.home--herooverlay {
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.30) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.home--herobuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.home--herocontent {
	position: relative;
	z-index: 2;
}

.home--heroimagebox::after {
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 60%);
	content: "";
	inset: 0;
	position: absolute;
}

.home--herotext {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.1rem, 1.4vw, 1.35rem);
	line-height: 1.75;
	margin-left: auto;
	margin-right: auto;
	max-width: 860px;
}

.home--herotitle {
	color: var(--gh-white);
	font-size: clamp(3rem, 5vw, 5.5rem);
	font-weight: 800;
	letter-spacing: .025rem;
	line-height: 1;
	margin-bottom: 1.25rem;
}

.home--eyebrow {
	color: var(--gh-green);
	display: inline-block;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: .16rem;
	line-height: 1;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}



/* ============================
	PAGE HERO
============================ */

.page--hero {
	align-items: center;
	display: flex;
	min-height: 500px;
	overflow: hidden;
	position: relative;
}

.page--heroimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.page--heroimagebox {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.page--heroimagebox::after {
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 62%);
	content: "";
	inset: 0;
	position: absolute;
}

.page--heroinner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1500px;
	padding: 7rem 0 5rem 0;
	position: relative;
	z-index: 3;
}

.page--herooverlay {
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.15) 0%, rgba(17, 17, 17, 0.30) 100%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.page--herocontent {
	position: relative;
	z-index: 2;
}

.page--herotext {
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 1.2vw, 1.25rem);
	line-height: 1.75;
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
}

.page--herotitle {
	color: var(--gh-white);
	font-size: clamp(2.75rem, 4.2vw, 4.5rem);
	font-weight: 800;
	letter-spacing: .015rem;
	line-height: 1.02;
	margin-bottom: 1.1rem;
}

.page--eyebrow {
	color: var(--gh-green);
	display: inline-block;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: .15rem;
	line-height: 1;
	margin-bottom: 1.35rem;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	.page--hero {
		min-height: 430px;
	}

	.page--heroinner {
		padding: 6rem 0 4rem 0;
	}
}

@media (max-width: 767px) {
	.page--hero {
		min-height: 380px;
	}

	.page--heroinner {
		padding: 5rem 0 3.5rem 0;
	}

	.page--herotitle {
		line-height: 1.05;
	}

	.page--herotext {
		font-size: 1rem;
		line-height: 1.7;
	}
}

@media (max-width: 575px) {
	.page--hero {
		min-height: 340px;
	}

	.page--heroinner {
		padding: 4.5rem 0 3rem 0;
	}
}

@media (min-width: 2000px) {
	.page--hero {
		min-height: 560px;
	}
}



/* ============================
	HERO BUTTONS
============================ */

.home--herobuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2rem;
}

.gh--button--secondaryhero {
	background-color: var(--gh-white);
	border-color: var(--gh-white);
	color: var(--gh-black);
}

.gh--button--secondaryhero:hover {
	background-color: var(--gh-green);
	border-color: var(--gh-green);
	color: var(--gh-black);
}



/* ============================
	INTRO
============================ */

.page--intro {
	padding: 7rem 0 3.5rem 0;
}

.page--intro .gh--sectiontext {
	font-size: 1.35rem;
	line-height: 1.7;
}



/* ============================
	PAGE PARAGRAPH
============================ */

.page--paragraph {
	background-color: var(--gh-white);
	padding: 6rem 0;
}

.page--paragraphbuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.page--paragraphcontent .gh--sectiontext {
	margin-left: 0;
	max-width: none;
}

.page--paragraphimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.page--paragraphimagebox {
	aspect-ratio: 1 / .82;
	border-radius: 2rem;
	overflow: hidden;
	width: 100%;
}

@media (max-width: 767px) {
	.page--paragraph {
		padding: 5rem 0;
	}

	.page--paragraphbuttons {
		flex-direction: column;
	}
}

@media (max-width: 575px) {
	.page--paragraph {
		padding: 4rem 0;
	}

	.page--paragraphimagebox {
		border-radius: 1.5rem;
	}
}



/* ============================
	PAGE NEWS
============================ */

.page--news {
	background-color: var(--gh-light);
	padding: 5rem 0 7rem 0;
}

.page--newscontent {
	max-width: 920px;
}

.page--newsdate {
	background-color: #FFF;
	border: 1px solid rgba(149, 203, 28, 0.5);
	border-radius: 10rem;
	color: var(--gh-green-dark);
	display: inline-flex;
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
	padding: .5rem .85rem .55rem .85rem;
}

.page--newsimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.page--newsimagebox {
	aspect-ratio: 1 / .78;
	border-radius: 2rem;
	overflow: hidden;
	width: 100%;
}

.page--newsparagraph+.page--newsparagraph {
	margin-top: 4.5rem;
}

.page--newstext {
	color: var(--gh-grey-dark);
	font-size: 1.2rem;
	line-height: 1.8;
	margin: 0;
}

.page--newstitle {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: clamp(2rem, 2.2vw, 2.5rem);
	font-weight: 800;
	letter-spacing: -.015rem;
	line-height: 1.15;
	margin-bottom: 1.2rem;
}

@media (max-width: 991px) {
	.page--news {
		padding: 4.5rem 0 6rem 0;
	}

	.page--newsparagraph+.page--newsparagraph {
		margin-top: 3.5rem;
	}
}

@media (max-width: 767px) {
	.page--newstext {
		font-size: 1.05rem;
		line-height: 1.8;
	}

	.page--newstitle {
		font-size: 1.9rem;
		line-height: 1.2;
		margin-bottom: 1rem;
	}
}

@media (max-width: 575px) {
	.page--news {
		padding: 4rem 0 5rem 0;
	}

	.page--newsimagebox {
		border-radius: 1.5rem;
	}

	.page--newsparagraph+.page--newsparagraph {
		margin-top: 3rem;
	}
}



/* ============================
	FACTS
============================ */

.page--facts {
	padding: 0 0 7rem 0;
}

.page--factcard {
	background-color: var(--gh-white);
	border: 1px solid var(--gh-line);
	border-radius: 2rem;
	box-shadow: 0 10px 30px rgba(17, 17, 17, 0.03);
	height: 100%;
	padding: 2rem 1.75rem;
	text-align: center;
}

.page--factcard h3 {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: clamp(2rem, 2.25vw, 2.5rem);
	font-weight: 800;
	letter-spacing: .0125rem;
	line-height: 1;
	margin-bottom: .65rem;
}

.page--factcard p {
	color: var(--gh-grey);
	font-size: 1.125rem;
	line-height: 1.6;
}



/* ============================
	BRANDS
============================ */

.page--brands {
	background-color: var(--gh-cream);
	padding: 6rem 0 5rem 0;
}

.page--brandcard {
	background-color: var(--gh-white);
	border: 1px solid var(--gh-line);
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: all .3s ease;
}

.page--brandcard:hover {
	box-shadow: 0 18px 38px rgba(17, 17, 17, 0.08);
	transform: translateY(-6px);
}

.page--brandcontent {
	padding: 1.8rem 1.4rem 1.85rem 1.4rem;
}

.page--brandfilter {
	background-color: var(--gh-white);
	border: 1.5px solid var(--gh-line);
	border-radius: 10rem;
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1;
	min-height: 54px;
	padding: .85rem 1.35rem .9rem 1.35rem;
	transition: all .3s ease;
}

.page--brandfilter.active,
.page--brandfilter:hover {
	background-color: var(--gh-green);
	border-color: var(--gh-green);
	color: var(--gh-black);
}

.page--brandfilters {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
	justify-content: center;
	margin: 2.25rem 0 3rem 0;
}

.page--brandgrid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page--brandimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: all .3s ease;
	width: 100%;
}

.page--brandimagebox {
	aspect-ratio: 1 / .85;
	background-color: #F1EEE9;
	overflow: hidden;
	width: 100%;
}

.page--brandtitle {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: .01rem;
	line-height: 1.2;
	margin: 0;
	text-align: center;
}

.page--brandcard:hover .page--brandimage {
	transform: scale(1.04);
}

@media (max-width: 1399px) {
	.page--brandgrid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.page--brandgrid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.page--brandfilters {
		align-items: stretch;
		flex-direction: column;
	}

	.page--brandfilter {
		width: 100%;
	}

	.page--brandgrid {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}



/* ============================
	SHELVES
============================ */

.page--shelves {
	background-color: var(--gh-light);
	padding: 7rem 0;
}

.page--shelfscard {
	border-radius: 2rem;
	overflow: hidden;
}

.page--shelvesbuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
}

.page--shelvesgrid {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page--shelvesgrid--four .page--shelfscard {
	aspect-ratio: 1 / .75;
}

.page--shelvesimage {
	height: 100%;
	object-fit: cover;
	object-position: center center;
	width: 100%;
}

.page--shelvestext .gh--sectiontext {
	margin-left: 0;
	max-width: none;
}

@media (max-width: 767px) {
	.page--shelvesbuttons {
		flex-direction: column;
	}
}



/* ============================
	CUSTOMERS
============================ */

.page--customers {
	background-color: var(--gh-white);
	padding: 7rem 0 6rem 0;
}

.page--customerlogos {
	align-items: center;
	display: grid;
	gap: 1rem 2rem;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	list-style: none;
	margin: 3rem 0 0 0;
	padding: 0;
}

.page--customerlogos li {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 68px;
	padding: 1rem;
}

.page--customerlogos li img {
	max-height: 38px;
	object-fit: contain;
	width: 100%;
}

@media (max-width: 1399px) {
	.page--customerlogos {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.page--customerlogos {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.page--customerlogos {
		gap: .5rem 1rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 2rem;
	}
}



/* ============================
	CONTACT CTA
============================ */

.page--contactcta {
	background-color: var(--gh-cream);
	padding: 7rem 0;
}

.page--contactctabox {
	background-color: var(--gh-white);
	border: 1px solid var(--gh-line);
	border-radius: 2rem;
	padding: 2.25rem;
}

.page--contactctabox p {
	color: var(--gh-grey-dark);
	font-size: 1.125rem;
	line-height: 1.75;
}

.page--contactctabuttons {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.75rem;
}

.page--contactctaintro .gh--sectiontitle {
	margin-bottom: 0;
}



/* ============================
	FOOTER
============================ */

.site--footer {
	background-color: var(--gh-brown);
	color: var(--gh-black);
	padding-top: 4rem;
}

.site--backtotop {
	align-items: center;
	background-color: var(--gh-white);
	border-radius: 1rem;
	color: var(--gh-black);
	display: inline-flex;
	font-size: 1.15rem;
	height: 48px;
	justify-content: center;
	margin-bottom: 2.5rem;
	transition: all .3s ease;
	width: 48px;
}

.site--backtotop:hover {
	background-color: var(--gh-black);
	color: var(--gh-white);
	transform: translateY(-4px);
}

.site--footerbottom {
	background-color: rgba(255, 255, 255, .2);
	margin-top: 6rem;
	padding: 1.1rem 0;
}

.site--footerbottom p {
	color: var(--gh-black);
	font-size: .95rem;
	line-height: 1.5;
}

.site--footerbottomlinks {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: .75rem 1.75rem;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--footerbottomlinks a {
	color: var(--gh-black);
	font-size: .95rem;
	font-weight: 500;
	line-height: 1.4;
}

.site--footerbottomlinks a:hover {
	color: var(--gh-white);
}

.site--footercolumn {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.site--footercolumn h3 {
	color: var(--gh-black);
	font-family: 'Plus Jakarta Sans', Arial, sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.35rem;
}

.site--footercolumn--nav {
	max-width: 760px;
	padding-right: 2rem;
}

.site--footercontent {
	justify-content: center;
	padding-top: .75rem;
}

.site--footerdetails,
.site--footerlist,
.site--footertextactions {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site--footerdetails {
	display: flex;
	flex-direction: column;
	gap: .35rem;
}

.site--footerdetails li,
.site--footerlist li,
.site--footertextactions li {
	color: var(--gh-black);
	font-size: 1.2rem;
	line-height: 1.65;
}

.site--footerdetails a,
.site--footerlist a,
.site--footertextactions a {
	color: var(--gh-black);
}

.site--footerdetails a:hover,
.site--footerlist a:hover,
.site--footertextactions a:hover {
	color: var(--gh-white);
}

.site--footerdetails--contact {
	gap: .25rem;
}

.site--footerdetails--contact a {
	display: inline;
}

.site--footerdetails--contact i {
	font-size: 1.175rem;
	margin-right: .5rem;
	min-width: 1rem;
	text-align: center;
}

.site--footerlist--horizontal {
	align-items: center;
	column-gap: 1.75rem;
	display: flex;
	flex-wrap: wrap;
	row-gap: .45rem;
}

.site--footerlist--horizontal a {
	display: inline-flex;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.4;
}

.site--footerlogo {
	height: 100px;
	object-fit: contain;
	width: auto;
}

.site--footerlogobox {
	align-items: center;
	display: flex;
	justify-content: center;
}

.site--footerlogobox--inline {
	justify-content: flex-end;
	margin-top: 1.75rem;
}

.site--footertextactions {
	align-items: center;
	column-gap: 2rem;
	display: flex;
	flex-wrap: wrap;
	margin-top: .5rem;
	row-gap: .35rem;
}

.site--footertextactions a {
	display: inline;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1.4;
	position: relative;
}

@media (max-width: 1199px) {
	.site--footercolumn--nav {
		max-width: none;
		padding-right: 0;
	}
}

@media (max-width: 991px) {
	.site--footerbottomlinks {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.site--footer {
		padding-top: 3.25rem;
	}

	.site--footerbottom {
		margin-top: 2.5rem;
	}

	.site--footercolumn h3 {
		margin-bottom: 1rem;
	}

	.site--footerlist--horizontal,
	.site--footertextactions {
		align-items: flex-start;
		flex-direction: column;
		gap: .45rem;
	}

	.site--footerlogobox--inline {
		justify-content: flex-start;
		margin-top: 1.35rem;
	}

	.site--footerlogo {
		height: 56px;
	}
}



/* ============================
	GLOBAL RESPONSIVE
============================ */

@media (max-width: 1599px) {
	.site--container {
		padding-left: 1.35rem;
		padding-right: 1.35rem;
	}
}

@media (max-width: 991px) {
	.site--container {
		padding-left: 1.15rem;
		padding-right: 1.15rem;
	}

	.home--hero {
		min-height: 700px;
	}

	.home--heroinner {
		padding: 7.5rem 0 6rem 0;
	}
}

@media (max-width: 767px) {
	.gh--button {
		width: 100%;
	}

	.gh--sectiontext {
		font-size: 1.05rem;
		line-height: 1.7;
	}
}

@media (max-width: 575px) {
	.home--hero {
		min-height: 660px;
	}

	.home--heroinner {
		padding: 6.5rem 0 5.5rem 0;
	}

	.home--herotitle {
		letter-spacing: -.05rem;
	}

	.home--factcard,
	.home--contactctabox {
		border-radius: 1.5rem;
		padding: 1.5rem;
	}

	.home--brandcard {
		border-radius: 1.5rem;
	}
}

@media (min-width: 2000px) {
	.site--container {
		max-width: 1960px;
	}

	.home--hero {
		min-height: 920px;
	}
}