/* =========================================================
   MONSIGNORE — relayout editoriale desktop/mobile
   Struttura pensata per replicare il mockup fornito:
   - hero full screen
   - blocchi editoriali 50/50
   - sezioni scure e chiare alternate
   - scheda vino centrale con bottiglia
   - mobile stack ordinato e leggibile
   ========================================================= */

@font-face {
	font-family: "Lovelace";
	src: url("./font/Lovelace-Regular.otf") format("opentype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Poppins";
	src: url("./font/Poppins-Regular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--font-display: "Lovelace", "Iowan Old Style", Baskerville, "Times New Roman", serif;
	--font-body: "Poppins", "Avenir Next", "Helvetica Neue", Arial, sans-serif;

	--bg: #f4f1eb;
	--paper: #efede9;
	--white: #ffffff;
	--ink: #151515;
	--muted: #4b4b4b;
	--dark: #28261c;
	--black: #000000;
	--dark-soft: #171717;
	--line: rgba(0, 0, 0, 0.12);
	--line-light: rgba(255, 255, 255, 0.12);
	--accent: #cbc2b2;
	--white: rgb(255, 255, 255);

	--site-width: 1680px;
	--content-width: 760px;
	--gutter: clamp(22px, 3vw, 54px);
	--block-pad: clamp(34px, 5vw, 88px);
	--section-min: min(52vw, 720px);
	--header-h: 76px;

	--shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.18);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: geometricPrecision;
}

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

picture {
	display: block;
}

figure {
	margin: 0;
}

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

a:hover {
	text-decoration: underline;
}

button {
	font: inherit;
}

.skip-link,
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	width: auto;
	height: auto;
	clip: auto;
	margin: 0;
	left: 1rem;
	top: 1rem;
	z-index: 999;
	padding: 0.75rem 1rem;
	background: var(--dark);
	color: var(--white);
	border-radius: 999px;
}

.lang {
	display: none;
}

html[data-lang="it"] .lang--it,
html[data-lang="en"] .lang--en {
	display: block;
}

/* =========================
   Header
   ========================= */

.floating-lang-toggle {
	position: fixed;
	top: 22px;
	right: 22px;
	z-index: 100;

	width: 58px;
	height: 58px;
	border-radius: 50%;

	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;

	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.48);
	color: var(--white);

	backdrop-filter: blur(10px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);

	cursor: pointer;
	transition:
		transform 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.floating-lang-toggle:hover {
	transform: translateY(-2px);
	background: rgba(0, 0, 0, 0.72);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.floating-lang-toggle__current {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1;
}

.floating-lang-toggle__next {
	font-size: 0.58rem;
	letter-spacing: 0.12em;
	opacity: 0.62;
	line-height: 1;
}

html[data-lang="it"] .floating-lang-toggle__current::before {
	content: "IT";
}

html[data-lang="it"] .floating-lang-toggle__next::before {
	content: "EN";
}

html[data-lang="en"] .floating-lang-toggle__current::before {
	content: "EN";
}

html[data-lang="en"] .floating-lang-toggle__next::before {
	content: "IT";
}

.floating-lang-toggle__current,
.floating-lang-toggle__next {
	font-size: 0;
}

.floating-lang-toggle__current::before {
	font-size: 0.78rem;
}

.floating-lang-toggle__next::before {
	font-size: 0.58rem;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		backdrop-filter 0.25s ease;
	background-color: rgba(0, 0, 0, 0.5);

	backdrop-filter: blur(6px);
}

.site-header.is-solid {
	background: rgba(10, 10, 10, 0.84);
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
	max-width: var(--site-width);
	min-height: var(--header-h);
	margin: 0 auto;
	padding: 12px var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
}

.site-brand img {
	width: 74px;
	height: 74px;
	object-fit: contain;
	filter: brightness(0) invert(1) opacity(0.88);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 22px;
}

.site-nav__link {
	color: rgba(255, 255, 255, 0.92);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
}

.lang-switch {
	display: inline-flex;
	gap: 8px;
	margin-left: 8px;
	padding-left: 18px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switch__btn {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	padding: 7px 12px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	cursor: pointer;
}

.lang-switch__btn[aria-pressed="true"] {
	background: var(--white);
	color: var(--dark);
	border-color: var(--white);
}

.nav-toggle {
	display: none;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: var(--white);
}

/* =========================
   Hero
   ========================= */
.hero {
	position: relative;
	min-height: 100vh;
	display: grid;
	place-items: center;
	text-align: center;
	background: url("./img/ok1.jpg") center center / cover no-repeat;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28));
}

