@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/barlow-condensed-500.ttf") format("truetype");
}

@font-face {
	font-family: "Barlow Condensed";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/barlow-condensed-600.ttf") format("truetype");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/inter-400.ttf") format("truetype");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url("../fonts/inter-500.ttf") format("truetype");
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("../fonts/inter-600.ttf") format("truetype");
}

:root {
	--ink: #171411;
	--ink-soft: #3c3732;
	--bronze: #7c6049;
	--bronze-dark: #5d4635;
	--warm: #f4f0ea;
	--warm-soft: #faf8f4;
	--line: #d9d0c7;
	--white: #fff;
	--font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
	--font-body: "Inter", Arial, sans-serif;
	--wrap: min(1180px, calc(100% - 48px));
	--shadow: 0 20px 60px rgb(34 27 20 / 14%);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--warm-soft);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
	top: 32px;
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

button,
input,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid #b58558;
	outline-offset: 4px;
}

.wrap {
	width: var(--wrap);
	margin-inline: auto;
}

.skip-link {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	color: var(--white);
	background: var(--ink);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: relative;
	z-index: 100;
	background: rgb(255 255 255 / 98%);
	border-bottom: 1px solid rgb(23 20 17 / 10%);
}

.utility-bar {
	color: #625a53;
	background: var(--warm);
	border-bottom: 1px solid rgb(23 20 17 / 8%);
	font-size: 12px;
}

.utility-bar__inner,
.utility-bar__contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.utility-bar__inner {
	min-height: 34px;
}

.utility-bar a {
	text-decoration: none;
}

.utility-bar a:hover {
	color: var(--bronze-dark);
}

.brand-row {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 108px;
}

.brand {
	display: block;
	width: 260px;
}

.brand img,
.footer-brand img {
	width: 100%;
}

.menu-toggle {
	display: none;
	padding: 9px 14px;
	color: var(--ink);
	background: transparent;
	border: 1px solid var(--ink);
	cursor: pointer;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-nav {
	background: var(--white);
}

.site-nav__inner {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: clamp(20px, 2.6vw, 42px);
	min-height: 58px;
}

.site-nav a {
	position: relative;
	display: flex;
	align-items: center;
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}

.site-nav > .wrap > a::after,
.nav-group > a::after {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	height: 2px;
	background: var(--bronze);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
	transform: scaleX(1);
}

.site-nav .nav-contact {
	align-self: center;
	min-height: 36px;
	padding: 0 18px;
	color: var(--white);
	background: var(--ink);
}

.site-nav .nav-contact:hover {
	background: var(--bronze-dark);
}

.nav-group {
	position: relative;
	display: flex;
}

.subnav {
	position: absolute;
	z-index: 20;
	top: calc(100% - 1px);
	left: -22px;
	display: none;
	min-width: 280px;
	padding: 10px 0;
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.nav-group:hover .subnav,
.nav-group:focus-within .subnav {
	display: block;
}

.subnav a {
	display: block;
	padding: 10px 20px;
	white-space: normal;
}

.subnav a:hover {
	color: var(--bronze-dark);
	background: var(--warm-soft);
}

.home-hero {
	display: grid;
	grid-template-columns: minmax(360px, 46%) minmax(0, 54%);
	min-height: 680px;
	background: var(--warm-soft);
}

.home-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(56px, 7vw, 112px) clamp(36px, 4.5vw, 76px);
}

.home-hero__copy h1 {
	max-width: 680px;
	margin: 0 0 24px;
	font-family: var(--font-display);
	font-size: clamp(64px, 4.9vw, 72px);
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 0.95;
	text-transform: uppercase;
}

.home-hero__copy > p:not(.eyebrow) {
	max-width: 510px;
	margin: 24px 0 0;
	color: var(--ink-soft);
	font-size: 17px;
}

.home-hero__visual {
	position: relative;
	min-height: 680px;
	overflow: hidden;
}

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

.home-hero__inset {
	position: absolute;
	bottom: 0;
	left: 0;
	width: min(48%, 420px);
	padding: 8px 8px 0 0;
	background: var(--white);
	box-shadow: 20px -20px 50px rgb(0 0 0 / 12%);
}

.home-hero__inset img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--bronze);
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.1;
	text-transform: uppercase;
}

