:root {
	--ink: #070707;
	--paper: #efeee9;
	--muted: #8a8a8a;
	--line: #272727;
	--blue: #1787e8;
	--shell: min(1520px, calc(100vw - 64px));
}

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

html {
	background: var(--ink);
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	background: var(--ink);
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

body.nav-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

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

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

button,
input[type="submit"] {
	cursor: pointer;
}

video[data-autoplay] {
	pointer-events: none;
	-webkit-user-select: none;
	user-select: none;
}

video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
}

::selection {
	background: var(--blue);
	color: #fff;
}

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

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

.section-index {
	color: var(--muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .26em;
	text-transform: uppercase;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: fixed;
	left: 24px;
	top: -80px;
	z-index: 200;
	padding: 14px 18px;
	background: #fff;
	color: #000;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.skip-link:focus {
	top: 20px;
}

.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 25px 32px;
	pointer-events: none;
}

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

.header-brand,
.site-nav,
.site-nav-toggle,
.header-cta {
	pointer-events: auto;
}

.header-brand {
	flex: 0 0 auto;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms step-start;
}

.site-header--scrolled .header-brand {
	visibility: hidden;
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms step-end;
}

.header-logo {
	width: 112px;
	height: auto;
}

.site-nav {
	margin-left: auto;
	background: rgba(7, 7, 7, .82);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list a {
	display: flex;
	align-items: center;
	min-height: 46px;
	padding: 0 15px;
	color: #c6c6c6;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .17em;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible,
.site-nav__list .current-menu-item > a {
	color: #fff;
}

.site-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0 11px;
	border: 0;
	background: #080808;
	color: #fff;
}

.site-nav-toggle > span:not(.sr-only) {
	display: block;
	width: 100%;
	height: 1px;
	margin: 6px 0;
	background: currentColor;
	transition: transform 180ms ease;
}

.site-nav-toggle.is-open > span:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.site-nav-toggle.is-open > span:nth-child(2) {
	transform: translateY(-3.5px) rotate(-45deg);
}

.header-cta {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 23px;
	border: 1px solid #fff;
	background: #fff;
	color: #060606;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .24em;
	text-transform: uppercase;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-cta strong {
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	background: var(--blue);
	color: #fff;
	font-size: 9px;
	letter-spacing: 0;
}

.header-cta:hover,
.header-cta:focus-visible {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	background: #090909;
	isolation: isolate;
}

.hero__video,
.hero__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero__video {
	z-index: -3;
	object-fit: cover;
	filter: saturate(.84) contrast(1.08);
	animation: hero-scale 16s ease-out both;
}

.hero__video--mobile {
	display: none;
}

.hero__shade {
	z-index: -2;
	background: rgba(0, 0, 0, .48);
}

.hero__center {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 110px 32px;
}

.hero-logo {
	width: min(650px, 72vw);
	height: auto;
	filter: drop-shadow(0 6px 28px rgba(0, 0, 0, .35));
}

.hero__bottom {
	position: absolute;
	inset: auto 0 0;
	display: flex;
	justify-content: center;
	padding: 0 32px 27px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .3em;
	text-transform: uppercase;
}

.hero__bottom p {
	margin: 0 0 35px;
}

.intro {
	display: grid;
	grid-template-columns: 2.4fr 7.6fr;
	gap: 32px;
	padding-block: clamp(110px, 12vw, 190px);
	border-bottom: 1px solid var(--line);
}

.intro__copy h2,
.services-editorial__head h2,
.dry-hire-teaser h2,
.areas h2,
.contact h2,
.catalog-hero h1,
.inquiry-hero h1,
.archive-page h1,
.error-page h1 {
	margin: 0;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-weight: 900;
	line-height: .89;
	letter-spacing: -.068em;
	text-transform: uppercase;
}

.intro__copy h2 {
	max-width: 1120px;
	font-size: clamp(48px, 7.8vw, 126px);
}

.intro__copy p {
	max-width: 650px;
	margin: 55px 0 0 auto;
	color: #b0b0b0;
	font-size: clamp(17px, 1.55vw, 23px);
	line-height: 1.58;
}

.project-scroll {
	position: relative;
	height: var(--gallery-height);
	background: #030303;
}

.project-scroll__sticky {
	position: sticky;
	top: 0;
	height: 100svh;
	overflow: hidden;
}

.project-scroll__head {
	position: absolute;
	inset: 28px 32px auto;
	z-index: 70;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
}

.project-scroll__counter {
	justify-self: end;
	color: #8b8b8b;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .2em;
}

.project-scroll__stage {
	position: absolute;
	inset: 0;
}

.project-scroll__frame {
	--frame-width: min(70vw, 1080px);
	position: absolute;
	top: 51%;
	left: 50%;
	width: var(--frame-width);
	height: min(68svh, 760px);
	margin: 0;
	overflow: hidden;
	background: #111;
	opacity: 0;
	transform: translate3d(-50%, -50%, 0) translateX(calc(var(--initial-offset) * 74vw));
	will-change: transform, opacity;
	box-shadow: 0 26px 70px rgba(0, 0, 0, .48);
}

.project-scroll__frame:first-child {
	opacity: 1;
}

.project-scroll__frame--portrait {
	--frame-width: min(44vw, 620px);
}

.project-scroll__frame--square {
	--frame-width: min(58vw, 820px);
}

.project-scroll__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.92) contrast(1.04);
}

