@font-face {
	font-family: "DM Serif Display";
	src: url("../fonts/dm-serif-display-latin-ext-400-normal.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin-ext-400-normal.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin-ext-500-normal.woff2") format("woff2");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin-ext-700-normal.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
	font-display: swap;
}

:root {
	--paper: #f5f0e7;
	--paper-bright: #faf7f1;
	--ink: #171713;
	--ink-soft: #56554d;
	--line: #c7c0b2;
	--red: #b72017;
	--red-dark: #8e1711;
	--olive: #5d6043;
	--serif: "DM Serif Display", Georgia, serif;
	--sans: "Manrope", Arial, sans-serif;
	--shell: min(1320px, calc(100% - 96px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

body.nav-open {
	overflow: hidden;
}

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

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

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

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

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--ink);
	color: #fff;
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.archive-site {
	min-width: 0;
	overflow-x: hidden;
}

.archive-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 9px max(48px, calc((100% - 1320px) / 2));
	border-bottom: 1px solid var(--line);
	background: #eee9df;
	color: #39382f;
	font-size: 12px;
	letter-spacing: .02em;
}

.archive-bar p {
	display: flex;
	gap: 8px;
	margin: 0;
}

.archive-bar span:first-child {
	font-weight: 700;
}

.site-header {
	position: relative;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: var(--shell);
	min-height: 106px;
	margin: 0 auto;
	border-bottom: 1px solid var(--line);
}

.brand img {
	width: min(320px, 28vw);
	height: auto;
}

.site-navigation {
	display: flex;
	align-items: center;
	gap: clamp(26px, 3vw, 52px);
	font-size: 15px;
	font-weight: 500;
}

.site-navigation a,
.site-footer a,
.compact-link,
.text-link {
	position: relative;
}

.site-navigation a::after,
.site-footer a::after,
.text-link::after {
	position: absolute;
	right: 0;
	bottom: -6px;
	left: 0;
	height: 1px;
	background: var(--red);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.site-navigation a:hover::after,
.site-footer a:hover::after,
.text-link:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.menu-button {
	display: none;
	width: 48px;
	height: 48px;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 28px;
}

.hero {
	display: grid;
	grid-template-columns: minmax(430px, .95fr) minmax(0, 1.25fr);
	width: var(--shell);
	min-height: 620px;
	margin: 0 auto;
	border-bottom: 1px solid var(--line);
}

.hero-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 72px 48px 80px 0;
}

.eyebrow,
.meta {
	margin: 0 0 20px;
	color: var(--red);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.featured-copy h3,
.team-copy h2 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -.025em;
}

.hero h1 {
	font-size: clamp(52px, 4vw, 68px);
	line-height: .96;
}

.hero h1 span {
	display: block;
}

.title-mark {
	width: 52px;
	height: 2px;
	margin: 28px 0 24px;
	background: var(--red);
}

.hero-intro {
	max-width: 36ch;
	margin: 0;
	color: var(--ink-soft);
	font-size: 16px;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 36px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 54px;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button-primary {
	background: var(--red);
	color: #fff;
}

.button-primary:hover {
	background: var(--red-dark);
	transform: translateY(-2px);
}

.text-link {
	font-size: 13px;
	font-weight: 500;
}

.hero-media {
	position: relative;
	min-width: 0;
	padding: 0 0 90px;
}

.hero-media figure {
	position: relative;
	height: 100%;
	min-height: 540px;
	margin: 0;
	overflow: hidden;
}

.hero-media figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
}

.hero-media figcaption,
.featured-image > span {
	position: absolute;
	right: 16px;
	bottom: 14px;
	padding: 5px 8px;
	background: rgb(20 20 17 / 72%);
	color: #fff;
	font-size: 9px;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.production-note {
	position: absolute;
	top: 74px;
	left: -84px;
	z-index: 2;
	margin: 0;
	color: var(--red);
	font-family: var(--serif);
	font-size: 24px;
	font-style: italic;
	line-height: 1.05;
	transform: rotate(-5deg);
}

.filmstrip {
	position: absolute;
	right: -56px;
	bottom: 22px;
	z-index: 3;
	width: min(780px, 78%);
	max-width: none;
	filter: drop-shadow(0 14px 15px rgb(23 23 19 / 19%));
	transform: rotate(-4deg);
}

.section-shell {
	width: var(--shell);
	margin: 0 auto;
}

.archive-index {
	padding: 68px 0 64px;
	border-bottom: 1px solid var(--line);
}

.section-heading {
	display: grid;
	grid-template-columns: auto minmax(50px, 1fr) auto;
	align-items: center;
	gap: 24px;
	margin-bottom: 34px;
}

.section-heading h2 {
	font-size: clamp(36px, 4vw, 56px);
	line-height: 1;
}

.section-line {
	height: 1px;
	background: var(--line);
}

.compact-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--red);
	font-size: 12px;
	font-weight: 700;
}

