/* =====================================================================
   Cinema Revolution — modern.css
   Livello additivo di restyling. Caricato DOPO css/style.css.
   Obiettivo: svecchiare tipografia, spaziature, card, nav e footer
   mantenendo l'identità visiva (navy, rosso, oro, Poppins/Oswald).
   Nessuna dipendenza esterna, nessuno step di build.
   ===================================================================== */

/* ---------- 1. Token di design ---------- */
:root {
	/* palette storica del tema, normalizzata */
	--cr-navy:        #0B1C24;
	--cr-navy-deep:   #08151B;
	--cr-navy-soft:   #13252E;
	--cr-red:         #FF390B;
	--cr-red-deep:    #8B0B0A;
	--cr-gold:        #FFBF18;
	--cr-ink:         #1c1c1c;
	--cr-ink-soft:    #4a4a4a;
	--cr-paper:       #FBF7F3;
	--cr-white:       #ffffff;

	--cr-font-body:   'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--cr-font-head:   'Open Sans', system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

	/* ritmo verticale / raggi / ombre */
	--cr-radius:      14px;
	--cr-radius-sm:   9px;
	--cr-shadow:      0 6px 24px -8px rgba(0, 0, 0, .45);
	--cr-shadow-lg:   0 22px 60px -18px rgba(0, 0, 0, .6);
	--cr-ease:        cubic-bezier(.22, .61, .36, 1);

	--cr-nav-h:       84px;
	--maxwidth:       1200px;
}

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

/* ---------- 2. Base ---------- */
html,
body,
input,
button,
select,
textarea {
	font-family: var(--cr-font-body);
}
body {
	text-rendering: optimizeLegibility;
	-webkit-text-size-adjust: 100%;
}

img { max-width: 100%; }

::selection {
	background: var(--cr-gold);
	color: var(--cr-navy);
}

a {
	color: #333333;
	transition: color .2s var(--cr-ease), opacity .2s var(--cr-ease);
}

