:root {
	--bg: #070706;
	--bg-soft: #10100e;
	--ink: #f3eee4;
	--ink-muted: #9c9486;
	--accent: #8f2a24;
	--gold: #c6a15a;
	--stone: #c9b89a;
	--line: rgba(243, 238, 228, 0.14);
	--font-mono: "IBM Plex Mono", ui-monospace, "Courier New", monospace;
	--font-serif: "Cormorant Garamond", "Times New Roman", serif;
	--wrap: 68rem;
	--wrap-wide: 92rem;
	--wrap-narrow: 42rem;
	--header-h: 4.25rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-mono);
	font-size: clamp(0.92rem, 0.85rem + 0.3vw, 1.02rem);
	font-weight: 300;
	line-height: 1.7;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 80;
	opacity: 0.045;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}

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

h1,
h2,
h3 {
	font-family: var(--font-serif);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: 0.01em;
	margin: 0 0 0.75rem;
}

h2 {
	font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
}

h3 {
	font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem);
}

p {
	margin: 0 0 1.1rem;
}

p:last-child {
	margin-bottom: 0;
}

.wrap {
	width: min(100% - 2.4rem, var(--wrap));
	margin-inline: auto;
}

.wrap--wide {
	width: min(100% - 2.4rem, var(--wrap-wide));
}

.wrap--narrow {
	width: min(100% - 2.4rem, var(--wrap-narrow));
}

.eyebrow {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 0.85rem;
}

.lead {
	font-family: var(--font-serif);
	font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.65rem);
	line-height: 1.45;
	font-weight: 400;
}

.lead--small {
	font-size: clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
	color: var(--ink-muted);
}

.lead--ruled {
	position: relative;
	max-width: 46rem;
	padding-left: 1.35rem;
	border-left: 1px solid rgba(198, 161, 90, 0.38);
}

.muted {
	color: var(--ink-muted);
}

.display {
	max-width: 36ch;
}

.quote {
	margin: 0;
}

.quote p {
	font-family: var(--font-serif);
	font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.6rem);
	font-style: italic;
	font-weight: 400;
	line-height: 1.3;
	color: var(--ink);
}

.signed {
	margin-top: 2rem;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.35rem;
	color: var(--gold);
}

.rule {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0 0 1.6rem;
	max-width: 12rem;
}

.rule--short {
	max-width: 7.5rem;
	margin: 1.6rem 0 1.5rem;
}

.rule::before,
.rule::after {
	content: "";
	height: 1px;
	flex: 1;
	background: linear-gradient(90deg, transparent, rgba(198, 161, 90, 0.55), transparent);
}

.rule-mark {
	flex: 0 0 8px;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(198, 161, 90, 0.75);
	transform: rotate(45deg);
}

.drop::first-letter {
	font-family: var(--font-serif);
	font-size: 3.15em;
	font-weight: 500;
	float: left;
	line-height: 0.78;
	padding: 0.08em 0.14em 0 0;
	color: var(--gold);
}

.pull {
	font-family: var(--font-serif);
	font-size: clamp(1.35rem, 1.15rem + 0.7vw, 1.85rem);
	font-style: italic;
	line-height: 1.35;
	color: var(--ink);
	padding: 0.35rem 0 0.35rem 1.25rem;
	border-left: 1px solid var(--gold);
	margin: 1.6rem 0;
}

.pull--open {
	position: relative;
	padding: 0.2rem 0 0.8rem;
	border-left: 0;
	margin: 0 0 2rem;
	font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.15rem);
	max-width: 28ch;
}

.pull--open::before {
	content: "“";
	display: block;
	font-family: var(--font-serif);
	font-size: 3.4rem;
	line-height: 0.7;
	color: var(--gold);
	margin-bottom: 0.4rem;
}

.panel {
	position: relative;
	margin-top: 3.5rem;
	padding: clamp(1.8rem, 4vw, 3rem);
	border: 1px solid var(--line);
	background:
		linear-gradient(180deg, rgba(16, 16, 14, 0.55), rgba(7, 7, 6, 0.2)),
		var(--bg);
	box-shadow: inset 0 1px 0 rgba(198, 161, 90, 0.08);
}

