:root {
	--bg: #050607;
	--bg-2: #080a0c;
	--panel: rgba(255, 255, 255, 0.045);
	--panel-strong: rgba(255, 255, 255, 0.075);
	--text: #f7f4ed;
	--muted: rgba(247, 244, 237, 0.68);
	--muted-2: rgba(247, 244, 237, 0.48);
	--line: rgba(255, 255, 255, 0.105);
	--line-strong: rgba(255, 255, 255, 0.2);
	--accent: #f2b84b;
	--accent-2: #62d6d0;
	--accent-3: #9aa9ff;
	--danger: #e36f61;
	--radius: 8px;
	--radius-small: 5px;
	--container: 1240px;
	--shadow: 0 34px 110px rgba(0, 0, 0, 0.48);
	--font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at 52% 0%, rgba(98, 214, 208, 0.12), transparent 34rem),
		radial-gradient(circle at 100% 18%, rgba(242, 184, 75, 0.08), transparent 28rem),
		linear-gradient(180deg, #07090a 0%, #050607 42%, #07090a 100%);
	background-attachment: fixed;
	color: var(--text);
	font-family: var(--font-main);
	font-size: 16px;
	line-height: 1.62;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.018));
}

body.nav-open,
body.modal-open {
	overflow: hidden;
}

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

img {
	height: auto;
}

a {
	color: inherit;
	text-decoration-color: rgba(242, 184, 75, 0.44);
	text-underline-offset: 0.22em;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a:hover {
	color: var(--accent);
}

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.62em;
	color: var(--text);
	font-weight: 760;
	letter-spacing: 0;
	line-height: 1;
	text-wrap: balance;
}

h1 {
	max-width: 9.4em;
	font-size: 5.7rem;
}

h2 {
	max-width: 13em;
	font-size: 3.55rem;
}

h3 {
	font-size: 1.22rem;
	line-height: 1.12;
}

p {
	margin: 0 0 1.2rem;
	color: var(--muted);
}

ul,
ol {
	color: var(--muted);
}

::selection {
	background: var(--accent);
	color: #11100b;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.section {
	position: relative;
	padding: 112px 0;
}

.narrow-content {
	max-width: 780px;
}

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

.skip-link:focus {
	position: fixed;
	inset: 16px auto auto 16px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	border-radius: var(--radius-small);
	background: var(--accent);
	color: #11100b;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.kicker,
.meta-label,
.timecode,
.tag-row span,
.work-meta span,
.micro-list,
.log-lines,
.ba-tags,
.step-number,
.deliverables-list span {
	font-family: var(--font-mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kicker,
.meta-label {
	margin: 0 0 14px;
	color: var(--accent-2);
	font-size: 0.72rem;
	font-weight: 700;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(5, 6, 7, 0.78);
	backdrop-filter: blur(18px);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}

.site-brand img {
	display: block;
	max-height: 46px;
	width: auto;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius-small);
	background: rgba(255, 255, 255, 0.045);
	color: var(--text);
	font-family: var(--font-mono);
	font-weight: 800;
}

.brand-copy {
	display: grid;
	line-height: 1.1;
}

.brand-copy span {
	color: var(--text);
	font-weight: 700;
}

.brand-copy small {
	color: var(--muted-2);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	text-transform: uppercase;
}

.primary-nav {
	display: flex;
	align-items: center;
}

.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 7px 12px;
	border: 1px solid transparent;
	border-radius: 999px;
	color: rgba(247, 244, 237, 0.72);
	font-size: 0.92rem;
	text-decoration: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.045);
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--text);
}

.product-hero {
	min-height: calc(100vh - 72px);
	display: grid;
	align-items: center;
	padding: 86px 0 34px;
	overflow: hidden;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(420px, 0.76fr) minmax(0, 1.24fr);
	align-items: center;
	gap: 28px;
	width: min(calc(100% - 32px), 1480px);
}

.hero-copy {
	position: relative;
	z-index: 2;
	padding: 28px 0;
}

.hero-text {
	max-width: 620px;
	color: rgba(247, 244, 237, 0.72);
	font-size: 1.2rem;
	line-height: 1.62;
}

.hero-visual {
	position: relative;
	margin: 0 -5vw 0 0;
	overflow: hidden;
	border-radius: var(--radius);
	filter: drop-shadow(0 34px 90px rgba(0, 0, 0, 0.54));
}

.hero-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(5, 6, 7, 0.52), transparent 34%),
		linear-gradient(180deg, transparent 60%, rgba(5, 6, 7, 0.24));
}

.hero-visual img {
	display: block;
	width: 100%;
	min-height: 520px;
	object-fit: cover;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.035);
	color: var(--text);
	font-weight: 740;
	text-decoration: none;
}

.button:hover {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.07);
	color: var(--text);
	transform: translateY(-2px);
}

.button-primary {
	border-color: #f5c05b;
	background: linear-gradient(180deg, #ffd977, #e9aa35);
	color: #11100b;
	box-shadow: 0 14px 34px rgba(242, 184, 75, 0.18);
}

.button-primary:hover {
	background: linear-gradient(180deg, #ffe18b, #efb13d);
	color: #11100b;
}

.button-video {
	gap: 10px;
}

.play-dot {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

.play-dot::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 2px;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 8px solid currentColor;
}

.format-marquee {
	display: flex;
	gap: 14px;
	max-width: 660px;
	margin-top: 34px;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.format-marquee div {
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
	min-width: max-content;
	animation: tfe-marquee 24s linear infinite;
}

.format-marquee span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.04);
	color: rgba(247, 244, 237, 0.72);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.product-band,
.intro-band,
.about-teaser,
.before-after-section,
.timeline-notes-section,
.deliverables-section {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
		rgba(255, 255, 255, 0.012);
}

.split-copy {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
	gap: 72px;
	align-items: start;
}

.aligned-split > :last-child {
	padding-top: 40px;
}

.section-heading {
	margin-bottom: 40px;
}

.section-heading p {
	max-width: 680px;
}

.section-heading.product-heading {
	display: grid;
	justify-items: center;
	text-align: center;
	margin-bottom: 46px;
}

.section-heading.product-heading h2 {
	max-width: 820px;
}

.section-heading.product-heading p {
	max-width: 690px;
}

.showcase-section,
.feature-rail-section {
	overflow: hidden;
}

.showcase-slider {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: var(--shadow);
}

.showcase-track {
	display: flex;
	touch-action: pan-y;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.showcase-slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 620px;
	overflow: hidden;
	background: #07090a;
}

.showcase-slide img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 620px;
	object-fit: cover;
}

.showcase-slide::after,
.video-preview-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.38) 42%, transparent 72%),
		linear-gradient(180deg, transparent 58%, rgba(5, 6, 7, 0.62));
}

.showcase-copy {
	position: absolute;
	left: 42px;
	bottom: 40px;
	z-index: 2;
	max-width: 500px;
}

.showcase-copy h3 {
	font-size: 2.45rem;
	line-height: 1.04;
}

.slider-controls,
.rail-controls {
	display: flex;
	gap: 10px;
}

.slider-controls {
	position: absolute;
	right: 24px;
	bottom: 24px;
	z-index: 4;
}

.slider-controls button,
.rail-controls button {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	background: rgba(5, 6, 7, 0.58);
	color: var(--text);
	backdrop-filter: blur(12px);
}

.slider-controls button:disabled {
	opacity: 0.38;
	cursor: default;
}

.rail-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.rail-heading h2 {
	max-width: 760px;
	margin-bottom: 0;
}

.motion-rail,
.services-grid {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 0 18px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.24) transparent;
}

.motion-tile {
	position: relative;
	flex: 0 0 min(78vw, 680px);
	min-height: 520px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #07090a;
	scroll-snap-align: start;
}

.motion-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.84;
	transition: transform 420ms ease, opacity 420ms ease;
}

.motion-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 10%, rgba(5, 6, 7, 0.18) 42%, rgba(5, 6, 7, 0.9)),
		linear-gradient(90deg, rgba(5, 6, 7, 0.34), transparent 72%);
}

.motion-tile:hover img {
	transform: scale(1.035);
	opacity: 1;
}

.motion-tile-copy {
	position: absolute;
	right: 28px;
	bottom: 28px;
	left: 28px;
	z-index: 2;
	max-width: 460px;
}

.motion-tile-copy h3 {
	font-size: 2.25rem;
	line-height: 1.02;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.work-note,
.process-step,
.timeline-note,
.empty-state,
.contact-form,
.work-card,
.before-after-card,
.edit-panel {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--panel);
	box-shadow: none;
}

.work-note,
.process-step,
.timeline-note,
.empty-state {
	padding: 22px;
}

.services-grid {
	display: flex;
	grid-template-columns: none;
	gap: 14px;
}

.services-grid .service-card {
	flex: 0 0 320px;
	min-height: 310px;
	background:
		radial-gradient(circle at 100% 0%, rgba(98, 214, 208, 0.1), transparent 46%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
		#0b0d0f;
	scroll-snap-align: start;
}

.service-card,
.work-card {
	transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.service-card:hover,
.work-card:hover {
	border-color: rgba(255, 255, 255, 0.22);
	background-color: rgba(255, 255, 255, 0.065);
	transform: translateY(-3px);
}

.text-link {
	margin-top: auto;
	color: var(--accent);
	font-weight: 700;
	text-decoration: none;
}

.work-card {
	overflow: hidden;
	background: #090b0d;
}

.work-media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background: #07090a;
}

.work-image-link,
.work-image-link img,
.placeholder-work .work-media > img,
.media-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.work-image-link img,
.placeholder-work .work-media > img {
	object-fit: cover;
	transition: transform 320ms ease, filter 320ms ease;
}

.work-card:hover img {
	transform: scale(1.035);
	filter: contrast(1.08) saturate(1.05);
}

.media-placeholder {
	display: grid;
	place-items: center;
	background: #101317;
}

.media-placeholder span {
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 2.5rem;
	font-weight: 800;
}

.video-launcher {
	position: absolute;
	right: 18px;
	bottom: 18px;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(5, 6, 7, 0.62);
	color: var(--text);
	backdrop-filter: blur(12px);
}

.video-launcher span,
.video-preview-play span {
	width: 0;
	height: 0;
	margin-left: 4px;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 14px solid currentColor;
}

.work-card-body {
	padding: 22px;
}

.tag-row,
.work-meta,
.ba-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag-row span,
.work-meta span,
.ba-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 8px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--muted);
	font-size: 0.68rem;
}

.video-preview-section {
	padding-top: 28px;
}

.video-preview-card {
	position: relative;
	min-height: 620px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #07090a;
	box-shadow: var(--shadow);
}

.video-preview-card > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.92;
}

.video-preview-overlay {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 520px) auto;
	align-items: end;
	gap: 28px;
	min-height: 620px;
	padding: 46px;
}

.video-preview-play {
	justify-self: end;
	display: grid;
	place-items: center;
	width: 86px;
	height: 86px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(5, 6, 7, 0.54);
	color: var(--text);
	backdrop-filter: blur(14px);
}

.deliverables-section {
	background:
		radial-gradient(circle at 20% 20%, rgba(98, 214, 208, 0.1), transparent 28rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.005));
}

.deliverables-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
	gap: 60px;
	align-items: start;
}

.deliverables-copy {
	position: sticky;
	top: 112px;
}

.deliverables-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.deliverables-list article {
	min-height: 210px;
	padding: 22px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
		#0b0d0f;
}

.deliverables-list span {
	display: block;
	margin-bottom: 18px;
	color: var(--accent-2);
	font-size: 0.72rem;
}

.before-after-list {
	display: grid;
	gap: 28px;
}

.before-after-card {
	overflow: hidden;
	background: #07090a;
}

.before-after-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.035);
}

.before-after-head h3 {
	margin-bottom: 0;
}

.ba-slider {
	position: relative;
	aspect-ratio: 16 / 8.5;
	overflow: hidden;
	background: #07090a;
	touch-action: pan-y;
}

.ba-image {
	position: absolute;
	inset: 0;
}

.ba-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ba-log {
	clip-path: inset(0 calc(100% - var(--ba-position)) 0 0);
}

.ba-demo-card .ba-log img {
	filter: grayscale(1) brightness(0.58) contrast(0.78) saturate(0.55);
}

.ba-playhead {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--ba-position);
	width: 2px;
	background: #fff;
	box-shadow: 0 0 26px rgba(98, 214, 208, 0.45);
	transform: translateX(-1px);
	pointer-events: none;
}

.ba-playhead::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 50%;
	background: rgba(5, 6, 7, 0.72);
	transform: translate(-50%, -50%);
	backdrop-filter: blur(10px);
}

.ba-playhead::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 48px;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(-50%, -50%);
}

.ba-slider input[type="range"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.ba-caption {
	margin: 0;
	padding: 18px 22px 22px;
}

.process-list {
	display: grid;
	gap: 14px;
}

.process-step {
	display: grid;
	grid-template-columns: 70px minmax(0, 0.64fr) minmax(260px, 1fr);
	gap: 18px;
	align-items: start;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.032);
}

.step-number {
	color: rgba(247, 244, 237, 0.42);
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1;
}

.process-step h3,
.process-step p:last-child {
	margin-bottom: 0;
}

.notes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.timeline-note {
	min-height: 230px;
	background: rgba(255, 255, 255, 0.04);
}

.timecode {
	margin-bottom: 16px;
	color: var(--accent);
	font-size: 0.82rem;
}

.note-text,
.note-text p {
	color: rgba(247, 244, 237, 0.86);
}

.cta-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) auto;
	gap: 28px;
	align-items: center;
	padding: 48px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(98, 214, 208, 0.1), transparent 42%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.cta-actions {
	justify-self: end;
}

.site-footer {
	padding: 72px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: #050607;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(150px, 0.5fr));
	gap: 32px;
}

.footer-column h2 {
	margin-bottom: 14px;
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: 0.82rem;
	text-transform: uppercase;
}

.footer-column ul,
.contact-list,
.social-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column a,
.contact-list a,
.social-list a {
	color: var(--muted);
	text-decoration: none;
}

.footer-bottom {
	margin-top: 42px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	margin: 0;
	color: var(--muted-2);
	font-family: var(--font-mono);
	font-size: 0.78rem;
}

.compact-hero {
	padding-top: 120px;
	padding-bottom: 58px;
	border-bottom: 1px solid var(--line);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
		#07090a;
}

.compact-hero h1 {
	font-size: 4rem;
}

.page-main {
	padding-top: 72px;
}

.entry-content > * {
	max-width: 760px;
}

.entry-content h2 {
	margin-top: 2rem;
	font-size: 2.1rem;
}

.entry-content a {
	color: var(--accent);
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 18px 22px;
	border-left: 3px solid var(--accent);
	background: rgba(255, 255, 255, 0.035);
}

.detail-grid,
.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.36fr);
	gap: 36px;
	align-items: start;
}

.detail-aside {
	position: sticky;
	top: 104px;
	padding: 22px;
}

.featured-work-image {
	margin: 0 0 28px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.featured-work-image img {
	display: block;
	width: 100%;
}

.contact-form {
	padding: 24px;
}

.form-row {
	display: grid;
	gap: 16px;
	margin-bottom: 16px;
}

.form-row.two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-form label {
	display: grid;
	gap: 7px;
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 0.92rem;
}

.contact-form label span {
	color: var(--text);
	font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 11px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
	background: #090b0d;
	color: var(--text);
}

.contact-form textarea {
	resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: 2px solid rgba(242, 184, 75, 0.45);
	outline-offset: 2px;
	border-color: var(--accent);
}

.hp-field {
	position: absolute;
	left: -9999px;
}

.form-notice {
	margin-bottom: 18px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius-small);
	color: var(--text);
}

.notice-success {
	border-color: rgba(98, 214, 208, 0.45);
	background: rgba(98, 214, 208, 0.08);
}

.notice-error {
	border-color: rgba(227, 111, 97, 0.55);
	background: rgba(227, 111, 97, 0.08);
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.video-modal.is-open {
	display: flex;
}

.video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
}

.video-modal-panel {
	position: relative;
	width: min(100%, 980px);
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background: #07090a;
	box-shadow: var(--shadow);
}

.video-close {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: 50%;
	background: rgba(5, 6, 7, 0.9);
	color: var(--text);
	font-size: 1.5rem;
	line-height: 1;
}

.video-frame {
	aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--radius);
}

@keyframes tfe-blink {
	0%,
	45% {
		opacity: 1;
	}
	46%,
	100% {
		opacity: 0;
	}
}

