:root {
	--gj-green: #125340;
	--gj-dark-green: #083528;
	--gj-orange: #f97316;
	--gj-orange-hover: #ea580c;
	--gj-gold: #f5e6b9;
	--gj-text: #111827;
	--gj-gray: #6b7280;
	--gj-border: #e5e7eb;
	--gj-light: #f6f7f6;
	--gj-white: #fff;
	--gj-container: 1200px;
	--gj-shadow: 0 12px 32px rgba(8, 53, 40, .08);
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--gj-white);
	color: var(--gj-text);
	font-family: Montserrat, "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

a {
	color: var(--gj-green);
	text-decoration: none;
}

a:hover {
	color: var(--gj-orange-hover);
}

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

.gj-container {
	width: min(calc(100% - 48px), var(--gj-container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--gj-white);
	color: var(--gj-text);
}

.gj-site-header {
	position: relative;
	z-index: 100;
	border-bottom: 1px solid rgba(229, 231, 235, .85);
	background: var(--gj-white);
}

.gj-header-inner {
	display: grid;
	grid-template-columns: minmax(170px, auto) 1fr auto;
	align-items: center;
	min-height: 72px;
	gap: 24px;
}

.gj-brand-link,
.gj-footer-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--gj-dark-green);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
}

.gj-brand-logo {
	width: auto;
	max-width: 150px;
	height: 38px;
	object-fit: contain;
}

.gj-logo-mark {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: var(--gj-green);
	color: var(--gj-gold);
	font-weight: 800;
}

.gj-primary-menu,
.gj-primary-menu ul,
.gj-footer-menu,
.gj-sidebar-links,
.gj-link-grid {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gj-primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(14px, 1.65vw, 25px);
}

.gj-primary-menu > li {
	position: relative;
}

.gj-primary-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 72px;
	border-bottom: 2px solid transparent;
	color: var(--gj-text);
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.gj-primary-menu > li.current-menu-item > a,
.gj-primary-menu > li.current-menu-ancestor > a,
.gj-primary-menu > li > a:hover {
	border-bottom-color: var(--gj-green);
	color: var(--gj-green);
}

.gj-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: -20px;
	display: none;
	width: 260px;
	padding: 12px 0;
	border-top: 3px solid var(--gj-orange);
	background: var(--gj-white);
	box-shadow: var(--gj-shadow);
}

.gj-primary-menu li:hover > .sub-menu,
.gj-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.gj-primary-menu .sub-menu a {
	display: block;
	padding: 9px 20px;
	color: var(--gj-text);
	font-size: 12px;
	font-weight: 600;
}

.gj-primary-menu .sub-menu a:hover {
	background: var(--gj-light);
	color: var(--gj-green);
}

.gj-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 22px;
	border: 1px solid var(--gj-orange);
	border-radius: 2px;
	background: var(--gj-orange);
	color: var(--gj-white);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .035em;
	line-height: 1;
	text-transform: uppercase;
}

.gj-button:hover {
	border-color: var(--gj-orange-hover);
	background: var(--gj-orange-hover);
	color: var(--gj-white);
}

.gj-button--header {
	min-height: 36px;
	padding-inline: 17px;
	font-size: 10px;
}

.gj-button--outline {
	border-color: rgba(255, 255, 255, .75);
	background: transparent;
}

.gj-button--outline:hover {
	border-color: var(--gj-white);
	background: var(--gj-white);
	color: var(--gj-dark-green);
}

.gj-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 9px;
	border: 0;
	background: transparent;
}

.gj-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--gj-dark-green);
}

.gj-hero {
	position: relative;
	display: flex;
	min-height: 330px;
	align-items: center;
	background-color: var(--gj-dark-green);
	background-position: center;
	background-size: cover;
	color: var(--gj-white);
}

