:root {
	--bg: #0b0908;
	--bg-soft: #12100f;
	--surface: rgba(255, 250, 245, 0.03);
	--surface-strong: rgba(255, 250, 245, 0.06);
	--text: #f4ece7;
	--text-soft: rgba(244, 236, 231, 0.76);
	--line: rgba(244, 236, 231, 0.12);
	--line-strong: rgba(244, 236, 231, 0.2);
	--accent: #e31e24;
	--accent-soft: rgba(227, 30, 36, 0.18);
	--accent-glow: rgba(227, 30, 36, 0.32);
	--shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
	--radius: 0;
	--gutter: clamp(1.1rem, 4vw, 3.5rem);
	--section-y: clamp(4.5rem, 10vw, 8rem);
	--body: "Geist", "Inter", "Segoe UI", sans-serif;
	--display: "Fraunces", "Times New Roman", serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top, rgba(227, 30, 36, 0.14), transparent 28%),
		linear-gradient(180deg, #130f0e 0%, #0b0908 38%, #090807 100%);
	color: var(--text);
	font-family: var(--body);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

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

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

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

.site-shell {
	position: relative;
	min-height: 100vh;
	isolation: isolate;
}

.site-shell::before,
.site-shell::after,
.site-grain,
.site-scanlines {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
}

.site-shell::before {
	z-index: 0;
	background:
		radial-gradient(circle at 12% 24%, rgba(255, 255, 255, 0.12), transparent 18%),
		radial-gradient(circle at 88% 76%, rgba(255, 255, 255, 0.1), transparent 20%),
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.08) 0,
			rgba(255, 255, 255, 0.08) 2px,
			transparent 2px,
			transparent 9rem
		),
		repeating-linear-gradient(
			90deg,
			rgba(227, 30, 36, 0.12) 0,
			rgba(227, 30, 36, 0.12) 3px,
			transparent 3px,
			transparent 14rem
		),
		linear-gradient(90deg, rgba(227, 30, 36, 0.16), transparent 18%, transparent 82%, rgba(227, 30, 36, 0.16));
	opacity: 0.52;
	mix-blend-mode: screen;
}

.site-shell::after {
	z-index: 1;
	background:
		linear-gradient(
			90deg,
			transparent 0,
			transparent 10%,
			rgba(255, 255, 255, 0.08) 10.15%,
			transparent 10.35%,
			transparent 23%,
			rgba(255, 255, 255, 0.06) 23.15%,
			transparent 23.35%,
			transparent 76.65%,
			rgba(255, 255, 255, 0.06) 76.85%,
			transparent 77.05%,
			transparent 89.6%,
			rgba(255, 255, 255, 0.08) 89.75%,
			transparent 89.95%
		);
	opacity: 0.35;
}

.site-grain {
	z-index: 2;
	opacity: 0.12;
	background-image:
		radial-gradient(rgba(255, 255, 255, 0.22) 0.8px, transparent 0.8px),
		radial-gradient(rgba(255, 255, 255, 0.18) 0.6px, transparent 0.6px);
	background-size: 18px 18px, 24px 24px;
	background-position: 0 0, 9px 9px;
	mix-blend-mode: soft-light;
}

.site-scanlines {
	z-index: 3;
	opacity: 0.06;
	background-image: repeating-linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.04) 0,
		rgba(255, 255, 255, 0.04) 1px,
		transparent 1px,
		transparent 9px
	);
}

.site-header,
.site-footer {
	position: relative;
	z-index: 20;
}

.site-main {
	position: relative;
	z-index: 5;
}