@keyframes tfe-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - 14px));
	}
}

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

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 1180px) {
	h1 {
		font-size: 4.6rem;
	}

	h2 {
		font-size: 3rem;
	}

	.card-grid,
	.notes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	body {
		background-attachment: scroll;
	}

	.section {
		padding: 82px 0;
	}

	.hero-grid,
	.split-copy,
	.detail-grid,
	.contact-grid,
	.cta-grid,
	.deliverables-grid {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		margin-right: 0;
	}

	.hero-visual img {
		min-height: 420px;
	}

	.aligned-split > :last-child {
		padding-top: 0;
	}

	.deliverables-copy,
	.detail-aside {
		position: static;
	}

	.cta-actions {
		justify-self: start;
	}

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

@media (max-width: 760px) {
	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.header-inner {
		min-height: 68px;
	}

	.nav-toggle {
		display: block;
		position: relative;
		z-index: 101;
	}

	.primary-nav ul {
		position: fixed;
		inset: 68px 0 auto;
		z-index: 100;
		display: grid;
		gap: 0;
		padding: 16px 14px 22px;
		border-bottom: 1px solid var(--line);
		background: rgba(5, 6, 7, 0.98);
		transform: translateY(-120%);
		transition: transform 220ms ease;
	}

	.nav-open .primary-nav ul {
		transform: translateY(0);
	}

	.primary-nav a {
		justify-content: space-between;
		width: 100%;
		min-height: 46px;
		font-size: 1rem;
	}

	h1 {
		font-size: 3.25rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.compact-hero h1 {
		font-size: 2.8rem;
	}

	.hero-copy {
		padding-top: 8px;
	}

	.hero-text {
		font-size: 1.06rem;
	}

	.hero-visual img {
		min-height: 310px;
	}

	.format-marquee {
		max-width: calc(100vw - 28px);
	}

	.rail-heading {
		align-items: start;
	}

	.rail-controls {
		display: none;
	}

	.motion-tile {
		flex-basis: 86vw;
		min-height: 430px;
	}

	.motion-tile-copy h3 {
		font-size: 1.7rem;
	}

	.services-grid .service-card {
		flex-basis: 82vw;
	}

	.showcase-slide,
	.showcase-slide img {
		min-height: 520px;
	}

	.showcase-copy {
		left: 22px;
		right: 22px;
		bottom: 84px;
		max-width: none;
	}

	.showcase-copy h3 {
		font-size: 1.85rem;
	}

	.slider-controls {
		right: 18px;
		bottom: 18px;
	}

	.video-preview-card,
	.video-preview-overlay {
		min-height: 520px;
	}

	.video-preview-overlay {
		grid-template-columns: 1fr;
		align-items: end;
		padding: 26px;
	}

	.video-preview-play {
		justify-self: start;
		width: 70px;
		height: 70px;
	}

	.card-grid,
	.notes-grid,
	.footer-grid,
	.form-row.two,
	.form-row.three,
	.deliverables-list {
		grid-template-columns: 1fr;
	}

	.before-after-head {
		display: grid;
	}

	.ba-slider {
		aspect-ratio: 4 / 3;
	}

	.process-step {
		grid-template-columns: 1fr;
	}

	.contact-form {
		padding: 18px;
	}

	.contact-cta .cta-grid,
	.cta-grid {
		padding: 26px;
	}
}

/* Selected edits: square stills and tidy text rhythm. */
.works-section .works-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: 34px 20px;
}

.works-section .work-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
}

.works-section .work-media {
	aspect-ratio: 1 / 1;
}

.works-section .work-card-body {
	display: grid;
	grid-template-rows: auto minmax(2.35em, auto) minmax(3.1em, auto);
	gap: 9px;
	padding-top: 14px;
}

.works-section .tag-row {
	min-height: 28px;
	align-content: start;
}

.works-section .tag-row span {
	max-width: 100%;
	white-space: nowrap;
}

.works-section .work-card h3 {
	display: -webkit-box;
	min-height: 2.35em;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1.12;
}

.works-section .work-card-body > p {
	display: -webkit-box;
	min-height: 3.1em;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 980px) {
	.works-section .works-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.works-section .works-grid {
		grid-template-columns: 1fr;
	}

	.works-section .work-media {
		aspect-ratio: 1 / 1;
	}
}

/* Monochrome cleanup requested after visual review. */
:root {
	--bg: #050505;
	--text: #f7f7f1;
	--muted: rgba(247, 247, 241, 0.72);
	--muted-2: rgba(247, 247, 241, 0.5);
	--line: rgba(247, 247, 241, 0.18);
	--line-strong: rgba(247, 247, 241, 0.34);
	--accent: #f7f7f1;
	--accent-2: #f7f7f1;
}

body {
	background: #050505;
	color: #f7f7f1;
}

body::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 28rem);
}

.theme-282-hero {
	height: 100svh;
	min-height: 100svh;
	padding: 0;
	overflow: hidden;
	background: #050505;
}

.theme-282-hero-content {
	min-height: 100svh;
	padding-top: 108px;
	padding-bottom: 64px;
}

.theme-282-hero-image img {
	height: calc(100svh + 90px);
	filter: saturate(0.82) contrast(1.08);
}

.theme-282-hero .button-row {
	display: none;
}

@supports (height: 100dvh) {
	.theme-282-hero {
		height: 100dvh;
		min-height: 100dvh;
	}

	.theme-282-hero-content {
		min-height: 100dvh;
	}

	.theme-282-hero-image img {
		height: calc(100dvh + 90px);
	}
}

.nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 96px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #f7f7f1;
}

.nav-toggle .nav-icon {
	display: inline-flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 5px;
	width: 34px;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
}

.nav-toggle .nav-icon span {
	display: block;
	width: 34px;
	height: 1px;
	margin: 0;
	background: currentColor;
}