.gj-home-hero {
	min-height: 560px;
	background-image:
		linear-gradient(90deg, rgba(8, 53, 40, .97), rgba(8, 53, 40, .68) 50%, rgba(8, 53, 40, .28)),
		linear-gradient(135deg, #083528, #125340);
}

.gj-inner-hero,
.gj-case-hero,
.gj-rfq-hero {
	min-height: 315px;
	background-image: linear-gradient(120deg, #083528, #125340);
}

.gj-hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	padding-block: 72px;
}

.gj-hero h1,
.gj-article-header h1 {
	max-width: 820px;
	margin: 10px 0 15px;
	color: var(--gj-white);
	font-size: clamp(38px, 5vw, 62px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.03;
	text-transform: uppercase;
}

.gj-inner-hero h1,
.gj-case-hero h1,
.gj-rfq-hero h1 {
	font-size: clamp(34px, 4vw, 50px);
}

.gj-hero p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, .84);
	font-size: 17px;
	line-height: 1.6;
}

.gj-eyebrow {
	display: inline-block;
	color: var(--gj-gold);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.gj-eyebrow::after {
	display: inline-block;
	width: 28px;
	height: 2px;
	margin-left: 10px;
	background: var(--gj-orange);
	content: "";
	vertical-align: middle;
}

.gj-eyebrow--dark {
	color: var(--gj-green);
}

.gj-eyebrow--gold {
	color: var(--gj-gold);
}

.gj-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.gj-stat-strip {
	background: var(--gj-green);
	color: var(--gj-white);
}

.gj-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.gj-stat-grid > div {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 5px 12px;
	padding: 22px 26px;
	border-right: 1px solid rgba(255, 255, 255, .14);
}

.gj-stat-grid > div:last-child {
	border-right: 0;
}

.gj-stat-grid strong {
	grid-row: span 2;
	color: var(--gj-gold);
	font-size: 26px;
	font-weight: 800;
}

.gj-stat-grid span {
	font-size: 11px;
	line-height: 1.35;
}

.gj-breadcrumbs {
	border-bottom: 1px solid var(--gj-border);
	background: var(--gj-white);
}

.gj-breadcrumbs .gj-container {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding-block: 14px;
	color: var(--gj-gray);
	font-size: 12px;
}

.gj-content-shell {
	padding-block: 72px;
}

.gj-content-shell--home {
	padding-top: 80px;
}

.gj-prose {
	max-width: 900px;
}

.gj-prose > *:first-child {
	margin-top: 0;
}

.gj-prose h1 {
	display: none;
}

.gj-prose h2 {
	position: relative;
	margin: 64px 0 20px;
	color: var(--gj-dark-green);
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.gj-prose h2::before {
	display: block;
	width: 34px;
	height: 3px;
	margin-bottom: 12px;
	background: var(--gj-orange);
	content: "";
}

.gj-prose h3 {
	margin: 34px 0 10px;
	color: var(--gj-green);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
}

.gj-prose p,
.gj-prose li {
	color: #374151;
}

.gj-prose ul,
.gj-prose ol {
	padding-left: 22px;
}

.gj-prose li {
	margin-bottom: 7px;
}

.gj-prose li::marker {
	color: var(--gj-orange);
}

.gj-prose a {
	color: var(--gj-orange-hover);
	font-weight: 700;
}

.gj-prose > h2:nth-of-type(even) {
	margin-right: -32px;
	margin-left: -32px;
	padding: 34px 32px 0;
	background: var(--gj-light);
}

.gj-prose > h2:nth-of-type(even) ~ p {
	border-color: var(--gj-light);
}

.gj-two-column {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: start;
	gap: 56px;
}

.gj-two-column--article {
	grid-template-columns: minmax(0, 1fr) 285px;
}

.gj-sidebar {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 20px;
}

.gj-sidebar-card {
	padding: 25px;
	border: 1px solid var(--gj-border);
	background: var(--gj-light);
}

.gj-sidebar-card h2 {
	margin: 0 0 15px;
	color: var(--gj-dark-green);
	font-size: 18px;
	line-height: 1.25;
}

.gj-sidebar-card p {
	color: var(--gj-gray);
	font-size: 14px;
}

.gj-sidebar-card--green {
	border-color: var(--gj-dark-green);
	background: var(--gj-dark-green);
	color: var(--gj-white);
}

.gj-sidebar-card--green h2 {
	color: var(--gj-white);
}

.gj-sidebar-card--green p {
	color: rgba(255, 255, 255, .76);
}

.gj-sidebar-links li {
	border-top: 1px solid var(--gj-border);
}

.gj-sidebar-links a {
	display: block;
	padding: 10px 0;
	color: var(--gj-text);
	font-size: 13px;
	font-weight: 700;
}

.gj-sidebar-links a::before {
	margin-right: 8px;
	color: var(--gj-orange);
	content: "›";
}

.gj-icon-strip,
.gj-process-strip {
	border-bottom: 1px solid var(--gj-border);
	background: var(--gj-white);
}

.gj-icon-grid,
.gj-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.gj-icon-grid > div,
.gj-process-grid > div {
	display: grid;
	justify-items: center;
	gap: 6px;
	padding: 27px 15px;
	border-right: 1px solid var(--gj-border);
	text-align: center;
}

.gj-icon-grid > div:last-child,
.gj-process-grid > div:last-child {
	border-right: 0;
}

.gj-icon-grid span,
.gj-process-grid span,
.gj-rfq-benefits span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid #d6c693;
	border-radius: 50%;
	color: var(--gj-green);
	font-size: 11px;
	font-weight: 800;
}

.gj-icon-grid strong,
.gj-process-grid strong {
	color: var(--gj-dark-green);
	font-size: 12px;
}

.gj-process-grid {
	grid-template-columns: repeat(5, 1fr);
}

.gj-process-grid small {
	color: var(--gj-gray);
	font-size: 10px;
}

.gj-related-band,
.gj-blog-section {
	padding-block: 68px;
	background: var(--gj-light);
}

.gj-related-band h2 {
	margin: 8px 0 30px;
	color: var(--gj-dark-green);
	font-size: 30px;
}

.gj-link-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.gj-link-grid a {
	display: block;
	min-height: 100%;
	padding: 20px;
	border: 1px solid var(--gj-border);
	background: var(--gj-white);
	color: var(--gj-dark-green);
	font-size: 13px;
	font-weight: 800;
}

.gj-link-grid a:hover {
	border-color: var(--gj-orange);
	color: var(--gj-orange-hover);
}

.gj-featured-image {
	margin: 0 0 35px;
}

.gj-featured-image img {
	width: 100%;
	max-height: 530px;
	object-fit: cover;
}

.gsbp-managed-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.gcs-image-fallback {
	display: block;
	width: 100%;
	min-height: 220px;
	aspect-ratio: 16 / 9;
	background:
		linear-gradient(135deg, rgba(8, 53, 40, .98), rgba(18, 83, 64, .82)),
		repeating-linear-gradient(45deg, rgba(245, 230, 185, .04) 0 2px, transparent 2px 16px);
}

.gj-post-card__image .gcs-image-fallback,
.gj-featured-image .gcs-image-fallback,
.gj-managed-gallery .gcs-image-fallback {
	height: 100%;
	min-height: 220px;
}

.gj-brand .gcs-image-fallback {
	width: 150px;
	min-height: 38px;
	aspect-ratio: 4 / 1;
}

.gj-brand .gsbp-managed-image {
	width: auto;
	max-width: 150px;
	height: 38px;
	object-fit: contain;
}

.gj-managed-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 42px;
}