.rule {
	width: 74px;
	height: 3px;
	margin: 8px 0 0;
	background: var(--bronze);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 22px;
	border: 1px solid transparent;
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		border-color 160ms ease;
}

.button--primary,
.prose .button {
	color: var(--white);
	background: var(--bronze);
	border-color: var(--bronze);
}

.button--primary:hover,
.prose .button:hover {
	background: var(--bronze-dark);
	border-color: var(--bronze-dark);
}

.button--outline {
	color: var(--ink);
	background: transparent;
	border-color: var(--ink);
}

.button--outline:hover {
	color: var(--white);
	background: var(--ink);
}

.section {
	padding-block: clamp(72px, 8vw, 128px);
}

.story-section {
	background: var(--warm);
	border-block: 1px solid var(--line);
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
	gap: clamp(48px, 9vw, 150px);
	align-items: center;
}

.story-grid h2,
.section-heading h2,
.service-feature__copy h2,
.contact-section h2,
.contact-strip h2,
.page-cta h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(48px, 5vw, 80px);
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 0.92;
	text-transform: uppercase;
}

.story-copy {
	max-width: 620px;
	color: var(--ink-soft);
}

.story-copy p {
	margin: 0 0 18px;
}

.process-section {
	background: var(--white);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 48px;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	max-width: none;
	gap: 32px;
}

.section-heading > p:not(.eyebrow) {
	color: var(--ink-soft);
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.process-card {
	background: var(--warm);
	border-bottom: 3px solid transparent;
	transition:
		transform 180ms ease,
		border-color 180ms ease;
}

.process-card:hover {
	border-bottom-color: var(--bronze);
	transform: translateY(-4px);
}

.process-card > img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.process-card__body {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 14px;
	padding: 24px 26px 28px;
}

.process-card__number,
.process-card h3 {
	margin: 0;
	color: var(--bronze-dark);
	font-family: var(--font-display);
	font-size: 31px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.process-card__body > p:last-child {
	grid-column: 1 / -1;
	margin: 14px 0 0;
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.6;
}

.products-section {
	background: var(--warm-soft);
}

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

.product-tile {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--ink);
	text-decoration: none;
}

.product-tile--2,
.product-tile--3 {
	grid-column: span 1;
}

.product-tile img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	opacity: 0.92;
	transition:
		transform 400ms ease,
		opacity 200ms ease;
}

.product-tile span {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 18px 22px;
	color: var(--ink);
	background: rgb(255 255 255 / 94%);
	font-family: var(--font-display);
	font-size: clamp(25px, 2.5vw, 38px);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.product-tile:hover img {
	opacity: 1;
	transform: scale(1.025);
}

.service-feature {
	padding: 0;
	background: var(--ink);
}

.service-feature__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	width: 100%;
	max-width: none;
}

.service-feature__image img {
	width: 100%;
	height: 100%;
	min-height: 610px;
	object-fit: cover;
}

.service-feature__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(56px, 8vw, 130px);
	color: var(--white);
}

.service-feature__copy h2 {
	font-size: clamp(52px, 5vw, 82px);
}

.service-feature__copy > p:not(.eyebrow) {
	max-width: 540px;
	color: rgb(255 255 255 / 76%);
}

.text-link {
	display: inline-flex;
	margin-top: 16px;
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid currentcolor;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.service-feature .text-link {
	color: var(--white);
}

.projects-preview {
	background: var(--white);
}

.project-preview-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.project-preview {
	display: grid;
	text-decoration: none;
}

.project-preview img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: saturate(0.88);
	transition:
		filter 180ms ease,
		transform 180ms ease;
}