.panel::before,
.panel::after,
.chapter::before,
.chapter::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border-color: rgba(198, 161, 90, 0.55);
	border-style: solid;
	pointer-events: none;
}

.panel::before,
.chapter::before {
	top: -1px;
	left: -1px;
	border-width: 1px 0 0 1px;
}

.panel::after,
.chapter::after {
	right: -1px;
	bottom: -1px;
	border-width: 0 1px 1px 0;
}

.prose--split {
	columns: 2;
	column-gap: 2.75rem;
	column-rule: 1px solid var(--line);
}

.prose--split p {
	break-inside: avoid;
	margin-bottom: 1.15rem;
}

.prose--split .pull {
	column-span: all;
}

.prose--statement {
	position: relative;
}

.prose--statement::before,
.prose--statement::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	border: 1px solid rgba(198, 161, 90, 0.16);
}

.prose--statement::before {
	inset: auto -6% -14% auto;
	width: 16rem;
	height: 16rem;
}

.prose--statement::after {
	inset: auto -2.5% -9% auto;
	width: 10rem;
	height: 10rem;
	border-color: rgba(198, 161, 90, 0.1);
}

.section--statement {
	position: relative;
	overflow: hidden;
}

.section--statement::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.07;
	pointer-events: none;
	background-image: radial-gradient(circle at 20% 20%, rgba(198, 161, 90, 0.35) 0 1px, transparent 1.5px);
	background-size: 28px 28px;
}

.text-block {
	position: relative;
	padding-left: 1.35rem;
}

.text-block::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15rem;
	bottom: 0.2rem;
	width: 1px;
	background: linear-gradient(180deg, rgba(198, 161, 90, 0.5), rgba(198, 161, 90, 0.08));
}

.text-block p,
.chapter p,
.prose p,
.panel p {
	line-height: 1.85;
	color: #d2cbbd;
}

.chapter {
	position: relative;
	padding: 1.5rem 1.5rem 1.7rem;
	border: 1px solid var(--line);
	background: linear-gradient(180deg, rgba(16, 16, 14, 0.7), transparent 42%);
}

.chapter__num {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 1.15rem;
	color: var(--gold);
	letter-spacing: 0.12em;
	margin: 0 0 0.35rem;
}

.community .chapter {
	padding-top: 0;
}

.community .chapter .film-frame {
	margin: 0 -1.5rem 1.35rem;
	border-bottom: 1px solid var(--line);
}

.quote {
	position: relative;
}

.quote::before {
	content: "“";
	position: absolute;
	top: -0.55em;
	left: -0.05em;
	font-family: var(--font-serif);
	font-size: 4.2rem;
	line-height: 1;
	color: rgba(198, 161, 90, 0.28);
	pointer-events: none;
}

/* Header */
.site-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 40;
	height: var(--header-h);
	border-bottom: 1px solid transparent;
	transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
	background: rgba(7, 7, 6, 0.88);
	border-bottom-color: var(--line);
	backdrop-filter: blur(12px);
}

