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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

@font-face {
	font-display: swap;
	font-family: "Louize";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/205TF-Louize-Regular.otf") format("opentype");
}

@font-face {
	font-display: swap;
	font-family: "Louize";
	font-style: italic;
	font-weight: 400;
	src: url("../fonts/205TF-Louize-Italic.otf") format("opentype");
}

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

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

@font-face {
	font-display: swap;
	font-family: "Graphik";
	font-style: normal;
	font-weight: 500;
	src: url("../fonts/Graphik-Medium.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: "Graphik";
	font-style: normal;
	font-weight: 700;
	src: url("../fonts/Graphik-Medium.woff") format("woff");
}

@font-face {
	font-display: swap;
	font-family: "Graphik";
	font-style: normal;
	font-weight: 800;
	src: url("../fonts/Graphik-Medium.woff") format("woff");
}

:root {
	--color-text: #0b0a08;
	--color-bg: #E5E1DF;
	--color-link: #0b0a08;
	--color-heading: #DAD6D6;
	--font-body: "Graphik", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Louize", Georgia, "Times New Roman", serif;
	--ratio: 0.95;
	--grid-item-height: 25vw;
	--grid-item-width: calc(var(--grid-item-height) * var(--ratio));
	--column-step: calc(var(--grid-item-width) + 2.6vw);
	--line: rgba(0, 0, 0, 0.28);
	font-size: 16px;
}

body {
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-body);
	margin: 0;
	overflow-x: hidden;
}

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

body.home {
	overflow: hidden;
}

a {
	color: var(--color-link);
	text-decoration: none;
}

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

.skip-link {
	background: #000;
	color: #fff;
	left: 1rem;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -5rem;
	z-index: 10000;
}

.skip-link:focus {
	top: 1rem;
}

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

.home .site-header,
.client-shell .site-header {
	display: none;
}

.site-footer {
	align-items: flex-end;
	bottom: 1.25rem;
	display: flex;
	font-size: 0.68rem;
	font-weight: 700;
	flex-direction: column;
	gap: 0.4rem;
	justify-content: flex-end;
	line-height: 1.2;
	position: fixed;
	right: 1.25rem;
	text-align: right;
	text-transform: uppercase;
	z-index: 520;
}

.site-footer p {
	margin: 0;
}

.site-footer nav {
	display: flex;
	gap: 0.85rem;
	white-space: nowrap;
}

.site-footer a {
	color: inherit;
}

.site-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 400;
}

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

