/*
----------------------------------------
Reset
----------------------------------------
*/

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

html {
	font-size: 100%;
	line-height: 1.5;
}

body {
	background: var(--warm-100);
	color: var(--warm-700);
	font-family: var(--font-body);
	font-weight: 300;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

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

ul,
ul li {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

a {
	color: var(--warm-400);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--warm-900);
}

.visually-hidden {
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
}

/*
----------------------------------------
Fonts
----------------------------------------
*/

@font-face {
	font-family: "GT Super Display";
	src: url("../fonts/GT-Super-Display-Light.woff2") format("woff2");
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GT Super Display";
	src: url("../fonts/GT-Super-Display-Light-Italic.woff2") format("woff2");
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GT Super Display";
	src: url("../fonts/GT-Super-Display-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GT Super Display";
	src: url("../fonts/GT-Super-Display-Regular-Italic.woff2") format("woff2");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/*
----------------------------------------
Variables
----------------------------------------
*/
:root {
	--text-ccc: #ccc;
	--text-666: #666;
	--text-333: #333;
	--text-222: #222;
	--text-000: #000;
	--text-fff: #fff;

	--warm-900: #1c1c1c;
	--warm-800: ;
	--warm-700: #473623;
	--warm-600: #938178;
	--warm-500: #8f8571;
	--warm-400: #b7a49b;
	--warm-300: #dad1c6;
	--warm-200: #eee9e2;
	--warm-100: #f7f5f2;

	--font-display: "GT Super Display", Georgia, serif;
	--font-body: "neue-haas-unica", sans-serif;

	--wide: 78.75rem;
	--measure: 46.25rem;
	--page-padding: clamp(1.5rem, 7vw, 5rem);
	--split-gap: clamp(6rem, 14vw, 13rem);
	--three-gap: clamp(4rem, 9vw, 7rem);
	--gutter: 1.25rem;
	--page-margin: clamp(1.5rem, 4vw, 2.1875rem);
	--page-margin-block: clamp(1.5rem, 5vw, 2.5rem);

	/* Type scale: fluid from 20rem (320px) to 90rem (1440px) */
	--text-small: clamp(0.8rem, 0.74rem + 0.29vw, 1rem);
	--text-caps: clamp(0.8rem, 0.71rem + 0.47vw, 1.125rem);
	--text-body: clamp(1rem, 0.95rem + 0.27vw, 1.1875rem);
	--text-copy: 1.171875rem;
	--text-subhead: 1.34375rem;
	--text-pull: clamp(1.5rem, 1.32rem + 0.89vw, 2.125rem);
	--text-heading: clamp(1.5rem, 1.27rem + 1.16vw, 2.3125rem);
	--text-display: clamp(2rem, 1.32rem + 3.39vw, 4.375rem);
	--tracking-caps: 0.08em;
}

/*
----------------------------------------
Base
----------------------------------------
*/

.grid {
	width: calc(100% - (var(--page-padding) * 2));
	max-width: var(--wide);
	margin-inline: auto;
}

.grid.measure {
	max-width: var(--measure);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.15;
	margin: 0;
}

h1 {
	font-size: clamp(2.25rem, 1.32rem + 3.39vw, 4.375rem);
}

h2, h3 {
	font-size: var(--text-heading);
}

p {
	font-size: var(--text-body);
	line-height: 1.2;
	margin: 0;
}

#nav summary,
.nav-link,
.text-link,
.hero-title,
#principles h3,
.bio summary,
#footer-info p {
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
}

/*
----------------------------------------
Masthead
----------------------------------------
*/

#masthead {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--page-margin-block) var(--page-margin);
	position: relative;
	z-index: 10;
}

#logo a {
	display: inline-block;
	line-height: 0;
	transition: opacity 0.2s ease;
}

#logo a:hover {
	opacity: 0.7;
}

#logo img {
	width: 12.5rem;
	max-width: 100%;
}

#nav summary {
	cursor: pointer;
	list-style: none;
	position: relative;
	font-size: var(--text-caps);
	font-weight: 400;
	color: var(--warm-700);
}

#nav summary::-webkit-details-marker {
	display: none;
}

#nav summary::marker {
	content: "";
}

#nav details[open] summary::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 15;
	cursor: default;
}

.menu-open,
.menu-close {
	position: relative;
	z-index: 30;
	transition: opacity 0.2s ease;
}

.menu-open:hover,
.menu-close:hover {
	opacity: 0.7;
}

.menu-close {
	display: none;
}

#nav details[open] .menu-open {
	display: none;
}

#nav details[open] .menu-close {
	display: inline;
	color: var(--warm-400);
}