.project-scroll__progress {
	position: absolute;
	inset: auto 32px 28px;
	z-index: 70;
	height: 1px;
	overflow: hidden;
	background: #282828;
}

.project-scroll__progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	transform: scaleX(0);
	transform-origin: left;
	will-change: transform;
}

.services-editorial {
	padding-block: clamp(120px, 13vw, 200px) 0;
	background: #080808;
}

.services-editorial__head {
	display: grid;
	grid-template-columns: 2.4fr 7.6fr;
	gap: 32px;
	margin-bottom: clamp(90px, 10vw, 150px);
}

.services-editorial__head h2 {
	font-size: clamp(58px, 10vw, 158px);
}

.services-editorial__list {
	border-bottom: 1px solid var(--line);
}

.service-line {
	padding-block: clamp(48px, 6vw, 88px);
	border-top: 1px solid var(--line);
	overflow: hidden;
}

.service-line h3 {
	max-width: 100%;
	margin: 0;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(44px, 7.1vw, 112px);
	font-weight: 900;
	line-height: .84;
	letter-spacing: -.07em;
	overflow-wrap: anywhere;
	text-transform: uppercase;
}

.service-line p {
	max-width: 610px;
	margin: 34px 0 0;
	color: #a8a8a8;
	font-size: clamp(15px, 1.25vw, 19px);
	line-height: 1.55;
}

.dry-hire-teaser {
	padding-block: clamp(110px, 12vw, 185px);
	background: var(--blue);
	color: #fff;
}

.dry-hire-teaser .section-index {
	color: rgba(255, 255, 255, .7);
}

.dry-hire-teaser h2 {
	max-width: 1280px;
	margin-top: 56px;
	font-size: clamp(56px, 9.4vw, 148px);
}