.site-header__inner {
	width: min(100% - 2rem, var(--wrap-wide));
	margin-inline: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

.site-logo {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.site-logo:hover {
	color: var(--ink);
}

.site-logo__title {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-logo__by {
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-muted);
}

.site-nav__list {
	display: flex;
	gap: 1.05rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav a {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
}

.nav-toggle {
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	padding: 0;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
	display: block;
	width: 1.2rem;
	height: 1px;
	background: currentColor;
	position: relative;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.nav-toggle__bars::before {
	top: -6px;
}

.nav-toggle__bars::after {
	top: 6px;
}

/* Hero */
.hero {
	position: relative;
	min-height: 100vh;
	min-height: 100svh;
	display: grid;
	place-items: end start;
	overflow: hidden;
	color: var(--ink);
}

.hero__media,
.hero__veil {
	position: absolute;
	inset: 0;
}

.hero__media {
	overflow: hidden;
}

.hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.85) contrast(1.05);
}

.hero__media img[data-parallax] {
	position: absolute;
	left: 0;
	top: -15%;
	width: 100%;
	height: 130%;
	transform: translate3d(0, var(--p, 0px), 0);
	will-change: transform;
}

.hero__veil {
	background:
		linear-gradient(180deg, rgba(7, 7, 6, 0.25) 0%, rgba(7, 7, 6, 0.08) 38%, rgba(7, 7, 6, 0.5) 68%, rgba(7, 7, 6, 0.92) 100%),
		linear-gradient(90deg, rgba(7, 7, 6, 0.32), transparent 58%);
}

.hero__content {
	position: relative;
	z-index: 2;
	padding: calc(var(--header-h) + 3rem) 0 6rem;
	width: min(100% - 2.4rem, var(--wrap-wide));
	margin-inline: auto;
}

.hero__kicker,
.hero__director {
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.hero__title {
	font-family: var(--font-mono);
	font-weight: 400;
	font-size: clamp(2.4rem, 1.2rem + 5vw, 5.4rem);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 0.55rem;
	line-height: 1.05;
}

.hero__credit {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35em 0.7em;
	margin: 0 0 1.6rem;
}

.hero__kicker {
	margin: 0;
	color: var(--ink);
}

.hero__director {
	margin: 0;
	color: var(--gold);
}

.hero__log {
	max-width: 36rem;
	color: var(--ink-muted);
	margin-bottom: 2rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	transform: translateX(-50%);
	width: 1.4rem;
	height: 2.2rem;
	border: 1px solid var(--line);
	border-radius: 999px;
}

.hero__scroll span {
	display: block;
	width: 3px;
	height: 3px;
	margin: 0.45rem auto 0;
	border-radius: 50%;
	background: var(--gold);
	animation: drop 1.8s ease infinite;
}

@keyframes drop {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	80% {
		transform: translateY(12px);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.hero--launch {
	place-items: center;
	text-align: center;
}

.hero--launch .hero__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-bottom: 5rem;
}

.hero--launch .hero__veil {
	background:
		linear-gradient(180deg, rgba(7, 7, 6, 0.48) 0%, rgba(7, 7, 6, 0.3) 42%, rgba(7, 7, 6, 0.8) 100%),
		linear-gradient(180deg, transparent, rgba(7, 7, 6, 0.62));
}

.hero--launch .hero__media img,
.hero--launch .hero__media img[data-parallax] {
	filter: saturate(0.82) contrast(1.05) brightness(0.78);
}

.hero__soon {
	margin: 1.4rem 0 0;
	font-family: var(--font-mono);
	font-size: clamp(0.72rem, 0.65rem + 0.35vw, 0.82rem);
	font-weight: 400;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold);
}

.launch-media__videos {
	margin-top: 2.5rem;
	padding-bottom: 1rem;
}

.launch-main .gallery-block {
	padding-top: 2rem;
}

.launch-press {
	padding-bottom: 1rem;
}

.launch-press .press-print {
	margin-top: 2rem;
}

.launch-masonry {
	columns: 4 16rem;
	column-gap: 0.4rem;
	margin-top: 2rem;
	padding-inline: 0.4rem;
}

.launch-masonry__item {
	display: block;
	width: 100%;
	margin: 0 0 0.4rem;
	padding: 0;
	border: 0;
	background: #000;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	break-inside: avoid;
}

.launch-masonry__item img,
.launch-masonry__item video {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.7s ease, filter 0.7s ease, opacity 0.4s ease;
	filter: saturate(0.88);
}

.launch-masonry__item--photo {
	cursor: zoom-in;
}

.launch-masonry__item--video video {
	opacity: 0.82;
}

.launch-masonry__item:hover img,
.launch-masonry__item:focus-visible img,
.launch-masonry__item:hover video,
.launch-masonry__item:focus-visible video {
	transform: scale(1.03);
	filter: saturate(1);
	opacity: 1;
}

.launch-masonry__item--vertical video {
	aspect-ratio: 9 / 16;
	object-fit: cover;
}

.launch-masonry__meta {
	position: absolute;
	left: 0.85rem;
	right: 0.85rem;
	bottom: 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	pointer-events: none;
	text-align: left;
}

.launch-masonry__meta span:last-child {
	font-family: var(--font-serif);
	font-size: clamp(1.05rem, 0.95rem + 0.35vw, 1.35rem);
	line-height: 1.15;
}

.launch-masonry__item--video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 45%, rgba(7, 7, 6, 0.82) 100%);
	pointer-events: none;
}

.launch-masonry__item--video .play {
	z-index: 1;
}

.launch-masonry__item--video .launch-masonry__meta {
	z-index: 1;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.55rem 1.25rem;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink);
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
}

