:root {
	--ink: #1f2121;
	--paper: #dedede;
	--white: #f5f5f2;
	--soft: #c9c9c7;
	--orange: #ff4b18;
	--line: rgba(31, 33, 33, 0.28);
	--line-light: rgba(245, 245, 242, 0.28);
	--sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--mono: "Courier New", Courier, monospace;
	--page-pad: clamp(24px, 3.2vw, 52px);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

p,
h1,
h2,
h3 {
	margin-top: 0;
}

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

.screen-reader-text:focus {
	position: fixed !important;
	z-index: 99999;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--white);
	color: var(--ink);
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 30px;
	left: 50%;
	width: min(470px, calc(100% - 40px));
	transform: translateX(-50%);
}

.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 54px;
	padding: 8px 14px 8px 18px;
	background: var(--ink);
	color: var(--white);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
}

.site-brand {
	display: flex;
	align-items: center;
	width: 178px;
}

.site-brand img {
	width: 100%;
	max-height: 34px;
	object-fit: contain;
	object-position: left center;
	filter: brightness(0) invert(1);
}

.menu-toggle {
	display: grid;
	width: 36px;
	height: 36px;
	padding: 0;
	place-items: center;
	cursor: pointer;
	border: 0;
	background: transparent;
	color: inherit;
}

.menu-toggle i,
.menu-toggle i::before {
	display: block;
	width: 18px;
	height: 1px;
	background: currentColor;
	transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle i {
	position: relative;
}

.menu-toggle i::before {
	position: absolute;
	top: 6px;
	content: "";
}

.menu-toggle[aria-expanded="true"] i {
	transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] i::before {
	top: 0;
	transform: rotate(90deg);
}

.site-nav {
	position: absolute;
	top: 62px;
	right: 0;
	left: 0;
	display: grid;
	padding: 12px;
	background: var(--ink);
	color: var(--white);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.site-nav.is-open {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.site-nav a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 45px;
	padding: 8px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	font-family: var(--mono);
	font-size: 11px;
	text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
	background: var(--white);
	color: var(--ink);
}

.site-nav__phone {
	color: rgba(255, 255, 255, 0.62);
}

.site-nav__offer {
	margin-top: 10px;
	border: 0 !important;
	background: var(--orange);
	color: var(--white);
}

.side-note {
	position: fixed;
	z-index: 1;
	bottom: 38px;
	display: flex;
	flex-direction: column;
	color: var(--ink);
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.08;
	text-transform: uppercase;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.side-note--left {
	left: 40px;
}

.side-note--right {
	right: 40px;
	text-align: right;
}

.ag-hero {
	position: relative;
	display: grid;
	min-height: 100vh;
	overflow: hidden;
	place-items: center;
	background: #919494;
	color: var(--white);
}

.ag-hero::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(31, 33, 33, 0.12), rgba(31, 33, 33, 0.48));
}

.ag-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
	filter: grayscale(1) contrast(0.96);
	animation: ag-drift 14s ease-in-out infinite alternate;
}

@keyframes ag-drift {
	from {
		transform: scale(1.015);
	}
	to {
		transform: scale(1.055);
	}
}

.geometry {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.geometry i {
	position: absolute;
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.56);
}

.geometry--hero i:nth-child(1) {
	top: 25%;
	left: -7vw;
	width: 36vw;
	aspect-ratio: 1;
	transform: rotate(45deg);
}

.geometry--hero i:nth-child(2) {
	top: 18%;
	left: 36%;
	width: 30vw;
	aspect-ratio: 1;
	border-radius: 50%;
}

.geometry--hero i:nth-child(3) {
	top: 26%;
	right: -5vw;
	width: 32vw;
	aspect-ratio: 1;
	transform: rotate(45deg);
}

.geometry--hero i:nth-child(4) {
	top: 7%;
	left: 50%;
	width: 58vw;
	aspect-ratio: 1;
	transform: translateX(-50%) rotate(45deg);
}

.ag-hero__meta {
	position: absolute;
	z-index: 3;
	top: 52px;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.08;
	text-transform: uppercase;
}

.ag-hero__meta--left {
	left: 40px;
}

.ag-hero__meta--right {
	right: 40px;
	text-align: right;
}