/* link nei blocchi di testo: grigio scuro + sottolineatura per distinguerli */
.scheda-sinossi a,
.scheda-meta a,
.contextfilm a,
.testopalinsesto a,
.testoregione a,
.testo a {
	color: #333333;
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}
.scheda-sinossi a:hover,
.contextfilm a:hover,
.testopalinsesto a:hover,
.testoregione a:hover,
.testo a:hover { color: #000000; }

:where(a, button, input, select, textarea, .voce, .singlemovie, .hamburger):focus-visible {
	outline: 3px solid var(--cr-gold);
	outline-offset: 3px;
	border-radius: 4px;
}

/* tipografia dei blocchi di testo/contenuto */
.contextfilm,
.contextcinema,
.contextiniziativa,
.contextiniziativa_palinsesto,
.testoregione,
.testopalinsesto,
.testoiniziativa {
	line-height: 1.7;
	letter-spacing: .002em;
}

.contextcinema,
.testoregione { color: var(--cr-ink); }

.contextfilm p,
.contextcinema p,
.testoregione p { margin: 0 0 1.1em; }

.testoregione h3,
.contextcinema strong:first-child {
	font-family: var(--cr-font-head);
	letter-spacing: .01em;
}

/* titoli di sezione ("I Film", "Trailer", titolo film) resi con Oswald */
.contextfilm > span strong,
.context > span strong,
.contextiniziativa > span strong {
	font-family: var(--cr-font-head);
	font-weight: 600;
	letter-spacing: .012em;
	line-height: 1.15;
	display: inline-block;
}

/* ---------- 3. Navbar ---------- */
.menuconthome {
	height: var(--cr-nav-h);
	background: rgba(255, 255, 255, .9);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid rgba(11, 28, 36, .08);
	box-shadow: 0 8px 30px -14px rgba(0, 0, 0, .25);
}

.menucontinside {
	height: var(--cr-nav-h);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: min(92%, var(--maxwidthmenu, 1100px));
}

.menuconthome .logo-link {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	line-height: 0;
}
.menuconthome .logo {
	position: static;
	width: auto;
	height: auto;
	transform: none;
	display: flex;
	align-items: center;
}
.menuconthome .logo img {
	height: 56px;
	width: auto;
	background: none;
	display: block;
}

.vocicont {
	position: static;
	height: auto;
	max-height: none;
	width: auto;
	display: flex;
	align-items: center;
	gap: .35rem;
	grid-auto-flow: unset;
	overflow: visible;
	background: none;
}

.voce {
	font-family: var(--cr-font-head);
	font-weight: 700;
	line-height: 1;
	font-size: clamp(.82rem, .35vw + .72rem, .98rem);
}

.voce a {
	display: inline-block;
	font-weight: 700;
	padding: .62em 1.05em;
	border-radius: 999px;
	background: transparent;
	box-shadow: none;
	color: var(--cr-navy);
	letter-spacing: .05em;
	transition: background .2s var(--cr-ease), color .2s var(--cr-ease);
}
.voce a:hover,
.voce a:focus-visible {
	background: var(--cr-navy);
	color: #fff;
	box-shadow: none;
}
.voce a:active { background: var(--cr-red); color: #fff; }

/* pulsante hamburger (nascosto da desktop) */
.hamburger {
	display: none;
	position: relative;
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	margin: 0;
	padding: 0;
	background: none;
	background-image: none;
	cursor: pointer;
}

@media (max-width: 1000px) {
	.menucontinside { width: 90%; gap: .5rem; }

	.hamburger {
		display: block;
		visibility: visible;
		flex: 0 0 auto;
		width: 46px;
		height: 46px;
		top: 0;
		right: auto;
		margin: 0 -8px 0 0;
		align-self: center;
	}
	.hamburger::before,
	.hamburger::after {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: 25px;
		height: 2.5px;
		border-radius: 2px;
		background: var(--cr-navy);
		transition: transform .3s var(--cr-ease), box-shadow .2s var(--cr-ease), opacity .2s;
	}
	.hamburger::before {
		transform: translate(-50%, -50%);
		box-shadow: 0 -8px 0 var(--cr-navy), 0 8px 0 var(--cr-navy);
	}
	.hamburger::after { opacity: 0; transform: translate(-50%, -50%); }

	.menuconthome.nav-open .hamburger::before {
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.menuconthome.nav-open .hamburger::after {
		opacity: 1;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	.vocicont {
		position: fixed;
		left: 0;
		right: 0;
		top: var(--cr-nav-h);
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border-top: 1px solid rgba(11, 28, 36, .1);
		box-shadow: 0 24px 40px -20px rgba(11, 28, 36, .3);
		overflow: hidden;
		transition: max-height .38s var(--cr-ease);
	}
	.vocicont { max-height: 0; }
	/* fallback CSS-only (il JS imposta l'altezza reale inline) */
	.menuconthome.nav-open .vocicont { max-height: 480px; }

	.voce { font-size: 1.02rem; }
	.voce a {
		display: block;
		border-radius: 0;
		padding: 1.15em 1.5em;
		letter-spacing: .03em;
		border-bottom: 1px solid rgba(11, 28, 36, .07);
	}
	.voce:last-child a { border-bottom: 0; }
}

/* ---------- 4. Hero ---------- */
/* Hero homepage: altezza piena, gestita da page-homepage.php */
.header_film {
	position: relative;
	height: 66vh;
	min-height: 380px;
	max-height: 680px;
}

.header .schermo_homepage,
.swiper-slide .schermo_homepage { filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .35)); }

.swiper-button-next,
.swiper-button-prev { color: rgba(255, 255, 255, .85) !important; }

.swiper-pagination-bullet { background: #fff !important; }
.swiper-pagination-bullet-active { background: var(--cr-gold) !important; }

.back_film {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

/* scrim + tasto play centrale sull'hero del film */
.header_film::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .5));
	pointer-events: none;
}

.hero-play,
.hero-play:hover,
.hero-play:focus-visible {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .85rem;
	text-decoration: none;
	color: #fff;
}
.hero-play__icon {
	width: clamp(64px, 9vw, 92px);
	height: clamp(64px, 9vw, 92px);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, .92);
	background: rgba(255, 255, 255, .14);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	display: grid;
	place-items: center;
	transition: transform .25s var(--cr-ease), background .25s var(--cr-ease), border-color .25s var(--cr-ease);
}
.hero-play__icon::before {
	content: "";
	border-style: solid;
	border-width: 13px 0 13px 22px;
	border-color: transparent transparent transparent #fff;
	margin-left: 6px;
}
.hero-play:hover .hero-play__icon,
.hero-play:focus-visible .hero-play__icon {
	transform: scale(1.08);
	background: var(--cr-red);
	border-color: var(--cr-red);
}
.hero-play__label {
	font-family: var(--cr-font-head);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .78rem;
	font-weight: 500;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .65);
}