.btn--gold {
	border-color: var(--gold);
	color: #1a1408;
	background: var(--gold);
}

.btn--gold:hover {
	color: #1a1408;
	filter: brightness(1.08);
}

.btn--ghost:hover {
	border-color: var(--ink);
	color: var(--ink);
}

/* Sections */
.section {
	padding: clamp(4.5rem, 8vw, 8rem) 0;
	scroll-margin-top: var(--header-h);
}

#citazione,
#otranto {
	scroll-margin-top: var(--header-h);
}

.section--dark {
	background: var(--bg);
}

.section--statement {
	background: var(--bg-soft);
}

.section--split {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	min-height: 72vh;
	padding: 0;
}

.section--reverse {
	grid-template-columns: 0.85fr 1.15fr;
}

.section--reverse .film-frame {
	order: 2;
}

.section__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vw, 4.5rem);
	background: var(--bg);
}

.section__copy .quote + p {
	margin-top: 1.75rem;
	color: var(--ink-muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	margin-top: 3rem;
}

.subject-block {
	max-width: 42rem;
	margin-inline: auto;
	margin-top: 3rem;
	text-align: center;
}

.subject-block .rule {
	margin-inline: auto;
}

.subject-block .text-block {
	text-align: left;
}

.sinossi-teaser {
	max-width: 46rem;
}

.sinossi-teaser__actions {
	margin: 2rem 0 0;
}

.music__role {
	margin: -0.4rem 0 0;
	color: var(--ink-muted);
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.music-copy {
	max-width: 42rem;
}

.music-copy .text-block {
	margin-inline: auto;
}

.chapter h3 {
	margin-bottom: 1rem;
}

.community {
	align-items: start;
}

.community .film-frame {
	aspect-ratio: 16 / 10;
}

.community .film-frame--contain {
	aspect-ratio: auto;
	min-height: 28rem;
}

.community article h3 {
	margin-top: 1.25rem;
}

#cast {
	border-top: 1px solid var(--line);
}

.theme-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.theme-list li {
	position: relative;
	font-family: var(--font-serif);
	font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.3rem);
	border-bottom: 1px solid var(--line);
	padding: 0.45rem 0 0.45rem 1.15rem;
}

.theme-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border: 1px solid var(--gold);
	border-radius: 50%;
	transform: translateY(-50%);
}

.film-frame {
	position: relative;
	margin: 0;
	background: #000;
	overflow: hidden;
	min-height: 0;
	aspect-ratio: 16 / 10;
}

.section--split .film-frame {
	aspect-ratio: auto;
	min-height: 100%;
	height: 100%;
}

.film-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.film-frame img[data-parallax] {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 130%;
	max-width: none;
	transform: translate3d(0, calc(-50% + var(--p, 0px)), 0);
}

.film-frame--contain {
	display: grid;
	place-items: center;
	background: #111;
	padding: 2rem;
}

.film-frame--contain img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.bleed-frame {
	margin: 2.5rem 0 0;
	overflow: hidden;
	background: transparent;
}

.bleed-frame img {
	width: 100%;
	height: auto;
	display: block;
}

.bleed-frame img[data-parallax] {
	transform: translate3d(0, var(--p, 0px), 0) scale(1.08);
	transform-origin: center center;
}

.bleed-frame figcaption {
	width: min(100% - 2.4rem, var(--wrap));
	margin: 0.75rem auto 0;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-muted);
}

.bleed-frame--live {
	margin: 2.5rem 0 0;
}

.bleed-frame--live img {
	width: 100%;
	height: auto;
	display: block;
	filter: saturate(1.05) contrast(1.04);
}

.prose p {
	color: #d8d1c4;
}

