:root {
	--ink: #092b35;
	--deep: #06242d;
	--river: #006e80;
	--aqua: #68e0d0;
	--mist: #dce7e2;
	--mineral: #bfcfc8;
	--sand: #e5dfd1;
	--paper: #f2efe6;
	--brand-blue: #0000a2;
	--brand-red: #e90200;
	--signal: var(--brand-red);
	--white: #f7f8f4;
	--line: rgba(9, 43, 53, .25);
	--gutter: clamp(1.25rem, 4vw, 4.5rem);
	--display: Bahnschrift, "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
	--ease: cubic-bezier(.2, .75, .2, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--deep);
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--mist);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.5;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

::selection {
	color: var(--white);
	background: var(--signal);
}

.skip-link {
	position: fixed;
	top: .75rem;
	left: .75rem;
	z-index: 1000;
	padding: .75rem 1rem;
	color: var(--white);
	background: var(--deep);
	transform: translateY(-150%);
	transition: transform .2s ease;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: minmax(28rem, 36vw) 1fr auto;
	align-items: center;
	width: 100%;
	min-height: 7.15rem;
	padding: 0 var(--gutter);
	color: var(--brand-blue);
	border-bottom: 1px solid rgba(0, 0, 162, .22);
	transition: color .35s ease, background .35s ease, min-height .35s ease, border-color .35s ease;
}

.site-header::after {
	position: absolute;
	right: var(--gutter);
	bottom: -1px;
	left: var(--gutter);
	height: 2px;
	content: "";
	background: var(--signal);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s var(--ease);
}

.site-header.is-scrolled {
	min-height: 6.4rem;
	color: var(--ink);
	background: rgba(220, 231, 226, .94);
	border-bottom-color: rgba(9, 43, 53, .18);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
}

.site-header.is-scrolled::after {
	transform: scaleX(var(--scroll-progress, 0));
}

.brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: min(36vw, 34rem);
	padding: .75rem 1.35rem .65rem;
	background: rgba(247, 248, 244, .94);
}

.brand__logo {
	width: 100%;
	height: auto;
}

.brand__capabilities {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(.45rem, .7vw, .8rem);
	width: 100%;
	margin-top: .25rem;
	padding-right: .3rem;
	color: var(--brand-blue);
	font-family: var(--display);
	font-size: clamp(.48rem, .52vw, .62rem);
	font-weight: 650;
	letter-spacing: .09em;
	line-height: 1;
	text-transform: uppercase;
}

.brand__capabilities i {
	width: .25rem;
	height: .25rem;
	background: var(--brand-red);
	border-radius: 50%;
}

.primary-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(.8rem, 1.25vw, 1.5rem);
	margin-right: clamp(1rem, 1.8vw, 2rem);
	font-family: var(--display);
	font-size: .72rem;
	font-weight: 650;
	letter-spacing: .07em;
	text-transform: uppercase;
	transition: color .35s ease, text-shadow .35s ease;
}

.site-header:not(.is-scrolled) .primary-nav {
	color: var(--white);
	text-shadow: 0 1px 12px rgba(6, 36, 45, .72);
}

.primary-nav a {
	position: relative;
	padding: .65rem 0;
}

.primary-nav a::after {
	position: absolute;
	right: 0;
	bottom: .25rem;
	left: 0;
	height: 2px;
	content: "";
	background: var(--signal);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: left;
}

.header-action,
.action-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	font-family: var(--display);
	font-size: .67rem;
	font-weight: 650;
	letter-spacing: .075em;
	text-transform: uppercase;
}

.header-action {
	min-width: 13.6rem;
	padding: .95rem 1.1rem;
	color: var(--white);
	background: var(--signal);
	transition: color .2s ease, background .2s ease;
}

.header-action:hover,
.header-action:focus-visible {
	color: var(--white);
	background: var(--brand-blue);
}

.header-action svg,
.action-link svg,
.contact__primary svg {
	width: 1.25rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	transition: transform .25s ease;
}

.header-action:hover svg,
.action-link:hover svg,
.contact__primary:hover svg {
	transform: translateX(.3rem);
}

.menu-toggle {
	display: none;
}

.hero {
	position: relative;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: 1fr auto;
	height: 88svh;
	min-height: 48rem;
	padding: 9.2rem var(--gutter) 2.6rem;
	color: var(--brand-blue);
	background: #edf1f1;
	isolation: isolate;
	overflow: hidden;
}

.hero::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(90deg, rgba(237, 241, 241, .99) 0%, rgba(237, 241, 241, .94) 38%, rgba(237, 241, 241, .18) 68%, rgba(237, 241, 241, .06) 100%),
		linear-gradient(0deg, rgba(237, 241, 241, .5), transparent 48%);
}

.hero::after {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -3;
	width: 58%;
	height: 100%;
	content: "";
	background: #d5dfea;
	clip-path: polygon(19% 0, 100% 0, 100% 100%, 7% 100%, 0 78%, 8% 24%);
}