#trailer { scroll-margin-top: calc(var(--cr-nav-h) + 20px); }

/* ---------- 5. Pagina FILM (palinsesto): tema chiaro ---------- */
body.page-id-180 { background: var(--cr-paper); }

/* fondo tinta unita su TUTTA la pagina: riuso il layer fixed a piena finestra */
.page-id-180 .back_palinsesto {
	display: block;
	background: var(--cr-paper);
	opacity: 1;
	filter: none;
	transform: none;
}
.page-id-180 .back_palinsesto::after { content: none; }

/* testi e card leggibili su chiaro */
.page-id-180 .singlemovietitle {
	color: var(--cr-ink);
	text-shadow: none;
	font-weight: 600;
}
.page-id-180 .singlemoviebg { background-color: #d7d7d7; }
.page-id-180 .singlemoviebg::after {
	box-shadow: inset 0 0 0 1px rgba(11, 28, 36, .08),
	            inset 0 -70px 55px -45px rgba(11, 28, 36, .45);
}
.page-id-180 .contextiniziativa_palinsesto { color: var(--cr-ink); }
.page-id-180 .contextiniziativa_palinsesto strong { color: var(--cr-red-deep); }

/* chip data: base scura, testo bianco */
.page-id-180 .singlemoviedata {
	background: rgba(11, 28, 36, .82);
	-webkit-backdrop-filter: blur(8px) saturate(160%);
	backdrop-filter: blur(8px) saturate(160%);
	border: 1px solid rgba(255, 255, 255, .18);
	color: #fff;
	box-shadow: 0 10px 22px -10px rgba(0, 0, 0, .55);
}

/* header mese: glass scuro per staccare dal fondo chiaro */
.page-id-180 .mese-title {
	background: rgba(11, 28, 36, .92) !important;
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	backdrop-filter: blur(12px) saturate(160%);
	color: #fff !important;
	border-color: rgba(255, 255, 255, .12);
	box-shadow: 0 18px 40px -18px rgba(11, 28, 36, .55) !important;
}
.page-id-180 .mese-icon { fill: #fff; }

/* solo desktop: la griglia del mese poggia su una base poco più scura */
@media (min-width: 1001px) {
	.page-id-180 .mese-section .moviesgridpalinsesto {
		background: #F2ECE2;
		border: 1px solid rgba(11, 28, 36, .05);
		border-radius: 20px;
		padding: 1.6rem;
	}
}

/* ---------- 6. Griglie film ---------- */
.moviesgrid,
.moviesgridpalinsesto {
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: clamp(.5rem, 1.3vw, .9rem);
	width: min(92%, var(--maxwidth));
	padding: 0;
}

@media (min-width: 1000px) {
	.moviesgrid { grid-template-columns: repeat(6, 1fr); }
	.moviesgridpalinsesto { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- 7. Card film ---------- */
/* base/pannello dietro ogni blocco locandina — nessun fade in ingresso */
.singlemovie,
.singlemovie.visible {
	background: #ffffff;
	border: 1px solid rgba(11, 28, 36, .07);
	border-radius: 18px;
	padding: 10px 10px 16px;
	box-shadow: 0 14px 34px -18px rgba(11, 28, 36, .38);
	opacity: 1 !important;
	transform: none !important;
	transition: box-shadow .3s var(--cr-ease), transform .2s var(--cr-ease);
}
.singlemovie:hover {
	transform: translateY(-6px) !important;
	box-shadow: 0 26px 50px -18px rgba(11, 28, 36, .55);
}

.singlemoviebg {
	border-radius: var(--cr-radius-sm);
	background-color: var(--cr-navy-soft);
	box-shadow: 0 6px 16px -8px rgba(0, 0, 0, .45);
	overflow: hidden;
}
.singlemoviebg::before { padding-top: 148%; }

/* aura interna + gradiente basso per ancorare la data */
.singlemoviebg::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06),
	            inset 0 -60px 55px -40px rgba(8, 21, 27, .75);
	pointer-events: none;
}

.singlemovietitle {
	font-family: var(--cr-font-body);
	font-size: .82rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--cr-ink);
	padding: .6em .3em 0;
	text-shadow: none;
}

.singlemoviedata {
	font-family: var(--cr-font-head);
	font-weight: 500;
	font-size: .82rem;
	letter-spacing: .04em;
	color: var(--cr-navy);
	background: var(--cr-gold);
	padding: .32em 1em .28em;
	border-radius: 5px;
	margin-top: -1.15em;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .55);
}