.ag-hero__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(980px, calc(100% - 48px));
	text-align: center;
}

.ag-hero__content > p {
	margin-bottom: 24px;
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ag-hero h1 {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-size: clamp(68px, 10vw, 160px);
	font-weight: 500;
	letter-spacing: -0.085em;
	line-height: 0.78;
}

.ag-hero h1 strong {
	font-weight: inherit;
}

.ag-hero__actions {
	display: flex;
	gap: 8px;
	margin-top: 44px;
}

.ag-hero__actions a {
	display: grid;
	min-width: 190px;
	min-height: 48px;
	padding: 12px 18px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.8);
	background: rgba(31, 33, 33, 0.84);
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	transition: background 180ms ease, color 180ms ease;
}

.ag-hero__actions a:first-child {
	background: var(--orange);
	border-color: var(--orange);
}

.ag-hero__actions a:hover,
.ag-hero__actions a:focus-visible {
	background: var(--white);
	border-color: var(--white);
	color: var(--ink);
}

.ag-hero__statement {
	position: absolute;
	z-index: 3;
	right: 40px;
	bottom: 36px;
	max-width: 290px;
	margin: 0;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	text-align: right;
	text-transform: uppercase;
}

.ag-work {
	position: relative;
	min-height: 2600px;
	padding: 140px var(--page-pad) 180px;
	background: var(--paper);
}

.geometry--work {
	z-index: 0;
	inset: 120px 0 0;
}

.geometry--work i {
	border-color: var(--line);
}

.geometry--work i:nth-child(1) {
	top: 4%;
	left: 50%;
	width: 55vw;
	aspect-ratio: 1;
	border-radius: 50%;
	transform: translateX(-50%);
}

.geometry--work i:nth-child(2) {
	top: 32%;
	left: 50%;
	width: 47vw;
	aspect-ratio: 1;
	transform: translateX(-50%) rotate(45deg);
}

.geometry--work i:nth-child(3) {
	top: 63%;
	left: 50%;
	width: 60vw;
	aspect-ratio: 1;
	border-radius: 50%;
	transform: translateX(-50%);
}

.ag-section-intro {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr minmax(280px, 0.55fr);
	gap: 40px;
	max-width: 1080px;
	margin: 0 auto 160px;
}

.ag-section-intro span,
.ag-services__lead > span,
.ag-process__heading > span,
.ag-areas__heading > span,
.ag-about__copy > span,
.ag-quote__intro > span {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.ag-section-intro p {
	margin: 0;
	font-size: clamp(22px, 2.3vw, 36px);
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.ag-project {
	position: relative;
	z-index: 2;
	margin: 0 auto clamp(160px, 18vw, 290px);
	background: var(--ink);
}

.ag-project img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter 450ms ease, transform 650ms ease;
}

.ag-project:hover img {
	filter: grayscale(0);
	transform: scale(1.018);
}

.ag-project--wide {
	width: min(780px, 68vw);
	aspect-ratio: 4 / 3;
}

.ag-project--portrait {
	width: min(620px, 52vw);
	aspect-ratio: 4 / 5;
}

.ag-project--landscape {
	width: min(860px, 72vw);
	aspect-ratio: 16 / 10;
	margin-bottom: 0;
}

.ag-project {
	overflow: visible;
}

.ag-project > img {
	overflow: hidden;
}

.ag-project figcaption {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 50%;
	display: grid;
	grid-template-columns: 70px 1fr auto;
	align-items: center;
	width: min(1180px, 92vw);
	min-height: 132px;
	padding: 24px 32px;
	background: rgba(245, 245, 242, 0.95);
	color: var(--ink);
	transform: translate(-50%, -50%);
	backdrop-filter: blur(12px);
}

.ag-project figcaption > span,
.ag-project figcaption small {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
}

.ag-project figcaption small {
	max-width: 220px;
}

.ag-project figcaption strong {
	justify-self: end;
	font-size: clamp(34px, 4vw, 62px);
	font-weight: 500;
	letter-spacing: -0.06em;
	text-transform: uppercase;
}

.ag-services {
	position: relative;
	z-index: 2;
	padding: 150px var(--page-pad);
	background: var(--white);
}

.ag-services__lead {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 50px;
	padding-bottom: 100px;
	border-bottom: 1px solid var(--line);
}

.ag-services__lead h2 {
	max-width: 1100px;
	margin: 0;
	font-size: clamp(58px, 8.5vw, 146px);
	font-weight: 500;
	letter-spacing: -0.085em;
	line-height: 0.82;
}

.ag-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-left: 1px solid var(--line);
}