.nav-panel {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: fixed;
	inset: 0;
	z-index: 20;
	background: var(--text-fff);
	padding: calc(var(--gutter) * 4) var(--page-margin) var(--gutter);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

#nav details[open] .nav-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.nav-panel .nav-link {
	display: block;
	font-size: var(--text-subhead);
	font-weight: 400;
	color: var(--warm-700);
	padding-block: 0.4em;
}

.nav-panel .nav-link:hover {
	color: var(--warm-600);
}

.social {
	display: flex;
	gap: 1em;
}

.social a {
	color: var(--warm-600);
}

.social a:hover {
	color: var(--warm-900);
}

.social svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: currentColor;
}

#hero #nav summary {
	color: var(--text-fff);
}

.text-link {
	font-size: var(--text-caps);
	font-weight: 400;
	text-decoration: underline;
	color: inherit;
}

.text-link:hover {
	color: var(--warm-600);
}

/*
----------------------------------------
Hero
----------------------------------------
*/

#hero {
	position: relative;
	min-height: 100svh;
	background: var(--warm-900);
}

.slideshow {
	position: absolute;
	inset: 0;
}

.slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.7s ease;
}

.slide.is-active {
	opacity: 1;
	z-index: 1;
}

#hero #masthead {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 5;
}

#hero.is-intro #masthead {
	opacity: 0;
	pointer-events: none;
}

#hero #masthead.is-in {
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.7s ease;
}

#hero-intro {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
}

.hero-intro-mark,
.hero-intro-wordmark {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.hero-intro-mark {
	height: min(18.75rem, 45svh);
	aspect-ratio: 496.53 / 639.69;
	opacity: 0;
}

.hero-intro-mark.is-ready {
	opacity: 1;
}

.hero-intro-mark svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
	shape-rendering: geometricPrecision;
}

.hero-mark-guides {
	fill: none;
	stroke: none;
	pointer-events: none;
}

.hero-intro-mark.is-out {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.hero-intro-wordmark {
	width: min(55rem, 90vw);
	aspect-ratio: 2356.58 / 267.78;
}

.hero-intro-wordmark img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	opacity: 0;
	transform: translate3d(0, 0.625rem, 0);
}

.hero-intro-wordmark.is-in img {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-intro-wordmark.is-out img {
	opacity: 0;
	transition: opacity 0.3s ease;
}

/*
----------------------------------------
Home
----------------------------------------
*/

#main {
	padding-block: 0;
}

#intro,
#studio-intro,
#principles,
#team {
	padding-block: var(--page-padding);
}

section:has(.split) {
	padding-block: clamp(2rem, 8vw, 6rem);
}

#intro {
	text-align: center;
}

#intro h1 {
	font-size: clamp(1.75rem, 1.27rem + 1.16vw, 2.3125rem);
	font-style: italic;
	line-height: 1;
}

#intro h1 + .intro-copy {
	margin-top: 1em;
}

.intro-copy h1 + p,
.intro-copy h2 + p,
.intro-copy p + p,
.split-copy h2 + p,
.split-copy p + p {
	margin-top: 1em;
}

#portfolio-teaser {
	background: var(--warm-500);
	color: var(--text-fff);
}

#portfolio-teaser .text-link:hover {
	color: var(--warm-700);
}

#featured {
	background: var(--text-fff);
	text-align: center;
	padding-block: clamp(2rem, 8vw, 6rem);
}

#featured .grid {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--page-padding);
}

#featured h2 {
	font-family: var(--font-body);
	font-size: clamp(1rem, 0.9rem + 0.5vw, 1.34375rem);
}

.press-logos {
	--logo-gap: calc(var(--gutter) * 3);
	overflow: hidden;
	width: 100%;
}

.press-logos ul {
	display: flex;
	align-items: center;
	gap: var(--logo-gap);
	width: max-content;
}

.press-logos.is-ready ul {
	animation: logo-scroll var(--scroll-duration, 20s) linear infinite;
}

.press-logos:hover ul {
	animation-play-state: paused;
}

.press-logos li {
	flex: 0 0 auto;
}

.press-logos img {
	display: block;
	height: 3rem;
	width: auto;
	object-fit: contain;
}

@keyframes logo-scroll {
	to {
		transform: translateX(calc(-1 * var(--scroll-distance)));
	}
}

#inquire {
	background: var(--warm-300);
}

.split-image {
	margin: 0;
}

.split-image img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
	border-radius: 0.3125rem;
}

/*
----------------------------------------
Studio
----------------------------------------
*/

.hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
}

#hero:has(.hero-image)::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--warm-900);
	opacity: 0.1;
	pointer-events: none;
	z-index: 1;
}

