:root {
	--brand: #344ea0;
	--brand-dark: #26397c;
	--brand-deep: #1b2a5c;
	--gold: #e3c485;
	--gold-light: #f0ddb0;
	--ink: #0a0e1c;
	--white: #ffffff;
	--max: 72rem;
	--display: "Archivo", sans-serif;
	--body: "Space Grotesk", sans-serif;
	--weight-regular: 400;
	--weight-medium: 500;
	--weight-semibold: 600;
	--weight-bold: 700;
	--weight-extrabold: 800;
	--weight-black: 900;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--brand);
	color: var(--white);
	font-family: var(--body);
	font-size: 16px;
	font-weight: var(--weight-regular);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
	font-family: var(--body);
	font-weight: var(--weight-regular);
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
	font-family: var(--display);
	
	letter-spacing: 0;
}

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

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

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

:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 3px;
}

.container {
	width: min(100% - 2rem, var(--max));
	margin-inline: auto;
}

.brutal-border {
	border: 3px solid var(--ink);
}

.border-x-0 {
	border-left: 0;
	border-right: 0;
}

.brutal-shadow {
	box-shadow: 8px 8px 0 0 var(--ink);
}

.brutal-shadow-sm {
	box-shadow: 5px 5px 0 0 var(--ink);
}

.stripes {
	background-image: repeating-linear-gradient(135deg, rgba(10, 14, 28, 0.9) 0 14px, rgba(10, 14, 28, 0.65) 14px 28px);
}

.text-gold {
	color: var(--gold);
}

.site-header {
	position: fixed;
	top: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 50;
}

.site-nav {
	max-width: var(--max);
	margin-inline: auto;
	background: var(--ink);
}

.site-nav-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1.25rem;
}

.site-brand {
	color: var(--gold);
	font-family: var(--display);
	font-size: clamp(1.25rem, 1.8vw, 1.6rem);
	
	line-height: 1;
	letter-spacing: 0;
}

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

.site-brand span {
	color: var(--white);
}

.custom-logo {
	max-height: 48px;
	width: auto;
}

.desktop-menu,
.primary-menu {
	display: none;
	align-items: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.desktop-menu a,
.primary-menu a {
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--white);
	transition: color 150ms ease;
}

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

.nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nav-cta {
	display: none;
	background: var(--gold);
	color: var(--ink);
	border: 3px solid var(--gold);
	padding: 0.55rem 1rem;
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
	transition: background 150ms ease, border-color 150ms ease;
}

.nav-cta:hover {
	background: var(--white);
	border-color: var(--white);
}

.menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 3px solid var(--gold);
	background: var(--gold);
	color: var(--ink);
	cursor: pointer;
}

.menu-toggle .icon-close {
	display: none;
}

.menu-toggle[aria-expanded="true"] .icon-open {
	display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
	display: block;
}

.mobile-menu {
	border-top: 3px solid var(--ink);
}

.mobile-menu a {
	display: block;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.mobile-menu a:hover,
.mobile-menu .is-active {
	color: var(--gold);
	background: rgba(255, 255, 255, 0.05);
}

.mobile-menu .mobile-cta {
	background: var(--gold);
	color: var(--ink);
	font-weight: var(--weight-extrabold);
}

.hero-section {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: 8rem 0 4rem;
	overflow: hidden;
}

.hero-compact {
	min-height: 70svh;
}

.hero-decor {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.2;
	overflow: hidden;
}

.decor-box {
	position: absolute;
	border: 4px solid;
}

.decor-box-one {
	top: -2.5rem;
	left: -2.5rem;
	width: 18rem;
	height: 18rem;
	border-color: var(--gold);
	transform: rotate(12deg);
}

.decor-box-two {
	right: 0;
	bottom: 0;
	width: 24rem;
	height: 24rem;
	border-color: var(--white);
	transform: rotate(-6deg);
}

.hero-content {
	position: relative;
	z-index: 1;
}

.eyebrow {
	margin: 0 0 1rem;
	color: var(--gold);
	font-family: var(--display);
	font-size: clamp(0.8rem, 1.2vw, 1rem);
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.3em;
}

.hero-title,
.page-title {
	margin: 0;
	font-family: var(--display);
	
	text-transform: uppercase;
	line-height: 0.9;
	letter-spacing: 0;
}

.hero-title {
	font-size: clamp(4.1rem, 13vw, 7.5rem);
}

.page-title {
	font-size: clamp(4rem, 13vw, 6rem);
}

.hero-bottom {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
}

.hero-bottom p {
	max-width: 39rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: var(--weight-regular);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	width: fit-content;
	border: 3px solid var(--ink);
	padding: 1rem 1.5rem;
	box-shadow: 8px 8px 0 0 var(--ink);
	font-family: var(--display);
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
	transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
	transform: translate(4px, 4px);
	box-shadow: none;
}

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

.button-gold {
	background: var(--gold);
	color: var(--ink);
	border-color: var(--gold);
}

.band {
	background: var(--brand-deep);
}

.section-heading-row {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	padding-block: clamp(4rem, 8vw, 6rem);
}

.section-title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(2.6rem, 7vw, 4rem);
	text-transform: uppercase;
	line-height: 0.95;
	letter-spacing: 0;
}