.project-preview__title {
	margin-top: 18px;
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.project-preview__meta {
	margin-top: 6px;
	color: var(--ink-soft);
	font-size: 14px;
}

.project-preview:hover img {
	filter: saturate(1);
	transform: translateY(-3px);
}

.contact-section {
	color: var(--white);
	background: var(--ink);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
	gap: clamp(52px, 9vw, 140px);
}

.contact-section a {
	color: inherit;
}

.contact-section h2 {
	margin-bottom: 28px;
}

.contact-section p {
	color: rgb(255 255 255 / 72%);
}

.contact-section strong {
	color: var(--white);
}

.contact-form {
	display: grid;
	gap: 18px;
}

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

.contact-form label {
	display: grid;
	gap: 7px;
	color: rgb(255 255 255 / 76%);
	font-size: 13px;
	font-weight: 500;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 13px 14px;
	color: var(--white);
	background: rgb(255 255 255 / 6%);
	border: 1px solid rgb(255 255 255 / 30%);
	border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #d2aa87;
	outline: 2px solid #d2aa87;
	outline-offset: 0;
}

.contact-form .button {
	justify-self: start;
}

.honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.form-message {
	margin-bottom: 20px;
	padding: 14px 16px;
	border: 1px solid;
}

.form-message--success {
	color: #d9f3df;
	background: #16321d;
	border-color: #4c9760;
}

.form-message--error {
	color: #ffe0dd;
	background: #3a1715;
	border-color: #a7534d;
}

.site-footer {
	padding: 76px 0 24px;
	color: var(--ink-soft);
	background: var(--warm);
	border-top: 1px solid var(--line);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: clamp(40px, 7vw, 100px);
}

.footer-brand img {
	width: min(240px, 100%);
	margin-bottom: 24px;
}

.footer-brand p {
	max-width: 400px;
}

.site-footer h2 {
	margin: 0 0 16px;
	color: var(--ink);
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.site-footer address {
	font-style: normal;
}

.hours {
	margin: 0;
	font-size: 13px;
}

.hours > div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 18px;
}

.hours dt,
.hours dd {
	margin: 0;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 64px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	font-size: 12px;
}

.footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-bottom a {
	text-decoration: none;
}

.archive-hero,
.article-header {
	padding: clamp(80px, 10vw, 150px) 0;
	background: var(--warm);
	border-bottom: 1px solid var(--line);
}

.archive-hero h1,
.article-header h1,
.page-hero h1,
.not-found h1 {
	max-width: 960px;
	margin: 10px 0 18px;
	font-family: var(--font-display);
	font-size: clamp(70px, 9vw, 130px);
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 0.85;
	text-transform: uppercase;
}

.page-hero h1 {
	font-size: clamp(42px, 6vw, 72px);
}

.archive-hero p:last-child {
	max-width: 620px;
	color: var(--ink-soft);
	font-size: 18px;
}

.filter-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 44px;
}

.filter-nav a {
	padding: 9px 18px;
	border: 1px solid var(--line);
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
}

.filter-nav a[aria-current="page"],
.filter-nav a:hover {
	color: var(--white);
	background: var(--ink);
	border-color: var(--ink);
}

.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 22px;
}

.archive-card {
	background: var(--white);
	border-bottom: 3px solid transparent;
}

.archive-card:hover {
	border-bottom-color: var(--bronze);
}

.archive-card a {
	display: block;
	text-decoration: none;
}

.archive-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.archive-card__body {
	padding: 22px 24px 28px;
}

.archive-card__body .eyebrow {
	font-size: 14px;
}

.archive-card h2,
.blog-card h2 {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: 35px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.archive-card p {
	color: var(--ink-soft);
	font-size: 14px;
}

.project-hero {
	position: relative;
	display: grid;
	min-height: min(76vh, 820px);
	color: var(--white);
	background: var(--ink);
}

.project-hero > img,
.project-hero__overlay,
.project-hero__content {
	grid-area: 1 / 1;
}

.project-hero > img {
	width: 100%;
	height: 100%;
	min-height: min(76vh, 820px);
	object-fit: cover;
}

.project-hero__overlay {
	background: rgb(0 0 0 / 42%);
}

.project-hero__content {
	z-index: 2;
	align-self: end;
	padding-bottom: clamp(58px, 8vw, 112px);
}

.project-hero h1 {
	max-width: 980px;
	margin: 12px 0 18px;
	font-family: var(--font-display);
	font-size: clamp(70px, 9vw, 136px);
	font-weight: 600;
	line-height: 0.84;
	text-transform: uppercase;
}

.project-hero__content > p:last-child {
	max-width: 620px;
	font-size: 18px;
}

.project-detail-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: clamp(56px, 10vw, 140px);
}