.gj-managed-gallery img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.gj-page-intro {
	padding-block: 58px 20px;
}

.gj-post-grid,
.gsbp-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.gj-post-card,
.gsbp-card {
	overflow: hidden;
	border: 1px solid var(--gj-border);
	background: var(--gj-white);
	transition: transform .2s ease, box-shadow .2s ease;
}

.gj-post-card:hover,
.gsbp-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--gj-shadow);
}

.gj-post-card__image {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--gj-dark-green);
}

.gj-post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gj-image-placeholder {
	display: grid;
	height: 100%;
	place-items: center;
	padding: 20px;
	background: linear-gradient(135deg, var(--gj-dark-green), var(--gj-green));
	color: var(--gj-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.gj-post-card__body,
.gsbp-card {
	padding: 22px;
}

.gj-post-card h2,
.gsbp-card h2 {
	margin: 6px 0 10px;
	font-size: 18px;
	line-height: 1.35;
}

.gj-post-card h2 a,
.gsbp-card h2 a {
	color: var(--gj-dark-green);
}

.gj-post-card p,
.gsbp-card p {
	color: var(--gj-gray);
	font-size: 13px;
}

.gj-post-meta,
.gj-article-meta {
	color: var(--gj-gray);
	font-size: 11px;
}

.gj-text-link,
.gsbp-text-link {
	color: var(--gj-orange-hover);
	font-size: 12px;
	font-weight: 800;
}

.gj-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 40px;
}

.gj-pagination .page-numbers {
	display: grid;
	min-width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid var(--gj-border);
	background: var(--gj-white);
}

.gj-pagination .current {
	border-color: var(--gj-green);
	background: var(--gj-green);
	color: var(--gj-white);
}

.gj-article-header {
	padding-block: 72px;
	background: linear-gradient(120deg, var(--gj-dark-green), var(--gj-green));
	color: var(--gj-white);
}

.gj-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: rgba(255, 255, 255, .68);
}