.ag-services__grid article {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 30px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.ag-services__grid article > span,
.ag-process__steps article > span {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
}

.ag-services__grid h3 {
	margin: auto 0 24px;
	font-size: clamp(30px, 3.2vw, 50px);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.95;
	text-transform: uppercase;
}

.ag-services__grid p {
	max-width: 420px;
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
}

.ag-process {
	position: relative;
	z-index: 2;
	padding: 150px var(--page-pad);
	background: var(--ink);
	color: var(--white);
}

.ag-process__heading {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 50px;
	margin-bottom: 100px;
}

.ag-process__heading h2,
.ag-areas__heading h2,
.ag-quote__intro h2 {
	margin: 0;
	font-size: clamp(58px, 8.2vw, 138px);
	font-weight: 500;
	letter-spacing: -0.085em;
	line-height: 0.8;
}

.ag-process__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-top: 1px solid var(--line-light);
	border-left: 1px solid var(--line-light);
}

.ag-process__steps article {
	display: flex;
	flex-direction: column;
	min-height: 390px;
	padding: 26px;
	border-right: 1px solid var(--line-light);
	border-bottom: 1px solid var(--line-light);
}

.ag-process__steps article > span {
	color: var(--orange);
}

.ag-process__steps h3 {
	margin: auto 0 20px;
	font-size: clamp(26px, 2.5vw, 40px);
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: 0.96;
	text-transform: uppercase;
}

.ag-process__steps p {
	margin: 0;
	color: rgba(245, 245, 242, 0.62);
	font-size: 14px;
	line-height: 1.5;
}

.ag-areas {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.7fr);
	gap: clamp(70px, 10vw, 160px);
	padding: 150px var(--page-pad);
	background: var(--paper);
}

.ag-areas__heading {
	position: sticky;
	top: 120px;
	align-self: start;
}

.ag-areas__heading h2 {
	margin: 54px 0 44px;
	font-size: clamp(54px, 7vw, 112px);
}

.ag-areas__heading > p {
	max-width: 530px;
	font-size: 18px;
	line-height: 1.55;
}

.ag-city-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.ag-city-list li {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	align-items: center;
	min-height: 82px;
	border-bottom: 1px solid var(--line);
	transition: padding 180ms ease, background 180ms ease;
}

.ag-city-list li:hover {
	padding: 0 14px;
	background: var(--white);
}

.ag-city-list span {
	font-family: var(--mono);
	font-size: 9px;
}

.ag-city-list strong {
	font-size: clamp(24px, 2.5vw, 40px);
	font-weight: 500;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

.ag-city-list i {
	font-style: normal;
}

.ag-about {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	min-height: 760px;
	background: var(--white);
}

.ag-about__image {
	min-height: 620px;
	overflow: hidden;
}

.ag-about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: filter 450ms ease, transform 700ms ease;
}

.ag-about:hover .ag-about__image img {
	filter: grayscale(0);
	transform: scale(1.025);
}

.ag-about__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(50px, 7vw, 110px);
}

.ag-about__copy h2 {
	margin: 55px 0 34px;
	font-size: clamp(46px, 5.8vw, 96px);
	font-weight: 500;
	letter-spacing: -0.075em;
	line-height: 0.86;
}

.ag-about__copy p {
	max-width: 600px;
	font-size: 17px;
	line-height: 1.6;
}

