/* ==================================================
   WORKINGZEN V2
   Foundation
================================================== */

:root {
	--color-warm-white: #f2f0e9;
	--color-ink: #0b0b0a;
	--color-gold: #b09a58;
	--color-stone: #77756d;

	--page-padding: 64px;
	--container-width: 1440px;

	/* Section spacing */
	--section-space-lg: clamp(130px, 14vw, 200px);
	--section-space-md: clamp(90px, 9vw, 140px);
	--section-space-sm: 70px;
}

/* ==================================================
   GLOBAL SECTION LABELS
================================================== */

.intro__label p,
.work__label p,
.capabilities__label p,
.philosophy__label p,
.clients__label p,
.insights__label p,
.final-cta__label p {
	margin-top: 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.intro__label,
.work__label,
.capabilities__label,
.clients__label,
.insights__label {
	padding-top: 4px;
}

.intro__content,
.work__intro,
.capabilities__intro,
.clients__intro,
.insights__intro {
	align-self: start;
}

.work__header,
.capabilities__header,
.clients__header,
.insights__header {
	align-items: start;
}

/* ==================================================
   GLOBAL SECTION HEADLINES
================================================== */

.intro__title,
.work__intro h2,
.clients__intro h2,
.insights__intro h2 {
	font-size: clamp(40px, 4vw, 64px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

/* ==================================================
   GLOBAL BODY TYPOGRAPHY
================================================== */

.intro__body p,
.philosophy__body p {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.65;
}

/* ==================================================
   GLOBAL TEXT LINKS / CTA
================================================== */

.intro__link,
.work__all,
.insights__all {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding-bottom: 7px;

	border-bottom: 1px solid rgba(11, 11, 10, 0.4);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
	text-transform: uppercase;

	transition:
		color 300ms ease,
		border-color 300ms ease,
		gap 300ms ease;
}

.intro__link:hover,
.work__all:hover,
.insights__all:hover {
	color: var(--color-gold);
	border-color: var(--color-gold);

	gap: 16px;
}

/* ==================================================
   RESET
================================================== */

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-warm-white);
	color: var(--color-ink);

	font-family:
		Arial,
		Helvetica,
		sans-serif;

	font-size: 16px;
	line-height: 1.6;

	-webkit-font-smoothing: antialiased;
}

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

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

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


/* ==================================================
   LAYOUT
================================================== */

.container {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;

	width: 100%;
	height: 92px;

	background: rgba(242, 240, 233, 0.96);
	border-bottom: 1px solid rgba(11, 11, 10, 0.08);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	transition:
		height 300ms ease,
		background-color 300ms ease,
		box-shadow 300ms ease,
		transform 300ms ease;
}

/* ==================================================
   HERO HEADER STATE
================================================== */

.home .site-header.is-hero-header {
	position: fixed;
	top: 0;
	left: 0;

	background: transparent;
	border-bottom-color: transparent;

	box-shadow: none;

	color: var(--color-warm-white);
}

/* Logo */

.home .site-header.is-hero-header .site-branding__logo {
	filter: brightness(0) invert(1);
}


/* Desktop menu */

.home .site-header.is-hero-header .primary-menu a {
	color: var(--color-warm-white);
}


/* Mobile toggle */

.home .site-header.is-hero-header .mobile-menu-toggle {
	color: var(--color-warm-white);
}

.site-header.is-scrolled {
	height: 76px;

	background: rgba(242, 240, 233, 0.98);

	box-shadow:
		0 8px 30px rgba(11, 11, 10, 0.05);
}

.site-header.is-scrolled .primary-menu a {
	padding-top: 8px;
	padding-bottom: 8px;
}

.site-header.is-scrolled .site-branding__logo {
	height: 27px;
}

.site-header__inner {
	width: calc(100% - (var(--page-padding) * 2));
	max-width: 1600px;

	height: 100%;
	margin-inline: auto;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 32px;
}

.home .site-header.is-hero-header.is-scrolled {
	background: rgba(242, 240, 233, 0.98);

	border-bottom-color: rgba(11, 11, 10, 0.08);

	color: var(--color-ink);

	box-shadow:
		0 8px 30px rgba(11, 11, 10, 0.05);
}


.home .site-header.is-hero-header.is-scrolled .site-branding__logo {
	filter: none;
}


.home .site-header.is-hero-header.is-scrolled .primary-menu a {
	color: var(--color-ink);
}


.home .site-header.is-hero-header.is-scrolled .mobile-menu-toggle {
	color: var(--color-ink);
}

/* ==================================================
   BRANDING
================================================== */

.site-branding {
	flex: 0 0 auto;
}

.site-branding__link {
	display: inline-flex;
	align-items: center;
}

.site-branding__logo {
	display: block;
	width: auto;
	height: 32px;
	object-fit: contain;

	transition:
		height 300ms ease,
		opacity 300ms ease;
}

.site-branding__link:hover .site-branding__logo {
	opacity: 0.65;
}

.site-branding__text {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;

	letter-spacing: 0.06em;
	text-transform: lowercase;
}


/* ==================================================
   PRIMARY NAVIGATION
================================================== */

.site-navigation {
	display: flex;
	align-items: center;

	margin-left: auto;

	flex: 0 1 auto;
}

.primary-menu {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;

	gap: clamp(20px, 2vw, 36px);

	margin: 0;
	padding: 0;

	list-style: none;

	white-space: nowrap;
}

.primary-menu li {
	flex: 0 0 auto;
}

.primary-menu a {
	position: relative;

	display: inline-block;

	padding: 10px 0;

	color: var(--color-ink);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
	text-transform: uppercase;

	transition:
		color 300ms ease,
		opacity 300ms ease;
}



/* underline */

.primary-menu a::after {
	content: "";

	position: absolute;
	left: 0;
	bottom: 3px;

	width: 100%;
	height: 1px;

	background: currentColor;

	transform: scaleX(0);
	transform-origin: right center;

	transition: transform 350ms ease;
}

.primary-menu a:hover::after {
	transform: scaleX(1);
	transform-origin: left center;
}


/* Current menu */

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--color-gold);
}


.eyebrow {
	color: var(--color-gold);

	font-size: 12px;
	letter-spacing: 0.15em;

	text-transform: uppercase;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
	background: var(--color-ink);
	color: var(--color-warm-white);

	padding: 0 0 36px;

	border-top: 0;
}

.site-footer__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;

	padding-top: 52px;

	border-top:
		1px solid rgba(242, 240, 233, 0.16);
}


/* BRAND */

.site-footer__brand {
	grid-column: 1 / span 4;
}

.site-footer__logo {
	font-size: 24px;
	font-weight: 600;
	line-height: 1;

	letter-spacing: 0.04em;
	text-transform: lowercase;

	transition: color 300ms ease;
}

.site-footer__logo:hover {
	color: var(--color-gold);
}


/* FOOTER NAV */

.site-footer__navigation {
	grid-column: 6 / span 3;
}

.footer-menu {
	margin: 0;
	padding: 0;

	list-style: none;
}

.footer-menu li + li {
	margin-top: 10px;
}

.footer-menu a,
.site-footer__social a {
	color: rgba(242, 240, 233, 0.7);

	font-size: 13px;
	line-height: 1.5;

	transition: color 300ms ease;
}

.footer-menu a:hover,
.site-footer__social a:hover {
	color: var(--color-gold);
}


/* SOCIAL */

.site-footer__social {
	grid-column: 10 / span 3;

	display: flex;
	flex-direction: column;
	align-items: flex-start;

	gap: 10px;
}


/* LOCATIONS */

.site-footer__locations {
	grid-column: 1 / -1;

	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 24px;

	margin-top: 70px;
	padding-top: 32px;

	border-top:
		1px solid rgba(242, 240, 233, 0.12);
}

.site-footer__location span {
	display: block;

	margin-bottom: 12px;

	color: var(--color-gold);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.site-footer__location p {
	margin: 0;

	color: rgba(242, 240, 233, 0.55);

	font-size: 12px;
	line-height: 1.7;
}


/* BOTTOM */

.site-footer__bottom {
	grid-column: 1 / -1;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;

	margin-top: 54px;
	padding-top: 22px;

	border-top:
		1px solid rgba(242, 240, 233, 0.12);
}

.site-footer__bottom p {
	margin: 0;

	color: rgba(242, 240, 233, 0.45);

	font-size: 11px;
	line-height: 1.4;

	letter-spacing: 0.05em;
}


/* CONTACT */

.site-footer__contact {
	display: flex;
	align-items: center;

	gap: 22px;
}

.site-footer__contact a {
	color: rgba(242, 240, 233, 0.55);

	font-size: 11px;
	line-height: 1.4;

	transition: color 300ms ease;
}

.site-footer__contact a:hover {
	color: var(--color-gold);
}

/* ==================================================
   MOBILE NAVIGATION
================================================== */

.mobile-menu-toggle {
	display: none;

	margin: 0;
	padding: 10px 0;

	border: 0;
	border-radius: 0;

	background: transparent;
	color: var(--color-ink);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
	text-transform: uppercase;

	cursor: pointer;
}


/* Mobile overlay hidden by default */

.mobile-navigation {
	position: fixed;

	top: 0;
	left: 0;

	z-index: 999;

	width: 100%;
	height: 100vh;
	height: 100dvh;

	background: var(--color-ink);
	color: var(--color-warm-white);

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transform: translateY(-10px);

	transition:
		opacity 350ms ease,
		visibility 350ms ease,
		transform 350ms ease;
}


/* Open state */

.mobile-navigation.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	transform: translateY(0);
}