.hero__image {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
	width: 58%;
	height: 100%;
	clip-path: polygon(19% 0, 100% 0, 100% 100%, 7% 100%, 0 78%, 8% 24%);
	overflow: hidden;
}

.hero__image img {
	width: calc(100% + 2rem);
	height: calc(100% + 2rem);
	margin: -1rem;
	object-fit: cover;
	object-position: 52% 46%;
	filter: saturate(.88) contrast(1.03) brightness(1.03);
	transform: scale(1.04) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
	transition: transform .6s var(--ease);
}

.hero__image-wash {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, rgba(237, 241, 241, .48), transparent 58%);
}

.hero__rails {
	position: absolute;
	top: 7.15rem;
	right: var(--gutter);
	bottom: 0;
	left: var(--gutter);
	z-index: -1;
	pointer-events: none;
}

.hero__rails i {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: rgba(0, 0, 162, .12);
}

.hero__rails i:nth-child(1) { left: 25%; }
.hero__rails i:nth-child(2) { left: 50%; }
.hero__rails i:nth-child(3) { left: 75%; }

.hero__content {
	z-index: 2;
	grid-column: 1 / 10;
	align-self: center;
	padding-top: 2.5rem;
}

.eyebrow,
.section-kicker {
	margin: 0 0 1.2rem;
	font-family: var(--display);
	font-size: .68rem;
	font-weight: 650;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.eyebrow span {
	color: var(--aqua);
	padding: 0 .35rem;
}

.hero__title {
	max-width: 12ch;
	margin: 0;
	font-family: var(--display);
	color: var(--brand-blue);
	font-size: clamp(3.8rem, 7.1vw, 7.7rem);
	font-weight: 575;
	font-stretch: condensed;
	line-height: .76;
	letter-spacing: -.07em;
	text-transform: uppercase;
}

.hero__title span {
	display: block;
}

.hero__title-shift {
	padding-left: .28em;
	color: var(--brand-blue);
}

.hero__title em {
	color: var(--signal);
	font-style: normal;
}

.hero__lower {
	display: flex;
	align-items: flex-end;
	gap: clamp(2rem, 5vw, 6rem);
	margin-top: 2.1rem;
	margin-left: clamp(2rem, 6vw, 6rem);
}

.hero__statement {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.1rem, 1.65vw, 1.7rem);
	font-weight: 350;
	line-height: 1.1;
	letter-spacing: -.025em;
	color: var(--brand-red);
	font-weight: 600;
}

.action-link--accent {
	min-width: 17rem;
	padding: 1rem 0;
	color: var(--brand-blue);
	border-top: 1px solid rgba(0, 0, 162, .35);
	border-bottom: 1px solid rgba(0, 0, 162, .35);
}

.hero__proof {
	display: flex;
	grid-column: 1 / 8;
	grid-row: 2;
	align-items: center;
	align-self: end;
	gap: .75rem;
	padding-top: 2rem;
	font-family: var(--display);
	font-size: .56rem;
	font-weight: 650;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hero__proof i {
	width: 2rem;
	height: 1px;
	background: var(--aqua);
}

.hero__detail {
	position: absolute;
	right: var(--gutter);
	bottom: 2.75rem;
	z-index: 3;
	width: clamp(15rem, 20vw, 21rem);
	margin: 0;
	background: var(--paper);
	box-shadow: 0 1.2rem 3rem rgba(6, 36, 45, .26);
}

.hero__detail img {
	height: clamp(6.3rem, 9vw, 8.8rem);
	object-fit: cover;
	object-position: center 55%;
	filter: saturate(.5) contrast(1.08);
}

.hero__detail figcaption {
	padding: .65rem .8rem .75rem;
	color: var(--ink);
	font-size: .67rem;
	line-height: 1.25;
}

.hero__detail figcaption span {
	display: block;
	margin-bottom: .2rem;
	color: var(--river);
	font-family: var(--display);
	font-size: .5rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero__scroll {
	position: absolute;
	right: 1rem;
	top: 50%;
	display: flex;
	align-items: center;
	gap: .75rem;
	font-family: var(--display);
	font-size: .54rem;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	transform: rotate(90deg) translateX(50%);
	transform-origin: right center;
}

.hero__scroll i {
	position: relative;
	display: block;
	width: 3rem;
	height: 1px;
	background: currentColor;
	overflow: hidden;
}

.hero__scroll i::after {
	position: absolute;
	inset: 0;
	content: "";
	background: var(--signal);
	animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
	0% { transform: translateX(-105%); }
	45%, 55% { transform: translateX(0); }
	100% { transform: translateX(105%); }
}

.solutions {
	position: relative;
	padding: clamp(3rem, 4vw, 4.75rem) var(--gutter) clamp(6rem, 9vw, 9rem);
	background: var(--sand);
}

#solutions,
#approach,
#work,
#support,
#contact {
	scroll-margin-top: 4.75rem;
}

.solutions::before {
	position: absolute;
	top: 0;
	left: var(--gutter);
	width: calc(25% - var(--gutter));
	height: .5rem;
	content: "";
	background: var(--signal);
}

.section-intro {
	display: block;
	max-width: 95rem;
	margin: 0 auto clamp(4rem, 7vw, 7rem);
}

.section-intro.reveal {
	opacity: 1;
	transform: none;
}

.section-intro .section-kicker {
	grid-column: 1 / -1;
	color: var(--river);
}

.section-intro h2,
.approach h2,
.work h2,
.support h2,
.contact h2 {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(3.6rem, 7.2vw, 8rem);
	font-weight: 475;
	font-stretch: condensed;
	line-height: .84;
	letter-spacing: -.065em;
	text-transform: uppercase;
}

.section-intro h2 {
	max-width: 18ch;
}

.section-intro h2 em,
.work h2 em,
.contact h2 em {
	color: var(--river);
	font-style: normal;
}

.section-intro > p:last-child {
	max-width: 26rem;
	margin: 0 0 .6rem;
	font-size: clamp(.95rem, 1.15vw, 1.15rem);
	line-height: 1.55;
}

.solutions__stage {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(32rem, 1.08fr);
	gap: clamp(2.5rem, 6vw, 7rem);
	max-width: 95rem;
	margin: 0 auto;
}

.solutions__visual {
	position: sticky;
	top: 7rem;
	align-self: start;
	margin: 0;
}

.solutions__image-wrap {
	position: relative;
	height: clamp(23rem, 41vw, 41rem);
	background: var(--mineral);
	overflow: hidden;
}

.solutions__image-wrap::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(135deg, rgba(0, 110, 128, .2), transparent 50%);
	mix-blend-mode: color;
}