.column-scroll-page {
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.frame {
	height: 100%;
	left: 0;
	padding: 1.5rem 1rem;
	pointer-events: none;
	position: fixed;
	text-transform: uppercase;
	top: 0;
	width: 100%;
	z-index: 500;
}

.site-side-logo,
.frame__tagline {
	pointer-events: auto;
}

.site-side-logo {
	left: 0.72rem;
	margin: 0;
	position: fixed;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: center;
	width: clamp(10rem, 10vw, 14rem);
	z-index: 500;
}

.site-side-logo img {
	display: block;
	filter: contrast(1.06);
	height: auto;
	opacity: 0.78;
	width: 100%;
}

@media (max-width: 1440px) {
	.site-side-logo {
		display: none;
	}
}

.frame__tagline {
	font-size: 0.78rem;
	bottom: 1.5rem;
	margin: 0;
	max-width: 18rem;
	position: absolute;
	right: 1rem;
	text-align: right;
}

.unbutton {
	background: none;
	border: 0;
	font: inherit;
	margin: 0;
	padding: 0;
}

.button-menu {
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
	cursor: pointer;
	grid-area: menu;
	height: 15px;
	justify-self: end;
	position: relative;
	transition: transform 600ms cubic-bezier(0.14, 1, 0.34, 1);
	width: 30px;
}

.button-menu span {
	background: #000;
	display: block;
	height: 1px;
	position: relative;
	transition: opacity 250ms linear;
}

.floating-nav {
	align-items: center;
	background: rgba(229, 225, 223, 0.62);
	border: 1px solid rgba(11, 10, 8, 0.14);
	border-radius: 999px;
	display: flex;
	gap: 0.22rem;
	justify-content: space-between;
	left: 50%;
	min-width: min(30rem, calc(100vw - 2rem));
	padding: 0.42rem;
	position: fixed;
	top: 60px;
	transform: translateX(-50%);
	z-index: 520;
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	backdrop-filter: blur(18px) saturate(1.2);
}

.floating-nav__link,
.floating-nav__menu {
	align-items: center;
	border-radius: 999px;
	color: rgba(11, 10, 8, 0.78);
	cursor: pointer;
	display: flex;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.4rem;
	line-height: 1;
	min-height: 2.35rem;
	padding: 0.82rem 0.95rem;
	text-transform: uppercase;
	transition:
		background 260ms cubic-bezier(0.14, 1, 0.34, 1),
		color 260ms cubic-bezier(0.14, 1, 0.34, 1),
		opacity 260ms cubic-bezier(0.14, 1, 0.34, 1);
	white-space: nowrap;
}

.floating-nav__brand {
	align-items: center;
	border-radius: 999px;
	display: flex;
	gap: 0.6rem;
	height: 2.35rem;
	padding: 0 0.95rem;
}

.floating-nav__brand img {
	display: block;
	object-fit: contain;
	width: auto;
}

.floating-nav__icon {
	height: 1.34rem;
}

.floating-nav__wordmark {
	height: 0.78rem;
	max-width: min(8.5rem, 28vw);
}

.floating-nav__link span {
	color: rgba(11, 10, 8, 0.44);
	font-weight: 500;
}

.floating-nav__link:hover,
.floating-nav__link.is-current {
	background: rgba(11, 10, 8, 0.88);
	color: #E5E1DF;
}

.floating-nav__menu {
	background: rgba(11, 10, 8, 0.88);
	color: #E5E1DF;
	justify-content: center;
	padding-left: 0.82rem;
	padding-right: 0.82rem;
	position: relative;
	width: 2.75rem;
}

.floating-nav__menu:hover,
.menu-open .floating-nav__menu {
	background: #0b0a08;
	color: #E5E1DF;
}

.floating-nav__menu-line {
	background: currentColor;
	display: block;
	height: 1px;
	position: absolute;
	transition:
		opacity 180ms linear,
		transform 260ms cubic-bezier(0.14, 1, 0.34, 1);
	width: 0.94rem;
}

.client-login-pill {
	align-items: center;
	background: rgba(229, 225, 223, 0.62);
	border: 1px solid rgba(11, 10, 8, 0.14);
	border-radius: 999px;
	color: rgba(11, 10, 8, 0.78);
	display: flex;
	font-size: 0.72rem;
	font-weight: 700;
	gap: 0.48rem;
	line-height: 1;
	min-height: 3.08rem;
	padding: 0.42rem 1.12rem;
	position: fixed;
	right: 1.25rem;
	text-decoration: none;
	text-transform: uppercase;
	top: 60px;
	transition:
		background 260ms cubic-bezier(0.14, 1, 0.34, 1),
		color 260ms cubic-bezier(0.14, 1, 0.34, 1);
	white-space: nowrap;
	z-index: 520;
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	backdrop-filter: blur(18px) saturate(1.2);
}

.client-login-pill:hover {
	background: rgba(11, 10, 8, 0.88);
	color: #E5E1DF;
}

.client-login-pill__icon {
	display: block;
	fill: none;
	height: 1.08rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 1.08rem;
}

.floating-nav__menu-line:nth-child(1) {
	transform: translateY(-0.32rem);
}

.floating-nav__menu-line:nth-child(3) {
	transform: translateY(0.32rem);
}

.menu-open .floating-nav__menu-line:nth-child(1) {
	transform: rotate(45deg);
}

.menu-open .floating-nav__menu-line:nth-child(2) {
	opacity: 0;
}

.menu-open .floating-nav__menu-line:nth-child(3) {
	transform: rotate(-45deg);
}

.floating-nav__link:hover span,
.floating-nav__link.is-current span {
	color: rgba(229, 225, 223, 0.58);
}

.menu-open .button-menu {
	border-color: transparent;
	height: 26px;
	width: 26px;
}

.menu-open .button-menu::before,
.menu-open .button-menu::after {
	background: currentColor;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%;
}

.menu-open .button-menu::before {
	transform: rotate(45deg);
}

.menu-open .button-menu::after {
	transform: rotate(-45deg);
}

.menu-open .button-menu span {
	opacity: 0;
}

.nav-bg {
	background: var(--color-bg);
	height: 100vh;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: opacity 350ms linear;
	width: 100%;
	z-index: 420;
}

.menu-open .nav-bg {
	opacity: 0.98;
	pointer-events: auto;
}

.menu-overlay {
	display: flex;
	inset: 0;
	opacity: 0;
	padding: clamp(6rem, 12vh, 9rem) clamp(1.5rem, 8vw, 8rem) clamp(3rem, 8vh, 6rem);
	pointer-events: none;
	position: fixed;
	transition: opacity 250ms linear;
	z-index: 430;
}

.menu-open .menu-overlay {
	opacity: 1;
	pointer-events: auto;
}

.menu-overlay__list {
	align-self: end;
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3.4rem);
	list-style: none;
	margin: 0 auto;
	max-width: 58rem;
	padding: 0;
	width: min(72vw, 58rem);
}

