/* Albizia Bella & Bruno - film library and player */

:root {
	--bella-ink: #212121;
	--bella-soft: #4a4541;
	--bella-muted: #6b6660;
	--bella-faint: #8d8881;
	--bella-paper: #ffffff;
	--bella-surface: #ffffff;
	--bella-line: rgba(33, 24, 17, 0.12);
	--bella-line-soft: rgba(33, 24, 17, 0.08);
	--bella-accent: var(--albizia-accent, #cf7e00);
	--bella-accent-hover: #b86f00;
	--bella-accent-soft: #f7eedd;
	--bella-radius: 10px;
	--bella-radius-sm: 6px;
	--bella-shadow: 0 1px 3px rgba(33, 24, 17, 0.06);
	--bella-shadow-md: 0 2px 8px rgba(33, 24, 17, 0.08);
	--bella-shell: min(1120px, calc(100% - 32px));
	--bella-transition: 160ms ease;
}

body.albizia-bella-bruno-page {
	margin: 0;
	background: var(--bella-paper);
	color: var(--bella-ink);
	font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.albizia-bella-bruno-page *,
.albizia-bella-bruno-page *::before,
.albizia-bella-bruno-page *::after {
	box-sizing: border-box;
}

.albizia-bella-bruno {
	min-height: 100vh;
	padding: 76px 0 0;
	overflow: clip;
}

/* ============= Hero (image with right-side text overlay) ============= */

.albizia-bella-bruno__hero {
	position: relative;
	background: var(--bella-paper);
}

.albizia-bella-bruno__hero-media {
	width: 100%;
	background: var(--bella-paper);
}

.albizia-bella-bruno__hero-picture {
	display: block;
	width: 100%;
}

.albizia-bella-bruno__hero-image {
	display: block;
	width: 100%;
	height: auto;
}

.albizia-bella-bruno__hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: clamp(3.5rem, 8vw, 7rem) clamp(24px, 3vw, 56px) 0 24px;
	pointer-events: none;
}

.albizia-bella-bruno__hero-content {
	width: clamp(380px, 50vw, 720px);
}

.albizia-bella-bruno__hero-text {
	display: grid;
	gap: 22px;
	justify-items: end;
	text-align: right;
	pointer-events: auto;
}

.albizia-bella-bruno__hero-headline {
	display: grid;
	gap: 14px;
	width: fit-content;
	max-width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	text-align: right;
	justify-items: end;
}

.albizia-bella-bruno__hero-headline .albizia-bella-bruno__title {
	width: fit-content;
	padding: 2px 10px;
	border-radius: 6px;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.albizia-bella-bruno__hero-headline .albizia-bella-bruno__intro-line {
	display: block;
	width: fit-content;
	margin-left: auto;
	padding: 1px 8px;
	border-radius: 4px;
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
}

.albizia-bella-bruno__title {
	margin: 0;
	font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
	font-size: clamp(4rem, 7.6vw, 7rem);
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.008em;
	color: var(--bella-ink);
	text-wrap: balance;
}

.albizia-bella-bruno__intro {
	margin: 0;
	max-width: 38ch;
	font-size: clamp(1.2rem, 1.7vw, 1.5rem);
	line-height: 1.5;
	font-weight: 450;
	color: var(--bella-soft);
}

.albizia-bella-bruno__intro-line {
	display: block;
}

.albizia-bella-bruno__hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.albizia-bella-bruno__hero-actions .albizia-bella-bruno__button {
	min-height: 56px;
	padding: 14px 28px;
	font-size: 1.05rem;
	border-radius: 10px;
}

.albizia-bella-bruno__scroll-indicator {
	position: absolute;
	bottom: clamp(0.5rem, 1.5vw, 1rem);
	left: 50%;
	z-index: 4;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--bella-ink);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	cursor: pointer;
	transform: translateX(-50%);
	-webkit-tap-highlight-color: transparent;
}

.albizia-bella-bruno__scroll-indicator .albizia-scroll-icon {
	width: clamp(45px, 6vw, 70px);
	max-width: 100%;
	height: auto;
	opacity: 0;
	animation:
		albiziaScrollFade 0.8s ease-out forwards,
		albiziaScrollBounce 2.4s ease-in-out 0.8s infinite;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.albizia-bella-bruno__scroll-indicator:focus-visible {
	outline: 2px solid var(--bella-accent);
	outline-offset: 6px;
	border-radius: 999px;
}

/* ============= Library ============= */

.albizia-bella-bruno__library {
	width: var(--bella-shell);
	margin: 0 auto;
	padding: 48px 0 80px;
}

.albizia-bella-bruno__library-header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px 32px;
	margin-bottom: 32px;
}

.albizia-bella-bruno__library-heading {
	flex: 1 1 360px;
	min-width: 0;
}

.albizia-bella-bruno__library-sort {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.albizia-bella-bruno__sort-label {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--bella-faint);
}

.albizia-bella-bruno__sort-control {
	position: relative;
}

.albizia-bella-bruno__sort-control::after {
	content: "";
	position: absolute;
	right: 12px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-65%) rotate(45deg);
	color: var(--bella-faint);
	pointer-events: none;
}