.solutions__gallery-controls {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	z-index: 3;
	display: grid;
	grid-template-columns: 2.6rem auto 2.6rem;
	align-items: center;
	min-height: 2.6rem;
	color: var(--brand-blue);
	background: rgba(247, 248, 244, .94);
	box-shadow: 0 .6rem 1.8rem rgba(9, 43, 53, .16);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.solutions__gallery-controls button {
	display: grid;
	place-items: center;
	width: 2.6rem;
	height: 2.6rem;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: color .2s ease, background .2s ease;
}

.solutions__gallery-controls button:hover,
.solutions__gallery-controls button:focus-visible {
	color: var(--white);
	background: var(--brand-red);
}

.solutions__gallery-controls > span {
	min-width: 4.6rem;
	padding: 0 .7rem;
	font-family: var(--display);
	font-size: .58rem;
	font-weight: 700;
	letter-spacing: .13em;
	text-align: center;
}

.solutions__visual img {
	height: 100%;
	object-fit: cover;
	filter: saturate(.72) contrast(1.06);
	transition: opacity .2s ease, transform .65s var(--ease);
}

.solutions__visual.is-changing img {
	opacity: .15;
	transform: scale(1.04);
}

.crop-marks i {
	position: absolute;
	z-index: 2;
	width: 1.8rem;
	height: 1.8rem;
	border-color: var(--aqua);
	border-style: solid;
}

.crop-marks i:nth-child(1) { top: 1rem; left: 1rem; border-width: 1px 0 0 1px; }
.crop-marks i:nth-child(2) { top: 1rem; right: 1rem; border-width: 1px 1px 0 0; }
.crop-marks i:nth-child(3) { right: 1rem; bottom: 1rem; border-width: 0 1px 1px 0; }
.crop-marks i:nth-child(4) { bottom: 1rem; left: 1rem; border-width: 0 0 1px 1px; }

.solutions__visual figcaption {
	display: grid;
	grid-template-columns: 6rem 1fr;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--ink);
	font-size: .75rem;
}

.solutions__visual figcaption span {
	color: var(--river);
	font-family: var(--display);
	font-size: .61rem;
	font-weight: 700;
	letter-spacing: .14em;
}

.solutions__visual figcaption strong {
	font-weight: 550;
}

.solutions__list {
	border-top: 1px solid var(--ink);
}

.solution-row {
	position: relative;
	display: grid;
	grid-template-columns: 4.5rem 1fr auto;
	align-items: center;
	min-height: clamp(8.5rem, 11.5vw, 11rem);
	border-bottom: 1px solid var(--line);
	transition: color .3s ease, padding .35s var(--ease);
}

.solution-row::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background: var(--river);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .4s var(--ease);
}

.solution-row > * {
	position: relative;
	z-index: 1;
}

.solution-row:hover,
.solution-row:focus-visible,
.solution-row.is-active {
	padding-right: 1.2rem;
	padding-left: 1.2rem;
	color: var(--white);
}

.solution-row:hover::before,
.solution-row:focus-visible::before,
.solution-row.is-active::before {
	transform: scaleY(1);
}

.solution-row__number {
	align-self: start;
	padding-top: 2rem;
	font-family: var(--display);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .1em;
	opacity: .75;
}