.singlemovietitlecomingsoon {
	font-family: var(--cr-font-head);
	font-weight: 500;
	letter-spacing: .02em;
}

/* bollino promo — sostituisce le vecchie PNG sovrapposte */
.promozione_top,
.promozione_bottom,
.promozione { display: none !important; }

.promo-badge {
	position: absolute;
	top: 9px;
	left: 9px;
	z-index: 3;
	background: #D9FD05;
	color: var(--cr-navy);
	font-family: var(--cr-font-head);
	font-weight: 600;
	font-size: clamp(.76rem, .35vw + .66rem, .92rem);
	letter-spacing: .01em;
	line-height: 1;
	padding: .5em .78em .46em;
	border-radius: 5px;
	box-shadow: 0 4px 12px -3px rgba(0, 0, 0, .45);
	white-space: nowrap;
}

.promo-badge--inline {
	position: static;
	display: inline-block;
	margin-top: 1em;
	font-size: 1rem;
	padding: .62em 1.05em .58em;
}

/* ---------- 8. Header mese sticky (palinsesto) ---------- */
.mese-heading { top: calc(var(--cr-nav-h) + 12px) !important; }
body.admin-bar .mese-heading { top: calc(var(--cr-nav-h) + 44px) !important; }

/* più aria tra pillola del mese e griglia, e tra i gruppi */
.mese-section { padding-top: 1.75rem !important; }
.mese-heading .mese-title { margin-bottom: 1.75rem !important; }
.mese-section .moviesgridpalinsesto { margin-top: .25rem; padding-bottom: .5rem; }

.mese-title {
	background: rgba(19, 37, 46, .72) !important;
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	backdrop-filter: blur(12px) saturate(160%);
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 10px !important;
	box-shadow: 0 14px 40px -16px rgba(0, 0, 0, .6) !important;
	padding: 0 !important;
}

.mese-heading h2.mese-title {
	font-family: var(--cr-font-head);
	font-weight: 600;
	font-size: clamp(1.2rem, .5vw + .95rem, 1.55rem) !important;
	letter-spacing: 0;
	text-transform: none;
	padding: .6em 1.25em !important;
}

