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

@font-face {
	font-family: "Eudoxus Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/EudoxusSans-Bold.woff2") format("woff2");
}

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

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

:root {
	--vdr-ink: #090908;
	--vdr-ink-soft: #0e0e0d;
	--vdr-charcoal: #171715;
	--vdr-charcoal-light: #1f1f1c;
	--vdr-petrol: #102a2b;
	--vdr-petrol-bright: #17494a;
	--vdr-cyan: #61cbc6;
	--vdr-cyan-soft: #9adbd7;
	--vdr-white: #f2f0e9;
	--vdr-muted: #aaa9a4;
	--vdr-line: rgba(242, 240, 233, 0.14);
	--vdr-line-strong: rgba(242, 240, 233, 0.28);
	--vdr-glass: rgba(10, 10, 9, 0.82);
	--vdr-error: #ff9a8f;
	--vdr-font-sans: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--vdr-font-heading: "Eudoxus Sans", "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	--vdr-font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
	--vdr-font-display: "Source Serif 4", Georgia, "Times New Roman", Times, serif;
	--vdr-shell: min(100% - 2rem, 78rem);
	--vdr-shell-wide: min(100% - 2rem, 92rem);
	--vdr-header-height: 5.125rem;
	--vdr-section-space: clamp(5rem, 12vw, 10rem);
	--vdr-radius: 0.35rem;
	--vdr-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	background: var(--vdr-ink);
}

body {
	min-width: 20rem;
	margin: 0;
	background:
		radial-gradient(circle at 88% 6%, rgba(242, 240, 233, 0.025), transparent 32rem),
		var(--vdr-ink);
	color: var(--vdr-white);
	font-family: var(--vdr-font-sans);
	font-size: 1rem;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

body::before {
	position: fixed;
	z-index: 50;
	inset: 0;
	background: url("../images/grain.svg") repeat;
	content: "";
	opacity: 0.022;
	pointer-events: none;
}

body.menu-open {
	overflow: hidden;
}

::selection {
	background: var(--vdr-cyan);
	color: var(--vdr-ink);
}

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

img {
	height: auto;
}

figure,
blockquote,
dl,
dd {
	margin: 0;
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
}

a,
button {
	-webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
	outline: 2px solid var(--vdr-cyan);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
	margin-block-start: 0;
}

h1,
h2,
h3,
h4 {
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.06;
}

h1,
h2 {
	font-family: var(--vdr-font-heading);
	font-weight: 700;
	font-synthesis: none;
}

h1 {
	font-size: clamp(2.75rem, 9vw, 6.5rem);
}

h2 {
	font-size: clamp(2.15rem, 6vw, 4.8rem);
}

h3 {
	font-size: clamp(1.45rem, 3vw, 2.25rem);
}

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

.screen-reader-text:focus,
.skip-link:focus {
	position: fixed !important;
	z-index: 1000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--vdr-white);
	color: var(--vdr-ink);
	font-weight: 700;
}

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

.shell--wide {
	width: var(--vdr-shell-wide);
}

.section {
	position: relative;
	padding-block: var(--vdr-section-space);
}

#projetos-selecionados,
#abordagem,
#atuacao {
	scroll-margin-top: calc(var(--vdr-header-height) + 1rem);
}

body.admin-bar #projetos-selecionados,
body.admin-bar #abordagem,
body.admin-bar #atuacao {
	scroll-margin-top: calc(var(--vdr-header-height) + var(--wp-admin--admin-bar--height, 32px) + 1rem);
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin-block-end: 1.35rem;
	color: var(--vdr-cyan-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.3;
	text-transform: uppercase;
}

.eyebrow::before {
	display: inline-block;
	width: 1.6rem;
	height: 1px;
	background: currentColor;
	content: "";
	opacity: 0.72;
}

.prose {
	color: #d1d6d2;
	font-size: 1.05rem;
}

.prose > * + * {
	margin-block-start: 1.4em;
}

.prose h2,
.prose h3,
.prose h4 {
	margin-block-start: 2em;
	color: var(--vdr-white);
}

.prose a {
	color: var(--vdr-cyan-soft);
}

.prose ul,
.prose ol {
	padding-inline-start: 1.25rem;
}

.prose img,
.prose .wp-block-image,
.prose .wp-block-gallery,
.prose .wp-block-embed {
	margin-block: clamp(2rem, 6vw, 5rem);
}

.prose blockquote {
	padding-inline-start: 1.5rem;
	border-left: 1px solid var(--vdr-cyan);
	color: var(--vdr-white);
	font-family: var(--vdr-font-serif);
	font-size: 1.35em;
}

.prose--lead {
	font-size: clamp(1.12rem, 2.4vw, 1.45rem);
	line-height: 1.55;
}