.menu-overlay__item {
	opacity: 0;
	transform: translateX(4rem);
	transition:
		opacity 420ms linear,
		transform 900ms cubic-bezier(0.14, 1, 0.34, 1);
}

.menu-overlay__item:nth-child(even) {
	align-self: flex-end;
	transform: translateX(-4rem);
}

.menu-open .menu-overlay__item {
	opacity: 1;
	transform: translateX(0);
}

.menu-open .menu-overlay__item:nth-child(1) {
	transition-delay: 80ms;
}

.menu-open .menu-overlay__item:nth-child(2) {
	transition-delay: 160ms;
}

.menu-open .menu-overlay__item:nth-child(3) {
	transition-delay: 240ms;
}

.menu-overlay__link {
	align-items: flex-start;
	display: flex;
	font-family: var(--font-display);
	font-size: clamp(4.4rem, 9vw, 9.5rem);
	gap: clamp(1rem, 2vw, 1.8rem);
	letter-spacing: 0;
	line-height: 0.84;
	text-transform: uppercase;
}

.menu-overlay__sup {
	font-family: var(--font-body);
	font-size: clamp(0.74rem, 1vw, 0.9rem);
	font-weight: 700;
	line-height: 1;
	padding-top: 0.6em;
}

@media (hover: hover) {
	.menu-overlay__list:has(.menu-overlay__link:hover) .menu-overlay__link {
		opacity: 0.32;
	}

	.menu-overlay__list:has(.menu-overlay__link:hover) .menu-overlay__link:hover {
		opacity: 1;
	}

	.menu-overlay__link {
		transition: opacity 350ms cubic-bezier(0.43, 0.2, 0.02, 1);
	}
}

.heading {
	color: var(--color-heading);
	display: none;
	font-family: var(--font-display);
	font-size: clamp(5.4rem, 13.2vw, 14.5rem);
	font-weight: 400;
	left: 50%;
	line-height: 1;
	margin: 0;
	pointer-events: none;
	position: fixed;
	text-align: center;
	text-transform: uppercase;
	top: 50%;
	transform: translate3d(-50%, -50%, 0);
	transform-origin: 50% 50%;
	white-space: nowrap;
	width: max-content;
	z-index: 0;
}

.columns {
	display: block;
	height: 100vh;
	justify-content: center;
	overflow: hidden;
	padding: 0 3rem;
	position: relative;
	width: 100%;
	z-index: 2;
}

.mobile-portfolio-grid {
	display: none;
}

.column-wrap {
	height: 100vh;
	left: 50%;
	overflow: hidden;
	padding: 0;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: var(--column-step);
	z-index: 1;
}

.column-wrap:nth-child(1) {
	margin-left: calc(var(--column-step) * -1);
}

.column-wrap:nth-child(2) {
	margin-left: 0;
}

