:root {
	--paper: #efece3;
	--paper-deep: #dfdbd0;
	--paper-light: #f7f4ec;
	--ink: #161613;
	--muted: #656158;
	--rule: #c8c1b5;
	--blue: #2448e8;
	--blue-soft: #cdd6ff;
	--clay: #ae3f20;
	--white: #fff;
	--header-height: 64px;
	--gutter: clamp(1.25rem, 3vw, 3.5rem);
	--section-space: clamp(5rem, 9vw, 9rem);
	--page-max: 1600px;
	--ease: 180ms ease;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

::selection {
	background: var(--clay);
	color: var(--white);
}

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

a:hover {
	text-decoration-color: var(--clay);
}

button,
input,
textarea,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 4px;
}

.work-index :focus-visible,
.project-list--archive :focus-visible,
.contact-sheet :focus-visible {
	outline-color: var(--white);
}

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

figure {
	margin: 0;
}

p,
h1,
h2,
h3,
h4 {
	overflow-wrap: break-word;
}

[id] {
	scroll-margin-top: calc(var(--header-height) + 1rem);
}

.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 {
	z-index: 100000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--white);
	color: var(--ink);
	font-weight: 700;
	white-space: normal;
}

.site-shell {
	min-height: 100vh;
	min-height: 100dvh;
}

/* Header */

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	height: var(--header-height);
	border-bottom: 1px solid var(--ink);
	background: var(--paper);
}

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

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(230px, 1fr) auto minmax(180px, 1fr);
	gap: 2rem;
	align-items: center;
	width: min(100%, var(--page-max));
	height: 100%;
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.site-branding {
	display: flex;
	align-items: center;
	justify-self: start;
}

.brand,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	color: var(--ink);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.brand__edition {
	margin-left: 0.75rem;
	padding-left: 0.75rem;
	border-left: 1px solid var(--ink);
	color: var(--muted);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.58rem;
	letter-spacing: 0.06em;
}

.custom-logo {
	width: auto;
	max-width: 190px;
	height: auto;
	max-height: 40px;
}

.primary-nav {
	justify-self: center;
}

.primary-menu,
.primary-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(1.25rem, 2.5vw, 2.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: menu-item;
}

.primary-menu li,
.primary-nav li {
	counter-increment: menu-item;
}