.hero__content {
	position: relative;
	z-index: 1;
	padding: 38% var(--gutter) 60px;
	color: var(--white);
}

.hero__eyebrow,
.hero__subhead,
.hero__place {
	margin: 0;
	text-transform: uppercase;
}

.hero__eyebrow {
	font-family: var(--font-body);
	font-size: clamp(2rem, 4.4vw, 3.7rem);
	font-weight: 500;
	letter-spacing: 0.28em;
}

.hero__subhead {
	margin-top: 10px;
	font-size: clamp(0.9rem, 1.3vw, 1.3rem);
	letter-spacing: 0.36em;
	opacity: 0.95;
}

.hero__place {
	margin-top: 16px;
	font-size: clamp(0.72rem, 0.95vw, 0.92rem);
	letter-spacing: 0.48em;
	opacity: 0.88;
}

/* =========================
   Editorial blocks
   ========================= */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (min-width: 992px) {
	.two-col--60-40 {
		grid-template-columns: 60% 40%;
	}

	.two-col--40-60 {
		grid-template-columns: 40% 60%;
	}
}

.two-col--reverse > :first-child {
	order: 0;
}

.editorial {
	width: 100%;
}

.editorial__text,
.editorial__media,
.contacts-section__info,
.contacts-section__map {
	min-height: var(--section-min);
}

.panel {
	padding: var(--block-pad);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.panel--light {
	background: var(--white);
	color: var(--ink);
}

.panel--dark {
	background: var(--black);
	color: var(--white);
}

.panel--brown {
	background: var(--dark);
	color: var(--white);
}

.panel--centered {
	text-align: right;
}

.panel--spacious {
	padding-top: clamp(48px, 7vw, 100px);
	padding-bottom: clamp(48px, 7vw, 100px);
}

.panel--floating {
	margin: clamp(36px, 5vw, 76px) clamp(18px, 4vw, 64px) clamp(36px, 5vw, 76px) auto;
	max-width: min(36vw, 560px);
	min-height: min(42vw, 560px);
	background: rgba(10, 10, 10, 0.3);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-soft);
}

.panel--contacts {
	gap: 24px;
}

.eyebrow {
	margin: 0 0 14px;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.52);
}

.eyebrow--light {
	color: rgba(255, 255, 255, 0.52);
}

.display-title {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0.015em;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.display-title--compact {
	max-width: 9.5ch;
}

.display-title--light {
	color: var(--white);
}

.copy {
	margin-top: 22px;
	font-size: clamp(0.85rem, 1.12vw, 1.15rem);
	color: var(--muted);
	line-height: 1.4rem;
}

.copy p {
	margin: 0 0 14px;
}

.copy--light {
	color: rgba(255, 255, 255, 0.84);
}

.copy--narrow {
	max-width: 38rem;
}

.copy--narrow-right {
	max-width: 39rem;
	margin-left: auto;
}

.media-frame {
	position: relative;
	overflow: hidden;
	background: #d9d9d9;
}

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

.media-frame--portrait img {
	object-position: center 28%;
}

.media-frame--tall img {
	object-position: center center;
}

.media-frame--wide img,
.media-frame--landscape img {
	object-position: center center;
}

/* =========================
   Label section
   ========================= */
.label-section {
	position: relative;
	min-height: min(75vw, 900px);
	display: flex;
	align-items: stretch;
	overflow: hidden;
	background: #111;
}

.label-section__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.label-section__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.label-section__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.18) 35%, rgba(0, 0, 0, 0.56) 100%);
}

.label-section__content {
	position: relative;
	z-index: 2;
}