.mese-icon { fill: #fff; opacity: .95; }

/* conteggio film a destra nella pillola del mese */
.mese-count {
	margin-left: auto;
	flex-shrink: 0;
	font-family: var(--cr-font-body);
	font-weight: 600;
	font-size: .72rem;
	letter-spacing: .02em;
	color: rgba(255, 255, 255, .8);
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: .38em .72em;
	border-radius: 999px;
	white-space: nowrap;
}

/* ---------- 9. Blocchi di contenuto / lettura ---------- */
.context,
.contextfilm,
.contextcinema,
.contextiniziativa,
.contextiniziativa_palinsesto {
	width: min(90%, 68ch);
	padding-block: clamp(2rem, 5vw, 3.5rem);
}
.contextiniziativa_palinsesto { width: min(90%, 60ch); }

.testo,
.testoiniziativa,
.testopalinsesto,
.testocinema {
	column-count: 1 !important;
	column-width: auto !important;
	font-size: 1rem;
}

.testoiniziativa a,
.testocinema a,
.contextcinema a {
	color: var(--cr-red);
	text-underline-offset: 3px;
	text-decoration-thickness: 1.5px;
}
.testoiniziativa a:hover { color: var(--cr-red-deep); }

/* ---------- 10. Scheda film singola ---------- */
/* fondo tinta unita + footer ancorato in fondo (niente spazio vuoto) */
body.single-film {
	background: var(--cr-paper) !important;
	height: auto;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
body.single-film > .header_film { flex: 0 0 auto; }
body.single-film > .contextfilm,
body.single-film > .torna-film-wrap {
	margin-left: auto;
	margin-right: auto;
}
body.single-film > .contfooter { margin-top: auto; }
.single-film .torna-film-wrap { padding-bottom: 2.5rem; }
.single-film .sectionspacer { flex: 0 0 auto; }

/* un'unica base attorno a tutto il contenuto della scheda
   (dalla locandina al trailer) */
.single-film .contextfilm {
	width: min(92%, 1040px);
	margin: 1.5rem auto 0;
	padding: clamp(1.6rem, 3.5vw, 3rem);
	background: #ffffff;
	border: 1px solid rgba(11, 28, 36, .07);
	border-radius: 22px;
	box-shadow: 0 28px 64px -26px rgba(11, 28, 36, .4);
}
/* quando c'è l'hero, il pannello sborda un po' sopra di esso */
.header_film + .contextfilm {
	position: relative;
	z-index: 2;
	margin-top: clamp(-5rem, -7vw, -3rem);
}
.single-film .context { width: min(92%, 1040px); }

/* titolo del film: nella colonna di destra, sopra le info */
.scheda-titolo {
	display: block;
	font-size: 1em !important;
}
.scheda-titolo strong {
	font-family: var(--cr-font-head);
	font-weight: 800;
	font-size: clamp(1.7rem, 1.1vw + 1.35rem, 2.15rem);
	line-height: 1.1;
	letter-spacing: -.005em;
	display: block;
}

.scheda-info .promo-badge--inline { margin: .85em 0 0; }

.testoschedafilm {
	gap: clamp(1.75rem, 4vw, 3.5rem);
	grid-template-columns: minmax(230px, 320px) 1fr;
	align-items: start;
	margin-top: 0;
}

.scheda-poster img {
	width: 100%;
	border-radius: var(--cr-radius);
	box-shadow: var(--cr-shadow-lg);
	display: block;
}

/* locandina sticky durante lo scroll (solo desktop) */
@media (min-width: 1001px) {
	.scheda-poster {
		position: sticky;
		top: calc(var(--cr-nav-h) + 20px);
		align-self: start;
	}
	body.admin-bar .scheda-poster { top: calc(var(--cr-nav-h) + 52px); }
}

/* info testuali: sopra la sinossi, disposte in colonne affiancate */
.scheda-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.4rem 2.5rem;
	margin: 1.5rem 0 1.75rem;
	padding: 0 0 1.6rem;
	border-bottom: 2px solid rgba(11, 28, 36, .12);
}
.scheda-meta__row {
	padding: 0;
	border: 0;
	min-width: 0;
}
.scheda-meta__row--regia  { flex: 0 1 auto; }
.scheda-meta__row--rating { flex: 0 1 auto; }
.scheda-meta__row--cast   { flex: 1 1 240px; }

.scheda-meta dt {
	font-family: var(--cr-font-head);
	font-weight: 500;
	letter-spacing: .09em;
	text-transform: uppercase;
	font-size: .72rem;
	color: var(--cr-red);
	margin-bottom: .35em;
}
.scheda-meta dd {
	margin: 0;
	font-size: .98rem;
	line-height: 1.6;
	color: var(--cr-ink);
}

.scheda-sinossi {
	font-size: 1rem;
	line-height: 1.75;
	color: var(--cr-ink);
}
.scheda-sinossi h2 {
	font-family: var(--cr-font-head);
	font-weight: 600;
	font-size: 1.15rem;
	letter-spacing: .02em;
	margin: 0 0 .6em;
}
.scheda-sinossi p { margin: 0 0 1em; }
.scheda-sinossi p:last-child { margin-bottom: 0; }

/* trailer */
.contextfilm > br { display: none; }
.contextfilm > span#trailer {
	display: block;
	font-size: 1em !important;
	margin-top: 2.25rem;
}
.contextfilm > span#trailer strong {
	font-family: var(--cr-font-head);
	font-weight: 600;
	font-size: clamp(1.3rem, .8vw + 1.1rem, 1.6rem);
	letter-spacing: .02em;
}
.contextfilm iframe { border-radius: var(--cr-radius); }
.contextfilm > div[style*="padding-bottom"] {
	border-radius: var(--cr-radius);
	overflow: hidden;
	box-shadow: var(--cr-shadow);
	margin-top: 1em;
}