.dry-hire-teaser p {
	max-width: 680px;
	margin: 58px 0 0 auto;
	font-size: clamp(17px, 1.5vw, 22px);
	line-height: 1.6;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	margin-top: 42px;
	padding-block: 12px;
	border-bottom: 1px solid currentColor;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.dry-hire-teaser .text-link {
	margin-left: calc(100% - 680px);
}

.video-wall {
	position: relative;
	display: grid;
	grid-template-columns: 2fr .82fr;
	gap: 2px;
	min-height: 100svh;
	background: #202020;
	overflow: hidden;
}

.video-wall__copy {
	position: absolute;
	inset: 44px 46px auto;
	z-index: 5;
	pointer-events: none;
}

.video-wall__copy h2 {
	max-width: 900px;
	margin: 18px 0 0;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(42px, 6vw, 92px);
	font-weight: 900;
	line-height: .9;
	letter-spacing: -.06em;
	text-transform: uppercase;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}

.video-wall__landscape,
.video-wall__portrait {
	min-height: 100svh;
	overflow: hidden;
	background: #080808;
}

.video-wall video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-wall__landscape video {
	filter: saturate(.95) contrast(1.05);
}

.video-wall__portrait video {
	filter: saturate(.82) contrast(1.1);
}

.areas {
	padding-block: clamp(120px, 13vw, 210px);
	background: var(--paper);
	color: #090909;
}

.areas .section-index {
	color: #666;
}

.areas h2 {
	max-width: 1240px;
	margin-top: 75px;
	font-size: clamp(54px, 9.5vw, 150px);
}

.areas__flow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
	margin: 110px 0 0;
	padding-top: 30px;
	border-top: 1px solid #bdbcb7;
	font-size: clamp(18px, 2.2vw, 34px);
	line-height: 1.45;
}

.areas__flow span:not(:last-child)::after {
	content: "/";
	margin-inline: .55em;
	color: var(--blue);
}

.contact {
	display: flex;
	min-height: 86svh;
	align-items: center;
	padding-block: 120px;
	background: var(--blue);
	color: #fff;
}

.contact .section-index {
	color: rgba(255, 255, 255, .7);
}

.contact h2 {
	max-width: 1180px;
	margin-top: 70px;
	font-size: clamp(56px, 9.7vw, 154px);
}

.contact__email {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-top: 100px;
	padding-block: 25px;
	border-top: 2px solid rgba(255, 255, 255, .48);
	border-bottom: 2px solid rgba(255, 255, 255, .48);
	font-size: clamp(20px, 4vw, 62px);
	letter-spacing: -.04em;
}

.contact__email span {
	font-size: .8em;
}

.contact__links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 36px;
	margin-top: 40px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.contact__links a {
	border-bottom: 1px solid rgba(255, 255, 255, .55);
}

.catalog-hero,
.inquiry-hero {
	padding-block: clamp(180px, 17vw, 280px) clamp(85px, 10vw, 150px);
	background: #080808;
}

.catalog-hero h1,
.inquiry-hero h1 {
	max-width: 1300px;
	margin-top: 50px;
	font-size: clamp(68px, 11vw, 175px);
}

.catalog-hero p,
.inquiry-hero p {
	max-width: 680px;
	margin: 48px 0 0 auto;
	color: #adadad;
	font-size: clamp(17px, 1.5vw, 22px);
	line-height: 1.6;
}

.catalog-page,
.inquiry-page {
	color: #090909;
}

.catalog-page {
	width: 100%;
	padding: clamp(70px, 8vw, 120px) max(32px, calc((100vw - min(1520px, calc(100vw - 64px))) / 2));
	background: var(--paper);
}

.catalog-search {
	display: grid;
	grid-template-columns: 1fr auto;
	max-width: 920px;
	margin: 0;
	border-bottom: 2px solid #0a0a0a;
}

.catalog-search input {
	min-width: 0;
	padding: 20px 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #080808;
	font-size: clamp(24px, 3vw, 45px);
	letter-spacing: -.04em;
}

.catalog-search input::placeholder {
	color: #777;
}

.catalog-search input:focus {
	outline: 0;
}

.catalog-search button,
.primary-button,
.secondary-button,
.product-card__action button,
.product-card__choose,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid #080808;
	border-radius: 0;
	background: #080808;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.catalog-search button:hover,
.primary-button:hover,
.product-card__action button:hover,
.product-card__choose:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.catalog-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 48px;
}