/* =========================
   Wine sheet
   ========================= */
.wine-sheet {
	background: white;
}

.display-title-bottle {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.wine-sheet__inner {
	max-width: var(--site-width);
	margin: 0 auto;
	padding: clamp(44px, 6vw, 92px) var(--gutter);
	display: grid;
	grid-template-columns: minmax(100px, 200px) minmax(150px, 220px) minmax(0, 1fr);
	gap: clamp(20px, 3vw, 44px);
	align-items: start;
}

.wine-sheet__year {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.wine-sheet__year span {
	font-family: "Times New Roman";
	font-size: clamp(3.1rem, 5.5vw, 6rem);
	line-height: 0.9;
}

.wine-sheet__bottle {
	align-self: end;
	padding-top: 16px;
}

.wine-sheet__bottle img {
	max-width: 110px;
	margin: 0 auto;
}

.wine-sheet__content {
	max-width: 760px;
}

.sheet-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.5vw, 1.45rem);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.sheet-specs {
	list-style: none;
	padding: 0;
	margin: 22px 0 24px;
	/* border-top: 1px solid var(--line); */
}

.sheet-specs li {
	display: grid;
	grid-template-columns: minmax(170px, 220px) 1fr;
	gap: 10px 18px;
	padding: 10px 0;
	/* border-bottom: 1px solid var(--line); */
	font-size: 0.98rem;
}

.sheet-specs span {
	color: rgba(0, 0, 0, 0.62);
}

.sheet-specs strong {
	font-weight: 500;
}

.copy--sheet {
	max-width: 58rem;
}

.wine-sheet__inner--grouped {
	grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
	align-items: stretch;
}

.wine-sheet__side {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 36px;
	min-height: 100%;
	height: 100%;
}

.wine-sheet__inner--grouped .wine-sheet__year {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.wine-sheet__inner--grouped .wine-sheet__year span {
	display: block;
	font-family: "Times New Roman";
	font-size: clamp(4rem, 7vw, 7rem);
	line-height: 0.9;
	text-align: center;
}

.wine-sheet__inner--grouped .wine-sheet__bottle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding-top: 0;
}

.wine-sheet__inner--grouped .wine-sheet__bottle img {
	max-width: 320px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* =========================
   Vintage notes
   ========================= */
.vintage-notes {
	list-style: none;
	padding: 0;
	margin: 28px 0 0;
	display: grid;
	gap: 18px;
}

.vintage-notes li {
	display: grid;
	gap: 6px;
	padding-bottom: 16px;
	/* border-bottom: 1px solid var(--line-light); */
}

.vintage-notes strong {
	font-size: 1.2rem;
	letter-spacing: 0.08em;
}

.vintage-notes span {
	color: rgba(255, 255, 255, 0.86);
	font-size: 1rem;
}

/* =========================
   Heritage
   ========================= */
.heritage-section {
	position: relative;
	min-height: min(58vw, 640px);
	background: url("./img/ok10.webp") center center / cover no-repeat;
	display: grid;
	place-items: center;
	text-align: center;
}

.heritage-section__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.38);
}

.heritage-section__content {
	position: relative;
	z-index: 1;
	padding: 32px var(--gutter);
}

.heritage-section__quote {
	margin: 0;
	color: var(--white);
	font-family: var(--font-display);
	text-transform: uppercase;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 0.96;
	/* max-width: 12.5ch; */
}

/* =========================
   Contacts
   ========================= */
.contacts-section {
	background: var(--paper);
}

.contacts-section__logo {
	display: block;
	width: clamp(130px, 18vw, 220px);
	max-width: 100%;
	/* margin: 0 auto 22px; */
	opacity: 0.92;
	margin-bottom: 70px;
}

.contacts-section__info .lang {
	width: 100%;
}

.contatti-title {
	font-size: clamp(1.3rem, 18vw, 2rem);
}

.contact-list {
	display: grid;
	gap: 14px;
	margin-top: 18px;
	max-width: 34rem;
	width: 100%;
}