.albizia-bella-bruno__sort-select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: var(--bella-surface);
	border: 1px solid var(--bella-line);
	border-radius: 8px;
	padding: 8px 32px 8px 12px;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--bella-ink);
	cursor: pointer;
	transition: border-color var(--bella-transition);
}

.albizia-bella-bruno__sort-select:hover {
	border-color: var(--bella-faint);
}

.albizia-bella-bruno__sort-select:focus-visible {
	outline: 2px solid var(--bella-accent);
	outline-offset: 2px;
	border-color: var(--bella-accent);
}

.albizia-bella-bruno__section-title {
	margin: 0;
	font-size: clamp(1.5rem, 2.6vw, 1.85rem);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.005em;
	color: var(--bella-ink);
}

.albizia-bella-bruno__section-intro {
	margin: 8px 0 0;
	max-width: 60ch;
	color: var(--bella-soft);
	font-size: 0.95rem;
	line-height: 1.6;
}

.albizia-bella-bruno__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 32px 20px;
}

.albizia-film-card {
	opacity: 0;
	transition: opacity 200ms ease;
}

.albizia-film-card.is-visible {
	opacity: 1;
}

.albizia-film-card__link {
	display: grid;
	gap: 14px;
	color: inherit;
	text-decoration: none;
	border-radius: 16px;
}

.albizia-film-card__link:focus-visible {
	outline: 2px solid var(--bella-accent);
	outline-offset: 4px;
}

.albizia-film-card__poster {
	position: relative;
	aspect-ratio: 9 / 16;
	margin: 0;
	overflow: hidden;
	background: #1c211f;
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(33, 24, 17, 0.06);
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.albizia-film-card__poster::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	pointer-events: none;
}

.albizia-film-card__poster::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	z-index: 1;
	height: 50%;
	background: linear-gradient(180deg, rgba(28, 33, 31, 0) 0%, rgba(28, 33, 31, 0.5) 100%);
	pointer-events: none;
}

.albizia-film-card__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.albizia-film-card__poster-empty {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 16px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	background: linear-gradient(160deg, #2f3a35, #1c211f);
}

.albizia-film-card__play {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: var(--bella-ink);
	background: rgba(255, 255, 255, 0.94);
	transition: background 200ms ease, color 200ms ease;
}

.albizia-film-card__play svg {
	margin-left: 1px;
}

.albizia-film-card__link:hover .albizia-film-card__poster,
.albizia-film-card__link:focus-visible .albizia-film-card__poster {
	box-shadow: 0 12px 32px rgba(33, 24, 17, 0.18);
}

.albizia-film-card__link:hover .albizia-film-card__poster img,
.albizia-film-card__link:focus-visible .albizia-film-card__poster img {
	transform: scale(1.04);
}

.albizia-film-card__link:hover .albizia-film-card__play,
.albizia-film-card__link:focus-visible .albizia-film-card__play {
	background: var(--bella-accent);
	color: #ffffff;
}

.albizia-film-card__body {
	display: grid;
	gap: 4px;
	padding: 0 2px;
}

.albizia-film-card__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.008em;
	color: var(--bella-ink);
}

.albizia-film-card__link:hover .albizia-film-card__title,
.albizia-film-card__link:focus-visible .albizia-film-card__title {
	color: var(--bella-accent);
}

.albizia-film-card__description {
	margin: 0;
	color: var(--bella-soft);
	line-height: 1.45;
	font-size: 0.88rem;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ============= Buttons ============= */

.albizia-bella-bruno__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 0;
	padding: 0.9rem 2.4rem;
	border-radius: 16px;
	border: 1px solid transparent;
	font: inherit;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition:
		background var(--bella-transition),
		color var(--bella-transition),
		border-color var(--bella-transition),
		transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	-webkit-tap-highlight-color: transparent;
}