.nav-toggle .nav-label {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-header .brand-mark {
	min-width: 74px;
	height: 34px;
	border: 1px solid rgba(247, 247, 241, 0.68);
	display: inline-grid;
	place-items: center;
	background: rgba(5, 5, 5, 0.12);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-scroll {
	right: 32px;
	bottom: 42px;
	width: 42px;
	height: 76px;
	overflow: visible;
	color: #f7f7f1;
}

.hero-scroll::before {
	top: 0;
	height: 58px;
}

.hero-scroll::after {
	bottom: 8px;
	width: 16px;
	height: 16px;
}

.intro-band,
.works-section,
.process-showcase,
.timeline-notes-section {
	background: #f7f7f1;
	color: #050505;
}

.intro-band {
	display: grid;
	align-items: center;
	min-height: 100svh;
	padding-block: clamp(88px, 12vh, 150px);
}

.intro-band .kicker,
.intro-band h2,
.intro-band h3,
.intro-band p,
.works-section .kicker,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p,
.timeline-notes-section .kicker,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text {
	color: #050505;
}

.intro-statement {
	max-width: 980px;
	margin-inline: auto;
	text-align: left;
}

.intro-statement .kicker {
	margin: 0 0 30px;
}

.intro-statement h2 {
	max-width: 960px;
	margin: 0;
	font-size: clamp(3.4rem, 6.6vw, 6rem);
	line-height: 0.98;
}

.intro-actions {
	margin-top: 36px;
}

.video-preview-section,
.services-section.theme-282-services,
.before-after-section,
.about-teaser,
.contact-cta,
.site-footer {
	background: #050505;
	color: #f7f7f1;
}

.services-section .theme-282-section-title {
	display: grid;
	justify-items: start;
	text-align: left;
	border-color: rgba(247, 247, 241, 0.18);
}

.services-section .kicker,
.services-section h2,
.services-section h3,
.services-section p,
.services-section span,
.contact-cta .kicker,
.contact-cta h2,
.contact-cta p {
	color: #f7f7f1;
}

.services-section .services-list,
.services-section .service-row {
	border-color: rgba(247, 247, 241, 0.18);
}

.services-section .service-row span,
.services-section .service-row p {
	color: rgba(247, 247, 241, 0.72);
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.process-step .meta-label,
.step-number {
	color: rgba(5, 5, 5, 0.66);
}

.works-section .tag-row span,
.works-section .work-meta span {
	border-color: rgba(5, 5, 5, 0.24);
	color: rgba(5, 5, 5, 0.72);
}

.process-pills span,
.process-stack,
.process-step,
.timeline-notes-section .timeline-note {
	border-color: rgba(5, 5, 5, 0.22);
}

.site-footer {
	font-family: var(--font-mono);
	border-top-color: rgba(247, 247, 241, 0.16);
}

.footer-origin,
.site-footer .micro-list,
.footer-column a,
.contact-list a,
.social-list a,
.footer-column li,
.contact-list li,
.social-list li {
	color: rgba(247, 247, 241, 0.74);
}

.site-footer .micro-list li::before {
	content: "// ";
	color: #f7f7f1;
}

.footer-column h2,
.footer-bottom p {
	color: rgba(247, 247, 241, 0.52);
}

.footer-bottom {
	border-color: rgba(247, 247, 241, 0.16);
}

@media (max-width: 760px) {
	.nav-toggle {
		min-width: 82px;
		gap: 10px;
	}

	.nav-toggle .nav-icon,
	.nav-toggle .nav-icon span {
		width: 30px;
	}

	.theme-282-hero-content {
		min-height: 100svh;
		padding-top: 92px;
		padding-bottom: 54px;
	}

	.hero-scroll {
		right: 18px;
		bottom: 34px;
	}

	.intro-band {
		min-height: 100svh;
		padding-block: 86px;
	}

	.intro-statement .kicker {
		margin-bottom: 24px;
	}

	.intro-statement h2 {
		font-size: 2.85rem;
	}
}

/* Absolute final pass: clean hamburger and black/white section rhythm. */
.theme-282-header .header-inner {
	grid-template-columns: 1fr auto 1fr;
	min-height: 86px;
}

.theme-282-header .primary-nav {
	justify-self: start;
}

.theme-282-header .nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #f7f7f1;
	line-height: 1;
}

.theme-282-header .nav-toggle::before {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: 30px;
	height: 16px;
	background:
		linear-gradient(currentColor, currentColor) 0 0 / 30px 1px no-repeat,
		linear-gradient(currentColor, currentColor) 0 7px / 30px 1px no-repeat,
		linear-gradient(currentColor, currentColor) 0 14px / 30px 1px no-repeat;
}

.theme-282-header .nav-toggle > span.nav-label:first-child {
	position: static;
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-header .header-contact {
	justify-self: end;
	border: 0;
	background: transparent;
	color: rgba(247, 247, 241, 0.88);
	font-family: var(--font-mono);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.theme-282-hero,
.video-preview-section,
.services-section.theme-282-services,
.process-showcase,
.about-teaser,
.site-footer {
	background: #050505;
	color: #f7f7f1;
}

.intro-band,
.works-section,
.before-after-section,
.timeline-notes-section,
.contact-cta {
	background: #f7f7f1;
	color: #050505;
}

.intro-band .kicker,
.intro-band h2,
.intro-band h3,
.intro-band p,
.works-section .kicker,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.before-after-section .kicker,
.before-after-section h2,
.before-after-section p,
.timeline-notes-section .kicker,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text,
.contact-cta .kicker,
.contact-cta h2,
.contact-cta p {
	color: #050505;
}

.video-preview-section .kicker,
.video-preview-section h2,
.video-preview-section p,
.services-section .kicker,
.services-section h2,
.services-section h3,
.services-section p,
.services-section span,
.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p,
.about-teaser .kicker,
.about-teaser h2,
.about-teaser p {
	color: #f7f7f1;
}

.before-after-card {
	background: #050505;
	color: #f7f7f1;
}

.before-after-card .meta-label,
.before-after-card h3,
.before-after-card p,
.before-after-card span,
.before-after-card .ba-caption {
	color: #f7f7f1;
}

.before-after-head,
.ba-tags span,
.services-section .theme-282-section-title,
.services-section .services-list,
.services-section .service-row,
.process-pills span,
.process-stack,
.process-step {
	border-color: rgba(247, 247, 241, 0.18);
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.works-section .tag-row span,
.works-section .work-meta span,
.timeline-notes-section .timeline-note,
.timeline-notes-section .timeline-note p {
	border-color: rgba(5, 5, 5, 0.24);
	color: rgba(5, 5, 5, 0.68);
}

.services-section .service-row span,
.services-section .service-row p,
.process-step .meta-label,
.step-number {
	color: rgba(247, 247, 241, 0.66);
}

.contact-cta .cta-grid {
	border-color: rgba(5, 5, 5, 0.22);
}

.contact-cta .button-primary {
	border-color: #050505;
	background: #050505;
	color: #f7f7f1;
}

.contact-cta .button-primary:hover {
	background: transparent;
	color: #050505;
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		min-height: 72px;
	}

	.theme-282-header .nav-toggle {
		gap: 10px;
	}

	.theme-282-header .nav-toggle::before {
		width: 27px;
		background-size: 27px 1px, 27px 1px, 27px 1px;
	}
}

/* Final alternation + clean hamburger override. */
.theme-282-header .header-inner {
	grid-template-columns: 1fr auto 1fr;
	min-height: 86px;
}

.theme-282-header .primary-nav {
	justify-self: start;
}

.theme-282-header .nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #f7f7f1;
	line-height: 1;
}

.theme-282-header .nav-toggle::before {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: 30px;
	height: 16px;
	background:
		linear-gradient(currentColor, currentColor) 0 0 / 30px 1px no-repeat,
		linear-gradient(currentColor, currentColor) 0 7px / 30px 1px no-repeat,
		linear-gradient(currentColor, currentColor) 0 14px / 30px 1px no-repeat;
}

.theme-282-header .nav-toggle > span.nav-label:first-child {
	position: static;
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-header .header-contact {
	justify-self: end;
	border: 0;
	background: transparent;
	color: rgba(247, 247, 241, 0.88);
	font-family: var(--font-mono);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.theme-282-header .header-contact:hover {
	color: #f7f7f1;
}

.theme-282-hero,
.video-preview-section,
.services-section.theme-282-services,
.process-showcase,
.about-teaser,
.site-footer {
	background: #050505;
	color: #f7f7f1;
}

.intro-band,
.works-section,
.before-after-section,
.timeline-notes-section,
.contact-cta {
	background: #f7f7f1;
	color: #050505;
}

.intro-band .kicker,
.intro-band h2,
.intro-band h3,
.intro-band p,
.works-section .kicker,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.before-after-section .kicker,
.before-after-section h2,
.before-after-section > .container > p,
.timeline-notes-section .kicker,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text,
.contact-cta .kicker,
.contact-cta h2,
.contact-cta p {
	color: #050505;
}

.video-preview-section .kicker,
.video-preview-section h2,
.video-preview-section p,
.services-section .kicker,
.services-section h2,
.services-section h3,
.services-section p,
.services-section span,
.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p,
.about-teaser .kicker,
.about-teaser h2,
.about-teaser p {
	color: #f7f7f1;
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.timeline-notes-section .timeline-note p {
	color: rgba(5, 5, 5, 0.66);
}

.works-section .tag-row span,
.works-section .work-meta span,
.timeline-notes-section .timeline-note {
	border-color: rgba(5, 5, 5, 0.24);
	color: rgba(5, 5, 5, 0.72);
}

.before-after-card {
	background: #050505;
	color: #f7f7f1;
}

.before-after-card .meta-label,
.before-after-card h3,
.before-after-card p,
.before-after-card span,
.before-after-card .ba-caption {
	color: #f7f7f1;
}

.before-after-head,
.ba-tags span {
	border-color: rgba(247, 247, 241, 0.18);
}

.services-section .theme-282-section-title,
.services-section .services-list,
.services-section .service-row,
.process-pills span,
.process-stack,
.process-step {
	border-color: rgba(247, 247, 241, 0.18);
}

.services-section .service-row span,
.services-section .service-row p,
.process-step .meta-label,
.step-number {
	color: rgba(247, 247, 241, 0.66);
}

.contact-cta .cta-grid {
	border-color: rgba(5, 5, 5, 0.22);
}

.contact-cta .button-primary {
	border-color: #050505;
	background: #050505;
	color: #f7f7f1;
}

.contact-cta .button-primary:hover {
	background: transparent;
	color: #050505;
}

.site-footer {
	border-top-color: rgba(247, 247, 241, 0.16);
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		min-height: 72px;
	}

	.theme-282-header .nav-toggle {
		gap: 10px;
	}

	.theme-282-header .nav-toggle::before {
		width: 27px;
		background-size: 27px 1px, 27px 1px, 27px 1px;
	}
}

/* Final polish: full-page hero, cleaner menu, warmer editorial blocks. */
.theme-282-hero {
	height: 100svh;
	min-height: 100svh;
	background: #080604;
}

.theme-282-hero-content {
	min-height: 100svh;
	padding-top: 108px;
	padding-bottom: 58px;
}

.theme-282-hero-image img {
	height: calc(100svh + 90px);
}

@supports (height: 100dvh) {
	.theme-282-hero {
		height: 100dvh;
		min-height: 100dvh;
	}

	.theme-282-hero-content {
		min-height: 100dvh;
	}

	.theme-282-hero-image img {
		height: calc(100dvh + 90px);
	}
}

.theme-282-header .header-inner {
	min-height: 88px;
}

.nav-toggle {
	gap: 14px;
	min-width: 104px;
	height: 42px;
	padding: 0;
}

.nav-toggle .nav-line {
	display: block;
	flex: 0 0 auto;
	width: 38px;
	height: 1px;
	margin: 0;
	background: currentColor;
}

.nav-toggle .nav-label {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-header .brand-mark {
	min-width: 74px;
	height: 34px;
	border: 1px solid rgba(255, 248, 223, 0.68);
	display: inline-grid;
	place-items: center;
	background: rgba(8, 6, 4, 0.14);
	color: #fff8df;
	font-family: var(--font-mono);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.theme-282-header .custom-logo-link img {
	max-height: 48px;
}

.intro-band {
	background: #fff6d7;
}

.video-preview-section {
	background: #100b05;
}

.works-section {
	background: #efe0bd;
	color: #0c0905;
}

.works-section .kicker,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p {
	color: #0c0905;
}

.works-section .section-heading > p,
.works-section .work-card-body > p {
	color: rgba(12, 9, 5, 0.7);
}

.works-section .tag-row span,
.works-section .work-meta span {
	border-color: rgba(12, 9, 5, 0.24);
	color: rgba(12, 9, 5, 0.72);
}

.services-section.theme-282-services {
	background: #cfaa4b;
	color: #0b0804;
}

.services-section .theme-282-section-title {
	display: grid;
	justify-items: start;
	text-align: left;
	border-color: rgba(11, 8, 4, 0.22);
}

.services-section .kicker,
.services-section h2,
.services-section h3,
.services-section p,
.services-section span {
	color: #0b0804;
}

.services-section .service-row,
.services-section .services-list {
	border-color: rgba(11, 8, 4, 0.22);
}

.services-section .service-row span,
.services-section .service-row p {
	color: rgba(11, 8, 4, 0.7);
}

.before-after-section {
	background: #1a130b;
}

.before-after-card {
	background: #080604;
}

.process-showcase {
	background: #f8edc8;
}

.about-teaser {
	background: #2a1b0c;
}

.timeline-notes-section {
	background: #d8ccb0;
	color: #100b05;
}

.timeline-notes-section .kicker,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text {
	color: #100b05;
}

.timeline-notes-section .timeline-note {
	border-color: rgba(16, 11, 5, 0.24);
}

.contact-cta {
	background: #fff6d7;
	color: #0c0905;
}

.contact-cta .kicker,
.contact-cta h2,
.contact-cta p {
	color: #0c0905;
}

.site-footer {
	background: #0f0b06;
	color: #f8edc8;
	font-family: var(--font-mono);
}

.footer-grid {
	align-items: start;
	gap: 44px;
	padding-top: 6px;
}

.footer-brand {
	display: grid;
	gap: 18px;
}

.footer-origin {
	margin: 0;
	color: rgba(248, 237, 200, 0.78);
	font-family: var(--font-mono);
	font-size: 0.94rem;
	letter-spacing: 0.02em;
}

.site-footer .micro-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(248, 237, 200, 0.82);
	font-size: 0.84rem;
	letter-spacing: 0.08em;
}

.site-footer .micro-list li::before {
	content: "// ";
	color: #d7ad45;
}

.footer-column h2 {
	color: rgba(248, 237, 200, 0.58);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
}

.footer-column ul,
.contact-list,
.social-list {
	gap: 10px;
}

.footer-column a,
.contact-list a,
.social-list a,
.footer-column li,
.contact-list li,
.social-list li {
	color: rgba(248, 237, 200, 0.74);
	font-family: var(--font-mono);
	font-size: 0.86rem;
}

.footer-column a:hover,
.contact-list a:hover,
.social-list a:hover {
	color: #d7ad45;
}

.footer-bottom {
	border-color: rgba(248, 237, 200, 0.18);
}

.footer-bottom p {
	color: rgba(248, 237, 200, 0.48);
}

@media (max-width: 980px) {
	.services-section .theme-282-section-title {
		justify-items: start;
		text-align: left;
	}

	.theme-282-hero h1 {
		font-size: 4.15rem;
	}
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		min-height: 74px;
	}

	.nav-toggle {
		min-width: 84px;
		gap: 10px;
	}

	.nav-toggle .nav-line {
		width: 30px;
	}

	.theme-282-header .brand-mark {
		min-width: 60px;
		height: 30px;
		font-size: 0.78rem;
	}

	.theme-282-hero-content {
		min-height: 100svh;
		padding-top: 92px;
		padding-bottom: 38px;
	}

	.theme-282-hero h1 {
		font-size: 3rem;
	}
}

/* Full-screen intro statement with deliberate negative space. */
.intro-band {
	display: grid;
	align-items: center;
	min-height: 100svh;
	padding-block: clamp(120px, 18vh, 210px);
}

.intro-statement {
	display: grid;
	align-content: center;
	margin-inline: auto;
}

.intro-statement .kicker {
	margin-bottom: clamp(42px, 8vh, 96px);
}

.intro-statement h2 {
	margin-bottom: clamp(42px, 8vh, 96px);
}

.intro-actions {
	margin-top: 0;
}

@supports (min-height: 100dvh) {
	.intro-band {
		min-height: 100dvh;
	}
}

@media (max-width: 760px) {
	.intro-band {
		padding-block: 110px;
	}

	.intro-statement .kicker,
	.intro-statement h2 {
		margin-bottom: 46px;
	}
}

/* 282 header + warmer gritty palette final pass. */
:root {
	--bg: #090704;
	--text: #fff8df;
	--muted: rgba(255, 248, 223, 0.72);
	--muted-2: rgba(255, 248, 223, 0.52);
	--line: rgba(255, 237, 180, 0.22);
	--line-strong: rgba(255, 237, 180, 0.36);
	--accent: #c99528;
	--accent-2: #e0b84b;
}

body {
	background:
		radial-gradient(circle at 20% 0%, rgba(201, 149, 40, 0.16), transparent 30rem),
		linear-gradient(180deg, #0e0a05 0%, #060503 44%, #0b0804 100%);
	color: var(--text);
}

.site-header.theme-282-header {
	position: fixed;
	inset: 0 0 auto;
	border-bottom: 0;
	background: linear-gradient(180deg, rgba(6, 5, 3, 0.52), transparent);
	backdrop-filter: none;
}

.theme-282-header .header-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	min-height: 86px;
}

.theme-282-header .primary-nav {
	justify-self: start;
}

.theme-282-header .site-brand {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 120;
	transform: translate(-50%, -50%);
}

.theme-282-header .brand-mark {
	width: auto;
	height: auto;
	border: 0;
	background: transparent;
	color: var(--text);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: 0;
}

.theme-282-header .custom-logo-link img {
	max-height: 42px;
	filter: brightness(0) invert(1);
}

.header-contact {
	position: relative;
	z-index: 120;
	justify-self: end;
	color: var(--text);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.nav-toggle {
	position: relative;
	z-index: 120;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	width: auto;
	height: 44px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--text);
}

.nav-toggle span:not(.screen-reader-text):first-child {
	width: 38px;
	height: 1px;
	margin: 0;
	background: currentColor;
}

.nav-toggle .nav-label {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	clip: auto;
	overflow: visible;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	background: transparent;
}

.primary-nav ul {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	align-content: end;
	gap: 0;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 110px 32px 42px;
	background:
		linear-gradient(90deg, rgba(8, 6, 3, 0.95), rgba(8, 6, 3, 0.72)),
		radial-gradient(circle at 80% 20%, rgba(201, 149, 40, 0.24), transparent 28rem);
	transform: translateY(-100%);
	transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-open .primary-nav ul {
	transform: translateY(0);
}

.primary-nav li {
	border-top: 1px solid rgba(255, 248, 223, 0.18);
}

.primary-nav li:last-child {
	border-bottom: 1px solid rgba(255, 248, 223, 0.18);
}

.primary-nav a {
	display: block;
	min-height: 0;
	padding: 13px 0 12px;
	border: 0;
	border-radius: 0;
	color: var(--text);
	font-size: 4.6rem;
	font-weight: 760;
	line-height: 0.98;
	text-transform: none;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	background: transparent;
	color: var(--accent-2);
}

.button {
	border-radius: 2px;
	border-color: rgba(255, 248, 223, 0.44);
	color: var(--text);
}

.button-primary {
	border-color: rgba(255, 248, 223, 0.82);
	background: rgba(255, 248, 223, 0.92);
	color: #090704;
}

.button-primary:hover {
	background: transparent;
	color: var(--text);
}

.kicker,
.meta-label {
	color: var(--accent-2);
}

.theme-282-hero-image img,
.work-media img,
.video-preview-card > img,
.about-media img {
	filter: saturate(1.08) contrast(1.12) sepia(0.16);
}

.theme-282-hero::after {
	background:
		linear-gradient(90deg, rgba(7, 5, 2, 0.74), rgba(7, 5, 2, 0.28) 46%, rgba(7, 5, 2, 0.08)),
		linear-gradient(180deg, rgba(7, 5, 2, 0.12), rgba(7, 5, 2, 0.10) 44%, rgba(7, 5, 2, 0.72));
}

.hero-scroll {
	position: absolute;
	right: 32px;
	bottom: 28px;
	z-index: 3;
	width: 32px;
	height: 62px;
	color: var(--text);
	text-decoration: none;
}

.hero-scroll::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 52px;
	background: currentColor;
	transform: translateX(-50%);
}

.hero-scroll::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 15px;
	height: 15px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateX(-50%) rotate(45deg);
}

.intro-band,
.process-showcase {
	background: #fff3bf;
}

.intro-band .kicker,
.intro-band h2,
.intro-band p,
.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p {
	color: #100c05;
}

.section-heading.product-heading,
.works-section .product-heading,
.before-after-section .product-heading {
	justify-items: start;
	text-align: left;
}

.section-heading.product-heading h2,
.section-heading.product-heading p {
	margin-inline: 0;
}

.theme-282-section-title {
	align-items: start;
}

@media (max-width: 980px) {
	.primary-nav a {
		font-size: 3.6rem;
	}
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		min-height: 72px;
	}

	.header-contact {
		display: none;
	}

	.primary-nav ul {
		padding: 92px 18px 30px;
	}

	.primary-nav a {
		font-size: 2.45rem;
	}

	.hero-scroll {
		right: 18px;
		bottom: 20px;
	}
}

@media (max-width: 420px) {
	h1,
	.compact-hero h1 {
		font-size: 2.55rem;
	}

	h2 {
		font-size: 1.95rem;
	}

	.button-row,
	.button {
		width: 100%;
	}

	.brand-copy {
		display: none;
	}

	.motion-tile,
	.video-preview-card,
	.video-preview-overlay {
		min-height: 420px;
	}

	.showcase-slide,
	.showcase-slide img {
		min-height: 480px;
	}

	.video-modal {
		padding: 12px;
	}
}

/* 282-inspired editorial cinema direction. */
body {
	background: #050505;
	color: #f4f1e8;
}

body::before {
	background:
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.045), transparent 24rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 16rem);
}

h1,
h2,
h3 {
	font-weight: 760;
	letter-spacing: 0;
}

.site-header {
	background: rgba(5, 5, 5, 0.68);
}

.button {
	border-radius: 3px;
	background: rgba(244, 241, 232, 0.04);
	text-transform: uppercase;
	font-family: var(--font-mono);
	font-size: 0.76rem;
	letter-spacing: 0.08em;
}

.button-primary {
	border-color: rgba(244, 241, 232, 0.72);
	background: #f4f1e8;
	color: #050505;
	box-shadow: none;
}

.button-primary:hover {
	background: transparent;
	color: #f4f1e8;
}

.theme-282-hero {
	position: relative;
	min-height: calc(100vh - 72px);
	padding: 0;
	overflow: hidden;
	background: #050505;
}

.theme-282-hero-image {
	position: absolute;
	inset: 0;
	margin: 0;
	transform: translateY(var(--parallax-y, 0));
	will-change: transform;
}

.theme-282-hero-image img {
	display: block;
	width: 100%;
	height: calc(100% + 80px);
	object-fit: cover;
	filter: saturate(0.9) contrast(1.06);
}

.theme-282-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.36) 45%, rgba(5, 5, 5, 0.18)),
		linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.18) 45%, rgba(5, 5, 5, 0.72));
}

.theme-282-hero-content {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: end;
	min-height: calc(100vh - 72px);
	padding-top: 80px;
	padding-bottom: 54px;
}

.theme-282-hero-copy {
	max-width: 780px;
}

.theme-282-hero h1 {
	max-width: 9em;
	margin-bottom: 22px;
	font-size: 5.9rem;
	line-height: 0.94;
}

.theme-282-hero .hero-text {
	max-width: 620px;
	color: rgba(244, 241, 232, 0.78);
}

.theme-282-hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 44px;
	color: rgba(244, 241, 232, 0.74);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-hero-meta span {
	padding-top: 10px;
	border-top: 1px solid rgba(244, 241, 232, 0.28);
}

.intro-band {
	background: #f4f1e8;
	color: #050505;
}

.intro-band .kicker,
.intro-band h2,
.intro-band p {
	color: #050505;
}

.intro-statement {
	max-width: 980px;
	margin-inline: auto;
	text-align: left;
}

.intro-statement h2 {
	max-width: 960px;
	margin-bottom: 28px;
	font-size: 4.2rem;
	line-height: 0.98;
}

.intro-actions {
	margin-top: 18px;
}

.theme-282-section-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 34px;
	border-bottom: 1px solid rgba(244, 241, 232, 0.18);
	padding-bottom: 18px;
}

.theme-282-section-title h2,
.section-heading.product-heading h2 {
	max-width: 820px;
}

.video-preview-card,
.before-after-card,
.work-card,
.about-media {
	border-radius: 0;
}

.video-preview-card {
	min-height: 78vh;
	border: 0;
	box-shadow: none;
}

.video-preview-card > img,
.about-media img {
	transform: translateY(var(--parallax-y, 0));
	will-change: transform;
}

.video-preview-card::after {
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.28) 52%, transparent),
		linear-gradient(180deg, transparent 45%, rgba(5, 5, 5, 0.82));
}

.video-preview-overlay {
	min-height: 78vh;
}

.video-preview-play {
	border-radius: 50%;
}

.works-section .product-heading,
.before-after-section .product-heading {
	justify-items: start;
	text-align: left;
}

.works-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 18px;
}

.work-card {
	border: 0;
	background: transparent;
}

.work-media {
	aspect-ratio: 3 / 4;
	border: 0;
	background: #111;
}

.work-card-body {
	padding: 16px 0 0;
}

.tag-row span,
.work-meta span,
.ba-tags span {
	border-radius: 0;
}

.work-card h3 {
	font-size: 1.08rem;
	text-transform: uppercase;
}

.theme-282-services {
	background: #050505;
}

.services-list {
	border-top: 1px solid rgba(244, 241, 232, 0.18);
}

.service-row {
	display: grid;
	grid-template-columns: 160px minmax(220px, 0.48fr) minmax(260px, 0.72fr);
	gap: 28px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(244, 241, 232, 0.18);
}

.service-row span {
	color: rgba(244, 241, 232, 0.54);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-row h3 {
	margin: 0;
	text-transform: uppercase;
}

.service-row p {
	margin: 0;
}

.before-after-section {
	background: #0b0b0b;
}

.before-after-card {
	border: 0;
	background: #050505;
}

.before-after-head {
	background: transparent;
}

.ba-slider {
	aspect-ratio: 16 / 8;
}

.process-showcase {
	background: #f4f1e8;
	color: #050505;
}

.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p {
	color: #050505;
}

.process-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
	gap: 70px;
	align-items: start;
}

.process-intro {
	position: sticky;
	top: 110px;
}

.process-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 24px;
}

