:root {
	--ivory: #e0d9cf;
	--stone: #99928a;
	--clay: #815b50;
	--mist: #949c9f;
	--charcoal: #44474e;
	--ink: #24262a;
	--paper: #f5f1ea;
	--white: #fbfaf7;
	--line: rgba(68, 71, 78, 0.27);
	--display: "Marcellus", Optima, "Palatino Linotype", serif;
	--body: "Newsreader", Georgia, serif;
	--ui: "Manrope", "Helvetica Neue", Arial, sans-serif;
	--header-height: 106px;
	--gutter: clamp(22px, 4vw, 70px);
	--section: clamp(88px, 11vw, 176px);
	--ease: cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

[hidden] {
	display: none !important;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: clamp(17px, 1.25vw, 20px);
	font-weight: 400;
	line-height: 1.55;
	margin: 0;
	overflow-x: hidden;
}

body.nav-open {
	overflow: hidden;
}

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

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

p {
	margin: 0 0 1.15em;
}

h1,
h2,
h3,
h4 {
	font-family: var(--display);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 1.06;
	margin: 0 0 0.55em;
}

h1 {
	font-size: clamp(3.1rem, 7.4vw, 8.6rem);
}

h2 {
	font-size: clamp(2.5rem, 5vw, 5.6rem);
}

h3 {
	font-size: clamp(1.45rem, 2.1vw, 2.35rem);
}

ul,
ol {
	padding-left: 1.15em;
}

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

.wrap {
	margin-inline: auto;
	max-width: 860px;
	width: calc(100% - (2 * var(--gutter)));
}

.wrap--wide {
	max-width: 1540px;
}

.section-pad {
	padding-block: var(--section);
}

.section-pad--topless {
	padding-top: 0;
}

.screen-reader-text,
.skip-link:not(:focus) {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	background: var(--paper);
	color: var(--ink);
	left: 16px;
	padding: 12px 18px;
	position: fixed;
	top: 16px;
	z-index: 10000;
}

:focus-visible {
	outline: 2px solid var(--clay);
	outline-offset: 4px;
}

.eyebrow {
	font-family: var(--ui);
	font-weight: 500;
	font-size: 0.68rem;
	letter-spacing: 0.19em;
	line-height: 1.35;
	margin: 0 0 1.45rem;
	text-transform: uppercase;
}

.text-link {
	display: inline-block;
	font-family: var(--ui);
	font-weight: 500;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	padding-bottom: 0.4rem;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.text-link::after {
	background: currentColor;
	bottom: 0;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform-origin: left;
	transition: transform 420ms var(--ease);
	width: 100%;
}

.text-link:hover::after {
	transform: scaleX(0.3);
}

.button-link {
	align-items: center;
	background: transparent;
	border: 1px solid currentColor;
	color: var(--charcoal);
	cursor: pointer;
	display: inline-flex;
	font-family: var(--ui);
	font-weight: 500;
	font-size: 0.72rem;
	justify-content: center;
	letter-spacing: 0.13em;
	min-height: 54px;
	padding: 0.7rem 1.6rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

.button-link:hover {
	background: var(--charcoal);
	border-color: var(--charcoal);
	color: var(--paper);
}

.button-link--light {
	color: var(--paper);
}

.button-link--light:hover {
	background: var(--paper);
	border-color: var(--paper);
	color: var(--ink);
}

.placeholder-label {
	background: rgba(36, 38, 42, 0.88);
	bottom: 12px;
	color: var(--paper);
	font-family: var(--ui);
	font-size: 0.54rem;
	letter-spacing: 0.08em;
	line-height: 1.3;
	max-width: calc(100% - 24px);
	padding: 8px 10px;
	position: absolute;
	right: 12px;
	text-transform: uppercase;
	z-index: 5;
}

.home-hero .placeholder-label {
	bottom: auto;
	top: calc(var(--header-height) + 12px);
}

.material-story__image,
.studio-hero__image,
.studio-principles__image,
.journal-card__image,
.journal-single__image,
.project-single__hero,
.project-gallery__item {
	position: relative;
}

.js .reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.js .reveal.is-visible {
	opacity: 1;
	transform: none;
}

/* Header */
.site-header {
	background: rgba(245, 241, 234, 0.94);
	border-bottom: 1px solid transparent;
	height: var(--header-height);
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background-color 240ms ease, border-color 240ms ease, height 240ms ease;
	z-index: 1000;
}

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

.site-header.is-scrolled {
	background: rgba(245, 241, 234, 0.98);
	border-color: var(--line);
	height: 86px;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
}

.brand {
	display: block;
	position: relative;
	z-index: 1002;
}

.brand img {
	height: auto;
	width: clamp(270px, 27vw, 430px);
}

.site-navigation ul {
	align-items: center;
	display: flex;
	gap: clamp(19px, 2.05vw, 38px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation a {
	font-family: var(--ui);
	font-weight: 500;
	font-size: 0.69rem;
	letter-spacing: 0.12em;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.site-navigation li:not(.site-navigation__contact) a::after {
	background: currentColor;
	bottom: -7px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 300ms var(--ease);
	width: 100%;
}

.site-navigation li:not(.site-navigation__contact) a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-navigation__contact a {
	border: 1px solid currentColor;
	display: inline-flex;
	padding: 0.9rem 1.15rem;
	transition: background-color 220ms ease, color 220ms ease;
}

.site-navigation__contact a:hover {
	background: var(--charcoal);
	color: var(--paper);
}

.menu-toggle {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--ink);
	cursor: pointer;
	display: none;
	font-family: var(--ui);
	gap: 10px;
	letter-spacing: 0.12em;
	position: relative;
	text-transform: uppercase;
	z-index: 1002;
}

.menu-toggle__mark {
	border: 1px solid var(--charcoal);
	border-radius: 50%;
	display: block;
	height: 30px;
	position: relative;
	width: 30px;
}

.menu-toggle__mark::before,
.menu-toggle__mark::after,
.menu-toggle__mark span {
	background: var(--charcoal);
	content: "";
	height: 1px;
	left: 7px;
	position: absolute;
	right: 7px;
	transition: transform 260ms ease, top 260ms ease, opacity 260ms ease;
}

.menu-toggle__mark::before { top: 9px; }
.menu-toggle__mark span { top: 14px; }
.menu-toggle__mark::after { top: 19px; }

.menu-toggle[aria-expanded="true"] .menu-toggle__mark::before { top: 14px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__mark span { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__mark::after { top: 14px; transform: rotate(-45deg); }

/* Hero */
.home-hero {
	align-items: flex-end;
	color: var(--paper);
	display: flex;
	min-height: 100svh;
	padding-bottom: clamp(42px, 7vw, 98px);
	padding-top: var(--header-height);
	position: relative;
}

.home-hero__media,
.home-hero__wash {
	inset: 0;
	position: absolute;
}

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

.home-hero__wash {
	background: linear-gradient(90deg, rgba(20, 20, 20, 0.66) 0%, rgba(20, 20, 20, 0.2) 54%, rgba(20, 20, 20, 0.1) 100%), linear-gradient(0deg, rgba(20, 20, 20, 0.38), transparent 55%);
}

.home-hero__content {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.home-hero__copy {
	max-width: 810px;
}

.home-hero h1 {
	font-size: clamp(3.4rem, 7vw, 8rem);
	margin-bottom: 0.24em;
}

.home-hero__copy > p:not(.eyebrow) {
	font-size: clamp(1.2rem, 1.7vw, 1.8rem);
	max-width: 590px;
}

.home-hero__caption {
	font-family: var(--display);
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	margin: 0 0 7px 30px;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

/* Home origin */
.home-origin__grid,
.studio-origin__grid {
	align-items: start;
	display: grid;
	grid-template-columns: minmax(100px, 0.7fr) minmax(300px, 3fr) minmax(280px, 2fr);
	gap: clamp(30px, 5vw, 90px);
}

.origin-mark {
	align-items: center;
	border: 1px solid var(--charcoal);
	border-radius: 50%;
	display: flex;
	height: clamp(76px, 8vw, 124px);
	justify-content: center;
	position: relative;
	width: clamp(76px, 8vw, 124px);
}

.origin-mark::after {
	background: var(--charcoal);
	content: "";
	height: calc(100% + 40px);
	position: absolute;
	width: 1px;
}

.home-origin h2,
.studio-origin h2 {
	font-size: clamp(2.65rem, 5vw, 5.8rem);
	margin: 0;
}

.home-origin__text,
.studio-origin__body {
	border-top: 1px solid var(--line);
	font-size: clamp(1.08rem, 1.45vw, 1.5rem);
	padding-top: 28px;
}

/* Section heading */
.section-heading {
	align-items: end;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	margin-bottom: clamp(44px, 6vw, 90px);
	padding-top: 28px;
}

.section-heading > div {
	max-width: 930px;
}

.section-heading h2 {
	font-size: clamp(2.6rem, 4.7vw, 5.2rem);
	margin-bottom: 0;
}

/* Project cards */
.selected-work__grid {
	display: grid;
	gap: clamp(64px, 9vw, 150px) clamp(28px, 4vw, 70px);
	grid-template-columns: repeat(12, minmax(0, 1fr));
}

.selected-work__grid .project-card:nth-child(1) { grid-column: 1 / span 8; }
.selected-work__grid .project-card:nth-child(2) { align-self: end; grid-column: 9 / span 4; margin-bottom: 10%; }
.selected-work__grid .project-card:nth-child(3) { grid-column: 4 / span 7; }
.selected-work__grid .project-card:nth-child(1) .project-card__image { aspect-ratio: 1.45; }
.selected-work__grid .project-card:nth-child(2) .project-card__image { aspect-ratio: 0.74; }
.selected-work__grid .project-card:nth-child(3) .project-card__image { aspect-ratio: 1.25; }

.project-card__image {
	background: var(--stone);
	display: block;
	overflow: hidden;
	position: relative;
}

.project-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 1100ms var(--ease), filter 500ms ease;
	width: 100%;
}

.project-card__image:hover img {
	transform: scale(1.025);
}

.project-card__view {
	align-items: center;
	background: var(--paper);
	border-radius: 50%;
	bottom: 24px;
	color: var(--ink);
	display: flex;
	font-family: var(--display);
	font-size: 0.61rem;
	height: 98px;
	justify-content: center;
	letter-spacing: 0.1em;
	opacity: 0;
	position: absolute;
	right: 24px;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(12px);
	transition: opacity 300ms ease, transform 420ms var(--ease);
	width: 98px;
}

.project-card__image:hover .project-card__view {
	opacity: 1;
	transform: none;
}

.project-card__meta {
	align-items: start;
	border-bottom: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	padding: 22px 0 20px;
}

.project-card__meta .eyebrow {
	margin-bottom: 0.65rem;
}

.project-card__meta h2 {
	font-size: clamp(1.8rem, 2.5vw, 3rem);
	margin: 0;
}

.project-card__meta h2 a {
	text-decoration: none;
}

.project-card__meta > p {
	font-size: 0.92rem;
	margin: 5px 0 0 25px;
	text-align: right;
}

/* Services band */
.services-band {
	background: var(--charcoal);
	color: var(--paper);
	margin-top: var(--section);
}

.services-band__intro {
	display: grid;
	gap: 35px;
	grid-template-columns: 1.4fr 0.6fr;
	margin-bottom: clamp(60px, 8vw, 120px);
}

.services-band__intro .eyebrow {
	grid-column: 1 / -1;
}

.services-band__intro h2 {
	font-size: clamp(2.9rem, 5.6vw, 6.2rem);
	margin: 0;
}

.services-band__intro > p:last-child {
	align-self: end;
	font-size: 1.15em;
}

.services-list {
	border-top: 1px solid rgba(245, 241, 234, 0.35);
}

.service-row {
	align-items: center;
	border-bottom: 1px solid rgba(245, 241, 234, 0.35);
	display: grid;
	grid-template-columns: 80px 1fr;
	padding: clamp(24px, 3vw, 42px) 0;
	text-decoration: none;
}

.service-row > span {
	font-family: var(--display);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
}

.service-row strong {
	font-family: var(--display);
	font-size: clamp(1.6rem, 3vw, 3.4rem);
	font-weight: 400;
	transition: transform 260ms var(--ease);
}

.service-row:hover strong {
	transform: translateX(7px);
}

/* Material story */
.material-story__grid {
	align-items: center;
	display: grid;
	gap: clamp(50px, 9vw, 150px);
	grid-template-columns: minmax(300px, 0.88fr) minmax(300px, 1.12fr);
}

.material-story__image {
	margin-left: 8%;
}

.material-story__image img {
	max-height: 860px;
	object-fit: cover;
	width: 100%;
}

.material-story__copy {
	max-width: 700px;
}

.material-story__copy h2 {
	font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.material-story__copy > p:not(.eyebrow) {
	font-size: clamp(1.08rem, 1.5vw, 1.55rem);
	max-width: 580px;
}

/* Journal cards */
.journal-grid {
	display: grid;
	gap: clamp(50px, 6vw, 92px) clamp(25px, 3.5vw, 58px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-card__image {
	aspect-ratio: 1.2;
	background: var(--stone);
	display: block;
	overflow: hidden;
}

.journal-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--ease);
	width: 100%;
}

.journal-card__image:hover img {
	transform: scale(1.03);
}

.journal-card__body {
	padding-top: 24px;
}

.journal-card__body .eyebrow {
	margin-bottom: 0.75rem;
}

.journal-card__body h2 {
	font-size: clamp(1.7rem, 2.3vw, 2.7rem);
}

.journal-card__body h2 a {
	text-decoration: none;
}

.journal-card__body > p:not(.eyebrow) {
	font-size: 0.96em;
}

.journal-intro > p:last-child {
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
	max-width: 620px;
}

.journal-single__related {
	border-top: 1px solid var(--line);
	display: flex;
	gap: 28px;
	margin-top: clamp(65px, 9vw, 125px);
	padding-top: 30px;
}

.journal-single__related .eyebrow {
	margin-right: auto;
}

/* Footer */
.site-footer {
	background: var(--ink);
	color: var(--paper);
	padding-top: clamp(80px, 10vw, 150px);
}

.site-footer__lead {
	border-bottom: 1px solid rgba(245, 241, 234, 0.3);
	padding-bottom: clamp(65px, 8vw, 120px);
}

.footer-invitation {
	display: inline-block;
	font-family: var(--display);
	font-size: clamp(2.6rem, 6.6vw, 7.8rem);
	letter-spacing: -0.03em;
	line-height: 1;
	text-decoration: none;
}

.footer-invitation span {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: background-size 320ms var(--ease);
}

.footer-invitation:hover span {
	background-size: 100% 1px;
}

/* About */
.about-introduction {
	display: grid;
	gap: clamp(35px, 8vw, 125px);
	grid-template-columns: 0.65fr 1.35fr;
}

.about-introduction__copy {
	max-width: 840px;
}

.about-introduction__copy h2,
.about-principal h2 {
	font-size: clamp(2.6rem, 5.8vw, 6.4rem);
	margin-bottom: 0.55em;
}

.about-introduction__copy p,
.about-principal__copy > p {
	font-size: clamp(1.08rem, 1.5vw, 1.42rem);
	max-width: 690px;
}

.pronunciation-panel {
	background: var(--ink);
	color: var(--paper);
	padding-block: clamp(85px, 12vw, 165px);
}

.pronunciation-panel__inner {
	display: grid;
	gap: clamp(70px, 12vw, 190px);
	grid-template-columns: 1.15fr 0.85fr;
}

.pronunciation-word {
	font-family: var(--display);
	font-size: clamp(2.8rem, 6vw, 7rem);
	line-height: 1;
	margin: 0.38em 0 0.35em;
}

.pronunciation-panel__meaning {
	align-self: end;
	max-width: 540px;
}

.pronunciation-panel__meaning p:not(.eyebrow) {
	font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.about-principal {
	display: grid;
	gap: clamp(60px, 10vw, 150px);
	grid-template-columns: 1.35fr 0.65fr;
}

.about-placeholder-note {
	border-left: 1px solid var(--clay);
	font-style: italic;
	margin-top: 2em;
	padding-left: 22px;
}

.currently-noticing {
	align-self: end;
	border-top: 1px solid var(--ink);
	padding-top: 25px;
}

.currently-noticing ul {
	list-style: none;
	margin: 35px 0 0;
	padding: 0;
}

.currently-noticing li {
	border-bottom: 1px solid var(--line);
	padding: 13px 0;
}

.site-footer__grid {
	display: grid;
	gap: 45px;
	grid-template-columns: 2.3fr 1fr 1fr 0.7fr;
	padding-block: clamp(55px, 7vw, 100px);
}

.site-footer__brandmark {
	aspect-ratio: 642.55 / 79.9;
	max-width: 420px;
	position: relative;
	width: 90%;
}

.site-footer__brandmark img {
	height: 100%;
	inset: 0;
	max-width: none;
	object-fit: contain;
	object-position: left center;
	position: absolute;
	width: 100%;
}

.site-footer__brand-name {
	clip-path: inset(0 33.48% 0 0);
	filter: brightness(0) invert(1);
	opacity: 0.88;
}

.site-footer__brand-home {
	clip-path: inset(0 0 0 66.52%);
}

.footer-label {
	color: var(--stone);
	font-family: var(--display);
	font-size: 0.64rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.footer-nav,
.social-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav li,
.social-links li {
	margin-bottom: 0.42rem;
}

.footer-nav a,
.social-links a,
.site-footer__grid a {
	text-decoration: none;
}

.site-footer__grid a:hover {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.site-footer__fine {
	border-top: 1px solid rgba(245, 241, 234, 0.3);
	display: flex;
	font-family: var(--display);
	font-size: 0.6rem;
	justify-content: space-between;
	letter-spacing: 0.12em;
	padding-block: 26px;
	text-transform: uppercase;
}

.site-footer__fine p {
	margin: 0;
}

/* Shared page furniture */
.page-shell {
	padding-top: calc(var(--header-height) + clamp(60px, 8vw, 125px));
}

.page-intro,
.journal-intro,
.services-hero,
.standard-page,
.not-found {
	padding-bottom: clamp(85px, 11vw, 170px);
}

.page-intro h1,
.journal-intro h1,
.services-hero h1,
.standard-page h1,
.not-found h1 {
	font-size: clamp(3.2rem, 7vw, 8.1rem);
}

.standard-page .entry-content,
.journal-single__content {
	font-size: clamp(1.08rem, 1.35vw, 1.3rem);
}

.entry-content > *:first-child { margin-top: 0; }
.entry-content > *:last-child { margin-bottom: 0; }
.entry-content h2 { font-size: clamp(2rem, 3.4vw, 3.7rem); margin-top: 1.5em; }
.entry-content h3 { margin-top: 1.6em; }
.entry-content a { color: var(--clay); }
.entry-content blockquote { border-left: 1px solid var(--clay); font-size: 1.25em; margin: 2.2em 0; padding-left: 1.4em; }

/* Portfolio */
.portfolio-intro,
.contact-intro {
	align-items: end;
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: clamp(40px, 8vw, 130px);
	grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.45fr);
	padding-bottom: clamp(60px, 8vw, 115px);
}

.portfolio-intro h1,
.contact-intro h1 {
	font-size: clamp(3.4rem, 6.8vw, 8rem);
	margin: 0;
}

.portfolio-intro__note {
	border-top: 1px solid var(--line);
	font-size: 1.08em;
	padding-top: 20px;
}

.portfolio-grid {
	display: grid;
	gap: clamp(72px, 10vw, 155px) clamp(30px, 6vw, 105px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding-block: var(--section);
}

.portfolio-grid .project-card:nth-child(even) {
	margin-top: clamp(60px, 10vw, 150px);
}

.portfolio-grid .project-card__image {
	aspect-ratio: 1.04;
}

.portfolio-grid .project-card:nth-child(4n + 2) .project-card__image,
.portfolio-grid .project-card:nth-child(4n + 3) .project-card__image {
	aspect-ratio: 0.82;
}

/* Services page */
.services-hero {
	border-bottom: 1px solid var(--line);
	display: grid;
	grid-template-columns: 1.55fr 0.45fr;
	gap: clamp(40px, 7vw, 110px);
}

.services-hero .eyebrow {
	grid-column: 1 / -1;
}

.services-hero h1 {
	margin: 0;
}

.services-hero > p:last-child {
	align-self: end;
	font-size: 1.12em;
}

.service-detail {
	border-bottom: 1px solid var(--line);
	display: grid;
	gap: clamp(28px, 5vw, 85px);
	grid-template-columns: 70px minmax(250px, 0.9fr) minmax(300px, 1.1fr);
	padding-block: clamp(65px, 8vw, 125px);
	scroll-margin-top: calc(var(--header-height) + 24px);
}

.service-detail__number {
	font-family: var(--display);
	font-size: 0.7rem;
	letter-spacing: 0.15em;
	padding-top: 6px;
}

.service-detail__title h2 {
	font-size: clamp(2.5rem, 4.5vw, 5rem);
}

.service-detail__copy {
	font-size: 1.06em;
}

.service-detail__copy ul {
	border-top: 1px solid var(--line);
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}

.service-detail__copy li {
	border-bottom: 1px solid var(--line);
	padding: 13px 0;
}

.services-process {
	background: var(--ivory);
}

.services-process__heading {
	max-width: 900px;
}

.process-grid {
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(50px, 7vw, 100px);
}

.process-grid > div {
	border-right: 1px solid var(--line);
	padding: 30px clamp(18px, 2.4vw, 40px) 12px 0;
}

.process-grid > div:not(:first-child) {
	padding-left: clamp(18px, 2.4vw, 40px);
}

.process-grid > div:last-child {
	border-right: 0;
}

.process-grid span {
	font-family: var(--display);
	font-size: 0.66rem;
	letter-spacing: 0.15em;
}

.process-grid h3 {
	font-size: clamp(1.4rem, 2vw, 2.1rem);
	margin-top: 2.5em;
}

.page-cta {
	border-top: 1px solid var(--line);
	margin-block: var(--section);
	padding-top: clamp(35px, 5vw, 70px);
}

.page-cta h2 {
	font-size: clamp(3rem, 6vw, 7rem);
	max-width: 1050px;
}

/* Studio */
.studio-hero {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: clamp(45px, 8vw, 130px);
}

.studio-hero__copy {
	align-self: end;
	padding-bottom: 7%;
}

.studio-hero h1 {
	font-size: clamp(3.4rem, 6.6vw, 7.6rem);
}

.studio-hero__image img {
	aspect-ratio: 0.9;
	height: 100%;
	object-fit: cover;
}

.studio-origin {
	background: var(--ivory);
	margin-top: var(--section);
}

.studio-origin__body p + p {
	margin-top: 1.5em;
}

.studio-principles {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.studio-principles__image img {
	height: 100%;
	max-height: 1000px;
	object-fit: cover;
	width: 100%;
}

.studio-principles__copy {
	background: var(--charcoal);
	color: var(--paper);
	padding: clamp(55px, 8vw, 135px);
}

.studio-principles__copy > h2 {
	font-size: clamp(2.6rem, 4.7vw, 5.3rem);
	margin-bottom: 1em;
}

.principle {
	border-top: 1px solid rgba(245, 241, 234, 0.28);
	display: grid;
	gap: 25px;
	grid-template-columns: 48px 1fr;
	padding: 27px 0;
}

.principle > span {
	font-family: var(--display);
	font-size: 0.64rem;
	letter-spacing: 0.14em;
}

.principle h3 {
	font-size: clamp(1.45rem, 2vw, 2.2rem);
	margin-bottom: 0.4em;
}

.principle p {
	margin: 0;
}

.studio-region {
	text-align: center;
}

.studio-region .wrap {
	max-width: 1200px;
}

.studio-region h2 {
	font-size: clamp(3rem, 6.2vw, 7rem);
}

/* Contact */
.contact-intro > div:last-child {
	font-size: 1.08em;
}

.contact-intro__aside {
	border-top: 1px solid var(--line);
	font-size: 0.88em;
	margin-top: 30px;
	padding-top: 20px;
}

.contact-form-section {
	padding-block: var(--section);
}

.inquiry-form {
	margin-left: auto;
	max-width: 1120px;
}

.form-row {
	margin-bottom: clamp(28px, 4vw, 50px);
}

.form-row--split {
	display: grid;
	gap: clamp(25px, 5vw, 85px);
	grid-template-columns: 1fr 1fr;
}

.inquiry-form label,
.inquiry-form label > span {
	display: block;
}

.inquiry-form label > span {
	font-family: var(--display);
	font-size: 0.67rem;
	letter-spacing: 0.14em;
	margin-bottom: 13px;
	text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--charcoal);
	border-radius: 0;
	color: var(--ink);
	font: inherit;
	padding: 9px 2px 14px;
	width: 100%;
}

.inquiry-form select {
	background-image: linear-gradient(45deg, transparent 50%, var(--charcoal) 50%), linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
	background-position: calc(100% - 13px) calc(50% - 2px), calc(100% - 8px) calc(50% - 2px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 30px;
}

.inquiry-form textarea {
	border: 1px solid var(--charcoal);
	min-height: 190px;
	padding: 16px;
	resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
	border-color: var(--clay);
	outline: 0;
}

.form-submit {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.form-submit p {
	font-size: 0.82em;
	margin: 0;
}

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

.form-notice {
	background: var(--ivory);
	border-left: 4px solid var(--clay);
	margin: 0 0 55px auto;
	max-width: 1120px;
	padding: 25px 30px;
}

.form-notice h2 {
	font-size: 2rem;
}

.form-notice p:last-child { margin-bottom: 0; }

/* Virtual consultation */
.consultation-hero {
	background: var(--ivory);
	padding-block: calc(var(--header-height) + clamp(70px, 9vw, 145px)) clamp(85px, 11vw, 165px);
}

.consultation-hero__inner,
.questionnaire-intro {
	display: grid;
	gap: clamp(50px, 10vw, 170px);
	grid-template-columns: 1.35fr 0.65fr;
}

.consultation-hero h1 {
	font-size: clamp(3.4rem, 7.2vw, 8.2rem);
	margin: 0;
	max-width: 1120px;
}

.consultation-hero__aside {
	align-self: end;
	font-size: clamp(1.05rem, 1.35vw, 1.28rem);
	max-width: 540px;
}

.consultation-hero__aside .button-link {
	margin-top: 20px;
}

.consultation-process {
	background: var(--paper);
}

.consultation-process__heading {
	display: grid;
	gap: 40px;
	grid-template-columns: 0.55fr 1.45fr;
	margin-bottom: clamp(55px, 8vw, 105px);
}

.consultation-process__heading h2 {
	font-size: clamp(2.8rem, 5.2vw, 5.9rem);
}

.consultation-process__grid {
	border-top: 1px solid var(--line);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.consultation-process__grid > div {
	border-right: 1px solid var(--line);
	padding: clamp(32px, 4vw, 56px);
}

.consultation-process__grid > div:first-child { padding-left: 0; }
.consultation-process__grid > div:last-child { border-right: 0; padding-right: 0; }
.consultation-process__grid span {
	color: var(--clay);
	font-family: var(--ui);
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.15em;
}
.consultation-process__grid h3 { margin-top: 2.4em; }
.consultation-process__grid p { margin-bottom: 0; }

.questionnaire-section {
	background: var(--white);
	padding-block: var(--section);
}

.questionnaire-intro {
	border-bottom: 1px solid var(--line);
	margin-bottom: clamp(50px, 7vw, 95px);
	padding-bottom: clamp(45px, 6vw, 80px);
}

.questionnaire-intro h2 {
	font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.questionnaire-intro__note {
	border-left: 2px solid var(--clay);
	font-size: 0.88em;
	padding-left: 20px;
}

.questionnaire-shell {
	max-width: 1260px;
}

.consultation-form {
	margin-left: auto;
	max-width: 1120px;
}

.consultation-progress {
	display: none;
	margin-bottom: clamp(45px, 6vw, 75px);
}

.js .consultation-progress { display: block; }

.consultation-progress__line {
	background: rgba(68, 71, 78, 0.15);
	height: 2px;
	overflow: hidden;
}

.consultation-progress__line span {
	background: var(--clay);
	display: block;
	height: 100%;
	transition: width 420ms var(--ease);
	width: 16.666%;
}

.consultation-progress p {
	display: flex;
	font-family: var(--ui);
	font-size: 0.66rem;
	font-weight: 500;
	gap: 8px;
	letter-spacing: 0.12em;
	margin: 13px 0 0;
	text-transform: uppercase;
}

.consultation-progress [data-progress-label] {
	color: var(--stone);
	margin-left: auto;
}

.consultation-step {
	border: 0;
	margin: 0 0 clamp(85px, 11vw, 150px);
	min-width: 0;
	padding: 0;
}

.consultation-step legend {
	align-items: baseline;
	display: flex;
	font-family: var(--display);
	font-size: clamp(2.6rem, 5vw, 5.4rem);
	gap: clamp(18px, 3vw, 42px);
	line-height: 1.05;
	margin-bottom: 0.35em;
	padding: 0;
}

.consultation-step legend > span {
	color: var(--clay);
	font-family: var(--ui);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.step-intro {
	font-size: clamp(1.05rem, 1.3vw, 1.25rem);
	margin-bottom: clamp(50px, 6vw, 78px);
	max-width: 650px;
}

.consultation-form .form-row {
	margin-bottom: clamp(38px, 5vw, 64px);
}

.consultation-form label:not(.choice):not(.consent-field):not(.preference-scale) > span:first-child,
.consultation-form .field-label {
	display: block;
	font-family: var(--ui);
	font-size: 0.66rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	margin: 0 0 13px;
	text-transform: uppercase;
}

.consultation-form input[type="text"],
.consultation-form input[type="email"],
.consultation-form input[type="tel"],
.consultation-form select,
.consultation-form textarea {
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--charcoal);
	border-radius: 0;
	color: var(--ink);
	font: inherit;
	padding: 10px 2px 14px;
	width: 100%;
}

.consultation-form textarea {
	border: 1px solid var(--line);
	min-height: 120px;
	padding: 16px;
	resize: vertical;
}

.consultation-form select {
	background-image: linear-gradient(45deg, transparent 50%, var(--charcoal) 50%), linear-gradient(135deg, var(--charcoal) 50%, transparent 50%);
	background-position: calc(100% - 13px) calc(50% - 2px), calc(100% - 8px) calc(50% - 2px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 30px;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
	border-color: var(--clay);
	outline: 0;
}

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

.choice-stack {
	display: grid;
	gap: 10px;
}

.choice {
	align-items: flex-start;
	cursor: pointer;
	display: flex;
	font-size: 0.94em;
	gap: 11px;
}

.choice input,
.consent-field input {
	accent-color: var(--clay);
	flex: 0 0 auto;
	height: 17px;
	margin: 4px 0 0;
	width: 17px;
}

.choice input:disabled + span {
	opacity: 0.42;
}

.other-field {
	display: block;
	margin-top: 25px;
	max-width: 520px;
}

.problem-list {
	display: grid;
	gap: 14px;
}

.problem-list label {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 28px 1fr;
}

.problem-list label > span:first-child {
	font-size: 0.82rem !important;
	margin: 0 !important;
}

.arrival-question {
	background: var(--ivory);
	padding: clamp(28px, 4vw, 48px);
}

.preference-scales {
	display: grid;
	gap: 22px;
}

.preference-scale {
	align-items: center;
	display: grid;
	font-family: var(--ui);
	font-size: 0.72rem;
	gap: 18px;
	grid-template-columns: minmax(100px, 0.6fr) minmax(160px, 2fr) minmax(140px, 0.8fr);
	letter-spacing: 0.04em;
}

.preference-scale span:last-child { text-align: right; }
.preference-scale input { accent-color: var(--clay); width: 100%; }

.priority-ranking {
	display: grid;
	gap: 12px;
}

.priority-ranking label {
	align-items: center;
	display: grid;
	gap: 14px;
	grid-template-columns: 30px 1fr;
}

.priority-ranking label > span:first-child {
	font-size: 0.8rem !important;
	margin: 0 !important;
	text-align: center;
}

.upload-panel {
	background: var(--charcoal);
	color: var(--paper);
	display: grid;
	gap: clamp(35px, 6vw, 80px);
	grid-template-columns: 1fr 1fr;
	margin-bottom: clamp(42px, 5vw, 65px);
	padding: clamp(30px, 5vw, 60px);
}

.file-field {
	align-self: center;
	border: 1px solid rgba(245, 241, 234, 0.45);
	cursor: pointer;
	display: block;
	padding: 25px;
}

.file-field input {
	font-family: var(--ui);
	font-size: 0.75rem;
	margin: 18px 0;
	max-width: 100%;
}

.file-field small,
.file-summary {
	display: block;
	font-size: 0.78em;
}

.file-summary { color: var(--ivory); margin-top: 8px; }

.consent-field {
	align-items: flex-start;
	display: flex;
	font-size: 0.9em;
	gap: 13px;
	max-width: 850px;
}

.consultation-actions {
	align-items: center;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: flex-end;
	padding-top: 30px;
}

.consultation-actions .text-button {
	background: transparent;
	border: 0;
	color: var(--charcoal);
	cursor: pointer;
	font-family: var(--ui);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	margin-right: auto;
	padding: 15px 0;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 5px;
}

/* Journal pages */
.journal-intro {
	max-width: 1180px;
}

.journal-page .journal-grid {
	padding-bottom: var(--section);
}

.pagination {
	padding-bottom: var(--section);
}

.nav-links {
	display: flex;
	gap: 12px;
}

.page-numbers {
	border: 1px solid var(--line);
	display: inline-flex;
	padding: 8px 13px;
	text-decoration: none;
}

.page-numbers.current {
	background: var(--charcoal);
	color: var(--paper);
}

.journal-single {
	padding-top: calc(var(--header-height) + clamp(70px, 9vw, 140px));
}

.journal-single__header {
	max-width: 1080px;
	padding-bottom: clamp(55px, 7vw, 100px);
	text-align: center;
}

.journal-single__header h1 {
	font-size: clamp(3.2rem, 7.2vw, 8.2rem);
}

.journal-single__dek {
	font-size: clamp(1.15rem, 1.7vw, 1.65rem);
	margin: 0 auto;
	max-width: 720px;
}

.journal-single__image img {
	max-height: 82vh;
	object-fit: cover;
	width: 100%;
}

.journal-single__content {
	padding-block: clamp(65px, 9vw, 130px);
}

.journal-single__content > p:first-child::first-letter {
	color: var(--charcoal);
	float: left;
	font-family: var(--display);
	font-size: 5.3em;
	line-height: 0.75;
	margin: 0.12em 0.1em 0 0;
}

.journal-single__back {
	border-top: 1px solid var(--line);
	padding-block: 35px var(--section);
}

/* Single project */
.project-single {
	padding-top: calc(var(--header-height) + clamp(60px, 7vw, 110px));
}

.project-single__header {
	align-items: end;
	display: grid;
	gap: clamp(35px, 8vw, 130px);
	grid-template-columns: 1.6fr 0.4fr;
	padding-bottom: clamp(55px, 7vw, 100px);
}

.project-single__header h1 {
	font-size: clamp(3.5rem, 7.5vw, 8.7rem);
	margin: 0;
}

.project-single__facts {
	border-top: 1px solid var(--line);
	padding-top: 14px;
}

.project-single__facts p {
	display: grid;
	font-size: 0.92em;
	grid-template-columns: 75px 1fr;
	margin-bottom: 0.55em;
}

.project-single__facts span {
	font-family: var(--display);
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	padding-top: 5px;
	text-transform: uppercase;
}

.project-single__hero img {
	height: min(78vw, 900px);
	object-fit: cover;
	width: 100%;
}

.project-single__story {
	display: grid;
	gap: 40px;
	grid-template-columns: 140px 1fr;
	max-width: 1080px;
	padding-block: var(--section);
}

.project-single__story .entry-content {
	font-size: clamp(1.22rem, 1.8vw, 1.75rem);
}

.project-gallery {
	display: grid;
	gap: clamp(40px, 7vw, 110px);
	grid-template-columns: repeat(12, minmax(0, 1fr));
	padding-bottom: var(--section);
}

.project-gallery__item {
	margin: 0;
}

.project-gallery__item--1 { grid-column: 1 / span 8; }
.project-gallery__item--2 { grid-column: 6 / span 7; }
.project-gallery__item--3 { grid-column: 2 / span 5; }
.project-gallery__item img { width: 100%; }
.project-gallery__item--2 img,
.project-gallery__item--3 img { max-height: 880px; object-fit: cover; }

.project-next {
	border-top: 1px solid var(--line);
	padding-block: 35px var(--section);
}

.project-next a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.project-next a span {
	font-family: var(--display);
	font-size: 0.64rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.project-next a strong {
	font-family: var(--display);
	font-size: clamp(2.8rem, 6vw, 7rem);
	font-weight: 400;
}

.not-found {
	min-height: 75vh;
}

/* Responsive */
@media (max-width: 1180px) {
	.site-navigation ul { gap: 17px; }
	.site-navigation a { font-size: 0.62rem; }
	.brand img { width: 285px; }
	.site-footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
	.site-footer__grid > div:last-child { grid-column: 2; }
	.studio-principles__copy { padding: clamp(45px, 5vw, 80px); }
}

@media (max-width: 960px) {
	:root { --header-height: 82px; }
	.admin-bar .site-header { top: 32px; }
	.menu-toggle { display: flex; }
	.site-navigation {
		align-items: center;
		background: var(--ivory);
		display: flex;
		inset: 0;
		justify-content: center;
		opacity: 0;
		padding: calc(var(--header-height) + 40px) var(--gutter) 40px;
		pointer-events: none;
		position: fixed;
		transform: translateY(-15px);
		transition: opacity 320ms ease, transform 500ms var(--ease);
		visibility: hidden;
		z-index: 1001;
	}
	.site-navigation.is-open { opacity: 1; pointer-events: auto; transform: none; visibility: visible; }
	.site-navigation ul { align-items: stretch; flex-direction: column; gap: 0; width: min(620px, 100%); }
	.site-navigation li { border-bottom: 1px solid var(--line); }
	.site-navigation a { display: block; font-size: clamp(1.6rem, 5vw, 3rem); letter-spacing: 0; padding: 15px 0; text-transform: none; }
	.site-navigation__contact { border: 0 !important; margin-top: 30px; }
	.site-navigation__contact a { align-items: center; display: flex; font-size: 0.75rem; justify-content: center; letter-spacing: 0.13em; padding: 18px; text-transform: uppercase; }
	.site-navigation li:not(.site-navigation__contact) a::after { display: none; }
	.home-origin__grid,
	.studio-origin__grid { grid-template-columns: 100px 1fr; }
	.home-origin__text,
	.studio-origin__body { grid-column: 2; }
	.services-band__intro,
	.services-hero { grid-template-columns: 1fr; }
	.services-band__intro .eyebrow,
	.services-hero .eyebrow { grid-column: auto; }
	.material-story__grid { gap: 55px; }
	.process-grid { grid-template-columns: repeat(2, 1fr); }
	.process-grid > div:nth-child(2) { border-right: 0; }
	.process-grid > div:nth-child(n+3) { border-top: 1px solid var(--line); }
	.studio-hero { grid-template-columns: 1fr; }
	.studio-hero__copy { padding: 0; }
	.studio-hero__image { margin-left: 18%; }
	.studio-principles { grid-template-columns: 1fr; }
	.studio-principles__image img { max-height: 80vh; }
	.project-single__header { grid-template-columns: 1fr; }
	.project-single__facts { max-width: 520px; }
	.consultation-hero__inner,
	.questionnaire-intro { gap: 65px; grid-template-columns: 1.15fr 0.85fr; }
	.consultation-process__heading { grid-template-columns: 1fr; }
}

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

@media (max-width: 760px) {
	:root { --gutter: 20px; --section: 88px; }
	body { font-size: 17px; }
	.site-header,
	.site-header.is-scrolled { height: var(--header-height); }
	.brand img { width: min(250px, 68vw); }
	.menu-toggle__label { display: none; }
	.home-hero { min-height: 780px; }
	.home-hero__image { object-position: 57% center; }
	.home-hero__wash { background: linear-gradient(0deg, rgba(18,18,18,.72) 0%, rgba(18,18,18,.18) 74%); }
	.home-hero__content { display: block; }
	.home-hero__caption { display: none; }
	.home-origin__grid,
	.studio-origin__grid { grid-template-columns: 68px 1fr; gap: 25px; }
	.origin-mark { height: 58px; width: 58px; }
	.origin-mark::after { height: 84px; }
	.section-heading { align-items: flex-start; flex-direction: column; gap: 25px; }
	.selected-work__grid { display: block; }
	.selected-work__grid .project-card { margin: 0 0 70px !important; }
	.selected-work__grid .project-card__image { aspect-ratio: 1.05 !important; }
	.selected-work__grid .project-card:nth-child(2) .project-card__image { aspect-ratio: 0.82 !important; }
	.project-card__view { display: none; }
	.project-card__meta { display: block; }
	.project-card__meta > p { margin-left: 0; text-align: left; }
	.services-band__intro { display: block; }
	.services-band__intro h2 { margin-bottom: 0.8em; }
	.service-row { grid-template-columns: 45px 1fr; }
	.about-introduction,
	.pronunciation-panel__inner,
	.about-principal { grid-template-columns: 1fr; }
	.pronunciation-panel__meaning { max-width: 680px; }
	.material-story__grid { grid-template-columns: 1fr; }
	.material-story__image { margin: 0 15% 0 0; }
	.journal-grid { grid-template-columns: 1fr; }
	.journal-grid--preview .journal-card:nth-child(n+3) { display: none; }
	.journal-single__related { align-items: flex-start; flex-direction: column; }
	.journal-single__related .eyebrow { margin-right: 0; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
	.site-footer__grid > div:last-child { grid-column: auto; }
	.site-footer__fine { flex-direction: column; gap: 8px; }
	.portfolio-intro,
	.contact-intro,
	.services-hero { grid-template-columns: 1fr; }
	.portfolio-grid { display: block; }
	.portfolio-grid .project-card { margin: 0 0 78px; }
	.service-detail { grid-template-columns: 46px 1fr; }
	.service-detail__copy { grid-column: 2; }
	.process-grid { grid-template-columns: 1fr; }
	.process-grid > div { border-right: 0; border-top: 1px solid var(--line); padding: 28px 0 !important; }
	.process-grid > div:first-child { border-top: 0; }
	.process-grid h3 { margin-top: 1.5em; }
	.studio-hero__image { margin-left: 10%; }
	.form-row--split { grid-template-columns: 1fr; }
	.form-submit { align-items: flex-start; flex-direction: column; }
	.consultation-hero__inner,
	.questionnaire-intro { grid-template-columns: 1fr; }
	.consultation-process__grid { grid-template-columns: 1fr; }
	.consultation-process__grid > div { border-right: 0; border-top: 1px solid var(--line); padding: 30px 0; }
	.consultation-process__grid > div:first-child { border-top: 0; }
	.consultation-process__grid h3 { margin-top: 1.5em; }
	.choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.upload-panel { grid-template-columns: 1fr; }
	.project-single__story { grid-template-columns: 1fr; gap: 10px; }
	.project-gallery { display: block; }
	.project-gallery__item { margin-bottom: 55px; }
	.project-single__hero img { height: 70vh; }
}

@media (max-width: 480px) {
	.brand img { width: 220px; }
	.home-hero { min-height: 690px; }
	.home-origin__grid,
	.studio-origin__grid { display: block; }
	.origin-mark { margin-bottom: 35px; }
	.home-origin__text,
	.studio-origin__body { margin-top: 35px; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.site-footer__grid > div:last-child { grid-column: auto; }
	.service-detail { display: block; }
	.service-detail__number { margin-bottom: 30px; }
	.studio-principles__copy { padding-inline: 22px; }
	.consultation-step legend { align-items: flex-start; flex-direction: column; }
	.choice-grid { grid-template-columns: 1fr; }
	.preference-scale { gap: 9px; grid-template-columns: minmax(76px, .7fr) minmax(100px, 1.5fr) minmax(90px, .8fr); }
	.consultation-progress [data-progress-label] { display: none; }
	.arrival-question { margin-inline: -10px; padding-inline: 18px; }
	.project-single__hero img { height: 58vh; }
}

@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; }
	.js .reveal { opacity: 1; transform: none; }
}