.mobile-navigation__inner {
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;

	padding: 110px 24px 48px;
}


.mobile-menu {
	width: 100%;

	margin: 0;
	padding: 0;

	list-style: none;
}


.mobile-menu li {
	margin: 0;
	padding: 0;

	border-bottom:
		1px solid rgba(242, 240, 233, 0.15);
}


.mobile-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;

	padding: 20px 0;

	color: var(--color-warm-white);

	font-size: clamp(34px, 10vw, 52px);
	font-weight: 400;
	line-height: 1;

	letter-spacing: -0.03em;
	text-decoration: none;
}


.mobile-menu a::after {
	content: "↗";

	color: var(--color-gold);

	font-size: 18px;
}


body.mobile-menu-open {
	overflow: hidden;
}

/* ==================================================
   GLOBAL IMAGE TREATMENT
================================================== */

.hero__image,
.philosophy__media img,
.insight-card__image img {
	filter: grayscale(100%);
}

.work-card__image img {
	filter: none;
}

.hero__image,
.work-card__image img,
.philosophy__media img,
.insight-card__image img {
	transition:
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 500ms ease;
}

.work-card__image:hover img,
.philosophy__media:hover img,
.insight-card:hover .insight-card__image img {
	transform: scale(1.025);
}

.insight-card:hover .insight-card__image img {
	filter: grayscale(0%);
}

.hero__media,
.work-card__image,
.philosophy__media,
.insight-card__image {
	overflow: hidden;
	border-radius: 0;
}

/* ==================================================
   SELECTED WORK — DESKTOP
================================================== */

.work {
	padding-top: 100px;
	padding-bottom: 50px;
}

.work__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}

.work__header {
	margin-bottom: 80px;
}

.work__label {
	grid-column: 1 / span 3;
}

.work__intro {
	grid-column: 4 / span 7;
}

.work__intro h2 {
	margin: 0;
	max-width: 850px;
}


/* LIST */

.work__list {
	gap: 80px;
	margin-bottom: 25px;
}


/* CARD */

.work-card {
	display: block;
}


/* PROJECT 01 — RIGHT */

.work-card--right {
	width: 68%;
	margin-left: auto;
	margin-right: 0;
}


/* PROJECT 02 — LEFT */

.work-card--left {
	width: 68%;
	margin-right: auto;
	margin-left: 0;
}


/* PROJECT 03 — FULL */

.work-card--full {
	width: 100%;
}


/* IMAGE */

.work-card__image {
	display: block;
	width: 100%;

	overflow: hidden;
	background: #ddd;
}

.work-card--right .work-card__image,
.work-card--left .work-card__image {
	aspect-ratio: 4 / 3;
}

.work-card--full .work-card__image {
	aspect-ratio: 16 / 8;
}

.work-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}


/* META */

.work-card__meta {
	display: grid;

	grid-template-columns:
		50px
		minmax(0, 1fr)
		auto;

	column-gap: 20px;

	align-items: start;

	margin-top: 18px;
}

.work-card__number,
.work-card__year {
	padding-top: 5px;

	color: var(--color-stone);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.1em;
}

.work-card__info h3 {
	margin: 0;

	font-size: clamp(30px, 3vw, 46px);
	font-weight: 400;
	line-height: 1;

	letter-spacing: -0.035em;
}

.work-card__info p {
	margin: 12px 0 80px;

	color: var(--color-stone);

	font-size: 24px;
	line-height: 1.5;
}


/* FOOTER */

.work__footer {
	margin-top: 80px;
}

/* ==================================================
   SINGLE WORK
================================================== */

.single-work {
	background: var(--color-warm-white);
	color: var(--color-ink);
}


/* HEADER */

.single-work__header {
	padding-top: clamp(50px, 11vw, 165px);
	padding-bottom: clamp(70px, 8vw, 100px);
}

.single-work__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;
}

.single-work__label {
	grid-column: 1 / span 3;
	padding-top: 8px;
}

.single-work__label p {
	margin: 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.single-work__intro {
	grid-column: 4 / span 9;
}

.single-work__title {
	max-width: 1000px;

	margin: 0;

	font-size: clamp(64px, 7vw, 110px);
	font-weight: 400;
	line-height: 0.95;

	letter-spacing: -0.055em;
}

.single-work__type {
	margin: 32px 0 0;

	color: var(--color-stone);

	font-size: 16px;
	line-height: 1.5;
}


/* FEATURED IMAGE */

.single-work__featured {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	overflow: hidden;
}

.single-work__featured-image {
	display: block;

	width: 100%;
	height: auto;
}


/* CONTENT */

.single-work__content {
	padding-top: clamp(80px, 9vw, 130px);
	padding-bottom: var(--section-space-lg);
}

.single-work__content-inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		900px
	);

	margin-inline: auto;
}

.single-work__content-inner > :first-child {
	margin-top: 0;
}

.single-work__content-inner p {
	font-size: 18px;
	line-height: 1.7;
}

/* ==================================================
   FEATURED WORK — IMAGE SLIDER
================================================== */

.work-card__slider {
	position: relative;
	width: 100%;
}

.work-card__slider-track {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #ddd;
}
.work-card__slider-track {
	cursor: grab;
}

.work-card__slider-track:active {
	cursor: grabbing;
}
.work-card--right .work-card__slider-track,
.work-card--left .work-card__slider-track {
	aspect-ratio: 4 / 3;
}

.work-card--full .work-card__slider-track {
	aspect-ratio: 16 / 8;
}

.work-card__slide {
	position: absolute;
	inset: 0;

	display: block;

	opacity: 0;
	visibility: hidden;

	transition:
		opacity 500ms ease,
		visibility 500ms ease;
}

.work-card__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.work-card__slide-image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

.work-card__slide {
	overflow: hidden;
}

.work-card__slide-image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: center;

	background: #f2f0e9;
}

.work-card__slider-ui {
	display: flex;
	align-items: center;
	justify-content: flex-end;

	gap: 14px;

	margin-top: 14px;
}

.work-card__slider-prev,
.work-card__slider-next {
	appearance: none;

	padding: 0;

	border: 0;
	background: transparent;

	color: var(--color-ink);

	font: inherit;
	font-size: 18px;
	line-height: 1;

	cursor: pointer;
}

.work-card__slider-count {
	min-width: 48px;

	color: var(--color-stone);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.1em;

	text-align: center;
}

/* ==================================================
   SINGLE WORK — CASE STUDY GALLERY
================================================== */

.case-study {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	padding-bottom: var(--section-space-lg);
}

.case-study__viewport {
	width: 100%;
}

.case-study__track {
	position: relative;

	width: 100%;

	aspect-ratio: 16 / 10;

	overflow: hidden;

	background: #fff;
}

.case-study__slide {
	position: absolute;
	inset: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	visibility: hidden;

	transition:
		opacity 500ms ease,
		visibility 500ms ease;
}

.case-study__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.case-study__media {
	width: 100%;
	height: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
}

.case-study__image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: center;
}

.case-study__slide-info {
	position: absolute;

	left: 20px;
	bottom: 18px;
}

.case-study__counter {
	font-size: 10px;
	font-weight: 500;

	letter-spacing: 0.12em;

	color: var(--color-stone);
}


/* NAVIGATION */

.case-study__navigation {
	position: relative;
	z-index: 20;

	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;

	margin-top: 18px;

	pointer-events: auto;
}

.case-study__viewport {
	position: relative;
	z-index: 1;
}

.case-study__track {
	position: relative;
	z-index: 1;
}

.case-study__prev,
.case-study__next {
	position: relative;
	z-index: 30;

	pointer-events: auto;
	cursor: pointer;
}

.case-study__slide {
	pointer-events: none;
}

.case-study__slide.is-active {
	pointer-events: auto;
}

.case-study__prev,
.case-study__next {
	appearance: none;

	border: 0;
	background: transparent;

	padding: 0;

	font: inherit;
	font-size: 20px;

	cursor: pointer;

	color: var(--color-ink);
}

.case-study__prev {
	text-align: left;
}

.case-study__next {
	text-align: right;
}

.case-study__progress {
	text-align: center;

	font-size: 10px;

	letter-spacing: 0.12em;

	color: var(--color-stone);
}

/* ==================================================
   SINGLE WORK — CASE STUDY CONTENT
================================================== */