.section-title.small {
	font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-title.tiny {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.side-note {
	max-width: 20rem;
	margin: 0;
	border-left: 4px solid var(--gold);
	padding-left: 1rem;
	color: var(--gold);
	font-family: var(--display);
	font-size: 0.95rem;
	font-weight: var(--weight-bold);
	text-transform: uppercase;
}

.project-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3px;
	background: var(--ink);
	border-block: 3px solid var(--ink);
}

.project-card {
	position: relative;
	background: var(--brand-deep);
}

.project-card-link {
	position: relative;
	display: block;
	min-height: 100%;
}

.project-card-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.project-media,
.project-card-visual img,
.project-card-visual video,
.project-detail-media img,
.project-detail-media video,
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.project-hover {
	position: absolute;
	inset: 0 0 auto;
	aspect-ratio: 4 / 5;
	display: grid;
	place-items: center;
	background: rgba(10, 14, 28, 0.7);
	opacity: 0;
	transition: opacity 180ms ease;
}

.project-card:hover .project-hover {
	opacity: 1;
}

.project-hover span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 2px solid var(--gold);
	padding: 0.5rem 1rem;
	color: var(--gold);
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
}

.project-card-body {
	padding: 1.25rem;
}

.project-card-body h3 {
	margin: 0;
	font-family: var(--display);
	font-size: 1.125rem;
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
}

.project-card-body p {
	margin: 0.25rem 0 0;
	color: var(--gold);
	font-family: var(--display);
	font-size: 0.75rem;
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.centered-cta {
	display: flex;
	justify-content: center;
	padding-block: 3rem 4rem;
}

.content-section {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.split-grid {
	display: grid;
	gap: 2.5rem;
}

.copy-block {
	display: grid;
	gap: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	font-weight: var(--weight-regular);
}

.copy-block p {
	margin: 0;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tag-list span {
	display: inline-block;
	border: 3px solid var(--ink);
	background: var(--ink);
	color: var(--gold);
	padding: 0.5rem 1rem;
	font-family: var(--display);
	font-size: clamp(0.75rem, 1.4vw, 0.9rem);
	font-weight: var(--weight-bold);
	text-transform: uppercase;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	color: var(--gold);
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
	transition: color 150ms ease;
}

.text-link:hover {
	color: var(--white);
}

.contact-section {
	background: var(--brand-deep);
	padding-block: clamp(4rem, 8vw, 7rem);
}

.contact-inner {
	text-align: center;
}

.contact-title {
	margin: 0 0 2.5rem;
	font-family: var(--display);
	font-size: clamp(4rem, 12vw, 4.5rem);
	line-height: 0.95;
	text-transform: uppercase;
}

.email-link {
	display: inline-block;
	max-width: 100%;
	border-bottom: 4px solid var(--gold);
	font-family: var(--display);
	font-size: clamp(1.3rem, 4vw, 2rem);
	font-weight: var(--weight-bold);
	overflow-wrap: anywhere;
	transition: color 150ms ease;
}

.email-link:hover {
	color: var(--gold);
}

.social-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 3.5rem;
}

.social-list a {
	border: 3px solid var(--ink);
	background: var(--ink);
	padding: 0.75rem 1.25rem;
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	transition: background 150ms ease, color 150ms ease;
}

.social-list a:hover {
	background: var(--gold);
	color: var(--ink);
}

.site-footer {
	padding-block: 2rem;
}

.footer-row {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--display);
	font-size: 0.8rem;
	font-weight: var(--weight-semibold);
	text-align: center;
	text-transform: uppercase;
}

.page-header-section {
	padding-block: 9rem 3rem;
}

.page-intro {
	max-width: 39rem;
	margin: 1.5rem 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	font-weight: var(--weight-regular);
}

.portrait-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 21 / 9;
}

.portrait-placeholder span {
	color: rgba(227, 196, 133, 0.3);
	font-family: var(--display);
	font-size: clamp(4rem, 10vw, 7rem);
	
	text-transform: uppercase;
	line-height: 1;
}

.compact-heading {
	padding-block: 4rem 2.5rem;
}

.tool-grid,
.process-grid,
.gallery-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3px;
	background: var(--ink);
}

.tool-grid > div {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	background: var(--brand-deep);
	padding: 1rem;
	text-align: center;
}

.tool-grid span {
	font-family: var(--display);
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
}

.narrow-content {
	max-width: 52rem;
}

.timeline-list {
	display: grid;
	gap: 3px;
	margin-top: 2.5rem;
	background: var(--ink);
}