.contact-list p {
	margin: 0;
	/* padding-bottom: 12px; */
	/* border-bottom: 1px solid var(--line); */
}

.contact-list-first {
	border-top: 1px solid black;
	padding-top: 25px;
}

.contact-list-last {
	border-bottom: 1px solid black;
	padding-bottom: 25px;
}

.media-frame--map {
	background: var(--paper);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(20px, 4vw, 54px);
}

.media-frame--map img {
	object-fit: contain;
	max-width: min(90%, 620px);
	max-height: min(90%, 520px);
}

/* =========================
   Footer
   ========================= */
.site-footer {
	background: var(--paper);
	border-top: 1px solid var(--line);
}

.site-footer__inner {
	max-width: var(--site-width);
	margin: 0 auto;
	padding: 18px var(--gutter) 26px;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.54);
}

.site-footer__copy,
.site-footer__info p {
	margin: 0;
}

.site-footer__info {
	display: grid;
	gap: 4px;
}
/* =========================
   QR page / Recycling page
   ========================= */

.qr-page-hero__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 12px;
}

@media (max-width: 640px) {
	.qr-page-hero__top {
		flex-direction: column;
		align-items: flex-start;
	}
}

.qr-page-hero {
	padding: calc(var(--header-h) + 36px) var(--gutter) 28px;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
}

.qr-page-hero__inner {
	max-width: 980px;
	margin: 0 auto;
}

.qr-page-hero__title {
	margin-top: 8px;
	max-width: 14ch;
}

.qr-page-shell {
	max-width: 980px;
	margin: 0 auto;
	padding: clamp(28px, 4vw, 48px) var(--gutter) clamp(48px, 6vw, 72px);
	display: grid;
	gap: 24px;
}

.qr-panel {
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--line);
}

.qr-section-title {
	margin-bottom: 20px;
}

.qr-info-list {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
}

.qr-info-row {
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr;
	gap: 12px 24px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
}

.qr-info-label {
	color: rgba(0, 0, 0, 0.62);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.qr-info-value {
	font-weight: 500;
}

.qr-table {
	margin-top: 10px;
	border-top: 1px solid var(--line);
}

.qr-table__row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px 24px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	align-items: start;
}

.qr-table__row--head {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(0, 0, 0, 0.52);
}

.qr-table__row strong {
	font-weight: 600;
	text-align: right;
}

@media (max-width: 767.98px) {
	.qr-page-hero {
		padding-top: calc(var(--header-h) + 26px);
	}

	.qr-page-hero__title {
		max-width: none;
	}

	.qr-page-shell {
		padding-left: 22px;
		padding-right: 22px;
	}

	.qr-info-row,
	.qr-table__row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.qr-table__row strong {
		text-align: left;
	}
}
/* =========================
   Responsive
   ========================= */