.primary-menu a,
.primary-nav a {
	display: inline-flex;
	align-items: baseline;
	gap: 0.35rem;
	padding: 0.35rem 0;
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-menu a::before,
.primary-nav a::before {
	content: "0" counter(menu-item);
	color: var(--muted);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.55rem;
	font-weight: 400;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: var(--clay);
}

.header-contact {
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 0.55rem;
	min-height: 2.4rem;
	padding: 0 0.85rem;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background var(--ease), color var(--ease);
}

.header-contact:hover {
	background: var(--clay);
	color: var(--white);
}

.status-block {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	background: var(--clay);
	flex: 0 0 auto;
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.65rem;
	padding: 0.5rem 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
}

.menu-toggle__icon {
	position: relative;
	display: block;
	width: 1.25rem;
	height: 0.75rem;
}

.menu-toggle__icon span {
	position: absolute;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: top var(--ease), transform var(--ease);
}

.menu-toggle__icon span:first-child {
	top: 0.1rem;
}

.menu-toggle__icon span:last-child {
	top: 0.62rem;
}

.is-menu-open .menu-toggle__icon span:first-child,
.is-menu-open .menu-toggle__icon span:last-child {
	top: 0.36rem;
}

.is-menu-open .menu-toggle__icon span:first-child {
	transform: rotate(45deg);
}

.is-menu-open .menu-toggle__icon span:last-child {
	transform: rotate(-45deg);
}

/* Shared type and controls */

.eyebrow,
.folio-label,
.plate-label,
.section-code,
.project-entry__index,
.project-entry__kind {
	font-family: "Courier New", Courier, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.eyebrow,
.folio-label {
	margin: 0;
	color: var(--muted);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: 0.75rem 1rem;
	border: 1px solid var(--ink);
	background: transparent;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	transition: background var(--ease), border-color var(--ease), color var(--ease);
}

.button--primary,
.button--dark {
	background: var(--ink);
	color: var(--paper);
}

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

.button--small {
	min-height: 2.5rem;
	padding: 0.6rem 0.75rem;
}

.text-link,
.section-link,
.back-link {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.38rem;
}

.text-link--quiet {
	color: var(--muted);
}

/* Landing / workshop sheet */

.home-page {
	width: 100%;
}

.landing {
	width: min(100%, var(--page-max));
	margin: 0 auto;
	border-right: 1px solid var(--rule);
	border-left: 1px solid var(--rule);
}

.landing__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	min-height: min(780px, calc(100svh - var(--header-height)));
	border-bottom: 1px solid var(--rule);
}

.landing__identity,
.landing__statement,
.landing__project {
	min-width: 0;
	padding: clamp(2.5rem, 5vw, 5rem) var(--gutter);
}

.landing__identity {
	display: flex;
	grid-column: span 3;
	flex-direction: column;
	border-right: 1px solid var(--rule);
}

.landing__name {
	margin: auto 0 1.25rem;
	font-size: clamp(2.8rem, 4vw, 4.75rem);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.88;
}

.landing__lede {
	max-width: 29ch;
	margin: 0;
	color: #34322d;
	font-size: clamp(0.95rem, 1.15vw, 1.1rem);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	min-height: 2.75rem;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.66rem;
	font-weight: 700;
	text-transform: uppercase;
}

.landing__statement {
	display: flex;
	grid-column: span 5;
	flex-direction: column;
	justify-content: center;
}

.landing__statement h1 {
	max-width: 9ch;
	margin: clamp(2rem, 5vh, 4rem) 0;
	font-size: clamp(3.8rem, 6vw, 7rem);
	font-weight: 700;
	letter-spacing: -0.07em;
	line-height: 0.88;
}

.display-mark {
	color: var(--clay);
}

.landing__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
}

.landing__project {
	display: flex;
	grid-column: span 4;
	flex-direction: column;
	justify-content: center;
	border-left: 1px solid var(--rule);
	background: var(--paper-deep);
}

.plate-label {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 0.75rem;
	color: var(--muted);
}

.landing-project__media {
	display: block;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--ink);
	background: var(--paper-light);
	overflow: hidden;
}

.landing-project__media img,
.landing-project__media .project-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.landing-project__caption {
	padding-top: 1rem;
}

.landing-project__caption h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 2.3vw, 2.5rem);
	letter-spacing: -0.045em;
	line-height: 1;
}

.landing-project__caption h2 a {
	text-decoration: none;
}

.landing-project__caption dl,
.studio-facts,
.project-entry__facts,
.project-facts dl,
.contact-sheet__details dl {
	margin: 0;
}

.landing-project__caption dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1px solid var(--rule);
}

.landing-project__caption dl div {
	padding: 0.65rem 0;
	border-bottom: 1px solid var(--rule);
}

.landing-project__caption dl div + div {
	padding-left: 1rem;
	border-left: 1px solid var(--rule);
}

.landing-project__caption dt,
.landing-project__caption dd,
.studio-facts dt,
.studio-facts dd,
.project-entry__facts dt,
.project-entry__facts dd,
.project-facts dt,
.project-facts dd,
.contact-sheet__details dt,
.contact-sheet__details dd {
	margin: 0;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.64rem;
}

.landing-project__caption dt,
.studio-facts dt,
.project-entry__facts dt,
.project-facts dt,
.contact-sheet__details dt {
	margin-bottom: 0.25rem;
	color: var(--muted);
	text-transform: uppercase;
}

.landing-project__placeholder,
.project-card__placeholder {
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 18rem;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.25rem;
	background: var(--blue);
	color: var(--white);
}

.landing-project__placeholder span,
.project-card__placeholder span {
	font-size: clamp(5rem, 10vw, 9rem);
	font-weight: 700;
	letter-spacing: -0.09em;
	line-height: 0.8;
}

.landing-project__placeholder small {
	align-self: flex-end;
	font-family: "Courier New", Courier, monospace;
}

.landing-project__empty {
	margin: 1rem 0 0;
	font-size: 0.8rem;
}