.timeline-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	background: var(--brand-dark);
	padding: 1.25rem;
}

.timeline-item > span {
	flex: 0 0 6rem;
	color: var(--gold);
	font-family: var(--display);
	font-weight: var(--weight-extrabold);
}

.timeline-item p {
	margin: 0;
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
}

.timeline-item small {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1rem;
	font-weight: var(--weight-regular);
}

.process-grid > div {
	background: var(--brand-deep);
	padding: clamp(1.5rem, 4vw, 2rem);
}

.process-grid span {
	color: rgba(227, 196, 133, 0.4);
	font-family: var(--display);
	font-size: 3rem;
	
}

.process-grid p {
	margin: 1rem 0 0.5rem;
	font-family: var(--display);
	font-size: 1.125rem;
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
}

.process-grid small {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	font-weight: var(--weight-regular);
}

.big-link-cta {
	display: block;
	background: var(--ink);
	padding-block: clamp(4rem, 8vw, 6rem);
	text-align: center;
	transition: background 180ms ease;
}

.big-link-cta:hover {
	background: var(--brand-deep);
}

.big-link-cta h2 {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
	font-family: var(--display);
	font-size: clamp(4rem, 12vw, 4.5rem);
	
	line-height: 0.95;
	text-transform: uppercase;
}

.big-link-cta svg {
	transition: transform 180ms ease;
}

.big-link-cta:hover svg {
	transform: translateX(0.5rem);
}

.breadcrumb-row {
	padding-top: 8rem;
}

.project-header-section {
	padding-block: 2rem 3rem;
}

.meta-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.meta-pills > div {
	border: 3px solid var(--ink);
	background: var(--ink);
	padding: 0.5rem 1rem;
}

.meta-pills p {
	margin: 0 0 0.15rem;
	color: var(--gold);
	font-family: var(--display);
	font-size: 0.65rem;
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.meta-pills span {
	font-family: var(--display);
	font-size: 0.875rem;
	font-weight: var(--weight-bold);
}

.project-cover-visual,
.project-detail-media {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.project-detail-media-image {
	aspect-ratio: 21 / 9;
}

.project-detail-media-video {
	aspect-ratio: 16 / 9;
	background: var(--ink);
}

.project-detail-media-video video {
	object-fit: contain;
	background: var(--ink);
}

.project-media-placeholder {
	width: 100%;
	height: 100%;
}

.project-overview {
	display: grid;
	gap: 2rem;
	max-width: 58rem;
}

.mini-label {
	margin: 0 0 0.75rem;
	color: var(--gold);
	font-family: var(--display);
	font-size: 0.75rem;
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gallery-item {
	aspect-ratio: 4 / 3;
	background: var(--brand-deep);
	overflow: hidden;
}

.empty-state {
	padding: 3rem 1rem;
	text-align: center;
}

.entry-content {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	font-weight: var(--weight-regular);
}

.entry-content a {
	color: var(--gold);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.2em;
}

.entry-summary-block {
	border-bottom: 3px solid rgba(10, 14, 28, 0.6);
	padding-block: 1.5rem;
}

.entry-summary-block h2 {
	margin: 0 0 0.5rem;
	font-family: var(--display);
	text-transform: uppercase;
}

.nav-links,
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	padding: 2rem;
	font-family: var(--display);
	font-weight: var(--weight-extrabold);
	text-transform: uppercase;
}

.nav-links a,
.nav-links span,
.pagination a,
.pagination span {
	border: 3px solid var(--ink);
	background: var(--ink);
	padding: 0.5rem 0.8rem;
}

.nav-links .current,
.pagination .current {
	background: var(--gold);
	color: var(--ink);
}

@media (min-width: 640px) {
	.nav-cta {
		display: inline-block;
	}

	.project-grid-all,
	.tool-grid,
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.timeline-item {
		flex-direction: row;
		align-items: center;
		gap: 1.5rem;
	}
}

@media (min-width: 768px) {
	.site-nav-row {
		padding: 1rem 2rem;
	}

	.desktop-menu,
	.primary-menu {
		display: flex;
	}

	.menu-toggle {
		display: none;
	}

	.mobile-menu {
		display: none;
	}

	.hero-bottom {
		flex-direction: row;
		align-items: end;
		justify-content: space-between;
	}

	.footer-row {
		flex-direction: row;
		text-align: left;
	}

	.project-cover-visual,
	.project-detail-media-image {
		aspect-ratio: 21 / 9;
	}

	.contact-title,
	.big-link-cta h2 {
		font-size: 4.5rem;
	}
}

@media (min-width: 1024px) {
	.split-grid {
		grid-template-columns: 5fr 7fr;
	}

	.project-overview {
		grid-template-columns: 4fr 8fr;
	}

	.project-grid-featured,
	.project-grid-all {
		grid-template-columns: repeat(3, 1fr);
	}

	.tool-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.process-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

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

	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