.process-pills span {
	border: 1px solid rgba(5, 5, 5, 0.22);
	padding: 7px 10px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.process-stack {
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(5, 5, 5, 0.2);
}

.process-step {
	grid-template-columns: 86px minmax(0, 1fr);
	gap: 24px;
	border: 0;
	border-bottom: 1px solid rgba(5, 5, 5, 0.2);
	border-radius: 0;
	background: transparent;
	padding: 28px 0;
}

.process-step .meta-label {
	color: rgba(5, 5, 5, 0.58);
}

.step-number {
	color: rgba(5, 5, 5, 0.44);
}

.about-teaser {
	background: #050505;
}

.about-showcase {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
	gap: 60px;
	align-items: center;
}

.about-media {
	position: relative;
	min-height: 560px;
	overflow: hidden;
}

.about-media img {
	width: 100%;
	height: calc(100% + 80px);
	object-fit: cover;
}

.about-metrics {
	position: absolute;
	right: 18px;
	bottom: 18px;
	left: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.about-metrics span {
	background: rgba(5, 5, 5, 0.72);
	padding: 8px 10px;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.timeline-notes-section {
	background: #050505;
}

.timeline-note {
	border-radius: 0;
	background: transparent;
	border-color: rgba(244, 241, 232, 0.18);
}

.cta-grid {
	border-radius: 0;
	background: transparent;
}

@media (max-width: 980px) {
	.theme-282-hero h1 {
		font-size: 4.5rem;
	}

	.intro-statement h2 {
		font-size: 3.1rem;
	}

	.works-grid,
	.process-layout,
	.about-showcase {
		grid-template-columns: 1fr;
	}

	.process-intro {
		position: static;
	}
}

@media (max-width: 760px) {
	.theme-282-hero h1 {
		font-size: 3.2rem;
	}

	.theme-282-hero-content {
		min-height: calc(100vh - 68px);
		padding-bottom: 32px;
	}

	.intro-statement h2 {
		font-size: 2.25rem;
	}

	.service-row {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.works-grid {
		gap: 26px;
	}

	.work-media {
		aspect-ratio: 16 / 11;
	}

	.video-preview-card,
	.video-preview-overlay {
		min-height: 72vh;
	}

	.about-media {
		min-height: 420px;
	}
}

/* Final works pass: square stills with aligned one/two-line copy. */
.works-section .works-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: 34px 20px;
}

.works-section .work-card {
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
}

.works-section .work-media {
	aspect-ratio: 1 / 1;
}

.works-section .work-card-body {
	display: grid;
	grid-template-rows: 28px minmax(2.35em, auto) minmax(3.15em, auto);
	gap: 10px;
	padding-top: 14px;
}

.works-section .tag-row {
	min-height: 28px;
	align-content: start;
	overflow: hidden;
}

.works-section .tag-row span {
	max-width: 100%;
	white-space: nowrap;
}

.works-section .work-card h3 {
	display: -webkit-box;
	min-height: 2.35em;
	margin: 0;
	overflow: hidden;
	line-height: 1.12;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.works-section .work-card-body > p {
	display: -webkit-box;
	min-height: 3.15em;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

@media (max-width: 980px) {
	.works-section .works-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.works-section .works-grid {
		grid-template-columns: 1fr;
	}

	.works-section .work-media {
		aspect-ratio: 1 / 1;
	}
}

/* Strict monochrome final review pass. */
:root {
	--bg: #050505;
	--text: #f7f7f1;
	--muted: rgba(247, 247, 241, 0.72);
	--muted-2: rgba(247, 247, 241, 0.5);
	--line: rgba(247, 247, 241, 0.18);
	--line-strong: rgba(247, 247, 241, 0.34);
	--accent: #f7f7f1;
	--accent-2: #f7f7f1;
}

body {
	background: #050505;
	color: #f7f7f1;
}

body::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 18rem),
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 28rem);
}

.theme-282-hero {
	height: 100svh;
	min-height: 100svh;
	padding: 0;
	overflow: hidden;
	background: #050505;
}

.theme-282-hero-content {
	min-height: 100svh;
	padding-top: 108px;
	padding-bottom: 64px;
}

.theme-282-hero-image img {
	height: calc(100svh + 90px);
	filter: saturate(0.82) contrast(1.08);
}

.theme-282-hero .button-row {
	display: none;
}

@supports (height: 100dvh) {
	.theme-282-hero {
		height: 100dvh;
		min-height: 100dvh;
	}

	.theme-282-hero-content {
		min-height: 100dvh;
	}

	.theme-282-hero-image img {
		height: calc(100dvh + 90px);
	}
}

.nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 96px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #f7f7f1;
}

.nav-toggle .nav-icon {
	display: inline-flex;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 5px;
	width: 34px;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
}

.nav-toggle .nav-icon span {
	display: block;
	width: 34px;
	height: 1px;
	margin: 0;
	background: currentColor;
}

.nav-toggle .nav-label {
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-header .brand-mark {
	min-width: 74px;
	height: 34px;
	border: 1px solid rgba(247, 247, 241, 0.68);
	display: inline-grid;
	place-items: center;
	background: rgba(5, 5, 5, 0.12);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-scroll {
	right: 32px;
	bottom: 42px;
	width: 42px;
	height: 76px;
	overflow: visible;
	color: #f7f7f1;
}

.hero-scroll::before {
	top: 0;
	height: 58px;
}

.hero-scroll::after {
	bottom: 8px;
	width: 16px;
	height: 16px;
}

.intro-band,
.works-section,
.process-showcase,
.timeline-notes-section {
	background: #f7f7f1;
	color: #050505;
}

.intro-band {
	display: grid;
	align-items: center;
	min-height: 100svh;
	padding-block: clamp(88px, 12vh, 150px);
}

.intro-band .kicker,
.intro-band h2,
.intro-band h3,
.intro-band p,
.works-section .kicker,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p,
.timeline-notes-section .kicker,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text {
	color: #050505;
}

.intro-statement {
	max-width: 980px;
	margin-inline: auto;
	text-align: left;
}

.intro-statement .kicker {
	margin: 0 0 30px;
}

.intro-statement h2 {
	max-width: 960px;
	margin: 0;
	font-size: clamp(3.4rem, 6.6vw, 6rem);
	line-height: 0.98;
}

.section-heading,
.section-heading.product-heading,
.theme-282-section-title {
	margin-bottom: 30px;
}

.section-heading .kicker,
.section-heading.product-heading .kicker,
.theme-282-section-title .kicker {
	margin-bottom: 16px;
}

.intro-actions {
	margin-top: 34px;
}

.video-preview-section,
.services-section.theme-282-services,
.before-after-section,
.about-teaser,
.contact-cta,
.site-footer {
	background: #050505;
	color: #f7f7f1;
}

.services-section .theme-282-section-title {
	display: grid;
	justify-items: start;
	text-align: left;
	border-color: rgba(247, 247, 241, 0.18);
}

.services-section .kicker,
.services-section h2,
.services-section h3,
.services-section p,
.services-section span,
.contact-cta .kicker,
.contact-cta h2,
.contact-cta p {
	color: #f7f7f1;
}

.services-section .services-list,
.services-section .service-row {
	border-color: rgba(247, 247, 241, 0.18);
}

.services-section .service-row span,
.services-section .service-row p {
	color: rgba(247, 247, 241, 0.72);
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.process-step .meta-label,
.step-number {
	color: rgba(5, 5, 5, 0.66);
}

.works-section .tag-row span,
.works-section .work-meta span {
	border-color: rgba(5, 5, 5, 0.24);
	color: rgba(5, 5, 5, 0.72);
}

.process-pills span,
.process-stack,
.process-step,
.timeline-notes-section .timeline-note {
	border-color: rgba(5, 5, 5, 0.22);
}

.site-footer {
	font-family: var(--font-mono);
	border-top-color: rgba(247, 247, 241, 0.16);
}

.footer-origin,
.site-footer .micro-list,
.footer-column a,
.contact-list a,
.social-list a,
.footer-column li,
.contact-list li,
.social-list li {
	color: rgba(247, 247, 241, 0.74);
}

.site-footer .micro-list li::before {
	content: "// ";
	color: #f7f7f1;
}

.footer-column h2,
.footer-bottom p {
	color: rgba(247, 247, 241, 0.52);
}

.footer-bottom {
	border-color: rgba(247, 247, 241, 0.16);
}

@media (max-width: 760px) {
	.nav-toggle {
		min-width: 82px;
		gap: 10px;
	}

	.nav-toggle .nav-icon,
	.nav-toggle .nav-icon span {
		width: 30px;
	}

	.theme-282-hero-content {
		min-height: 100svh;
		padding-top: 92px;
		padding-bottom: 54px;
	}

	.hero-scroll {
		right: 18px;
		bottom: 34px;
	}

	.intro-band {
		min-height: 100svh;
		padding-block: 86px;
	}

	.intro-statement .kicker {
		margin-bottom: 24px;
	}

	.intro-statement h2 {
		font-size: 2.85rem;
	}
}
/* Absolute final pass: clean hamburger and black/white section rhythm. */
.theme-282-header .header-inner {
	grid-template-columns: 1fr auto 1fr;
	min-height: 86px;
}

.theme-282-header .nav-toggle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #f7f7f1;
	line-height: 1;
}

.theme-282-header .nav-toggle::before {
	content: "";
	display: block;
	flex: 0 0 auto;
	width: 30px;
	height: 16px;
	background:
		linear-gradient(currentColor, currentColor) 0 0 / 30px 1px no-repeat,
		linear-gradient(currentColor, currentColor) 0 7px / 30px 1px no-repeat,
		linear-gradient(currentColor, currentColor) 0 14px / 30px 1px no-repeat;
}

.theme-282-header .nav-toggle > span.nav-label:first-child {
	position: static;
	display: inline-flex;
	align-items: center;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: transparent;
	color: currentColor;
	font-family: var(--font-mono);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.theme-282-header .header-contact {
	justify-self: end;
	border: 0;
	background: transparent;
	color: rgba(247, 247, 241, 0.88);
	font-family: var(--font-mono);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.theme-282-hero,
.video-preview-section,
.services-section.theme-282-services,
.process-showcase,
.about-teaser,
.site-footer {
	background: #050505;
	color: #f7f7f1;
}

.intro-band,
.works-section,
.before-after-section,
.timeline-notes-section,
.contact-cta {
	background: #f7f7f1;
	color: #050505;
}

.intro-band .kicker,
.intro-band h2,
.intro-band h3,
.intro-band p,
.works-section .kicker,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.before-after-section .kicker,
.before-after-section h2,
.before-after-section p,
.timeline-notes-section .kicker,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text,
.contact-cta .kicker,
.contact-cta h2,
.contact-cta p {
	color: #050505;
}

.video-preview-section .kicker,
.video-preview-section h2,
.video-preview-section p,
.services-section .kicker,
.services-section h2,
.services-section h3,
.services-section p,
.services-section span,
.process-showcase .kicker,
.process-showcase h2,
.process-showcase h3,
.process-showcase p,
.about-teaser .kicker,
.about-teaser h2,
.about-teaser p {
	color: #f7f7f1;
}

.before-after-card {
	background: #050505;
	color: #f7f7f1;
}

.before-after-card .meta-label,
.before-after-card h3,
.before-after-card p,
.before-after-card span,
.before-after-card .ba-caption {
	color: #f7f7f1;
}

.before-after-head,
.ba-tags span,
.services-section .theme-282-section-title,
.services-section .services-list,
.services-section .service-row,
.process-pills span,
.process-stack,
.process-step {
	border-color: rgba(247, 247, 241, 0.18);
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.works-section .tag-row span,
.works-section .work-meta span,
.timeline-notes-section .timeline-note,
.timeline-notes-section .timeline-note p {
	border-color: rgba(5, 5, 5, 0.24);
	color: rgba(5, 5, 5, 0.68);
}

.services-section .service-row span,
.services-section .service-row p,
.process-step .meta-label,
.step-number {
	color: rgba(247, 247, 241, 0.66);
}

.contact-cta .cta-grid {
	border-color: rgba(5, 5, 5, 0.22);
}

.contact-cta .button-primary {
	border-color: #050505;
	background: #050505;
	color: #f7f7f1;
}

.contact-cta .button-primary:hover {
	background: transparent;
	color: #050505;
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		min-height: 72px;
	}

	.theme-282-header .nav-toggle {
		gap: 10px;
	}

	.theme-282-header .nav-toggle::before {
		width: 27px;
		background-size: 27px 1px, 27px 1px, 27px 1px;
	}
}
/* Final 282 logo/content correction. */
.theme-282-header .site-brand {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 140;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	max-width: 52px;
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.theme-282-header .site-brand .custom-logo-link {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
}

.theme-282-header .site-brand img,
.theme-282-header .site-brand .custom-logo {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.theme-282-header .site-brand .brand-mark {
	display: inline-grid;
	place-items: center;
	min-width: 0;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(247, 247, 241, 0.72);
	background: rgba(5, 5, 5, 0.08);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.intro-statement {
	width: min(calc(100% - 40px), var(--container));
	max-width: var(--container);
}

.intro-statement h2 {
	max-width: min(1120px, 100%);
}

.before-after-section {
	background: #050505;
	color: #f7f7f1;
}

.before-after-section .kicker,
.before-after-section h2,
.before-after-section h3,
.before-after-section p,
.before-after-section span,
.before-after-section .meta-label,
.before-after-section .ba-caption {
	color: #f7f7f1;
}

.timeline-notes-section,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .kicker,
.timeline-notes-section .note-text,
.timeline-notes-section .meta-label,
.timeline-notes-section .timecode {
	font-family: var(--font-mono);
}

@media (max-width: 760px) {
	.theme-282-header .site-brand,
	.theme-282-header .site-brand .custom-logo-link {
		width: 44px;
		height: 44px;
	}

	.theme-282-header .site-brand .brand-mark {
		width: 38px;
		height: 38px;
		font-size: 0.64rem;
	}

	.intro-statement {
		width: min(calc(100% - 28px), var(--container));
	}
}

/* Final contact/footer fill and subtle parallax detail. */
.contact-cta {
	position: relative;
	overflow: hidden;
}

.contact-parallax-mark {
	position: absolute;
	right: max(24px, calc((100vw - var(--container)) / 2));
	bottom: 18px;
	z-index: 0;
	color: rgba(5, 5, 5, 0.055);
	font-family: var(--font-mono);
	font-size: clamp(8rem, 19vw, 18rem);
	font-weight: 800;
	line-height: 0.8;
	letter-spacing: -0.03em;
	pointer-events: none;
	transform: translateY(var(--parallax-y, 0));
	will-change: transform;
}

.contact-cta .cta-grid {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.34fr);
	align-items: end;
}

.contact-brief-list {
	display: grid;
	gap: 10px;
	max-width: 720px;
	margin: 28px 0 0;
	padding: 0;
	color: rgba(5, 5, 5, 0.72);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	list-style: none;
	text-transform: uppercase;
}

.contact-brief-list li {
	position: relative;
	padding-left: 18px;
}

.contact-brief-list li::before {
	content: "/";
	position: absolute;
	left: 0;
	top: 0;
	color: #050505;
}

.contact-mini-log {
	display: grid;
	gap: 10px;
	margin-bottom: 24px;
	color: rgba(5, 5, 5, 0.68);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.06em;
	text-align: left;
	text-transform: uppercase;
}

.contact-mini-log span {
	border-top: 1px solid rgba(5, 5, 5, 0.18);
	padding-top: 10px;
}

.footer-logo {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 8px;
	overflow: hidden;
}

.footer-logo .custom-logo-link {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	overflow: hidden;
}

.footer-logo img,
.footer-logo .custom-logo {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.footer-logo-mark {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(247, 247, 241, 0.56);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-decoration: none;
}

@media (max-width: 760px) {
	.contact-cta .cta-grid {
		grid-template-columns: 1fr;
	}

	.contact-parallax-mark {
		right: 12px;
		bottom: 12px;
	}
}

/* Final black palette pass: only intro stays light. */
:root {
	--code-accent: #d7ad45;
}

body,
.theme-282-hero,
.video-preview-section,
.works-section,
.services-section,
.services-section.theme-282-services,
.before-after-section,
.process-showcase,
.timeline-notes-section,
.about-teaser,
.contact-cta,
.site-footer {
	background: #050505;
	color: #f7f7f1;
}

.intro-band {
	background: #f7f7f1;
	color: #050505;
}

.theme-282-hero h1,
.theme-282-hero h2,
.theme-282-hero h3,
.theme-282-hero p,
.video-preview-section h1,
.video-preview-section h2,
.video-preview-section h3,
.video-preview-section p,
.works-section h1,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.services-section h1,
.services-section h2,
.services-section h3,
.services-section p,
.before-after-section h1,
.before-after-section h2,
.before-after-section h3,
.before-after-section p,
.process-showcase h1,
.process-showcase h2,
.process-showcase h3,
.process-showcase p,
.timeline-notes-section h1,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text,
.about-teaser h1,
.about-teaser h2,
.about-teaser h3,
.about-teaser p,
.contact-cta h1,
.contact-cta h2,
.contact-cta h3,
.contact-cta p {
	color: #f7f7f1;
}

.intro-band h1,
.intro-band h2,
.intro-band h3,
.intro-band p {
	color: #050505;
}

.kicker,
.meta-label,
.tag-row span,
.work-meta span,
.ba-tags span,
.step-number,
.service-row span,
.contact-brief-list,
.contact-brief-list li::before,
.contact-mini-log,
.timeline-notes-section .timecode,
.timeline-notes-section .note-text,
.footer-column h2,
.site-footer .micro-list li::before {
	color: var(--code-accent);
}

/* Final header centering override. */
.site-header.theme-282-header {
	position: fixed;
	inset: 0 0 auto;
	width: 100%;
	z-index: 120;
	border: 0;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.42), transparent);
}

.theme-282-header .header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}

.theme-282-header > .site-brand {
	position: absolute;
	left: 50%;
	top: 10px;
	z-index: 180;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	max-width: 48px;
	overflow: hidden;
	transform: translateX(-50%);
}

.theme-282-header > .site-brand .custom-logo-link,
.theme-282-header > .site-brand img,
.theme-282-header > .site-brand .custom-logo {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.theme-282-header > .site-brand .brand-mark {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(247, 247, 241, 0.72);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.56rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.03em;
	text-decoration: none;
}

.theme-282-header .header-contact {
	position: static;
	z-index: 170;
	min-width: 112px;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
	transform: none;
}

@media (max-width: 900px) {
	.theme-282-header .header-contact {
		display: none;
	}
}

/* Absolute final video modal ratio support for Shorts/Reels/9:16. */
.video-frame {
	background: #000;
}

.video-modal.is-vertical .video-modal-panel {
	width: min(92vw, 430px);
}

.video-modal.is-vertical .video-frame {
	aspect-ratio: 9 / 16;
}

.video-modal.is-instagram .video-modal-panel {
	width: min(92vw, 470px);
}

.video-modal-help {
	margin: 0;
	padding: 12px 16px 16px;
	border-top: 1px solid rgba(247, 247, 241, 0.14);
	color: rgba(247, 247, 241, 0.68);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.video-modal-help a {
	color: var(--code-accent);
	text-decoration: none;
}

@media (max-height: 720px) {
	.video-modal.is-vertical .video-modal-panel {
		width: min(86vw, 360px);
	}
}

/* Absolute final production-collab section and responsive hero polish. */
.production-collab-section {
	overflow: hidden;
	background: #050505;
	color: #f7f7f1;
}

.production-collab-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.44fr);
	gap: clamp(36px, 7vw, 100px);
	align-items: start;
}

.production-collab-copy h2 {
	max-width: 920px;
	font-size: clamp(3.4rem, 7vw, 6.8rem);
	line-height: 0.92;
}

.production-collab-copy p {
	max-width: 760px;
	color: rgba(247, 247, 241, 0.72);
	font-size: clamp(1rem, 1.25vw, 1.22rem);
	line-height: 1.58;
}

.production-collab-copy .production-proof {
	max-width: 700px;
	margin-top: 26px;
	color: #f7f7f1;
	font-weight: 720;
}

.production-collab-panel {
	padding-left: 24px;
	border-left: 1px solid rgba(247, 247, 241, 0.18);
}

.production-collab-panel p {
	margin-bottom: 28px;
	color: rgba(247, 247, 241, 0.68);
}

.production-collab-items {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.production-collab-items li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 54px;
	padding: 12px 0;
	border-top: 1px solid rgba(247, 247, 241, 0.16);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.84rem;
	font-weight: 760;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.production-collab-items li:last-child {
	border-bottom: 1px solid rgba(247, 247, 241, 0.16);
}

.production-collab-items span {
	color: var(--code-accent);
	font-size: 0.72rem;
}

@media (min-width: 761px) {
	.theme-282-hero h1 {
		font-size: clamp(4.6rem, 7.4vw, 7rem);
	}
}

@media (max-width: 980px) {
	.production-collab-section .production-collab-row {
		grid-template-columns: 132px minmax(200px, 0.52fr) minmax(240px, 0.7fr);
	}
}

@media (max-width: 760px) {
	.site-header.theme-282-header {
		min-height: calc(70px + env(safe-area-inset-top));
		background: linear-gradient(180deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0));
	}

	.theme-282-header .header-inner {
		min-height: calc(70px + env(safe-area-inset-top));
		padding-top: env(safe-area-inset-top);
	}

	.theme-282-header .nav-toggle {
		gap: 10px;
		height: 44px;
		color: #f7f7f1;
	}

	.theme-282-header .nav-toggle::before {
		width: 28px;
		height: 18px;
		background:
			linear-gradient(currentColor, currentColor) 0 0 / 28px 1px no-repeat,
			linear-gradient(currentColor, currentColor) 0 8px / 28px 1px no-repeat,
			linear-gradient(currentColor, currentColor) 0 16px / 28px 1px no-repeat;
	}

	.theme-282-header .nav-toggle > span.nav-label:first-child {
		position: static;
		display: inline-flex;
		align-items: center;
		width: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		clip: auto;
		background: transparent;
		font-size: 0.68rem;
		letter-spacing: 0.08em;
	}

	.theme-282-header .site-brand {
		position: absolute;
		left: 50%;
		top: calc(50% + (env(safe-area-inset-top) / 2));
		width: 46px;
		height: 46px;
		max-width: 46px;
		transform: translate(-50%, -50%);
	}

	.theme-282-header .site-brand .custom-logo-link,
	.theme-282-header .site-brand img,
	.theme-282-header .site-brand .custom-logo {
		width: 46px;
		height: 46px;
		max-width: 46px;
		max-height: 46px;
	}

	.theme-282-header .site-brand .brand-mark {
		width: 42px;
		height: 42px;
		font-size: 0.66rem;
	}

	.theme-282-hero {
		height: auto;
		min-height: 100svh;
	}

	@supports (min-height: 100dvh) {
		.theme-282-hero {
			min-height: 100dvh;
		}
	}

	.theme-282-hero-image img {
		height: calc(100% + 56px);
		object-position: 56% center;
	}

	.theme-282-hero::after {
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.04)),
			linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.08) 38%, rgba(5, 5, 5, 0.82) 100%);
	}

	.theme-282-hero-content {
		align-content: end;
		min-height: 100svh;
		padding-top: calc(96px + env(safe-area-inset-top));
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	@supports (min-height: 100dvh) {
		.theme-282-hero-content {
			min-height: 100dvh;
		}
	}

	.theme-282-hero-copy {
		max-width: 100%;
	}

	.theme-282-hero .kicker {
		margin-bottom: 18px;
		font-size: 0.76rem;
		letter-spacing: 0.12em;
	}

	.theme-282-hero h1 {
		max-width: 7.4em;
		margin-bottom: 18px;
		font-size: clamp(2.82rem, 11.2vw, 3.78rem);
		line-height: 0.94;
	}

	.theme-282-hero .hero-text {
		max-width: 28em;
		font-size: clamp(0.94rem, 4.15vw, 1.04rem);
		line-height: 1.46;
	}

	.theme-282-hero-meta {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		max-width: 280px;
		margin-top: 28px;
		font-size: 0.66rem;
		letter-spacing: 0.08em;
	}

	.theme-282-hero-meta span {
		min-width: 0;
		padding: 8px 0;
		border-top: 1px solid rgba(247, 247, 241, 0.26);
	}

	.theme-282-hero-meta span:last-child {
		border-bottom: 1px solid rgba(247, 247, 241, 0.26);
	}

	.hero-scroll {
		right: 20px;
		bottom: calc(24px + env(safe-area-inset-bottom));
		width: 38px;
		height: 58px;
	}

	.hero-scroll::before {
		height: 42px;
	}

	.hero-scroll::after {
		bottom: 2px;
		width: 14px;
		height: 14px;
	}

	.production-collab-section {
		padding-block: 56px;
	}

	.production-collab-section .production-collab-head {
		display: block;
		margin-bottom: 24px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.production-collab-section .production-collab-head .kicker {
		margin-bottom: 14px;
	}

	.production-collab-section .production-collab-head h2 {
		max-width: 100%;
		font-size: clamp(2.25rem, 10.5vw, 3.35rem);
		line-height: 0.98;
	}

	.production-collab-section .production-collab-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		padding: 20px 0;
	}

	.production-collab-section .production-collab-row h3 {
		font-size: 1.28rem;
		line-height: 1.05;
	}

	.works-section .work-card-body,
	.work-card-body {
		padding: 14px 62px 14px 14px;
	}

	.works-section .work-card h3,
	.work-card h3 {
		max-width: 12em;
		font-size: clamp(1.12rem, 5.4vw, 1.52rem);
		line-height: 1.02;
	}

	.works-section .video-launcher,
	.work-card .video-launcher {
		right: 12px;
		bottom: 12px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 420px) {
	.theme-282-hero h1 {
		font-size: clamp(2.55rem, 10.7vw, 3.2rem);
	}

	.theme-282-hero .hero-text {
		font-size: 0.94rem;
	}

	.theme-282-hero-meta {
		max-width: 250px;
	}

	.works-section .work-card h3,
	.work-card h3 {
		font-size: clamp(1.06rem, 5vw, 1.34rem);
	}
}

/* Absolute EOF: keep production block inside the same editorial system. */
.production-collab-section.theme-282-services {
	background: #050505;
	color: #f7f7f1;
}

.production-collab-section .production-collab-head {
	display: block;
	margin-bottom: clamp(28px, 3.4vw, 46px);
	padding-bottom: 0;
	border-bottom: 0;
	text-align: left;
}

.production-collab-section .production-collab-head h2 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(3.2rem, 6.1vw, 5.8rem);
	line-height: 0.95;
	text-align: left;
}

.production-collab-section .production-collab-head .kicker {
	display: block;
	margin: 0 0 20px;
	color: var(--code-accent);
	text-align: left;
}

.production-collab-section .production-collab-list {
	border-top: 1px solid rgba(244, 241, 232, 0.18);
}

.production-collab-section .production-collab-row {
	display: grid;
	grid-template-columns: 160px minmax(220px, 0.48fr) minmax(260px, 0.72fr);
	gap: 28px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(244, 241, 232, 0.18);
	background: transparent;
}

.production-collab-section .production-collab-row span {
	color: var(--code-accent);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.production-collab-section .production-collab-row h3 {
	margin: 0;
	text-transform: uppercase;
}

.production-collab-section .production-collab-row p {
	margin: 0;
	color: rgba(247, 247, 241, 0.72);
}

@media (max-width: 760px) {
	.production-collab-section .production-collab-head {
		display: block;
		margin-bottom: 24px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.production-collab-section .production-collab-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		padding: 20px 0;
	}

	.production-collab-section .production-collab-row h3 {
		font-size: 1.28rem;
		line-height: 1.05;
	}

	.works-section .work-card-body,
	.work-card-body {
		padding: 14px 62px 14px 14px;
	}

	.works-section .work-card h3,
	.work-card h3 {
		max-width: 12em;
		font-size: clamp(1.12rem, 5.4vw, 1.52rem);
		line-height: 1.02;
	}

	.works-section .video-launcher,
	.work-card .video-launcher {
		right: 12px;
		bottom: 12px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 420px) {
	.works-section .work-card h3,
	.work-card h3 {
		font-size: clamp(1.06rem, 5vw, 1.34rem);
	}
}

/* Absolute true EOF: mobile contact CTA without framed box. */
@media (max-width: 760px) {
	.contact-cta .cta-grid,
	.cta-grid {
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.contact-cta .contact-mini-log span {
		max-width: 100%;
	}
}

/* Absolute true EOF: darker mobile menu overlay. */
@media (max-width: 760px) {
	.primary-nav ul {
		left: 0;
		right: 0;
		width: 100vw;
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.985), rgba(5, 5, 5, 0.94)),
			radial-gradient(circle at 82% 18%, rgba(201, 149, 40, 0.12), transparent 25rem),
			repeating-linear-gradient(90deg, rgba(247, 247, 241, 0.018) 0 1px, transparent 1px 7px);
		backdrop-filter: blur(18px);
	}

	.primary-nav li {
		background: rgba(5, 5, 5, 0.18);
	}
}

/* Absolute final override: unified home headings. */
.intro-statement,
.theme-282-section-title,
.section-heading,
.section-heading.product-heading,
.production-collab-section .production-collab-head,
.process-intro,
.about-copy,
.contact-cta .cta-grid > div:first-child {
	display: block;
	justify-items: start;
	text-align: left;
}

.theme-282-section-title,
.section-heading,
.section-heading.product-heading,
.production-collab-section .production-collab-head {
	margin-bottom: clamp(28px, 3.4vw, 46px);
	padding-bottom: 0;
	border-bottom: 0;
}

.intro-statement .kicker,
.theme-282-section-title .kicker,
.section-heading .kicker,
.section-heading.product-heading .kicker,
.production-collab-section .production-collab-head .kicker,
.process-intro .kicker,
.about-copy .kicker,
.contact-cta .kicker {
	display: block;
	margin: 0 0 20px;
	color: var(--code-accent);
	text-align: left;
}

.intro-statement h2,
.theme-282-section-title h2,
.section-heading h2,
.section-heading.product-heading h2,
.production-collab-section .production-collab-head h2,
.process-intro h2,
.about-copy h2,
.contact-cta h2 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(3.2rem, 6.1vw, 5.8rem);
	line-height: 0.95;
	text-align: left;
}

.theme-282-section-title p,
.section-heading p,
.section-heading.product-heading p,
.process-intro p,
.about-copy p,
.contact-cta p {
	max-width: 720px;
	margin-top: 22px;
	text-align: left;
}

@media (max-width: 760px) {
	.theme-282-section-title,
	.section-heading,
	.section-heading.product-heading,
	.production-collab-section .production-collab-head {
		margin-bottom: 24px;
	}

	.intro-statement .kicker,
	.theme-282-section-title .kicker,
	.section-heading .kicker,
	.section-heading.product-heading .kicker,
	.production-collab-section .production-collab-head .kicker,
	.process-intro .kicker,
	.about-copy .kicker,
	.contact-cta .kicker {
		margin-bottom: 14px;
	}

	.intro-statement h2,
	.theme-282-section-title h2,
	.section-heading h2,
	.section-heading.product-heading h2,
	.production-collab-section .production-collab-head h2,
	.process-intro h2,
	.about-copy h2,
	.contact-cta h2 {
		max-width: 100%;
		font-size: clamp(2.25rem, 10.5vw, 3.35rem);
		line-height: 0.98;
	}

	.theme-282-section-title p,
	.section-heading p,
	.section-heading.product-heading p,
	.process-intro p,
	.about-copy p,
	.contact-cta p {
		margin-top: 16px;
	}
}

/* Absolute final: one heading system across the whole home page. */
.intro-statement,
.theme-282-section-title,
.section-heading,
.section-heading.product-heading,
.production-collab-section .production-collab-head,
.process-intro,
.about-copy,
.contact-cta .cta-grid > div:first-child {
	display: block;
	justify-items: start;
	text-align: left;
}

.theme-282-section-title,
.section-heading,
.section-heading.product-heading,
.production-collab-section .production-collab-head {
	margin-bottom: clamp(28px, 3.4vw, 46px);
	padding-bottom: 0;
	border-bottom: 0;
}

.intro-statement .kicker,
.theme-282-section-title .kicker,
.section-heading .kicker,
.section-heading.product-heading .kicker,
.production-collab-section .production-collab-head .kicker,
.process-intro .kicker,
.about-copy .kicker,
.contact-cta .kicker {
	display: block;
	margin: 0 0 20px;
	color: var(--code-accent);
	text-align: left;
}

.intro-statement h2,
.theme-282-section-title h2,
.section-heading h2,
.section-heading.product-heading h2,
.production-collab-section .production-collab-head h2,
.process-intro h2,
.about-copy h2,
.contact-cta h2 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(3.2rem, 6.1vw, 5.8rem);
	line-height: 0.95;
	text-align: left;
}

.theme-282-section-title p,
.section-heading p,
.section-heading.product-heading p,
.process-intro p,
.about-copy p,
.contact-cta p {
	max-width: 720px;
	margin-top: 22px;
	text-align: left;
}

.production-collab-section .production-collab-list,
.services-list,
.process-stack,
.notes-grid {
	margin-top: 0;
}

@media (max-width: 760px) {
	.theme-282-section-title,
	.section-heading,
	.section-heading.product-heading,
	.production-collab-section .production-collab-head {
		margin-bottom: 24px;
	}

	.intro-statement .kicker,
	.theme-282-section-title .kicker,
	.section-heading .kicker,
	.section-heading.product-heading .kicker,
	.production-collab-section .production-collab-head .kicker,
	.process-intro .kicker,
	.about-copy .kicker,
	.contact-cta .kicker {
		margin-bottom: 14px;
	}

	.intro-statement h2,
	.theme-282-section-title h2,
	.section-heading h2,
	.section-heading.product-heading h2,
	.production-collab-section .production-collab-head h2,
	.process-intro h2,
	.about-copy h2,
	.contact-cta h2 {
		max-width: 100%;
		font-size: clamp(2.25rem, 10.5vw, 3.35rem);
		line-height: 0.98;
	}

	.theme-282-section-title p,
	.section-heading p,
	.section-heading.product-heading p,
	.process-intro p,
	.about-copy p,
	.contact-cta p {
		margin-top: 16px;
	}
}

/* Final production-collab section and responsive hero polish. */
.production-collab-section {
	overflow: hidden;
	background: #050505;
	color: #f7f7f1;
}

.production-collab-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.44fr);
	gap: clamp(36px, 7vw, 100px);
	align-items: start;
}