.albizia-bella-bruno__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.albizia-bella-bruno__button--primary {
	background: linear-gradient(135deg, #ffa62b, #f08c00);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 15px 35px rgba(240, 140, 0, 0.25);
}

.albizia-bella-bruno__button--primary:hover,
.albizia-bella-bruno__button--primary:focus-visible {
	background: linear-gradient(135deg, #ffa62b, #f08c00);
	border-color: transparent;
	box-shadow: 0 18px 35px rgba(240, 140, 0, 0.3);
	transform: translateY(-1px);
	outline: none;
}

.albizia-bella-bruno__button--ghost {
	background: var(--bella-surface);
	border-color: var(--bella-line);
	color: var(--bella-ink);
}

.albizia-bella-bruno__button--ghost:hover,
.albizia-bella-bruno__button--ghost:focus-visible {
	border-color: var(--bella-ink);
	outline: none;
}

.albizia-bella-bruno__button.is-copied {
	background: var(--bella-accent-soft);
	color: var(--bella-accent);
	border-color: var(--bella-accent-soft);
}

.albizia-bella-bruno__button:focus-visible {
	outline: 2px solid var(--bella-accent);
	outline-offset: 2px;
}

/* ============= Empty state ============= */

.albizia-bella-bruno__empty {
	display: grid;
	gap: 8px;
	padding: 24px;
	border: 1px solid var(--bella-line);
	border-radius: var(--bella-radius);
	background: var(--bella-surface);
}

.albizia-bella-bruno__empty h2 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--bella-ink);
}

.albizia-bella-bruno__empty p {
	margin: 0;
	color: var(--bella-soft);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ============= Single film page ============= */

.albizia-bella-bruno-single {
	width: var(--bella-shell);
	margin: 0 auto;
	padding-bottom: 80px;
}

.albizia-bella-bruno-single__nav {
	padding: 24px 0 16px;
}

.albizia-bella-bruno-single__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bella-soft);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.92rem;
	transition: color var(--bella-transition);
}

.albizia-bella-bruno-single__back:hover,
.albizia-bella-bruno-single__back:focus-visible {
	color: var(--bella-ink);
	outline: none;
}

.albizia-bella-bruno-auto-back {
	display: none;
}

.albizia-bella-bruno-single__article {
	display: grid;
	gap: 48px;
}

.albizia-bella-bruno-single__layout {
	display: grid;
	grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 56px);
	align-items: center;
}

.albizia-bella-bruno-single__details {
	display: grid;
	gap: 24px;
	align-content: center;
}

.albizia-bella-bruno-single__header {
	display: grid;
	gap: 12px;
	max-width: 56ch;
}

.albizia-bella-bruno-single__title {
	margin: 0;
	font-size: clamp(2rem, 3.6vw, 2.8rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.012em;
	color: var(--bella-ink);
}

.albizia-bella-bruno-single__intro {
	margin: 0;
	color: var(--bella-soft);
	font-size: clamp(1rem, 1.2vw, 1.1rem);
	line-height: 1.6;
}

.albizia-bella-bruno-player {
	position: relative;
	width: 100%;
	max-width: calc((100svh - 200px) * 9 / 16);
	aspect-ratio: 9 / 16;
	background: #1c211f;
	border: 1px solid var(--bella-line);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--bella-shadow-md);
}

.albizia-bella-bruno-player__video {
	display: block;
	width: 100%;
	height: 100%;
	background: #1c211f;
	object-fit: cover;
}

.albizia-bella-bruno-player__video:fullscreen {
	object-fit: contain;
	background: #000;
}

.albizia-bella-bruno-player:fullscreen {
	max-width: none;
	max-height: none;
	width: 100vw;
	height: 100vh;
	aspect-ratio: auto;
	border-radius: 0;
	background: #000;
}

.albizia-bella-bruno-player:fullscreen .albizia-bella-bruno-player__video {
	object-fit: contain;
	background: #000;
}

.albizia-bella-bruno-player__missing {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 24px;
	color: rgba(255, 255, 255, 0.78);
	text-align: center;
}

.albizia-bella-bruno-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

/* More films section on single page */
.albizia-bella-bruno-more {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--bella-line);
	display: grid;
	gap: 24px;
}

.albizia-bella-bruno-more__header {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.albizia-bella-bruno-more__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.005em;
	color: var(--bella-ink);
}

.albizia-bella-bruno-more__link {
	color: var(--bella-accent);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
}

.albizia-bella-bruno-more__link:hover,
.albizia-bella-bruno-more__link:focus-visible {
	text-decoration: underline;
	outline: none;
}

/* ============= Reveal animation ============= */

[data-albizia-reveal] {
	opacity: 0;
	transition: opacity 300ms ease;
}

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

/* ============= Responsive ============= */