.solution-row__copy strong {
	display: block;
	font-family: var(--display);
	font-size: clamp(1.5rem, 2.45vw, 2.8rem);
	font-weight: 420;
	line-height: 1;
	letter-spacing: -.04em;
	text-transform: uppercase;
}

.solution-row__copy strong em {
	color: var(--signal);
	font-style: normal;
}

.solution-row__copy small {
	display: block;
	margin-top: .65rem;
	font-size: .72rem;
	letter-spacing: .025em;
	opacity: .72;
}

.solution-row__details span {
	display: block;
	position: relative;
	padding-left: .9rem;
}

.solution-row__details span::before {
	position: absolute;
	top: .62em;
	left: 0;
	width: .3rem;
	height: .3rem;
	content: "";
	background: var(--brand-red);
	border-radius: 50%;
}

.solution-row__details span + span {
	margin-top: .18rem;
}

.solution-row__arrow {
	font-size: 1.5rem;
	transition: transform .25s ease;
}

.solution-row:hover .solution-row__arrow,
.solution-row:focus-visible .solution-row__arrow {
	transform: translate(.2rem, -.2rem);
}

.approach {
	position: relative;
	padding: clamp(4.5rem, 7vw, 7rem) var(--gutter) 0;
	background: var(--mist);
	overflow: hidden;
}

.approach::after {
	position: absolute;
	top: 0;
	right: -9vw;
	width: 35vw;
	height: 35vw;
	content: "";
	border: 1px solid rgba(9, 43, 53, .18);
	border-radius: 50%;
	box-shadow: 0 0 0 5vw transparent, 0 0 0 calc(5vw + 1px) rgba(9, 43, 53, .12), 0 0 0 11vw transparent, 0 0 0 calc(11vw + 1px) rgba(9, 43, 53, .08);
	transform: translateY(-45%);
}