.production-collab-copy h2 {
	max-width: 920px;
	font-size: clamp(3.4rem, 7vw, 6.8rem);
	line-height: 0.92;
}

.production-collab-copy p {
	max-width: 760px;
	color: rgba(247, 247, 241, 0.72);
	font-size: clamp(1rem, 1.25vw, 1.22rem);
	line-height: 1.58;
}

.production-collab-copy .production-proof {
	max-width: 700px;
	margin-top: 26px;
	color: #f7f7f1;
	font-weight: 720;
}

.production-collab-panel {
	padding-left: 24px;
	border-left: 1px solid rgba(247, 247, 241, 0.18);
}

.production-collab-panel p {
	margin-bottom: 28px;
	color: rgba(247, 247, 241, 0.68);
}

.production-collab-items {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.production-collab-items li {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-height: 54px;
	padding: 12px 0;
	border-top: 1px solid rgba(247, 247, 241, 0.16);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.84rem;
	font-weight: 760;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.production-collab-items li:last-child {
	border-bottom: 1px solid rgba(247, 247, 241, 0.16);
}

.production-collab-items span {
	color: var(--code-accent);
	font-size: 0.72rem;
}

@media (min-width: 761px) {
	.theme-282-hero h1 {
		font-size: clamp(4.6rem, 7.4vw, 7rem);
	}
}

@media (max-width: 980px) {
	.production-collab-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.production-collab-panel {
		padding-top: 24px;
		padding-left: 0;
		border-top: 1px solid rgba(247, 247, 241, 0.18);
		border-left: 0;
	}
}

@media (max-width: 760px) {
	.site-header.theme-282-header {
		min-height: calc(70px + env(safe-area-inset-top));
		background: linear-gradient(180deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0));
	}

	.theme-282-header .header-inner {
		min-height: calc(70px + env(safe-area-inset-top));
		padding-top: env(safe-area-inset-top);
	}

	.theme-282-header .nav-toggle {
		gap: 10px;
		height: 44px;
		color: #f7f7f1;
	}

	.theme-282-header .nav-toggle::before {
		width: 28px;
		height: 18px;
		background:
			linear-gradient(currentColor, currentColor) 0 0 / 28px 1px no-repeat,
			linear-gradient(currentColor, currentColor) 0 8px / 28px 1px no-repeat,
			linear-gradient(currentColor, currentColor) 0 16px / 28px 1px no-repeat;
	}

	.theme-282-header .nav-toggle > span.nav-label:first-child {
		font-size: 0.68rem;
		letter-spacing: 0.08em;
	}

	.theme-282-header .site-brand {
		position: absolute;
		left: 50%;
		top: calc(50% + (env(safe-area-inset-top) / 2));
		width: 46px;
		height: 46px;
		max-width: 46px;
		transform: translate(-50%, -50%);
	}

	.theme-282-header .site-brand .custom-logo-link,
	.theme-282-header .site-brand img,
	.theme-282-header .site-brand .custom-logo {
		width: 46px;
		height: 46px;
		max-width: 46px;
		max-height: 46px;
	}

	.theme-282-header .site-brand .brand-mark {
		width: 42px;
		height: 42px;
		font-size: 0.66rem;
	}

	.theme-282-hero {
		height: auto;
		min-height: 100svh;
	}

	@supports (min-height: 100dvh) {
		.theme-282-hero {
			min-height: 100dvh;
		}
	}

	.theme-282-hero-image img {
		height: calc(100% + 56px);
		object-position: 56% center;
	}

	.theme-282-hero::after {
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.04)),
			linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.08) 38%, rgba(5, 5, 5, 0.82) 100%);
	}

	.theme-282-hero-content {
		align-content: end;
		min-height: 100svh;
		padding-top: calc(96px + env(safe-area-inset-top));
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	@supports (min-height: 100dvh) {
		.theme-282-hero-content {
			min-height: 100dvh;
		}
	}

	.theme-282-hero-copy {
		max-width: 100%;
	}

	.theme-282-hero .kicker {
		margin-bottom: 18px;
		font-size: 0.76rem;
		letter-spacing: 0.12em;
	}

	.theme-282-hero h1 {
		max-width: 7.4em;
		margin-bottom: 18px;
		font-size: clamp(2.82rem, 11.2vw, 3.78rem);
		line-height: 0.94;
	}

	.theme-282-hero .hero-text {
		max-width: 28em;
		font-size: clamp(0.94rem, 4.15vw, 1.04rem);
		line-height: 1.46;
	}

	.theme-282-hero-meta {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		max-width: 280px;
		margin-top: 28px;
		font-size: 0.66rem;
		letter-spacing: 0.08em;
	}

	.theme-282-hero-meta span {
		min-width: 0;
		padding: 8px 0;
		border-top: 1px solid rgba(247, 247, 241, 0.26);
	}

	.theme-282-hero-meta span:last-child {
		border-bottom: 1px solid rgba(247, 247, 241, 0.26);
	}

	.hero-scroll {
		right: 20px;
		bottom: calc(24px + env(safe-area-inset-bottom));
		width: 38px;
		height: 58px;
	}

	.hero-scroll::before {
		height: 42px;
	}

	.hero-scroll::after {
		bottom: 2px;
		width: 14px;
		height: 14px;
	}

	.production-collab-section {
		padding-block: 72px;
	}

	.production-collab-copy h2 {
		max-width: 100%;
		font-size: clamp(2.45rem, 11vw, 3.45rem);
		line-height: 0.98;
	}

	.production-collab-copy p,
	.production-collab-panel p {
		font-size: 0.98rem;
		line-height: 1.5;
	}

	.production-collab-copy .production-proof {
		margin-top: 20px;
	}

	.production-collab-items li {
		grid-template-columns: 34px minmax(0, 1fr);
		min-height: 48px;
		font-size: 0.74rem;
	}
}