.page-main {
	padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.page-main--statement {
	background: var(--bg-soft);
}

.page-main--statement .prose--statement {
	padding-bottom: 2rem;
}

.page-main--personaggi {
	padding-bottom: 0;
}

.page-main--personaggi > .wrap:first-child {
	padding-bottom: 0;
}

.personaggi-block {
	padding-top: 0;
}

.personaggi-block#cast {
	border-top: 1px solid var(--line);
}

.page-main--gallery {
	padding-bottom: 0;
}

.page-main--gallery > .wrap:first-child {
	padding-bottom: 0;
}

.gallery-block {
	padding-top: 0;
}

.gallery-block#video {
	border-top: 1px solid var(--line);
}

/* Cast */
.cast-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.cast-card {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	overflow: hidden;
}

.cast-card--featured {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
}

.cast-card__media {
	position: relative;
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #000;
}

.cast-card--featured .cast-card__media {
	aspect-ratio: auto;
	min-height: 100%;
}

.cast-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.9);
	transition: transform 0.8s ease;
}

.cast-card:hover .cast-card__media img {
	transform: scale(1.04);
}

.cast-card__media img[data-parallax],
.cast-card__play img[data-parallax] {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 130%;
	max-width: none;
	transform: translate3d(0, calc(-50% + var(--p, 0px)), 0);
	transition: filter 0.8s ease;
}

.cast-card:hover .cast-card__media img[data-parallax],
.cast-card:hover .cast-card__play img[data-parallax] {
	transform: translate3d(0, calc(-50% + var(--p, 0px)), 0) scale(1.04);
}

.cast-card__play {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: #000;
	color: inherit;
	cursor: pointer;
}

.cast-card--has-video .cast-card__play .play {
	width: 3.25rem;
	height: 3.25rem;
	opacity: 0.92;
	background: rgba(7, 7, 6, 0.28);
}

.cast-card--featured .cast-card__play .play {
	width: 4rem;
	height: 4rem;
}

.cast-card__play:hover .play,
.cast-card__play:focus-visible .play {
	opacity: 1;
}

.cast-card__body {
	padding: 1.25rem 1.3rem 1.5rem;
}

.cast-card__actor {
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 0.25rem;
}

.cast-card__traits {
	font-style: italic;
	font-family: var(--font-serif);
	font-size: 1.05rem;
	color: var(--stone);
	margin-bottom: 0.85rem;
}

.cast-card__body p:last-child {
	color: var(--ink-muted);
	font-size: 0.88rem;
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.4rem;
	margin-top: 2rem;
	padding-inline: 0.4rem;
}

.gallery-item {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	background: #000;
	cursor: zoom-in;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease, filter 0.7s ease;
	filter: saturate(0.85);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
	transform: scale(1.05);
	filter: saturate(1);
}

.gallery-item img[data-parallax] {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 130%;
	max-width: none;
	transform: translate3d(0, calc(-50% + var(--p, 0px)), 0);
	transition: filter 0.7s ease;
}

.gallery-item:hover img[data-parallax],
.gallery-item:focus-visible img[data-parallax] {
	transform: translate3d(0, calc(-50% + var(--p, 0px)), 0) scale(1.05);
}

.gallery-item[hidden] {
	display: none;
}

.gallery-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.6rem;
}

.chip {
	margin: 0;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink-muted);
	font-family: var(--font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
}

.chip:hover,
.chip.is-active {
	color: var(--gold);
	border-color: var(--gold);
}

.gallery-credit {
	margin-top: 1.25rem;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
}

/* Video */
.section--video {
	position: relative;
	overflow: hidden;
}

.video-backdrop {
	position: absolute;
	inset: 0;
	opacity: 0.18;
}

.video-backdrop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.3);
}

.video-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 2.5rem;
}

.video-card--feature {
	grid-column: span 2;
}

.video-card--vertical {
	grid-row: span 2;
}

.video-card--feature .video-card__btn {
	height: 100%;
	min-height: 20rem;
	aspect-ratio: auto;
}

.video-card--vertical .video-card__btn {
	aspect-ratio: 9 / 16;
	height: 100%;
}

.video-card__btn,
.video-card__btn--soon {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid var(--line);
	background: #000;
	color: inherit;
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	text-align: left;
}