.button {
	display: inline-flex;
	min-height: 3.25rem;
	align-items: center;
	justify-content: space-between;
	gap: 1.4rem;
	padding: 0.9rem 1.1rem;
	border: 1px solid transparent;
	border-radius: var(--vdr-radius);
	font-size: 0.86rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 240ms var(--vdr-ease), border-color 240ms var(--vdr-ease), color 240ms var(--vdr-ease), transform 240ms var(--vdr-ease);
}

.button--primary {
	background: var(--vdr-white);
	color: var(--vdr-ink);
}

.button--secondary {
	border-color: var(--vdr-line-strong);
	background: var(--vdr-charcoal);
	color: var(--vdr-white);
}

.button--ghost {
	border-color: var(--vdr-line-strong);
	background: rgba(9, 14, 15, 0.32);
	color: var(--vdr-white);
}

.text-link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.86rem;
	font-weight: 500;
	text-decoration: none;
}

.text-link::after {
	display: block;
	width: 2rem;
	height: 1px;
	order: -1;
	background: var(--vdr-cyan);
	content: "";
}

/* Header */
.site-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid transparent;
	background: rgba(9, 9, 8, 0.94);
	transition: background-color 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease, transform 280ms ease;
}

body.admin-bar .site-header {
	top: var(--wp-admin--admin-bar--height, 32px);
}

.vdr-front-page .site-header:not(.is-scrolled):not(.navigation-open) {
	border-color: rgba(242, 240, 233, 0.09);
	background: rgba(9, 9, 8, 0.68);
}

.site-header.is-scrolled,
.site-header.navigation-open {
	border-color: var(--vdr-line);
	background: var(--vdr-glass);
}

@supports (backdrop-filter: blur(1rem)) {
	.vdr-front-page .site-header:not(.is-scrolled):not(.navigation-open) {
		background: rgba(9, 9, 8, 0.6);
		backdrop-filter: blur(0.8rem) saturate(112%);
	}

	.site-header.is-scrolled,
	.site-header.navigation-open {
		background: rgba(10, 10, 9, 0.76);
		backdrop-filter: blur(1.1rem) saturate(128%);
	}
}

.site-header__inner {
	display: grid;
	min-height: var(--vdr-header-height);
	align-items: center;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.65rem;
}

.site-brand {
	display: inline-flex;
	width: fit-content;
	align-items: center;
}

.site-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.site-brand .custom-logo {
	width: auto;
	max-width: 9.5rem;
	height: 2rem;
	object-fit: contain;
}

.site-brand--text {
	font-weight: 500;
	letter-spacing: -0.02em;
	text-decoration: none;
}