.work-case-study {
	padding-top: clamp(90px, 10vw, 140px);
	padding-bottom: var(--section-space-lg);
}

.work-case-study__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}

.work-case-study__section {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;

	padding: 48px 0;

	border-top: 1px solid rgba(11, 11, 10, 0.16);
}

.work-case-study__section:last-child {
	border-bottom: 1px solid rgba(11, 11, 10, 0.16);
}

.work-case-study__label {
	grid-column: 1 / span 3;
}

.work-case-study__label span {
	display: block;

	margin-bottom: 12px;

	color: var(--color-stone);

	font-size: 10px;
	line-height: 1;

	letter-spacing: 0.12em;
}

.work-case-study__label p {
	margin: 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.work-case-study__content {
	grid-column: 4 / span 8;
}

.work-case-study__content p {
	margin: 0;

	font-size: 18px;
	line-height: 1.7;
}

.work-case-study__lead {
	font-size: clamp(28px, 3vw, 42px) !important;
	line-height: 1.25 !important;

	letter-spacing: -0.03em;
}

.work-case-study__list {
	margin: 0;
	padding: 0;

	list-style: none;
}

.work-case-study__list li {
	padding: 14px 0;

	border-bottom: 1px solid rgba(11, 11, 10, 0.12);

	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.2;

	letter-spacing: -0.02em;
}

.work-case-study__list li:first-child {
	padding-top: 0;
}

/* ==================================================
   SINGLE WORK — VISUAL REFINEMENT
================================================== */


/* PROJECT HEADER */

.single-work__header {
	padding-top: clamp(120px, 11vw, 165px);
	padding-bottom: clamp(64px, 7vw, 96px);
}

.single-work__title {
	max-width: 1100px;

	font-size: clamp(64px, 7vw, 108px);
	line-height: 0.94;
	letter-spacing: -0.055em;
}

.single-work__type {
	margin-top: 28px;

	color: var(--color-stone);

	font-size: 14px;
	line-height: 1.5;
}


/* ==================================================
   PROJECT GALLERY
================================================== */

.case-study {
	padding-bottom: 0;
}

.case-study__track {
	aspect-ratio: 16 / 9;

	background: #ffffff;
}

.case-study__image {
	width: 100%;
	height: 100%;

	object-fit: contain;
	object-position: center;
}


/* NAVIGATION */

.case-study__navigation {
	position: relative;
	z-index: 20;

	display: grid;
	grid-template-columns: 48px 1fr 48px;

	align-items: center;

	margin-top: 20px;
	padding-bottom: 0;

	border-bottom: 1px solid rgba(11, 11, 10, 0.15);
}

.case-study__prev,
.case-study__next {
	width: 48px;
	height: 48px;

	display: flex;
	align-items: center;

	border: 0;
	background: transparent;

	font-size: 20px;

	cursor: pointer;
}

.case-study__prev {
	justify-content: flex-start;
}

.case-study__next {
	justify-content: flex-end;
}

.case-study__progress {
	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;

	color: var(--color-stone);
}


/* Hide duplicate counter inside image */

.case-study__slide-info {
	display: none;
}


/* ==================================================
   CASE STUDY CONTENT
================================================== */

.work-case-study {
	padding-top: clamp(56px, 5vw, 80px);
	padding-bottom: clamp(100px, 10vw, 150px);
}

.work-case-study__section {
	display: grid;

	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;

	padding: clamp(42px, 4vw, 60px) 0;

	border-top: 1px solid rgba(11, 11, 10, 0.15);
}

.work-case-study__section:last-child {
	border-bottom: 1px solid rgba(11, 11, 10, 0.15);
}


/* LABEL */

.work-case-study__label {
	grid-column: 1 / span 3;
}

.work-case-study__label span {
	display: block;

	margin-bottom: 14px;

	color: var(--color-stone);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
}

.work-case-study__label p {
	margin: 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.17em;
	text-transform: uppercase;
}


/* CONTENT */

.work-case-study__content {
	grid-column: 4 / span 8;

	max-width: 900px;
}

.work-case-study__content p {
	margin: 0;

	max-width: 760px;

	font-size: 24px;
	line-height: 1.7;
}


/* OVERVIEW */

.work-case-study__lead {
	max-width: 820px !important;

	font-size: clamp(24px, 2.2vw, 24px) !important;
	font-weight: 400;

	line-height: 1.3 !important;
	letter-spacing: -0.025em;
}


/* SCOPE + DELIVERABLES */

.work-case-study__list {
	margin: 0;
	padding: 0;

	list-style: none;
}

.work-case-study__list li {
	position: relative;

	padding: 14px 0;

	border-bottom: 1px solid rgba(11, 11, 10, 0.12);

	font-size: clamp(20px, 1.8vw, 24px);
	font-weight: 400;
	line-height: 1.25;

	letter-spacing: -0.02em;
}

.work-case-study__list li:first-child {
	padding-top: 0;
}

.work-case-study__list li:last-child {
	border-bottom: 0;
}
/* ==================================================
   SINGLE WORK — PROJECT NAVIGATION
================================================== */

.work-pagination {
	padding-bottom: clamp(100px, 10vw, 150px);
}

.work-pagination__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	display: grid;
	grid-template-columns: 1fr 1fr;

	border-top: 1px solid rgba(11, 11, 10, 0.16);
	border-bottom: 1px solid rgba(11, 11, 10, 0.16);
}

.work-pagination__item {
	min-width: 0;
}

.work-pagination__item--prev {
	border-right: 1px solid rgba(11, 11, 10, 0.16);
}

.work-pagination__link {
	display: flex;
	flex-direction: column;

	min-height: 230px;

	padding: 34px 40px 38px;

	color: var(--color-ink);
	text-decoration: none;

	transition: background-color 300ms ease;
}

.work-pagination__item--prev .work-pagination__link {
	align-items: flex-start;
	text-align: left;
}

.work-pagination__item--next .work-pagination__link {
	align-items: flex-end;
	text-align: right;
}

.work-pagination__direction {
	color: var(--color-gold);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.work-pagination__title {
	margin-top: auto;

	max-width: 90%;

	font-size: clamp(30px, 3vw, 46px);
	font-weight: 400;
	line-height: 1;

	letter-spacing: -0.04em;
}

.work-pagination__link:hover {
	background: rgba(11, 11, 10, 0.035);
}

/* ==================================================
   SINGLE INSIGHT
================================================== */

.single-insight {
	background: var(--color-warm-white);
	color: var(--color-ink);
}


/* HEADER */

.single-insight__header {
	padding-top: clamp(120px, 11vw, 165px);
	padding-bottom: clamp(64px, 7vw, 96px);
}

.single-insight__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;
}

.single-insight__label {
	grid-column: 1 / span 3;
	padding-top: 8px;
}

.single-insight__label p {
	margin: 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}


/* INTRO */

.single-insight__intro {
	grid-column: 4 / span 9;
}

.single-insight__meta {
	display: flex;
	align-items: center;
	gap: 20px;

	margin-bottom: 28px;

	color: var(--color-stone);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.single-insight__title {
	max-width: 1100px;

	margin: 0;

	font-size: clamp(58px, 6vw, 96px);
	font-weight: 400;
	line-height: 0.98;

	letter-spacing: -0.05em;
}

.single-insight__excerpt {
	max-width: 760px;

	margin: 34px 0 0;

	color: var(--color-stone);

	font-size: 18px;
	line-height: 1.6;
}


/* FEATURED IMAGE */

.single-insight__featured {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	overflow: hidden;
}

.single-insight__featured-image {
	display: block;

	width: 100%;
	height: auto;
}


/* CONTENT */

.single-insight__content {
	padding-top: clamp(80px, 8vw, 120px);
	padding-bottom: clamp(120px, 12vw, 180px);
}

.single-insight__content-inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		760px
	);

	margin-inline: auto;
}

.single-insight__content-inner > *:first-child {
	margin-top: 0;
}

.single-insight__content-inner > *:last-child {
	margin-bottom: 0;
}

.single-insight__content-inner p {
	margin: 0 0 28px;

	font-size: 17px;
	line-height: 1.75;
}

.single-insight__content-inner h2 {
	margin: 72px 0 28px;

	font-size: clamp(34px, 3.5vw, 48px);
	font-weight: 400;
	line-height: 1.08;

	letter-spacing: -0.035em;
}

.single-insight__content-inner h3 {
	margin: 52px 0 22px;

	font-size: clamp(26px, 2.5vw, 34px);
	font-weight: 400;
	line-height: 1.15;

	letter-spacing: -0.025em;
}

.single-insight__content-inner ul,
.single-insight__content-inner ol {
	margin: 0 0 32px;
	padding-left: 24px;
}

.single-insight__content-inner li {
	margin-bottom: 10px;

	font-size: 17px;
	line-height: 1.7;
}

.single-insight__content-inner blockquote {
	margin: 64px 0;
	padding-left: 28px;

	border-left: 1px solid var(--color-gold);

	font-size: clamp(24px, 2.5vw, 34px);
	line-height: 1.35;

	letter-spacing: -0.025em;
}