.video-card__btn--soon {
	cursor: default;
}

.video-card__btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	transition: opacity 0.4s ease, transform 0.7s ease;
}

.video-card__btn:hover img {
	opacity: 0.9;
	transform: scale(1.03);
}

.play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 4rem;
	height: 4rem;
	border: 1px solid var(--gold);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 53%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 8px 0 8px 13px;
	border-color: transparent transparent transparent var(--gold);
}

.play--muted {
	border-color: var(--line);
	opacity: 0.7;
}

.play--muted::after {
	border-color: transparent transparent transparent var(--ink-muted);
}

.video-card__meta {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.video-card__meta span:last-child {
	font-family: var(--font-serif);
	font-size: 1.35rem;
}

/* Rassegna stampa */
#stampa {
	background: var(--bg);
}

.press-print {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.press-feature {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--line);
	background: var(--bg-soft);
}

.press-feature__pages {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.25rem;
	padding: 0.4rem;
	background: #000;
}

.press-feature__page {
	margin: 0;
	padding: 0;
	border: 0;
	background: #000;
	cursor: zoom-in;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.press-feature__page.is-cover {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 11;
}

.press-feature__page img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.6s ease, opacity 0.4s ease;
	opacity: 0.88;
}

.press-feature__page:hover img,
.press-feature__page:focus-visible img {
	transform: scale(1.03);
	opacity: 1;
}

.press-feature__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.25rem 1.35rem 1.5rem;
}

.press-feature .press-card__out {
	margin-top: auto;
	padding-top: 1rem;
}

.press-feature__date,
.press-card__date {
	margin: -0.4rem 0 0.7rem;
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-muted);
}

.press-feature h3,
.press-card h3 {
	font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.65rem);
}

.press-feature h3 {
	margin-bottom: 0.5rem;
}

.press-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.9rem;
	margin-top: 1.5rem;
}

.press-card {
	padding: 1.25rem 1.3rem 1.4rem;
	border: 1px solid var(--line);
	background: rgba(16, 16, 14, 0.45);
}

.press-card a {
	text-decoration: none;
}

.press-card h3 a:hover {
	color: var(--gold);
}