@media (max-width: 420px) {
	.theme-282-hero h1 {
		font-size: clamp(2.55rem, 10.7vw, 3.2rem);
	}

	.theme-282-hero .hero-text {
		font-size: 0.94rem;
	}

	.theme-282-hero-meta {
		max-width: 250px;
	}
}

/* Final mobile + scroll overlay pass. */
html,
body {
	overflow-x: hidden;
}

body.tfe-site::after {
	content: "";
	position: fixed;
	inset: 0 0 auto;
	z-index: 112;
	height: clamp(96px, 15vh, 170px);
	pointer-events: none;
	opacity: 0;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.34) 52%, transparent),
		repeating-linear-gradient(90deg, rgba(247, 247, 241, 0.055) 0 1px, transparent 1px 5px);
	mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 48%, transparent 100%);
	transition: opacity 220ms ease;
}

body.tfe-site.is-scrolled::after {
	opacity: 1;
}

.ba-slider {
	cursor: ew-resize;
	touch-action: none;
	user-select: none;
}

.ba-slider input[type="range"] {
	z-index: 5;
	-webkit-appearance: none;
	appearance: none;
	touch-action: none;
}

.ba-image,
.ba-playhead {
	pointer-events: none;
}

.ba-slider input[type="range"]::-webkit-slider-thumb {
	width: 46px;
	height: 46px;
	-webkit-appearance: none;
	appearance: none;
}

.ba-slider input[type="range"]::-moz-range-thumb {
	width: 46px;
	height: 46px;
	border: 0;
}

.timeline-notes-section .notes-grid {
	align-items: start;
}

.timeline-notes-section .timeline-note {
	min-height: 0;
	padding: clamp(18px, 2.4vw, 26px);
	border-left: 1px solid rgba(247, 247, 241, 0.18);
	border-right: 1px solid rgba(247, 247, 241, 0.18);
}

.timeline-notes-section .timeline-note::before,
.timeline-notes-section .timeline-note::after {
	display: none;
}

.timeline-notes-section .note-text {
	line-height: 1.36;
}

@media (max-width: 900px) {
	.detail-grid,
	.contact-grid,
	.process-layout,
	.about-showcase,
	.cta-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.process-intro {
		position: static;
	}

	.service-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}
}

@media (max-width: 760px) {
	:root {
		--mobile-edge: 16px;
	}

	body {
		font-size: 15px;
		line-height: 1.52;
	}

	.container,
	.intro-statement {
		width: min(calc(100% - (var(--mobile-edge) * 2)), var(--container));
	}

	.section,
	.video-preview-section,
	.works-section,
	.services-section,
	.before-after-section,
	.process-showcase,
	.timeline-notes-section,
	.about-teaser,
	.contact-cta,
	.page-main,
	.detail-layout,
	.contact-page {
		padding-block: 72px;
	}

	.site-header.theme-282-header {
		background: linear-gradient(180deg, rgba(5, 5, 5, 0.58), transparent);
	}

	.theme-282-header .header-inner {
		min-height: 62px;
	}

	.theme-282-header > .site-brand,
	.theme-282-header .site-brand {
		top: 10px;
		width: 38px;
		height: 38px;
		max-width: 38px;
	}

	.theme-282-header > .site-brand .custom-logo-link,
	.theme-282-header > .site-brand img,
	.theme-282-header > .site-brand .custom-logo,
	.theme-282-header .site-brand .custom-logo-link,
	.theme-282-header .site-brand img,
	.theme-282-header .site-brand .custom-logo {
		width: 38px;
		height: 38px;
		max-width: 38px;
		max-height: 38px;
	}

	.theme-282-header > .site-brand .brand-mark,
	.theme-282-header .site-brand .brand-mark {
		width: 34px;
		height: 34px;
		font-size: 0.54rem;
	}

	.theme-282-header .nav-toggle {
		min-width: 0;
		height: 40px;
		padding: 0;
		gap: 10px;
	}

	.theme-282-header .nav-toggle::before {
		width: 32px;
	}

	.theme-282-header .nav-toggle > span.nav-label:first-child {
		font-size: 0.68rem;
	}

	.primary-nav ul {
		left: var(--mobile-edge);
		right: var(--mobile-edge);
		width: auto;
	}

	.primary-nav a {
		font-size: clamp(2.25rem, 13.5vw, 4.2rem);
		line-height: 0.96;
	}

	.theme-282-hero {
		height: 100svh;
		min-height: 100svh;
	}

	.theme-282-hero-image img {
		height: calc(100% + 36px);
		object-position: 58% center;
	}

	.theme-282-hero::after {
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.36) 64%, rgba(5, 5, 5, 0.12)),
			linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.16) 46%, rgba(5, 5, 5, 0.82));
	}

	.theme-282-hero-content {
		min-height: 100svh;
		padding-top: 82px;
		padding-bottom: 66px;
	}

	.theme-282-hero h1 {
		max-width: 8em;
		margin-bottom: 16px;
		font-size: clamp(2.58rem, 13.4vw, 4.05rem);
		line-height: 0.94;
	}

	.theme-282-hero .hero-text {
		max-width: 30em;
		font-size: 0.98rem;
		line-height: 1.46;
	}

	.theme-282-hero-meta {
		margin-top: 24px;
		gap: 8px 12px;
		font-size: 0.62rem;
	}

	.theme-282-hero-meta span {
		min-width: calc(50% - 12px);
		padding-top: 8px;
	}

	.hero-scroll {
		right: 18px;
		bottom: 22px;
		height: 46px;
	}

	.hero-scroll::before {
		height: 34px;
	}

	.hero-scroll::after {
		bottom: 0;
	}

	.intro-statement h2,
	.section-heading.product-heading h2,
	.theme-282-section-title h2,
	.process-intro h2,
	.about-copy h2,
	.contact-cta h2,
	.page-title-block h1,
	.compact-hero h1 {
		max-width: 100%;
		font-size: clamp(2.35rem, 12vw, 3.55rem);
		line-height: 0.98;
	}

	.section-heading,
	.section-heading.product-heading,
	.theme-282-section-title {
		display: block;
		margin-bottom: 24px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.video-preview-card,
	.video-preview-overlay {
		min-height: 68svh;
	}

	.video-preview-overlay {
		padding: 22px;
	}

	.works-section .works-grid,
	.works-grid,
	.notes-grid,
	.card-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.works-section .work-media,
	.work-media {
		aspect-ratio: 1 / 1;
	}

	.works-section .work-card-body {
		display: block;
		padding-top: 12px;
	}

	.works-section .work-card h3,
	.work-card h3 {
		min-height: 0;
		font-size: 1rem;
		line-height: 1.06;
	}

	.services-list {
		border-top: 0;
	}

	.service-row {
		padding: 20px 0;
		border-bottom: 1px solid rgba(247, 247, 241, 0.14);
	}

	.service-row h3 {
		font-size: 1.28rem;
	}

	.before-after-head {
		display: grid;
		gap: 14px;
		padding: 16px 0;
	}

	.before-after-card {
		background: transparent;
	}

	.ba-slider {
		aspect-ratio: 4 / 5;
		min-height: 360px;
	}

	.ba-playhead::before {
		width: 38px;
		height: 38px;
	}

	.ba-caption {
		padding: 14px 0 0;
	}

	.process-stack {
		gap: 14px;
	}

	.process-step {
		grid-template-columns: 42px minmax(0, 1fr);
		gap: 14px;
		padding: 16px 0;
	}

	.contact-cta .cta-grid,
	.cta-grid,
	.contact-form {
		padding: 20px 0;
		border-left: 0;
		border-right: 0;
	}

	.timeline-notes-section .notes-grid {
		gap: 14px;
	}

	.timeline-notes-section .timeline-note {
		padding: 16px 0 16px 14px;
		border-top: 0;
		border-right: 0;
		border-bottom: 0;
		border-left: 1px solid rgba(247, 247, 241, 0.18);
		background: transparent;
	}

	.timeline-notes-section .meta-label {
		margin-bottom: 8px;
		font-size: 0.62rem;
	}

	.timeline-notes-section .timecode {
		margin-bottom: 10px;
		font-size: 0.72rem;
	}

	.timeline-notes-section .note-text {
		font-size: 0.86rem;
		line-height: 1.35;
	}
}

@media (max-width: 420px) {
	.theme-282-hero h1,
	.intro-statement h2,
	.section-heading.product-heading h2,
	.theme-282-section-title h2,
	.process-intro h2,
	.about-copy h2,
	.contact-cta h2,
	.page-title-block h1,
	.compact-hero h1 {
		font-size: clamp(2.15rem, 11vw, 3.05rem);
	}
}

/* Final works/mobile poster layout. */
@media (max-width: 760px) {
	.works-section {
		padding-top: 64px;
		padding-bottom: 44px;
	}

	.works-section .section-heading.product-heading {
		margin-bottom: 28px;
	}

	.works-section .works-grid,
	.works-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.works-section .work-card,
	.work-card {
		position: relative;
		display: block;
		overflow: hidden;
		min-height: 0;
		border: 0;
		background: #050505;
	}

	.works-section .work-media,
	.work-media {
		aspect-ratio: 4 / 5;
		border: 0;
		background: #070707;
	}

	.works-section .work-media::after,
	.work-media::after {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		background:
			linear-gradient(180deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.1) 38%, rgba(5, 5, 5, 0.84) 100%),
			repeating-linear-gradient(90deg, rgba(247, 247, 241, 0.025) 0 1px, transparent 1px 5px);
	}

	.work-image-link,
	.placeholder-work .work-media > img,
	.work-image-link img,
	.media-placeholder {
		height: 100%;
	}

	.works-section .work-card-body,
	.work-card-body {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		display: block;
		padding: 18px 74px 16px 16px;
		background: transparent;
	}

	.works-section .tag-row,
	.tag-row {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
		min-height: 0;
		margin: 0 0 8px;
		overflow: visible;
	}

	.works-section .tag-row span,
	.works-section .work-meta span,
	.tag-row span,
	.work-meta span {
		min-height: 0;
		padding: 4px 7px;
		border-color: rgba(247, 247, 241, 0.28);
		background: rgba(5, 5, 5, 0.48);
		color: rgba(247, 247, 241, 0.78);
		font-size: 0.58rem;
		line-height: 1.1;
		letter-spacing: 0.08em;
		white-space: normal;
		backdrop-filter: blur(8px);
	}

	.works-section .work-card h3,
	.work-card h3 {
		display: block;
		min-height: 0;
		margin: 0;
		overflow: visible;
		color: #f7f7f1;
		font-size: clamp(1.55rem, 8vw, 2.42rem);
		font-weight: 820;
		line-height: 0.92;
		letter-spacing: 0;
		text-transform: uppercase;
		-webkit-line-clamp: unset;
	}

	.works-section .work-card h3 a,
	.work-card h3 a {
		text-decoration: none;
	}

	.works-section .work-card-body > p,
	.work-card-body > p,
	.works-section .work-meta,
	.work-meta {
		display: none;
	}

	.works-section .video-launcher,
	.work-card .video-launcher {
		right: 14px;
		bottom: 14px;
		z-index: 3;
		width: 46px;
		height: 46px;
		border-color: rgba(247, 247, 241, 0.32);
		background: rgba(5, 5, 5, 0.5);
	}

	.services-section,
	.services-section.theme-282-services {
		padding-top: 56px;
	}
}

/* Final page detail pass: Croatian labels, left-aligned hero, unboxed side logs. */
.page-title-block {
	max-width: none;
	text-align: left;
}

.page-title-block h1 {
	max-width: 960px;
}

.page-title-block p {
	max-width: 780px;
}

.page-main > .container.narrow-content,
.contact-page-intro.narrow-content {
	max-width: var(--container);
}

.detail-grid,
.contact-grid {
	grid-template-columns: minmax(0, 0.78fr) minmax(220px, 0.22fr);
	gap: clamp(32px, 6vw, 92px);
}