.project-meta {
	padding-top: 6px;
}

.project-meta > div {
	display: grid;
	gap: 2px;
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
}

.project-meta span {
	color: var(--bronze);
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

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

.gallery-grid a {
	overflow: hidden;
	background: var(--ink);
}

.gallery-grid img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 250ms ease;
}

.gallery-grid a:hover img {
	transform: scale(1.02);
}

.contact-strip {
	color: var(--white);
	background: var(--ink);
}

.contact-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.contact-strip h2 {
	font-size: clamp(46px, 5vw, 74px);
}


.page-hero {
	position: relative;
	display: grid;
	min-height: 400px;
	overflow: hidden;
	color: var(--ink);
	background: var(--warm);
}

.page-hero > img,
.page-hero__inner,
.page-hero--image::after {
	grid-area: 1 / 1;
}

.page-hero > img {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
}

.page-hero--image::after {
	z-index: 1;
	background: rgb(0 0 0 / 43%);
	content: "";
}

.page-hero__inner {
	z-index: 2;
	align-self: end;
	padding-block: clamp(32px, 6vw, 60px);
}

.page-hero--image .page-hero__inner {
	color: var(--white);
}

.page-hero h1 {
	margin: 0;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 0.95;
}

.page-hero__inner > p:last-child {
	max-width: 640px;
	margin-bottom: 0;
}

.page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.4fr);
	gap: clamp(54px, 9vw, 130px);
	padding-block: clamp(70px, 8vw, 120px);
}

.prose {
	max-width: 780px;
	color: var(--ink-soft);
}

.prose h2,
.prose h3 {
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
}

.prose h2 {
	margin: 0 0 24px;
	font-size: clamp(44px, 4vw, 64px);
}

.prose h3 {
	margin-top: 42px;
	font-size: 32px;
}

.prose p,
.prose ul {
	margin-block: 0 22px;
}

.prose li + li {
	margin-top: 8px;
}

.prose figure {
	margin: 42px 0;
}

.prose figure img,
.prose > img {
	width: 100%;
}

.page-cta {
	align-self: start;
	padding: 34px;
	color: var(--white);
	background: var(--ink);
}

.page-cta h2 {
	margin-bottom: 26px;
	font-size: 44px;
}