.landing__facts {
	border-bottom: 1px solid var(--rule);
}

.studio-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.studio-facts > div {
	min-height: 5.5rem;
	padding: 1rem var(--gutter);
	border-right: 1px solid var(--rule);
}

.studio-facts > div:last-child {
	border-right: 0;
}

.studio-facts dd {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
}

.capability-index {
	display: grid;
	grid-template-columns: 3fr 9fr;
	min-height: 6rem;
	background: var(--blue);
	color: var(--white);
}

.capability-index > p {
	margin: 0;
	padding: 1.25rem var(--gutter);
	border-right: 1px solid rgba(255, 255, 255, 0.45);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.68rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.capability-index ul {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.capability-index li {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.25rem;
	border-right: 1px solid rgba(255, 255, 255, 0.45);
	font-size: 0.75rem;
	font-weight: 700;
}

.capability-index li:last-child {
	border-right: 0;
}

.capability-index li span {
	margin-bottom: 1rem;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.58rem;
	font-weight: 400;
}

/* Shared section introduction */

.section-intro {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: clamp(3rem, 8vw, 9rem);
	align-items: end;
	width: min(100%, var(--page-max));
	margin: 0 auto clamp(3.5rem, 7vw, 7rem);
	padding: 0 var(--gutter);
}

.section-code {
	margin: 0 0 1rem;
	color: var(--clay);
}

.section-intro h2,
.archive-hero h1 {
	margin: 0;
	font-size: clamp(3.25rem, 6.5vw, 7rem);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.88;
}

.section-intro > p {
	max-width: 42ch;
	margin: 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.section-intro--compact {
	grid-template-columns: 1fr;
}

.section-intro--inverse {
	color: var(--paper);
}

.section-intro--inverse > p {
	color: #aaa69d;
}

/* Project work index */

.work-index {
	padding: var(--section-space) 0;
	background: var(--ink);
	color: var(--paper);
}

.project-list {
	width: min(100%, var(--page-max));
	margin: 0 auto;
	border-top: 1px solid #46443f;
}

.project-entry {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: clamp(2rem, 6vw, 7rem);
	align-items: stretch;
	padding: clamp(2rem, 5vw, 5rem) var(--gutter);
	border-bottom: 1px solid #46443f;
}

.project-entry:nth-child(even) {
	grid-template-columns: 5fr 7fr;
}

.project-entry:nth-child(even) .project-entry__media {
	grid-column: 2;
	grid-row: 1;
}

.project-entry:nth-child(even) .project-entry__content {
	grid-column: 1;
	grid-row: 1;
}

.project-entry__media {
	min-width: 0;
	background: var(--paper-deep);
}

.project-entry__media a {
	display: block;
	height: 100%;
	min-height: 28rem;
	overflow: hidden;
}

.project-entry__media img,
.project-entry__media .project-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-entry__content {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
}

.project-entry__index {
	display: flex;
	justify-content: space-between;
	margin: 0 0 2rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid #46443f;
	color: #aaa69d;
}

.project-entry__kind {
	margin: 0 0 1rem;
	color: #ef8a65;
}

.project-entry h3 {
	margin: 0;
	font-size: clamp(2.75rem, 5.3vw, 6rem);
	font-weight: 700;
	letter-spacing: -0.065em;
	line-height: 0.88;
}

.project-entry h3 a {
	text-decoration: none;
}

.project-entry h3 a:hover {
	text-decoration: underline;
	text-decoration-color: var(--clay);
	text-decoration-thickness: 0.06em;
	text-underline-offset: 0.12em;
}

.project-entry__excerpt {
	max-width: 42ch;
	margin: 1.5rem 0 0;
	color: #aaa69d;
}

.project-entry__facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 2.5rem;
	border-top: 1px solid #46443f;
	border-bottom: 1px solid #46443f;
}

.project-entry__facts div {
	padding: 0.8rem 0;
}

.project-entry__facts div + div {
	padding-left: 1rem;
	border-left: 1px solid #46443f;
}

.project-entry__facts dt {
	color: #85827b;
}

.project-entry__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-top: 1.75rem;
}

.section-link {
	margin-top: 2.5rem;
}

.section-link--inverse {
	margin-left: max(var(--gutter), calc((100vw - var(--page-max)) / 2 + var(--gutter)));
	color: var(--paper);
}

.project-empty {
	padding: clamp(3rem, 7vw, 7rem) var(--gutter);
	border-bottom: 1px solid #46443f;
}

.project-empty h3 {
	max-width: 10ch;
	margin: 1rem 0;
	font-size: clamp(3rem, 6vw, 6rem);
	letter-spacing: -0.06em;
	line-height: 0.9;
}

/* Services ledger */

.service-ledger-section {
	padding: var(--section-space) 0;
}

.service-ledger {
	width: min(100%, var(--page-max));
	margin: 0 auto;
	padding: 0 var(--gutter);
	border-top: 1px solid var(--ink);
	list-style: none;
}

.service-ledger li {
	display: grid;
	grid-template-columns: 1fr 4fr 5fr 1fr;
	gap: clamp(1rem, 3vw, 3rem);
	align-items: start;
	padding: clamp(1.75rem, 3vw, 3rem) 0;
	border-bottom: 1px solid var(--ink);
	transition: background var(--ease), color var(--ease), padding var(--ease);
}

.service-ledger__number,
.service-ledger__mark {
	font-family: "Courier New", Courier, monospace;
	font-size: 0.7rem;
}

.service-ledger h3 {
	margin: 0;
	font-size: clamp(1.8rem, 3.3vw, 3.5rem);
	font-weight: 700;
	letter-spacing: -0.045em;
	line-height: 0.95;
}

.service-ledger p {
	max-width: 42ch;
	margin: 0;
	color: var(--muted);
}

.service-ledger__mark {
	justify-self: end;
	font-size: 1.25rem;
}

@media (hover: hover) {
	.service-ledger li:hover {
		margin: 0 calc(-1 * var(--gutter));
		padding-right: var(--gutter);
		padding-left: var(--gutter);
		background: var(--clay);
		color: var(--white);
	}

	.service-ledger li:hover p {
		color: var(--white);
	}
}

/* Process build log */

.process-log-section {
	padding: var(--section-space) 0;
	background: var(--blue-soft);
}

.process-log {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100%, var(--page-max));
	margin: 0 auto;
	padding: 0 var(--gutter);
	list-style: none;
}