.site-brand__name {
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.menu-toggle {
	display: none;
	min-width: 3.25rem;
	min-height: 2.75rem;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem;
	border: 0;
	background: transparent;
	color: var(--vdr-white);
	cursor: pointer;
}

.has-js .menu-toggle {
	display: flex;
}

.menu-toggle__label {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle__icon {
	display: flex;
	width: 1.25rem;
	flex-direction: column;
	gap: 0.28rem;
}

.menu-toggle__icon span {
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
	transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
	transform: translateY(0.14rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
	transform: translateY(-0.14rem) rotate(-45deg);
}

.primary-navigation {
	grid-column: 1 / -1;
}

.has-js .primary-navigation {
	position: fixed;
	z-index: -1;
	top: var(--vdr-header-height);
	right: 0;
	left: 0;
	max-height: calc(100svh - var(--vdr-header-height));
	overflow-y: auto;
	padding: 1rem;
	border-bottom: 1px solid var(--vdr-line);
	background: var(--vdr-ink-soft);
	opacity: 0;
	transform: translateY(-0.75rem);
	visibility: hidden;
	transition: opacity 180ms ease, transform 260ms var(--vdr-ease), visibility 180ms ease;
}

@media (max-width: 63.999rem) {
	html.has-js body.admin-bar .primary-navigation {
		top: calc(var(--vdr-header-height) + var(--wp-admin--admin-bar--height, 32px));
		max-height: calc(100svh - var(--vdr-header-height) - var(--wp-admin--admin-bar--height, 32px));
	}
}

@media (max-width: 600px) {
	body.admin-bar .site-header {
		top: var(--vdr-visible-admin-bar-height, var(--wp-admin--admin-bar--height, 46px));
	}

	body.admin-bar #projetos-selecionados,
	body.admin-bar #abordagem,
	body.admin-bar #atuacao {
		scroll-margin-top: calc(var(--vdr-header-height) + var(--vdr-visible-admin-bar-height, var(--wp-admin--admin-bar--height, 46px)) + 1rem);
	}

	html.has-js body.admin-bar .primary-navigation {
		top: calc(var(--vdr-header-height) + var(--vdr-visible-admin-bar-height, var(--wp-admin--admin-bar--height, 46px)));
		max-height: calc(100svh - var(--vdr-header-height) - var(--vdr-visible-admin-bar-height, var(--wp-admin--admin-bar--height, 46px)));
	}
}

.has-js .site-header.navigation-open .primary-navigation {
	z-index: 1;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.primary-menu,
.footer-menu {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu {
	flex-direction: column;
}

.primary-menu a {
	display: flex;
	min-height: 3.75rem;
	align-items: center;
	border-bottom: 1px solid var(--vdr-line);
	font-size: 1.2rem;
	font-weight: 500;
	text-decoration: none;
}

.primary-menu .sub-menu {
	padding-inline-start: 1rem;
	list-style: none;
}

.primary-navigation__extras {
	display: grid;
	gap: 1rem;
	padding-block-start: 1rem;
}

.site-header__actions {
	display: none;
}

.social-links {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
}

.social-links a {
	display: grid;
	width: 2.75rem;
	min-width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	border: 1px solid rgba(242, 240, 233, 0.32);
	border-radius: 50%;
	color: var(--vdr-white);
	text-decoration: none;
	transition: border-color 220ms ease, background-color 220ms ease, color 220ms ease, transform 220ms var(--vdr-ease);
}

.social-links svg {
	width: 1.18rem;
	height: 1.18rem;
	overflow: visible;
}

.social-links a:focus-visible {
	border-color: var(--vdr-cyan);
	color: var(--vdr-cyan-soft);
}

/* Hero */
.hero {
	position: relative;
	display: grid;
	min-height: max(42rem, 100svh);
	align-items: end;
	isolation: isolate;
	overflow: hidden;
}

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

.hero__media {
	z-index: -2;
	background: var(--vdr-ink);
}

.hero__video,
.hero__poster {
	object-fit: cover;
	object-position: center;
}

.hero__fallback {
	background:
		radial-gradient(ellipse 26rem 18rem at 78% 32%, rgba(97, 203, 198, 0.065), transparent 68%),
		radial-gradient(ellipse 18rem 13rem at 80% 31%, rgba(242, 240, 233, 0.05), transparent 72%),
		radial-gradient(ellipse 14rem 10rem at 74% 39%, rgba(178, 130, 91, 0.028), transparent 74%),
		linear-gradient(120deg, #070706 0%, #0c0c0b 58%, #080807 100%);
}

.hero__fallback::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(108deg, transparent 0 62%, rgba(242, 240, 233, 0.022) 70%, transparent 79%);
	content: "";
}

.hero__shade {
	background:
		linear-gradient(to bottom, rgba(6, 6, 5, 0.08) 15%, rgba(6, 6, 5, 0.24) 42%, rgba(6, 6, 5, 0.94) 100%),
		linear-gradient(to right, rgba(6, 6, 5, 0.68), transparent 70%);
}

.hero__content {
	display: grid;
	align-items: end;
	gap: 1.5rem;
	padding-block: calc(var(--vdr-header-height) + 2.5rem) clamp(6.5rem, 13vh, 8.5rem);
}

.hero__copy {
	min-width: 0;
}

.hero__brand-line {
	margin-block-end: 1rem;
	color: var(--vdr-cyan-soft);
	font-size: 0.86rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero__rotator {
	min-height: clamp(18rem, 32vw, 25rem);
}

.hero__statement {
	max-width: 18ch;
	margin: 0;
	font-family: var(--vdr-font-display);
	font-size: clamp(2.05rem, 10.2vw, 6.5rem);
	font-weight: 400;
	font-synthesis: none;
	letter-spacing: -0.045em;
	line-height: 0.98;
	text-wrap: balance;
	transition: opacity 450ms ease, transform 450ms var(--vdr-ease);
}

.hero__message-description {
	max-width: 46rem;
	min-height: 4.5rem;
	margin: 1.15rem 0 0;
	color: #d0d8d5;
	font-size: clamp(0.98rem, 2.5vw, 1.2rem);
	line-height: 1.5;
	transition: opacity 450ms ease 55ms, transform 450ms var(--vdr-ease) 55ms;
}

.hero__message-description.is-empty,
.hero__rotator.is-changing .hero__statement,
.hero__rotator.is-changing .hero__message-description {
	opacity: 0;
	transform: translateY(0.55rem);
}

.hero__actions {
	display: grid;
	width: min(100%, 14.5rem);
	gap: 0.6rem;
}

.hero__scroll {
	position: absolute;
	right: 1rem;
	bottom: 1.2rem;
	display: none;
	align-items: center;
	gap: 0.75rem;
	color: var(--vdr-muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-decoration: none;
	text-transform: uppercase;
}

/* Section headings */
.section-heading {
	margin-block-end: clamp(2.5rem, 7vw, 5rem);
}

.section-heading h2 {
	max-width: 13ch;
	margin: 0;
}

.section-heading--split {
	display: grid;
	align-items: end;
	gap: 1.5rem;
}

/* Projects */
.projects-section {
	background: var(--vdr-ink);
}

.project-stream {
	display: grid;
	gap: clamp(3.5rem, 9vw, 8rem);
}

.project-card {
	position: relative;
	margin: 0;
}

.project-card__link {
	display: block;
	text-decoration: none;
}

.project-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--vdr-charcoal);
	overflow: hidden;
}

.project-card__media::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	content: "";
	pointer-events: none;
}

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

.project-card__media--empty {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--vdr-charcoal), #10100f);
}

.project-card__empty-mark {
	display: block;
	width: 3rem;
	height: 1px;
	background: var(--vdr-line-strong);
	color: transparent;
	font-size: 0;
	overflow: hidden;
}

.project-card__view {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: grid;
	width: 2.9rem;
	height: 2.9rem;
	place-items: center;
	border: 1px solid var(--vdr-line-strong);
	border-radius: 50%;
	background: rgba(7, 9, 10, 0.58);
	font-size: 0.9rem;
}

@supports (backdrop-filter: blur(0.7rem)) {
	.project-card__view {
		background: rgba(7, 9, 10, 0.36);
		backdrop-filter: blur(0.7rem);
	}
}

.project-card__caption {
	display: grid;
	gap: 0.5rem;
	padding-block-start: 1.15rem;
}

.project-card__category,
.project-card__meta {
	margin: 0;
	color: var(--vdr-muted);
	font-size: 0.7rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-card__title {
	margin: 0.25rem 0 0;
	font-size: clamp(1.55rem, 4vw, 2.65rem);
}

/* Como trabalhamos */
.working-section {
	border-block: 1px solid var(--vdr-line);
	background:
		radial-gradient(circle at 78% 22%, rgba(97, 203, 198, 0.045), transparent 28rem),
		linear-gradient(120deg, var(--vdr-charcoal), #121211);
	overflow: hidden;
}

.working-section__background {
	position: absolute;
	z-index: 0;
	inset: 0;
	pointer-events: none;
}

.working-section__background::after {
	position: absolute;
	inset: 0;
	background: rgba(8, 9, 8, 0.56);
	content: "";
}

.working-section__background-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.working-section > .shell {
	position: relative;
	z-index: 1;
}

.working-section__title {
	max-width: none;
	margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
	font-family: var(--vdr-font-heading);
	font-weight: 700;
	font-synthesis: none;
	text-wrap: pretty;
}

.working-composition {
	display: grid;
	align-items: stretch;
	grid-template-columns: minmax(0, 1fr);
	gap: 1rem;
}

.working-composition__difference {
	position: relative;
	display: flex;
	min-height: 100%;
	min-width: 0;
	padding: clamp(1.35rem, 3vw, 1.9rem);
	flex-direction: column;
	border: 1px solid rgba(242, 240, 233, 0.16);
	border-radius: 0.75rem;
	background: rgba(12, 15, 14, 0.72);
	overflow: hidden;
}

.working-section--has-background .working-composition__difference {
	background: rgba(12, 15, 14, 0.64);
}

.working-composition__number {
	display: block;
	margin-block-end: clamp(1.5rem, 4vw, 2.5rem);
	color: var(--vdr-cyan);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.working-composition__difference h3 {
	max-width: 18ch;
	margin: 0 0 1rem;
	font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.working-composition__difference p {
	max-width: 35rem;
	margin: 0;
	color: #c5cdca;
	font-size: clamp(0.92rem, 1.4vw, 1rem);
	line-height: 1.6;
}

@supports (backdrop-filter: blur(0.8rem)) {
	.working-composition__difference {
		background: rgba(12, 15, 14, 0.58);
		backdrop-filter: blur(0.8rem) saturate(118%);
	}

	.working-section--has-background .working-composition__difference {
		background: rgba(12, 15, 14, 0.48);
	}
}

/* Services */
.services-section {
	background: var(--vdr-ink-soft);
}

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

.service-lines__item {
	border-bottom: 1px solid var(--vdr-line);
}

.service-lines__heading {
	margin: 0;
}

.service-lines__trigger {
	display: grid;
	width: 100%;
	min-height: 5.5rem;
	align-items: center;
	padding: clamp(1.15rem, 2.5vw, 1.65rem) 0;
	border: 0;
	background: transparent;
	color: inherit;
	grid-template-columns: 2.5rem minmax(0, 1fr) auto;
	gap: clamp(0.75rem, 3vw, 1.5rem);
	text-align: left;
	cursor: pointer;
	transition: background-color 220ms ease, padding 280ms var(--vdr-ease);
}

.service-lines__number {
	color: var(--vdr-cyan);
	font-size: 0.63rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.service-lines__title {
	display: block;
	max-width: 30ch;
	margin: 0;
	font-size: clamp(1.3rem, 3.6vw, 2.35rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.service-lines__description {
	max-width: 48rem;
	margin: 0;
	color: var(--vdr-muted);
	font-size: clamp(0.92rem, 1.7vw, 1.05rem);
	line-height: 1.55;
}

.service-lines__indicator {
	position: relative;
	display: grid;
	width: 2.5rem;
	height: 2.5rem;
	place-items: center;
	border: 1px solid var(--vdr-line);
	border-radius: 50%;
	transition: border-color 180ms ease, background-color 180ms ease;
}

.service-lines__indicator::before,
.service-lines__indicator::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.8rem;
	height: 1px;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 220ms var(--vdr-ease);
}

.service-lines__indicator::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.service-lines.is-enhanced .service-lines__indicator::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(1);
}

.service-lines.is-enhanced .service-lines__item.is-open .service-lines__indicator::after {
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.service-lines__panel {
	display: grid;
	grid-template-rows: 1fr;
	opacity: 1;
	transition: grid-template-rows 240ms var(--vdr-ease), opacity 180ms ease;
}

.service-lines__panel-clip {
	min-height: 0;
	overflow: hidden;
}

.service-lines__panel-inner {
	padding: 0 0 clamp(1.5rem, 3vw, 2rem) calc(2.5rem + clamp(0.75rem, 3vw, 1.5rem));
}

.service-lines.is-enhanced .service-lines__panel {
	grid-template-rows: 0fr;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.service-lines.is-enhanced .service-lines__item.is-open .service-lines__panel {
	grid-template-rows: 1fr;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.service-lines__link {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	gap: 0.65rem;
	margin-block-start: 1.25rem;
	color: var(--vdr-white);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}

/* Conductor */
.conductor-section {
	border-block: 1px solid var(--vdr-line);
	background: var(--vdr-charcoal);
	overflow: hidden;
}

.conductor-section__grid {
	display: grid;
	gap: 3rem;
}

.conductor-section__grid--text-only {
	max-width: 48rem;
}

.conductor-section__media {
	aspect-ratio: 4 / 5;
	background: var(--vdr-ink-soft);
	overflow: hidden;
}

.conductor-section__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.conductor-section__content {
	align-self: center;
}

.conductor-section__content h2 {
	max-width: 15ch;
	margin-block-end: 1.75rem;
	font-family: var(--vdr-font-heading);
	font-size: clamp(2rem, 5.5vw, 4.2rem);
	font-weight: 700;
	font-synthesis: none;
}

.conductor-section__presentation {
	max-width: 39rem;
	font-size: 1.1rem;
}

/* Contact */
.contact-section {
	border-block: 1px solid var(--vdr-line);
	background: var(--vdr-ink-soft);
}

.contact-section__grid {
	display: grid;
	gap: 3rem;
}

.contact-section h2 {
	max-width: 9ch;
	margin: 0;
}

.contact-section__details > p {
	max-width: 31rem;
	margin-block-end: 2.5rem;
	color: #d0d8d5;
	font-size: clamp(1.1rem, 2.3vw, 1.4rem);
}

.contact-section__action {
	width: min(100%, 20rem);
}

.contact-links {
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--vdr-line-strong);
	list-style: none;
}

.contact-links li {
	border-bottom: 1px solid var(--vdr-line-strong);
}

.contact-links a {
	display: grid;
	min-height: 4.75rem;
	align-items: center;
	grid-template-columns: minmax(5rem, 0.55fr) 1fr auto;
	gap: 0.75rem;
	text-decoration: none;
}

.contact-links__label {
	color: var(--vdr-muted);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.contact-links__value {
	overflow-wrap: anywhere;
	font-size: 0.9rem;
	font-weight: 650;
}

.contact-links__empty {
	padding: 1.5rem;
	border: 1px solid var(--vdr-line-strong);
	background: rgba(7, 9, 10, 0.16);
}

.contact-links__empty p {
	margin: 0;
}

.admin-hint {
	margin-block-start: 0.75rem !important;
	color: var(--vdr-cyan-soft);
	font-size: 0.78rem;
}

/* Footer */
.site-footer {
	padding-block: 3rem 1.5rem;
	border-top: 1px solid var(--vdr-line);
	background: #050708;
}

.site-footer__top,
.site-footer__navigation,
.site-footer__legal {
	display: grid;
	gap: 1.5rem;
}

.site-footer__top {
	padding-block-end: 2.25rem;
}

.site-footer__navigation {
	padding-block: 2.25rem;
	border-block: 1px solid var(--vdr-line);
}

.footer-menu {
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
}

.footer-menu a {
	display: inline-flex;
	min-height: 2.75rem;
	align-items: center;
	font-size: 0.85rem;
	font-weight: 650;
	text-decoration: none;
}

.social-links--footer {
	align-self: center;
}

.site-footer__legal {
	padding-block-start: 1.5rem;
	color: #7f8986;
	font-size: 0.7rem;
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__privacy a {
	color: inherit;
}

/* Inner pages */
.inner-main {
	min-height: 70vh;
	padding-block: calc(var(--vdr-header-height) + 2rem) var(--vdr-section-space);
}

.breadcrumbs {
	margin-block: 1rem clamp(3rem, 8vw, 6rem);
	color: #87918e;
	font-size: 0.69rem;
}

.breadcrumbs__list {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
}

.breadcrumbs__item:not(:last-child)::after {
	margin-inline-start: 0.45rem;
	content: "/";
	opacity: 0.55;
}

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

.breadcrumbs [aria-current="page"] {
	color: var(--vdr-white);
}

.page-hero {
	padding-block: clamp(3rem, 8vw, 7rem);
}

.page-hero h1 {
	max-width: 12ch;
	margin: 0;
	font-family: var(--vdr-font-heading);
	font-size: clamp(3.2rem, 8.5vw, 7.3rem);
	font-weight: 700;
	font-synthesis: none;
	letter-spacing: -0.036em;
	line-height: 0.92;
	text-wrap: balance;
}

.page-hero__lead {
	max-width: 43rem;
	margin: 2rem 0 0;
	color: #b9c2bf;
	font-size: clamp(1.08rem, 2.5vw, 1.45rem);
}

.page-hero--archive {
	display: grid;
	padding-block-start: 2rem;
	margin-block-end: clamp(2rem, 6vw, 5rem);
}

.page-content {
	padding-block: 2rem;
}

.standard-page .page-content {
	max-width: 47rem;
}

.project-stream--archive {
	padding-block-end: 5rem;
}

/* Project single */
.project-single {
	padding-block-end: 0;
}

.project-header {
	display: grid;
	gap: 2.5rem;
	padding-block: 2rem clamp(3.5rem, 9vw, 7rem);
}

.project-header h1 {
	max-width: 15ch;
	margin: 0;
}

.project-facts {
	display: grid;
	align-self: end;
	border-top: 1px solid var(--vdr-line);
}

.project-facts > div {
	display: grid;
	padding-block: 0.8rem;
	border-bottom: 1px solid var(--vdr-line);
	grid-template-columns: minmax(5rem, 0.4fr) 1fr;
	gap: 1rem;
}

.project-facts dt {
	color: var(--vdr-muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-facts dd {
	font-size: 0.9rem;
}

.project-media {
	position: relative;
	margin-block-end: var(--vdr-section-space);
	background: var(--vdr-charcoal);
}

.project-media__image,
.project-media__video {
	width: 100%;
	height: auto;
	max-height: 88vh;
	object-fit: contain;
}

.project-media iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

.project-narrative {
	display: grid;
	gap: clamp(4rem, 10vw, 8rem);
	padding-block-end: var(--vdr-section-space);
}

.project-copy {
	display: grid;
	gap: 1rem;
}

.project-copy .eyebrow {
	margin: 0;
}

.project-copy .prose > :last-child,
.project-credits .prose > :last-child {
	margin-block-end: 0;
}

.project-editor-content {
	padding-block: clamp(2.5rem, 7vw, 5rem);
	border-block: 1px solid var(--vdr-line);
}

.project-credits {
	padding: 1.5rem;
	border: 1px solid var(--vdr-line);
	background: var(--vdr-charcoal);
}

.project-credits .prose {
	font-size: 0.88rem;
}

.related-projects {
	border-top: 1px solid var(--vdr-line);
	background: var(--vdr-ink-soft);
}

.project-navigation-wrap {
	padding-block: clamp(3rem, 7vw, 6rem);
	border-top: 1px solid var(--vdr-line);
}

.project-navigation {
	display: grid;
	align-items: center;
	gap: 1.5rem;
	text-align: center;
}

.project-navigation a {
	display: flex;
	min-height: 3.25rem;
	flex-direction: column;
	justify-content: center;
	text-decoration: none;
}

.project-navigation a span {
	color: var(--vdr-muted);
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-navigation a strong {
	font-size: 0.94rem;
}

.project-navigation__archive {
	color: var(--vdr-cyan-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.project-contact {
	border-block: 1px solid var(--vdr-line);
	background: var(--vdr-ink-soft);
	text-align: center;
}

.project-contact__inner {
	display: grid;
	justify-items: center;
}

.project-contact h2 {
	max-width: 12ch;
	margin-block-end: 2rem;
}

/* Empty state */
.empty-state {
	position: relative;
	min-height: 22rem;
	padding: 2rem;
	border: 1px solid var(--vdr-line);
	background: var(--vdr-charcoal);
	overflow: hidden;
}

.empty-state__index {
	display: block;
	margin-block-end: 6rem;
	color: var(--vdr-cyan);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.empty-state h2,
.empty-state h3 {
	max-width: 18ch;
	margin-block-end: 1rem;
}

.empty-state p {
	max-width: 37rem;
	margin: 0;
	color: var(--vdr-muted);
}

/* Pages */
.contact-page__links {
	max-width: 56rem;
	margin-block-start: 3rem;
}

.studio-page__grid,
.studio-page__statement {
	display: grid;
	gap: 2rem;
}

.studio-page__grid {
	padding-block: 3rem;
	border-top: 1px solid var(--vdr-line);
}

.studio-page__statement h2 {
	max-width: 15ch;
	margin: 0;
	font-size: clamp(2rem, 5vw, 4rem);
}

.studio-page__statement p {
	max-width: 34rem;
	color: var(--vdr-muted);
}

.post-list {
	display: grid;
	border-top: 1px solid var(--vdr-line);
}

.post-summary {
	padding-block: 2rem;
	border-bottom: 1px solid var(--vdr-line);
}

.post-summary__date {
	color: var(--vdr-muted);
	font-size: 0.68rem;
}

.post-summary h2 {
	font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.post-summary h2 a {
	text-decoration: none;
}

/* 404 */
.error-page {
	display: grid;
	min-height: 100svh;
	align-items: center;
	padding-block: calc(var(--vdr-header-height) + 3rem) 4rem;
	background:
		radial-gradient(circle at 20% 35%, rgba(88, 215, 210, 0.11), transparent 25rem),
		var(--vdr-ink);
}

.error-page__grid {
	display: grid;
	gap: 1.5rem;
}

.error-page__code {
	color: rgba(154, 231, 227, 0.17);
	font-size: clamp(7rem, 32vw, 22rem);
	font-weight: 700;
	letter-spacing: -0.1em;
	line-height: 0.72;
}

.error-page__content h1 {
	max-width: 13ch;
	font-size: clamp(2.6rem, 8vw, 5.7rem);
}

.error-page__content > p:not(.eyebrow) {
	max-width: 36rem;
	color: var(--vdr-muted);
	font-size: 1.08rem;
}

.error-page__links {
	display: flex;
	margin-block-start: 2rem;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
}

/* Pagination */
.navigation.pagination {
	padding-block: 2rem;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.page-numbers {
	display: grid;
	min-width: 2.75rem;
	min-height: 2.75rem;
	place-items: center;
	padding: 0.5rem;
	border: 1px solid var(--vdr-line);
	font-size: 0.78rem;
	text-decoration: none;
}

.page-numbers.current {
	border-color: var(--vdr-cyan);
	background: var(--vdr-charcoal-light);
}

@media (hover: hover) and (pointer: fine) {
	.button:hover {
		transform: translateY(-2px);
	}

	.button--primary:hover {
		background: var(--vdr-cyan-soft);
	}

	.button--ghost:hover,
	.button--secondary:hover {
		border-color: var(--vdr-cyan);
		background: rgba(242, 240, 233, 0.055);
	}

	.primary-menu a:hover,
	.footer-menu a:hover,
	.text-link:hover,
	.breadcrumbs a:hover {
		color: var(--vdr-cyan-soft);
	}

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

	.project-card__link:hover .project-card__view {
		border-color: var(--vdr-cyan);
		background: var(--vdr-cyan);
		color: var(--vdr-ink);
	}

	.service-lines__trigger:hover {
		padding-inline: 1rem;
		background: rgba(88, 215, 210, 0.035);
	}

	.service-lines__trigger:hover .service-lines__indicator {
		border-color: var(--vdr-cyan);
	}

	.service-lines__link:hover {
		color: var(--vdr-cyan-soft);
	}

	.contact-links a:hover .contact-links__value {
		color: var(--vdr-cyan-soft);
	}

	.social-links a:hover {
		border-color: var(--vdr-cyan);
		background: rgba(242, 240, 233, 0.055);
		color: var(--vdr-cyan-soft);
		transform: translateY(-2px);
	}
}

@media (min-width: 601px) {
	.working-composition {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 40rem) {
	:root {
		--vdr-shell: min(100% - 3rem, 78rem);
		--vdr-shell-wide: min(100% - 3rem, 92rem);
	}

	.section-heading--split {
		grid-template-columns: 1fr auto;
	}

	.project-card__caption {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.project-card__meta {
		padding-block-start: 0.5rem;
		text-align: right;
	}

	.error-page__links {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 48rem) {
	.hero__statement {
		font-size: clamp(4.625rem, 7.5vw, 5.25rem);
	}

	.contact-section__grid {
		grid-template-columns: minmax(10rem, 0.65fr) minmax(0, 1.35fr);
	}

	.contact-section__details {
		padding-block-start: 3.5rem;
	}

	.conductor-section__grid:not(.conductor-section__grid--text-only) {
		grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
		gap: clamp(3rem, 8vw, 8rem);
	}

	.site-footer__navigation,
	.site-footer__legal {
		grid-template-columns: 1fr auto;
		align-items: start;
	}

	.site-footer__navigation > .social-links,
	.site-footer__legal > :last-child {
		justify-self: end;
		text-align: right;
	}

	.project-header {
		grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
		gap: 4rem;
	}

	.project-copy {
		grid-template-columns: 10rem 1fr;
		gap: 3rem;
	}

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

	.project-navigation__previous {
		text-align: left;
	}

	.project-navigation__next {
		text-align: right;
	}

	.studio-page__grid {
		grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
		gap: 5rem;
	}

	.error-page__grid {
		align-items: end;
		grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
		gap: 4rem;
	}
}

@media (min-width: 64rem) {
	:root {
		--vdr-header-height: 5.875rem;
	}

	body.menu-open {
		overflow: auto;
	}

	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
		gap: 2rem;
	}

	.site-header__brand {
		justify-self: start;
	}

	.has-js .menu-toggle {
		display: none;
	}

	.primary-navigation,
	.has-js .primary-navigation {
		position: static;
		z-index: auto;
		grid-column: auto;
		max-height: none;
		overflow: visible;
		padding: 0;
		border: 0;
		background: transparent;
		opacity: 1;
		transform: none;
		visibility: visible;
		justify-self: center;
	}

	.primary-menu {
		align-items: center;
		justify-content: center;
		flex-direction: row;
		gap: 2.15rem;
	}

	.primary-menu a {
		position: relative;
		min-height: 3.25rem;
		border: 0;
		font-size: 0.8rem;
		letter-spacing: 0.04em;
	}

	.primary-menu a::after {
		position: absolute;
		right: 0;
		bottom: 0.45rem;
		left: 0;
		height: 1px;
		background: var(--vdr-cyan);
		content: "";
		transform: scaleX(0);
		transform-origin: right;
		transition: transform 240ms ease;
	}

	.primary-menu a:hover::after,
	.primary-menu .current-menu-item > a::after,
	.primary-menu .current_page_item > a::after {
		transform: scaleX(1);
		transform-origin: left;
	}

	.primary-menu .sub-menu {
		position: absolute;
		min-width: 13rem;
		padding: 0.5rem;
		border: 1px solid var(--vdr-line);
		background: var(--vdr-charcoal);
		list-style: none;
	}

	.primary-navigation__extras {
		display: none;
	}

	.site-header__actions {
		display: flex;
		align-items: center;
		justify-self: end;
	}

	.social-links--header {
		flex-wrap: nowrap;
	}

	.hero__content {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 4rem;
		padding-block-end: clamp(8rem, 14vh, 10rem);
	}

	.hero__rotator {
		min-height: 25rem;
	}

	.hero__statement {
		font-size: clamp(4.625rem, calc(12.5vw - 3.375rem), 6.5rem);
	}

	.hero__actions {
		grid-template-columns: 15rem;
	}

	.hero__scroll {
		display: flex;
	}

	.project-stream:not(.project-stream--related) {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.project-stream:not(.project-stream--related) .project-card {
		grid-column: 1 / span 8;
	}

	.project-stream:not(.project-stream--related) .project-card:nth-child(3n + 2) {
		grid-column: 6 / -1;
	}

	.project-stream:not(.project-stream--related) .project-card:nth-child(3n) {
		grid-column: 2 / span 7;
	}

	.project-stream--related {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.project-stream--related .project-card__title {
		font-size: 1.5rem;
	}

	.project-stream--related .project-card__caption {
		grid-template-columns: 1fr;
	}

	.project-stream--related .project-card__meta {
		text-align: left;
	}

	.working-composition {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(0.85rem, 1.25vw, 1.25rem);
	}

	.working-section__title {
		white-space: nowrap;
	}

	.page-hero--archive {
		align-items: end;
		grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
	}

	.page-hero--archive .eyebrow,
	.page-hero--archive h1 {
		grid-column: 1;
	}

	.page-hero--archive .page-hero__lead {
		grid-column: 2;
		grid-row: 1 / span 2;
		align-self: end;
	}

	.project-narrative {
		width: min(100% - 3rem, 64rem);
	}
}

@media (min-width: 90rem) {
	.hero__content {
		padding-block-end: max(8rem, 10vh);
	}

	.hero__statement {
		font-size: 6.5rem;
	}
}

@media (min-width: 64rem) and (max-width: 74.999rem) {
	.site-header__inner {
		gap: 0.75rem;
	}

	.primary-menu {
		gap: 1.15rem;
	}

	.social-links--header {
		gap: 0.2rem;
	}
}

@media (max-height: 44rem) and (max-width: 63.999rem) {
	.hero__content {
		padding-block-start: calc(var(--vdr-header-height) + 2rem);
		padding-block-end: 5rem;
	}

	.hero__statement {
		font-size: clamp(2.05rem, 9.5vw, 3.8rem);
	}

	.hero__brand-line {
		margin-block-end: 0.75rem;
	}

	.hero__rotator {
		min-height: 18rem;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@supports not (backdrop-filter: blur(1rem)) {
	.site-header.is-scrolled,
	.site-header.navigation-open,
	.project-card__view {
		background: rgba(9, 9, 8, 0.96);
	}
}
