:root {
	font-family: var(--font-sans);
	color: var(--fg-default);
	background: var(--bg-page);
	--fg-on-inverse: var(--fg-on-accent);
	--fg-on-inverse-muted: color-mix(in srgb, var(--fg-on-inverse) 68%, transparent);
	--fg-on-inverse-subtle: color-mix(in srgb, var(--fg-on-inverse) 55%, transparent);
	--border-on-inverse: color-mix(in srgb, var(--fg-on-inverse) 32%, transparent);
	--bg-aurora: var(--ink-900);
	--bg-night: var(--indigo-950);
	--fg-concept-dark: var(--fg-default);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--bg-page);
}
a {
	color: inherit;
	text-decoration: none;
}
.skip-link {
	left: -9999px;
	position: absolute;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
	z-index: 999;
	background: var(--bg-surface);
	padding: 12px;
}
.site-header {
	height: 72px;
	padding: 0 5vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bg-inverse);
	color: var(--fg-on-inverse);
	position: sticky;
	top: 0;
	z-index: 20;
}
.logo-shell {
	display: flex;
	width: 154px;
}
.logo-shell img,
.logo-shell svg {
	width: 100%;
	height: auto;
}
.site-header nav {
	display: flex;
	gap: 28px;
	font-size: 14px;
	color: var(--fg-on-inverse-muted);
}
.nav-cta {
	font-size: 13px;
	border: 1px solid var(--border-on-inverse);
	border-radius: var(--radius-sm);
	padding: 10px 14px;
}
.menu-button {
	display: none;
	background: none;
	border: 0;
	color: var(--fg-on-inverse);
}
.mobile-menu {
	position: fixed;
	z-index: 19;
	top: 72px;
	right: 0;
	left: 0;
	background: var(--bg-inverse);
	padding: 24px 5vw;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.mobile-menu:not([hidden]) {
	display: grid;
}
.mobile-menu a {
	display: block;
	padding: var(--space-2) 0;
	color: var(--fg-on-inverse);
	font-size: 22px;
}
.page-section {
	padding: 104px 8vw;
	scroll-margin-top: 72px;
}
.hero {
	min-height: calc(100svh - 72px);
	background: var(--bg-inverse);
	color: var(--fg-on-inverse);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
}
.hero canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.92;
}
.hero canvas:focus-visible {
	outline: 2px solid var(--accent-default);
	outline-offset: -4px;
}
.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 760px;
}
.eyebrow {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 20px;
}
.gold {
	color: var(--brand-gold);
}
.hero h1,
h2 {
	font-stretch: 125%;
	letter-spacing: -0.04em;
}
.hero h1 {
	font-size: clamp(48px, 7vw, 96px);
	line-height: 0.98;
	margin: 0 0 28px;
	max-width: 800px;
}
.lede {
	max-width: 510px;
	font-size: 18px;
	line-height: 1.6;
	color: var(--fg-muted);
}
.hero .lede {
	color: var(--fg-on-inverse-muted);
}
.actions {
	margin-top: 36px;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	padding: 14px 20px;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
}
.primary {
	background: var(--accent-default);
	color: var(--fg-on-accent);
}
.inverse {
	border-color: var(--border-on-inverse);
	margin-left: 9px;
}
.hero-meta {
	position: absolute;
	z-index: 1;
	bottom: 28px;
	left: 8vw;
	right: 8vw;
	display: flex;
	justify-content: space-between;
	font: 11px 'JetBrains Mono';
	color: var(--fg-on-inverse-subtle);
}
.band {
	background: var(--bg-surface);
}
.split {
	display: grid;
	grid-template-columns: 1.5fr 0.7fr;
	gap: 70px;
	align-items: end;
}
.split h2,
.section-heading h2,
.capabilities h2,
.studio h2,
.contact h2 {
	font-size: clamp(40px, 5vw, 68px);
	line-height: 1.02;
	margin: 0;
}
.split p {
	color: var(--fg-muted);
	font-size: 17px;
	line-height: 1.6;
	margin: 0;
}
.work {
	background: var(--bg-page);
}
.section-heading {
	position: relative;
	margin-bottom: 44px;
}
.work-filters {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	gap: 14px;
}
.work-filters button {
	border: 0;
	background: none;
	color: var(--fg-muted);
	font: 600 13px Archivo;
	cursor: pointer;
	padding: 4px;
}
.work-filters button[aria-pressed='true'] {
	color: var(--accent-default);
	border-bottom: 2px solid var(--accent-default);
}
.work-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.work-card {
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--bg-surface);
}
.work-card.featured {
	grid-row: span 2;
}
.work-visual {
	height: 270px;
	position: relative;
	padding: 18px;
	font: 10px 'JetBrains Mono';
}
.featured .work-visual {
	height: 490px;
}
.aurora {
	background: var(--bg-aurora);
	color: var(--fg-on-inverse);
	overflow: hidden;
}
.glass-orb {
	position: absolute;
	width: 55%;
	aspect-ratio: 1;
	border-radius: 50%;
	right: 12%;
	top: 22%;
	background: radial-gradient(
		circle at 35% 30%,
		color-mix(in srgb, var(--fg-on-inverse) 47%, transparent) 0 3%,
		var(--accent-default) 25%,
		var(--bg-inverse) 68%
	);
	box-shadow: 0 0 100px color-mix(in srgb, var(--accent-default) 60%, transparent);
}
.stone {
	background: var(--ink-100);
}
.stone b {
	font-size: 180px;
	position: absolute;
	right: 12%;
	bottom: -44px;
	font-stretch: 125%;
	color: var(--fg-concept-dark);
}
.solar {
	background: var(--brand-gold);
}
.solar i {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	border: 1px solid var(--fg-concept-dark);
	right: -25px;
	bottom: -55px;
}
.solar i:after {
	content: '';
	position: absolute;
	inset: 32px;
	border-radius: 50%;
	background: var(--fg-concept-dark);
}
.night {
	background: var(--bg-night);
	color: var(--fg-on-inverse);
}
.night em {
	position: absolute;
	bottom: 18px;
	right: 22px;
	font-style: normal;
	text-align: right;
	font-size: 42px;
	line-height: 0.9;
	font-stretch: 125%;
	font-weight: 600;
}
.work-info {
	padding: 20px 22px 22px;
}
.work-info h3 {
	font-size: 23px;
	margin: 0 0 7px;
}
.work-info p {
	margin: 0 0 16px;
	color: var(--fg-muted);
	font-size: 14px;
}
.work-info a,
.text-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--accent-hover);
}
.capabilities {
	background: var(--bg-inverse);
	color: var(--fg-on-inverse);
}
.capabilities h2 {
	margin: 0 0 52px;
}
.capability-list {
	border-top: 1px solid var(--border-on-inverse);
}
.capability-list a {
	display: grid;
	grid-template-columns: 52px 1fr 1fr 25px;
	gap: 22px;
	padding: 22px 0;
	border-bottom: 1px solid var(--border-on-inverse);
	align-items: center;
}
.capability-list span {
	font: 11px 'JetBrains Mono';
	color: var(--brand-gold);
}
.capability-list strong {
	font-size: 25px;
}
.capability-list p {
	margin: 0;
	color: var(--fg-on-inverse-muted);
	font-size: 14px;
	line-height: 1.5;
}
.studio {
	background: var(--bg-sunken);
	position: relative;
	overflow: hidden;
}
.studio h2 {
	max-width: 820px;
	position: relative;
}
.studio .gold {
	color: var(--fg-muted);
}
.studio-star {
	position: absolute;
	color: var(--brand-gold);
	right: 5%;
	top: 85px;
	font-size: 260px;
	opacity: 0.28;
}
.principles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 60px 0 30px;
	position: relative;
}
.principles article {
	border-top: 1px solid var(--border-strong);
	padding-top: 16px;
}
.principles h3 {
	font-size: 20px;
	margin: 0 0 10px;
}
.principles p {
	margin: 0;
	line-height: 1.5;
	color: var(--fg-muted);
	font-size: 14px;
}
.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
}
.contact form {
	border: 1px solid var(--border-default);
	border-radius: var(--radius-lg);
	padding: 28px;
	background: var(--bg-surface);
}
.contact label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 18px;
}
.contact input,
.contact textarea {
	font: 14px Archivo;
	width: 100%;
	display: block;
	margin-top: 8px;
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	padding: 12px;
	background: var(--bg-surface);
	color: var(--fg-default);
}
.contact textarea {
	min-height: 104px;
	resize: vertical;
}
.contact .button {
	margin-top: 4px;
}
#form-status {
	font-size: 13px;
	color: var(--fg-muted);
}
footer {
	border-top: 1px solid var(--border-default);
	padding: 40px 8vw;
	display: grid;
	grid-template-columns: 1fr 1.4fr auto;
	gap: 25px;
	font-size: 13px;
	align-items: center;
}
footer p {
	color: var(--fg-muted);
	margin: 0;
}
.footer-logo {
	width: 150px;
}
.case-page {
	background: var(--bg-page);
}
.case-hero {
	min-height: calc(100svh - 72px);
	padding: 104px 8vw;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
}
.case-hero h1 {
	font-size: clamp(64px, 10vw, 148px);
	font-stretch: 125%;
	letter-spacing: -0.06em;
	line-height: 0.82;
	margin: 0 0 28px;
	position: relative;
	z-index: 1;
}
.case-hero > p:not(.eyebrow) {
	font-size: clamp(20px, 2.2vw, 34px);
	line-height: 1.25;
	max-width: 700px;
	margin: 0;
	position: relative;
	z-index: 1;
}
.case-hero .eyebrow,
.case-hero .concept-label {
	position: relative;
	z-index: 1;
}
.case-hero.aurora::after {
	content: '';
	position: absolute;
	width: min(52vw, 720px);
	aspect-ratio: 1;
	border-radius: 50%;
	right: -6vw;
	top: 5%;
	background: radial-gradient(
		circle at 35% 30%,
		color-mix(in srgb, var(--fg-on-inverse) 53%, transparent) 0 2%,
		var(--accent-default) 23%,
		var(--bg-inverse) 68%
	);
	box-shadow: 0 0 120px color-mix(in srgb, var(--accent-default) 53%, transparent);
}
.case-hero.stone,
.case-hero.solar {
	color: var(--fg-concept-dark);
}
.case-hero.night {
	color: var(--fg-on-inverse);
}
.concept-label {
	display: inline-flex;
	align-self: flex-start;
	margin-top: 34px;
	border: 1px solid currentColor;
	border-radius: var(--radius-full);
	padding: 8px 12px;
	font: 10px 'JetBrains Mono';
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.72;
}
.case-story {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 8vw;
	padding: 104px 8vw;
	background: var(--bg-surface);
}
.case-story h2 {
	font-size: clamp(34px, 4.2vw, 62px);
	line-height: 1.05;
	margin: 0;
}
.case-story > div > p:last-child {
	font-size: 18px;
	line-height: 1.65;
	color: var(--fg-muted);
	margin: 0;
}
.case-next {
	padding: 36px 8vw 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.not-found {
	min-height: calc(100svh - 72px);
	padding: 104px 8vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--bg-inverse);
	color: var(--fg-on-inverse);
}
.not-found h1 {
	font-size: clamp(54px, 8vw, 118px);
	font-stretch: 125%;
	letter-spacing: -0.05em;
	line-height: 0.9;
	max-width: 900px;
	margin: 0 0 28px;
}
.not-found > p:not(.eyebrow) {
	color: var(--fg-on-inverse-muted);
	font-size: 18px;
	line-height: 1.6;
}
.not-found .button {
	align-self: flex-start;
	margin-top: 24px;
}
@media (max-width: 720px) {
	.site-header {
		padding: 0 20px;
	}
	.site-header nav,
	.nav-cta {
		display: none;
	}
	.menu-button {
		display: block;
	}
	.page-section {
		padding: 72px 20px;
	}
	.hero {
		min-height: 650px;
	}
	.hero h1 {
		font-size: 54px;
	}
	.split,
	.contact {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.work-filters {
		position: static;
		margin-top: 26px;
	}
	.work-grid {
		grid-template-columns: 1fr;
	}
	.work-card.featured {
		grid-row: auto;
	}
	.featured .work-visual {
		height: 340px;
	}
	.capability-list a {
		grid-template-columns: 34px 1fr 16px;
	}
	.capability-list p {
		display: none;
	}
	.principles {
		grid-template-columns: 1fr;
		margin-top: 42px;
	}
	.studio-star {
		font-size: 160px;
		top: 120px;
		right: -10px;
	}
	.contact form {
		padding: 20px;
	}
	footer {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 32px 20px;
	}
	.hero-meta {
		left: 20px;
		right: 20px;
	}
	.work-visual {
		height: 230px;
	}
	.menu-button {
		font: 600 13px Archivo;
	}
	.case-hero {
		min-height: 560px;
		padding: 80px 20px 52px;
	}
	.case-hero h1 {
		font-size: 58px;
	}
	.case-hero.aurora::after {
		width: 72vw;
		right: -20vw;
		top: 14%;
	}
	.case-story {
		grid-template-columns: 1fr;
		gap: 46px;
		padding: 64px 20px;
	}
	.case-next {
		padding: 28px 20px 60px;
	}
	.not-found {
		padding: 80px 20px;
	}
}