.compact-link i,
.button i,
.archive-teaser i {
	transition: transform 180ms ease;
}

.compact-link:hover i,
.button:hover i,
.archive-teaser:hover i {
	transform: translateX(4px);
}

.featured-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(240px, .72fr) minmax(280px, .88fr);
	align-items: stretch;
}

.featured-image {
	position: relative;
	min-height: 350px;
	overflow: hidden;
}

.featured-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.featured-image:hover img {
	transform: scale(1.025);
}

.featured-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 36px 40px;
	border-right: 1px solid var(--line);
}

.featured-copy .meta {
	margin-bottom: 12px;
	color: var(--olive);
	letter-spacing: .03em;
	text-transform: none;
}

.featured-copy h3 {
	font-size: clamp(38px, 3.5vw, 58px);
	line-height: 1;
}

.featured-copy > p:not(.meta) {
	max-width: 34ch;
	margin: 24px 0 30px;
	color: var(--ink-soft);
	font-size: 14px;
}

.archive-teasers {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 24px;
	padding-left: 40px;
}

.archive-teaser {
	display: grid;
	grid-template-columns: 132px 1fr;
	align-items: center;
	gap: 18px;
}

.archive-teaser + .archive-teaser {
	padding-top: 24px;
	border-top: 1px solid var(--line);
}

.archive-teaser img {
	width: 132px;
	aspect-ratio: 1.35;
	object-fit: cover;
}