.catalog-categories a {
	padding: 11px 14px;
	border: 1px solid #a8a8a3;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.catalog-categories a:hover,
.catalog-categories a:focus-visible,
.catalog-categories a.is-active {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.catalog-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: clamp(70px, 8vw, 120px);
	padding-bottom: 18px;
	border-bottom: 1px solid #aaa9a4;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.catalog-meta p {
	margin: 0;
}

.catalog-meta a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.catalog-meta strong {
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	background: var(--blue);
	color: #fff;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: 1px;
	background: #aaa9a4;
	border: 1px solid #aaa9a4;
}

.product-card {
	min-width: 0;
	background: var(--paper);
}

.product-card__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #dfe4e8;
	background-image:
		linear-gradient(rgba(23, 135, 232, .2) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23, 135, 232, .2) 1px, transparent 1px),
		radial-gradient(circle at 78% 22%, rgba(23, 135, 232, .3), transparent 36%);
	background-size: 28px 28px, 28px 28px, auto;
	isolation: isolate;
}

.product-card__image::after,
.inquiry-product__image::after {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 27%;
	height: 7px;
	background: var(--blue);
	content: "";
}

.product-card__image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: clamp(24px, 4vw, 58px);
	object-fit: contain;
	filter: drop-shadow(0 22px 18px rgba(0, 0, 0, .23));
	transition: transform 400ms cubic-bezier(.2, .75, .25, 1);
}

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

.product-card__body {
	display: flex;
	min-height: 245px;
	flex-direction: column;
	padding: 26px;
}

.product-card__category {
	min-height: 13px;
	margin: 0 0 14px;
	color: #72726f;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.product-card h2 {
	margin: 0;
	font-size: clamp(23px, 2vw, 34px);
	line-height: 1;
	letter-spacing: -.05em;
}

.product-card h2 a:hover {
	color: var(--blue);
}

.product-card__action {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 8px;
	margin-top: auto;
	padding-top: 30px;
}

.product-card__action label {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 5px;
}

.product-card__action label span {
	color: #666;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.product-card__action input {
	width: 100%;
	min-height: 48px;
	padding: 0 12px;
	border: 1px solid #777;
	border-radius: 0;
	background: transparent;
	color: #090909;
}

.product-card__choose {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}

.product-card__unavailable {
	margin: auto 0 0;
	padding-top: 30px;
	color: #6f6f6c;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.catalog-empty,
.inquiry-empty,
.inquiry-success {
	padding-block: clamp(80px, 10vw, 150px);
}

.catalog-empty h2,
.inquiry-empty h2,
.inquiry-success h2 {
	margin: 0;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(44px, 7vw, 105px);
	line-height: .9;
	letter-spacing: -.06em;
	text-transform: uppercase;
}

.catalog-empty p,
.inquiry-empty p,
.inquiry-success > p {
	max-width: 680px;
	font-size: 18px;
	line-height: 1.6;
}

.catalog-pagination {
	margin-top: 55px;
}

.catalog-pagination ul,
.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 4px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.catalog-pagination a,
.catalog-pagination span,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	border: 1px solid #999;
	background: transparent;
	color: #080808;
	font-size: 11px;
	font-weight: 700;
}

.catalog-pagination .current,
.woocommerce nav.woocommerce-pagination ul li span.current {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
}

.inquiry-dock {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 90;
	display: grid;
	grid-template-columns: auto 28px auto;
	align-items: center;
	gap: 14px;
	min-height: 56px;
	padding: 0 20px;
	background: var(--blue);
	box-shadow: 0 16px 45px rgba(0, 0, 0, .3);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.inquiry-dock strong {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	background: #fff;
	color: #080808;
}

.inquiry-hero {
	background: var(--blue);
}

.inquiry-hero .section-index {
	color: rgba(255, 255, 255, .7);
}

.inquiry-hero p {
	color: rgba(255, 255, 255, .85);
}

.inquiry-page {
	width: 100%;
	padding: clamp(70px, 8vw, 120px) max(32px, calc((100vw - min(1520px, calc(100vw - 64px))) / 2));
	background: var(--paper);
}

.inquiry-layout {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(430px, .75fr);
	gap: clamp(55px, 7vw, 120px);
	align-items: start;
}

.inquiry-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 17px;
	border-bottom: 1px solid #aaa9a4;
}