.column-wrap:nth-child(3) {
	margin-left: var(--column-step);
}

.column {
	display: block;
	height: 100%;
	position: relative;
	will-change: transform;
}

.column__set {
	backface-visibility: hidden;
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	transform: translateZ(0);
	width: 100%;
	will-change: transform;
}

.column__item {
	margin: 0;
	position: relative;
	z-index: 1;
}

.column__item-link {
	display: block;
}

.column__item-link:focus-visible,
.mobile-portfolio-card:focus-visible {
	outline: 1px solid rgba(11, 10, 8, 0.72);
	outline-offset: 4px;
}

.column__item-imgwrap {
	border-radius: 8px;
	cursor: pointer;
	margin: 3.2vw 1vw 0;
	overflow: hidden;
	position: relative;
	transform: translate3d(0, 0, 0);
	width: var(--grid-item-width);
}

.portfolio-image-label {
	-webkit-backdrop-filter: blur(16px) saturate(1.35);
	backdrop-filter: blur(16px) saturate(1.35);
	background: rgba(229, 225, 223, 0.24);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.66rem;
	font-weight: 800;
	left: clamp(1.35rem, 1.7vw, 1.8rem);
	line-height: 1;
	max-width: calc(100% - clamp(2.7rem, 3.4vw, 3.6rem));
	overflow: hidden;
	padding: 0.48rem 0.62rem;
	position: absolute;
	text-overflow: ellipsis;
	text-transform: uppercase;
	top: clamp(1.35rem, 1.7vw, 1.8rem);
	white-space: nowrap;
	z-index: 4;
}

.portfolio-card-overlay {
	align-items: flex-start;
	background: rgba(11, 10, 8, 0.58);
	color: #E5E1DF;
	display: flex;
	flex-direction: column;
	inset: 0;
	justify-content: flex-start;
	opacity: 0;
	padding: clamp(5.1rem, 7.2vw, 6.8rem) clamp(1.35rem, 1.7vw, 1.8rem) clamp(1.35rem, 1.7vw, 1.8rem);
	pointer-events: none;
	position: absolute;
	transform: translateY(0.45rem);
	transition:
		opacity 320ms cubic-bezier(0.14, 1, 0.34, 1),
		transform 520ms cubic-bezier(0.14, 1, 0.34, 1);
	z-index: 3;
	-webkit-backdrop-filter: blur(8px) saturate(1.08);
	backdrop-filter: blur(8px) saturate(1.08);
}

.portfolio-card-overlay {
	display: none;
}

.column__item-link.is-open .portfolio-card-overlay,
.mobile-portfolio-card.is-open .portfolio-card-overlay {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.portfolio-card-overlay__title {
	font-family: var(--font-body);
	font-size: clamp(0.68rem, 0.78vw, 0.82rem);
	font-weight: 800;
	line-height: 1;
	margin: 0 0 0.8rem;
	max-width: 24rem;
	text-transform: uppercase;
}

.portfolio-card-overlay__text {
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.05vw, 2.15rem);
	font-weight: 400;
	line-height: 1.05;
	margin: 0 0 1.15rem;
	max-width: 24rem;
}

.portfolio-card-overlay__close {
	background: rgba(229, 225, 223, 0.16);
	border: 0;
	border-radius: 999px;
	color: #E5E1DF;
	cursor: pointer;
	height: 2rem;
	position: absolute;
	right: clamp(1.35rem, 1.7vw, 1.8rem);
	top: clamp(1.35rem, 1.7vw, 1.8rem);
	width: 2rem;
	z-index: 2;
}

.portfolio-card-overlay__close::before,
.portfolio-card-overlay__close::after {
	background: currentColor;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 0.82rem;
}

.portfolio-card-overlay__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.portfolio-card-overlay__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.portfolio-card-overlay__button {
	align-items: center;
	background: rgba(229, 225, 223, 0.18);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.88);
	display: inline-flex;
	font-size: 0.68rem;
	font-weight: 800;
	gap: 0.45rem;
	justify-content: center;
	line-height: 1;
	min-height: 2.15rem;
	padding: 0.72rem 0.9rem;
	text-transform: uppercase;
	transition:
		background 280ms cubic-bezier(0.14, 1, 0.34, 1),
		color 280ms cubic-bezier(0.14, 1, 0.34, 1);
	-webkit-backdrop-filter: blur(16px) saturate(1.35);
	backdrop-filter: blur(16px) saturate(1.35);
}