.hero-title,
.location-title {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-items: center;
	margin: 0;
	color: var(--warm-100);
	text-align: center;
	pointer-events: none;
	padding: var(--page-margin);
}

#studio-intro h2 {
	text-align: center;
}

#principles {
	background: var(--warm-500);
	color: var(--text-fff);
}

.principle + .principle {
	margin-top: calc(var(--gutter) * 2);
}

#principles h3 {
	font-family: var(--font-body);
	font-size: var(--text-copy);
	font-weight: 400;
	margin-bottom: 0.75em;
}

#principles p {
	font-size: var(--text-copy);
}

#team h2 {
	margin-bottom: var(--gutter);
}

.person + .person {
	margin-top: calc(var(--gutter) * 2);
}

.person figure {
	margin: 0 0 var(--gutter);
}

.person img {
	width: 28.125rem;
	max-width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
	border-radius: 0.3125rem;
}

.person:nth-child(2) img {
	object-position: 47% 34%;
}

.person:nth-child(3) img {
	object-position: 51% 15%;
}

.person h3 {
	font-size: var(--text-subhead);
}

.person-role {
	font-size: var(--text-copy);
	margin-top: 0.4em;
}

.bio {
	margin-top: 0.5em;
}

.bio summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	font-size: var(--text-small);
	font-weight: 400;
	padding-block: 0.6em;
	color: var(--warm-700);
}

.bio summary::-webkit-details-marker {
	display: none;
}

.bio summary::marker {
	content: "";
}

.bio-icon {
	flex: 0 0 auto;
	width: 1.5rem;
	height: 1.5rem;
}

.bio-icon svg {
	width: 100%;
	height: 100%;
}

.bio .bio-close {
	display: none;
}

.bio[open] .bio-plus {
	display: none;
}

.bio[open] .bio-close {
	display: block;
}

.bio p {
	font-size: var(--text-copy);
	line-height: 1.2;
}

.bio p + p {
	margin-top: 1em;
}

.bio ol {
	margin: 1em 0 0;
	padding-left: 1.25em;
	font-size: var(--text-copy);
	line-height: 1.3;
}

.bio li + li {
	margin-top: 1em;
}

/*
----------------------------------------
Portfolio
----------------------------------------
*/

#hero.dim-30::after {
	opacity: 0.3;
}

#hero.dim-20::after {
	opacity: 0.2;
}

#hero.dim-0::after {
	opacity: 0;
}

.location-title {
	font-size: var(--text-display);
}

.location-title a {
	pointer-events: auto;
	color: inherit;
}

.location-title a:hover {
	color: var(--warm-900);
}

.full-panel {
	position: relative;
	min-height: 100svh;
}

.full-panel .hero-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.full-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--warm-900);
	opacity: 0.2;
	pointer-events: none;
	z-index: 1;
}

/*
----------------------------------------
Project
----------------------------------------
*/

#project-intro {
	padding-block: var(--page-padding);
}

#project-intro h1 {
	font-size: var(--text-heading);
}

#project-intro hr {
	border: 0;
	border-top: 1px solid var(--warm-300);
	margin: 0.75em 0 2em;
}

.project-meta {
	display: flex;
	flex-direction: column;
	gap: calc(var(--gutter) * 2);
}

.project-facts {
	margin: 0;
}

.project-facts > div + div {
	margin-top: 1.5em;
}

.project-facts dt,
.project-facts dd {
	margin: 0;
}

.project-facts dt {
	font-size: var(--text-small);
	font-weight: 400;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	margin-bottom: 0.25em;
}

.project-copy p {
	font-size: var(--text-copy);
	line-height: 1.4;
}

.project-copy p + p {
	margin-top: 1em;
}

.bleed {
	margin: 0;
}

.bleed img {
	width: 100%;
	max-width: none;
	height: 100svh;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
}

.pull {
	font-family: var(--font-display);
	font-size: var(--text-pull);
	font-weight: 300;
	font-style: italic;
	text-align: center;
	line-height: 1.3;
	text-wrap: balance;
	text-wrap: pretty;
}

.split-image.is-small {
	display: flex;
	margin: 0;
}

.project .split-image img {
	aspect-ratio: auto;
	object-fit: unset;
	height: auto;
}

.project .split-image.is-wide img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
}

#project-nav {
	padding-block: clamp(2rem, 5vw, 3rem);
}

#project-nav .grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--gutter);
}

#project-nav a {
	font-size: var(--text-small);
	font-weight: 400;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	color: var(--warm-700);
}

#project-nav a:hover {
	color: var(--warm-600);
}