.ag-about__copy a {
	align-self: flex-start;
	margin-top: 24px;
	padding-bottom: 5px;
	border-bottom: 1px solid currentColor;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.ag-quote {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
	gap: clamp(50px, 8vw, 130px);
	padding: 150px var(--page-pad);
	background: var(--orange);
	color: var(--white);
}

.ag-quote__intro h2 {
	margin: 70px 0 38px;
	font-size: clamp(58px, 7vw, 110px);
}

.ag-quote__intro > p {
	max-width: 520px;
	font-size: 18px;
	line-height: 1.55;
}

.ag-quote__intro > a {
	display: block;
	margin-top: 54px;
	font-size: clamp(30px, 3.4vw, 52px);
	font-weight: 500;
	letter-spacing: -0.055em;
}

.ag-quote__intro > small {
	display: block;
	margin-top: 8px;
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.quote-form-wrap {
	padding: clamp(30px, 4vw, 60px);
	background: var(--white);
	color: var(--ink);
}

.quote-form {
	display: grid;
	gap: 22px;
}

.field-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.quote-form label {
	display: grid;
	gap: 9px;
}

.quote-form label > span {
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.quote-form input,
.quote-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(31, 33, 33, 0.42);
	border-radius: 0;
	outline: 0;
	background: transparent;
	color: var(--ink);
	font-size: 16px;
}

.quote-form input {
	height: 48px;
}

.quote-form textarea {
	padding: 12px 0;
	resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus {
	border-color: var(--orange);
	box-shadow: 0 2px 0 var(--orange);
}

.quote-form input[type="file"] {
	height: auto;
	padding: 17px;
	border: 1px dashed rgba(31, 33, 33, 0.42);
}

.file-field small {
	color: rgba(31, 33, 33, 0.62);
	font-family: var(--mono);
	font-size: 9px;
}

.button--submit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 58px;
	margin-top: 8px;
	padding: 15px 20px;
	cursor: pointer;
	border: 0;
	background: var(--ink);
	color: var(--white);
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	transition: background 180ms ease;
}

.button--submit:hover,
.button--submit:focus-visible {
	background: var(--orange);
}

.form-consent {
	margin: 0;
	color: rgba(31, 33, 33, 0.58);
	font-size: 11px;
	line-height: 1.5;
}

.form-honeypot {
	position: absolute;
	left: -9999px;
}

.form-notice {
	margin-bottom: 26px;
	padding: 18px 20px;
	border: 1px solid var(--ink);
	font-size: 14px;
}

.form-notice p {
	margin: 6px 0 0;
}

.form-notice--success {
	border-color: #14733a;
	background: #e3f4e9;
	color: #0f562b;
}

.form-notice--error {
	border-color: #b21f0b;
	background: #ffe5df;
	color: #7b1708;
}

.site-footer {
	position: relative;
	z-index: 2;
	padding: 120px var(--page-pad) 34px;
	background: var(--ink);
	color: var(--white);
}

.site-footer__lead {
	display: grid;
	grid-template-columns: 170px 1fr;
	gap: 50px;
	align-items: start;
	padding-bottom: 100px;
	border-bottom: 1px solid var(--line-light);
}

.site-footer__lead > p {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__lead > a {
	display: flex;
	flex-direction: column;
	font-size: clamp(66px, 9vw, 150px);
	font-weight: 500;
	letter-spacing: -0.085em;
	line-height: 0.78;
}

.site-footer__lead > a span {
	color: var(--orange);
}

.site-footer__details {
	display: grid;
	grid-template-columns: 1fr 1fr 1.3fr 150px;
	gap: 50px;
	align-items: start;
	padding: 64px 0 80px;
}

.site-footer__details > div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.site-footer__details > div > span {
	margin-bottom: 10px;
	color: rgba(245, 245, 242, 0.46);
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__details p,
.site-footer__details a {
	max-width: 380px;
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.site-footer__badge {
	justify-self: end;
	width: 110px;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 24px;
	border-top: 1px solid var(--line-light);
	font-family: var(--mono);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.mobile-actions {
	display: none;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(35px);
	transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1080px) {
	.side-note {
		display: none;
	}

	.ag-work {
		min-height: auto;
	}

	.ag-services__grid {
		grid-template-columns: 1fr;
	}

	.ag-services__grid article {
		min-height: 300px;
	}

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

	.ag-areas,
	.ag-about,
	.ag-quote {
		grid-template-columns: 1fr;
	}

	.ag-areas__heading {
		position: static;
	}

	.ag-about__image {
		min-height: 720px;
	}

	.site-footer__details {
		grid-template-columns: repeat(3, 1fr);
	}

	.site-footer__badge {
		display: none;
	}
}

@media (max-width: 760px) {
	body {
		padding-bottom: 58px;
	}

	.site-header {
		top: 14px;
		width: calc(100% - 28px);
	}

	.site-brand {
		width: 160px;
	}

	.ag-hero {
		min-height: 820px;
	}

	.ag-hero__image {
		object-position: 68% center;
	}

	.ag-hero__meta {
		top: 96px;
	}

	.ag-hero__meta--left {
		left: 20px;
	}

	.ag-hero__meta--right {
		right: 20px;
	}

	.ag-hero h1 {
		font-size: clamp(62px, 18vw, 100px);
	}

	.ag-hero__actions {
		flex-direction: column;
		width: min(360px, 100%);
	}

	.ag-hero__actions a {
		width: 100%;
	}

	.ag-hero__statement {
		right: 20px;
		bottom: 24px;
		left: 20px;
		max-width: none;
		text-align: left;
	}

	.geometry--hero i:nth-child(1),
	.geometry--hero i:nth-child(3) {
		width: 58vw;
	}

	.geometry--hero i:nth-child(2) {
		top: 28%;
		left: 21%;
		width: 64vw;
	}

	.geometry--hero i:nth-child(4) {
		top: 18%;
		width: 88vw;
	}

	.ag-work {
		padding-top: 100px;
		padding-bottom: 110px;
	}

	.ag-section-intro,
	.ag-services__lead,
	.ag-process__heading,
	.site-footer__lead {
		grid-template-columns: 1fr;
	}

	.ag-section-intro {
		margin-bottom: 100px;
	}

	.ag-project--wide,
	.ag-project--portrait,
	.ag-project--landscape {
		width: calc(100vw - 40px);
		margin-bottom: 150px;
	}

	.ag-project figcaption {
		top: auto;
		bottom: -84px;
		grid-template-columns: 40px 1fr;
		width: calc(100% - 20px);
		min-height: 112px;
		padding: 18px;
		transform: translateX(-50%);
	}

	.ag-project figcaption strong {
		grid-column: 1 / -1;
		justify-self: start;
		margin-top: 14px;
		font-size: 30px;
	}

	.ag-project figcaption small {
		justify-self: end;
		text-align: right;
	}

	.ag-services,
	.ag-process,
	.ag-areas,
	.ag-quote {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.ag-services__lead,
	.ag-process__heading {
		gap: 45px;
		padding-bottom: 70px;
	}

	.ag-services__lead h2,
	.ag-process__heading h2,
	.ag-areas__heading h2,
	.ag-quote__intro h2 {
		font-size: clamp(52px, 15vw, 82px);
	}

	.ag-process__steps {
		grid-template-columns: 1fr;
	}

	.ag-process__steps article {
		min-height: 290px;
	}

	.ag-areas {
		gap: 70px;
	}

	.ag-about__image {
		min-height: 520px;
	}

	.ag-about__copy {
		padding: 80px var(--page-pad);
	}

	.ag-about__copy h2 {
		font-size: clamp(48px, 14vw, 76px);
	}

	.ag-quote {
		gap: 65px;
	}

	.field-row {
		grid-template-columns: 1fr;
	}

	.quote-form-wrap {
		margin-right: calc(-1 * var(--page-pad));
		margin-left: calc(-1 * var(--page-pad));
	}

	.site-footer {
		padding-top: 90px;
	}

	.site-footer__lead {
		gap: 40px;
	}

	.site-footer__lead > a {
		font-size: clamp(58px, 17vw, 90px);
	}

	.site-footer__details {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		flex-direction: column;
		gap: 12px;
	}

	.mobile-actions {
		position: fixed;
		z-index: 1100;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		height: 58px;
		border-top: 1px solid rgba(255, 255, 255, 0.32);
		background: var(--orange);
		color: var(--white);
	}

	.mobile-actions a {
		display: grid;
		place-items: center;
		border-right: 1px solid rgba(255, 255, 255, 0.32);
		font-family: var(--mono);
		font-size: 10px;
		font-weight: 700;
		text-transform: uppercase;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