.inquiry-section-head .section-index {
	color: #444;
}

.inquiry-section-head p {
	margin: 0;
	color: #666;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.inquiry-product {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) 82px;
	gap: 22px;
	align-items: center;
	padding-block: 24px;
	border-bottom: 1px solid #c6c5c0;
}

.inquiry-product__image {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background-color: #dfe4e8;
	background-image:
		linear-gradient(rgba(23, 135, 232, .22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23, 135, 232, .22) 1px, transparent 1px);
	background-size: 16px 16px;
	isolation: isolate;
}

.inquiry-product__image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 12px;
	object-fit: contain;
	filter: drop-shadow(0 8px 7px rgba(0, 0, 0, .22));
}

.inquiry-product__copy p,
.inquiry-product__copy small {
	display: block;
	margin: 0 0 8px;
	color: #6e6e6a;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.inquiry-product__copy h3 {
	margin: 0;
	font-size: clamp(20px, 1.8vw, 29px);
	line-height: 1.05;
	letter-spacing: -.04em;
}

.inquiry-product__qty span {
	display: block;
	margin-bottom: 6px;
	color: #6e6e6a;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.inquiry-product__qty input {
	width: 100%;
	min-height: 46px;
	padding: 0 10px;
	border: 1px solid #777;
	border-radius: 0;
	background: transparent;
	color: #080808;
}

.inquiry-product__remove {
	grid-column: 2 / -1;
	justify-self: end;
	margin-top: -12px;
	color: #666;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.secondary-button {
	margin-top: 22px;
	border-color: #777;
	background: transparent;
	color: #080808;
}

.secondary-button:hover {
	border-color: #080808;
	background: #080808;
	color: #fff;
}

.back-to-catalog {
	display: inline-block;
	margin-top: 28px;
	border-bottom: 1px solid #777;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.inquiry-form {
	padding-top: 27px;
}

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

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

.form-grid label,
.privacy-check {
	min-width: 0;
}

.form-grid label > span {
	display: block;
	margin-bottom: 8px;
	color: #555;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.form-grid input,
.form-grid textarea {
	width: 100%;
	min-height: 52px;
	padding: 13px 0;
	border: 0;
	border-bottom: 1px solid #777;
	border-radius: 0;
	background: transparent;
	color: #080808;
}

.form-grid textarea {
	resize: vertical;
}

.form-grid input:focus,
.form-grid textarea:focus {
	border-color: var(--blue);
	outline: 0;
}

.form-grid__full {
	grid-column: 1 / -1;
}

.privacy-check {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 12px;
	margin-top: 30px;
	font-size: 12px;
	line-height: 1.55;
}

.privacy-check input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--blue);
}

.privacy-check a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.primary-button {
	display: flex;
	width: 100%;
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	margin-top: 28px;
}

.form-note {
	margin: 18px 0 0;
	color: #696966;
	font-size: 11px;
	line-height: 1.55;
}

.grid-notice,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	margin: 0 0 30px;
	padding: 18px 20px;
	border: 0;
	border-left: 5px solid var(--blue);
	border-radius: 0;
	background: #fff;
	color: #080808;
	font-size: 14px;
	line-height: 1.5;
	list-style: none;
}

.grid-notice--error,
.woocommerce-error {
	border-left-color: #c42d2d;
}

.grid-notice--warning {
	border-left-color: #ee9d16;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	display: none;
}

.woocommerce-message .button {
	float: right;
	margin-left: 20px;
}

.site-footer {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 30px;
	align-items: center;
	padding: 34px 32px;
	border-top: 1px solid var(--line);
	color: #777;
	font-size: 8px;
	letter-spacing: .17em;
	text-transform: uppercase;
}