.article-layout {
	padding-block: clamp(70px, 8vw, 120px);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.blog-card {
	padding: 30px;
	background: var(--white);
	border-top: 3px solid var(--bronze);
}

.blog-card h2 a {
	text-decoration: none;
}

.blog-card > p:not(.eyebrow) {
	color: var(--ink-soft);
	font-size: 14px;
}

.not-found {
	display: grid;
	min-height: 70vh;
	place-items: center;
	background: var(--warm);
}

.not-found__inner {
	padding-block: 100px;
	text-align: center;
}

.not-found h1 {
	margin-inline: auto;
}

.not-found .button-row {
	justify-content: center;
}

.lightbox {
	width: min(1200px, calc(100vw - 40px));
	max-width: none;
	max-height: calc(100vh - 40px);
	padding: 56px 16px 16px;
	background: var(--ink);
	border: 0;
}

.lightbox::backdrop {
	background: rgb(0 0 0 / 86%);
}

.lightbox img {
	max-width: 100%;
	max-height: calc(100vh - 120px);
	margin: auto;
}

.lightbox__close {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 7px 12px;
	color: var(--white);
	background: transparent;
	border: 1px solid rgb(255 255 255 / 50%);
	cursor: pointer;
}

@media (max-width: 1100px) {
	.home-hero {
		grid-template-columns: 48% 52%;
	}

	.home-hero__copy {
		padding-inline: 48px;
	}

	.site-nav__inner {
		gap: 20px;
	}

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

@media (max-width: 899px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.utility-bar__inner {
		min-height: 38px;
	}

	.utility-bar__inner > a {
		display: none;
	}

	.utility-bar__contact {
		width: 100%;
		justify-content: space-between;
	}

	.brand-row {
		justify-content: space-between;
		min-height: 86px;
	}

	.brand {
		width: 205px;
	}

	.menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		display: none;
		border-top: 1px solid var(--line);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__inner {
		display: grid;
		gap: 0;
		padding-block: 12px 20px;
	}

	.site-nav a,
	.site-nav .nav-contact {
		display: block;
		padding: 11px 0;
	}

	.site-nav .nav-contact {
		margin-top: 10px;
		padding-inline: 14px;
		text-align: center;
	}

	.site-nav > .wrap > a::after,
	.nav-group > a::after {
		display: none;
	}

	.nav-group {
		display: block;
	}

	.subnav {
		position: static;
		display: grid;
		min-width: 0;
		padding: 0 0 8px 18px;
		border: 0;
		box-shadow: none;
	}

	.subnav a {
		padding: 7px 0;
		font-size: 13px;
	}

	.home-hero {
		grid-template-columns: 1fr;
	}

	.home-hero__copy {
		min-height: 560px;
		padding-inline: 48px;
	}

	.home-hero__visual {
		min-height: 560px;
	}

	.story-grid,
	.service-feature__grid,
	.contact-grid,
	.page-layout {
		grid-template-columns: 1fr;
	}

	.process-grid,
	.project-preview-grid,
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.process-card:last-child {
		grid-column: 1 / -1;
		max-width: calc(50% - 11px);
	}

	.service-feature__copy {
		padding: 72px 48px;
	}

	.service-feature__image img {
		min-height: 480px;
	}

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

	.footer-brand {
		grid-column: 1 / -1;
	}

	.page-cta {
		max-width: 540px;
	}
}

@media (max-width: 640px) {
	:root {
		--wrap: calc(100% - 32px);
	}

	body.admin-bar .site-header {
		top: 0;
	}

	.utility-bar__contact {
		gap: 12px;
		font-size: 11px;
	}

	.brand {
		width: 180px;
	}

	.home-hero__copy {
		min-height: auto;
		padding-inline: 24px;
		padding-block: 72px;
	}

	.home-hero__copy h1 {
		font-size: clamp(58px, 18vw, 78px);
	}

	.home-hero__visual {
		min-height: 440px;
	}

	.home-hero__inset {
		width: 54%;
	}

	.button-row,
	.button-row .button {
		width: 100%;
	}

	.story-grid,
	.contact-grid {
		gap: 40px;
	}

	.story-grid h2,
	.section-heading h2,
	.service-feature__copy h2,
	.contact-section h2 {
		font-size: clamp(46px, 14vw, 62px);
	}

	.process-grid,
	.product-grid,
	.project-preview-grid,
	.archive-grid,
	.blog-grid,
	.form-row,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.process-card:last-child {
		grid-column: auto;
		max-width: none;
	}

	.service-feature__copy {
		padding-inline: 24px;
	}

	.section-heading--split,
	.contact-strip__inner,
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: auto;
	}

	.project-detail-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.project-hero {
		min-height: 620px;
	}

	.project-hero > img {
		min-height: 620px;
	}

	.project-hero h1,
	.archive-hero h1,
	.page-hero h1,
	.article-header h1 {
		font-size: clamp(58px, 18vw, 84px);
	}
}

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

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


.page-hero {
	position: relative;
	display: grid;
	height: 400px;
	min-height: 0;
	overflow: hidden;
	color: var(--ink);
	background: var(--warm);
}

.page-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: center;
}

.page-hero--image::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	background: rgb(0 0 0 / 43%);
	content: "";
	pointer-events: none;
}

.page-hero__inner {
	position: relative;
	z-index: 2;
	align-self: end;
	padding-block: 50px;
}