.process-log li {
	display: flex;
	min-height: 23rem;
	flex-direction: column;
	padding: 1.5rem;
	border: 1px solid var(--ink);
	border-right: 0;
}

.process-log li:last-child {
	border-right: 1px solid var(--ink);
}

.process-log__head {
	display: flex;
	justify-content: space-between;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.64rem;
	letter-spacing: 0.06em;
}

.process-log h3 {
	margin: auto 0 1rem;
	font-size: clamp(1.8rem, 3vw, 3.25rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.process-log p {
	margin: 0;
	color: #3f465b;
}

.home-page-content {
	padding: var(--section-space) var(--gutter);
}

.home-page-content .entry-content {
	margin: 0 auto;
}

/* Contact sheet */

.contact-sheet {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: clamp(3rem, 8vw, 8rem);
	padding: var(--section-space) max(var(--gutter), calc((100vw - var(--page-max)) / 2 + var(--gutter)));
	background: var(--clay);
	color: var(--white);
}

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

.contact-sheet h2 {
	max-width: 9ch;
	margin: 0;
	font-size: clamp(4rem, 8vw, 9rem);
	font-weight: 700;
	letter-spacing: -0.075em;
	line-height: 0.84;
}

.contact-sheet__details {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.contact-sheet__details > p {
	margin: 0 0 1.5rem;
	font-family: "Courier New", Courier, monospace;
	font-size: 0.72rem;
	text-transform: uppercase;
}

.contact-sheet address {
	margin: 0;
	font-style: normal;
}

.contact-sheet address a,
.contact-sheet__fallback {
	display: inline-block;
	max-width: 100%;
	font-size: clamp(1.4rem, 3vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	overflow-wrap: anywhere;
}

.contact-sheet__details dl {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.68);
	border-bottom: 1px solid rgba(255, 255, 255, 0.68);
}

.contact-sheet__details dl div {
	padding: 0.8rem 0;
}

.contact-sheet__details dl div + div {
	padding-left: 1rem;
	border-left: 1px solid rgba(255, 255, 255, 0.68);
}

.contact-sheet__details dt {
	color: rgba(255, 255, 255, 0.84);
}

/* Footer */

.site-footer {
	border-top: 1px solid var(--ink);
	background: var(--paper);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1.5rem;
	align-items: center;
	width: min(100%, var(--page-max));
	margin: 0 auto;
	padding: 1.25rem var(--gutter);
}

.site-footer p {
	margin: 0;
	color: var(--muted);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.62rem;
}

.site-footer p:last-child {
	grid-column: 3;
	text-align: right;
}

.footer-nav ul {
	display: flex;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav a {
	font-size: 0.68rem;
	font-weight: 700;
}

/* Inner pages */

.page-shell,
.archive-shell,
.error-page {
	width: min(100%, var(--page-max));
	margin: 0 auto;
	padding: clamp(4rem, 8vw, 8rem) var(--gutter);
}

.entry-header {
	max-width: 1180px;
	margin-bottom: clamp(3rem, 7vw, 6rem);
}

.entry-header h1,
.project-hero h1,
.error-page h1 {
	max-width: 12ch;
	margin: 0.75rem 0 0;
	font-size: clamp(3.5rem, 8vw, 8rem);
	font-weight: 700;
	letter-spacing: -0.07em;
	line-height: 0.86;
}

.entry-deck {
	max-width: 46ch;
	margin: 2rem 0 0;
	color: var(--muted);
	font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.entry-featured {
	width: min(100%, 1200px);
	margin-bottom: clamp(3rem, 7vw, 6rem);
	border: 1px solid var(--ink);
}

.entry-featured img {
	width: 100%;
}

.entry-content {
	max-width: 760px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.05rem, 1.45vw, 1.18rem);
	line-height: 1.75;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.5em;
}

.entry-content > :last-child {
	margin-bottom: 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 2em;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.entry-content h2 {
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.entry-content h3 {
	font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.entry-content a {
	color: var(--blue);
}

.entry-content img,
.entry-content .wp-block-image img {
	border: 1px solid var(--rule);
}

.entry-content .alignwide {
	width: min(1100px, calc(100vw - (2 * var(--gutter))));
	max-width: none;
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
}

.entry-content blockquote {
	margin-right: 0;
	margin-left: 0;
	padding: 1.25rem;
	border: 1px solid var(--ink);
	font-size: 1.2em;
}

.entry-content pre {
	padding: 1.25rem;
	background: var(--ink);
	color: var(--paper);
	overflow-x: auto;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 0.75rem;
	border: 1px solid var(--rule);
	text-align: left;
}

.post-navigation,
.project-next {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	max-width: 760px;
	margin-top: 5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--ink);
}

.post-navigation a {
	font-weight: 700;
}

.page-links {
	display: flex;
	gap: 0.5rem;
	max-width: 760px;
	margin-top: 2rem;
	font-size: 0.78rem;
	font-weight: 700;
}

/* Comments */

.comments-area {
	max-width: 760px;
	margin-top: 5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--ink);
}

.comment-list {
	margin: 2rem 0;
	padding: 0;
	list-style: none;
}

.comment-list .comment-body {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--rule);
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid var(--ink);
	background: var(--paper-light);
}

.comment-form input[type="submit"] {
	padding: 0.8rem 1rem;
	border: 1px solid var(--ink);
	background: var(--ink);
	color: var(--paper);
	cursor: pointer;
	font-weight: 700;
}

/* Project detail */

.project-detail {
	width: 100%;
	padding: clamp(4rem, 8vw, 8rem) 0;
}

.project-hero,
.project-content-layout,
.project-next {
	width: min(100%, var(--page-max));
	margin-right: auto;
	margin-left: auto;
	padding-right: var(--gutter);
	padding-left: var(--gutter);
}

.project-hero__grid {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: end;
	margin-top: clamp(3rem, 6vw, 6rem);
}

.project-hero__intro p {
	max-width: 38ch;
	margin: 0 0 2rem;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.project-featured {
	width: 100%;
	margin: clamp(4rem, 8vw, 8rem) 0;
	border-top: 1px solid var(--ink);
	border-bottom: 1px solid var(--ink);
	background: var(--paper-deep);
}

.project-featured img {
	width: 100%;
	max-height: 920px;
	object-fit: cover;
}

.project-content-layout {
	display: grid;
	grid-template-columns: 4fr 8fr;
	gap: clamp(3rem, 8vw, 8rem);
}

.project-facts dl {
	border-top: 1px solid var(--ink);
}

.project-facts dl div {
	display: grid;
	grid-template-columns: 5rem 1fr;
	gap: 1rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--ink);
}

.project-facts dd {
	font-weight: 700;
}

.project-copy {
	max-width: 820px;
}

.project-next {
	max-width: var(--page-max);
	margin-top: clamp(5rem, 10vw, 10rem);
	padding-top: 2rem;
}

.project-next a {
	display: flex;
	max-width: 18ch;
	flex-direction: column;
	font-size: clamp(1.25rem, 2.5vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.project-next a:last-child {
	margin-left: auto;
	text-align: right;
}

.project-next span {
	margin-bottom: 0.5rem;
	color: var(--muted);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.62rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Archives, posts and search */

.archive-hero {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: 3rem;
	align-items: end;
	margin-bottom: clamp(4rem, 8vw, 8rem);
}

.archive-hero .section-kicker,
.archive-hero h1 {
	grid-column: 1;
}

.section-kicker {
	margin: 0;
	color: var(--clay);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.archive-hero > p:last-child,
.archive-description {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: end;
	max-width: 40ch;
	margin: 0;
	color: var(--muted);
}

.archive-hero--small {
	display: block;
}

.archive-hero--small h1 {
	max-width: 12ch;
}

.project-list--archive {
	background: var(--ink);
	color: var(--paper);
}

.post-list {
	border-bottom: 1px solid var(--ink);
}

.post-summary {
	display: grid;
	grid-template-columns: 10rem minmax(0, 1fr) 3rem;
	gap: 2rem;
	align-items: start;
	padding: 2rem 0;
	border-top: 1px solid var(--ink);
}

.post-summary__meta {
	display: flex;
	flex-direction: column;
	color: var(--muted);
	font-family: "Courier New", Courier, monospace;
	font-size: 0.65rem;
}

.post-summary h2 {
	margin: 0;
	font-size: clamp(1.8rem, 4vw, 3.75rem);
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.post-summary h2 a {
	text-decoration: none;
}

.post-summary p {
	max-width: 50ch;
	margin: 1rem 0 0;
	color: var(--muted);
}

.post-summary__arrow {
	font-size: 1.5rem;
	text-align: right;
	text-decoration: none;
}

.navigation.pagination {
	margin-top: 3rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.page-numbers {
	display: grid;
	min-width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	padding: 0 0.8rem;
	border: 1px solid var(--ink);
	font-size: 0.72rem;
	font-weight: 700;
	text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--ink);
	color: var(--paper);
}

.empty-state {
	max-width: 760px;
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px solid var(--ink);
}

.empty-state h2 {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 3.5rem);
	letter-spacing: -0.05em;
	line-height: 1;
}

.search-form {
	display: flex;
	width: min(100%, 38rem);
	margin-top: 2rem;
}

.search-form label {
	flex: 1;
}

.search-field,
.search-submit {
	height: 3.2rem;
	border: 1px solid var(--ink);
}

.search-field {
	width: 100%;
	padding: 0 1rem;
	background: var(--paper-light);
	color: var(--ink);
}

.search-submit {
	padding: 0 1.25rem;
	background: var(--ink);
	color: var(--paper);
	cursor: pointer;
	font-weight: 700;
}

/* 404 */

.error-page {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: clamp(3rem, 8vw, 8rem);
	align-items: center;
	min-height: calc(100vh - var(--header-height) - 80px);
}

.error-page__code {
	color: var(--clay);
	font-family: "Courier New", Courier, monospace;
	font-size: clamp(7rem, 20vw, 20rem);
	font-weight: 700;
	letter-spacing: -0.1em;
	line-height: 0.7;
}

.error-page__content p:not(.section-kicker) {
	max-width: 42ch;
	margin: 2rem 0;
	color: var(--muted);
}

/* Responsive */

@media (max-width: 1180px) {
	.landing__identity {
		grid-column: span 3;
	}

	.landing__statement {
		grid-column: span 6;
	}

	.landing__project {
		grid-column: span 3;
	}

	.landing__statement h1 {
		font-size: clamp(3.6rem, 6.8vw, 6.25rem);
	}

	.landing-project__caption dl {
		grid-template-columns: 1fr;
	}

	.landing-project__caption dl div + div {
		padding-left: 0;
		border-left: 0;
	}

	.capability-index {
		grid-template-columns: 2fr 10fr;
	}

	.capability-index ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.capability-index li:nth-child(3) {
		border-right: 0;
	}

	.capability-index li:nth-child(n + 4) {
		border-top: 1px solid rgba(255, 255, 255, 0.45);
	}
}

@media (max-width: 980px) {
	.landing__grid {
		min-height: auto;
	}

	.landing__identity {
		grid-column: span 4;
		min-height: 34rem;
	}

	.landing__statement {
		grid-column: span 8;
	}

	.landing__project {
		display: grid;
		grid-column: 1 / -1;
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem;
		border-top: 1px solid var(--rule);
		border-left: 0;
	}

	.landing__project .plate-label {
		grid-column: 1 / -1;
	}

	.landing-project__caption {
		align-self: end;
	}

	.studio-facts > div {
		border-bottom: 1px solid var(--rule);
	}

	.project-entry,
	.project-entry:nth-child(even) {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.project-entry:nth-child(even) .project-entry__media,
	.project-entry:nth-child(even) .project-entry__content {
		grid-column: auto;
		grid-row: auto;
	}

	.project-entry__media a {
		min-height: 22rem;
	}

	.service-ledger li {
		grid-template-columns: 0.7fr 3.3fr 5fr 0.5fr;
	}

	.process-log li {
		min-height: 20rem;
	}
}

@media (max-width: 920px) {
	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 1rem;
	}

	.has-js .menu-toggle {
		display: inline-flex;
		grid-column: 2;
		grid-row: 1;
		justify-self: end;
	}

	.header-contact {
		display: none;
	}

	.has-js .primary-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		max-height: 0;
		padding: 0 var(--gutter);
		border-bottom: 1px solid transparent;
		background: var(--clay);
		color: var(--white);
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition: max-height 220ms ease, opacity var(--ease), visibility var(--ease), padding var(--ease);
	}

	.has-js .is-menu-open .primary-nav {
		max-height: calc(100dvh - var(--header-height));
		padding-top: 1rem;
		padding-bottom: 1.25rem;
		border-bottom-color: rgba(255, 255, 255, 0.68);
		overflow-y: auto;
		opacity: 1;
		visibility: visible;
	}

	.primary-menu,
	.primary-nav ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-menu li,
	.primary-nav li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.68);
	}

	.primary-nav a::before {
		color: rgba(255, 255, 255, 0.84);
	}

	.primary-nav :focus-visible {
		outline-color: var(--white);
	}

	.primary-menu a,
	.primary-nav a {
		width: 100%;
		padding: 0.9rem 0;
		font-size: 1rem;
	}

	.primary-menu a:hover,
	.primary-menu .current-menu-item > a,
	.primary-nav a:hover,
	.primary-nav .current-menu-item > a {
		color: var(--white);
		text-decoration: underline;
		text-decoration-color: var(--white);
		text-underline-offset: 0.35rem;
	}

	html:not(.has-js) .site-header {
		position: relative;
		height: auto;
	}

	html:not(.has-js) .site-header__inner {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	html:not(.has-js) .primary-nav {
		width: 100%;
		justify-self: stretch;
	}

	.brand__edition {
		display: none;
	}
}

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

@media (max-width: 760px) {
	:root {
		--header-height: 58px;
		--gutter: 1.25rem;
		--section-space: 5rem;
	}

	.custom-logo {
		max-width: 145px;
	}

	.landing {
		border-right: 0;
		border-left: 0;
	}

	.landing__grid {
		display: flex;
		flex-direction: column;
	}

	.landing__identity,
	.landing__statement,
	.landing__project {
		padding: 3.5rem var(--gutter);
	}

	.landing__identity {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}

	.landing__name {
		margin: 4rem 0 1.25rem;
		font-size: clamp(3.25rem, 15vw, 5rem);
	}

	.landing__lede {
		font-size: 1rem;
	}

	.landing__statement {
		border-bottom: 1px solid var(--rule);
	}

	.landing__statement h1 {
		margin: 2rem 0 2.5rem;
		font-size: clamp(3.15rem, 13vw, 3.6rem);
	}

	.landing__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.landing__actions .button,
	.landing__actions .text-link {
		width: 100%;
	}

	.landing__actions .text-link {
		justify-content: center;
	}

	.landing__project {
		display: block;
		border-top: 0;
	}

	.landing-project__caption {
		padding-top: 1.25rem;
	}

	.studio-facts > div,
	.studio-facts > div:nth-child(2) {
		min-height: auto;
		border-top: 0;
		border-right: 0;
		border-bottom: 1px solid var(--rule);
	}

	.capability-index {
		display: block;
	}

	.capability-index > p {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	}

	.capability-index ul {
		grid-template-columns: 1fr 1fr;
	}

	.capability-index li,
	.capability-index li:nth-child(3) {
		border-top: 0;
		border-right: 1px solid rgba(255, 255, 255, 0.45);
		border-bottom: 1px solid rgba(255, 255, 255, 0.45);
	}

	.capability-index li:nth-child(even) {
		border-right: 0;
	}

	.section-intro,
	.archive-hero,
	.project-hero__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.section-intro h2,
	.archive-hero h1 {
		font-size: clamp(3.2rem, 15vw, 5rem);
	}

	.archive-hero > p:last-child,
	.archive-description {
		grid-column: 1;
		grid-row: auto;
	}

	.project-entry,
	.project-entry:nth-child(even) {
		display: flex;
		flex-direction: column;
		gap: 2rem;
		padding-top: 3rem;
		padding-bottom: 3rem;
	}

	.project-entry__media,
	.project-entry:nth-child(even) .project-entry__media {
		order: 0;
	}

	.project-entry__content,
	.project-entry:nth-child(even) .project-entry__content {
		order: 1;
	}

	.project-entry__media a {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.project-entry h3 {
		font-size: clamp(3rem, 15vw, 5rem);
	}

	.project-entry__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.service-ledger li {
		grid-template-columns: 2.5rem 1fr;
		gap: 0.75rem 1rem;
	}

	.service-ledger p {
		grid-column: 2;
	}

	.service-ledger__mark {
		display: none;
	}

	.process-log {
		grid-template-columns: 1fr;
	}

	.process-log li,
	.process-log li:last-child {
		min-height: 17rem;
		border-right: 1px solid var(--ink);
		border-bottom: 0;
	}

	.process-log li:last-child {
		border-bottom: 1px solid var(--ink);
	}

	.contact-sheet {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.contact-sheet h2 {
		font-size: clamp(3.7rem, 17vw, 6rem);
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.site-footer p:last-child {
		grid-column: auto;
		text-align: left;
	}

	.project-content-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.project-next,
	.post-navigation {
		align-items: flex-start;
		flex-direction: column;
	}

	.project-next a:last-child {
		margin-left: 0;
		text-align: left;
	}

	.post-summary {
		grid-template-columns: 1fr 2rem;
		gap: 1rem;
	}

	.post-summary__meta {
		grid-column: 1 / -1;
		flex-direction: row;
		gap: 1rem;
	}

	.search-form {
		flex-direction: column;
		gap: 0.5rem;
	}

	.error-page {
		grid-template-columns: 1fr;
	}

	.error-page__code {
		font-size: clamp(8rem, 38vw, 16rem);
	}
}

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

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

@media (forced-colors: active) {
	.status-block,
	.button,
	.header-contact {
		border: 1px solid currentColor;
	}
}