/* ==================================================
   SINGLE INSIGHT — ARTICLE NAVIGATION
================================================== */

.insight-pagination {
	padding-bottom: clamp(100px, 10vw, 150px);
}

.insight-pagination__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	display: grid;
	grid-template-columns: 1fr 1fr;
}


/* PREVIOUS / NEXT */

.insight-pagination__item {
	min-width: 0;

	border-top: 1px solid rgba(11, 11, 10, 0.16);
	border-bottom: 1px solid rgba(11, 11, 10, 0.16);
}

.insight-pagination__item--prev {
	border-right: 1px solid rgba(11, 11, 10, 0.16);
}

.insight-pagination__link {
	display: flex;
	flex-direction: column;

	min-height: 220px;

	padding: 34px 40px 38px;

	color: var(--color-ink);
	text-decoration: none;

	transition: background-color 300ms ease;
}

.insight-pagination__item--prev .insight-pagination__link {
	align-items: flex-start;
	text-align: left;
}

.insight-pagination__item--next .insight-pagination__link {
	align-items: flex-end;
	text-align: right;
}

.insight-pagination__direction {
	color: var(--color-gold);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.insight-pagination__title {
	max-width: 90%;

	margin-top: auto;

	font-size: clamp(26px, 2.5vw, 38px);
	font-weight: 400;
	line-height: 1.05;

	letter-spacing: -0.035em;
}

.insight-pagination__link:hover {
	background: rgba(11, 11, 10, 0.035);
}


/* BACK TO THINKING */

.insight-pagination__back {
	grid-column: 1 / -1;

	display: flex;
	justify-content: center;

	padding-top: 42px;
}

.insight-pagination__back-link {
	display: inline-flex;
	align-items: center;

	padding-bottom: 7px;

	border-bottom: 1px solid rgba(11, 11, 10, 0.4);

	color: var(--color-ink);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.16em;
	text-transform: uppercase;

	text-decoration: none;

	transition:
		color 300ms ease,
		border-color 300ms ease;
}

.insight-pagination__back-link:hover {
	color: var(--color-gold);
	border-color: var(--color-gold);
}

/* ==================================================
   SINGLE INSIGHT — VISUAL REFINEMENT
================================================== */


/* HEADER */

.single-insight__header {
	padding-top: clamp(130px, 11vw, 165px);
	padding-bottom: clamp(56px, 6vw, 80px);
}

.single-insight__label {
	padding-top: 6px;
}

.single-insight__intro {
	grid-column: 4 / span 8;
}

.single-insight__meta {
	margin-bottom: 24px;
}

.single-insight__title {
	max-width: 1000px;

	font-size: clamp(54px, 5.5vw, 86px);
	line-height: 0.98;

	letter-spacing: -0.045em;
}

.single-insight__excerpt {
	max-width: 680px;

	margin-top: 28px;

	font-size: 17px;
	line-height: 1.6;
}


/* FEATURED IMAGE */

.single-insight__featured {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	aspect-ratio: 16 / 8.5;

	background: #ddd;
	overflow: hidden;
}

.single-insight__featured-image {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;
}


/* ARTICLE CONTENT */

.single-insight__content {
	padding-top: clamp(70px, 6vw, 96px);
	padding-bottom: clamp(90px, 8vw, 120px);
}

.single-insight__content-inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		720px
	);

	margin-inline: auto;
}


/* BODY COPY */

.single-insight__content-inner p {
	margin: 0 0 26px;

	font-size: 17px;
	line-height: 1.75;
}


/* HEADINGS */

.single-insight__content-inner h2 {
	margin: 68px 0 26px;

	font-size: clamp(32px, 3vw, 44px);
	font-weight: 400;
	line-height: 1.1;

	letter-spacing: -0.035em;
}

.single-insight__content-inner h3 {
	margin: 48px 0 20px;

	font-size: clamp(24px, 2.2vw, 30px);
	font-weight: 400;
	line-height: 1.2;

	letter-spacing: -0.025em;
}


/* LIST */

.single-insight__content-inner ul,
.single-insight__content-inner ol {
	margin: 0 0 32px;
	padding-left: 22px;
}

.single-insight__content-inner li {
	margin-bottom: 10px;

	font-size: 17px;
	line-height: 1.7;
}


/* QUOTE */

.single-insight__content-inner blockquote {
	margin: 56px 0;

	padding-left: 26px;

	border-left: 1px solid var(--color-gold);
}

.single-insight__content-inner blockquote p {
	margin: 0;

	font-size: clamp(24px, 2.2vw, 32px);
	line-height: 1.4;

	letter-spacing: -0.025em;
}


/* IMAGES INSIDE ARTICLE */

.single-insight__content-inner img {
	display: block;

	max-width: 100%;
	height: auto;

	margin-top: 48px;
	margin-bottom: 48px;
}

.single-insight__content-inner figure {
	margin-top: 48px;
	margin-bottom: 48px;
}

.single-insight__content-inner figure img {
	margin: 0;
}

.single-insight__content-inner figcaption {
	margin-top: 12px;

	color: var(--color-stone);

	font-size: 11px;
	line-height: 1.5;
}


/* LINKS INSIDE ARTICLE */

.single-insight__content-inner a {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* ==================================================
   SINGLE INSIGHT — READING WIDTH FIX
================================================== */

.single-insight .single-insight__content-inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		760px
	);

	max-width: 760px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
}

.single-insight .single-insight__content-inner p,
.single-insight .single-insight__content-inner ul,
.single-insight .single-insight__content-inner ol,
.single-insight .single-insight__content-inner h2,
.single-insight .single-insight__content-inner h3,
.single-insight .single-insight__content-inner blockquote {
	max-width: 100%;
}

/* ==================================================
   CLIENT LOGOS
================================================== */

.client-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.client-item__logo {
	display: flex;
	align-items: center;
	min-height: 55px;
	margin-bottom: 28px;
}

.client-item__logo-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 110px;
	max-height: 42px;
	object-fit: contain;

	filter: grayscale(100%);
	opacity: 0.65;

	transition:
		opacity 300ms ease,
		filter 300ms ease;
}

.client-item:hover .client-item__logo-image {
	filter: grayscale(0%);
	opacity: 1;
}

.client-item__name {
	display: block;
}

/* ==================================================
   CLIENTS GRID — REFINEMENT
================================================== */

.clients__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 0;
	row-gap: 0;
}

.client-item {
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 28px 24px 24px 0;
}

.client-item__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 48px;
	margin-bottom: 24px;
}

.client-item__logo-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 110px;
	max-height: 40px;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.65;
}

/* ==================================================
   CLIENT ITEMS — CENTER ALIGN
================================================== */

.client-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.client-item__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-bottom: 20px;
}

.client-item__logo-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 110px;
	max-height: 40px;
	object-fit: contain;
}

.client-item__name {
	display: block;
	width: 100%;
	text-align: center;
}

/* ==================================================
   FOOTER LOGO
================================================== */

.site-footer__logo {
	display: inline-flex;
	align-items: center;
}