#project-nav .prev {
	justify-self: start;
}

#project-nav .next {
	justify-self: end;
}

/*
----------------------------------------
Services
----------------------------------------
*/

#offerings .split-copy p {
	font-size: var(--text-copy);
	line-height: 1.3;
}

#offerings .bio {
	margin-top: 1.5em;
}

#offerings .split-image,
#testimonials .split-image {
	display: flex;
	justify-content: center;
}

#offerings .split-image img,
#testimonials .split-image img {
	width: 28.125rem;
	max-width: 100%;
}

#offerings .split-image img {
	aspect-ratio: auto;
	object-fit: unset;
	height: auto;
}

#testimonials .split-image img {
	object-position: 45% 24%;
}

#testimonials {
	background: var(--warm-300);
}

#testimonials .split-copy h2,
#quotes {
	padding-inline: clamp(2.5rem, 5vw, 4.5rem);
}

#quotes {
	position: relative;
	margin-top: 1em;
}

.quotes-viewport {
	overflow: hidden;
}

.quotes-track {
	display: flex;
}

#quotes blockquote {
	margin: 0;
	flex: 0 0 auto;
}

#quotes blockquote p {
	font-size: var(--text-copy);
	line-height: 1.3;
}

#quotes .quote-name {
	font-weight: 400;
	margin-top: 1.5em;
}

#quotes .quote-place {
	font-size: var(--text-small);
	margin-top: 0.1em;
}

.quotes-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--warm-700);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.quotes-nav.prev {
	left: 0;
}

.quotes-nav.next {
	right: 0;
}

.quotes-nav:hover {
	color: var(--warm-600);
}

.quotes-nav:disabled {
	opacity: 0.3;
	cursor: default;
}

.quotes-nav:disabled:hover {
	color: var(--warm-700);
}

.quotes-nav svg {
	width: 1.5rem;
	height: 1.5rem;
	fill: currentColor;
}

/*
----------------------------------------
Press
----------------------------------------
*/

#clippings,
#features {
	padding-block: var(--page-padding);
}

#features {
	background: var(--warm-200);
}

#clippings h1,
.year h2 {
	font-size: var(--text-heading);
	margin-bottom: 0.75em;
}

#clippings p,
.year a {
	font-size: var(--text-small);
	line-height: 1.1;
}

#clippings p + p {
	margin-top: 0.55em;
}

#clippings .text-link {
	font-size: inherit;
	letter-spacing: 0;
	text-transform: none;
}

#clippings a {
	color: var(--warm-700);
}

#clippings a:hover {
	color: var(--warm-600);
}

.four-up > * + * {
	margin-top: calc(var(--gutter) * 2);
}

.year li + li {
	margin-top: 0.55em;
}

.feature + .feature {
	margin-top: calc(var(--gutter) * 2);
}

.feature figure {
	margin: 0;
}

.feature img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: var(--focal, 50% 50%);
	border-radius: 0.3125rem;
}

.feature-source {
	font-size: clamp(0.7rem, 0.64rem + 0.29vw, 0.875rem);
	font-weight: 400;
	letter-spacing: var(--tracking-caps);
	text-transform: uppercase;
	margin-top: 1em;
}

.feature h2 {
	font-size: var(--text-subhead);
	margin-top: 0.35em;
}

.feature .text-link {
	display: inline-block;
	font-size: clamp(0.7rem, 0.64rem + 0.29vw, 0.875rem);
	margin-top: 0.75em;
}

/*
----------------------------------------
Inquiry
----------------------------------------
*/

#inquiry {
	padding-block: var(--page-padding);
}

#inquiry h1 {
	font-size: var(--text-heading);
	margin-bottom: 0.75em;
}

#inquiry p {
	font-size: var(--text-copy);
	line-height: 1.3;
	max-width: var(--measure);
}

#inquiry-form {
	margin-top: var(--page-padding);
	width: 100%;
}

#inquiry iframe {
	display: block;
	width: 1px;
	min-width: 100%;
	max-width: 100%;
	min-height: 31.25rem;
	padding: 0;
	margin: 0;
	border: 0;
}

/*
----------------------------------------
404
----------------------------------------
*/

body.not-found {
	min-height: 100svh;
	display: flex;
	flex-direction: column;
}

body.not-found #main {
	flex: 1;
	display: flex;
}

#not-found {
	flex: 1;
	display: flex;
	align-items: center;
	width: 100%;
	padding-block: var(--page-padding);
}

#not-found h1 {
	font-size: var(--text-heading);
	margin-bottom: 0.75em;
}

#not-found p {
	font-size: var(--text-copy);
	line-height: 1.3;
	max-width: var(--measure);
}