.detail-aside.edit-panel,
.contact-aside.edit-panel {
	position: static;
	padding: 0 0 0 24px;
	border: 0;
	border-left: 1px solid rgba(247, 247, 241, 0.18);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.detail-aside .panel-bar,
.contact-aside .panel-bar {
	display: block;
	margin: 0 0 16px;
}

.detail-aside .panel-bar span,
.contact-aside .panel-bar span {
	display: none;
}

.detail-aside .panel-bar strong,
.contact-aside .panel-bar strong {
	color: var(--code-accent);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.detail-aside .log-lines,
.contact-aside .log-lines {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.detail-aside .log-lines li,
.contact-aside .log-lines li {
	padding: 10px 0;
	border-top: 1px solid rgba(247, 247, 241, 0.14);
	color: rgba(247, 247, 241, 0.68);
	font-size: 0.72rem;
	line-height: 1.45;
	list-style: none;
}

.contact-aside .contact-list {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(247, 247, 241, 0.14);
}

@media (max-width: 900px) {
	.detail-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.detail-aside.edit-panel,
	.contact-aside.edit-panel {
		padding: 24px 0 0;
		border-left: 0;
		border-top: 1px solid rgba(247, 247, 241, 0.18);
	}
}

.contact-page-intro {
	margin-bottom: 40px;
}

.contact-page-intro p {
	color: rgba(247, 247, 241, 0.72);
}

/* Final header centering override. */
.site-header.theme-282-header {
	position: fixed;
	inset: 0 0 auto;
	width: 100%;
	z-index: 120;
	border: 0;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.42), transparent);
}

.theme-282-header .header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}

.theme-282-header > .site-brand {
	position: absolute;
	left: 50%;
	top: 10px;
	z-index: 180;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	max-width: 48px;
	overflow: hidden;
	transform: translateX(-50%);
}

.theme-282-header > .site-brand .custom-logo-link,
.theme-282-header > .site-brand img,
.theme-282-header > .site-brand .custom-logo {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.theme-282-header > .site-brand .brand-mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(247, 247, 241, 0.72);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.theme-282-header .header-contact {
	position: static;
	z-index: 170;
	min-width: 112px;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
	transform: none;
}

@media (max-width: 900px) {
	.theme-282-header .header-contact {
		display: none;
	}
}

/* Absolute final viewport/header/contact-frame correction. */
.theme-282-header .site-brand {
	position: fixed;
	left: 50vw;
	top: 10px;
	z-index: 180;
	width: 48px;
	height: 48px;
	max-width: 48px;
	transform: translateX(-50%);
}

.theme-282-header .site-brand .custom-logo-link,
.theme-282-header .site-brand img,
.theme-282-header .site-brand .custom-logo {
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.theme-282-header .site-brand .brand-mark {
	width: 42px;
	height: 42px;
}

.theme-282-header .header-contact {
	position: fixed;
	right: max(24px, calc((100vw - var(--container)) / 2));
	top: 28px;
	z-index: 170;
	min-width: 112px;
	text-align: right;
	white-space: nowrap;
	transform: none;
}

.contact-cta .cta-grid {
	border: 1px solid rgba(247, 247, 241, 0.18);
}

@media (max-width: 900px) {
	.theme-282-header .header-contact {
		display: none;
	}
}

@media (max-width: 760px) {
	.theme-282-header .site-brand {
		top: 12px;
		width: 42px;
		height: 42px;
		max-width: 42px;
	}

	.theme-282-header .site-brand .custom-logo-link,
	.theme-282-header .site-brand img,
	.theme-282-header .site-brand .custom-logo {
		width: 42px;
		height: 42px;
		max-width: 42px;
		max-height: 42px;
	}
}

/* Absolute final header placement. */
.theme-282-header .header-inner {
	position: relative;
	grid-template-columns: minmax(140px, 1fr) 56px minmax(140px, 1fr);
	column-gap: 48px;
}

.theme-282-header .site-brand {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 130;
	width: 48px;
	height: 48px;
	max-width: 48px;
	overflow: hidden;
	transform: translate(-50%, -50%);
}

.theme-282-header .site-brand .custom-logo-link,
.theme-282-header .site-brand img,
.theme-282-header .site-brand .custom-logo {
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.theme-282-header .header-contact {
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 140;
	min-width: 112px;
	padding-left: 24px;
	text-align: right;
	white-space: nowrap;
	transform: translateY(-50%);
}

@media (max-width: 900px) {
	.theme-282-header .header-contact {
		display: none;
	}
}

/* Final header collision fix. */
.theme-282-header .header-inner {
	grid-template-columns: minmax(160px, 1fr) 64px minmax(160px, 1fr);
	column-gap: 40px;
}

.theme-282-header .site-brand {
	grid-column: 2;
	left: 50%;
	width: 48px;
	height: 48px;
	max-width: 48px;
}

.theme-282-header .header-contact {
	grid-column: 3;
	justify-self: end;
	min-width: 110px;
	padding-left: 24px;
	text-align: right;
	white-space: nowrap;
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		grid-template-columns: minmax(90px, 1fr) 48px minmax(90px, 1fr);
		column-gap: 18px;
	}

	.theme-282-header .header-contact {
		display: none;
	}
}

.intro-band .kicker {
	color: #9c761f;
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.services-section .service-row p,
.process-step .meta-label,
.about-teaser p,
.contact-cta p,
.contact-brief-list,
.contact-mini-log {
	color: rgba(247, 247, 241, 0.72);
}

/* Final video modal ratio support for Shorts/Reels/9:16. */
.video-frame {
	background: #000;
}

.video-modal.is-vertical .video-modal-panel {
	width: min(92vw, 430px);
}

.video-modal.is-vertical .video-frame {
	aspect-ratio: 9 / 16;
}

.video-modal.is-instagram .video-modal-panel {
	width: min(92vw, 470px);
}

.video-modal-help {
	margin: 0;
	padding: 12px 16px 16px;
	border-top: 1px solid rgba(247, 247, 241, 0.14);
	color: rgba(247, 247, 241, 0.68);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.video-modal-help a {
	color: var(--code-accent);
	text-decoration: none;
}

@media (max-height: 720px) {
	.video-modal.is-vertical .video-modal-panel {
		width: min(86vw, 360px);
	}
}

.contact-brief-list li::before,
.contact-mini-log span,
.timeline-notes-section .meta-label,
.timeline-notes-section .timecode {
	color: var(--code-accent);
}

.work-card,
.before-after-card,
.timeline-note,
.process-step,
.cta-grid {
	border-color: rgba(247, 247, 241, 0.18);
	background: transparent;
}

.before-after-card,
.before-after-head {
	background: transparent;
}

.contact-parallax-mark {
	color: rgba(247, 247, 241, 0.045);
}

.contact-mini-log span {
	border-top-color: rgba(247, 247, 241, 0.18);
}

.contact-cta .cta-grid {
	border-color: rgba(247, 247, 241, 0.18);
}

.contact-cta .button-primary {
	border-color: #f7f7f1;
	background: #f7f7f1;
	color: #050505;
}

.contact-cta .button-primary:hover {
	background: transparent;
	color: #f7f7f1;
}

/* Absolute final background decision: everything black. */
body,
.section,
.intro-band,
.theme-282-hero,
.video-preview-section,
.works-section,
.services-section,
.services-section.theme-282-services,
.before-after-section,
.process-showcase,
.timeline-notes-section,
.about-teaser,
.contact-cta,
.site-footer,
.compact-hero,
.page-main,
.detail-layout,
.contact-page {
	background: #050505;
	color: #f7f7f1;
}

.intro-band h1,
.intro-band h2,
.intro-band h3,
.intro-band p,
.works-section h1,
.works-section h2,
.works-section h3,
.works-section h3 a,
.works-section p,
.timeline-notes-section h1,
.timeline-notes-section h2,
.timeline-notes-section h3,
.timeline-notes-section p,
.timeline-notes-section .note-text,
.contact-cta h1,
.contact-cta h2,
.contact-cta h3,
.contact-cta p {
	color: #f7f7f1;
}

.intro-band .kicker,
.works-section .kicker,
.timeline-notes-section .kicker,
.contact-cta .kicker {
	color: var(--code-accent);
}

.works-section .section-heading > p,
.works-section .work-card-body > p,
.contact-brief-list,
.contact-mini-log {
	color: rgba(247, 247, 241, 0.72);
}

.works-section .tag-row span,
.works-section .work-meta span,
.timeline-notes-section .timeline-note,
.timeline-notes-section .timeline-note p {
	border-color: rgba(247, 247, 241, 0.18);
	color: rgba(247, 247, 241, 0.72);
}

/* Final seamless/header/footer cleanup. */
.section,
.intro-band,
.video-preview-section,
.works-section,
.services-section,
.before-after-section,
.process-showcase,
.timeline-notes-section,
.about-teaser,
.contact-cta,
.site-footer,
.cta-grid,
.footer-bottom,
.section-heading,
.theme-282-section-title,
.services-list,
.service-row,
.process-stack,
.process-step,
.timeline-note,
.before-after-head {
	border-top: 0;
	border-bottom: 0;
	box-shadow: none;
}

.theme-282-header .header-inner {
	grid-template-columns: minmax(180px, 1fr) 56px minmax(180px, 1fr);
}

.theme-282-header .primary-nav {
	justify-self: start;
}

.theme-282-header .site-brand {
	width: 48px;
	height: 48px;
	max-width: 48px;
}

.theme-282-header .site-brand .custom-logo-link {
	width: 48px;
	height: 48px;
}

.theme-282-header .site-brand .brand-mark {
	width: 40px;
	height: 40px;
}

.theme-282-header .header-contact {
	justify-self: end;
	min-width: 92px;
	text-align: right;
	white-space: nowrap;
}

.contact-parallax-mark {
	display: none;
}

.footer-logo {
	margin: 2px 0 18px;
}

.timeline-notes-section .section-heading h2 {
	font-family: var(--font-main);
	letter-spacing: 0;
	text-transform: none;
}

.timeline-notes-section .timeline-note,
.timeline-notes-section .timeline-note p,
.timeline-notes-section .note-text,
.timeline-notes-section .meta-label,
.timeline-notes-section .timecode {
	font-family: var(--font-mono);
}

@media (max-width: 760px) {
	.theme-282-header .header-inner {
		grid-template-columns: 1fr 48px 1fr;
	}

	.theme-282-header .site-brand,
	.theme-282-header .site-brand .custom-logo-link {
		width: 42px;
		height: 42px;
	}
}

/* Final code accent consistency. */
.kicker,
.section .kicker,
.theme-282-hero .kicker,
.video-preview-section .kicker,
.works-section .kicker,
.services-section .kicker,
.before-after-section .kicker,
.process-showcase .kicker,
.timeline-notes-section .kicker,
.about-teaser .kicker,
.contact-cta .kicker,
.site-footer .kicker,
.meta-label,
.service-row span,
.tag-row span,
.work-meta span,
.ba-tags span,
.step-number,
.timecode,
.contact-brief-list li::before,
.contact-mini-log span,
.footer-column h2,
.site-footer .micro-list li::before {
	color: var(--code-accent);
}

/* Final header centering override. */
.site-header.theme-282-header {
	position: fixed;
	inset: 0 0 auto;
	width: 100%;
	z-index: 120;
	border: 0;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0.42), transparent);
}

.theme-282-header .header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
}

.theme-282-header > .site-brand {
	position: absolute;
	left: 50%;
	top: 10px;
	z-index: 180;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	max-width: 48px;
	overflow: hidden;
	transform: translateX(-50%);
}

.theme-282-header > .site-brand .custom-logo-link,
.theme-282-header > .site-brand img,
.theme-282-header > .site-brand .custom-logo {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	max-width: 48px;
	max-height: 48px;
	object-fit: contain;
}

.theme-282-header > .site-brand .brand-mark {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(247, 247, 241, 0.72);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-decoration: none;
}

.theme-282-header .header-contact {
	position: static;
	z-index: 170;
	min-width: 112px;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
	transform: none;
}

.contact-cta .cta-grid {
	border: 1px solid rgba(247, 247, 241, 0.18);
}

@media (max-width: 900px) {
	.theme-282-header .header-contact {
		display: none;
	}
}

/* Absolute EOF video modal ratio support for Shorts/Reels/9:16. */
.video-frame {
	background: #000;
}

.video-modal.is-vertical .video-modal-panel {
	width: min(92vw, 430px);
}

.video-modal.is-vertical .video-frame {
	aspect-ratio: 9 / 16;
}

.video-modal.is-instagram .video-modal-panel {
	width: min(92vw, 470px);
}

.video-modal-help {
	margin: 0;
	padding: 12px 16px 16px;
	border-top: 1px solid rgba(247, 247, 241, 0.14);
	color: rgba(247, 247, 241, 0.68);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.video-modal-help a {
	color: var(--code-accent);
	text-decoration: none;
}

@media (max-height: 720px) {
	.video-modal.is-vertical .video-modal-panel {
		width: min(86vw, 360px);
	}
}

/* Absolute EOF production-collab section and responsive hero polish. */
.production-collab-section.theme-282-services {
	background: #050505;
	color: #f7f7f1;
}

.production-collab-section .production-collab-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 34px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(244, 241, 232, 0.18);
}

.production-collab-section .production-collab-head h2 {
	max-width: 820px;
}

.production-collab-section .production-collab-list {
	border-top: 1px solid rgba(244, 241, 232, 0.18);
}

.production-collab-section .production-collab-row {
	display: grid;
	grid-template-columns: 160px minmax(220px, 0.48fr) minmax(260px, 0.72fr);
	gap: 28px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(244, 241, 232, 0.18);
	background: transparent;
}

.production-collab-section .production-collab-row span {
	color: var(--code-accent);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.production-collab-section .production-collab-row h3 {
	margin: 0;
	text-transform: uppercase;
}

.production-collab-section .production-collab-row p {
	margin: 0;
	color: rgba(247, 247, 241, 0.72);
}

@media (min-width: 761px) {
	.theme-282-hero h1 {
		font-size: clamp(4.6rem, 7.4vw, 7rem);
	}
}

@media (max-width: 980px) {
	.production-collab-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.production-collab-panel {
		padding-top: 24px;
		padding-left: 0;
		border-top: 1px solid rgba(247, 247, 241, 0.18);
		border-left: 0;
	}
}

@media (max-width: 760px) {
	.site-header.theme-282-header {
		min-height: calc(70px + env(safe-area-inset-top));
		background: linear-gradient(180deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0));
	}

	.theme-282-header .header-inner {
		min-height: calc(70px + env(safe-area-inset-top));
		padding-top: env(safe-area-inset-top);
	}

	.theme-282-header .nav-toggle {
		gap: 10px;
		height: 44px;
		color: #f7f7f1;
	}

	.theme-282-header .nav-toggle::before {
		width: 28px;
		height: 18px;
		background:
			linear-gradient(currentColor, currentColor) 0 0 / 28px 1px no-repeat,
			linear-gradient(currentColor, currentColor) 0 8px / 28px 1px no-repeat,
			linear-gradient(currentColor, currentColor) 0 16px / 28px 1px no-repeat;
	}

	.theme-282-header .nav-toggle > span.nav-label:first-child {
		position: static;
		display: inline-flex;
		align-items: center;
		width: auto;
		height: auto;
		margin: 0;
		overflow: visible;
		clip: auto;
		background: transparent;
		font-size: 0.68rem;
		letter-spacing: 0.08em;
	}

	.theme-282-header .site-brand {
		position: absolute;
		left: 50%;
		top: calc(50% + (env(safe-area-inset-top) / 2));
		width: 46px;
		height: 46px;
		max-width: 46px;
		transform: translate(-50%, -50%);
	}

	.theme-282-header .site-brand .custom-logo-link,
	.theme-282-header .site-brand img,
	.theme-282-header .site-brand .custom-logo {
		width: 46px;
		height: 46px;
		max-width: 46px;
		max-height: 46px;
	}

	.theme-282-header .site-brand .brand-mark {
		width: 42px;
		height: 42px;
		font-size: 0.66rem;
	}

	.theme-282-hero {
		height: auto;
		min-height: 100svh;
	}

	@supports (min-height: 100dvh) {
		.theme-282-hero {
			min-height: 100dvh;
		}
	}

	.theme-282-hero-image img {
		height: calc(100% + 56px);
		object-position: 56% center;
	}

	.theme-282-hero::after {
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.04)),
			linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.08) 38%, rgba(5, 5, 5, 0.82) 100%);
	}

	.theme-282-hero-content {
		align-content: end;
		min-height: 100svh;
		padding-top: calc(96px + env(safe-area-inset-top));
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	@supports (min-height: 100dvh) {
		.theme-282-hero-content {
			min-height: 100dvh;
		}
	}

	.theme-282-hero-copy {
		max-width: 100%;
	}

	.theme-282-hero .kicker {
		margin-bottom: 18px;
		font-size: 0.76rem;
		letter-spacing: 0.12em;
	}

	.theme-282-hero h1 {
		max-width: 7.4em;
		margin-bottom: 18px;
		font-size: clamp(2.82rem, 11.2vw, 3.78rem);
		line-height: 0.94;
	}

	.theme-282-hero .hero-text {
		max-width: 28em;
		font-size: clamp(0.94rem, 4.15vw, 1.04rem);
		line-height: 1.46;
	}

	.theme-282-hero-meta {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		max-width: 280px;
		margin-top: 28px;
		font-size: 0.66rem;
		letter-spacing: 0.08em;
	}

	.theme-282-hero-meta span {
		min-width: 0;
		padding: 8px 0;
		border-top: 1px solid rgba(247, 247, 241, 0.26);
	}

	.theme-282-hero-meta span:last-child {
		border-bottom: 1px solid rgba(247, 247, 241, 0.26);
	}

	.hero-scroll {
		right: 20px;
		bottom: calc(24px + env(safe-area-inset-bottom));
		width: 38px;
		height: 58px;
	}

	.hero-scroll::before {
		height: 42px;
	}

	.hero-scroll::after {
		bottom: 2px;
		width: 14px;
		height: 14px;
	}

	.production-collab-section {
		padding-block: 72px;
	}

	.production-collab-copy h2 {
		max-width: 100%;
		font-size: clamp(2.45rem, 11vw, 3.45rem);
		line-height: 0.98;
	}

	.production-collab-copy p,
	.production-collab-panel p {
		font-size: 0.98rem;
		line-height: 1.5;
	}

	.production-collab-copy .production-proof {
		margin-top: 20px;
	}

	.production-collab-items li {
		grid-template-columns: 34px minmax(0, 1fr);
		min-height: 48px;
		font-size: 0.74rem;
	}
}