.portfolio-card-overlay__button:hover {
	background: rgba(229, 225, 223, 0.28);
	color: #fff;
}

.portfolio-card-overlay__lock {
	display: block;
	fill: none;
	height: 0.88rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 0.88rem;
}

.project-panel {
	background: rgba(229, 225, 223, 0.92);
	border-left: 1px solid rgba(11, 10, 8, 0.14);
	bottom: 0;
	color: rgba(11, 10, 8, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 100vw;
	opacity: 0;
	padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem);
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition:
		opacity 260ms linear,
		transform 720ms cubic-bezier(0.14, 1, 0.34, 1);
	width: min(34rem, 92vw);
	z-index: 620;
	-webkit-backdrop-filter: blur(18px) saturate(1.12);
	backdrop-filter: blur(18px) saturate(1.12);
}

.project-panel[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.project-panel__close {
	background: rgba(11, 10, 8, 0.08);
	border: 0;
	border-radius: 999px;
	color: rgba(11, 10, 8, 0.86);
	cursor: pointer;
	height: 2.35rem;
	position: absolute;
	right: 1.25rem;
	top: 1.25rem;
	width: 2.35rem;
}

.project-panel__close::before,
.project-panel__close::after {
	background: currentColor;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 0.92rem;
}

.project-panel__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.project-panel__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.project-panel__label {
	color: #823725;
	font-size: 0.74rem;
	font-weight: 800;
	margin: 0 0 clamp(1.2rem, 2.5vw, 2rem);
	text-transform: uppercase;
}

.project-panel__title {
	font-family: var(--font-body);
	font-size: clamp(0.78rem, 1vw, 0.9rem);
	font-weight: 800;
	line-height: 1;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.project-panel__text {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 3.2vw, 3rem);
	line-height: 1.03;
	margin: 0 0 clamp(2rem, 4vw, 3.4rem);
}

.project-panel__button {
	align-items: center;
	align-self: flex-start;
	background: rgba(11, 10, 8, 0.08);
	border: 1px solid rgba(11, 10, 8, 0.18);
	border-radius: 999px;
	color: rgba(11, 10, 8, 0.9);
	display: inline-flex;
	font-size: 0.72rem;
	font-weight: 800;
	gap: 0.5rem;
	justify-content: center;
	line-height: 1;
	min-height: 2.35rem;
	padding: 0.78rem 1rem;
	text-transform: uppercase;
}

.project-panel__lock {
	display: block;
	fill: none;
	height: 0.9rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 0.9rem;
}

.project-panel__lock[hidden] {
	display: none;
}

.column__item-img {
	display: block;
	height: auto;
	transform: translateZ(0);
	width: 100%;
}

.column__item-img--fallback {
	aspect-ratio: var(--ratio);
	background:
		linear-gradient(135deg, rgba(12, 11, 9, 0.2), rgba(12, 11, 9, 0)),
		linear-gradient(135deg, #823725, #d7c7a8 48%, #1f5f57);
}

.page-shell {
	padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem) clamp(7rem, 10vw, 9rem);
}

.simple-page,
.portfolio-single {
	margin: 0 auto;
	max-width: 900px;
}

.simple-page {
	padding-top: clamp(3.5rem, 7vw, 6rem);
}

.simple-page h1 {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4.8rem);
	line-height: 0.96;
	margin: 0;
	text-align: center;
}

.portfolio-single h1 {
	font-family: var(--font-display);
	font-size: clamp(3rem, 10vw, 8rem);
	line-height: 0.9;
	margin: 0;
}