.gj-rfq-layout {
	padding-block: 72px;
	background: var(--gj-light);
}

.gj-rfq-grid {
	display: grid;
	grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
	gap: 45px;
}

.gj-rfq-benefits {
	display: grid;
	gap: 22px;
}

.gj-rfq-benefits > div {
	display: grid;
	grid-template-columns: 48px 1fr;
	column-gap: 14px;
}

.gj-rfq-benefits span {
	grid-row: span 2;
}

.gj-rfq-benefits h2 {
	margin: 0;
	color: var(--gj-dark-green);
	font-size: 16px;
}

.gj-rfq-benefits p {
	margin: 4px 0 0;
	color: var(--gj-gray);
	font-size: 13px;
}

.gj-rfq-panel {
	max-width: none;
	padding: 34px;
	border: 1px solid var(--gj-border);
	background: var(--gj-white);
	box-shadow: var(--gj-shadow);
}

.gsbp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 15px;
}

.gsbp-rfq-form label {
	display: grid;
	gap: 6px;
	color: var(--gj-text);
	font-size: 12px;
	font-weight: 700;
}

.gsbp-rfq-form input,
.gsbp-rfq-form select,
.gsbp-rfq-form textarea {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid var(--gj-border);
	border-radius: 0;
	background: var(--gj-white);
	color: var(--gj-text);
	font: inherit;
}

.gsbp-rfq-form input:focus,
.gsbp-rfq-form select:focus,
.gsbp-rfq-form textarea:focus {
	border-color: var(--gj-green);
	outline: 2px solid rgba(18, 83, 64, .13);
}

.gsbp-rfq-form button {
	min-height: 44px;
	padding: 11px 24px;
	border: 0;
	background: var(--gj-orange);
	color: var(--gj-white);
	font-weight: 800;
	text-transform: uppercase;
}

.gj-global-cta {
	padding-block: 33px;
	background: var(--gj-green);
	color: var(--gj-white);
}

.gj-global-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.gj-global-cta h2 {
	margin: 3px 0;
	color: var(--gj-white);
	font-size: 27px;
	text-transform: uppercase;
}

.gj-global-cta p {
	margin: 0;
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
}

.gj-site-footer {
	padding-top: 58px;
	background: var(--gj-dark-green);
	color: rgba(255, 255, 255, .72);
}