@media (max-width: 720px) {
	.albizia-bella-bruno {
		padding-top: 0;
	}

	.albizia-bella-bruno__library,
	.albizia-bella-bruno-single {
		width: min(100% - 24px, 1120px);
	}

	.albizia-bella-bruno__hero {
		position: relative;
		min-height: 100svh;
		min-height: 100vh;
	}

	.albizia-bella-bruno__hero-media {
		position: absolute;
		inset: 0;
		height: 100%;
	}

	.albizia-bella-bruno__hero-picture,
	.albizia-bella-bruno__hero-image {
		height: 100%;
		object-fit: cover;
		object-position: center 40%;
	}

	.albizia-bella-bruno__hero-overlay {
		position: absolute;
		inset: max(88px, calc(76px + env(safe-area-inset-top, 0px) + 12px)) 14px auto 14px;
		padding: 0;
		display: block;
	}

	.albizia-bella-bruno__hero-content {
		width: 100%;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		padding: 0;
	}

	.albizia-bella-bruno__hero-text {
		justify-items: center;
		text-align: center;
		gap: 16px;
		width: 100%;
	}

	.albizia-bella-bruno__hero-headline {
		background: transparent;
		border: 0;
		box-shadow: none;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		padding: 0;
		border-radius: 0;
		width: 100%;
		justify-items: center;
		text-align: center;
		gap: 14px;
	}

	.albizia-bella-bruno__hero-headline .albizia-bella-bruno__title,
	.albizia-bella-bruno__hero-headline .albizia-bella-bruno__intro-line {
		margin-left: auto;
		margin-right: auto;
	}

	.albizia-bella-bruno__title {
		font-size: clamp(3.6rem, 16vw, 6rem);
		line-height: 1;
		max-width: 100%;
	}

	.albizia-bella-bruno__intro {
		font-size: clamp(1.05rem, 4.6vw, 1.25rem);
		line-height: 1.4;
		max-width: 100%;
	}

	.albizia-bella-bruno__hero-actions {
		display: flex;
		justify-content: center;
		gap: 10px;
		width: 100%;
		margin-top: 4px;
	}

	.albizia-bella-bruno__hero-actions .albizia-bella-bruno__button {
		width: auto;
		flex: 0 0 auto;
		min-height: 56px;
		padding: 14px 36px;
		font-size: 1rem;
	}

	.albizia-bella-bruno__library {
		padding: 32px 0 64px;
	}

	.albizia-bella-bruno__grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 20px 14px;
	}

	.albizia-bella-bruno-single__layout {
		grid-template-columns: 1fr;
		gap: 24px;
		justify-items: center;
	}

	.albizia-bella-bruno-single__details {
		justify-self: stretch;
		text-align: left;
		gap: 20px;
	}

	.albizia-bella-bruno-single__details .albizia-bella-bruno-single__actions {
		order: -1;
		justify-content: center;
		margin-top: 0;
	}

	.albizia-bella-bruno-single__header {
		max-width: none;
	}

	.albizia-bella-bruno-player {
		max-width: min(420px, 86vw);
		margin: 0 auto;
	}

	.albizia-bella-bruno-single__actions .albizia-bella-bruno__button {
		flex: 1 1 calc(50% - 5px);
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play {
		background: #ffffff;
		overflow: hidden;
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-top-bar,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-single__nav,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-single__details,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-more,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-footer,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-contact-widget {
		display: none !important;
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-single,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-single__article,
	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-single__layout {
		display: block;
		width: 100%;
		min-height: 100svh;
		margin: 0;
		padding: 0;
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-player {
		width: 100vw;
		max-width: none;
		height: 100svh;
		margin: 0;
		aspect-ratio: auto;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		background: #ffffff;
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-player__video {
		object-fit: contain;
		background: #ffffff;
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-auto-back {
		position: fixed;
		top: calc(12px + env(safe-area-inset-top, 0px));
		left: calc(12px + env(safe-area-inset-left, 0px));
		z-index: 10020;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 1px solid rgba(255, 255, 255, 0.22);
		border-radius: 999px;
		background: rgba(0, 0, 0, 0.22);
		color: #ffffff;
		text-decoration: none;
		font-size: 1.45rem;
		line-height: 1;
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		-webkit-tap-highlight-color: transparent;
	}

	body.albizia-bella-bruno-page--single.is-bella-bruno-auto-play .albizia-bella-bruno-auto-back:focus-visible {
		outline: 2px solid rgba(255, 255, 255, 0.72);
		outline-offset: 3px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.albizia-film-card,
	[data-albizia-reveal] {
		opacity: 1;
		transition: none;
	}

	.albizia-bella-bruno__button,
	.albizia-film-card__poster img,
	.albizia-film-card__play {
		transition: none;
	}

	.albizia-bella-bruno__scroll-indicator .albizia-scroll-icon {
		animation: none !important;
		opacity: 1;
	}
}

@keyframes albiziaScrollFade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes albiziaScrollBounce {
	0%,
	100% {
		transform: translateY(-4px);
	}

	50% {
		transform: translateY(-10px);
	}
}