.cast_repeater_image {
	width: 40px;
	height: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}
.cast_repeater_name { line-height: 40px; }

/* ---------- 11. Bottoni ---------- */
.scopribtn,
.scoprifilm {
	font-family: var(--cr-font-head);
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: .7em 1.6em;
	box-shadow: 0 12px 28px -12px rgba(255, 57, 11, .7);
	transition: transform .2s var(--cr-ease), box-shadow .2s var(--cr-ease), background .2s var(--cr-ease);
}
.scopribtn { background: var(--cr-red); }
.scoprifilm { background: var(--cr-gold); box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .5); }

.scopribtn:hover,
.scoprifilm:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px -12px rgba(255, 57, 11, .8);
}
.scoprifilm:hover { box-shadow: 0 18px 36px -12px rgba(0, 0, 0, .55); }

/* bottone "Torna a tutti i Film" (scheda film) */
.torna-film-wrap {
	width: min(92%, 1040px);
	text-align: center;
	padding: clamp(1.5rem, 4vw, 2.5rem) 0 0;
}
.torna-film {
	display: inline-flex;
	align-items: center;
	gap: .5em;
	font-family: var(--cr-font-head);
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-size: .9rem;
	text-decoration: none;
	color: var(--cr-navy);
	background: #ffffff;
	border: 1px solid rgba(11, 28, 36, .08);
	border-radius: 999px;
	padding: .85em 1.7em;
	box-shadow: 0 16px 40px -18px rgba(11, 28, 36, .4);
	transition: transform .2s var(--cr-ease), box-shadow .2s var(--cr-ease), background .2s var(--cr-ease), color .2s var(--cr-ease);
}
.torna-film:hover {
	transform: translateY(-2px);
	background: var(--cr-navy);
	color: #fff;
	box-shadow: 0 22px 48px -18px rgba(11, 28, 36, .6);
}
.torna-film__arrow { font-size: 1.15em; line-height: 1; transition: transform .2s var(--cr-ease); }
.torna-film:hover .torna-film__arrow { transform: translateX(-3px); }

/* ---------- 12. Footer ---------- */
.contfooter {
	height: auto;
	min-height: 84px;
	background: var(--cr-navy-deep);
	padding: 1.6rem 0;
	border-top: 1px solid rgba(255, 255, 255, .06);
}

.legalline {
	position: static;
	transform: none;
	text-align: center;
	font-size: .82rem;
	letter-spacing: .02em;
	color: rgba(255, 255, 255, .55);
}
.legalline a { color: rgba(255, 255, 255, .8); }

.contfooter .gradtop { opacity: .18; }

/* ---------- 13. Utility / varie ---------- */
.sectionspacer[style*="75px"] { height: var(--cr-nav-h) !important; }

hr { border: 0; border-top: 1px solid rgba(0, 0, 0, .12); margin: 2rem 0; }

/* ---------- 14. Riduzione movimento ---------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
	.singlemovie { opacity: 1 !important; transform: none !important; }
}

/* ---------- 15. Ritocchi mobile ---------- */
@media (max-width: 1000px) {
	:root { --cr-nav-h: 74px; }

	.menuconthome .logo img { height: 48px; }

	.moviesgridpalinsesto { grid-template-columns: repeat(2, 1fr); width: 90%; }
	.moviesgrid { grid-template-columns: repeat(2, 1fr); padding: 0; width: 90%; }

	.singlemovietitle { font-size: .78rem; }
	.singlemoviedata { font-size: .72rem; }

	.testoschedafilm { grid-template-columns: 1fr; }
	.scheda-poster { position: static; max-width: 460px; }
	.testoschedafilm img, .scheda-poster img { width: 100%; max-width: 100%; }

	.legalline { font-size: .78rem; }

	/* pillole mesi più compatte su mobile */
	.mese-heading h2.mese-title {
		font-size: 1rem !important;
		font-weight: 700;
		letter-spacing: 0;
		padding: .65em .95em !important;
	}
	.mese-count { font-size: .64rem; padding: .35em .6em; }
}