.gj-footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 50px;
	padding-bottom: 48px;
}

.gj-footer-grid h2 {
	margin: 0 0 16px;
	color: var(--gj-white);
	font-size: 14px;
	text-transform: uppercase;
}

.gj-footer-brand p {
	max-width: 320px;
	font-size: 12px;
}

.gj-footer-logo {
	color: var(--gj-white);
}

.gj-logo-mark--footer {
	border: 1px solid rgba(245, 230, 185, .4);
	background: transparent;
}

.gj-footer-menu a,
.gj-footer-brand a {
	color: rgba(255, 255, 255, .7);
	font-size: 12px;
}

.gj-footer-menu li {
	margin-bottom: 8px;
}

.gj-footer-menu a:hover,
.gj-footer-brand a:hover {
	color: var(--gj-gold);
}

.gj-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-block: 18px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: 11px;
}

.gj-footer-bottom p {
	margin: 0;
}

.gj-footer-bottom nav {
	display: flex;
	gap: 20px;
}

.gj-footer-bottom a {
	color: rgba(255, 255, 255, .65);
}

@media (max-width: 1100px) {
	.gj-header-inner {
		grid-template-columns: 1fr auto auto;
	}

	.gj-menu-toggle {
		display: block;
	}

	.gj-primary-nav {
		position: absolute;
		top: 100%;
		right: 24px;
		left: 24px;
		display: none;
		max-height: calc(100vh - 100px);
		overflow: auto;
		border-top: 3px solid var(--gj-orange);
		background: var(--gj-white);
		box-shadow: var(--gj-shadow);
	}

	.gj-primary-nav.is-open {
		display: block;
	}

	.gj-primary-menu {
		display: block;
		padding: 12px 20px 20px;
	}

	.gj-primary-menu > li > a {
		min-height: 44px;
	}

	.gj-primary-menu .sub-menu {
		position: static;
		display: block;
		width: auto;
		padding: 0 0 5px 15px;
		border: 0;
		box-shadow: none;
	}

	.gj-primary-menu .sub-menu a {
		padding-block: 7px;
	}
}

@media (max-width: 850px) {
	.gj-container {
		width: min(calc(100% - 36px), var(--gj-container));
	}

	.gj-home-hero {
		min-height: 500px;
	}

	.gj-stat-grid,
	.gj-icon-grid,
	.gj-process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gj-two-column,
	.gj-two-column--article,
	.gj-rfq-grid {
		grid-template-columns: 1fr;
	}

	.gj-sidebar {
		position: static;
	}

	.gj-post-grid,
	.gsbp-card-grid,
	.gj-link-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gj-footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.gj-header-inner {
		min-height: 64px;
		gap: 10px;
	}

	.gj-brand-name,
	.gj-button--header {
		display: none;
	}

	.gj-hero,
	.gj-home-hero,
	.gj-inner-hero,
	.gj-case-hero,
	.gj-rfq-hero {
		min-height: 390px;
	}

	.gj-hero__content {
		padding-block: 55px;
	}

	.gj-hero h1,
	.gj-article-header h1 {
		font-size: 35px;
	}

	.gj-stat-grid,
	.gj-icon-grid,
	.gj-process-grid,
	.gj-post-grid,
	.gsbp-card-grid,
	.gj-link-grid,
	.gj-managed-gallery,
	.gj-footer-grid,
	.gsbp-form-grid {
		grid-template-columns: 1fr;
	}

	.gj-stat-grid > div,
	.gj-icon-grid > div,
	.gj-process-grid > div {
		border-right: 0;
		border-bottom: 1px solid var(--gj-border);
	}

	.gj-content-shell,
	.gj-rfq-layout,
	.gj-related-band,
	.gj-blog-section {
		padding-block: 50px;
	}

	.gj-prose h2 {
		margin-top: 48px;
	}

	.gj-global-cta__inner,
	.gj-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.gj-footer-bottom nav {
		flex-wrap: wrap;
	}
}