.approach__top {
	position: relative;
	z-index: 1;
	max-width: 95rem;
	margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.approach h2 {
	font-size: clamp(3.2rem, 6.3vw, 7rem);
}

.approach h2 em {
	color: var(--river);
	font-style: normal;
}

.flowline {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: 95rem;
	margin: 0 auto;
	padding: 2.25rem 0 4.5rem;
	list-style: none;
	border-top: 2px solid var(--river);
}

.flowline::before {
	position: absolute;
	top: -7px;
	left: 0;
	width: 12px;
	height: 12px;
	content: "";
	background: var(--signal);
	border-radius: 50%;
	box-shadow: calc(25% - 3px) 0 0 var(--mist), calc(25% - 3px) 0 0 2px var(--river);
}

.flowline li {
	position: relative;
	min-height: 6rem;
	padding: 0 1.8rem;
	border-left: 1px solid var(--line);
}

.flowline li:first-child {
	padding-left: 0;
	border-left: 0;
}

.flowline li::before {
	position: absolute;
	top: -2.7rem;
	left: -5px;
	width: 8px;
	height: 8px;
	content: "";
	background: var(--mist);
	border: 1px solid var(--river);
	border-radius: 50%;
}

.flowline li:first-child::before {
	display: none;
}

.flowline span,
.flowline strong {
	display: block;
}

.flowline span {
	margin-bottom: 1.5rem;
	color: var(--river);
	font-family: var(--display);
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .1em;
}

.flowline strong {
	font-family: var(--display);
	font-size: clamp(1.2rem, 1.7vw, 1.85rem);
	font-weight: 450;
	letter-spacing: -.035em;
	text-transform: uppercase;
}

.work {
	padding: clamp(4rem, 7vw, 7rem) var(--gutter);
	color: var(--white);
	background: var(--deep);
}

.work__layout {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	align-items: start;
	gap: clamp(2.5rem, 6vw, 7rem);
	max-width: 95rem;
	margin: 0 auto;
}

.work h2 {
	margin-bottom: 2.75rem;
}

.work h2 em {
	color: var(--aqua);
}

.project-list {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: projects;
}

.project-list li {
	display: flex;
	align-items: baseline;
	gap: 1.25rem;
	padding: .78rem 0;
	border-top: 1px solid rgba(247, 248, 244, .22);
	font-family: var(--display);
	font-size: clamp(1rem, 1.55vw, 1.5rem);
	font-weight: 420;
	line-height: 1.18;
	letter-spacing: -.015em;
	counter-increment: projects;
}

.project-list li:last-child {
	border-bottom: 1px solid rgba(247, 248, 244, .22);
}

.project-list li::before {
	min-width: 1.5rem;
	color: var(--aqua);
	font-size: .65rem;
	letter-spacing: .08em;
	content: counter(projects, decimal-leading-zero);
}

.project-gallery {
	min-width: 0;
	padding-top: .3rem;
	border-top: .3rem solid var(--signal);
}

.project-slide {
	margin: 0;
}

.project-slide[hidden],
.project-gallery__controls[hidden] {
	display: none;
}

.project-slide img {
	height: clamp(24rem, 39vw, 40rem);
	object-fit: cover;
	object-position: center top;
	animation: project-enter .7s var(--ease) both;
}

.project-slide:nth-child(3) img {
	object-position: 64% center;
}

.project-slide--qv img {
	object-position: center 52%;
}

.project-slide--highpoint img {
	object-position: 48% center;
}

.project-slide--epworth img {
	object-position: center 65%;
}

.project-slide--st-vincents img {
	object-position: center 30%;
}

.project-slide figcaption {
	min-height: 8.75rem;
	padding: 1.25rem 0 1rem;
}

.project-slide__label,
.project-slide figcaption strong,
.project-slide__credit {
	display: block;
}

.project-slide__label {
	color: var(--aqua);
	font-family: var(--display);
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.project-slide figcaption strong {
	margin: .35rem 0 .6rem;
	font-family: var(--display);
	font-size: clamp(1.45rem, 2.4vw, 2.6rem);
	font-weight: 430;
	line-height: 1.05;
	letter-spacing: -.035em;
}

.project-slide__credit,
.project-gallery__note {
	color: #b5c8c8;
	font-size: .67rem;
	line-height: 1.6;
}

.project-slide__credit a {
	text-decoration: underline;
	text-underline-offset: .2em;
}

.project-gallery__controls {
	display: flex;
	align-items: center;
	border-block: 1px solid rgba(247, 248, 244, .3);
}

.project-gallery__controls button {
	min-width: 3rem;
	min-height: 3rem;
	padding: .7rem;
	color: var(--white);
	background: transparent;
	border: 0;
	border-left: 1px solid rgba(247, 248, 244, .3);
	font-size: 1.4rem;
	cursor: pointer;
	transition: color .2s ease, background .2s ease;
}

.project-gallery__controls .project-gallery__play {
	margin-right: auto;
	padding-left: 0;
	border-left: 0;
	font-family: var(--display);
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.project-gallery__controls button:hover {
	color: var(--deep);
	background: var(--aqua);
}

.project-gallery__controls button:focus-visible,
.project-slide__credit a:focus-visible {
	outline: 2px solid var(--aqua);
	outline-offset: 3px;
}

.project-gallery__count {
	padding: 0 1.25rem;
	font-family: var(--display);
	font-size: .75rem;
	font-variant-numeric: tabular-nums;
}

.project-gallery__note {
	margin: .6rem 0 0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

@keyframes project-enter {
	from { opacity: .25; }
	to { opacity: 1; }
}

.support {
	color: var(--white);
	background: var(--river);
	overflow: hidden;
}

.support__marquee {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .5rem 0;
	padding: 1rem var(--gutter) .85rem;
	color: var(--deep);
	background: var(--aqua);
	font-family: var(--display);
	font-size: clamp(.8rem, 1.55vw, 1.6rem);
	font-weight: 650;
	line-height: 1.15;
	letter-spacing: -.025em;
	text-transform: uppercase;
}

.support__marquee span:not(:last-child)::after {
	margin: 0 1.15ch;
	content: "/";
}

.support__body {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	align-items: center;
	gap: 8vw;
	max-width: calc(95rem + var(--gutter) * 2);
	margin: 0 auto;
	padding: clamp(6rem, 9vw, 9rem) var(--gutter);
}

.support h2 {
	font-size: clamp(3rem, 5.3vw, 5.9rem);
	line-height: .94;
}

.support h2 em {
	color: var(--aqua);
	font-style: normal;
}

.support__copy {
	max-width: 32rem;
}

.support__services {
	margin: 0;
	padding: 0;
	list-style: none;
}

.support__services li {
	position: relative;
	padding: .85rem 0 .85rem 1.5rem;
	border-bottom: 1px solid rgba(247, 248, 244, .25);
	font-size: clamp(.95rem, 1.4vw, 1.2rem);
	line-height: 1.35;
}

.support__services li::before {
	position: absolute;
	left: 0;
	color: var(--aqua);
	content: "+";
}

.text-link {
	display: flex;
	justify-content: space-between;
	margin-top: 2.3rem;
	padding: 1rem 0;
	font-family: var(--display);
	font-size: .65rem;
	font-weight: 650;
	letter-spacing: .13em;
	text-transform: uppercase;
	border-top: 1px solid rgba(247, 248, 244, .55);
	border-bottom: 1px solid rgba(247, 248, 244, .55);
}

.contact {
	position: relative;
	padding: clamp(4rem, 7vw, 7rem) var(--gutter);
	background: var(--mineral);
	overflow: hidden;
}

.contact::before {
	position: absolute;
	top: 0;
	right: -16vw;
	width: 55vw;
	height: 100%;
	content: "";
	background: var(--aqua);
	clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%, 24% 58%);
	opacity: .55;
}

.contact__line {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
}

.contact__line i {
	position: absolute;
	background: rgba(9, 43, 53, .22);
}

.contact__line i:nth-child(1) { top: 14%; right: 0; width: 30%; height: 1px; }
.contact__line i:nth-child(2) { top: 14%; right: 8%; width: 1px; height: 60%; }
.contact__line i:nth-child(3) { right: 8%; bottom: 26%; width: 20%; height: 1px; }

.contact > *:not(.contact__line) {
	position: relative;
	z-index: 1;
}

.contact__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(18rem, .36fr);
	align-items: start;
	gap: clamp(2rem, 5vw, 6rem);
	max-width: 96rem;
	margin: 0 auto;
}

.contact-form {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.45rem 1.25rem;
	padding: clamp(1.5rem, 3vw, 3rem);
	color: var(--white);
	background: var(--deep);
	box-shadow: 1.25rem 1.25rem 0 rgba(0, 110, 128, .16);
}

.contact-form::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 7.5rem;
	height: .35rem;
	background: var(--signal);
	content: "";
}

.contact-form__intro {
	grid-column: 1 / -1;
	margin-bottom: .35rem;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid rgba(247, 248, 244, .22);
}

.contact-form__intro h2 {
	margin: 0;
	font-size: clamp(2.75rem, 4.8vw, 5rem);
	font-weight: 540;
	line-height: .94;
	letter-spacing: -.045em;
}

.form-field {
	display: grid;
	gap: .45rem;
}

.form-field--full {
	grid-column: 1 / -1;
}

.form-field > label,
.form-consent {
	font-family: var(--display);
	font-size: .62rem;
	font-weight: 650;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.form-field > label span {
	margin-left: .35rem;
	opacity: .46;
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	min-height: 3.1rem;
	padding: .65rem .1rem;
	color: var(--white);
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(247, 248, 244, .38);
	border-radius: 0;
	outline: 0;
	font: inherit;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field textarea {
	min-height: 8.5rem;
	resize: vertical;
}

.form-field select {
	cursor: pointer;
}

.form-field select option {
	color: var(--ink);
	background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--aqua);
	box-shadow: 0 1px 0 var(--aqua);
}

.form-consent {
	display: flex;
	align-items: flex-start;
	gap: .7rem;
	line-height: 1.45;
	letter-spacing: .065em;
	cursor: pointer;
}

.form-consent input {
	width: 1rem;
	height: 1rem;
	margin: .05rem 0 0;
	accent-color: var(--signal);
}

.contact-form__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: .25rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(247, 248, 244, .22);
}

.contact-form__status,
.contact-form__noscript {
	max-width: 27rem;
	margin: 0;
	font-size: .72rem;
	opacity: .72;
}

.contact-form__status.is-success {
	color: var(--aqua);
	opacity: 1;
}

.contact-form__status.is-error,
.contact-form__noscript {
	color: #ffb3a5;
	opacity: 1;
}

.contact-form__submit {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	min-width: 14.5rem;
	padding: 1.15rem 1.2rem;
	color: var(--white);
	background: var(--signal);
	border: 0;
	font-family: var(--display);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color .25s ease, background .25s ease, opacity .25s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
	color: var(--deep);
	background: var(--aqua);
}

.contact-form__submit:disabled {
	opacity: .48;
	cursor: wait;
}

.contact-form__submit svg {
	width: 1.35rem;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.form-trap {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact__details {
	padding-top: 1rem;
	border-top: 1px solid var(--ink);
}

.contact__detail-label {
	margin: 0 0 3.5rem;
	font-family: var(--display);
	font-size: .62rem;
	font-weight: 650;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.contact__details dl,
.contact__details dd {
	margin: 0;
}

.contact__details dl > div {
	padding: 1.25rem 0;
	border-bottom: 1px solid rgba(9, 43, 53, .3);
}

.contact__details dt {
	margin-bottom: .35rem;
	font-size: .6rem;
	font-weight: 650;
	letter-spacing: .1em;
	text-transform: uppercase;
	opacity: .58;
}

.contact__details dd {
	font-family: var(--display);
	font-size: clamp(1.2rem, 2vw, 1.7rem);
	font-weight: 520;
	line-height: 1.08;
	letter-spacing: -.025em;
}

.contact__availability {
	display: block;
	margin-top: .65rem;
	font-size: .8rem;
	font-weight: 450;
	letter-spacing: 0;
}

.contact__details address,
.site-footer__meta address {
	font-style: normal;
}

.contact__details > p:last-child {
	max-width: 21rem;
	margin: 2rem 0 0;
	font-size: .78rem;
	opacity: .72;
}

.site-footer {
	display: grid;
	grid-template-columns: 1fr .75fr .8fr;
	gap: 4vw;
	padding: 4rem var(--gutter) 2rem;
	color: rgba(247, 248, 244, .88);
	background: var(--deep);
}

.brand--footer {
	align-self: start;
	padding: 0;
	background: transparent;
	clip-path: none;
}

.site-footer > p {
	max-width: 25rem;
	margin: 0;
	font-size: .76rem;
	opacity: .68;
}

.site-footer nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-content: start;
	gap: .6rem 2rem;
	font-family: var(--display);
	font-size: .61rem;
	font-weight: 600;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.site-footer__meta {
	display: flex;
	grid-column: 1 / -1;
	justify-content: space-between;
	margin-top: 3rem;
	padding-top: 1rem;
	font-size: .58rem;
	letter-spacing: .04em;
	border-top: 1px solid rgba(247, 248, 244, .22);
	opacity: .62;
}

.js-reveal .reveal {
	opacity: 0;
	transform: translateY(2rem);
	transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1180px) {
	.site-header {
		grid-template-columns: 1fr auto;
	}

	.primary-nav {
		display: none;
	}

	.header-action {
		min-width: 12rem;
	}

	.hero__content {
		grid-column: 1 / 12;
	}

	.hero__title {
		font-size: clamp(4rem, 9.3vw, 7rem);
	}

	.hero__detail {
		width: 14rem;
	}

	.solutions__stage {
		grid-template-columns: .85fr 1.15fr;
		gap: 2.5rem;
	}
}

@media (max-width: 1180px) {
	.brand {
		position: relative;
		z-index: 1;
	}

	.header-action {
		display: none;
	}

	.menu-toggle {
		position: relative;
		z-index: 1;
		display: flex;
		align-items: center;
		gap: .7rem;
		padding: .6rem 0 .6rem .6rem;
		color: inherit;
		background: transparent;
		border: 0;
		cursor: pointer;
	}

	.menu-toggle__label {
		font-family: var(--display);
		font-size: .64rem;
		font-weight: 650;
		letter-spacing: .12em;
		text-transform: uppercase;
	}

	.site-header:not(.is-scrolled) .menu-toggle {
		color: var(--white);
		text-shadow: 0 1px 10px rgba(6, 36, 45, .72);
	}

	.menu-toggle__lines {
		position: relative;
		display: block;
		width: 1.6rem;
		height: 1.1rem;
	}

	.menu-toggle__lines i {
		position: absolute;
		right: 0;
		width: 100%;
		height: 1px;
		background: currentColor;
		transition: transform .25s ease, top .25s ease;
	}

	.menu-toggle__lines i:first-child { top: .2rem; }
	.menu-toggle__lines i:last-child { top: .8rem; width: 70%; }

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { top: .5rem; transform: rotate(45deg); }
	.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { top: .5rem; width: 100%; transform: rotate(-45deg); }

	.primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: .3rem;
		margin: 0;
		padding: 6rem var(--gutter) 3rem;
		color: var(--white);
		background: var(--deep);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-1rem);
		transition: opacity .3s ease, transform .4s var(--ease), visibility .3s;
	}

	.primary-nav::before {
		margin-bottom: 1rem;
		color: var(--aqua);
		content: "Navigate / PumpElec";
		font-size: .55rem;
		letter-spacing: .15em;
	}

	.primary-nav a {
		width: 100%;
		padding: .55rem 0;
		font-size: clamp(2.5rem, 12vw, 4rem);
		font-weight: 450;
		line-height: 1;
		letter-spacing: -.04em;
		border-bottom: 1px solid rgba(247, 248, 244, .2);
	}

	.primary-nav a::after {
		display: none;
	}

	.menu-open .primary-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.menu-open .site-header {
		color: var(--white);
		background: transparent;
		border-color: rgba(247, 248, 244, .2);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}

}

@media (max-width: 760px) {
	:root {
		--gutter: 1.15rem;
	}

	.site-header {
		grid-template-columns: 1fr auto;
		min-height: 6rem;
		padding: 0 var(--gutter);
	}

	.site-header.is-scrolled {
		min-height: 5.6rem;
	}

	.brand {
		position: relative;
		z-index: 1;
		width: min(72vw, 17rem);
		padding: .5rem .7rem .45rem;
	}

	.brand__logo {
		width: 100%;
	}

	.brand__capabilities {
		gap: .34rem;
		margin-top: .2rem;
		padding-right: 0;
		font-size: .38rem;
		letter-spacing: .055em;
	}

	.brand__capabilities i {
		width: .18rem;
		height: .18rem;
	}

	.hero {
		grid-template-rows: 1fr auto;
		height: 88svh;
		min-height: 48rem;
		padding-top: 7.1rem;
		padding-bottom: 1.5rem;
	}

	.hero::before {
		background: linear-gradient(0deg, rgba(237, 241, 241, 1) 0%, rgba(237, 241, 241, .98) 48%, rgba(237, 241, 241, .22) 76%, rgba(237, 241, 241, .08) 100%);
	}

	.hero::after,
	.hero__image {
		width: 100%;
		height: 56%;
		clip-path: polygon(0 0, 100% 0, 100% 86%, 78% 100%, 0 86%);
	}

	.hero__image img {
		object-position: 50% 50%;
	}

	.hero__rails {
		top: 6rem;
	}

	.hero__content {
		grid-column: 1 / -1;
		align-self: end;
		padding-bottom: 5.4rem;
	}

	.eyebrow {
		max-width: 19rem;
		font-size: .56rem;
	}

	.hero__title {
		max-width: 10.5ch;
		font-size: clamp(3rem, 14vw, 4.8rem);
		line-height: .8;
	}

	.hero__title-shift {
		padding-left: 0;
	}

	.hero__lower {
		align-items: flex-start;
		justify-content: space-between;
		gap: 1.2rem;
		margin-top: 1.5rem;
		margin-left: 0;
	}

	.hero__statement {
		font-size: 1rem;
	}

	.action-link--accent {
		min-width: 0;
		max-width: 10rem;
		padding: .55rem 0;
		font-size: .55rem;
	}

	.hero__proof {
		grid-column: 1 / -1;
		gap: .4rem;
		padding-top: .8rem;
		font-size: .43rem;
	}

	.hero__proof i {
		flex: 1;
		width: auto;
	}

	.hero__detail {
		display: none;
	}

	.hero__scroll {
		display: none;
	}

	.approach,
	.work,
	.contact {
		padding-top: 5.5rem;
		padding-bottom: 5.5rem;
	}

	.solutions {
		padding-top: 2.25rem;
		padding-bottom: 5.5rem;
	}

	.solutions::before {
		left: 0;
		width: 24%;
		height: .35rem;
	}

	.section-intro,
	.approach__top,
	.support__body {
		display: block;
		margin-bottom: 3.5rem;
	}

	.section-intro h2,
	.approach h2,
	.work h2 {
		font-size: clamp(3.2rem, 14.5vw, 5rem);
	}

	.section-intro > p:last-child {
		max-width: 25rem;
		margin-top: 1.5rem;
	}

	.solutions__stage {
		display: block;
	}

	.solutions__visual {
		position: relative;
		top: auto;
		margin-bottom: 2.5rem;
	}

	.solutions__image-wrap {
		height: 22rem;
	}

	.solutions__gallery-controls {
		right: .75rem;
		bottom: .75rem;
	}

	.solutions__visual figcaption {
		grid-template-columns: 4rem 1fr;
	}

	.solution-row {
		grid-template-columns: 2.5rem 1fr auto;
		min-height: 7rem;
	}

	.solution-row:hover,
	.solution-row:focus-visible,
	.solution-row.is-active {
		padding: 0 .7rem;
	}

	.solution-row__copy strong {
		font-size: 1.45rem;
	}

	.solution-row__copy small {
		font-size: .66rem;
	}

	.solution-row__number {
		padding-top: 1.6rem;
	}

	.approach::after {
		width: 70vw;
		height: 70vw;
	}

	.flowline {
		display: block;
		padding: 0 0 1.5rem 2.2rem;
		border-top: 0;
		border-left: 2px solid var(--river);
	}

	.flowline::before {
		top: 0;
		left: -7px;
		box-shadow: none;
	}

	.flowline li,
	.flowline li:first-child {
		display: grid;
		grid-template-columns: 2.5rem 1fr;
		min-height: 4.5rem;
		padding: 0 0 1.5rem;
		border: 0;
	}

	.flowline li::before,
	.flowline li:first-child::before {
		top: .25rem;
		left: calc(-2.2rem - 5px);
		display: block;
		background: var(--mist);
	}

	.flowline span {
		margin: 0;
	}

	.work__layout {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.work h2 {
		margin-bottom: 2rem;
	}

	.project-list li {
		font-size: 1.13rem;
		padding-block: .7rem;
	}

	.project-slide img {
		height: 23rem;
	}

	.project-slide figcaption {
		min-height: 8rem;
	}

	.project-gallery__count {
		padding-inline: .75rem;
	}

	.support__body {
		margin-bottom: 0;
		padding: 4.5rem var(--gutter);
	}

	.support h2 {
		font-size: clamp(2.8rem, 12vw, 4.5rem);
	}

	.support__copy {
		margin-top: 2rem;
	}

	.contact::before {
		right: -35%;
		width: 95%;
	}

	.contact-form__intro h2 {
		font-size: 2.75rem;
	}

	.contact__layout {
		display: block;
		margin-top: 0;
	}

	.contact-form {
		grid-template-columns: 1fr;
		gap: 1.2rem;
		padding: 1.35rem;
		box-shadow: .65rem .65rem 0 rgba(0, 110, 128, .16);
	}

	.contact-form__intro {
		display: block;
	}


	.form-field--full {
		grid-column: auto;
	}

	.contact-form__footer {
		display: block;
	}

	.contact-form__submit {
		width: 100%;
		margin-top: 1.25rem;
	}

	.contact__details {
		margin-top: 3.5rem;
	}

	.contact__detail-label {
		margin-bottom: 1.5rem;
	}

	.site-footer {
		display: block;
		padding-top: 3.5rem;
	}

	.site-footer > p {
		margin: 2rem 0;
	}

	.site-footer nav {
		margin-top: 2rem;
		padding-top: 1rem;
		border-top: 1px solid rgba(247, 248, 244, .22);
	}

	.site-footer__meta {
		flex-wrap: wrap;
		align-items: flex-start;
		gap: 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