.site-header {
	position: sticky;
	top: 0;
	backdrop-filter: blur(18px);
	background: rgba(11, 9, 8, 0.72);
	border-bottom: 1px solid var(--line);
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header__inner,
.site-footer__inner,
.section__frame {
	width: min(1180px, calc(100% - (var(--gutter) * 2)));
	margin: 0 auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.site-brand__mark {
	width: clamp(2.5rem, 4vw, 3.5rem);
	height: clamp(2.5rem, 4vw, 3.5rem);
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #fff;
}

.site-brand__text {
	font-family: var(--display);
	font-size: clamp(1rem, 1.1vw, 1.15rem);
	letter-spacing: 0.04em;
	color: rgba(244, 236, 231, 0.88);
	white-space: nowrap;
}

.site-nav {
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
	display: none;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(244, 236, 231, 0.72);
	white-space: nowrap;
	transition: color 180ms ease;
}

.site-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.2rem;
	height: 1px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 200ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
	color: rgba(255, 225, 229, 0.98);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
	transform: scaleX(1);
}

.section {
	padding: var(--section-y) 0;
	scroll-margin-top: 6rem;
}

.hero {
	padding-top: clamp(4.5rem, 10vw, 7rem);
	padding-bottom: clamp(5rem, 12vw, 9rem);
}

.hero__frame {
	display: grid;
	gap: 1.4rem;
	align-items: start;
	min-height: min(78vh, 52rem);
	padding-top: clamp(1rem, 4vw, 3rem);
	padding-bottom: clamp(1rem, 4vw, 3rem);
}

.eyebrow {
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: rgba(244, 236, 231, 0.54);
}

.display-title,
.section-heading h2,
.subsection__head h3 {
	font-family: var(--display);
	font-weight: 500;
	line-height: 0.98;
	margin: 0;
}

.display-title {
	font-size: clamp(3.7rem, 12vw, 8.8rem);
	letter-spacing: -0.05em;
	max-width: 10ch;
}

.display-title span {
	display: block;
	color: rgba(244, 236, 231, 0.92);
}

.display-title__accent {
	color: #e54550;
	text-shadow: 0 0 24px var(--accent-glow);
}

.hero__tagline {
	max-width: 46rem;
	margin: 0;
	font-size: clamp(1rem, 1.3vw, 1.25rem);
	line-height: 1.75;
	color: var(--text-soft);
}

.hero__tagline strong,
.section-heading .eyebrow,
.subsection__head .eyebrow,
.contact__label {
	color: rgba(227, 69, 80, 0.92);
}

.hero__actions,
.story__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
	padding-top: 0.75rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: 0.9rem 1.3rem;
	border: 1px solid transparent;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72rem;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--solid {
	background: var(--accent);
	color: #fff8f7;
}

.button--solid:hover,
.button--solid:focus-visible {
	background: #ff353c;
}

.button--ghost {
	border-color: var(--line-strong);
	color: var(--text);
	background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	border-color: var(--accent);
	color: var(--accent);
}

.section--story,
.section--work,
.section--contact {
	border-top: 1px solid var(--line);
}

.section__frame {
	padding-top: clamp(2rem, 3vw, 3rem);
	padding-bottom: clamp(2rem, 3vw, 3rem);
}

.section-heading {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.section-heading h2 {
	font-size: clamp(2.4rem, 5vw, 4.9rem);
	max-width: 12ch;
}

.story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.7fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: start;
}

.story__copy {
	display: grid;
	gap: 1.2rem;
	font-size: 1.05rem;
	line-height: 1.85;
	color: var(--text-soft);
}

.story__copy p {
	margin: 0;
	max-width: 66ch;
}

.story__aside {
	padding: 1.35rem;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
	box-shadow: var(--shadow);
}

.story__aside-label {
	margin: 0 0 0.75rem;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(244, 236, 231, 0.56);
}

.story__aside p:last-child {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.5rem, 2.2vw, 2.1rem);
	line-height: 1.2;
	color: var(--text);
}

.subsection + .subsection {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid var(--line);
}

.subsection__head {
	display: grid;
	gap: 0.7rem;
	margin-bottom: 1.5rem;
}

.subsection__head h3 {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	max-width: 18ch;
}

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

.poster-card {
	position: relative;
	grid-column: span 4;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0;
	border: 1px solid var(--line);
	background: transparent;
	overflow: hidden;
	cursor: pointer;
	text-align: left;
	transition: transform 200ms ease, border-color 200ms ease;
}

.poster-card:hover,
.poster-card:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(227, 30, 36, 0.55);
}

.poster-card img {
	flex: 1 1 auto;
	width: 100%;
	min-height: 100%;
	aspect-ratio: 2 / 3;
	object-fit: contain;
	object-position: center;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
		#0d0b0a;
	padding: 0.95rem;
	filter: saturate(0.96) contrast(1.04);
	transition: transform 500ms ease, filter 500ms ease;
}

.poster-card:hover img,
.poster-card:focus-visible img {
	transform: scale(1.02);
	filter: saturate(1.05) contrast(1.08);
}

.project-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 1.1rem;
}

.project-card {
	grid-column: span 4;
	display: grid;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.02);
	appearance: none;
	text-align: left;
	width: 100%;
	transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.project-card:hover,
.project-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(227, 30, 36, 0.42);
	background: rgba(255, 255, 255, 0.035);
}

.project-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #120f0e;
}

.project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.98) contrast(1.04);
	transition: transform 500ms ease, filter 500ms ease;
}

.project-card:hover .project-card__media img,
.project-card:focus-within .project-card__media img {
	transform: scale(1.03);
	filter: saturate(1.05) contrast(1.08);
}

.project-card__tag {
	position: absolute;
	right: 0.85rem;
	bottom: 0.85rem;
	padding: 0.42rem 0.65rem;
	border: 1px solid rgba(227, 30, 36, 0.45);
	background: rgba(11, 9, 8, 0.78);
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #ffe7e9;
}

.project-card__play {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	background: linear-gradient(180deg, rgba(11, 9, 8, 0.12), rgba(11, 9, 8, 0.45));
	color: #fff4f2;
	font-size: 0.72rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transition: opacity 200ms ease, background 200ms ease;
}

.project-card__play-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 4.7rem;
	height: 4.7rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(11, 9, 8, 0.58);
	box-shadow: 0 0 0 1px rgba(227, 30, 36, 0.32), 0 0 30px rgba(0, 0, 0, 0.3);
}

.project-card__play-icon::after {
	content: "";
	border-top: 0.7rem solid transparent;
	border-bottom: 0.7rem solid transparent;
	border-left: 1rem solid #fff;
	margin-left: 0.2rem;
}