.site-footer__logo-image {
	display: block;
	width: auto;
	height: auto;
	max-width: 180px;
	max-height: 48px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.site-footer__logo-text {
	color: #fff;

}
/* ==================================================
   RESPONSIVE / MOBILE
================================================== */
@media (max-width: 768px) {

	:root {
		--page-padding: 24px;
		--section-space-lg: 100px;
		--section-space-md: 72px;
	}


	/* HEADER */

	.site-header {
		height: 78px;
	}

	.site-header.is-scrolled {
		height: 70px;
	}

	.site-header__inner {
		gap: 20px;
	}


	/* LOGO */

	.site-branding__logo {
		height: 26px;
		max-width: 190px;
		transition:
		height 300ms ease,
		opacity 300ms ease,
		filter 300ms ease;
	}

	/* DESKTOP MENU OFF */

	.site-navigation {
		display: none;
	}


	/* MOBILE TOGGLE ON */

	.mobile-menu-toggle {
		position: relative;
		z-index: 1001;

		display: inline-flex;
		align-items: center;
		justify-content: center;
	}


	/* ==================================================
   HERO — MOBILE
	================================================== */

.hero {
	min-height: 100svh;
}

.hero__inner {
	padding-top: 118px;
	padding-bottom: 24px;
}

.hero__content {
	max-width: 100%;
}

.hero__title {
	max-width: 100%;

	font-size: clamp(46px, 13vw, 64px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.hero__meta {
	margin-top: 26px;

	font-size: 13px;
	line-height: 1.5;

	white-space: normal;
}

.hero__cta {
	margin-top: 30px;
}

.hero__index {
	margin-top: 42px;
	margin-right: 0;
}

.hero__overlay {
	background:
		linear-gradient(
			to bottom,
			rgba(11, 11, 10, 0.70) 0%,
			rgba(11, 11, 10, 0.50) 55%,
			rgba(11, 11, 10, 0.72) 100%
		);
}

	/* ==================================================
   SELECTED WORK — MOBILE
================================================== */

.work__inner {
	width: 100%;
	max-width: none;

	padding-left: 24px;
	padding-right: 24px;
}

.work__list {
	gap: 80px;
}

.work-card,
.work-card__image {
	width: 100%;
}

.work-card--right,
.work-card--left,
.work-card--full {
	width: 100%;
	margin: 0;
}

.work-card__meta {
	grid-template-columns: 42px 1fr auto;
	column-gap: 12px;

	margin-top: 16px;
}

.work-card__number,
.work-card__year {
	font-size: 11px;
}

.work-card__info h3 {
	font-size: 28px;
	line-height: 1.02;
}

.work-card__info p {
	margin-top: 8px;

	font-size: 12px;
	line-height: 1.5;
}

.work__footer {
	justify-content: flex-start;

	margin-top: 70px;
}

/* ==================================================
   ABOUT / INTRO — MOBILE
================================================== */

.intro {
	padding-top: 95px;
	padding-bottom: 105px;
}

.intro__inner {
	display: block;
}

.intro__label {
	margin-bottom: 40px;
}

.intro__label p {
	margin: 0;
}

.intro__content {
	width: 100%;
	max-width: none;
}

.intro__title {
	width: 100%;
	max-width: none;

	font-size: clamp(42px, 12vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.04em;
}

.intro__body {
	max-width: 100%;

	margin-top: 44px;
	margin-left: 0;
}

.intro__body p {
	font-size: 17px;
	line-height: 1.65;
}

/* ==================================================
   SINGLE WORK — MOBILE
================================================== */

.single-work__header {
	padding-top: 110px;
	padding-bottom: 52px;
}

.single-work__inner {
	display: block;

	width: 100%;
	max-width: none;

	padding-left: 24px;
	padding-right: 24px;
}

.single-work__label {
	width: 100%;

	padding-top: 0;
	margin-bottom: 32px;
}

.single-work__label p {
	margin: 0;

	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.16em;
}

.single-work__intro {
	width: 100%;
}

.single-work__title {
	width: 100%;
	max-width: none;

	font-size: clamp(46px, 13.5vw, 64px);
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.single-work__type {
	margin-top: 22px;

	font-size: 14px;
	line-height: 1.5;
}

/* FEATURED IMAGE */

.single-work__featured {
	width: 100%;

	margin: 0;

	padding-left: 24px;
	padding-right: 24px;
}

.single-work__featured-image {
	width: 100%;
	height: auto;
}

/* CONTENT */

.single-work__content {
	padding-top: 64px;
	padding-bottom: 100px;
}

.single-work__content-inner {
	width: 100%;
	max-width: none;

	padding-left: 24px;
	padding-right: 24px;
}

.single-work__content-inner p {
	font-size: 16px;
	line-height: 1.65;
}

/* ==================================================
   FEATURED WORK SLIDER — MOBILE
================================================== */

.work-card__slider-track {
	aspect-ratio: 4 / 3 !important;

	touch-action: pan-y;
}

.work-card__slide-image {
	object-fit: contain;
	object-position: center;
}

.work-card__slider-ui {
	justify-content: space-between;

	width: 100%;

	margin-top: 14px;
}

.work-card__slider-prev,
.work-card__slider-next {
	width: 36px;
	height: 36px;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;
}

.work-card__slider-count {
	flex: 1;

	text-align: center;
}

/* ==================================================
   SINGLE WORK GALLERY + CASE STUDY — MOBILE
================================================== */

/* GALLERY */

.case-study {
	width: 100%;

	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 100px;
}

.case-study__track {
	aspect-ratio: 4 / 3 !important;

	background: #fff;

	touch-action: pan-y;
}

.case-study__image {
	object-fit: contain;
}

.case-study__navigation {
	grid-template-columns: 40px 1fr 40px;

	margin-top: 12px;
}

.case-study__prev,
.case-study__next {
	width: 40px;
	height: 40px;
}

.case-study__slide-info {
	left: 12px;
	bottom: 12px;
}


/* CASE STUDY CONTENT */

.work-case-study {
	padding-top: 80px;
	padding-bottom: 110px;
}

.work-case-study__inner {
	width: 100%;

	padding-left: 24px;
	padding-right: 24px;
}

.work-case-study__section {
	display: block;

	padding: 42px 0;
}

.work-case-study__label {
	margin-bottom: 30px;
}

.work-case-study__label span {
	margin-bottom: 10px;

	font-size: 9px;
}

.work-case-study__label p {
	font-size: 10px;
	letter-spacing: 0.16em;
}

.work-case-study__content {
	width: 100%;
	max-width: none;
}

.work-case-study__lead {
	max-width: none !important;

	font-size: clamp(28px, 6.5vw, 38px) !important;
	line-height: 1.17 !important;
	letter-spacing: -0.025em;
}

.work-case-study__content p {
	max-width: none;

	font-size: 16px;
	line-height: 1.65;
}

.work-case-study__list li {
	padding: 13px 0;

	font-size: clamp(23px, 7vw, 30px);
	line-height: 1.15;
	letter-spacing: -0.02em;
}
/* ==================================================
   PROJECT NAVIGATION — MOBILE
================================================== */

.work-pagination {
	padding-bottom: 80px;
}

.work-pagination__inner {
	width: 100%;

	margin: 0;

	padding-left: 24px;
	padding-right: 24px;

	display: block;

	border-bottom: 0;
}

.work-pagination__item--prev {
	border-right: 0;
}

.work-pagination__item {
	border-bottom: 1px solid rgba(11, 11, 10, 0.16);
}

.work-pagination__link {
	min-height: 150px;

	padding: 26px 0 28px;
}

.work-pagination__item--next .work-pagination__link {
	align-items: flex-start;
	text-align: left;
}

.work-pagination__title {
	max-width: 100%;

	font-size: clamp(28px, 8vw, 36px);
	line-height: 1;
}
/* ==================================================
   CAPABILITIES — MOBILE
================================================== */

.capabilities {
	padding-top: 95px;
	padding-bottom: 105px;
}

.capabilities__header {
	display: block !important;
	grid-template-columns: none !important;

	margin-bottom: 65px;
}

.capabilities__label,
.capabilities__intro {
	grid-column: auto !important;
}

.capabilities__label {
	display: block;
	width: 100%;

	margin-bottom: 36px;
}

.capabilities__label p {
	margin: 0;
}

.capabilities__intro {
	display: block;

	width: 100%;
	max-width: none;

	margin: 0;
}

.capabilities__intro h2 {
	width: 100%;
	max-width: none;

	margin: 0;

	font-size: clamp(38px, 10vw, 52px);
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.capability-item {
	grid-template-columns:
		36px
		minmax(0, 1fr)
		auto;

	column-gap: 12px;

	min-height: 82px;
}

.capability-item__title {
	font-size: clamp(26px, 7vw, 34px);
	line-height: 1.05;
}

.capability-item__arrow {
	font-size: 16px;
}

.capability-item:hover {
	padding-left: 0;
}

/* ==================================================
   PHILOSOPHY — MOBILE
================================================== */

.philosophy {
	padding-top: 95px;
	padding-bottom: 105px;
}

.philosophy__label {
	margin-bottom: 48px;
}

.philosophy__content {
	display: block !important;
	grid-template-columns: none !important;
}

.philosophy__statement {
	position: relative;

	display: block !important;

	width: 100%;

	grid-column: auto !important;
}

.philosophy__title {
	width: 100% !important;
	max-width: none !important;
}

.philosophy__statement h2 {
	width: 100%;
	max-width: none;

	margin: 0;

	font-size: clamp(42px, 11vw, 54px);
	line-height: 1;
	letter-spacing: -0.04em;
}

.philosophy__media {
	position: static !important;

	display: block !important;

	width: 100% !important;
	max-width: none !important;

	height: auto !important;
	aspect-ratio: auto !important;

	margin: 44px 0 0 !important;

	overflow: hidden;

	grid-column: auto !important;
	transform: none !important;
}

.philosophy__media img {
	display: block;

	width: 100% !important;
	height: auto !important;

	aspect-ratio: 16 / 10;
	object-fit: cover;

	filter: grayscale(100%);
}

.philosophy__lead {
	margin: 48px 0 0;

	font-size: clamp(26px, 7.5vw, 34px);
	line-height: 1.15;
}

.philosophy__body {
	width: 100%;
	max-width: none;

	margin: 30px 0 0;
}

.philosophy__body p {
	width: 100%;
	max-width: 30em;

	margin: 0;

	font-size: 16px;
	line-height: 1.6;
}

/* ==================================================
   CLIENTS / SELECTED PARTNERS — MOBILE
================================================== */

.clients {
	padding: 0 0 110px;
}

.clients__header {
	display: block !important;
	grid-template-columns: none !important;

	margin-bottom: 60px;
}

.clients__label,
.clients__intro {
	grid-column: auto !important;
}

.clients__label {
	width: 100%;
	margin-bottom: 36px;
}

.clients__label p {
	margin: 0;
}

.clients__intro {
	width: 100%;
	max-width: none;
}

.clients__intro h2 {
	width: 100%;
	max-width: none;

	margin: 0;

	font-size: clamp(34px, 9vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

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

	width: 100%;
	margin-top: 56px;

	border-top: 1px solid var(--color-line);
	border-left: 1px solid var(--color-line);
}

.client-item {
	display: flex;
	align-items: center;
	justify-content: center;

	min-height: 110px;
	padding: 18px;

	border-right: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);

	text-align: center;
}

.client-item span {
	font-size: 11px;
	line-height: 1.2;
	letter-spacing: 0.12em;
}

/* ==================================================
   INSIGHTS — MOBILE
================================================== */

.insights {
	padding: 0 0 110px;
}

.insights__header {
	display: block !important;
	grid-template-columns: none !important;

	margin-bottom: 60px;
}

.insights__label,
.insights__intro {
	grid-column: auto !important;
}

.insights__label {
	width: 100%;
	margin-bottom: 36px;
}

.insights__label p {
	margin: 0;
}

.insights__intro {
	width: 100%;
	max-width: none;
}

.insights__intro h2 {
	width: 100%;
	max-width: none;

	margin: 0;

	font-size: clamp(34px, 9vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.insights__grid {
	display: grid;
	grid-template-columns: 1fr !important;
	gap: 0;

	margin-top: 64px;
}

.insight-card {
	width: 100%;

	margin-bottom: 36px;
	padding: 0 0 36px;

	border-bottom: 1px solid var(--color-line);
}

.insight-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;

	overflow: hidden;
}

.insight-card__image img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

.insight-card__meta {
	margin-top: 18px;
}

.insight-card__title {
	max-width: 100%;

	margin-top: 18px;

	font-size: clamp(26px, 7vw, 32px);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.insights__footer {
	margin-top: 8px;
}

.insights__all {
	display: inline-flex;
}

/* ==================================================
   SINGLE INSIGHT — MOBILE
================================================== */

.single-insight__header {
	padding-top: 110px;
	padding-bottom: 52px;
}

.single-insight__inner {
	display: block;

	width: 100%;
	max-width: none;

	padding-left: 24px;
	padding-right: 24px;
}

.single-insight__label {
	padding-top: 0;
	margin-bottom: 32px;
}

.single-insight__label p {
	font-size: 10px;
	letter-spacing: 0.16em;
}

.single-insight__intro {
	width: 100%;
}

.single-insight__meta {
	margin-bottom: 22px;

	gap: 14px;

	font-size: 9px;
}

.single-insight__title {
	width: 100%;
	max-width: none;

	font-size: clamp(42px, 12vw, 58px);
	line-height: 0.98;

	letter-spacing: -0.045em;
}

.single-insight__excerpt {
	margin-top: 24px;

	font-size: 15px;
	line-height: 1.6;
}


/* FEATURED IMAGE */

.single-insight__featured {
	width: 100%;

	padding-left: 24px;
	padding-right: 24px;
}


/* CONTENT */

.single-insight__content {
	padding-top: 64px;
	padding-bottom: 100px;
}

.single-insight__content-inner {
	width: 100%;
	max-width: none;

	padding-left: 24px;
	padding-right: 24px;
}

.single-insight__content-inner p {
	margin-bottom: 24px;

	font-size: 16px;
	line-height: 1.7;
}

.single-insight__content-inner h2 {
	margin-top: 56px;
	margin-bottom: 22px;

	font-size: 32px;
	line-height: 1.1;
}

.single-insight__content-inner h3 {
	margin-top: 42px;
	margin-bottom: 18px;

	font-size: 26px;
}

.single-insight__content-inner li {
	font-size: 16px;
	line-height: 1.65;
}

.single-insight__content-inner blockquote {
	margin: 48px 0;
	padding-left: 20px;

	font-size: 24px;
	line-height: 1.4;
}

/* ==================================================
   ARTICLE NAVIGATION — MOBILE
================================================== */

.insight-pagination {
	padding-bottom: 80px;
}

.insight-pagination__inner {
	width: 100%;

	padding-left: 24px;
	padding-right: 24px;

	display: block;
}

.insight-pagination__item {
	width: 100%;

	border-right: 0;
	border-bottom: 1px solid rgba(11, 11, 10, 0.16);
}

.insight-pagination__item--prev {
	border-right: 0;
}

.insight-pagination__link {
	min-height: 145px;

	padding: 26px 0 28px;
}

.insight-pagination__item--prev .insight-pagination__link,
.insight-pagination__item--next .insight-pagination__link {
	align-items: flex-start;
	text-align: left;
}

.insight-pagination__direction {
	font-size: 9px;
	letter-spacing: 0.15em;
}

.insight-pagination__title {
	max-width: 100%;

	font-size: clamp(24px, 7vw, 30px);
	line-height: 1.08;
}

.insight-pagination__back {
	display: flex;
	justify-content: flex-start;

	padding-top: 30px;
}

.insight-pagination__back-link {
	font-size: 9px;
	letter-spacing: 0.15em;
}

/* ==================================================
   FINAL CTA — MOBILE
================================================== */

.final-cta {
	padding: 90px 0 40px;
}

.final-cta__inner {
	width: 100%;
}

.final-cta__label {
	margin-bottom: 58px;
}

.final-cta__label p {
	margin-bottom: 60px;
}

.final-cta__content {
	width: 100%;
}

.final-cta__eyebrow {
	margin-bottom: 22px;

	font-size: 14px;
	line-height: 1.4;
}

.final-cta__title {
	position: relative;

	display: block;

	width: 100%;
	max-width: none;

	font-size: clamp(58px, 17vw, 82px);
	line-height: 0.9;
	letter-spacing: -0.055em;
}

.final-cta__title > span:not(.final-cta__arrow) {
	display: block;
}

.final-cta__arrow {
	position: static;

	margin-top: 24px;

	font-size: 26px;
	line-height: 1;
	letter-spacing: 0;
}

.final-cta__contact {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start !important;

	gap: 10px;

	margin-top: 70px;
	padding-top: 28px;

	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.final-cta__contact a {
	margin: 0 !important;

	font-size: 15px;
	line-height: 1.5;

	text-align: left;
}

/* ==================================================
   FOOTER — MOBILE
================================================== */

.site-footer {
	padding-top: 24px;
	padding-bottom: 28px;
	padding-left: 32px !important;
	padding-right: 32px !important;
}

.site-footer__inner {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	column-gap: 28px;

	width: 100%;
	max-width: none;

	margin-left: auto;
	margin-right: auto;

	padding-top: 40px;
}

/* BRAND */

.site-footer__brand {
	grid-column: 1 / -1 !important;
	margin-bottom: 34px;
}

/* NAVIGATION */

.site-footer__navigation {
	grid-column: 1 !important;
	margin: 0 !important;
}

.footer-menu {
	margin: 0;
	padding: 0;

	list-style: none;
}

.footer-menu li + li {
	margin-top: 12px;
}

/* SOCIAL */

.site-footer__social {
	grid-column: 2 !important;

	display: flex;
	flex-direction: column;
	align-items: flex-start;

	gap: 12px;

	margin: 0 !important;
}

.footer-menu a,
.site-footer__social a {
	font-size: 14px;
	line-height: 1.4;
}

/* LOCATIONS */

.site-footer__locations {
	grid-column: 1 / -1 !important;

	display: grid !important;
	grid-template-columns: 1fr !important;

	gap: 32px;

	margin-top: 40px;
	padding-top: 28px;

	border-top: 1px solid rgba(242, 240, 233, 0.16);
}

.site-footer__location {
	width: 100%;
}

/* BOTTOM */

.site-footer__bottom {
	grid-column: 1 / -1 !important;

	display: block;

	margin-top: 38px;
	padding-top: 24px;

	border-top: 1px solid rgba(242, 240, 233, 0.16);
}

.site-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;

	gap: 8px;

	margin-bottom: 20px;
}

.site-footer__bottom p {
	margin: 0;
}
/* MOBILE MENU REFINEMENT */

.mobile-navigation__inner {
	padding: 100px 24px 32px;
}

.mobile-menu a {
	padding: 16px 0;

	font-size: clamp(26px, 7.5vw, 34px);
	line-height: 1;

	letter-spacing: -0.025em;
}

.mobile-menu a::after {
	font-size: 14px;
}

.mobile-menu-toggle {
	font-size: 10px;
	letter-spacing: 0.12em;
}
/* ==================================================
   MOBILE MENU CLOSE FIX
================================================== */

.mobile-navigation {
	z-index: 2000;
}

.mobile-menu-toggle {
	position: relative;
	z-index: 2100;
}

/* When mobile menu is open */
body.mobile-menu-open .mobile-menu-toggle {
	position: fixed;

	top: 28px;
	right: 24px;

	z-index: 3000;

	display: inline-flex;

	margin: 0;
	padding: 8px 0;

	background: transparent;
	border: 0;

	color: #ffffff !important;

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Keep overlay below CLOSE */
body.mobile-menu-open .mobile-navigation {
	z-index: 2000;
}
/* ==================================================
   ABOUT — MOBILE
================================================== */

.intro__inner {
	display: block;
}

.intro__label {
	margin-bottom: 40px;
}

.intro__content {
	width: 100%;
	max-width: none;
}

.intro__title {
	width: 100%;
	max-width: none;

	font-size: clamp(42px, 12vw, 54px);
	line-height: 1.02;
	letter-spacing: -0.04em;
}
/* ==================================================
   PHILOSOPHY — MOBILE POSITION RESET
================================================== */

.philosophy__statement {
	display: block !important;
	position: relative;
}

.philosophy__title {
	width: 100% !important;
	max-width: none !important;
}

.philosophy__media {
	position: static !important;

	display: block !important;

	width: 100% !important;
	max-width: none !important;

	margin: 44px 0 0 !important;

	transform: none !important;
}

.philosophy__media img {
	display: block;

	width: 100% !important;
	height: auto !important;

	aspect-ratio: 16 / 10;
	object-fit: cover;
}

}
/* ==================================================
   HERO
================================================== */

.hero {
	position: relative;

	min-height: 100vh;

	display: flex;
	align-items: stretch;

	overflow: hidden;

	background: var(--color-ink);
	color: var(--color-warm-white);
}


.hero__media {
	position: absolute;
	inset: 0;

	z-index: 0;
}


.hero__image {
	width: 100%;
	height: 100%;

	object-fit: cover;
	object-position: center;

	filter: grayscale(100%);
}


.hero__overlay {
	position: absolute;
	inset: 0;

	z-index: 1;

	background:
		linear-gradient(
			90deg,
			rgba(11, 11, 10, 0.82) 0%,
			rgba(11, 11, 10, 0.58) 36%,
			rgba(11, 11, 10, 0.24) 68%,
			rgba(11, 11, 10, 0.38) 100%
		);
}


.hero__inner {
	position: relative;
	z-index: 2;

	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	min-height: inherit;

	margin-inline: auto;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	padding-top: clamp(155px, 17vh, 195px);
	padding-bottom: 30px;
}


.hero__content {
	max-width: 860px;
}

.hero__title {
	margin: 0;

	max-width: 820px;

	font-size: clamp(52px, 15vw, 68px);
	line-height: 0.94;
	letter-spacing: -0.045em;
}


.hero__eyebrow {
	margin-bottom: 30px;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}


.hero__title {
	margin: 0;

	max-width: 980px;

	font-size: clamp(48px, 13.5vw, 62px);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.045em;
}


.hero__meta {
	margin-top: 32px;
	max-width: 100%;
	font-size: 15px;
	line-height: 1.5;

	white-space: nowrap;
}


.hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	margin-top: 42px;
	padding-bottom: 7px;

	border-bottom: 1px solid rgba(242, 240, 233, 0.5);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
	text-transform: uppercase;

	transition:
		color 300ms ease,
		border-color 300ms ease,
		gap 300ms ease;
}


.hero__cta:hover {
	color: var(--color-gold);
	border-color: var(--color-gold);

	gap: 18px;
}


.hero__index {
	align-self: flex-end;

	margin-right: 8px;

	color: rgba(242, 240, 233, 0.45);

	font-size: 10px;
	line-height: 1;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

/* ==================================================
   INTRO / POSITIONING
================================================== */

.intro {
	position: relative;

	background: var(--color-warm-white);
	color: var(--color-ink);

	padding: var(--section-space-lg) 0;
}

.intro__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;

	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));

	column-gap: 24px;
}


/* Label */

.intro__label {
	grid-column: 1 / span 3;
}

.intro__label p {
	margin: 8px 0 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}


/* Content */

.intro__content {
	grid-column: 4 / span 9;
}

.intro__title {
	max-width: 1050px;

	margin: 0;

	font-size: clamp(42px, 4.5vw, 72px);
	font-weight: 400;
	line-height: 1.08;

	letter-spacing: -0.04em;
}


/* ==================================================
   ABOUT — MOBILE
================================================== */

.intro {
	padding: 95px 0 105px;
}

.intro__inner {
	display: block !important;
	grid-template-columns: none !important;
}

.intro__label {
	display: block;
	width: 100%;

	margin-bottom: 42px;
}

.intro__content {
	display: block;

	width: 100%;
	max-width: none;

	margin: 0;
}

.intro__title {
	width: 100%;
	max-width: none;

	margin: 0;

	font-size: clamp(40px, 11vw, 50px);
	line-height: 1.04;
	letter-spacing: -0.035em;
}

.intro__body {
	width: 100%;
	max-width: none;

	margin-top: 52px;
}

.intro__body p {
	max-width: 32em;

	margin: 0;

	font-size: 16px;
	line-height: 1.6;
}

.intro__link {
	margin-top: 32px;
}
.intro__label,
.intro__content,
.intro__body {
	grid-column: auto !important;
}

/* Link */

.intro__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	margin-top: 32px;
	padding-bottom: 7px;

	border-bottom: 1px solid rgba(11, 11, 10, 0.4);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
	text-transform: uppercase;

	transition:
		color 300ms ease,
		border-color 300ms ease,
		gap 300ms ease;
}

.intro__link:hover {
	color: var(--color-gold);
	border-color: var(--color-gold);

	gap: 16px;
}

/* ==================================================
   HEADER LOGO STATE
================================================== */

body.home
.site-header.is-hero-header:not(.is-scrolled)
.site-branding__logo {
	filter: brightness(0) invert(1);
}


body.home
.site-header.is-hero-header.is-scrolled
.site-branding__logo {
	filter: none;
}

/* ==================================================
   CAPABILITIES
================================================== */

.capabilities {
	background: var(--color-ink);
	color: var(--color-warm-white);

	padding: var(--section-space-lg) 0;
}

.capabilities__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}


/* HEADER */

.capabilities__header {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;

	margin-bottom: clamp(80px, 9vw, 130px);
}

.capabilities__label {
	grid-column: 1 / span 3;
}

.capabilities__label p {
	margin: 8px 0 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.capabilities__intro {
	grid-column: 4 / span 7;
}

.capabilities__intro h2 {
	margin: 0;

	max-width: 760px;

	font-size: clamp(44px, 4.6vw, 74px);
	font-weight: 400;
	line-height: 1.02;

	letter-spacing: -0.045em;
}


/* LIST */

.capabilities__list {
	border-top:
		1px solid rgba(242, 240, 233, 0.18);
}

.capability-item {
	display: grid;
	grid-template-columns:
		80px
		minmax(0, 1fr)
		auto;

	align-items: center;
	column-gap: 24px;

	min-height: 112px;

	border-bottom:
		1px solid rgba(242, 240, 233, 0.18);

	color: var(--color-warm-white);

	transition:
		color 300ms ease,
		padding 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-item__number {
	color: var(--color-gold);

	font-size: 11px;
	line-height: 1;

	letter-spacing: 0.14em;
}

.capability-item__title {
	font-size: clamp(30px, 3.2vw, 52px);
	font-weight: 400;
	line-height: 1;

	letter-spacing: -0.035em;
}

.capability-item__arrow {
	color: var(--color-gold);

	font-size: 18px;

	transition:
		transform 350ms ease;
}


/* HOVER */

.capability-item:hover {
	padding-left: 14px;

	color: var(--color-gold);
}

.capability-item:hover .capability-item__arrow {
	transform: translate(6px, -6px);
}

/* ==================================================
   PHILOSOPHY
================================================== */

.philosophy {
	background: var(--color-warm-white);
	color: var(--color-ink);

	padding: var(--section-space-lg) 0;
}

.philosophy__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}


/* LABEL */

.philosophy__label {
	margin-bottom: clamp(70px, 8vw, 120px);
}

.philosophy__label p {
	margin: 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.client-item__logo {
	min-height: 44px;
	margin-bottom: 20px;
}

.client-item__logo-image {
	max-width: 90px;
	max-height: 34px;
}
.clients__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-item {
	padding: 22px 16px 22px 0;
}

.client-item__logo {
	min-height: 40px;
	margin-bottom: 18px;
}

.client-item__logo-image {
	max-width: 85px;
	max-height: 32px;
}
/* CONTENT */

.philosophy__content {
	display: grid;

	grid-template-columns:
		repeat(12, minmax(0, 1fr));

	column-gap: 24px;

	align-items: start;
}


/* STATEMENT */

.philosophy__statement {
	grid-column: 1 / span 7;
}

.philosophy__statement h2 {
	margin: 0;

	max-width: 820px;

	font-size: clamp(52px, 5.5vw, 88px);
	font-weight: 400;
	line-height: 0.98;

	letter-spacing: -0.05em;
}

.philosophy__lead {
	margin: clamp(48px, 5vw, 72px) 0 0;

	color: var(--color-gold);

	font-size: clamp(24px, 2vw, 32px);
	line-height: 1.25;
}

.philosophy__body {
	max-width: 420px;

	margin-top: 28px;
}

.philosophy__body p {
	margin: 0;

	font-size: 17px;
	line-height: 1.65;
}


/* IMAGE */

.philosophy__media {
	grid-column: 9 / span 4;

	margin-top: clamp(90px, 10vw, 150px);

	overflow: hidden;

	aspect-ratio: 4 / 5;

	background: #ddd;
}

.philosophy__media img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	filter: grayscale(100%);

	transition:
		transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy__media:hover img {
	transform: scale(1.025);
}

/* ==================================================
   CLIENTS / SELECTED PARTNERS
================================================== */

.clients {
	background: var(--color-warm-white);
	color: var(--color-ink);

	padding: 24px 0 var(--section-space-lg);
}

.clients__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}


/* HEADER */

.clients__header {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;

	margin-bottom: clamp(80px, 9vw, 130px);
}

.clients__label {
	grid-column: 1 / span 3;
}

.clients__label p {
	margin: 8px 0 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.clients__intro {
	grid-column: 4 / span 7;
}

.clients__intro h2 {
	margin: 0;

	max-width: 820px;

	font-size: clamp(40px, 4vw, 64px);
	font-weight: 400;
	line-height: 1.08;

	letter-spacing: -0.04em;
}


/* GRID */

.client-item:hover {
	background: var(--color-ink);
}

.client-item:hover span {
	color: var(--color-warm-white);

	transform: translateY(-2px);
}

/* ==================================================
   INSIGHTS / JOURNAL
================================================== */

.insights {
	background: var(--color-warm-white);
	color: var(--color-ink);

	padding: 24px 0 var(--section-space-lg);
}

.insights__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}


/* HEADER */

.insights__header {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	column-gap: 24px;

	margin-bottom: clamp(80px, 9vw, 130px);
}

.insights__label {
	grid-column: 1 / span 3;
}

.insights__label p {
	margin: 8px 0 0;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.insights__intro {
	grid-column: 4 / span 7;
}

.insights__intro h2 {
	margin: 0;

	max-width: 820px;

	font-size: clamp(40px, 4vw, 64px);
	font-weight: 400;
	line-height: 1.08;

	letter-spacing: -0.04em;
}


/* GRID */

.insights__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));

	column-gap: 28px;
}


/* CARD */

.insight-card {
	min-width: 0;
}

.insight-card__image {
	display: block;

	overflow: hidden;

	aspect-ratio: 4 / 3;

	background: #ddd;
}

.insight-card__image img {
	width: 100%;
	height: 100%;

	object-fit: cover;

	filter: grayscale(100%);

	transition:
		transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 500ms ease;
}

.insight-card:hover .insight-card__image img {
	transform: scale(1.025);
	filter: grayscale(0%);
}


/* META */

.insight-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	margin-top: 18px;
}

.insight-card__category,
.insight-card__date {
	color: var(--color-stone);

	font-size: 10px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.insight-card__category {
	color: var(--color-gold);
}


/* TITLE */

.insight-card__title {
	margin: 18px 0 0;

	font-size: clamp(26px, 2vw, 34px);
	font-weight: 400;
	line-height: 1.12;

	letter-spacing: -0.03em;
}

.insight-card__title a {
	transition: color 300ms ease;
}

.insight-card__title a:hover {
	color: var(--color-gold);
}


/* FOOTER */

.insights__footer {
	display: flex;
	justify-content: flex-end;

	margin-top: clamp(70px, 8vw, 110px);
}

.insights__all {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding-bottom: 7px;

	border-bottom: 1px solid rgba(11, 11, 10, 0.4);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.14em;
	text-transform: uppercase;

	transition:
		color 300ms ease,
		border-color 300ms ease,
		gap 300ms ease;
}

.insights__all:hover {
	color: var(--color-gold);
	border-color: var(--color-gold);

	gap: 16px;
}

/* ==================================================
   SINGLE INSIGHT — MOBILE REFINEMENT
================================================== */

.single-insight__header {
	padding-top: 108px;
	padding-bottom: 46px;
}

.single-insight__inner {
	padding-left: 24px;
	padding-right: 24px;
}

.single-insight__label {
	margin-bottom: 28px;
}

.single-insight__meta {
	margin-bottom: 20px;
	gap: 12px;
}

.single-insight__title {
	font-size: clamp(40px, 11.5vw, 54px);
	line-height: 1;

	letter-spacing: -0.04em;
}

.single-insight__excerpt {
	margin-top: 22px;

	font-size: 15px;
	line-height: 1.6;
}


/* FEATURED IMAGE */

.single-insight__featured {
	width: calc(100% - 48px);

	margin-left: 24px;
	margin-right: 24px;

	padding: 0;

	aspect-ratio: 4 / 3;
}

.single-insight__featured-image {
	width: 100%;
	height: 100%;

	object-fit: cover;
}


/* CONTENT */

.single-insight__content {
	padding-top: 54px;
	padding-bottom: 72px;
}

.single-insight__content-inner {
	width: 100%;

	padding-left: 24px;
	padding-right: 24px;
}

.single-insight__content-inner p {
	margin-bottom: 22px;

	font-size: 16px;
	line-height: 1.7;
}

.single-insight__content-inner h2 {
	margin-top: 48px;
	margin-bottom: 20px;

	font-size: 30px;
	line-height: 1.12;
}

.single-insight__content-inner h3 {
	margin-top: 38px;
	margin-bottom: 18px;

	font-size: 24px;
	line-height: 1.2;
}

.single-insight__content-inner li {
	font-size: 16px;
	line-height: 1.65;
}


/* BLOCKQUOTE */

.single-insight__content-inner blockquote {
	margin: 42px 0;

	padding-left: 20px;
}

.single-insight__content-inner blockquote p {
	font-size: 22px;
	line-height: 1.4;
}


/* CONTENT IMAGE */

.single-insight__content-inner img {
	margin-top: 36px;
	margin-bottom: 36px;
}

.single-insight__content-inner figure {
	margin-top: 36px;
	margin-bottom: 36px;
}

/* ==================================================
   FINAL CTA
================================================== */

.final-cta {
	background: var(--color-ink);
	color: var(--color-warm-white);

	padding: var(--section-space-lg) 0 60px;
}

.final-cta__inner {
	width: min(
		calc(100% - (var(--page-padding) * 2)),
		var(--container-width)
	);

	margin-inline: auto;
}


/* LABEL */

.final-cta__label p {
	margin: 0 0 clamp(70px, 8vw, 110px);

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1;

	letter-spacing: 0.18em;
	text-transform: uppercase;
}


/* CONTENT */

.final-cta__content {
	max-width: 1180px;
}

.final-cta__eyebrow {
	margin: 0 0 28px;

	color: rgba(242, 240, 233, 0.58);

	font-size: 16px;
	line-height: 1.4;
}


/* LARGE CTA */

.final-cta__title {
	position: relative;

	display: inline-flex;
	flex-direction: column;

	color: var(--color-warm-white);

	font-size: clamp(72px, 9vw, 150px);
	font-weight: 400;
	line-height: 0.86;

	letter-spacing: -0.055em;

	transition: color 300ms ease;
}

.final-cta__arrow {
	position: absolute;

	top: 8%;
	right: -70px;

	color: var(--color-gold);

	font-size: clamp(28px, 3vw, 52px);

	transition:
		transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.final-cta__title:hover {
	color: var(--color-gold);
}

.final-cta__title:hover .final-cta__arrow {
	transform: translate(10px, -10px);
}


/* CONTACT */

.final-cta__contact {
	display: flex;
	align-items: center;
	gap: 32px;

	margin-top: clamp(80px, 9vw, 130px);
	padding-top: 24px;

	border-top:
		1px solid rgba(242, 240, 233, 0.16);
}

.final-cta__contact a {
	font-size: 14px;
	line-height: 1.4;

	transition: color 300ms ease;
}

.final-cta__contact a:hover {
	color: var(--color-gold);
}

/* ==================================================
   FINAL CTA FIX
================================================== */

.final-cta__label {
	display: block;
	position: relative;
	z-index: 2;
}

.final-cta__label p {
	display: block;

	margin: 0 0 56px;

	color: var(--color-gold);

	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;

	letter-spacing: 0.18em;
	text-transform: uppercase;

	opacity: 1;
	visibility: visible;
}

.final-cta__content {
	position: relative;
	z-index: 2;
}

.final-cta__eyebrow {
	display: block;

	margin: 0 0 28px;

	color: rgba(242, 240, 233, 0.62);

	font-size: 16px;
	line-height: 1.4;

	opacity: 1;
	visibility: visible;
}

.final-cta__title {
	margin-top: 0;
}