.eyebrow,
.back-link {
	color: #823725;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.dek,
.entry-content {
	color: rgba(0, 0, 0, 0.68);
	font-size: 1.08rem;
	margin-top: 1.5rem;
}

.single-media {
	margin: clamp(2rem, 6vw, 5rem) 0;
}

.single-media img {
	border-radius: 8px;
	width: 100%;
}

.portfolio-login {
	min-height: 62vh;
	padding-top: clamp(2rem, 8vw, 7rem);
}

.client-auth-page,
.client-area-page {
	min-height: 100vh;
	padding-top: clamp(8rem, 15vw, 12rem);
}

.client-auth-page {
	align-items: center;
	display: flex;
	padding-bottom: clamp(2rem, 6vw, 5rem);
}

.client-login-panel,
.client-area {
	margin: 0 auto;
	max-width: 900px;
}

.proposal-single-page {
	background: #fff;
}

.proposal-single {
	max-width: 1400px;
}

.proposal-single__header {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	text-align: center;
}

.proposal-single-shell {
	background: #fff;
}

.client-login-panel {
	background: rgba(218, 214, 211, 0.66);
	border: 1px solid rgba(11, 10, 8, 0.13);
	border-radius: 8px;
	max-width: min(42rem, calc(100vw - 2rem));
	padding: clamp(2rem, 5vw, 4rem);
	text-align: center;
	-webkit-backdrop-filter: blur(18px) saturate(1.12);
	backdrop-filter: blur(18px) saturate(1.12);
}

.client-login-panel h1,
.client-area h1 {
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 11vw, 8.5rem);
	line-height: 0.88;
	margin: 0;
}

.client-login-panel h1 {
	font-size: clamp(2.4rem, 6.4vw, 4.9rem);
}

.client-area h1 {
	font-size: clamp(2.6rem, 6.5vw, 5.8rem);
	margin-bottom: clamp(3rem, 7vw, 6rem);
	text-align: center;
}

.client-area > .eyebrow {
	text-align: center;
}

.client-area-meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.74rem;
	font-weight: 800;
	gap: 0.8rem 1rem;
	justify-content: center;
	margin-top: 0;
	padding-bottom: 0.85rem;
	text-align: center;
	text-transform: uppercase;
}

.client-area-meta a {
	background: rgba(229, 225, 223, 0.68);
	border-radius: 999px;
	color: inherit;
	display: inline-flex;
	padding: 0.78rem 1rem;
	text-decoration: none;
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	backdrop-filter: blur(18px) saturate(1.2);
}

.client-login-form {
	background: rgba(229, 225, 223, 0.5);
	border: 1px solid rgba(11, 10, 8, 0.12);
	border-radius: 8px;
	margin-top: clamp(2rem, 5vw, 3.4rem);
	padding: clamp(1.25rem, 3vw, 2rem);
	text-align: left;
}

.client-login-form label {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	margin-top: 1.2rem;
	text-transform: uppercase;
}

.client-login-form input {
	background: rgba(229, 225, 223, 0.72);
	border: 1px solid rgba(11, 10, 8, 0.16);
	border-radius: 8px;
	color: inherit;
	font: inherit;
	margin-top: 0.55rem;
	padding: 0.85rem 0.9rem;
	width: 100%;
}

.client-login-form button {
	background: rgba(11, 10, 8, 0.88);
	border: 0;
	border-radius: 999px;
	color: #E5E1DF;
	cursor: pointer;
	display: flex;
	font-size: 0.76rem;
	font-weight: 800;
	justify-content: center;
	margin: 1.5rem auto 0;
	padding: 0.95rem 1.25rem;
	text-transform: uppercase;
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	backdrop-filter: blur(18px) saturate(1.2);
}

.client-login-form__error {
	color: #823725;
	font-size: 0.86rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.client-project-grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.6rem);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(1.4rem, 4vw, 3rem);
}

.client-project-card {
	background: rgba(229, 225, 223, 0.46);
	border-radius: 8px;
	color: inherit;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	transition: background 260ms cubic-bezier(0.14, 1, 0.34, 1);
}

.client-project-card:hover {
	background: rgba(218, 214, 211, 0.72);
}