@media (max-width: 420px) {
	.theme-282-hero h1 {
		font-size: clamp(2.55rem, 10.7vw, 3.2rem);
	}

	.theme-282-hero .hero-text {
		font-size: 0.94rem;
	}

	.theme-282-hero-meta {
		max-width: 250px;
	}
}
/* Absolute true EOF: unified heading system across the home page. */
.intro-statement,
.theme-282-section-title,
.section-heading,
.section-heading.product-heading,
.process-intro,
.about-copy,
.contact-cta .cta-grid > div:first-child {
	display: block;
	justify-items: start;
	text-align: left;
}

.theme-282-section-title,
.section-heading,
.section-heading.product-heading {
	margin-bottom: clamp(28px, 3.4vw, 46px);
	padding-bottom: 0;
	border-bottom: 0;
}

.intro-statement .kicker,
.theme-282-section-title .kicker,
.section-heading .kicker,
.section-heading.product-heading .kicker,
.process-intro .kicker,
.about-copy .kicker,
.contact-cta .kicker {
	display: block;
	margin: 0 0 20px;
	color: var(--code-accent);
	text-align: left;
}

.intro-statement h2,
.theme-282-section-title h2,
.section-heading h2,
.section-heading.product-heading h2,
.process-intro h2,
.about-copy h2,
.contact-cta h2 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(3.2rem, 6.1vw, 5.8rem);
	line-height: 0.95;
	text-align: left;
}

.theme-282-section-title p,
.section-heading p,
.section-heading.product-heading p,
.process-intro p,
.about-copy p,
.contact-cta p {
	max-width: 720px;
	margin-top: 22px;
	text-align: left;
}

@media (max-width: 760px) {
	.theme-282-section-title,
	.section-heading,
	.section-heading.product-heading {
		margin-bottom: 24px;
	}

	.intro-statement .kicker,
	.theme-282-section-title .kicker,
	.section-heading .kicker,
	.section-heading.product-heading .kicker,
	.process-intro .kicker,
	.about-copy .kicker,
	.contact-cta .kicker {
		margin-bottom: 14px;
	}

	.intro-statement h2,
	.theme-282-section-title h2,
	.section-heading h2,
	.section-heading.product-heading h2,
	.process-intro h2,
	.about-copy h2,
	.contact-cta h2 {
		max-width: 100%;
		font-size: clamp(2.25rem, 10.5vw, 3.35rem);
		line-height: 0.98;
	}

	.theme-282-section-title p,
	.section-heading p,
	.section-heading.product-heading p,
	.process-intro p,
	.about-copy p,
	.contact-cta p {
		margin-top: 16px;
	}
}

/* Absolute true EOF: production block matches services; mobile work titles toned down. */
.production-collab-section.theme-282-services {
	background: #050505;
	color: #f7f7f1;
}

.production-collab-section .production-collab-head {
	display: block;
	margin-bottom: clamp(28px, 3.4vw, 46px);
	padding-bottom: 0;
	border-bottom: 0;
	text-align: left;
}

.production-collab-section .production-collab-head .kicker {
	display: block;
	margin: 0 0 20px;
	color: var(--code-accent);
	text-align: left;
}

.production-collab-section .production-collab-head h2 {
	max-width: 1000px;
	margin: 0;
	font-size: clamp(3.2rem, 6.1vw, 5.8rem);
	line-height: 0.95;
	text-align: left;
}

.production-collab-section .production-collab-list {
	border-top: 1px solid rgba(244, 241, 232, 0.18);
}

.production-collab-section .production-collab-row {
	display: grid;
	grid-template-columns: 160px minmax(220px, 0.48fr) minmax(260px, 0.72fr);
	gap: 28px;
	padding: 28px 0;
	border-bottom: 1px solid rgba(244, 241, 232, 0.18);
	background: transparent;
}

.production-collab-section .production-collab-row span {
	color: var(--code-accent);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.production-collab-section .production-collab-row h3 {
	margin: 0;
	text-transform: uppercase;
}

.production-collab-section .production-collab-row p {
	margin: 0;
	color: rgba(247, 247, 241, 0.72);
}

@media (max-width: 980px) {
	.production-collab-section .production-collab-row {
		grid-template-columns: 132px minmax(200px, 0.52fr) minmax(240px, 0.7fr);
	}
}

@media (max-width: 760px) {
	.production-collab-section {
		padding-block: 56px;
	}

	.production-collab-section .production-collab-head {
		display: block;
		margin-bottom: 24px;
		padding-bottom: 0;
		border-bottom: 0;
	}

	.production-collab-section .production-collab-row {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		padding: 20px 0;
	}

	.production-collab-section .production-collab-row h3 {
		font-size: 1.28rem;
		line-height: 1.05;
	}

	.works-section .work-card-body,
	.work-card-body {
		padding: 14px 62px 14px 14px;
	}

	.works-section .work-card h3,
	.work-card h3 {
		max-width: 12em;
		font-size: clamp(1.12rem, 5.4vw, 1.52rem);
		line-height: 1.02;
	}

	.works-section .video-launcher,
	.work-card .video-launcher {
		right: 12px;
		bottom: 12px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 420px) {
	.works-section .work-card h3,
	.work-card h3 {
		font-size: clamp(1.06rem, 5vw, 1.34rem);
	}
}

/* Absolute true EOF: mobile contact CTA without framed box. */
@media (max-width: 760px) {
	.contact-cta .cta-grid,
	.cta-grid {
		padding: 0;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.contact-cta .contact-mini-log span {
		max-width: 100%;
	}
}

/* Absolute true EOF: mobile menu contrast and contact breathing room. */
@media (max-width: 760px) {
	.primary-nav ul {
		left: 0;
		right: 0;
		width: 100vw;
		background:
			linear-gradient(90deg, rgba(5, 5, 5, 0.985), rgba(5, 5, 5, 0.94)),
			radial-gradient(circle at 82% 18%, rgba(201, 149, 40, 0.12), transparent 25rem),
			repeating-linear-gradient(90deg, rgba(247, 247, 241, 0.018) 0 1px, transparent 1px 7px);
		backdrop-filter: blur(18px);
	}

	.primary-nav li {
		background: rgba(5, 5, 5, 0.18);
	}

	.contact-cta .cta-grid,
	.contact-page .contact-grid {
		width: min(calc(100% - 48px), var(--container));
		margin-inline: auto;
	}
}

/* Absolute true EOF: contact page form is not a card on mobile. */
@media (max-width: 760px) {
	.contact-page .contact-grid {
		width: min(calc(100% - 48px), var(--container));
		margin-inline: auto;
	}

	.contact-page .contact-form {
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
	}

	.contact-page .form-row.two,
	.contact-page .form-row.three {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}
}

/* Absolute true EOF: postproduction block and landing page. */
.ghost-teaser-section,
.ghost-page-hero,
.ghost-proof-section,
.ghost-services-section,
.ghost-image-strip,
.ghost-editorial-section {
	background: #050505;
	color: #f7f7f1;
}

.ghost-teaser {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.36fr);
	gap: clamp(36px, 6vw, 96px);
	align-items: end;
	min-height: clamp(560px, 78vh, 820px);
	padding-block: clamp(96px, 14vw, 180px);
}

.ghost-teaser .kicker,
.ghost-page .kicker {
	color: var(--code-accent);
}

.ghost-teaser h2,
.ghost-page h1,
.ghost-proof-copy h2 {
	max-width: 1060px;
	margin: 0;
	font-size: clamp(4rem, 9vw, 9.6rem);
	line-height: 0.88;
	letter-spacing: 0;
	text-align: left;
}

.ghost-teaser p,
.ghost-page-copy p,
.ghost-proof-text p,
.ghost-service-row p,
.ghost-editorial-section p {
	max-width: 760px;
	color: rgba(247, 247, 241, 0.72);
}

.ghost-teaser-lead,
.ghost-page-lead {
	margin-top: clamp(26px, 3vw, 42px);
	color: #f7f7f1 !important;
	font-size: clamp(1.45rem, 2.25vw, 2.45rem);
	line-height: 1.08;
}

.ghost-teaser .button {
	margin-top: 24px;
}

.ghost-signal-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(247, 247, 241, 0.26);
}

.ghost-signal-list li {
	padding: 20px 0;
	border-bottom: 1px solid rgba(247, 247, 241, 0.26);
	color: #f7f7f1;
	font-family: var(--font-mono);
	font-size: clamp(0.85rem, 1.1vw, 1rem);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghost-page-hero {
	min-height: 100svh;
	padding-top: clamp(132px, 16vw, 190px);
}

.ghost-page-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.42fr);
	gap: clamp(40px, 7vw, 110px);
	align-items: end;
}

.ghost-page-copy h1 {
	font-size: clamp(4.2rem, 8.7vw, 9.4rem);
}

.ghost-page-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.ghost-page-visual {
	position: relative;
	overflow: hidden;
	min-height: clamp(420px, 54vw, 680px);
	border: 1px solid rgba(247, 247, 241, 0.16);
	background: #0b0b0b;
}

.ghost-page-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.18) contrast(1.12);
	opacity: 0.86;
}

.ghost-page-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.8)),
		repeating-linear-gradient(90deg, rgba(247, 247, 241, 0.025) 0 1px, transparent 1px 7px);
	pointer-events: none;
}

.ghost-page-log {
	position: absolute;
	right: 22px;
	bottom: 22px;
	left: 22px;
	z-index: 1;
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ghost-page-log li {
	padding-top: 10px;
	border-top: 1px solid rgba(247, 247, 241, 0.34);
	color: var(--code-accent);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghost-proof-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.54fr);
	gap: clamp(34px, 6vw, 92px);
	align-items: start;
	padding-block: clamp(92px, 12vw, 160px);
	border-top: 1px solid rgba(247, 247, 241, 0.16);
}

.ghost-proof-copy h2 {
	font-size: clamp(3.4rem, 6.8vw, 7rem);
}

.ghost-service-list {
	border-top: 1px solid rgba(247, 247, 241, 0.18);
}

.ghost-service-row {
	display: grid;
	grid-template-columns: 150px minmax(220px, 0.48fr) minmax(260px, 0.76fr);
	gap: 28px;
	padding: 30px 0;
	border-bottom: 1px solid rgba(247, 247, 241, 0.18);
}

.ghost-service-row span {
	color: var(--code-accent);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghost-service-row h2 {
	margin: 0;
	font-size: clamp(1.7rem, 2.4vw, 2.55rem);
	line-height: 0.98;
	text-transform: uppercase;
}

.ghost-service-row p {
	margin: 0;
}

.ghost-image-grid {
	display: grid;
	grid-template-columns: 1fr 1.18fr 1fr;
	gap: 14px;
	padding-block: clamp(80px, 10vw, 140px);
}

.ghost-image-grid figure {
	overflow: hidden;
	margin: 0;
	aspect-ratio: 1 / 1;
	background: #0b0b0b;
}

.ghost-image-grid figure:nth-child(2) {
	margin-top: clamp(36px, 5vw, 72px);
}

.ghost-image-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.08) contrast(1.08);
}

.ghost-editorial-section .narrow-content {
	max-width: 980px;
}

.ghost-final-cta {
	border-top: 1px solid rgba(247, 247, 241, 0.16);
}

@media (max-width: 980px) {
	.ghost-teaser,
	.ghost-page-hero-grid,
	.ghost-proof-grid {
		grid-template-columns: 1fr;
	}

	.ghost-page-visual {
		min-height: clamp(360px, 72vw, 560px);
	}

	.ghost-service-row {
		grid-template-columns: 128px minmax(180px, 0.52fr) minmax(220px, 0.7fr);
	}
}

@media (max-width: 760px) {
	.ghost-teaser {
		min-height: auto;
		padding-block: 64px;
	}

	.ghost-teaser h2,
	.ghost-page h1,
	.ghost-proof-copy h2 {
		font-size: clamp(3rem, 14vw, 5rem);
		line-height: 0.92;
	}

	.ghost-page-hero {
		min-height: auto;
		padding-top: 132px;
	}

	.ghost-page-copy p,
	.ghost-proof-text p,
	.ghost-service-row p,
	.ghost-editorial-section p {
		font-size: 1.02rem;
	}

	.ghost-page-actions {
		display: grid;
	}

	.ghost-service-row {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 24px 0;
	}

	.ghost-service-row h2 {
		font-size: clamp(1.5rem, 8vw, 2.2rem);
	}

	.ghost-image-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		padding-block: 56px;
	}

	.ghost-image-grid figure:nth-child(2) {
		margin-top: 0;
	}

	.ghost-page-visual {
		min-height: 420px;
	}
}

/* Absolute true EOF: language switcher and theme-matched postproduction block. */
.language-switcher {
	position: absolute;
	top: 50%;
	right: clamp(118px, 9vw, 168px);
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transform: translateY(-50%);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.language-switcher a {
	color: rgba(247, 247, 241, 0.58);
	text-decoration: none;
	transition: color 160ms ease;
}

.language-switcher a + a::before {
	content: "/";
	margin-right: 7px;
	color: rgba(247, 247, 241, 0.32);
}

.language-switcher a:hover,
.language-switcher a.is-active {
	color: #f7f7f1;
}

.ghost-teaser-section .production-collab-head p {
	max-width: 760px;
	margin-top: 24px;
	color: rgba(247, 247, 241, 0.72);
}

.ghost-teaser-section .production-collab-head .intro-actions {
	margin-top: 26px;
}

.ghost-teaser-section .production-collab-row h3 {
	max-width: 980px;
}

.ghost-services-section.theme-282-services,
.ghost-examples-section.theme-282-services {
	background: #050505;
	color: #f7f7f1;
}

.ghost-image-hero {
	min-height: calc(100vh - 72px);
}

.ghost-image-hero .button {
	margin-top: 12px;
}

@media (max-width: 980px) {
	.language-switcher {
		right: clamp(104px, 12vw, 136px);
	}

	.ghost-teaser-section .production-collab-row {
		grid-template-columns: 132px minmax(180px, 0.55fr) minmax(220px, 0.75fr);
	}
}

@media (max-width: 760px) {
	.language-switcher {
		position: fixed;
		top: 28px;
		right: 18px;
		z-index: 190;
		transform: none;
		gap: 5px;
		font-size: 0.58rem;
		letter-spacing: 0.07em;
		line-height: 1;
		text-shadow: 0 1px 10px rgba(0, 0, 0, 0.58);
	}

	.language-switcher a + a::before {
		margin-right: 5px;
	}

	.ghost-teaser-section .production-collab-row {
		grid-template-columns: minmax(0, 1fr);
	}

	.ghost-image-hero {
		min-height: 100svh;
	}

	.ghost-image-hero .theme-282-hero-content {
		min-height: 100svh;
	}
}

/* Absolute true EOF: compact centered mobile menu. */
@media (max-width: 760px) {
	.primary-nav ul {
		display: grid;
		align-content: center;
		justify-items: center;
		gap: 6px;
		width: 100vw;
		height: 100svh;
		min-height: 100svh;
		padding: 92px 28px 72px;
	}

	.primary-nav li {
		width: min(100%, 420px);
		text-align: center;
		background: transparent;
	}

	.primary-nav a {
		padding: 10px 0;
		font-size: clamp(2rem, 10vw, 3rem);
		line-height: 1.04;
		text-align: center;
	}
}

.before-after-card .meta-label {
	color: var(--code-accent);
}

/* Absolute true EOF: quiet footer privacy link. */
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.footer-privacy-link {
	color: var(--muted-2);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 160ms ease;
}

.footer-privacy-link:hover {
	color: var(--code-accent);
}

@media (max-width: 760px) {
	.footer-bottom {
		align-items: flex-start;
		justify-content: flex-start;
	}
}