.footer-logo {
	width: 126px;
	height: auto;
}

.site-footer p {
	margin: 0;
}

.site-footer nav {
	display: flex;
	gap: 24px;
	justify-self: end;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: #fff;
}

.legal-page,
.archive-page,
.error-page,
.woocommerce-shell {
	padding-block: clamp(180px, 16vw, 260px) clamp(90px, 10vw, 150px);
}

.legal-page__title {
	display: grid;
	grid-template-columns: 2.4fr 7.6fr;
	gap: 32px;
	padding-bottom: 90px;
}

.legal-page__title > span {
	color: #777;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.legal-page h1 {
	margin: 0;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(48px, 8vw, 124px);
	font-weight: 900;
	line-height: .9;
	letter-spacing: -.065em;
	text-transform: uppercase;
}

.legal-page__content {
	width: min(900px, 100%);
	margin-left: auto;
}

.entry-content > h2,
.entry-content > h3,
.entry-content > p,
.entry-content > ul,
.entry-content > ol {
	padding-inline: 0;
}

.legal-page__content h2 {
	margin: 54px 0 25px;
	padding-top: 34px;
	border-top: 1px solid var(--line);
	font-size: clamp(22px, 2.3vw, 34px);
	letter-spacing: -.035em;
}

.legal-page__content h2:first-child {
	margin-top: 0;
}

.legal-page__content h3 {
	margin: 34px 0 12px;
	font-size: 16px;
}

.legal-page__content p,
.legal-page__content li {
	color: #b7b7b7;
	font-size: 16px;
	line-height: 1.75;
}

.legal-page__content p {
	margin: 0 0 18px;
}

.legal-page__content a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.archive-page__header {
	display: grid;
	grid-template-columns: 2.4fr 7.6fr;
	gap: 32px;
	padding-bottom: 90px;
}

.archive-page h1,
.error-page h1 {
	font-size: clamp(54px, 9vw, 140px);
}

.post-list {
	width: min(1000px, 100%);
	margin-left: auto;
}

.post-card {
	padding-block: 45px;
	border-top: 1px solid var(--line);
}

.post-card h2 {
	margin: 16px 0;
	font-size: clamp(30px, 4vw, 58px);
	letter-spacing: -.05em;
}

.post-card p:not(.section-index) {
	color: #aaa;
	line-height: 1.65;
}

.error-page {
	min-height: 80svh;
}

.error-page > p:not(.section-index) {
	color: #aaa;
	font-size: 18px;
}

.woocommerce-shell {
	color: #fff;
}

.woocommerce .price,
.woocommerce-Price-amount,
.woocommerce .cart_totals,
.woocommerce .wc-proceed-to-checkout,
.woocommerce .checkout-button,
.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
	display: none !important;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
	gap: clamp(40px, 7vw, 110px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none;
	width: auto;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
	background-color: #dfe4e8;
	background-image:
		linear-gradient(rgba(23, 135, 232, .18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23, 135, 232, .18) 1px, transparent 1px),
		radial-gradient(circle at 78% 22%, rgba(23, 135, 232, .28), transparent 38%);
	background-size: 32px 32px, 32px 32px, auto;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
	padding: clamp(25px, 5vw, 70px);
	object-fit: contain;
	filter: drop-shadow(0 24px 20px rgba(0, 0, 0, .24));
}

.woocommerce .star-rating,
.woocommerce-review-link,
.woocommerce #reviews,
.woocommerce-tabs #tab-title-reviews {
	display: none !important;
}