.client-project-card__media {
	aspect-ratio: 3 / 4;
	background:
		linear-gradient(135deg, rgba(11, 10, 8, 0.16), rgba(11, 10, 8, 0)),
		rgba(229, 225, 223, 0.5);
	display: block;
	overflow: hidden;
	position: relative;
}

.client-project-card img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.client-project-card__document {
	align-items: center;
	color: rgba(11, 10, 8, 0.52);
	display: flex;
	font-size: 0.78rem;
	font-weight: 800;
	inset: 0;
	justify-content: center;
	position: absolute;
	text-transform: uppercase;
}

.client-project-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 1.15rem;
	padding: clamp(1rem, 2.2vw, 1.35rem);
}

.client-project-card__meta,
.client-project-card__action {
	color: rgba(11, 10, 8, 0.54);
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
}

.client-project-card__title {
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 3.2vw, 2.55rem);
	line-height: 0.95;
	margin-bottom: clamp(1.35rem, 3vw, 2.15rem);
}

.client-project-card__excerpt {
	color: rgba(11, 10, 8, 0.62);
	font-size: 0.92rem;
	line-height: 1.35;
}

.client-project-card__action {
	align-self: flex-start;
	background: rgba(229, 225, 223, 0.68);
	border-radius: 999px;
	color: rgba(11, 10, 8, 0.84);
	margin-top: clamp(1rem, 2vw, 1.5rem);
	padding: 0.78rem 1rem;
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	backdrop-filter: blur(18px) saturate(1.2);
}

.client-empty-state {
	background: rgba(218, 214, 211, 0.58);
	border-radius: 8px;
	margin-top: clamp(1.4rem, 4vw, 3rem);
	max-width: 38rem;
	padding: clamp(1.5rem, 4vw, 3rem);
}

.client-empty-state p:last-child {
	color: rgba(11, 10, 8, 0.66);
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3vw, 2.2rem);
	line-height: 1.06;
	margin: 0;
}

.client-download-button {
	background: rgba(11, 10, 8, 0.88);
	border: 1px solid rgba(229, 225, 223, 0.34);
	border-radius: 999px;
	color: #E5E1DF;
	display: inline-flex;
	font-size: 0.76rem;
	font-weight: 800;
	margin-top: 1.5rem;
	padding: 0.95rem 1.25rem;
	text-decoration: none;
	text-transform: uppercase;
	-webkit-backdrop-filter: blur(18px) saturate(1.2);
	backdrop-filter: blur(18px) saturate(1.2);
}

.proposal-private-gallery {
	display: block;
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-top: clamp(2rem, 5vw, 4rem);
}

.proposal-private-gallery__item {
	margin: 0 0 clamp(1.25rem, 3vw, 2.5rem);
}

.proposal-private-gallery__item img {
	border-radius: 8px;
	display: block;
	height: auto;
	width: 100%;
}

.post-password-form {
	border-top: 1px solid rgba(0, 0, 0, 0.28);
	margin-top: 2rem;
	max-width: 36rem;
	padding-top: 1.25rem;
}

.post-password-form p {
	margin: 0 0 1rem;
}

.post-password-form label {
	display: block;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
}

.post-password-form input[type="password"] {
	background: transparent;
	border: 0;
	border-bottom: 1px solid currentColor;
	border-radius: 0;
	color: inherit;
	font: inherit;
	margin-top: 0.75rem;
	padding: 0.7rem 0;
	width: 100%;
}

.post-password-form input[type="submit"],
.portfolio-password-submit {
	align-items: center;
	background: #0b0a08;
	border: 1px solid #0b0a08;
	border-radius: 0;
	color: #E5E1DF;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.78rem;
	font-weight: 800;
	gap: 0.48rem;
	justify-content: center;
	margin-top: 1rem;
	padding: 0.9rem 1.1rem;
	text-transform: uppercase;
}

.portfolio-password-submit__lock {
	display: block;
	fill: none;
	height: 0.88rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 0.88rem;
}