.project-card__play-label {
	position: relative;
	z-index: 1;
	line-height: 1;
	padding-top: 0.15rem;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.project-card--video:hover .project-card__play,
.project-card--video:focus-visible .project-card__play {
	opacity: 1;
}

.project-card:disabled {
	cursor: default;
}

.project-card:disabled:hover {
	transform: none;
	border-color: var(--line);
	background: rgba(255, 255, 255, 0.02);
}

.project-card__body {
	display: grid;
	gap: 0.85rem;
}

.project-card__title-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.project-card__title {
	margin: 0;
	font-family: var(--display);
	font-size: clamp(1.35rem, 2vw, 2rem);
	line-height: 1.1;
	color: var(--text);
}

.project-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.45rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--line);
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(244, 236, 231, 0.68);
}

.project-card__meta-key {
	color: rgba(227, 30, 36, 0.92);
}

.logo-marquee {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.logo-marquee__track {
	display: flex;
	align-items: stretch;
	gap: 0.9rem;
	width: max-content;
	animation: logo-marquee 36s linear infinite;
	will-change: transform;
}

.logo-marquee:hover .logo-marquee__track,
.logo-marquee:focus-within .logo-marquee__track {
	animation-play-state: paused;
}

.logo-card {
	flex: 0 0 clamp(10.5rem, 14vw, 13.5rem);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 7rem;
	padding: 1rem;
	border: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.02);
}

.logo-card img {
	max-width: 100%;
	max-height: 4.4rem;
	object-fit: contain;
	filter: grayscale(0) saturate(1.12) contrast(1.04) !important;
	opacity: 1 !important;
	transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.logo-card:hover img,
.logo-card:focus-within img {
	filter: grayscale(0) saturate(1.18) contrast(1.06) !important;
	opacity: 1 !important;
	transform: scale(1.02);
}

@keyframes logo-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

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

.contact__card {
	min-width: 0;
	padding: 1.3rem;
	border: 1px solid var(--line);
	background: var(--surface);
	min-height: 8rem;
	display: grid;
	align-content: space-between;
	gap: 0.9rem;
}

.contact__label {
	margin: 0;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(227, 30, 36, 0.85);
}

.contact__card a,
.contact__card span {
	font-family: var(--display);
	font-size: clamp(1.3rem, 1.8vw, 2rem);
	line-height: 1.1;
	overflow-wrap: anywhere;
}

.contact__card a:hover,
.contact__card a:focus-visible {
	color: var(--accent);
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 1.5rem 0 2rem;
	background: rgba(6, 5, 5, 0.58);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
}

.site-brand--footer .site-brand__mark {
	width: 2.4rem;
	height: 2.4rem;
}

.site-footer__note {
	margin: 0;
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(244, 236, 231, 0.54);
}

.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 50;
	display: grid;
	place-items: center;
	padding: 1.25rem;
}

.lightbox[hidden] {
	display: none;
}

.lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(8px);
}

.lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.8rem;
	width: min(72rem, calc(100vw - 2rem));
	max-height: calc(100vh - 2rem);
	padding: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(11, 9, 8, 0.96);
	box-shadow: var(--shadow);
}

.lightbox__image {
	max-width: 100%;
	max-height: calc(100vh - 8rem);
	margin: 0 auto;
	object-fit: contain;
}

.lightbox__caption {
	margin: 0;
	font-size: 0.84rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(244, 236, 231, 0.66);
}

.lightbox__close {
	position: absolute;
	top: 0.4rem;
	right: 0.6rem;
	z-index: 2;
	border: 0;
	background: transparent;
	color: var(--text);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: grid;
	place-items: center;
	padding: 1.25rem;
}

.video-modal[hidden] {
	display: none;
}

.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
}

.video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(76rem, calc(100vw - 2rem));
	padding: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(11, 9, 8, 0.96);
	box-shadow: var(--shadow);
}

.video-modal__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
}

.video-modal__frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.video-modal__close {
	position: absolute;
	top: 0.35rem;
	right: 0.6rem;
	z-index: 2;
	border: 0;
	background: transparent;
	color: var(--text);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 980px) {
	.story__grid,
	.contact__grid {
		grid-template-columns: 1fr;
	}

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

	.project-card {
		grid-column: span 1;
	}

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

@media (max-width: 720px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner,
	.site-footer__inner {
		width: min(100%, calc(100% - (var(--gutter) * 1.2)));
	}

	.site-header__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-nav {
		width: 100%;
	}

	.site-nav__list {
		gap: 1.1rem;
	}

	.poster-grid {
		grid-template-columns: 1fr;
	}

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

	.poster-card img {
		padding: 0.45rem;
	}

	.project-card {
		padding: 0.75rem;
	}

	.logo-marquee {
		mask-image: none;
	}

	.logo-marquee__track {
		animation-duration: 28s;
	}

	.hero__frame {
		min-height: auto;
	}
}

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

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

	.reveal {
		opacity: 1;
		transform: none;
	}

	.logo-marquee__track {
		animation: none;
		transform: none;
	}

	.video-modal {
		padding: 0.75rem;
	}
}