.woocommerce div.product .product_title {
	margin: 0 0 28px;
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(44px, 6vw, 92px);
	line-height: .9;
	letter-spacing: -.065em;
	text-transform: uppercase;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .product_meta {
	color: #aaa;
	font-size: 16px;
	line-height: 1.65;
}

.woocommerce div.product form.cart {
	display: flex;
	gap: 10px;
	margin-top: 36px;
}

.woocommerce .quantity .qty {
	min-height: 48px;
	border: 1px solid #777;
	border-radius: 0;
	background: transparent;
	color: inherit;
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-color: #444;
	border-radius: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	color: #aaa;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: #fff;
}

.woocommerce div.product .related.products {
	grid-column: 1 / -1;
	margin-top: 80px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #fff;
	font-size: 24px;
	letter-spacing: -.04em;
}

@keyframes hero-scale {
	from { transform: scale(1.04); }
	to { transform: scale(1); }
}

@media (max-width: 1100px) {
	.site-nav__list a {
		padding-inline: 10px;
		font-size: 8px;
	}

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

	.inquiry-layout {
		grid-template-columns: 1fr;
	}

	.inquiry-form-wrap {
		padding-top: 30px;
		border-top: 2px solid #090909;
	}
}

@media (max-width: 980px) {
	.site-nav-toggle {
		display: block;
		margin-left: auto;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: -1;
		display: grid;
		place-items: center;
		margin: 0;
		background: rgba(7, 7, 7, .98);
		opacity: 0;
		visibility: hidden;
		transition: opacity 180ms ease, visibility 180ms step-end;
	}

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

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transition: opacity 180ms ease, visibility 180ms step-start;
	}

	.site-nav__list {
		flex-direction: column;
	}

	.site-nav__list a {
		min-height: 56px;
		font-size: 18px;
		letter-spacing: .08em;
	}
}