@media (max-width: 1120px) {
	.sheet-specs li {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.panel--floating {
		max-width: min(44vw, 560px);
	}
}

@media (max-width: 991.98px) {
	.nav-toggle {
		display: inline-block;
	}

	.site-nav {
		position: absolute;
		top: calc(var(--header-h) + 8px);
		right: 16px;
		left: 16px;
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 20px;
		border-radius: 20px;
		background: rgba(10, 10, 10, 0.92);
		backdrop-filter: blur(10px);
		box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
	}

	.site-header.is-open .site-nav {
		display: flex;
	}

	.lang-switch {
		margin-left: 0;
		padding-left: 0;
		border-left: 0;
	}

	.two-col {
		grid-template-columns: 1fr;
	}

	.two-col--reverse > :first-child,
	.two-col--reverse > :last-child {
		order: initial;
	}

	.editorial__text,
	.editorial__media,
	.contacts-section__info,
	.contacts-section__map {
		min-height: auto;
	}

	.panel,
	.panel--spacious {
		padding: clamp(28px, 6vw, 42px) 22px;
	}

	.panel--centered {
		text-align: left;
	}

	.copy--narrow-right {
		margin-left: 0;
	}

	.display-title,
	.display-title--compact {
		max-width: none;
	}

	.media-frame {
		min-height: 48vh;
	}

	.media-frame--portrait {
		min-height: 60vh;
	}

	.label-section {
		display: block;
		min-height: auto;
		background: var(--black);
		overflow: hidden;
	}
	.label-section__media {
		position: relative;
		inset: auto;
		width: 100%;
		padding: 0;
		background: var(--black);
	}
	.label-section__media img {
		display: block;
		width: 100%;
		height: auto;
		max-height: none;
		object-fit: contain;
		object-position: center center;
	}
	.label-section__overlay {
		display: none;
	}
	.label-section__content {
		position: relative;
		z-index: 1;
	}
	.label-section__content.panel--floating {
		margin: 0;
		width: 100%;
		max-width: none;
		min-height: auto;
		padding: 24px 22px 28px;
		background: var(--black);
		backdrop-filter: none;
		box-shadow: none;
	}

	.wine-sheet__inner {
		grid-template-columns: 1fr;
		text-align: left;
	}

	.wine-sheet__year {
		order: 0;
	}

	.wine-sheet__bottle {
		order: 1;
		padding-top: 0;
	}

	.wine-sheet__bottle img {
		max-width: 96px;
		margin-left: 0;
	}

	.wine-sheet__content {
		order: 2;
	}

	.sheet-title {
		font-size: 1.2rem;
	}

	.heritage-section {
		min-height: 52vh;
	}

	.heritage-section__quote {
		/* max-width: 11ch; */
		font-size: clamp(1.8rem, 4vw, 3rem);
	}

	.contacts-section__logo {
		width: 96px;
	}
}

@media (max-width: 640px) {
	.floating-lang-toggle {
		top: 14px;
		right: 14px;
		width: 50px;
		height: 50px;
	}

	.floating-lang-toggle__current::before {
		font-size: 0.7rem;
	}

	.floating-lang-toggle__next::before {
		font-size: 0.52rem;
	}
	.site-brand img {
		width: 62px;
		height: 62px;
	}

	.hero__eyebrow {
		letter-spacing: 0.18em;
		font-size: clamp(1.65rem, 8vw, 2.3rem);
	}

	.hero__subhead {
		font-size: 0.85rem;
		letter-spacing: 0.24em;
	}

	.hero__place {
		font-size: 0.68rem;
		letter-spacing: 0.32em;
	}

	.display-title {
		font-size: clamp(1.7rem, 10vw, 2.5rem);
	}

	.copy {
		font-size: 0.98rem;
	}

	.sheet-specs li {
		font-size: 0.93rem;
	}

	.vintage-notes span {
		font-size: 0.95rem;
	}

	.media-frame,
	.media-frame--portrait {
		min-height: 40vh;
	}
	.label-section__content.panel--floating {
		padding: 18px 16px 22px;
	}
	.label-section__content .copy {
		margin-top: 12px;
	}
	.label-section__content .copy p {
		margin: 0 0 10px;
	}
	.label-section__content .copy p:last-child {
		margin-bottom: 0;
	}
}

.site-footer {
	padding: clamp(2.5rem, 5vw, 4.5rem) 1.5rem;
	background: #f7f4ef;
	color: #1f1f1f;
}

.site-footer__inner {
	width: min(1120px, 100%);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: center;
	text-align: center;
}

.site-footer__info p {
	margin: 0.25rem 0;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
	color: rgba(31, 31, 31, 0.78);
}

.site-footer__info strong {
	color: #111;
	font-weight: 600;
	letter-spacing: 0.08em;
}

.site-footer__funding {
	width: 100%;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.4rem;
}

.site-footer__funding-title {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: rgba(31, 31, 31, 0.58);
}

.site-footer__logos {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 4vw, 3rem);
	flex-wrap: wrap;
}

.site-footer__logo {
	display: block;
	width: auto;
	object-fit: contain;
	filter: none;
}

.site-footer__logo--eu {
	max-width: 240px;
	max-height: 140px;
}

.site-footer__logo--ministero {
	max-width: 170px;
	max-height: 90px;
}

.site-footer__logo--piemonte {
	max-width: 260px;
	max-height: 95px;
}