.press-card__out {
	margin-top: 1rem;
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.press-card__out a {
	color: var(--gold);
}

/* Footer / end */
.section--end {
	padding-bottom: 2rem;
}

.end-quote {
	padding-top: 3rem;
	text-align: center;
}

.end-quote .rule {
	margin-inline: auto;
	margin-bottom: 2rem;
}

.end-quote .quote::before {
	left: 50%;
	transform: translateX(-50%);
}

.site-footer {
	border-top: 1px solid var(--line);
	padding: 3rem 0 2.5rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1fr;
	gap: 2rem;
	align-items: start;
}

.site-footer__title {
	font-family: var(--font-mono);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin: 0 0 0.55rem;
}

.site-footer__credit {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35em 0.55em;
	margin: 0;
}

.site-footer__kicker {
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.site-footer__dir {
	color: var(--gold);
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0;
}

/* Lightbox + modal */
.lightbox,
.video-modal {
	position: fixed;
	inset: 0;
	z-index: 60;
	background: rgba(0, 0, 0, 0.94);
	display: grid;
	place-items: center;
	padding: 2rem;
}

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

.lightbox__figure {
	margin: 0;
	max-width: min(92vw, 1400px);
}

.lightbox__figure img {
	max-height: 82vh;
	width: auto;
	margin-inline: auto;
}

.lightbox__caption {
	margin-top: 0.75rem;
	text-align: center;
	color: var(--ink-muted);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lightbox__close,
.video-modal__close,
.lightbox__prev,
.lightbox__next {
	position: absolute;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	font-size: 2rem;
	line-height: 1;
}

.lightbox__close,
.video-modal__close {
	top: 1rem;
	right: 1.2rem;
}

.lightbox__prev {
	left: 1rem;
}

.lightbox__next {
	right: 1rem;
}

.video-modal__panel {
	width: min(100%, 72rem);
}

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

.video-frame.is-vertical {
	aspect-ratio: 9 / 16;
	width: min(100%, 28rem);
	max-height: 82vh;
	margin-inline: auto;
}

.video-frame iframe,
.video-frame video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

.video-frame iframe[hidden],
.video-frame video[hidden] {
	display: none;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	animation: rise 0.9s ease forwards;
	animation-play-state: paused;
}

.reveal.is-in {
	animation-play-state: running;
}

@keyframes rise {
	to {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 980px) {
	.hero__media img,
	.hero__media img[data-parallax] {
		object-position: 37% 50%;
	}

	.hero__veil {
		background:
			linear-gradient(180deg, rgba(7, 7, 6, 0.38) 0%, rgba(7, 7, 6, 0.1) 28%, rgba(7, 7, 6, 0.22) 48%, rgba(7, 7, 6, 0.55) 72%, rgba(7, 7, 6, 0.9) 100%);
	}

	.hero__content::before {
		content: "";
		position: absolute;
		inset: -0.4rem -1.2rem -2.6rem;
		background: linear-gradient(180deg, rgba(7, 7, 6, 0) 0%, rgba(7, 7, 6, 0.7) 18%, rgba(7, 7, 6, 0.9) 100%);
		z-index: -1;
		pointer-events: none;
	}

	.hero__title,
	.hero__kicker,
	.hero__director,
	.hero__log {
		text-shadow: 0 2px 20px rgba(7, 7, 6, 0.95);
	}

	.hero__log {
		color: var(--ink);
	}

	.section--split,
	.section--reverse,
	.cast-card--featured,
	.grid-2,
	.site-footer__grid,
	.video-grid {
		grid-template-columns: 1fr;
	}

	.prose--split {
		columns: 1;
	}

	.community .chapter .film-frame {
		margin-inline: -1.5rem;
	}

	.section--reverse .film-frame {
		order: 0;
	}

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

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

	.launch-masonry {
		columns: 2 14rem;
	}

	.video-card--feature,
	.video-card--vertical {
		grid-column: auto;
		grid-row: auto;
	}

	.video-card--feature .video-card__btn,
	.video-card--vertical .video-card__btn {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.press-print {
		grid-template-columns: 1fr;
	}

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

	.nav-toggle {
		display: grid;
		place-items: center;
	}

	.site-nav {
		position: fixed;
		inset: var(--header-h) 0 auto;
		background: rgba(7, 7, 6, 0.96);
		border-bottom: 1px solid var(--line);
		padding: 1rem 1.2rem 1.4rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.3s ease, opacity 0.3s ease;
	}

	.site-nav.is-open {
		transform: none;
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0.9rem;
	}

	.hero--launch {
		place-items: end center;
	}

	.hero--launch .hero__media img,
	.hero--launch .hero__media img[data-parallax] {
		object-position: 60% 26%;
	}

	.hero--launch .hero__content {
		padding-bottom: 4.5rem;
	}

	.hero--launch .hero__veil {
		background:
			linear-gradient(180deg, rgba(7, 7, 6, 0.28) 0%, rgba(7, 7, 6, 0.14) 32%, rgba(7, 7, 6, 0.52) 62%, rgba(7, 7, 6, 0.94) 100%);
	}
}

@media (max-width: 640px) {
	.cast-grid,
	.press-grid {
		grid-template-columns: 1fr;
	}

	.hero__title {
		letter-spacing: 0.06em;
	}

	.hero--launch .hero__media img,
	.hero--launch .hero__media img[data-parallax] {
		object-position: 56% 24%;
	}

	.launch-masonry {
		columns: 1;
	}

	.drop::first-letter {
		font-size: 2.5em;
	}

	.quote::before {
		font-size: 3rem;
	}

	.lightbox__prev,
	.lightbox__next {
		bottom: 1rem;
		top: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reveal {
		opacity: 1;
		transform: none;
		animation: none;
	}

	.hero__scroll span,
	.cast-card__media img,
	.gallery-item img {
		animation: none;
		transition: none;
	}

	[data-parallax] {
		top: 0 !important;
		height: 100% !important;
		transform: none !important;
		will-change: auto;
	}

	.bleed-frame img[data-parallax] {
		height: auto !important;
	}
}