#not-found p + p {
	margin-top: 1.5em;
}

/*
----------------------------------------
Footer
----------------------------------------
*/

#footer {
	background: var(--warm-500);
	color: var(--text-fff);
	padding-block: var(--page-margin-block);
}

#footer .grid {
	width: calc(100% - (var(--page-margin) * 2));
	max-width: none;
}

#footer a {
	color: var(--text-fff);
}

#footer a:hover {
	color: var(--warm-100);
}

#footer-brand {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--gutter) var(--page-padding);
	margin-bottom: var(--gutter);
}

#footer-brand img {
	width: 2.5rem;
}

#footer-brand ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
}

#footer .nav-link {
	font-size: clamp(0.75rem, 0.68rem + 0.36vw, 1rem);
	font-weight: 400;
}

#footer-info p {
	font-size: 0.75rem;
	line-height: 1.2;
}

#footer-info p + p {
	margin-top: 0.15em;
}

/*
----------------------------------------
Responsive styles
----------------------------------------
*/

@media (width < 64em) {
	.split {
		display: flex;
		flex-direction: column;
		gap: calc(var(--gutter) * 2);
	}

	.split-image {
		order: -1;
	}

	#offerings .split-image {
		order: 0;
	}
}

@media (min-width: 64em) {
	.split {
		display: flex;
		align-items: center;
		gap: var(--split-gap);
	}

	.split .split-image,
	.split .split-copy {
		flex: 1 1 0;
		min-width: 0;
		margin: 0;
	}

	#testimonials .split {
		gap: clamp(2rem, 6vw, 6rem);
	}

	#testimonials .split-image {
		flex: 0 1 28.125rem;
		width: 28.125rem;
		max-width: 42%;
	}

	#testimonials .split-copy {
		flex: 1 1 0;
	}

	.split-copy:first-child .pull {
		text-align: right;
	}

	.split-image + .split-copy .pull {
		text-align: left;
	}

	.split.pair {
		gap: var(--three-gap);
		justify-content: space-between;
	}

	.split.pair .split-image {
		flex: 0 1 auto;
		display: flex;
	}

	.split.pair .split-image:first-child {
		justify-content: flex-start;
	}

	.split.pair .split-image:last-child {
		justify-content: flex-end;
	}

	.split.pair .split-image img {
		width: 33rem;
		max-width: 100%;
	}

	.split.pair .split-image.is-small img {
		width: 28.125rem;
	}

	.split-image.is-small {
		justify-content: flex-start;
	}

	.split-image.is-small:last-child {
		justify-content: flex-end;
	}

	.project-meta {
		display: grid;
		grid-template-columns: 2fr 3fr;
		column-gap: var(--page-padding);
		align-items: start;
	}

	.project-facts > div {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: var(--gutter);
		align-items: baseline;
	}

	.project-facts dt {
		margin-bottom: 0;
	}

	#logo img {
		width: 15.625rem;
	}

	.press-logos img {
		height: 3.25rem;
	}

	.three-up {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		column-gap: var(--three-gap);
	}

	.four-up {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: var(--gutter);
		align-items: start;
	}

	.four-up > * + * {
		margin-top: 0;
	}

	.principle + .principle {
		margin-top: 0;
	}

	.two-up {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap: var(--page-padding);
	}

	.two-up > h2 {
		grid-column: 1 / -1;
	}

	.person + .person {
		margin-top: 0;
	}

	.feature + .feature {
		margin-top: 0;
	}

	#intro .intro-copy {
		padding-inline: var(--page-padding);
	}

	#nav .nav-panel {
		left: auto;
		width: 24rem;
		padding-top: calc(var(--gutter) * 4);
		padding-left: calc(var(--gutter) * 2);
	}

	.nav-panel .nav-link {
		font-size: var(--text-caps);
	}

	#footer .grid {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	#footer-brand {
		margin-bottom: 0;
	}

	#footer-brand ul {
		gap: 1em 1.5em;
	}

	#footer-info {
		text-align: right;
	}

	#intro p,
	#studio-intro p,
	#portfolio-teaser p,
	#inquire p {
		font-size: var(--text-subhead);
	}
}

@media (prefers-reduced-motion: reduce) {
	.slide {
		transition: none;
	}

	.quotes-track {
		transition: none;
	}

	#hero.is-intro #masthead {
		opacity: 1;
		pointer-events: auto;
	}

	#hero-intro {
		display: none;
	}

	.press-logos ul {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: auto;
	}

	.nav-panel {
		transition: none;
	}

	a,
	.menu-open,
	.menu-close,
	#logo a {
		transition: none;
	}
}