.archive-teaser span {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.archive-teaser strong {
	font-family: var(--serif);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.05;
}

.archive-teaser small {
	margin-top: 5px;
	color: var(--olive);
	font-size: 11px;
}

.archive-teaser em {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 12px;
	color: var(--red);
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

.team-story {
	display: grid;
	grid-template-columns: minmax(300px, .85fr) minmax(0, 1.35fr);
	gap: 56px;
	align-items: center;
	padding: 48px 0 72px;
}

.team-copy {
	padding: 24px 0;
}

.team-copy .eyebrow {
	margin-bottom: 14px;
}

.team-copy h2 {
	font-size: clamp(40px, 4.2vw, 64px);
	line-height: 1;
}

.team-copy > p:not(.eyebrow) {
	max-width: 48ch;
	margin: 24px 0 28px;
	color: var(--ink-soft);
	font-size: 14px;
}

.team-image {
	margin: 0;
}

.team-image img {
	width: 100%;
	max-height: 420px;
	object-fit: cover;
	object-position: center 38%;
}

.site-footer {
	display: grid;
	grid-template-columns: 1.2fr 1fr auto auto;
	gap: 32px;
	align-items: end;
	padding: 36px 0 44px;
	border-top: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 11px;
}

.site-footer strong {
	color: var(--red);
	font-family: var(--serif);
	font-size: 26px;
	font-weight: 400;
}

.site-footer p {
	margin: 4px 0 0;
}

.site-footer nav {
	display: flex;
	gap: 22px;
}

.legacy-credit a {
	color: var(--red);
}

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

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

@media (max-width: 1080px) {
	:root {
		--shell: min(100% - 48px, 980px);
	}

	.archive-bar {
		padding-inline: 24px;
	}

	.hero {
		grid-template-columns: minmax(380px, .95fr) minmax(0, 1.15fr);
	}

	.hero-copy {
		padding-right: 32px;
	}

	.production-note {
		display: none;
	}

	.featured-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(250px, .85fr);
	}

	.archive-teasers {
		grid-column: 1 / -1;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		gap: 32px;
		padding: 32px 0 0;
	}

	.archive-teaser + .archive-teaser {
		padding-top: 0;
		padding-left: 32px;
		border-top: 0;
		border-left: 1px solid var(--line);
	}

	.site-footer {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 760px) {
	:root {
		--shell: calc(100% - 32px);
	}

	.archive-bar {
		align-items: flex-start;
		padding: 9px 16px;
		font-size: 10px;
		line-height: 1.35;
	}

	.archive-bar p:first-child {
		max-width: 260px;
		flex-wrap: wrap;
		gap: 2px 5px;
	}

	.archive-date {
		display: none !important;
	}

	.site-header {
		min-height: 72px;
	}

	.brand img {
		width: 220px;
	}

	.menu-button {
		display: grid;
		place-items: center;
	}

	.site-navigation {
		position: absolute;
		top: 72px;
		right: -16px;
		left: -16px;
		display: grid;
		gap: 0;
		padding: 10px 16px 22px;
		border-bottom: 1px solid var(--line);
		background: var(--paper-bright);
		box-shadow: 0 16px 30px rgb(24 22 18 / 12%);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.nav-open .site-navigation {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-navigation a {
		display: flex;
		min-height: 48px;
		padding: 13px 4px;
		align-items: center;
		border-bottom: 1px solid var(--line);
		font-family: var(--serif);
		font-size: 24px;
	}

	.site-navigation a:last-child {
		border-bottom: 0;
	}

	.hero {
		display: flex;
		min-height: 0;
		flex-direction: column;
		padding-bottom: 0;
	}

	.hero-media {
		order: 1;
		margin-inline: -16px;
		padding-bottom: 34px;
	}

	.hero-media figure {
		min-height: 260px;
		height: 260px;
		max-height: none;
	}

	.hero-media figure > img {
		object-position: 69% center;
		transform: scale(1.12);
	}

	.hero-media figcaption {
		right: 10px;
		bottom: 9px;
		font-size: 8px;
	}

	.filmstrip {
		right: -60px;
		bottom: 7px;
		width: 132%;
	}

	.hero-copy {
		order: 2;
		padding: 28px 0 38px;
	}

	.hero-copy .eyebrow {
		display: none;
	}

	.hero h1 {
		font-size: 36px;
		line-height: .98;
	}

	.hero h1 span {
		display: inline;
	}

	.title-mark {
		margin: 16px 0;
	}

	.hero-intro {
		font-size: 16px;
		line-height: 1.7;
	}

	.hero-actions {
		width: 100%;
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
		margin-top: 20px;
	}

	.button {
		width: 100%;
	}

	.text-link {
		align-self: center;
	}

	.archive-index {
		padding: 48px 0;
	}

	.section-heading {
		grid-template-columns: auto 1fr;
		gap: 16px;
		margin-bottom: 28px;
	}

	.section-heading h2 {
		font-size: 40px;
	}

	.section-heading .compact-link {
		grid-column: 1 / -1;
	}

	.featured-grid {
		display: block;
	}

	.featured-image {
		display: block;
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.featured-copy {
		padding: 24px 0 34px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.featured-copy h3 {
		font-size: 42px;
	}

	.featured-copy > p:not(.meta) {
		margin: 16px 0 24px;
		font-size: 16px;
		line-height: 1.7;
	}

	.archive-teasers {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
		padding-top: 20px;
	}

	.archive-teaser {
		grid-template-columns: 112px 1fr;
		gap: 14px;
		padding: 16px 0;
	}

	.archive-teaser + .archive-teaser {
		padding: 16px 0;
		border-top: 1px solid var(--line);
		border-left: 0;
	}

	.archive-teaser img {
		width: 112px;
	}

	.archive-teaser strong {
		font-size: 21px;
	}

	.team-story {
		display: flex;
		flex-direction: column;
		gap: 30px;
		padding: 46px 0 54px;
	}

	.team-copy {
		padding: 0;
	}

	.team-copy h2 {
		font-size: 44px;
	}

	.team-copy > p:not(.eyebrow) {
		font-size: 16px;
		line-height: 1.7;
	}

	.team-image {
		order: -1;
		margin-inline: -16px;
	}

	.team-image img {
		min-height: 260px;
		object-position: 48% center;
	}

	.site-footer {
		grid-template-columns: 1fr;
		gap: 22px;
		align-items: start;
		padding: 32px 0 38px;
	}

	.site-footer nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 12px;
	}

	.site-footer nav a {
		display: flex;
		min-height: 44px;
		align-items: center;
	}

	.legacy-credit a {
		display: inline-flex;
		min-height: 44px;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.brand img {
		width: min(205px, calc(100vw - 96px));
	}

	.hero h1 {
		font-size: clamp(34px, 9.2vw, 38px);
	}

	.section-heading h2,
	.featured-copy h3 {
		font-size: 36px;
	}

	.archive-teaser {
		grid-template-columns: minmax(92px, 112px) minmax(0, 1fr);
	}

	.team-copy h2 {
		font-size: 40px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}

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