@media (max-width: 800px) {
	:root {
		--shell: calc(100vw - 36px);
	}

	.admin-bar .site-header,
	.admin-bar .site-nav {
		top: 46px;
	}

	.site-header {
		padding: 18px;
	}

	.header-logo {
		width: 92px;
	}

	.site-nav-toggle {
		width: 41px;
		height: 41px;
	}

	.header-cta {
		min-height: 41px;
		padding-inline: 14px;
		font-size: 8px;
		letter-spacing: .17em;
	}

	.header-cta strong {
		width: 18px;
		height: 18px;
	}

	.hero__video--wide {
		display: none;
	}

	.hero__video--mobile {
		display: block;
	}

	.hero__center {
		padding-inline: 20px;
	}

	.hero-logo {
		width: min(360px, 87vw);
	}

	.hero__bottom {
		padding: 0 18px 24px;
	}

	.hero__bottom p {
		margin-bottom: 44px;
		text-align: center;
	}

	.intro {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.intro__copy h2 {
		font-size: clamp(44px, 14.5vw, 72px);
	}

	.intro__copy p {
		margin: 36px 0 0;
		font-size: 16px;
	}

	.project-scroll {
		height: var(--gallery-height-mobile);
	}

	.project-scroll__head {
		inset: 20px 18px auto;
	}

	.project-scroll__counter {
		grid-column: 2;
	}

	.project-scroll__frame,
	.project-scroll__frame--wide,
	.project-scroll__frame--square {
		--frame-width: 86vw;
		height: 62svh;
	}

	.project-scroll__frame--portrait {
		--frame-width: 74vw;
	}

	.project-scroll__progress {
		inset: auto 18px 20px;
	}

	.services-editorial__head {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.services-editorial__head h2 {
		font-size: clamp(58px, 18vw, 90px);
	}

	.service-line h3 {
		font-size: clamp(34px, 10.2vw, 50px);
		line-height: .88;
	}

	.service-line p {
		margin-top: 25px;
		font-size: 15px;
	}

	.dry-hire-teaser h2 {
		margin-top: 42px;
		font-size: clamp(52px, 15.5vw, 80px);
	}

	.dry-hire-teaser p {
		margin: 42px 0 0;
		font-size: 16px;
	}

	.dry-hire-teaser .text-link {
		margin-left: 0;
	}

	.video-wall {
		grid-template-columns: 1fr;
		min-height: 145svh;
	}

	.video-wall__copy {
		inset: 30px 18px auto;
	}

	.video-wall__copy h2 {
		font-size: clamp(38px, 12vw, 62px);
	}

	.video-wall__landscape {
		min-height: 65svh;
	}

	.video-wall__portrait {
		min-height: 80svh;
	}

	.areas h2 {
		margin-top: 45px;
		font-size: clamp(50px, 15vw, 76px);
	}

	.areas__flow {
		margin-top: 70px;
	}

	.contact {
		min-height: 78svh;
	}

	.contact h2 {
		margin-top: 45px;
		font-size: clamp(52px, 15vw, 78px);
	}

	.contact__email {
		align-items: flex-end;
		margin-top: 70px;
		font-size: clamp(19px, 6.3vw, 32px);
		overflow-wrap: anywhere;
	}

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

	.catalog-hero,
	.inquiry-hero {
		padding-block: 155px 80px;
	}

	.catalog-hero h1,
	.inquiry-hero h1 {
		margin-top: 38px;
		font-size: clamp(58px, 18vw, 90px);
	}

	.catalog-hero p,
	.inquiry-hero p {
		margin: 36px 0 0;
		font-size: 16px;
	}

	.catalog-page,
	.inquiry-page {
		padding: 70px 18px;
	}

	.catalog-search {
		grid-template-columns: 1fr;
		gap: 10px;
		border: 0;
	}

	.catalog-search input {
		padding: 16px 0;
		border-bottom: 2px solid #080808;
		font-size: 27px;
	}

	.catalog-search button {
		justify-self: start;
	}

	.catalog-meta {
		align-items: flex-end;
	}

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

	.product-card__body {
		min-height: 225px;
	}

	.inquiry-dock {
		right: 12px;
		bottom: 12px;
	}

	.inquiry-product {
		grid-template-columns: 88px minmax(0, 1fr) 72px;
		gap: 14px;
	}

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

	.form-grid__full {
		grid-column: auto;
	}

	.site-footer {
		grid-template-columns: 1fr;
		gap: 22px;
		align-items: start;
		padding: 34px 18px;
	}

	.site-footer nav {
		justify-self: start;
	}

	.legal-page__title,
	.archive-page__header {
		grid-template-columns: 1fr;
		gap: 35px;
		padding-bottom: 65px;
	}

	.legal-page h1 {
		font-size: clamp(46px, 14vw, 72px);
		overflow-wrap: anywhere;
	}

	.legal-page__content {
		margin-left: 0;
	}

	.legal-page__content p,
	.legal-page__content li {
		font-size: 15px;
	}

	.woocommerce div.product {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.header-brand {
		position: absolute;
		left: 18px;
		top: 20px;
	}

	.site-header--scrolled .header-brand {
		display: none;
	}

	.site-nav-toggle {
		margin-left: 0;
	}

	.site-header {
		justify-content: flex-end;
	}

	.header-cta span {
		white-space: nowrap;
	}

	.product-card__action {
		grid-template-columns: 76px 1fr;
	}

	.product-card__action button {
		padding-inline: 12px;
		font-size: 9px;
	}

	.inquiry-product {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.inquiry-product__qty {
		grid-column: 2;
		width: 82px;
	}

	.inquiry-product__remove {
		grid-column: 2;
		justify-self: start;
		margin-top: 0;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.project-scroll {
		height: auto;
		padding: 100px 18px;
	}

	.project-scroll__sticky {
		position: static;
		height: auto;
		overflow: visible;
	}

	.project-scroll__head {
		position: static;
		margin-bottom: 42px;
	}

	.project-scroll__stage {
		position: static;
		display: grid;
		gap: 14px;
	}

	.project-scroll__frame,
	.project-scroll__frame--portrait,
	.project-scroll__frame--wide,
	.project-scroll__frame--square {
		position: static;
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
		opacity: 1 !important;
		transform: none !important;
	}

	.project-scroll__progress {
		display: none;
	}
}
