@font-face {
	font-family: "EB Garamond";
	font-style: normal;
	font-weight: 400 500;
	font-display: swap;
	src: url("../fonts/eb-garamond-normal-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "EB Garamond";
	font-style: italic;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/eb-garamond-italic-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 900;
	font-display: swap;
	src: url("../fonts/inter-normal-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Inter";
	font-style: italic;
	font-weight: 900;
	font-display: swap;
	src: url("../fonts/inter-italic-900-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Inter Text";
	font-style: normal;
	font-weight: 400 900;
	font-display: swap;
	src: url("../fonts/inter-normal-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--sq-cream: #fffceb;
	--sq-paper: #f8f7f2;
	--sq-black: #030303;
	--sq-muted: rgba(3, 3, 3, 0.28);
	--sq-purple: #8f00b8;
	--sq-purple-muted: #904c9c;
	--sq-green: #56ff38;
	--sq-gray: #b8b8b8;
	--sq-serif: "EB Garamond", Garamond, serif;
	--sq-sans: "Inter", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

html.site-surface-home,
body.home {
	background: #fff;
}

html.site-surface-home,
html.site-surface-home body {
	height: 100%;
	overflow: hidden;
	overscroll-behavior: none;
}

html.site-surface-case,
body.single-case_study {
	background: #fff;
}

html.site-surface-project,
body.single-case_project {
	background: #d9d9d9;
}

html.site-surface-article,
body.single-magazine_article {
	background: #fff;
}

html.site-surface-active-detail,
html.site-surface-active-detail body {
	background: #fffceb;
}

body {
	min-height: 100%;
	margin: 0;
	color: var(--sq-black);
	background: var(--sq-paper);
	font-family: var(--sq-serif);
	overflow-x: hidden;
}

html.site-surface-active-case,
html.site-surface-active-article,
body.has-case-overlay:not(.has-project-overlay),
body.has-article-overlay {
	background: #fff;
}

html.site-surface-active-project,
body.has-project-overlay {
	background: #d9d9d9;
}

.case-overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #fff;
	transform: translateX(100%);
	transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}

.case-overlay.is-open {
	transform: translateX(0);
}

.case-overlay.is-settled {
	transform: none;
	will-change: auto;
}

.case-overlay .single-siliqoon--case {
	min-height: 100vh;
	min-height: 100dvh;
}

body > .is-under-siliqoon-overlay :is(.case-topbar, .project-topbar, .article-topbar) {
	visibility: hidden !important;
	pointer-events: none !important;
}

.project-overlay {
	position: fixed;
	inset: 0;
	z-index: 100;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #d9d9d9;
	transform: translateX(100%);
	transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}

.project-overlay.is-open {
	transform: translateX(0);
}

.project-overlay.is-settled {
	transform: none;
	will-change: auto;
}

.project-overlay .single-siliqoon--project {
	min-height: 100vh;
	min-height: 100dvh;
}

.article-overlay {
	position: fixed;
	inset: 0;
	z-index: 90;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #fff;
	transform: translateY(100%);
	transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}

.siliqoon-overlay-scroll {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
}

.article-overlay.is-open {
	transform: translateY(0);
}

.article-overlay.is-settled {
	transform: translateY(0);
	will-change: auto;
}

.article-overlay .single-siliqoon--article {
	min-height: 100vh;
	min-height: 100dvh;
}

.case-overlay .siliqoon-overlay-scroll > .single-siliqoon--case,
.project-overlay .siliqoon-overlay-scroll > .single-siliqoon--project,
.article-overlay .siliqoon-overlay-scroll > .single-siliqoon--article {
	position: relative;
	opacity: 0;
	transition: opacity 220ms ease;
}

.case-overlay.is-content-ready .siliqoon-overlay-scroll > .single-siliqoon--case,
.project-overlay.is-content-ready .siliqoon-overlay-scroll > .single-siliqoon--project,
.article-overlay.is-content-ready .siliqoon-overlay-scroll > .single-siliqoon--article {
	opacity: 1;
}

.overlay-loading-preview {
	--overlay-preview-color: #000;
	position: absolute;
	inset: 0;
	z-index: 1;
	min-height: 100%;
	overflow: hidden;
	color: var(--overlay-preview-color);
	pointer-events: none;
	opacity: 1;
	transition: opacity 220ms ease;
}

.overlay-loading-preview--case {
	background: #fff;
}

.overlay-loading-preview--project {
	background: #d9d9d9;
}

.overlay-loading-preview--article {
	background: #fff;
	font-family: var(--sq-sans);
	text-transform: uppercase;
}

.is-content-ready > .overlay-loading-preview {
	opacity: 0;
}

.overlay-loading-preview__image {
	position: absolute;
	inset: -3%;
	width: 106%;
	height: 106%;
	object-fit: cover;
	filter: blur(14px);
	opacity: 0;
	transition: opacity 260ms ease;
}

.overlay-loading-preview__image.is-ready {
	opacity: 0.72;
}

.js img.siliqoon-progressive-image {
	opacity: 0.35;
	filter: blur(10px);
	transition: opacity 420ms ease, filter 520ms ease;
}

.js img.siliqoon-progressive-image.is-progressive-preview {
	opacity: 1;
	filter: blur(10px);
}

.js img.siliqoon-progressive-image.is-progressive-ready {
	opacity: 1;
	filter: blur(0);
}

.js .signal-card__image.siliqoon-progressive-image,
.js .signal-card__image.siliqoon-progressive-image.is-progressive-preview {
	filter: saturate(0.75) contrast(1.05) blur(10px);
}

.js .signal-card__image.siliqoon-progressive-image.is-progressive-ready {
	filter: saturate(0.75) contrast(1.05);
}

.overlay-loading-preview__topbar {
	position: absolute;
	top: 37px;
	left: 40px;
	right: 40px;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr minmax(0, 1fr) 1fr;
	align-items: end;
	font-size: 18px;
	line-height: 1;
}

.overlay-loading-preview__brand {
	justify-self: start;
}

.overlay-loading-preview__current {
	max-width: 100%;
	overflow: hidden;
	font-style: italic;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.overlay-loading-preview__close {
	justify-self: end;
}

.overlay-loading-preview__title {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: min(1120px, calc(100% - 80px));
	margin: 0;
	font-size: 60px;
	line-height: 0.92;
	text-align: center;
	transform: translate(-50%, -50%);
	filter: blur(3px);
	opacity: 0.42;
}

.overlay-loading-preview--article .overlay-loading-preview__title {
	font-weight: 900;
}

@media (max-width: 900px) {
	.overlay-loading-preview__topbar {
		top: 22px;
		left: 20px;
		right: 20px;
		font-size: 16px;
	}

	.overlay-loading-preview__title {
		width: calc(100% - 40px);
		font-size: 28px;
		line-height: 0.93;
	}

	.overlay-loading-preview__image {
		filter: blur(11px);
	}
}

button,
a {
	color: inherit;
}

button {
	font: inherit;
}

.siliqoon-home {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: 100vw;
	height: 100dvh;
	overflow: hidden;
	background: #fff;
}

.split-panel {
	position: relative;
	min-width: 0;
	height: 100dvh;
	overflow: hidden;
}

.split-panel--agency {
	background: #fff;
}

.split-panel--signals {
	background: var(--sq-gray);
}

.panel-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: auto;
	display: grid;
	align-items: center;
	width: 100%;
	height: 92px;
	padding: 0 clamp(22px, 4vw, 80px);
	pointer-events: none;
}

.panel-header button,
.panel-header a {
	position: relative;
	z-index: 20;
	pointer-events: auto;
}

.is-left-menu-open .brand-button,
.is-signals-menu-open .panel-header--signals button {
	z-index: 32;
}

.panel-header--agency {
	grid-template-columns: 1fr auto 1fr;
}

.panel-header--signals {
	grid-template-columns: 1fr auto 1fr;
	font-family: var(--sq-sans);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--sq-purple);
}

.brand-button,
.signals-logo-button,
.home-link,
.close-signals,
.agency-menu button {
	border: 0;
	background: transparent;
	cursor: pointer;
}

.brand-button {
	grid-column: 2;
	padding: 0;
	font-family: var(--sq-serif);
	font-size: 26px;
	line-height: 29px;
}

.signals-logo-button {
	grid-column: 2;
	width: 118px;
	padding: 0;
	mix-blend-mode: exclusion;
}

.signals-logo-button .signal-logo {
	filter: url("#signal-logo-acid");
	mix-blend-mode: normal !important;
}

.is-signals-menu-open .signals-logo-button {
	mix-blend-mode: normal;
}

.is-signals-menu-open .signals-logo-button .signal-logo {
	filter: none;
}

.home-link {
	justify-self: start;
	padding: 0;
}

.close-signals {
	justify-self: end;
	padding: 0;
}

.home-link,
.close-signals {
	opacity: 1;
	pointer-events: auto;
}

.signal-logo {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.agency-scroll,
.signals-scroll {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.agency-scroll::-webkit-scrollbar,
.signals-scroll::-webkit-scrollbar {
	display: none;
}

.agency-scroll {
	padding: 95px clamp(28px, 6vw, 96px) 48px;
	background: #fff;
	overscroll-behavior-y: none;
	scroll-padding-top: 120px;
}

.agency-section {
	position: relative;
	display: flex;
	justify-content: center;
	min-height: 77vh;
	padding: 24vh 0 12vh;
}

.agency-section__body {
	width: min(100%, 620px);
	font-size: 26px;
	line-height: 29px;
	text-align: justify;
}

.agency-section__body header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	margin-bottom: 4px;
}

.agency-section__body h2 {
	grid-column: 1 / -1;
	grid-row: 1;
	margin: 0;
	font-size: inherit;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}

.agency-section__body header span {
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	font-size: 26px;
	line-height: 29px;
}

.agency-copy p {
	margin: 0 0 0.9em;
	text-indent: 1em;
}

.typographic-superscript,
.agency-copy sup,
.agency-note sup {
	color: inherit;
	font-family: inherit;
	font-size: 0.58em;
	font-style: inherit;
	font-weight: inherit;
	line-height: 0;
	vertical-align: super;
}

.agency-copy__line-indent {
	display: inline-block;
	width: 1em;
}

.agency-note {
	margin: 14vh 0 0;
	font-size: 18px;
	line-height: 21px;
	text-align: left;
}

.agency-note p {
	margin: 0;
}

.agency-note a {
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	margin: 0 -0.22em -0.12em;
	padding: 0 0.22em 0.12em;
	color: inherit;
	background-image: var(--agency-note-underline-image, url('../img/agency-underline-1.png'));
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% 0.62em;
	text-decoration: none;
}

.agency-note a:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.18em;
}

.home-case-list {
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.home-case-list li {
	margin: 7px 0;
}

.home-case-list a {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	column-gap: 8px;
	color: inherit;
	text-decoration: none;
}

.home-case-list span {
	font-size: 26px;
	line-height: 29px;
}

.home-case-list strong {
	position: relative;
	display: inline-block;
	z-index: 0;
	width: fit-content;
	font-size: 26px;
	font-style: italic;
	font-weight: 400;
	line-height: 29px;
}

.home-case-list strong::after {
	position: absolute;
	right: -0.42em;
	bottom: -0.4em;
	left: -0.42em;
	z-index: 0;
	height: 0.8em;
	background-image: var(--agency-underline-image, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: '';
	pointer-events: none;
}

.home-case-list__title,
.home-case-list__ellipsis {
	position: relative;
	z-index: 1;
}

.home-case-list__ellipsis {
	display: inline-block;
	width: 1.6em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
}

.home-case-list em {
	grid-column: 2;
	display: block;
	overflow: hidden;
	font-size: 18px;
	font-style: normal;
	line-height: 21px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.siliqoon-inline-link {
	display: inline;
	padding: 0 3px;
	border: 0;
	background: var(--sq-green);
	color: var(--sq-black);
	cursor: pointer;
	font: inherit;
	line-height: 0.95;
	text-decoration: none;
}

.agency-overlay-trigger {
	position: relative;
	display: inline-block;
	z-index: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-style: inherit;
	line-height: inherit;
	text-align: inherit;
	white-space: nowrap;
}

.agency-overlay-trigger span {
	position: relative;
	z-index: 1;
}

.agency-overlay-trigger__ellipsis {
	display: inline-block;
	width: 1.6em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
}

.agency-overlay-trigger::after {
	position: absolute;
	right: -0.55em;
	bottom: -0.4em;
	left: -0.55em;
	z-index: 0;
	height: 0.8em;
	background-image: var(--agency-underline-image, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: '';
	pointer-events: none;
}

.agency-overlay-trigger:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.18em;
}

.siliqoon-pencil-link {
	position: relative;
	display: inline-block;
	z-index: 0;
	color: inherit;
	line-height: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.siliqoon-pencil-link > span {
	position: relative;
	z-index: 1;
}

.siliqoon-pencil-link__ellipsis {
	display: inline-block;
	width: 1.6em;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
}

.siliqoon-pencil-link::after {
	position: absolute;
	right: -0.42em;
	bottom: -0.4em;
	left: -0.42em;
	z-index: 0;
	height: 0.8em;
	background-image: var(--agency-underline-image, none);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	content: '';
	pointer-events: none;
}

.siliqoon-pencil-link:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.18em;
}

.agency-menu {
	position: absolute;
	inset: 0;
	z-index: 30;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	grid-template-rows: 92px 1fr;
	align-items: start;
	padding: 0 clamp(28px, 6vw, 96px) 48px;
	background: rgba(255, 252, 235, 0.94);
	transform: translateX(-102%);
	transition: transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
}

.is-left-menu-open .agency-menu {
	transform: translateX(0);
}

.agency-menu > a,
.agency-menu > button {
	align-self: center;
	border: 0;
	background: transparent;
	font-size: 19px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

.agency-menu > a {
	justify-self: start;
}

.agency-menu > button {
	grid-column: 3;
	justify-self: end;
}

.agency-menu ol {
	grid-column: 1 / -1;
	align-self: center;
	justify-self: end;
	margin: 0 8vw 0 0;
	padding: 0;
	list-style: none;
	counter-reset: agency;
}

.agency-menu li {
	counter-increment: agency;
	display: grid;
	grid-template-columns: 58px auto;
	align-items: center;
	gap: min(12vw, 160px);
	margin: 16px 0;
}

.agency-menu li::before {
	content: counter(agency) ".";
	font-size: 30px;
}

.agency-menu li a {
	position: relative;
	display: inline-block;
	justify-self: start;
	width: max-content;
	font-size: clamp(30px, 3vw, 47px);
	font-style: italic;
	font-weight: 400;
	line-height: 0.96;
	text-decoration: none;
}

.agency-menu__label {
	position: relative;
	z-index: 1;
}

.agency-menu__underline {
	position: absolute;
	right: -0.08em;
	bottom: -0.62em;
	z-index: 0;
	display: block;
	width: calc(100% + var(--agency-underline-overhang, 0.7em));
	max-width: none;
	height: auto;
	transform: rotate(var(--agency-underline-rotation, 0deg));
	transform-origin: center;
	pointer-events: none;
	user-select: none;
}

.agency-menu li:nth-child(1) {
	--agency-underline-overhang: 0.72em;
	--agency-underline-rotation: 5deg;
}

.agency-menu li:nth-child(2) {
	--agency-underline-bottom: -0.6em;
	--agency-underline-overhang: 0.55em;
}

.agency-menu li:nth-child(3) {
	--agency-underline-overhang: 1.15em;
}

.agency-menu li:nth-child(4) {
	--agency-underline-overhang: 0.68em;
}

@keyframes siliqoon-pencil-underline-draw {
	0%,
	8% {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}

	100% {
		-webkit-clip-path: inset(0);
		clip-path: inset(0);
	}
}

@keyframes siliqoon-pencil-background-draw {
	0%,
	8% {
		background-size: 0% 0.62em;
	}

	100% {
		background-size: 100% 0.62em;
	}
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
	.home-case-list a:is(:hover, :focus-visible) strong::after,
	.agency-overlay-trigger:is(:hover, :focus-visible)::after,
	.siliqoon-pencil-link:is(:hover, :focus-visible)::after,
	.agency-menu li a:is(:hover, :focus-visible) .agency-menu__underline {
		animation: siliqoon-pencil-underline-draw 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
	}

	.agency-note a:is(:hover, :focus-visible) {
		background-position: left bottom;
		animation: siliqoon-pencil-background-draw 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
	}
}

.signals-scroll {
	padding-top: 0;
	background: var(--sq-gray);
}

.signals-archive {
	min-height: 100vh;
	padding-top: 86px;
	background: #111;
}

.signals-archive__header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 86px;
	padding: 18px 40px;
	background: rgba(179, 179, 179, 0.92);
	font-family: var(--sq-sans);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.signals-archive__header a {
	text-decoration: none;
}

.signals-archive__header > span {
	justify-self: end;
}

.signals-archive__logo {
	width: 120px;
	height: 43px;
	mix-blend-mode: exclusion;
}

.signals-archive__logo .signal-logo {
	display: block;
	width: 100%;
	height: 100%;
}

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

.signals-archive .navigation.pagination {
	padding: 48px 40px;
	background: #111;
	color: #fff;
	font-family: var(--sq-sans);
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
}

.signals-archive .nav-links {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.signals-archive .page-numbers {
	color: inherit;
}

.signal-card {
	position: relative;
	isolation: isolate;
	display: block;
	align-self: start;
	width: 100%;
	min-height: 0;
	overflow: hidden;
	background: #8c8c8c;
	aspect-ratio: var(--signal-card-ratio, 4 / 3);
	text-decoration: none;
}

.signal-card[hidden] {
	display: none;
}

.signal-card__image,
.signal-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	filter: saturate(0.75) contrast(1.05);
}

.signal-card__placeholder {
	background:
		linear-gradient(rgba(185, 185, 185, 0.28), rgba(185, 185, 185, 0.28)),
		repeating-linear-gradient(12deg, #767676 0 18px, #a9a9a9 18px 32px);
}

.signal-card__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 0 9px 8px;
	color: var(--signal-card-text, #000);
	font-family: var(--sq-sans);
	font-weight: 900;
	text-transform: uppercase;
}

.signal-card__caption span,
.signal-card__caption h2,
.signal-card__subtitle {
	position: relative;
	display: block;
	margin: 0;
	letter-spacing: 0;
}

.signal-card__caption span {
	font-size: 10px;
	line-height: 14px;
}

.signal-card__caption h2,
.signal-card__subtitle {
	font-size: 24px;
	font-weight: 900;
	line-height: 22px;
}

.signal-card__subtitle {
	font-style: italic;
}

.signals-text-filters {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.signal-card__caption span::before,
.signal-card__caption h2::before,
.signal-card__subtitle::before {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	color: var(--sq-green);
	mix-blend-mode: exclusion !important;
	pointer-events: none;
}

.signal-card__caption span::before {
	content: none;
}

.signal-card__caption h2::before,
.signal-card__subtitle::before {
	filter: url("#signal-title-outline");
}

.signals-menu {
	position: absolute;
	inset: 0;
	z-index: 28;
	display: grid;
	place-items: center;
	background: rgba(179, 179, 179, 0.92);
	backdrop-filter: grayscale(1);
	transform: translateY(102%);
	transition: transform 440ms cubic-bezier(0.76, 0, 0.24, 1);
}

.is-signals-menu-open .signals-menu {
	transform: translateY(0);
}

.signals-menu__controls {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 92px;
	padding: 0 clamp(22px, 4vw, 80px);
	color: var(--sq-purple);
	font-family: var(--sq-sans);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.signals-menu__controls .close-signals {
	grid-column: 3;
}

.signals-menu__controls .home-link,
.signals-menu__controls .close-signals {
	text-transform: uppercase;
}

.signals-menu__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 76%;
	gap: 8px 18px;
}

.signals-menu__filters button {
	position: relative;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--sq-purple);
	cursor: pointer;
	font-family: var(--sq-sans);
	font-size: clamp(22px, 2.25vw, 38px);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.signals-menu__filters button.is-active:not([data-filter="all"])::after {
	content: "";
	position: static;
	display: inline-block;
	width: 0.845em;
	width: 1.158cap;
	height: 0.73em;
	height: 1cap;
	margin-left: 0.2em;
	background: url('../img/signal-filter-close.svg') center / contain no-repeat;
	flex: 0 0 auto;
}

.signals-menu__filters button.is-active:not([data-filter="all"]) {
	display: inline-flex;
	align-items: center;
}

.language-switcher {
	position: sticky;
	bottom: 0;
	display: flex;
	justify-content: center;
	padding: 20px 0 0;
	font-size: 18px;
	line-height: 1;
}


.language-switcher .wpml-ls {
	display: none;
}

.language-switcher a {
	color: inherit;
	text-decoration: none;
}

.language-switcher a.is-active {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.12em;
}

.language-switcher--agency-menu {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	padding: 0;
}

.language-switcher--signals {
	position: absolute;
	right: 0;
	bottom: 22px;
	left: 0;
	color: var(--sq-purple);
	font-family: var(--sq-sans);
	font-weight: 900;
	text-transform: uppercase;
}

#wpml_credit_footer,
.wpml-ls-statics-footer {
	display: none !important;
}

.detail-drawer {
	position: absolute;
	inset: 0 0 0 auto;
	z-index: 40;
	width: 50vw;
	height: 100dvh;
	overflow: hidden;
	background: rgba(255, 252, 235, 0.96);
	overscroll-behavior: contain;
	pointer-events: none;
	transform: translateX(104%);
	transition: transform 420ms cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}

.is-detail-open .detail-drawer {
	pointer-events: auto;
	transform: translateX(0);
}

.is-detail-open .detail-drawer.is-settled {
	transform: none;
	transition: none;
	will-change: auto;
}

.detail-drawer__controls {
	position: absolute;
	top: 34px;
	right: 0;
	left: auto;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	width: 50vw;
	height: 21px;
	padding: 0 clamp(28px, 5vw, 78px);
	color: #fff;
	mix-blend-mode: exclusion;
	pointer-events: none;
}

.detail-drawer__identity {
	position: relative;
	display: flex;
	min-width: 0;
	gap: 0.65em;
	color: #fff;
	font-size: 18px;
	line-height: 21px;
}

.detail-drawer__identity h2,
.detail-drawer__identity span {
	margin: 0;
	font: inherit;
}

.detail-drawer__identity h2 {
	font-style: italic;
}

.detail-drawer__close {
	position: relative;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	line-height: 21px;
	pointer-events: auto;
}

.detail-drawer__inner {
	height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	width: 100%;
	padding: 120px 0 90px;
	-webkit-overflow-scrolling: touch;
}

.agency-overlay__block {
	margin: 0 auto clamp(88px, 10vh, 150px);
}

.agency-overlay__block:last-child {
	margin-bottom: 0;
}

.agency-overlay__block--image img {
	display: block;
	width: 100%;
	height: auto;
	mix-blend-mode: multiply;
}

.agency-overlay__block--image {
	margin-right: 14px;
	margin-left: 40px;
}

.agency-overlay__block--image figcaption {
	width: min(72%, 560px);
	margin: 14px auto 0;
	font-size: 13px;
	line-height: 15px;
}

.agency-overlay__block--image figcaption p {
	margin: 0;
}

.agency-overlay__block--text {
	width: min(78%, 680px);
	font-size: 20px;
	line-height: 24px;
}

.agency-overlay__block--text-small {
	width: min(70%, 600px);
	font-size: 20px;
	line-height: 24px;
}

@media (min-width: 901px) {
	.agency-overlay__block--text:has(+ .agency-overlay__block--text-small),
	.agency-overlay__block--text-small:has(+ .agency-overlay__block--text) {
		margin-bottom: 20px;
	}
}

.agency-overlay__block--cta {
	width: min(78%, 680px);
	font-size: 20px;
	line-height: 24px;
	text-align: left;
}

.agency-overlay__block--cta p {
	margin: 0;
	text-indent: 0;
}

.agency-overlay__block--text > *:first-child,
.agency-overlay__block--text-small > *:first-child {
	margin-top: 0;
}

.agency-overlay__block--text > *:last-child,
.agency-overlay__block--text-small > *:last-child {
	margin-bottom: 0;
}

.agency-overlay__block--text a,
.agency-overlay__block--text-small a {
	background: var(--sq-green);
	text-decoration: none;
}

.single-siliqoon {
	min-height: 100dvh;
	padding: 42px clamp(24px, 8vw, 120px);
	background: var(--sq-paper);
	font-family: var(--sq-serif);
}

.split-panel--agency :is(em, i),
.detail-drawer :is(em, i),
.single-siliqoon--case :is(em, i),
.single-siliqoon--project :is(em, i),
.end-cases :is(em, i) {
	font-weight: 400;
}

.single-siliqoon__content {
	max-width: 960px;
	margin: 0 auto;
	font-size: clamp(20px, 1.8vw, 30px);
	line-height: 1.08;
}

.single-siliqoon--case {
	min-height: 100vh;
	min-height: 100dvh;
	padding: 0;
	background: #fff;
}

.single-siliqoon--case .single-siliqoon__content {
	max-width: none;
	font-size: 26px;
	line-height: 29px;
}

.single-siliqoon__content h1 {
	margin: 22vh 0 32px;
	font-size: clamp(42px, 7vw, 110px);
	font-weight: 500;
	line-height: 0.9;
}

.case-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 0;
	padding: 110px clamp(24px, 5vw, 84px) 32px;
}

.single-siliqoon--case .case-hero__title {
	display: block;
	max-width: 806px;
	margin: 240px 0 0;
	font-size: 26px;
	font-weight: 500;
	line-height: 29px;
	text-align: center;
	text-transform: uppercase;
}

.case-hero__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--sq-sans);
	font-size: 14px;
	line-height: 14px;
}

.case-hero__tags li {
	padding: 4px 7px 3px;
	border: 1px solid var(--sq-black);
}

.case-topbar {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 180;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: start;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	margin-bottom: -100vh;
	margin-bottom: -100dvh;
	padding: 37px 41px 0;
	color: #fff !important;
	font-family: var(--sq-serif);
	font-size: 26px;
	font-weight: 400;
	line-height: 29px;
	mix-blend-mode: exclusion !important;
	isolation: auto;
	pointer-events: none;
}

.case-topbar a {
	color: #fff !important;
	text-decoration: none;
	pointer-events: auto;
}

.case-topbar * {
	color: #fff !important;
	mix-blend-mode: inherit;
}

.case-topbar__brand {
	justify-self: start;
}

.case-topbar__current {
	display: flex;
	gap: 13px;
	justify-self: center;
	margin: 8px 0 0;
	font-size: 18px;
	font-style: italic;
	line-height: 21px;
	white-space: nowrap;
}

.case-topbar__close {
	justify-self: end;
	margin-top: 8px;
	font-size: 18px;
	line-height: 21px;
}

.case-topbar__section {
	position: absolute;
	bottom: 37px;
	left: 41px;
	display: block;
	font-size: 26px;
	line-height: 29px;
}

.single-siliqoon__content img {
	width: 100%;
	height: auto;
}

.single-siliqoon__intro,
.single-siliqoon__meta {
	margin: 0 0 32px;
	font-size: clamp(24px, 2.4vw, 42px);
	line-height: 1;
}

.single-siliqoon__meta {
	font-style: italic;
}

.single-siliqoon__back {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

.single-siliqoon__blocks,
.single-siliqoon__gallery,
.related-projects {
	margin-top: 64px;
}

.single-siliqoon--case .single-siliqoon__intro,
.single-siliqoon--case > .single-siliqoon__content > p,
.single-siliqoon--case .single-siliqoon__content > .wp-block-group {
	max-width: 806px;
	margin: 96px auto;
	padding-inline: 24px;
	font-size: 26px;
	line-height: 29px;
	text-align: justify;
}

.single-siliqoon--case .case-hero .single-siliqoon__intro {
	width: 100%;
	margin: 240px auto 0;
	padding-inline: 0;
	font-size: 26px;
	line-height: 29px;
	text-align: center;
}

.single-siliqoon--case .case-hero .single-siliqoon__intro > :first-child {
	margin-top: 0;
}

.single-siliqoon--case .case-hero .single-siliqoon__intro > :last-child {
	margin-bottom: 0;
}

.single-siliqoon__block {
	margin: 0 0 48px;
}

.single-siliqoon__block figcaption {
	margin-top: 8px;
	font-size: 16px;
	line-height: 1.1;
}

.single-siliqoon__gallery {
	display: grid;
	gap: 18px;
}

.related-projects h2 {
	margin: 0 0 18px;
	font-size: clamp(28px, 3vw, 52px);
	font-style: italic;
	font-weight: 400;
	line-height: 1;
}

.related-projects ol {
	margin: 0;
	padding: 0;
	list-style-position: inside;
}

.related-projects a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.12em;
}

.case-block {
	position: relative;
	width: 100%;
	margin: 0;
}

.case-block img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.case-block figcaption,
.case-caption {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	mix-blend-mode: exclusion;
}

.case-block--editorial-text {
	max-width: 806px;
	margin: 160px auto;
	padding-inline: 24px;
	isolation: isolate;
	text-align: justify;
}

.single-siliqoon--case .single-siliqoon__intro,
.single-siliqoon--case .case-block--project-spotlight > div {
	isolation: isolate;
}

.single-siliqoon--case .siliqoon-inline-link {
	position: relative;
	display: inline-block;
	background: transparent;
}

.single-siliqoon--case .siliqoon-inline-link::before {
	position: absolute;
	inset: -0.1em 0;
	z-index: -1;
	background: var(--sq-green);
	content: '';
	pointer-events: none;
}

.case-block--editorial-text header {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	margin-bottom: 0;
}

.case-block--editorial-text h2 {
	margin: 0;
	font-size: 26px;
	font-style: italic;
	font-weight: 400;
	line-height: 29px;
	text-align: center;
}

.case-block--editorial-text header span {
	font-size: 26px;
	line-height: 29px;
	text-align: right;
}

.case-block--editorial-text p {
	margin: 0;
}

.case-block--full-bleed {
	height: auto;
	min-height: 0;
	max-height: none;
	overflow: visible;
}

.case-block--height-tall {
	height: auto;
	max-height: none;
}

.case-block--height-screen {
	height: auto;
	max-height: none;
}

.case-block--split-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: start;
	min-height: 0;
}

.case-block--split-media figure {
	position: relative;
	min-height: 0;
	margin: 0;
	overflow: visible;
}

.case-block--bg-white {
	background: #fff;
}

.case-block--bg-light {
	background: #f6f6f6;
}

.case-block--bg-dark {
	background: #343434;
}

.case-block--bg-black {
	background: #000;
}

.case-block--media-grid {
	padding: clamp(70px, 11vw, 180px) clamp(28px, 17vw, 288px);
}

.case-block--media-grid > div {
	display: grid;
	gap: clamp(14px, 1.4vw, 24px);
	align-items: center;
}

.case-block--cols-2 > div {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-block--cols-3 > div {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-block--cols-4 > div {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-block--media-grid img {
	height: auto;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.18);
}

.case-block--mockup {
	display: grid;
	place-items: center;
	min-height: 840px;
	padding: clamp(72px, 14vw, 240px) clamp(32px, 6vw, 100px);
}

.case-block--mockup img {
	height: auto;
	object-fit: contain;
}

.case-block--width-narrow img,
.case-block--width-narrow .siliqoon-video {
	max-width: 385px;
}

.case-block--width-medium img,
.case-block--width-medium .siliqoon-video {
	max-width: 700px;
}

.case-block--width-wide img,
.case-block--width-wide .siliqoon-video {
	max-width: 1120px;
}

.case-block--project-spotlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	min-height: 720px;
	background: #f6f6f6;
}

.case-block--project-spotlight > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 540px;
	margin: 0 auto;
	padding: 80px 32px;
	text-align: justify;
}

.case-block--project-spotlight h2 {
	margin: 0 0 22px;
	font-size: 26px;
	font-style: italic;
	font-weight: 400;
	line-height: 29px;
	text-align: center;
}

.case-block--project-spotlight h2 a {
	color: inherit;
	text-decoration: none;
}

.case-block--project-spotlight p {
	margin: 0;
}

.case-block--cta {
	max-width: 806px;
	margin: 180px auto 120px;
	padding-inline: 24px;
	text-align: left;
}

.case-block--cta p {
	margin: 0;
	text-indent: 24px;
}

.case-block--cta a,
.project-block--cta a,
.agency-overlay__block--cta a {
	position: relative;
	z-index: 0;
	display: inline;
	background: none;
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.08em;
	white-space: nowrap;
}

.case-block--cta a::before,
.project-block--cta a::before,
.agency-overlay__block--cta a::before {
	content: "";
	display: inline-block;
	width: 1.2em;
	height: 0.56em;
	margin: 0 0.24em 0 0.16em;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 14'%3E%3Cpath d='M1 7h31M26 1l6 6-6 6' fill='none' stroke='black' stroke-width='1.35' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 14'%3E%3Cpath d='M1 7h31M26 1l6 6-6 6' fill='none' stroke='black' stroke-width='1.35' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
	vertical-align: 0.01em;
}

.case-block--cta a::after,
.project-block--cta a::after,
.agency-overlay__block--cta a::after {
	content: "";
	position: absolute;
	left: 54%;
	top: 50%;
	z-index: 1;
	width: 96px;
	height: 110px;
	background: url("../img/cta-link-symbol.svg") center / contain no-repeat;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

@media (min-width: 901px) and (hover: hover) and (pointer: fine) {
	.case-block--cta a::after,
	.project-block--cta a::after,
	.agency-overlay__block--cta a::after {
		transform-origin: center;
		transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.case-block--cta a:is(:hover, :focus-visible)::after,
	.project-block--cta a:is(:hover, :focus-visible)::after,
	.agency-overlay__block--cta a:is(:hover, :focus-visible)::after {
		transform: translate(-50%, -50%) scale(0.9);
	}
}

.single-siliqoon--case .related-projects {
	max-width: 806px;
	margin: 160px auto;
	padding-inline: 24px;
}

.single-siliqoon--project {
	min-height: 100vh;
	min-height: 100dvh;
	padding: 0;
	background: #d9d9d9;
}

.single-siliqoon--project .single-siliqoon__content {
	max-width: none;
	font-size: 26px;
	line-height: 29px;
}

.project-hero {
	display: grid;
	grid-template-columns: minmax(150px, 1fr) minmax(0, 806px) minmax(150px, 1fr);
	column-gap: 24px;
	align-items: start;
	padding: 240px 36px;
}

.project-hero__tags {
	grid-column: 1;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	width: 100%;
	max-width: 360px;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--sq-sans);
	font-size: 14px;
	line-height: 14px;
}

.project-hero__tags li {
	padding: 4px 7px 3px;
	border: 1px solid var(--sq-black);
}

.project-hero__copy {
	grid-column: 2;
	justify-self: center;
	width: 100%;
	max-width: 806px;
	min-width: 0;
}

.project-topbar {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 180;
	display: block;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	margin-bottom: -100vh;
	margin-bottom: -100dvh;
	padding: 0;
	color: #fff !important;
	font-family: var(--sq-serif);
	font-weight: 400;
	mix-blend-mode: exclusion !important;
	pointer-events: none;
}

.project-topbar__brand,
.project-topbar__current,
.project-topbar__close,
.project-topbar__section {
	position: absolute;
	color: #fff !important;
	mix-blend-mode: inherit;
}

.project-topbar a {
	text-decoration: none;
	pointer-events: auto;
}

.project-topbar__brand {
	top: 37px;
	left: 41px;
	font-size: 26px;
	line-height: 29px;
}

.project-topbar__current {
	top: 45px;
	left: 50%;
	display: flex;
	gap: 13px;
	margin: 0;
	font-size: 18px;
	line-height: 21px;
	transform: translateX(-50%);
	white-space: nowrap;
}

.project-topbar__title {
	font-style: italic;
}

.project-topbar__number {
	font-style: normal;
}

.project-topbar__close {
	top: 45px;
	right: 41px;
	font-size: 18px;
	line-height: 21px;
}

.project-topbar__section {
	bottom: 37px;
	left: 41px;
	font-size: 26px;
	line-height: 29px;
}

.project-hero .single-siliqoon__meta {
	margin: 0 0 20px;
	font-size: 18px;
	line-height: 21px;
	text-align: center;
}

.project-hero .single-siliqoon__intro {
	margin: 0;
	font-size: 26px;
	line-height: 29px;
	text-align: center;
}

.project-hero .single-siliqoon__intro > :first-child {
	margin-top: 0;
}

.project-hero .single-siliqoon__intro > :last-child {
	margin-bottom: 0;
}

.single-siliqoon--project .single-siliqoon__content > p {
	max-width: 806px;
	margin: 160px auto;
	padding-inline: 24px;
	font-size: 26px;
	line-height: 29px;
	text-align: justify;
}

.single-siliqoon--project .single-siliqoon__blocks {
	margin-top: 0;
}

.project-block {
	position: relative;
	width: 100%;
	margin: 0;
}

.project-block img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.project-block figcaption,
.project-caption {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	z-index: 2;
	margin: 0;
	color: #fff;
	font-size: 14px;
	line-height: 14px;
	mix-blend-mode: exclusion;
}

.project-block--text {
	max-width: 806px;
	margin: 160px auto;
	padding-inline: 24px;
	text-align: center;
}

.project-block--text p {
	margin: 0;
}

.project-block--full-media {
	height: auto;
	min-height: 0;
	max-height: none;
	overflow: visible;
	background: #c5c5c5;
}

.project-block--height-tall {
	height: auto;
	max-height: none;
}

.project-block--height-screen {
	height: auto;
	min-height: 0;
	max-height: none;
}

.case-embed,
.project-embed {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.case-embed iframe,
.project-embed iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

.project-block--split-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-block--split-media figure {
	position: relative;
	min-height: 0;
	margin: 0;
	overflow: visible;
}

.project-block--bg-white {
	background: #d9d9d9;
}

.project-block--bg-light {
	background: #f6f6f6;
}

.project-block--bg-dark {
	background: #343434;
}

.project-block--bg-black {
	background: #000;
}

.project-block--type-specimen {
	min-height: 0;
	padding: 0;
	overflow: visible;
	background: #f6f6f6;
}

.project-block--type-specimen pre {
	margin: 0;
	padding: 42px 0 0;
	color: #000;
	font-family: var(--sq-serif);
	font-size: clamp(86px, 13vw, 224px);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: 0;
	white-space: pre-wrap;
	word-break: break-word;
}

.project-block--layered {
	min-height: 840px;
	padding: 10px;
	overflow: hidden;
}

.project-block--layered > div {
	position: relative;
	min-height: 800px;
}

.project-layer {
	position: absolute;
	width: min(42vw, 533px);
	height: auto;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.28);
	object-fit: contain;
}

.project-layer--1 {
	top: 0;
	left: 0;
}

.project-layer--2 {
	top: 165px;
	left: 12%;
}

.project-layer--3 {
	top: 330px;
	left: 24%;
}

.project-layer--4 {
	top: 496px;
	left: 36%;
}

.project-block--composition {
	height: auto;
	overflow: visible;
	background: #f6f6f6;
}

.project-composition__base {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.project-composition__overlay {
	position: absolute;
	top: 18%;
	width: min(30vw, 300px);
	height: auto;
	object-fit: contain;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.project-block--overlay-right .project-composition__overlay {
	right: 11%;
}

.project-block--overlay-center .project-composition__overlay {
	left: 50%;
	transform: translateX(-50%);
}

.project-block--overlay-left .project-composition__overlay {
	left: 11%;
}

.project-block--cta {
	max-width: 806px;
	margin: 160px auto;
	padding-inline: 24px;
	text-align: left;
}

.project-block--cta p {
	margin: 0;
	text-indent: 24px;
}

.single-siliqoon--case :where(
	.single-siliqoon__intro,
	.single-siliqoon__content > .wp-block-group,
	.case-block--editorial-text,
	.case-block--project-spotlight > div,
	.case-block--cta
) p,
.single-siliqoon--case .single-siliqoon__content > p,
.single-siliqoon--project :where(
	.single-siliqoon__intro,
	.project-block--text,
	.project-block--cta
) p,
.single-siliqoon--project .single-siliqoon__content > p {
	text-indent: 24px;
}

@media (min-width: 901px) {
	.single-siliqoon--case :where(
		.single-siliqoon__intro,
		.single-siliqoon__content > .wp-block-group,
		.case-block--editorial-text,
		.case-block--project-spotlight > div,
		.case-block--cta
	) p,
	.single-siliqoon--case .single-siliqoon__content > p,
	.single-siliqoon--project :where(
		.single-siliqoon__intro,
		.project-block--text,
		.project-block--cta
	) p,
	.single-siliqoon--project .single-siliqoon__content > p {
		text-align: justify;
		text-align-last: left;
	}
}

.single-siliqoon--article {
	--article-copy-width: 806px;
	--article-side-media-width: 392px;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 0;
	background: #fff;
	font-family: var(--sq-sans);
}

.single-siliqoon--article .single-siliqoon__content {
	max-width: none;
	font-size: 24px;
	line-height: 31px;
}

.article-topbar {
	position: sticky;
	top: 33px;
	left: 0;
	z-index: 180;
	display: grid;
	grid-template-columns: 180px 1fr 180px;
	align-items: start;
	width: 100%;
	height: 0;
	padding: 0 41px;
	color: var(--signal-article-text);
	font-family: var(--sq-sans);
	font-size: 14px;
	font-weight: 900;
	line-height: 14px;
	text-transform: uppercase;
	pointer-events: none;
}

.article-topbar a {
	color: inherit;
	pointer-events: auto;
	text-decoration: none;
}

.article-topbar__logo {
	visibility: hidden;
	pointer-events: none;
}

.article-topbar__logo .signal-logo {
	display: block;
	width: 100%;
	height: auto;
	filter: url("#signal-logo-acid");
}

.article-topbar--effect {
	z-index: 181;
	color: var(--sq-green);
	mix-blend-mode: exclusion;
}

.article-topbar--effect .article-topbar__title,
.article-topbar--effect .article-topbar__close {
	filter: url("#signal-fine-outline");
}

.article-topbar p {
	margin: 16px 0 0;
	text-align: center;
}

.article-topbar__close {
	margin-top: 16px;
	text-align: right;
}

.article-topbar__logo {
	width: 130px;
}

.article-hero {
	position: relative;
	isolation: isolate;
	min-height: 948px;
	height: 100vh;
	overflow: hidden;
	background: #d7d7d7;
}

.article-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-hero__title {
	position: absolute;
	left: 41px;
	right: 41px;
	top: 390px;
	z-index: 2;
	color: var(--signal-article-text);
	font-family: var(--sq-sans);
	font-weight: 900;
	text-transform: uppercase;
}

.article-hero__title h1 {
	position: relative;
	margin: 0;
	font-size: 60px;
	font-weight: 900;
	line-height: 55px;
	letter-spacing: 0;
}

.article-hero__title-copy {
	display: block;
}

.article-hero__headline,
.article-hero__deck {
	display: block;
}

.article-hero__deck {
	font-style: italic;
}

.article-hero__topic {
	position: fixed;
	left: 41px;
	bottom: 41px;
	z-index: 180;
	margin: 0;
	color: var(--signal-article-text);
	font-size: 24px;
	font-weight: 900;
	line-height: 22px;
	text-transform: uppercase;
}

.article-hero__topic--effect {
	z-index: 181;
	color: var(--sq-green);
	filter: url("#signal-article-label-outline");
	mix-blend-mode: exclusion;
	pointer-events: none;
}

html.has-signal-topic-overlay,
body.has-signal-topic-overlay,
body.has-signal-topic-overlay > .article-overlay,
html.has-signal-footnote-overlay,
body.has-signal-footnote-overlay,
body.has-signal-footnote-overlay > .article-overlay {
	overflow: hidden;
}

.signal-topic-overlay,
.signal-topic-overlay__topic,
.signal-topic-overlay__effect {
	--signal-topic-drawer-peek: 104px;
	--signal-topic-label-bottom: 41px;
	--signal-topic-label-line-height: 22px;
	--signal-topic-label-open-top: 41px;
}

.signal-topic-overlay {
	position: fixed;
	inset: 0;
	z-index: 220;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	font-family: var(--sq-sans);
	pointer-events: none;
}

.signal-topic-overlay__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: default;
	pointer-events: none;
}

.signal-topic-overlay__panel {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: grid;
	grid-template-rows: var(--signal-topic-drawer-peek) minmax(0, 1fr);
	width: 50vw;
	height: 100vh;
	height: 100dvh;
	background: rgba(179, 179, 179, 0);
	transform: translateY(calc(100% - var(--signal-topic-drawer-peek)));
	transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1), background-color 120ms linear;
	will-change: transform;
	pointer-events: none;
}

.signal-topic-overlay.is-open,
.signal-topic-overlay.is-closing,
.signal-topic-overlay.is-open .signal-topic-overlay__panel,
.signal-topic-overlay.is-closing .signal-topic-overlay__panel {
	pointer-events: auto;
}

.signal-topic-overlay.is-open .signal-topic-overlay__backdrop,
.signal-topic-overlay.is-closing .signal-topic-overlay__backdrop {
	pointer-events: auto;
}

.signal-topic-overlay.is-open .signal-topic-overlay__panel {
	transform: translateY(0);
}

.signal-topic-overlay.is-open .signal-topic-overlay__panel,
.signal-topic-overlay.is-closing .signal-topic-overlay__panel {
	background: rgba(179, 179, 179, 0.92);
	-webkit-backdrop-filter: grayscale(1);
	backdrop-filter: grayscale(1);
}

.signal-topic-overlay__header {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	height: var(--signal-topic-drawer-peek);
	padding: 41px;
	pointer-events: none;
}

.signal-topic-overlay__topic,
.signal-topic-overlay__close {
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--sq-sans);
	font-size: 24px;
	font-weight: 900;
	line-height: 22px;
	text-transform: uppercase;
}

.signal-topic-overlay__topic {
	position: fixed;
	left: 41px;
	bottom: var(--signal-topic-label-bottom);
	z-index: 180;
	color: var(--signal-article-text);
	cursor: pointer;
	transition: bottom 460ms cubic-bezier(0.76, 0, 0.24, 1);
	pointer-events: auto;
}

.signal-topic-overlay.is-open + .signal-topic-overlay__topic,
.signal-topic-overlay.is-open + .signal-topic-overlay__topic + .signal-topic-overlay__effect {
	bottom: calc(100dvh - var(--signal-topic-label-open-top) - var(--signal-topic-label-line-height));
}

.signal-topic-overlay__label {
	position: relative;
	z-index: 1;
	display: block;
}

.signal-topic-overlay__effect {
	position: fixed;
	left: 41px;
	bottom: var(--signal-topic-label-bottom);
	z-index: 181;
	display: block;
	color: var(--sq-green);
	font-family: var(--sq-sans);
	font-size: 24px;
	font-weight: 900;
	line-height: var(--signal-topic-label-line-height);
	text-transform: uppercase;
	filter: url("#signal-article-label-outline");
	mix-blend-mode: exclusion;
	transition: bottom 460ms cubic-bezier(0.76, 0, 0.24, 1);
	pointer-events: none;
}

.signal-topic-overlay__close {
	position: relative;
	grid-column: 2;
	justify-self: end;
	margin-top: 8px;
	color: #000;
	font-size: 14px;
	line-height: 14px;
	text-align: right;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}

.signal-drawer-close__base,
.signal-drawer-close__effect {
	display: block;
}

.signal-drawer-close__base {
	position: relative;
	z-index: 1;
}

.signal-drawer-close__effect {
	position: absolute;
	inset: 0;
	z-index: 2;
	color: var(--sq-purple-muted);
	filter: url("#signal-fine-outline-purple");
	pointer-events: none;
}

.signal-topic-overlay.is-open + .signal-topic-overlay__topic,
.signal-topic-overlay.is-closing + .signal-topic-overlay__topic {
	z-index: 221;
	color: #000;
}

.signal-topic-overlay.is-open + .signal-topic-overlay__topic + .signal-topic-overlay__effect,
.signal-topic-overlay.is-closing + .signal-topic-overlay__topic + .signal-topic-overlay__effect {
	z-index: 222;
}

.signal-topic-overlay.is-open .signal-topic-overlay__close,
.signal-topic-overlay.is-closing .signal-topic-overlay__close {
	opacity: 1;
	pointer-events: auto;
}

.signal-topic-overlay__topic:focus-visible,
.signal-topic-overlay__close:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.18em;
}

.signal-topic-overlay__content {
	visibility: hidden;
	opacity: 0;
	min-height: 0;
	padding: 0 41px 41px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
	color: #000;
	font-size: 24px;
	font-weight: 500;
	line-height: 31px;
	letter-spacing: -0.02em;
	touch-action: pan-y;
}

.signal-topic-overlay.is-open .signal-topic-overlay__content,
.signal-topic-overlay.is-closing .signal-topic-overlay__content {
	visibility: visible;
	opacity: 1;
}

.signal-topic-overlay__content > :first-child {
	margin-top: 0;
}

.signal-topic-overlay__content > :last-child {
	margin-bottom: 0;
}

.signal-topic-overlay__content :is(em, i) {
	font-family: "Inter Text", Arial, sans-serif;
	font-style: italic;
	font-weight: inherit;
}

.article-opening__text sup,
.article-block--text sup,
.article-block--text-right-media__text sup,
.signal-footnote-marker,
.signal-footnote-overlay__number {
	color: var(--sq-purple);
	font-family: inherit;
	font-size: 0.58em;
	font-style: inherit;
	font-weight: 900;
	line-height: 0;
	vertical-align: super;
}

.signal-footnote-marker {
	position: relative;
	display: inline-block;
	margin: 0 0 0 0.03em;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: inherit;
	line-height: 1;
	cursor: pointer;
}

.signal-footnote-marker::after {
	position: absolute;
	inset: -0.45em;
	content: "";
}

.signal-footnote-marker:focus-visible,
.signal-footnote-overlay__close:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.18em;
}

.signal-footnote-overlay {
	position: fixed;
	inset: 0;
	z-index: 230;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	font-family: var(--sq-sans);
	pointer-events: none;
}

.signal-footnote-overlay__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: default;
	pointer-events: none;
}

.signal-footnote-overlay__panel {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 50vw;
	height: 100vh;
	height: 100dvh;
	background: rgba(179, 179, 179, 0);
	transform: translateX(100%);
	transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1), background-color 120ms linear;
	will-change: transform;
	pointer-events: none;
}

.signal-footnote-overlay.is-open,
.signal-footnote-overlay.is-closing,
.signal-footnote-overlay.is-open .signal-footnote-overlay__panel,
.signal-footnote-overlay.is-closing .signal-footnote-overlay__panel {
	pointer-events: auto;
}

.signal-footnote-overlay.is-open .signal-footnote-overlay__backdrop,
.signal-footnote-overlay.is-closing .signal-footnote-overlay__backdrop {
	pointer-events: auto;
}

.signal-footnote-overlay.is-open .signal-footnote-overlay__panel {
	transform: translateX(0);
}

.signal-footnote-overlay.is-open .signal-footnote-overlay__panel,
.signal-footnote-overlay.is-closing .signal-footnote-overlay__panel {
	background: rgba(179, 179, 179, 0.92);
	-webkit-backdrop-filter: grayscale(1);
	backdrop-filter: grayscale(1);
}

.signal-footnote-overlay__header {
	position: absolute;
	top: 41px;
	right: 41px;
	z-index: 2;
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
}

.signal-footnote-overlay__close {
	position: relative;
	margin: 8px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #000;
	font-family: var(--sq-sans);
	font-size: 14px;
	font-weight: 900;
	line-height: 14px;
	text-align: right;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}

.signal-footnote-overlay.is-open .signal-footnote-overlay__close,
.signal-footnote-overlay.is-closing .signal-footnote-overlay__close {
	opacity: 1;
	pointer-events: auto;
}

.signal-footnote-overlay__content {
	height: 100%;
	padding: 106px 41px 41px;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	-webkit-overflow-scrolling: touch;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 31px;
	letter-spacing: -0.02em;
	touch-action: pan-y;
}

.signal-footnote-overlay__note[hidden] {
	display: none;
}

.signal-footnote-overlay__note > :first-child {
	margin-top: 0;
}

.signal-footnote-overlay__note > :last-child {
	margin-bottom: 0;
}

.signal-footnote-overlay__note p {
	margin: 0 0 14px;
}

.signal-footnote-overlay__note :is(em, i) {
	font-family: "Inter Text", Arial, sans-serif;
	font-style: italic;
	font-weight: inherit;
}

.signal-footnote-overlay__number {
	margin-right: 0.3em;
}

.article-hero__logo {
	position: fixed;
	top: 33px;
	left: 41px;
	z-index: 180;
	display: block;
	width: 130px;
	mix-blend-mode: exclusion;
}

.article-hero__logo .signal-logo {
	display: block;
	width: 100%;
	height: auto;
	filter: url("#signal-logo-acid");
}

.article-opening {
	--article-opening-gap: clamp(24px, 3vw, 48px);

	display: grid;
	grid-template-columns:
		minmax(180px, calc((100vw - var(--article-copy-width)) / 2 - 41px - var(--article-opening-gap)))
		minmax(0, var(--article-copy-width))
		minmax(0, 1fr);
	column-gap: var(--article-opening-gap);
	align-items: start;
	padding: 80px 0 0 41px;
}

.article-meta {
	grid-column: 1;
	width: 100%;
	max-width: 280px;
	margin: 0;
	color: var(--sq-purple);
	font-family: var(--sq-sans);
	font-size: 14px;
	font-weight: 900;
	line-height: 14px;
	text-transform: uppercase;
}

.article-meta p {
	margin: 0;
}

.article-opening__text,
.article-block--text,
.article-block--text-right-media__text {
	width: var(--article-copy-width);
	max-width: none;
	padding-inline: 0;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 31px;
	letter-spacing: -0.02em;
}

.article-opening__text :is(em, i),
.article-block--text :is(em, i),
.article-block--text-right-media__text :is(em, i) {
	font-family: "Inter Text", Arial, sans-serif;
	font-style: italic;
	font-weight: inherit;
}

.article-opening__text {
	grid-column: 2;
	width: 100%;
	max-width: var(--article-copy-width);
	padding-inline: 0;
}

.article-opening__text > *:first-child {
	margin-top: 0;
}

.article-opening__text > *:last-child {
	margin-bottom: 0;
}

.article-block--text p {
	margin: 0 0 14px;
}

.article-block--text p:last-child {
	margin-bottom: 0;
}

.article-block--text-right-media {
	display: grid;
	grid-template-columns: minmax(0, calc((100vw - var(--article-copy-width)) / 2 - 41px)) var(--article-copy-width) minmax(0, 1fr);
	align-items: start;
	margin: 68px 0;
	padding-left: 41px;
}

.article-block--text-right-media__text {
	grid-column: 2;
	padding-inline: 0;
}

.article-block--text-right-media__text p {
	margin: 0 0 14px;
}

.article-block--text-right-media__text > :first-child {
	margin-top: 0;
}

.article-block--text-right-media__text > :last-child {
	margin-bottom: 0;
}

.article-block--text-right-media__media {
	position: relative;
	grid-column: 3;
	justify-self: end;
	width: var(--article-side-media-width);
	margin: 0;
	overflow: hidden;
}

.article-block {
	position: relative;
}

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

.article-block figcaption {
	position: absolute;
	z-index: 3;
	right: 9px;
	bottom: 8px;
	left: 9px;
	color: var(--sq-purple);
	font-family: var(--sq-sans);
	font-size: 10px;
	font-weight: 900;
	line-height: 10px;
	text-transform: uppercase;
}

.article-block--inline-media {
	margin: 70px auto;
}

.article-block--text {
	margin: 68px auto;
	margin-top: 68px;
	margin-bottom: 68px;
}

.article-block--wide {
	max-width: 1243px;
}

.article-block--text {
	width: var(--article-copy-width);
	max-width: none;
	padding-inline: 0;
}

.article-block--side {
	width: 392px;
	margin-right: max(24px, calc((100vw - 1680px) / 2 + 1px));
	margin-left: auto;
}

.article-block--right-bleed {
	width: auto;
	max-width: none;
	margin-right: 0;
	margin-left: max(0px, calc((100vw - var(--article-copy-width)) / 2));
}

.article-block--full-media {
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	margin: 110px 0 60px;
	overflow: visible;
}

.article-block--full-media img {
	height: auto;
	object-fit: contain;
}

.article-block--full-media .article-embed {
	height: auto;
	aspect-ratio: 16 / 9;
}

.siliqoon-video {
	position: relative;
	width: 100%;
	aspect-ratio: var(--siliqoon-video-ratio, 16 / 9);
	overflow: hidden;
	background: #b3b3b3;
}

.siliqoon-video__placeholder,
:is(.article-block, .case-block, .project-block) .siliqoon-video__poster {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.siliqoon-video__placeholder {
	z-index: 0;
	background: linear-gradient(110deg, #b3b3b3 20%, #c9c9c9 38%, #b3b3b3 56%);
	background-size: 220% 100%;
	animation: siliqoon-video-placeholder 1.4s linear infinite;
	transition: opacity 220ms ease;
}

:is(.article-block, .case-block, .project-block) .siliqoon-video__poster {
	z-index: 1;
	object-fit: cover;
	transition: opacity 220ms ease;
}

.siliqoon-video__media {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: transparent;
}

.siliqoon-video.is-video-ready .siliqoon-video__placeholder,
.siliqoon-video.is-video-playing .siliqoon-video__poster {
	opacity: 0;
}

.siliqoon-video.is-video-error .siliqoon-video__placeholder {
	animation: none;
}

@keyframes siliqoon-video-placeholder {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: -100% 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.siliqoon-video__placeholder {
		animation: none;
	}
}

.article-embed,
.article-embed iframe {
	width: 100%;
	height: 100%;
}

.article-embed iframe {
	display: block;
	border: 0;
}

.article-block--pull-quote {
	max-width: 1013px;
	margin: 90px auto;
	padding-inline: 24px;
	color: var(--sq-purple);
	font-family: var(--sq-sans);
	font-size: 24px;
	font-weight: 900;
	line-height: 31px;
	text-align: center;
	text-transform: uppercase;
}

.article-block--pull-quote p {
	margin: 0;
}

.article-block--inline-quote {
	width: calc(var(--article-copy-width) - 166px);
	margin: 30px auto;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 26px;
}

.article-block--inline-quote > :first-child,
.article-author-bio > :first-child {
	margin-top: 0;
}

.article-block--inline-quote > :last-child,
.article-author-bio > :last-child {
	margin-bottom: 0;
}

.article-blocks > .article-block:has(+ .article-block--inline-quote) {
	margin-bottom: 0;
}

.article-blocks > .article-block--inline-quote + .article-block {
	margin-top: 0;
}

.article-author-bio {
	width: var(--article-copy-width);
	margin: 107px auto 0;
	color: #000;
	font-family: Inter, Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.28;
}

.article-author-bio + .article-next {
	align-items: center;
	height: 107px;
	padding: 0 41px;
}

.article-next {
	--signal-article-text: #000;
	display: flex;
	justify-content: flex-end;
	padding: 80px 41px 40px;
}

.article-next a {
	color: #000;
	font-family: var(--sq-sans);
	font-size: 24px;
	font-weight: 900;
	line-height: 22px;
	text-align: right;
	text-decoration: none;
	text-transform: uppercase;
}

.end-cases {
	width: 50%;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 48px clamp(40px, 6.55vw, 110px) clamp(120px, 12vw, 202px);
	background: rgba(255, 252, 235, 0.94);
	color: var(--sq-black);
	font-family: var(--sq-serif);
	font-size: 18px;
	line-height: 21px;
}

.end-cases--reveal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 220;
	margin: 0;
	transform: translate3d(0, var(--end-cases-offset, 100dvh), 0);
	pointer-events: none;
	visibility: hidden;
	will-change: transform;
}

.end-cases--reveal.is-revealing {
	pointer-events: auto;
	visibility: visible;
}

.end-cases__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: start;
	margin-bottom: clamp(150px, 18vh, 230px);
}

.end-cases__header span {
	grid-column: 1;
	justify-self: start;
}

.end-cases__header h2 {
	grid-column: 2;
	margin: 0;
	font-size: inherit;
	font-style: normal;
	font-weight: 400;
	line-height: inherit;
	text-align: center;
	text-transform: uppercase;
}

.end-cases__list {
	display: grid;
	gap: clamp(170px, 22vh, 290px);
}

.end-case-card {
	display: block;
	min-width: 0;
	min-height: clamp(520px, 72vh, 760px);
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.end-case-card__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 20px;
}

.end-case-card__header p {
	display: flex;
	flex-wrap: wrap;
	gap: 0 12px;
	margin: 0;
}

.end-case-card__header em {
	font-weight: 400;
}

.end-case-card__open {
	display: inline-block;
	padding: 0 5px;
	background: var(--sq-green);
	color: var(--sq-black);
	line-height: inherit;
	text-decoration: none;
	white-space: nowrap;
}

.end-case-card__open-label--mobile {
	display: none;
}

.end-case-card__summary {
	margin: 8px 0 0;
	text-align: justify;
}

.end-case-card__media {
	display: block;
	margin-top: 20px;
	overflow: hidden;
}

.end-case-card__media img {
	display: block;
	width: 100%;
	height: auto;
}

@media (min-width: 901px) and (max-width: 1645px) {
	.article-block--text-right-media__text {
		margin-inline: auto;
	}

	.article-block--text-right-media__media {
		width: var(--article-copy-width);
		max-width: 100%;
		margin: 68px auto 0;
	}

	.article-block--text-right-media {
		display: block;
		padding: 0 41px;
	}
}

@keyframes siliqoon-native-page-enter {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@media (max-width: 900px) {
	body > main {
		animation: siliqoon-native-page-enter 240ms ease-out both;
	}

	html.is-native-mobile-page-leaving,
	html.is-native-mobile-page-leaving body {
		background: var(--siliqoon-native-navigation-surface, #fff);
	}

	html.is-native-mobile-page-leaving body > main {
		opacity: 0;
		animation: none;
		transition: opacity 120ms linear;
	}

	body > .is-overlay-suspended,
	body:has(> :is(.case-overlay, .project-overlay, .article-overlay).is-settled:not(.is-under-siliqoon-overlay)) > .is-under-siliqoon-overlay {
		visibility: hidden !important;
	}

	.article-overlay {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		transform: translate3d(0, 100dvh, 0);
		transition: transform 460ms cubic-bezier(0.76, 0, 0.24, 1);
	}

	.article-overlay.is-open {
		transform: translate3d(0, 0, 0);
	}

	.article-overlay.is-settled {
		transform: translate3d(0, 0, 0);
	}

	body.single-case_study,
	body.single-case_project,
	.case-overlay,
	.project-overlay,
	.case-overlay .siliqoon-overlay-scroll,
	.project-overlay .siliqoon-overlay-scroll,
	.article-overlay .siliqoon-overlay-scroll {
		overscroll-behavior-y: none;
	}

	.case-overlay.is-content-ready .siliqoon-overlay-scroll > .single-siliqoon--case,
	.project-overlay.is-content-ready .siliqoon-overlay-scroll > .single-siliqoon--project,
	.article-overlay.is-content-ready .siliqoon-overlay-scroll > .single-siliqoon--article {
		z-index: auto;
	}

	.case-overlay > .case-topbar,
	.project-overlay > .project-topbar,
	.article-overlay > .article-topbar {
		position: static;
		z-index: 180;
	}

	.case-topbar {
		position: static;
		display: contents;
		height: auto;
		margin: 0;
		padding: 0;
		font-size: 16px;
		line-height: 19px;
		mix-blend-mode: normal !important;
	}

	.case-topbar__brand,
	.case-topbar__current,
	.case-topbar__close,
	.case-topbar__section {
		position: fixed;
		z-index: 180;
		color: #fff !important;
		mix-blend-mode: exclusion !important;
	}

	.case-topbar__current {
		top: 22px;
		left: 20px;
		min-width: 0;
		max-width: calc(100% - 120px);
		flex-direction: row-reverse;
		gap: 10px;
		margin-top: 0;
		font-size: 16px;
		font-style: normal;
		line-height: 19px;
	}

	.case-topbar__current span:first-child {
		overflow: hidden;
		font-style: italic;
		text-overflow: ellipsis;
	}

	.case-topbar__brand {
		bottom: 22px;
		left: 20px;
		font-size: 19px;
		line-height: 23px;
	}

	.case-topbar__close {
		top: 22px;
		right: 20px;
		margin-top: 0;
		font-size: 16px;
		line-height: 19px;
	}

	.case-topbar__section {
		right: 20px;
		bottom: 22px;
		left: auto;
		display: block;
		font-size: 19px;
		line-height: 23px;
	}

	.case-hero {
		min-height: 0;
		padding: 63px 20px 22px;
	}

	.single-siliqoon--case .case-hero__title {
		display: block;
		max-width: 80%;
		margin: 166px 0 0;
		font-size: 19px;
		font-weight: 500;
		line-height: 23px;
		text-align: center;
		text-transform: uppercase;
	}

	.case-hero__tags {
		width: 100%;
		gap: 3px;
		font-size: 14px;
		line-height: 14px;
	}

	.case-hero__tags li {
		padding: 4px;
	}

	.single-siliqoon--case .single-siliqoon__content {
		font-size: 19px;
		line-height: 23px;
	}

	.single-siliqoon--case .single-siliqoon__intro,
	.single-siliqoon--case > .single-siliqoon__content > p,
	.single-siliqoon--case .single-siliqoon__content > .wp-block-group {
		max-width: 360px;
		margin: 80px auto;
		padding-inline: 18px;
		font-size: 19px;
		line-height: 23px;
		text-align: left;
	}

	.single-siliqoon--case .case-hero .single-siliqoon__intro {
		width: 100%;
		max-width: 360px;
		margin: 166px auto 0;
		padding-inline: 4px;
		font-size: 19px;
		line-height: 23px;
		text-align: center;
	}

	.single-siliqoon--case .single-siliqoon__blocks {
		margin-top: 0;
	}

	.case-block figcaption,
	.case-caption {
		right: 5px;
		bottom: 5px;
		left: 5px;
		font-size: 8px;
		line-height: 8px;
	}

	.case-block--editorial-text {
		max-width: 100%;
		margin: 80px auto;
		padding-inline: 18px;
		font-size: 19px;
		line-height: 23px;
		text-align: left;
	}

	.case-block--editorial-text h2,
	.case-block--editorial-text header span {
		font-size: 19px;
		line-height: 23px;
	}

	.case-block--split-media {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.case-block--split-media figure {
		min-height: 0;
	}

	.case-block--split-media img {
		height: auto;
		object-fit: contain;
	}

	.case-block--full-bleed {
		height: auto;
		min-height: 0;
		max-height: none;
		overflow: visible;
	}

	.case-block--full-bleed img {
		height: auto;
		object-fit: contain;
	}

	.case-block--media-grid {
		padding: 56px 18px;
	}

	.case-block--media-grid > div {
		gap: 8px;
	}

	.case-block--mockup {
		min-height: 120vw;
		padding: 60px 24px;
	}

	.case-block--project-spotlight {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.case-block--project-spotlight > div {
		padding: 80px 18px;
		text-align: left;
	}

	.case-block--project-spotlight h2 {
		font-size: 18px;
		line-height: 20px;
	}

	.case-block--project-spotlight img {
		height: auto;
		object-fit: contain;
	}

	.case-block--cta {
		margin: 80px auto;
		padding-inline: 18px;
		text-align: left;
	}

	.case-block--cta p {
		text-indent: 20px;
	}

	.case-block--cta a::after,
	.project-block--cta a::after,
	.agency-overlay__block--cta a::after {
		width: 70px;
		height: 80px;
	}

	.single-siliqoon--case .related-projects {
		margin: 80px auto;
		padding-inline: 18px;
	}

	.project-topbar__brand {
		position: absolute;
		top: auto;
		bottom: 22px;
		left: 20px;
		font-size: 19px;
		line-height: 23px;
	}

	.project-topbar {
		position: static;
		display: contents;
		height: auto;
		margin: 0;
		mix-blend-mode: normal !important;
	}

	.project-topbar__brand,
	.project-topbar__current,
	.project-topbar__close,
	.project-topbar__section {
		position: fixed;
		z-index: 180;
		color: #fff !important;
		mix-blend-mode: exclusion !important;
	}

	.project-topbar__current {
		top: 22px;
		left: 20px;
		max-width: calc(100% - 120px);
		gap: 10px;
		font-size: 16px;
		line-height: 19px;
		transform: none;
	}

	.project-topbar__title {
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.project-topbar__number {
		order: -1;
	}

	.project-topbar__close {
		top: 22px;
		right: 20px;
		font-size: 16px;
		line-height: 19px;
	}

	.project-topbar__section {
		right: 20px;
		bottom: 22px;
		left: auto;
		font-size: 19px;
		line-height: 23px;
	}

	.project-hero {
		display: flex;
		flex-direction: column;
		padding: 0 20px 20px;
	}

	.project-hero__copy {
		order: 1;
		width: 100%;
		margin-top: 207px;
	}

	.project-hero .single-siliqoon__meta {
		margin-bottom: 18px;
		font-size: 14px;
		line-height: 16px;
		text-align: left;
	}

	.project-hero .single-siliqoon__intro {
		font-size: 19px;
		line-height: 23px;
		text-align: left;
	}

	.project-hero__tags {
		order: 2;
		width: 100%;
		max-width: none;
		margin-top: 166px;
		gap: 3px;
		font-size: 14px;
		line-height: 14px;
	}

	.project-hero__tags li {
		padding: 4px;
	}

	.single-siliqoon--project .single-siliqoon__content > p,
	.project-block--text {
		max-width: 100%;
		margin: 80px auto;
		padding-inline: 20px;
		font-size: 19px;
		line-height: 23px;
		text-align: left;
	}

	.project-block--cta {
		margin: 80px auto;
		padding-inline: 20px;
		font-size: 19px;
		line-height: 23px;
		text-align: left;
	}

	.project-block--cta p {
		text-indent: 20px;
	}

	.single-siliqoon--case :where(
		.single-siliqoon__intro,
		.single-siliqoon__content > .wp-block-group,
		.case-block--editorial-text,
		.case-block--project-spotlight > div,
		.case-block--cta
	) p,
	.single-siliqoon--case .single-siliqoon__content > p,
	.single-siliqoon--project :where(
		.single-siliqoon__intro,
		.project-block--text,
		.project-block--cta
	) p,
	.single-siliqoon--project .single-siliqoon__content > p {
		text-align: left;
		text-align-last: auto;
		text-indent: 20px;
	}

	.project-block--full-media,
	.project-block--height-tall,
	.project-block--height-screen {
		height: auto;
		min-height: 0;
		max-height: none;
		overflow: visible;
	}

	.project-block--full-media img,
	.project-block--split-media img,
	.project-block--type-specimen img {
		height: auto;
		object-fit: contain;
	}

	.project-block figcaption,
	.project-caption {
		right: 5px;
		bottom: 5px;
		left: 5px;
		font-size: 11px;
		line-height: 12px;
	}

	.project-block--split-media {
		grid-template-columns: 1fr;
	}

	.project-block--split-media figure,
	.project-block--type-specimen {
		min-height: 0;
	}

	.article-topbar {
		grid-template-columns: minmax(0, 1fr) auto;
		top: 0;
		gap: 30px;
		padding: 0 20px;
	}

	.article-topbar__logo {
		display: none;
	}

	.article-topbar p {
		grid-column: 1;
		grid-row: 1;
		overflow: hidden;
		margin: 22px 0 0;
		font-size: 18px;
		line-height: 18px;
		text-align: left;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.article-topbar__title::before {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.signal-effect--article-top::before,
	.signal-effect--article-hero-title::before {
		filter: url("#signal-label-outline");
	}

	.article-topbar__close {
		grid-column: 2;
		grid-row: 1;
		margin-top: 25px;
		font-size: 12px;
		line-height: 12px;
	}

	.article-hero {
		height: 87svh;
		min-height: 680px;
		max-height: 760px;
		clip-path: polygon(
			20px 0,
			calc(100% - 20px) 0,
			calc(100% - 10px) 8px,
			100% 58px,
			100% 100%,
			0 100%,
			0 58px,
			10px 8px
		);
	}

	.article-hero__title {
		top: 38%;
		left: 10px;
		right: 10px;
	}

	.article-hero__title h1 {
		font-size: 28px;
		line-height: 26px;
	}


	.article-hero__topic {
		right: 20px;
		bottom: 23.8px;
		left: auto;
		font-size: 18px;
		line-height: 20px;
		text-align: right;
	}

	.signal-topic-overlay,
	.signal-topic-overlay__topic,
	.signal-topic-overlay__effect {
		--signal-topic-drawer-peek: 62px;
		--signal-topic-label-bottom: 23.8px;
		--signal-topic-label-line-height: 20px;
		--signal-topic-label-open-top: 20px;
	}

	.signal-topic-overlay__backdrop {
		display: none;
	}

	.signal-topic-overlay__panel {
		width: 100vw;
	}

	.signal-topic-overlay__header {
		padding: 20px;
	}

	.signal-topic-overlay__topic {
		left: 20px;
		font-size: 18px;
		line-height: 20px;
		text-align: left;
	}

	.signal-topic-overlay__effect {
		left: 20px;
		font-size: 18px;
		text-align: left;
	}

	.signal-topic-overlay__close {
		margin-top: 5px;
		font-size: 12px;
		line-height: 12px;
	}

	.signal-topic-overlay__content {
		padding: 0 20px 30px;
		font-size: 19px;
		line-height: 26px;
	}

	.signal-footnote-overlay__backdrop {
		display: none;
	}

	.signal-footnote-overlay__panel {
		width: 100vw;
	}

	.signal-footnote-overlay__header {
		top: 20px;
		right: 20px;
	}

	.signal-footnote-overlay__close {
		margin-top: 5px;
		font-size: 12px;
		line-height: 12px;
	}

	.signal-footnote-overlay__content {
		padding: 59px 20px 30px;
		font-size: 19px;
		line-height: 26px;
	}

	.article-hero__logo {
		position: fixed;
		top: auto;
		bottom: 14px;
		right: 20px;
		left: auto;
		z-index: 180;
		display: block;
		width: 112px;
	}

	.article-hero__logo .signal-logo {
		display: block;
		width: 100%;
		height: auto;
	}

	.article-meta {
		position: static;
		width: auto;
		max-width: none;
		margin: 0;
		font-size: 10px;
		line-height: 9px;
		text-align: center;
	}

	.article-opening {
		display: block;
		padding: 40px 10px 0;
	}

	.article-opening__text {
		width: 100%;
		max-width: none;
		margin-top: 40px;
		font-size: 19px;
		line-height: 26px;
	}

	.article-block figcaption {
		right: 8px;
		bottom: 7px;
		left: 8px;
		font-size: 8px;
		line-height: 8px;
	}

	.article-block--text {
		width: 100%;
		max-width: none;
		margin: 40px auto;
		padding-inline: 10px;
		font-size: 19px;
		line-height: 26px;
	}

	.article-block--inline-media {
		width: 100%;
		max-width: none;
		margin-top: 40px;
		margin-right: 0;
		margin-bottom: 40px;
		margin-left: 0;
	}

	.article-block--text-right-media {
		display: block;
		margin: 40px 0;
		padding: 0 10px;
	}

	.article-block--text-right-media__text {
		width: 100%;
		max-width: none;
		padding: 0;
		font-size: 19px;
		line-height: 26px;
	}

	.article-block--text-right-media__media {
		width: calc(100% + 20px);
		max-width: none;
		margin: 40px -10px 0;
	}

	.article-block--full-media {
		height: auto;
		min-height: 0;
		max-height: none;
		margin: 40px 0;
	}

	.article-block--full-media img {
		height: auto;
	}

	.article-block--pull-quote {
		margin: 40px auto;
		padding-inline: 10px;
		font-size: 23px;
		line-height: 21px;
	}

	.article-block--inline-quote {
		width: auto;
		margin: 20px 28px;
		font-size: 16px;
		line-height: 22px;
	}

	.article-author-bio {
		width: 100%;
		margin-top: 120px;
		padding-inline: 10px;
	}

	.article-author-bio + .article-next {
		height: 300px;
		padding: 0 10px;
	}

	.article-next {
		justify-content: center;
		padding: 70px 10px 130px;
	}

	.article-next a {
		font-size: 20px;
		line-height: 18px;
		text-align: center;
	}

	.end-cases {
		width: 100%;
		padding: 24px 20px 120px;
		font-size: 18px;
		line-height: 21px;
	}

	.end-cases--reveal {
		z-index: 220;
	}

	.end-cases__header {
		margin-bottom: 160px;
	}

	.end-cases__list {
		gap: 32px;
	}

	.end-case-card {
		min-height: max(520px, 62dvh);
	}

	.end-case-card__header {
		gap: 12px;
	}

	.end-case-card__open {
		padding: 2px 5px 1px;
	}

	.end-case-card__open-label--desktop {
		display: none;
	}

	.end-case-card__open-label--mobile {
		display: inline;
	}

	.end-case-card__summary {
		margin-top: 18px;
		text-align: left;
	}

	.end-case-card__media {
		margin-top: 28px;
	}
}

@media (max-width: 900px) {
	html.site-surface-home {
		--mobile-device-height: 100lvh;
		--mobile-page-edge-reserve: 128px;

		height: 100lvh;
		overflow: hidden;
		scroll-behavior: auto;
	}

	html.site-surface-home body.has-mobile-split-home {
		position: relative;
		width: 100%;
		height: calc(
			var(--mobile-device-height)
			+ var(--mobile-page-edge-reserve)
			+ var(--mobile-page-edge-reserve)
		);
		padding-block: var(--mobile-page-edge-reserve);
		overflow: hidden;
		overscroll-behavior: none;
	}

	.siliqoon-home {
		--mobile-home-rail: 64px;
		--mobile-signals-peek: 64px;
		--mobile-signals-split: 45dvh;
		position: relative;
		display: block;
		height: var(--mobile-device-height);
		min-height: 0;
		overflow: hidden;
	}

	/* The panels keep the large device-height reservoir used to shield iOS
	 * browser chrome, while open menus must end at the visible viewport. */
	.agency-menu {
		inset: 0 0 auto;
		height: 100dvh;
		max-height: 100dvh;
	}

	.signals-menu {
		inset: 0 0 auto;
		height: calc(100dvh - var(--mobile-home-rail));
		max-height: calc(100dvh - var(--mobile-home-rail));
	}

	.language-switcher--agency-menu,
	.language-switcher--signals {
		bottom: max(22px, env(safe-area-inset-bottom));
	}

	.split-panel {
		position: absolute;
		left: 0;
		width: 100%;
		height: var(--mobile-device-height);
	}

	.split-panel--agency {
		top: 0;
	}

	.panel-header--agency {
		z-index: 1;
	}

	.split-panel--signals {
		--mobile-signals-rest-top: var(--mobile-signals-split);

		top: 0;
		bottom: auto;
		z-index: 10;
		height: calc(var(--mobile-device-height) - var(--mobile-home-rail));
		clip-path: polygon(
			20px 0,
			calc(100% - 20px) 0,
			calc(100% - 10px) 8px,
			100% 58px,
			100% 100%,
			0 100%,
			0 58px,
			10px 8px
		);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		contain: layout paint;
		transform: translate3d(
			0,
			calc(var(--mobile-signals-rest-top) + var(--mobile-signals-bounce, 0px)),
			0
		);
		transition: transform 480ms cubic-bezier(0.76, 0, 0.24, 1);
		will-change: transform;
	}

	.split-panel--signals.is-mobile-bouncing {
		transition: none;
	}

	.split-panel--signals.is-mobile-bounce-resetting {
		transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
	}

	.split-panel--signals.is-mobile-tab-moving {
		transition: none;
	}

	.panel-header--signals {
		pointer-events: auto;
		touch-action: none;
	}

	.siliqoon-home[data-mobile-home-state="agency"] .split-panel--signals {
		--mobile-signals-rest-top: calc(100dvh - var(--mobile-signals-peek));
	}

	.siliqoon-home[data-mobile-home-state="signals"] .split-panel--signals {
		--mobile-signals-rest-top: var(--mobile-home-rail);
	}

	.siliqoon-home[data-mobile-home-state="split"] .agency-scroll,
	.siliqoon-home[data-mobile-home-state="split"] .signals-scroll,
	.siliqoon-home[data-mobile-home-state="agency"] .signals-scroll,
	.siliqoon-home[data-mobile-home-state="signals"] .agency-scroll {
		overflow-y: hidden;
	}

	.siliqoon-home[data-mobile-home-state="agency"] .agency-scroll,
	.siliqoon-home[data-mobile-home-state="signals"] .signals-scroll {
		overflow-y: auto;
	}

	.siliqoon-home[data-mobile-home-state="split"] .split-panel,
	.siliqoon-home[data-mobile-home-state="agency"] .split-panel--signals,
	.siliqoon-home[data-mobile-home-state="signals"] .split-panel--agency {
		touch-action: none;
	}

	.siliqoon-home[data-mobile-home-state="agency"] .agency-scroll,
	.siliqoon-home[data-mobile-home-state="signals"] .signals-scroll {
		overflow-anchor: none;
		overscroll-behavior-y: contain;
		touch-action: pan-y;
	}

	.siliqoon-home[data-mobile-home-state="signals"] .signals-scroll {
		overscroll-behavior-y: none;
	}

	.siliqoon-home[data-mobile-home-state] .agency-scroll {
		overscroll-behavior-y: none;
	}

	/* Keep one exclusion layer for the full mobile gesture. */
	.signals-logo-button {
		position: relative;
		mix-blend-mode: exclusion;
		transform: translateZ(0);
	}

	.signals-logo-button::before {
		position: absolute;
		inset: 0;
		content: "";
		background: #56ff38;
		-webkit-mask: url("../img/logo-signal-violet.webp") center / contain no-repeat;
		mask: url("../img/logo-signal-violet.webp") center / contain no-repeat;
		pointer-events: none;
		transform: translateZ(0);
	}

	.signals-logo-button .signal-logo {
		opacity: 0;
		filter: none;
	}

	.is-signals-menu-open .signals-logo-button::before {
		background: var(--sq-purple);
	}

	.siliqoon-home[data-mobile-home-state="agency"] .agency-scroll {
		padding-bottom: calc(
			var(--mobile-device-height)
			- 100dvh
			+ var(--mobile-signals-peek)
			+ 32px
		);
	}

	/* Give iOS the scroll container as the gesture target even over paragraph text. */
	.agency-section {
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		pointer-events: none;
		user-select: none;
	}

	.agency-section :is(a, button) {
		pointer-events: auto;
		touch-action: pan-y;
	}

	.detail-drawer {
		z-index: 70;
		width: 100vw;
	}

	.detail-drawer__controls {
		top: 24px;
		z-index: 10;
		width: 100vw;
		height: 19px;
		padding-right: 20px;
		padding-left: 20px;
	}

	.siliqoon-home.is-detail-open .panel-header--agency {
		visibility: hidden;
	}

	.detail-drawer__identity,
	.detail-drawer__close {
		font-size: 16px;
		line-height: 19px;
	}

	.detail-drawer__inner {
		padding: 78px 0 64px;
	}

	.agency-overlay__block {
		margin-bottom: 72px;
	}

	.agency-overlay__block--image {
		margin-right: 20px;
		margin-bottom: 40px;
		margin-left: 20px;
	}

	.agency-overlay__block--image figcaption {
		width: min(66%, 520px);
		margin-top: 12px;
		font-size: 13px;
		line-height: 15px;
	}

	.agency-overlay__block--text {
		width: auto;
		margin-right: 40px;
		margin-bottom: 40px;
		margin-left: 40px;
		font-size: 19px;
		line-height: 23px;
	}

	.agency-overlay__block--text-small {
		width: auto;
		margin-top: -10px;
		margin-right: 40px;
		margin-bottom: 40px;
		margin-left: 40px;
		font-size: 17px;
		line-height: 23px;
	}

	.agency-overlay__block--cta {
		width: calc(100% - 40px);
		font-size: 19px;
		line-height: 23px;
	}
}

@media (max-width: 640px) {
	.panel-header {
		height: var(--mobile-home-rail, 64px);
		padding-inline: 18px;
	}

	.brand-button {
		font-size: 19px;
		line-height: 23px;
	}

	.is-left-menu-open .panel-header--agency {
		z-index: 31;
	}

	.agency-scroll {
		padding: 76px 20px 32px;
	}

	.agency-section {
		min-height: 72vh;
		padding: 18vh 0 8vh;
	}

	.agency-section__body {
		font-size: 19px;
		line-height: 23px;
		text-align: left;
	}

	.agency-section__body header {
		margin-bottom: 0;
	}

	.agency-section__body header span,
	.home-case-list span,
	.home-case-list strong {
		font-size: 19px;
		line-height: 23px;
	}

	.home-case-list em {
		font-size: 14px;
		line-height: 16px;
	}

	.agency-note {
		margin-top: 136px;
		font-size: 16px;
		line-height: 18px;
	}

	.agency-menu {
		grid-template-rows: 72px 1fr;
		padding: 0 20px 32px;
		background: rgba(255, 252, 235, 0.94);
	}

	.agency-menu > a,
	.agency-menu > button {
		font-size: 16px;
		line-height: 18px;
	}

	.agency-menu ol {
		justify-self: stretch;
		margin: 0;
	}

	.agency-menu li {
		grid-template-columns: 38px minmax(0, 1fr);
		gap: 12px;
		margin: 0;
	}

	.agency-menu li::before {
		align-self: start;
		font-size: 22px;
		line-height: 23px;
	}

	.agency-menu li a {
		justify-self: end;
		font-size: 32px;
		line-height: 40px;
		text-align: right;
	}

	.agency-menu__underline {
		bottom: -0.5em;
	}

	.panel-header--signals {
		font-size: 12px;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.signals-logo-button {
		width: 98px;
		height: 35px;
	}

	.signals-logo-button .signal-logo {
		width: 98px;
		height: 35px;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}

	.signal-card__caption span {
		font-size: 8px;
		line-height: 7px;
	}

	.signal-card__caption h2,
	.signal-card__subtitle {
		font-size: 18px;
		line-height: 17px;
	}

	.signals-menu__filters {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: center;
		max-width: 88%;
		gap: 8px;
	}

	.signals-menu {
		background: rgba(179, 179, 179, 0.92);
	}

	.signals-menu__controls {
		height: var(--mobile-home-rail, 64px);
		padding-inline: 18px;
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
		animation-duration: 1ms !important;
	}
}

@media (max-width: 900px) {
	.signals-archive {
		padding-top: 75px;
	}

	.signals-archive__header {
		min-height: 75px;
		padding: 14px 20px;
		font-size: 12px;
	}

	.signals-archive__logo {
		width: 98px;
		height: 35px;
	}

	.signals-archive__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.signals-archive .navigation.pagination {
		padding: 40px 20px;
		font-size: 16px;
	}
}