@media (max-width: 760px) {
	body.home {
		overflow: hidden;
	}

	:root {
		--grid-item-width: 100%;
	}

	.column-scroll-page,
	.column-wrap {
		height: 100vh;
		min-height: 0;
		overflow: hidden;
		position: relative;
	}

	.column-scroll-page::after,
	.heading {
		display: none;
	}

	.frame {
		height: auto;
		padding: 1rem;
		position: relative;
	}

	.floating-nav {
		bottom: auto;
		left: 1rem;
		min-width: 0;
		max-width: calc(100vw - 5.95rem);
		overflow-x: auto;
		overscroll-behavior-x: contain;
		top: 1rem;
		transform: none;
		width: calc(100vw - 5.95rem);
	}

	.client-login-pill {
		align-items: center;
		font-size: 0;
		justify-content: center;
		line-height: 0;
		min-width: 3rem;
		min-height: 3rem;
		padding: 0;
		right: 0.75rem;
		top: 1rem;
		width: 3rem;
	}

	.client-login-pill__icon {
		height: 1.16rem;
		margin: 0;
		width: 1.16rem;
	}

	.site-footer {
		align-items: flex-end;
		bottom: 0.75rem;
		font-size: 0.62rem;
		gap: 0.55rem;
		right: 0.75rem;
		width: min(18rem, calc(100vw - 1.5rem));
	}

	.site-footer nav {
		justify-content: flex-end;
		flex-wrap: wrap;
		gap: 0.65rem;
		white-space: normal;
	}

	.floating-nav__link,
	.floating-nav__menu {
		font-size: 0.66rem;
		padding: 0.68rem 0.74rem;
	}

	.client-project-grid {
		grid-template-columns: 1fr;
	}

	.client-area-meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.client-project-card {
		display: grid;
		grid-template-columns: minmax(7rem, 36%) minmax(0, 1fr);
	}

	.client-project-card__media {
		aspect-ratio: auto;
		min-height: 100%;
	}

	.site-side-logo {
		display: none;
	}

	.frame__tagline {
		bottom: 5.2rem;
		left: 1rem;
		right: auto;
		text-align: left;
	}

	.columns {
		display: none;
	}

	.mobile-portfolio-grid {
		display: grid;
		gap: 1rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		height: 100vh;
		overflow: hidden;
		padding: 0 1rem 1rem;
	}

	.mobile-portfolio-column {
		min-height: 100%;
		overflow: hidden;
	}

	.mobile-portfolio-column__track {
		animation: mobile-column-drift 140s linear infinite;
		backface-visibility: hidden;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		transform: translateZ(0);
		will-change: transform;
	}

	.mobile-portfolio-column:nth-child(2) .mobile-portfolio-column__track {
		animation-duration: 156s;
		animation-name: mobile-column-drift-reverse;
		transform: translate3d(0, -50%, 0);
	}

	.mobile-portfolio-column__set {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}

	.mobile-portfolio-item {
		margin: 0;
	}

	.mobile-portfolio-card {
		display: block;
		position: relative;
	}

	.mobile-portfolio-item img,
	.mobile-portfolio-placeholder {
		border-radius: 8px;
		display: block;
		height: auto;
		width: 100%;
	}

	.mobile-portfolio-placeholder {
		aspect-ratio: 3 / 4;
		background:
			linear-gradient(135deg, rgba(12, 11, 9, 0.2), rgba(12, 11, 9, 0)),
			linear-gradient(135deg, #823725, #d7c7a8 48%, #1f5f57);
	}

	body.menu-open .mobile-portfolio-column__track,
	body.project-overlay-open .mobile-portfolio-column__track {
		animation-play-state: paused;
	}

}

@keyframes mobile-column-drift {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(0, -50%, 0);
	}
}

@keyframes mobile-column-drift-reverse {
	from {
		transform: translate3d(0, -50%, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.floating-nav,
	.client-login-pill,
	.portfolio-image-label,
	.portfolio-card-overlay__button,
	.project-panel,
	.client-login-panel,
	.client-area-meta a,
	.client-project-card__action,
	.client-download-button {
		background: rgba(229, 225, 223, 0.94);
	}
}

@media (prefers-reduced-motion: reduce) {
	.column,
	.column__item-img,
	.mobile-portfolio-column__track {
		animation: none;
		transform: none;
		transition: none;
	}
}
