/* ==========================================================================
   MCP Chinesi – CSS del tema
   Porting 1:1 del sito Astro (Tailwind v4). Ogni regola riporta i valori
   esatti dell'originale ai breakpoint sm 640 / md 768 / lg 1024 / xl 1280.
   Le icone sono in ../images/icons/ (percorsi relativi a questo file).
   ========================================================================== */

:root {
	--mcp-main: #1f3d3f;
	--mcp-accent: #33a9b1;
	--mcp-accent-dark: #2a8a91;
	--mcp-white: #f1f0f0;
	--mcp-black: #1c1c1c;
	--mcp-gray: #4d4d4d;
	--mcp-light-gray: #d9d9d9;
	--mcp-ease: cubic-bezier(0.4, 0, 0.2, 1);
	--mcp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--mcp-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	--mcp-font-marcellus: "Marcellus", serif;
	--mcp-font-lato: "Lato", sans-serif;
}

/* --------------------------------------------------------------------------
   Base (equivalente del preflight Tailwind per le parti che usiamo)
   -------------------------------------------------------------------------- */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
body {
	margin: 0;
	background: #fff;
}
[class*="mcp-"],
[class*="mcp-"] *,
[class*="mcp-"]::before,
[class*="mcp-"]::after,
[class*="mcp-"] *::before,
[class*="mcp-"] *::after {
	box-sizing: border-box;
}
:where([class*="mcp-"]) > *,
:where([class*="mcp-"]) figure,
:where([class*="mcp-"]) p,
:where([class*="mcp-"]) h1,
:where([class*="mcp-"]) h2,
:where([class*="mcp-"]) h3 {
	margin: 0;
}
:where([class*="mcp-"]) img {
	display: block;
	max-width: 100%;
	height: auto;
}
:where([class*="mcp-"]) a {
	color: inherit;
	text-decoration: none;
}
:where([class*="mcp-"]) ul,
:where([class*="mcp-"]) ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
:where([class*="mcp-"]) button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	margin: 0;
}
/* WordPress aggiunge un outline su :focus (anche al click); l'originale usa solo :focus-visible. */
:where([class*="mcp-"] *:focus) {
	outline: revert;
}
.mcp-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}
.mcp-only-desktop {
	display: none;
}
.mcp-only-mobile {
	display: block;
}
@media (min-width: 768px) {
	.mcp-only-desktop {
		display: block;
	}
	.mcp-only-mobile {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Stili di blocco riusati: occhiello, link con icona, social
   -------------------------------------------------------------------------- */
/* Occhiello: <img decoration w-[70px] sm:w-[92px]> + <p marcellus 10/12 uppercase tracking-wide> */
p.is-style-mcp-eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 16px;
	font-family: var(--mcp-font-marcellus);
	font-size: 10px;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 0.025em;
}
p.is-style-mcp-eyebrow::before {
	content: "";
	flex-shrink: 0;
	width: 70px;
	height: 10.652px;
	background: url(../images/icons/decoration.svg) center / 100% 100% no-repeat;
}
@media (min-width: 640px) {
	p.is-style-mcp-eyebrow {
		gap: 12px;
		margin-bottom: 24px;
		font-size: 12px;
		line-height: 28px;
	}
	p.is-style-mcp-eyebrow::before {
		width: 92px;
		height: 14px;
	}
}

/* Link con icona: cerchio 32px + testo */
p.is-style-mcp-link-tel,
p.is-style-mcp-link-mail,
p.is-style-mcp-link-location {
	display: flex;
	align-items: center;
	margin: 0;
}
p.is-style-mcp-link-tel::before,
p.is-style-mcp-link-mail::before,
p.is-style-mcp-link-location::before {
	content: "";
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 9999px;
	background-position: center;
	background-repeat: no-repeat;
}
p.is-style-mcp-link-location::before {
	/* come <img>: stessa rasterizzazione del cerchio dell'originale */
	content: url(../images/icons/location.svg);
	display: block;
	object-fit: contain;
}
p.is-style-mcp-link-tel::before {
	background-image: url(../images/icons/tel.svg);
	background-size: 16px 16px;
	background-color: var(--mcp-main);
}
p.is-style-mcp-link-mail::before {
	background-image: url(../images/icons/mail.svg);
	background-size: 16px 16px;
	background-color: var(--mcp-main);
}
p.is-style-mcp-link-tel a,
p.is-style-mcp-link-mail a,
p.is-style-mcp-link-location a {
	display: flex;
	align-items: center;
}

/* Social: 3 icone 32px, LinkedIn in cerchio chiaro */
.mcp-social {
	display: flex;
	align-items: center;
	gap: 16px;
}
.mcp-social .mcp-social__item {
	margin: 0;
	flex-shrink: 0;
}
.mcp-social .mcp-social__item a {
	display: block;
	width: 32px;
	height: 32px;
	transition: opacity 0.15s var(--mcp-ease);
}
.mcp-social .mcp-social__item a:hover {
	opacity: 0.8;
}
.mcp-social .mcp-social__item img {
	width: 32px;
	height: 32px;
}
.mcp-social .mcp-social__item--linkedin a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mcp-white);
	border-radius: 9999px;
}
.mcp-social .mcp-social__item--linkedin img {
	width: 12px;
	height: 12px;
}

/* --------------------------------------------------------------------------
   Pulsanti "pill" (core/button con stile)
   -------------------------------------------------------------------------- */
.wp-block-button.is-style-mcp-pill-arrow .wp-block-button__link,
.wp-block-button.is-style-mcp-pill-mail .wp-block-button__link,
.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 40px;
	align-items: center;
	gap: 8px;
	background: var(--mcp-accent);
	color: #fff;
	font-family: var(--mcp-font-marcellus);
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	text-transform: capitalize;
	text-align: center;
	white-space: nowrap;
	padding: 4px 4px 4px 16px;
	border: 0;
	border-radius: 30px;
	box-shadow: none;
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: var(--mcp-ease);
	transition-duration: 0.3s;
}
.wp-block-button.is-style-mcp-pill-arrow .wp-block-button__link::after,
.wp-block-button.is-style-mcp-pill-mail .wp-block-button__link::after,
.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link::after {
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	background-color: var(--mcp-main);
	background-position: center;
	background-repeat: no-repeat;
	transition: background-color 0.3s var(--mcp-ease);
}
.wp-block-button.is-style-mcp-pill-arrow .wp-block-button__link:hover,
.wp-block-button.is-style-mcp-pill-mail .wp-block-button__link:hover {
	background: var(--mcp-accent-dark);
	color: #fff;
}
.wp-block-button.is-style-mcp-pill-arrow .wp-block-button__link::after {
	background-image: url(../images/icons/arrow-white.svg);
	background-size: 14px 14px;
}
.wp-block-button.is-style-mcp-pill-mail .wp-block-button__link::after {
	background-image: url(../images/icons/mail.svg);
	background-size: 17px 11px;
}
.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link {
	background: transparent;
	color: var(--mcp-white);
	border: 2px solid var(--mcp-white);
}
.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link::after {
	background-color: var(--mcp-accent);
	background-image: url(../images/icons/tel.svg);
	background-size: 14px 14px;
}
.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link:hover {
	background: #fff;
	color: var(--mcp-main);
}
.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link:hover::after {
	background-color: var(--mcp-main);
}
@media (min-width: 640px) {
	.wp-block-button.is-style-mcp-pill-mail .wp-block-button__link::after {
		background-size: 19px 13px;
	}
	.wp-block-button.is-style-mcp-pill-tel-outline .wp-block-button__link::after {
		background-size: 16px 16px;
	}
}

/* --------------------------------------------------------------------------
   Top bar (solo >= 1024): bg main, 59px, indirizzo + social
   -------------------------------------------------------------------------- */
.mcp-topbar {
	display: none;
	width: 100%;
	height: 59px;
	background: var(--mcp-main);
}
.mcp-topbar .mcp-topbar__inner {
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	padding: 0 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mcp-topbar p.mcp-topbar__address {
	gap: 8px;
	font-family: var(--mcp-font-marcellus);
	font-size: 16px;
	line-height: 23px;
	color: #fff;
	text-transform: capitalize;
}
@media (min-width: 1024px) {
	.mcp-topbar {
		display: block;
	}
}
@media (min-width: 1280px) {
	.mcp-topbar .mcp-topbar__inner {
		padding: 0 145px;
	}
}

/* --------------------------------------------------------------------------
   Header: pill assoluta sopra la hero
   -------------------------------------------------------------------------- */
.mcp-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	padding-top: 16px;
	padding-bottom: 16px;
}
.mcp-header .mcp-header__container {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
	padding: 0 16px;
}
.mcp-header .mcp-header__pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
	padding: 0 16px;
	background: rgba(255, 255, 255, 0.05);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	box-shadow: 0 4px 16px 0 rgba(31, 38, 135, 0.1);
}
.mcp-header .mcp-header__logo {
	flex-shrink: 0;
	margin: 0;
}
.mcp-header .mcp-header__logo a {
	display: block;
}
.mcp-header .mcp-header__logo img {
	height: 75px;
	width: auto;
}
/* Menu desktop (core/navigation) */
.mcp-header .mcp-nav {
	display: none;
}
.mcp-header .mcp-nav .wp-block-navigation__container {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--mcp-font-marcellus);
	font-size: 14px;
	line-height: 1.5;
	color: #2e2e2e;
	text-transform: capitalize;
}
.mcp-header .mcp-nav .wp-block-navigation-item {
	display: block;
	margin: 0;
	padding: 0;
}
.mcp-header .mcp-nav .wp-block-navigation-item__content {
	position: relative;
	display: inline-block;
	padding: 0;
	color: inherit;
	text-decoration: none;
	transition: color 0.3s var(--mcp-ease);
}
.mcp-header .mcp-nav .wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--mcp-accent);
	transition: all 0.3s var(--mcp-ease);
}
.mcp-header .mcp-nav .wp-block-navigation-item__content:hover {
	color: var(--mcp-accent);
}
.mcp-header .mcp-nav .wp-block-navigation-item__content:hover::after {
	width: 100%;
}
/* CTA desktop */
.mcp-header .mcp-header__cta {
	display: none;
	margin: 0;
	gap: 0;
}
.mcp-header .mcp-header__cta .mcp-btn--header {
	margin: 0;
}
.mcp-header .mcp-header__cta .mcp-btn--header .wp-block-button__link {
	display: flex;
	grid-template-columns: none;
	gap: 12px;
	padding: 4px 4px 4px 16px;
	font-size: 14px;
}
.mcp-header .mcp-header__cta .mcp-btn--header .wp-block-button__link::after {
	width: 32px;
	height: 32px;
	background-size: 12px 12px;
}
.mcp-header .mcp-header__cta .mcp-btn--header .wp-block-button__link:hover {
	box-shadow: var(--mcp-shadow-lg);
}
/* Hamburger (inserito dal JS) */
.mcp-header .mcp-header__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}
.mcp-header .mcp-header__toggle img {
	width: 40px;
	height: 40px;
}
@media (min-width: 640px) {
	.mcp-header .mcp-header__container {
		padding: 0 24px;
	}
	.mcp-header .mcp-header__pill {
		padding: 0 24px;
	}
}
@media (min-width: 768px) {
	.mcp-header {
		padding-top: 26px;
		padding-bottom: 20px;
	}
	.mcp-header .mcp-header__container {
		padding: 0 48px;
	}
	.mcp-header .mcp-header__pill {
		height: 80px;
		padding: 0 32px;
		border-radius: 40px;
	}
	.mcp-header .mcp-header__logo img {
		height: 85px;
	}
}
@media (min-width: 1024px) {
	.mcp-header {
		top: 59px;
	}
	.mcp-header .mcp-header__container {
		padding: 0 80px;
	}
	.mcp-header .mcp-header__pill {
		padding: 0 24px;
		background: #fff;
		border: 0;
	}
	.mcp-header .mcp-header__logo img {
		height: 90px;
	}
	.mcp-header .mcp-nav {
		display: flex;
	}
	.mcp-header .mcp-header__cta {
		display: flex;
	}
	.mcp-header .mcp-header__toggle {
		display: none;
	}
}
@media (min-width: 1280px) {
	.mcp-header .mcp-header__container {
		padding: 0 145px;
	}
	.mcp-header .mcp-header__pill {
		padding: 0 32px;
	}
	.mcp-header .mcp-nav .wp-block-navigation__container {
		gap: 40px;
		font-size: 16px;
	}
	.mcp-header .mcp-header__cta .mcp-btn--header .wp-block-button__link {
		gap: 18px;
		padding-left: 32px;
		font-size: 16px;
	}
	.mcp-header .mcp-header__cta .mcp-btn--header .wp-block-button__link::after {
		width: 40px;
		height: 40px;
		background-size: 14px 14px;
	}
}

/* --------------------------------------------------------------------------
   Drawer mobile (< 1024): pannello fisso che scorre da destra
   -------------------------------------------------------------------------- */
.mcp-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--mcp-main);
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}
.mcp-drawer.is-open {
	transform: translateX(0);
}
.mcp-drawer .mcp-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
	padding: 16px 16px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mcp-drawer .mcp-drawer__logo {
	margin: 0;
}
.mcp-drawer .mcp-drawer__logo img {
	height: 75px;
	width: auto;
	filter: brightness(0) invert(1);
}
.mcp-drawer .mcp-drawer__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: #fff;
}
.mcp-drawer .mcp-drawer__body {
	flex: 1 1 0%;
	overflow-y: auto;
	padding: 24px 0;
}
.mcp-drawer .mcp-drawer__links ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 0 24px;
}
.mcp-drawer .mcp-drawer__links a {
	display: block;
	padding: 16px;
	color: #fff;
	font-family: var(--mcp-font-marcellus);
	font-size: 18px;
	line-height: 1.5;
	text-transform: capitalize;
	border-radius: 8px;
	transition: all 0.3s var(--mcp-ease);
}
.mcp-drawer .mcp-drawer__links a:hover {
	background: rgba(255, 255, 255, 0.1);
}
.mcp-drawer .mcp-drawer__extra {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 16px;
	padding: 24px 24px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mcp-drawer p.mcp-drawer__address {
	gap: 12px;
	color: #fff;
	font-family: var(--mcp-font-marcellus);
	font-size: 14px;
	line-height: 1.5;
}
.mcp-drawer p.mcp-drawer__address::before {
	width: 24px;
	height: 24px;
	background-size: 24px 24px;
}
.mcp-drawer .mcp-social__item--linkedin a {
	transition: background-color 0.15s var(--mcp-ease);
}
.mcp-drawer .mcp-social__item--linkedin a:hover {
	background: #fff;
	opacity: 1;
}
.mcp-drawer .mcp-drawer__foot {
	padding: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mcp-drawer .mcp-drawer__foot .mcp-drawer__cta,
.mcp-drawer .mcp-drawer__foot .mcp-btn--drawer {
	display: block;
	width: 100%;
	margin: 0;
}
.mcp-drawer .mcp-drawer__foot .mcp-btn--drawer .wp-block-button__link {
	display: flex;
	grid-template-columns: none;
	justify-content: center;
	width: 100%;
	gap: 16px;
	padding: 16px 24px;
	font-size: 16px;
	transition: all 0.3s var(--mcp-ease);
}
.mcp-drawer .mcp-drawer__foot .mcp-btn--drawer .wp-block-button__link::after {
	width: 32px;
	height: 32px;
	background-size: 12px 12px;
}
@media (min-width: 640px) {
	.mcp-drawer .mcp-drawer__head {
		padding-left: 24px;
		padding-right: 24px;
	}
}
@media (min-width: 768px) {
	.mcp-drawer .mcp-drawer__head {
		min-height: 100px;
	}
	.mcp-drawer .mcp-drawer__logo img {
		height: 85px;
	}
}
@media (min-width: 1024px) {
	.mcp-drawer {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Header pagine interne (privacy)
   -------------------------------------------------------------------------- */
.mcp-header-min {
	width: 100%;
	background: var(--mcp-main);
	padding: 16px 0;
}
.mcp-header-min .mcp-header-min__inner {
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mcp-header-min .mcp-header-min__logo {
	flex-shrink: 0;
	margin: 0;
}
.mcp-header-min .mcp-header-min__logo a {
	display: block;
}
.mcp-header-min .mcp-header-min__logo img {
	height: 60px;
	width: auto;
	filter: brightness(0) invert(1);
}
.mcp-header-min .mcp-header-min__back {
	margin: 0;
	font-family: var(--mcp-font-marcellus);
	font-size: 14px;
	line-height: 1.5;
}
.mcp-header-min .mcp-header-min__back a {
	color: #fff;
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: var(--mcp-ease);
	transition-duration: 0.15s;
}
.mcp-header-min .mcp-header-min__back a:hover {
	color: var(--mcp-accent);
}
@media (min-width: 640px) {
	.mcp-header-min {
		padding: 24px 0;
	}
	.mcp-header-min .mcp-header-min__inner {
		padding: 0 24px;
	}
	.mcp-header-min .mcp-header-min__logo img {
		height: 75px;
	}
	.mcp-header-min .mcp-header-min__back {
		font-size: 16px;
	}
}
@media (min-width: 768px) {
	.mcp-header-min .mcp-header-min__inner {
		padding: 0 48px;
	}
}
@media (min-width: 1024px) {
	.mcp-header-min .mcp-header-min__inner {
		padding: 0 80px;
	}
}
@media (min-width: 1280px) {
	.mcp-header-min .mcp-header-min__inner {
		padding: 0 145px;
	}
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.mcp-hero {
	position: relative;
	width: 100%;
	min-height: 100svh;
}
/* Sfondo fisso (parallasse: le sezioni successive gli scorrono sopra) */
.mcp-hero .mcp-hero__slides {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	z-index: -10;
	background: #8b7f7f;
	overflow: hidden;
}
.mcp-hero .mcp-hero__slides::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	pointer-events: none;
}
.mcp-hero .mcp-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s var(--mcp-ease);
}
.mcp-hero .mcp-hero__slide.is-active {
	opacity: 1;
}
.mcp-hero .mcp-hero__slide figure {
	width: 100%;
	height: 100%;
	margin: 0;
}
.mcp-hero .mcp-hero__slide figure.mcp-only-desktop {
	display: none;
}
.mcp-hero .mcp-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.mcp-hero .mcp-hero__slide:first-child img {
	object-position: top;
}
/* Dots (inseriti dal JS) */
.mcp-hero .mcp-hero__dots {
	position: absolute;
	z-index: 30;
	display: flex;
}
.mcp-hero .mcp-hero__dots--desktop {
	display: none;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	flex-direction: column;
	gap: 16px;
}
.mcp-hero .mcp-hero__dots--mobile {
	bottom: 64px;
	left: 50%;
	transform: translateX(-50%);
	gap: 12px;
}
.mcp-hero .mcp-hero__dot {
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: var(--mcp-shadow-lg);
	transition: all 0.3s ease;
}
.mcp-hero .mcp-hero__dots--desktop .mcp-hero__dot:hover {
	background: #fff;
	transform: scale(1.25);
}
.mcp-hero .mcp-hero__dots--desktop .mcp-hero__dot.is-active {
	background: #fff;
	height: 32px;
}
.mcp-hero .mcp-hero__dots--mobile .mcp-hero__dot:active {
	transform: scale(1.25);
}
.mcp-hero .mcp-hero__dots--mobile .mcp-hero__dot.is-active {
	background: #fff;
	width: 32px;
}
/* Contenuto */
.mcp-hero .mcp-hero__content {
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100svh;
	padding-top: 80px;
	padding-bottom: 32px;
}
.mcp-hero .mcp-hero__container {
	max-width: 1920px;
	margin: 0 auto;
	width: 100%;
	padding: 0 16px;
}
.mcp-hero .mcp-hero__inner {
	max-width: 689px;
	margin: 0 auto;
	text-align: center;
}
.mcp-hero p.mcp-hero__eyebrow {
	justify-content: center;
	color: #fff;
}
.mcp-hero .mcp-hero__title {
	max-width: 340px;
	margin: 0 auto 16px;
	font-family: var(--mcp-font-marcellus);
	font-size: 42px;
	line-height: 44px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
}
.mcp-hero .mcp-hero__text {
	max-width: 280px;
	margin: 0 auto 32px;
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 22px;
	color: var(--mcp-white);
	text-transform: capitalize;
}
.mcp-hero .mcp-hero__buttons {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: center;
	gap: 12px;
	width: 100%;
	margin: 0;
}
.mcp-hero .mcp-hero__buttons .mcp-btn--hero {
	display: block;
	width: 100%;
	max-width: 280px;
	margin: 0;
}
.mcp-hero .mcp-hero__buttons .mcp-btn--hero .wp-block-button__link {
	width: 100%;
}
@media (min-width: 640px) {
	.mcp-hero .mcp-hero__container {
		padding: 0 24px;
	}
	.mcp-hero .mcp-hero__title {
		max-width: 400px;
		margin-bottom: 24px;
		font-size: 54px;
		line-height: 53px;
	}
	.mcp-hero .mcp-hero__text {
		max-width: 313px;
		margin-bottom: 40px;
		font-size: 16px;
		line-height: 26px;
	}
	.mcp-hero .mcp-hero__buttons {
		gap: 16px;
		width: auto;
	}
	.mcp-hero .mcp-hero__buttons .mcp-btn--hero {
		width: 220px;
		max-width: none;
	}
	.mcp-hero .mcp-hero__buttons .mcp-btn--hero .wp-block-button__link {
		padding-left: 24px;
	}
}
@media (min-width: 768px) {
	.mcp-hero {
		height: 100vh;
	}
	.mcp-hero .mcp-hero__slides {
		height: 100vh;
	}
	.mcp-hero .mcp-hero__slides::after {
		background: rgba(0, 0, 0, 0.2);
	}
	.mcp-hero .mcp-hero__slide figure.mcp-only-desktop {
		display: block;
	}
	.mcp-hero .mcp-hero__slide figure.mcp-only-mobile {
		display: none;
	}
	.mcp-hero .mcp-hero__slide img {
		object-position: top;
	}
	.mcp-hero .mcp-hero__dots--desktop {
		display: flex;
	}
	.mcp-hero .mcp-hero__dots--mobile {
		display: none;
	}
	.mcp-hero .mcp-hero__content {
		min-height: 100vh;
		padding-top: 120px;
		padding-bottom: 120px;
	}
	.mcp-hero .mcp-hero__container {
		padding: 0 48px;
	}
	.mcp-hero .mcp-hero__inner {
		margin: 0;
		text-align: left;
	}
	.mcp-hero p.mcp-hero__eyebrow {
		justify-content: flex-start;
	}
	.mcp-hero .mcp-hero__title {
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		font-size: 56px;
		line-height: 1.25;
	}
	.mcp-hero .mcp-hero__text {
		max-width: 475px;
		margin-left: 0;
		margin-right: 0;
	}
	.mcp-hero .mcp-hero__buttons {
		flex-direction: row;
		align-items: flex-start;
	}
	.mcp-hero .mcp-hero__buttons .mcp-btn--hero .wp-block-button__link {
		padding-left: 32px;
		font-size: 16px;
	}
}
@media (min-width: 1024px) {
	.mcp-hero .mcp-hero__container {
		padding: 0 80px;
	}
	.mcp-hero .mcp-hero__title {
		font-size: 64px;
		line-height: 82px;
	}
}
@media (min-width: 1280px) {
	.mcp-hero .mcp-hero__container {
		padding: 0 145px;
	}
}

/* --------------------------------------------------------------------------
   Chi sono
   -------------------------------------------------------------------------- */
.mcp-about {
	position: relative;
	width: 100%;
	background: #dde7dd;
}
.mcp-about .mcp-about__inner {
	position: relative;
	z-index: 10;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 32px 64px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}
.mcp-about .mcp-about__media {
	width: 100%;
	margin-top: -32px;
}
.mcp-about .mcp-about__image {
	position: relative;
	width: 100%;
	aspect-ratio: 828 / 578;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: var(--mcp-shadow-2xl);
	margin: 0;
}
.mcp-about .mcp-about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mcp-about .mcp-about__text {
	width: 100%;
}
.mcp-about p.mcp-about__eyebrow {
	justify-content: flex-start;
	color: var(--mcp-black);
}
.mcp-about .mcp-about__title {
	max-width: 638px;
	margin: 0 0 24px;
	font-family: var(--mcp-font-marcellus);
	font-size: 32px;
	line-height: 40px;
	font-weight: 400;
	color: var(--mcp-black);
	text-align: left;
}
.mcp-about .mcp-about__lead {
	max-width: 638px;
	margin: 0 0 16px;
	font-family: var(--mcp-font-lato);
	font-weight: 700;
	font-size: 14px;
	line-height: 24px;
	color: var(--mcp-black);
	text-align: left;
}
.mcp-about .mcp-about__para {
	max-width: 601px;
	margin: 0 0 16px;
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 22px;
	color: var(--mcp-gray);
	text-align: left;
}
.mcp-about .mcp-about__para--last {
	margin-bottom: 24px;
}
.mcp-about .mcp-about__line {
	width: 100% !important;
	max-width: 622px;
	height: 1px;
	margin: 0 0 24px;
	border: 0;
	background: #c4c4c4;
	opacity: 1;
}
.mcp-about .mcp-about__cta {
	display: flex;
	justify-content: flex-start;
	gap: 0;
	margin: 0;
}
.mcp-about .mcp-about__cta .mcp-btn--about {
	margin: 0;
	min-width: 200px;
}
.mcp-about .mcp-about__cta .mcp-btn--about .wp-block-button__link {
	width: 100%;
	padding-left: 24px;
}
.mcp-about .mcp-about__cta .mcp-btn--about .wp-block-button__link:hover {
	box-shadow: var(--mcp-shadow-lg);
}
@media (min-width: 640px) {
	.mcp-about .mcp-about__inner {
		padding: 0 40px 80px;
	}
	.mcp-about .mcp-about__media {
		margin-top: -48px;
	}
	.mcp-about .mcp-about__title {
		margin-bottom: 32px;
		font-size: 38px;
		line-height: 48px;
	}
	.mcp-about .mcp-about__lead {
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 26px;
	}
	.mcp-about .mcp-about__para {
		margin-bottom: 20px;
		font-size: 15px;
		line-height: 24px;
	}
	.mcp-about .mcp-about__para--last {
		margin-bottom: 32px;
	}
	.mcp-about .mcp-about__line {
		margin-bottom: 32px;
	}
	.mcp-about .mcp-about__cta .mcp-btn--about {
		min-width: 220px;
	}
	.mcp-about .mcp-about__cta .mcp-btn--about .wp-block-button__link {
		padding-left: 32px;
		font-size: 16px;
	}
}
@media (min-width: 768px) {
	.mcp-about {
		background: #fff;
		border-radius: 100px 100px 0 0;
	}
	.mcp-about .mcp-about__inner {
		padding: 96px 48px;
		gap: 48px;
	}
	.mcp-about .mcp-about__media {
		margin-top: -64px;
	}
	.mcp-about .mcp-about__title {
		font-size: 40px;
		line-height: 52px;
	}
	.mcp-about .mcp-about__lead {
		font-size: 16px;
		line-height: 28px;
	}
	.mcp-about .mcp-about__para {
		font-size: 16px;
		line-height: 26px;
	}
}
@media (min-width: 1024px) {
	.mcp-about .mcp-about__inner {
		flex-direction: row;
		padding: 120px 80px;
		gap: 64px;
	}
	.mcp-about .mcp-about__media {
		width: 50%;
		margin-top: 0;
	}
	.mcp-about .mcp-about__image {
		border-radius: 24px;
	}
	.mcp-about .mcp-about__text {
		width: 50%;
	}
	.mcp-about .mcp-about__title {
		font-size: 44px;
		line-height: 60px;
	}
}
@media (min-width: 1280px) {
	.mcp-about .mcp-about__inner {
		padding: 120px 145px;
		gap: 80px;
	}
}

/* --------------------------------------------------------------------------
   Servizi
   -------------------------------------------------------------------------- */
.mcp-services {
	position: relative;
	width: 100%;
	background: var(--mcp-main);
	padding: 64px 0;
}
.mcp-services::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url(../images/content/services-mobile-bg.webp) center / cover no-repeat;
	opacity: 0.4;
}
.mcp-services .mcp-services__inner {
	position: relative;
	z-index: 10;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 16px;
}
.mcp-services .mcp-services__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 48px;
}
.mcp-services p.mcp-services__eyebrow {
	justify-content: center;
	gap: 12px;
	color: var(--mcp-white);
}
.mcp-services .mcp-services__title {
	margin: 0;
	font-family: var(--mcp-font-marcellus);
	font-size: 32px;
	line-height: 40px;
	font-weight: 400;
	color: var(--mcp-white);
	text-transform: capitalize;
}
.mcp-services .mcp-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.mcp-services .mcp-service__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin: 0 0 24px;
}
.mcp-services .mcp-service__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.mcp-services .mcp-service__title {
	margin: 0 0 16px;
	font-family: var(--mcp-font-marcellus);
	font-size: 22px;
	line-height: 28px;
	font-weight: 400;
	color: var(--mcp-white);
}
.mcp-services .mcp-service__text {
	margin: 0;
	font-family: var(--mcp-font-lato);
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	color: var(--mcp-light-gray);
}
/* Sotto i 1024px: senza JS le card sono impilate; con JS (.is-slider) diventano uno slider */
.mcp-services .mcp-services__grid:not(.is-slider) {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.mcp-services .mcp-services__grid.is-slider {
	position: relative;
	min-height: 300px;
	overflow: hidden;
}
.mcp-services .mcp-services__grid.is-slider .mcp-service {
	position: absolute;
	inset: 0;
	padding: 0 16px;
	opacity: 0;
	transition: opacity 0.7s var(--mcp-ease);
}
.mcp-services .mcp-services__grid.is-slider .mcp-service.is-active {
	opacity: 1;
}
.mcp-services .mcp-services__grid.is-slider .mcp-service__icon {
	width: 100px;
	height: 100px;
	margin-bottom: 20px;
	flex-shrink: 0;
}
.mcp-services .mcp-services__grid.is-slider .mcp-service__title {
	max-width: 400px;
	margin-bottom: 12px;
	font-size: 24px;
	line-height: 32px;
}
.mcp-services .mcp-services__grid.is-slider .mcp-service__text {
	max-width: 400px;
	font-size: 15px;
	line-height: 24px;
}
.mcp-services .mcp-services__dots {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 20px;
}
.mcp-services .mcp-services__dot {
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: rgba(51, 169, 177, 0.3);
	cursor: pointer;
	transition: all 0.3s var(--mcp-ease);
}
.mcp-services .mcp-services__dot:hover {
	opacity: 0.8;
}
.mcp-services .mcp-services__dot.is-active {
	width: 32px;
	background: var(--mcp-accent);
}
@media (min-width: 640px) {
	.mcp-services {
		padding: 80px 0;
	}
	.mcp-services .mcp-services__inner {
		padding: 0 24px;
	}
	.mcp-services .mcp-services__head {
		margin-bottom: 64px;
	}
	.mcp-services p.mcp-services__eyebrow {
		gap: 16px;
		font-size: 11px;
		line-height: 24px;
	}
	.mcp-services .mcp-services__title {
		font-size: 38px;
		line-height: 48px;
	}
	.mcp-services .mcp-services__grid.is-slider .mcp-service__icon {
		width: 110px;
		height: 110px;
	}
	.mcp-services .mcp-services__grid.is-slider .mcp-service__title {
		margin-bottom: 16px;
		font-size: 28px;
		line-height: 36px;
	}
	.mcp-services .mcp-services__grid.is-slider .mcp-service__text {
		font-size: 16px;
		line-height: 26px;
	}
}
@media (min-width: 768px) {
	.mcp-services {
		padding: 96px 0;
	}
	.mcp-services .mcp-services__inner {
		padding: 0 48px;
	}
	.mcp-services .mcp-services__head {
		margin-bottom: 80px;
	}
	.mcp-services p.mcp-services__eyebrow {
		font-size: 12px;
		line-height: 28px;
	}
	.mcp-services .mcp-services__title {
		font-size: 40px;
		line-height: 52px;
	}
}
@media (min-width: 1024px) {
	.mcp-services {
		padding: 112px 0;
	}
	.mcp-services::before {
		display: none;
	}
	.mcp-services .mcp-services__inner {
		padding: 0 80px;
	}
	.mcp-services .mcp-services__head {
		margin-bottom: 96px;
	}
	.mcp-services .mcp-services__title {
		font-size: 44px;
		line-height: 60px;
	}
	.mcp-services .mcp-services__grid,
	.mcp-services .mcp-services__grid:not(.is-slider) {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		column-gap: 24px;
		row-gap: 32px;
	}
	.mcp-services .mcp-services__dots {
		display: none;
	}
}
@media (min-width: 1280px) {
	.mcp-services {
		padding: 128px 0;
	}
	.mcp-services .mcp-services__inner {
		padding: 0 145px;
	}
	.mcp-services .mcp-services__grid,
	.mcp-services .mcp-services__grid:not(.is-slider) {
		column-gap: 48px;
		row-gap: 48px;
	}
	.mcp-services .mcp-service__title {
		font-size: 24px;
		line-height: 30px;
	}
	.mcp-services .mcp-service__text {
		font-size: 15px;
		line-height: 24px;
	}
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.mcp-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--mcp-main);
	padding: 24px 0;
	user-select: none;
}
.mcp-marquee .mcp-marquee__track {
	display: flex;
	align-items: center;
	gap: 24px;
	width: max-content;
	white-space: nowrap;
	animation: mcp-marquee 30s linear infinite;
}
.mcp-marquee:hover .mcp-marquee__track {
	animation-play-state: paused;
}
.mcp-marquee .mcp-marquee__item {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
	margin: 0;
	font-family: var(--mcp-font-marcellus);
	font-size: 20px;
	line-height: 1.5;
	color: var(--mcp-light-gray);
	text-transform: capitalize;
}
.mcp-marquee .mcp-marquee__item::after {
	content: "";
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	background: url(../images/icons/star.svg) center / contain no-repeat;
}
@keyframes mcp-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@media (min-width: 640px) {
	.mcp-marquee {
		padding: 32px 0;
	}
	.mcp-marquee .mcp-marquee__track,
	.mcp-marquee .mcp-marquee__item {
		gap: 28px;
	}
	.mcp-marquee .mcp-marquee__item {
		font-size: 24px;
	}
	.mcp-marquee .mcp-marquee__item::after {
		width: 32px;
		height: 32px;
	}
}
@media (min-width: 768px) {
	.mcp-marquee .mcp-marquee__track,
	.mcp-marquee .mcp-marquee__item {
		gap: 32px;
	}
	.mcp-marquee .mcp-marquee__item {
		font-size: 28px;
	}
}
@media (min-width: 1024px) {
	.mcp-marquee {
		padding: 40px 0;
	}
	.mcp-marquee .mcp-marquee__track,
	.mcp-marquee .mcp-marquee__item {
		gap: 36px;
	}
	.mcp-marquee .mcp-marquee__item {
		font-size: 32px;
	}
	.mcp-marquee .mcp-marquee__item::after {
		width: 40px;
		height: 40px;
	}
}

/* --------------------------------------------------------------------------
   Contatti
   -------------------------------------------------------------------------- */
.mcp-contact {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #dee8de;
	padding: 64px 0;
}
.mcp-contact .mcp-contact__inner {
	padding: 0 32px;
}
.mcp-contact .mcp-contact__top {
	position: relative;
	max-width: 1630px;
	margin: 0 auto;
}
.mcp-contact .mcp-contact__col {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.mcp-contact p.mcp-contact__eyebrow {
	gap: 12px;
	margin: 0 0 8px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #000;
}
.mcp-contact p.mcp-contact__eyebrow::before {
	width: 92px;
	height: 14px;
}
.mcp-contact .mcp-contact__title {
	margin: 0;
	font-family: var(--mcp-font-marcellus);
	font-size: 32px;
	line-height: 1.25;
	font-weight: 400;
	color: #000;
	text-transform: capitalize;
}
.mcp-contact .mcp-contact__info {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.mcp-contact .mcp-contact__item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.mcp-contact .mcp-contact__label {
	margin: 0;
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 1.5;
	color: var(--mcp-black);
	text-transform: capitalize;
}
.mcp-contact p.mcp-contact__link {
	gap: 8px;
	font-family: var(--mcp-font-marcellus);
	font-size: 14px;
	line-height: 1.5;
	color: var(--mcp-main);
}
.mcp-contact p.mcp-contact__link a {
	gap: 8px;
}
.mcp-contact p.mcp-contact__link--mail {
	font-family: var(--mcp-font-lato);
}
.mcp-contact .mcp-contact__divider {
	display: none;
	width: 1px !important;
	height: auto;
	align-self: stretch;
	margin: 0;
	border: 0;
	background: rgba(77, 77, 77, 0.1);
	opacity: 1;
}
.mcp-contact .mcp-contact__form {
	margin-top: 32px;
}
/* Form (core/html) */
.mcp-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
}
.mcp-form .mcp-form__hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.mcp-form .mcp-form__row {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mcp-form .mcp-form__field {
	flex: 1 1 0%;
}
.mcp-form .mcp-form__input {
	width: 100%;
	margin: 0;
	padding: 16px 24px;
	border: 0;
	border-radius: 30px;
	background: rgba(241, 240, 240, 0.85);
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 1.5;
	color: var(--mcp-gray);
	outline: none;
	transition: all 0.15s var(--mcp-ease);
}
.mcp-form .mcp-form__input::placeholder {
	color: var(--mcp-gray);
	opacity: 1;
}
.mcp-form .mcp-form__input:focus {
	background: var(--mcp-white);
	outline: none;
	box-shadow: 0 0 0 2px var(--mcp-accent);
}
.mcp-form .mcp-form__select-wrap {
	position: relative;
}
.mcp-form .mcp-form__select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.mcp-form .mcp-form__caret {
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	pointer-events: none;
}
.mcp-form .mcp-form__caret svg {
	display: block;
}
.mcp-form .mcp-form__textarea {
	padding-top: 18px;
	padding-bottom: 18px;
	background: rgba(241, 240, 240, 0.765);
	resize: none;
}
.mcp-form .mcp-form__consent {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mcp-form .mcp-form__checkbox {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin: 0;
	cursor: pointer;
	border-radius: 4px;
	border-color: var(--mcp-gray);
	accent-color: var(--mcp-accent);
}
.mcp-form .mcp-form__checkbox:focus {
	outline: none;
	box-shadow: 0 0 0 2px var(--mcp-accent);
}
.mcp-form .mcp-form__consent-label {
	font-family: var(--mcp-font-lato);
	font-size: 12px;
	line-height: 1.5;
	color: var(--mcp-gray);
}
.mcp-form .mcp-form__consent-label a {
	color: var(--mcp-accent);
	text-decoration: underline;
}
.mcp-form .mcp-form__consent-label a:hover {
	color: var(--mcp-accent-dark);
}
.mcp-form .mcp-form__submit {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 10px 8px 10px 24px;
	border-radius: 30px;
	background: var(--mcp-accent);
	cursor: pointer;
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: var(--mcp-ease);
	transition-duration: 0.2s;
}
.mcp-form .mcp-form__submit:hover {
	background: var(--mcp-accent-dark);
}
.mcp-form .mcp-form__submit:active {
	background: #238a91;
}
.mcp-form .mcp-form__submit:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}
.mcp-form .mcp-form__submit-text {
	font-family: var(--mcp-font-marcellus);
	font-size: 14px;
	line-height: 1.5;
	color: #fff;
	text-transform: capitalize;
}
.mcp-form .mcp-form__submit-circle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 9999px;
	background: var(--mcp-main);
	transition: all 0.2s var(--mcp-ease);
}
.mcp-form .mcp-form__submit-circle img {
	width: 12px;
	height: 12px;
}
.mcp-form .mcp-form__feedback {
	padding: 16px 24px;
	border-radius: 20px;
	text-align: center;
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 1.5;
}
.mcp-form .mcp-form__feedback[hidden] {
	display: none;
}
.mcp-form .mcp-form__feedback.is-success {
	background: oklch(96.2% 0.044 156.743);
	color: oklch(44.8% 0.119 151.328);
}
.mcp-form .mcp-form__feedback.is-error {
	background: oklch(93.6% 0.032 17.717);
	color: oklch(44.4% 0.177 26.899);
}
/* Immagine */
.mcp-contact .mcp-contact__media {
	margin-top: 32px;
}
.mcp-contact .mcp-contact__image {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: 20px;
}
.mcp-contact .mcp-contact__image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.mcp-contact .mcp-contact__image--mobile img {
	aspect-ratio: 414 / 335;
}
.mcp-contact .mcp-contact__image--desktop {
	display: none;
}
.mcp-contact .mcp-contact__image--desktop img {
	aspect-ratio: 1630 / 583;
}
@media (min-width: 640px) {
	.mcp-contact {
		padding: 80px 0;
	}
	.mcp-contact .mcp-contact__inner {
		padding: 0 40px;
	}
	.mcp-contact p.mcp-contact__eyebrow {
		margin-bottom: 16px;
		font-size: 12px;
	}
	.mcp-contact .mcp-contact__title {
		font-size: 38px;
	}
	.mcp-contact .mcp-contact__info {
		flex-direction: row;
		align-items: flex-start;
	}
	.mcp-contact .mcp-contact__label {
		font-size: 16px;
	}
	.mcp-contact p.mcp-contact__link,
	.mcp-contact p.mcp-contact__link a {
		gap: 12px;
		font-size: 16px;
	}
	.mcp-contact .mcp-contact__divider {
		display: block;
	}
	.mcp-form .mcp-form__row {
		gap: 16px;
	}
	.mcp-form .mcp-form__input {
		padding-left: 32px;
		padding-right: 32px;
		font-size: 16px;
	}
	.mcp-form .mcp-form__caret {
		right: 32px;
	}
	.mcp-form .mcp-form__consent-label {
		font-size: 13px;
	}
	.mcp-form .mcp-form__submit {
		padding-left: 32px;
	}
	.mcp-form .mcp-form__submit-text {
		font-size: 16px;
	}
	.mcp-form .mcp-form__feedback {
		font-size: 16px;
	}
}
@media (min-width: 768px) {
	.mcp-contact {
		padding: 96px 0;
	}
	.mcp-contact .mcp-contact__inner {
		padding: 0 48px;
	}
	.mcp-contact .mcp-contact__title {
		font-size: 40px;
	}
	.mcp-form .mcp-form__row {
		flex-direction: row;
	}
}
@media (min-width: 1024px) {
	.mcp-contact {
		overflow: visible;
		padding: 112px 0;
	}
	.mcp-contact .mcp-contact__inner {
		padding: 0 80px;
	}
	.mcp-contact .mcp-contact__col {
		width: 50%;
		gap: 48px;
	}
	.mcp-contact .mcp-contact__title {
		font-size: 44px;
	}
	.mcp-contact .mcp-contact__form {
		position: absolute;
		right: 0;
		top: 0;
		z-index: 20;
		width: 44%;
		min-width: 320px;
		max-width: 720px;
		margin-top: 0;
	}
	.mcp-contact .mcp-contact__media {
		margin-top: 48px;
	}
	.mcp-contact .mcp-contact__image {
		border-radius: 40px;
	}
	.mcp-contact .mcp-contact__image--mobile {
		display: none;
	}
	.mcp-contact .mcp-contact__image--desktop {
		display: block;
	}
}
/* Nel sito originale uno stile globale vince sulle utility fino a 1150px */
@media (min-width: 1151px) {
	.mcp-contact .mcp-contact__info {
		gap: 64px;
	}
	.mcp-form {
		gap: 16px;
	}
}
@media (min-width: 1280px) {
	.mcp-contact .mcp-contact__inner {
		padding: 0 145px;
	}
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.mcp-footer {
	position: relative;
	width: 100%;
	background: var(--mcp-main);
	padding: 48px 0;
}
.mcp-footer .mcp-footer__inner {
	padding: 0 32px;
}
.mcp-footer .mcp-footer__gallery,
.mcp-footer .mcp-footer__cols,
.mcp-footer .mcp-footer__line,
.mcp-footer .mcp-footer__bottom {
	max-width: 1630px;
	margin-left: auto;
	margin-right: auto;
}
/* Galleria: riga scorrevole sotto i 768, griglia sopra */
.mcp-footer .mcp-footer__gallery {
	display: flex;
	gap: 12px;
	margin: 0 -32px 48px;
	padding: 0 32px;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.mcp-footer .mcp-footer__gallery::-webkit-scrollbar {
	display: none;
}
.mcp-footer .mcp-footer__gallery-item {
	width: 200px;
	flex-shrink: 0;
	aspect-ratio: 252 / 230;
	overflow: hidden;
	border-radius: 16px;
	margin: 0;
}
.mcp-footer .mcp-footer__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mcp-footer .mcp-footer__cols {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 32px;
	margin-bottom: 48px;
}
.mcp-footer .mcp-footer__brand,
.mcp-footer .mcp-footer__address,
.mcp-footer .mcp-footer__contacts {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.mcp-footer .mcp-footer__logo {
	width: 100%;
	max-width: 360px;
	margin: 0;
}
.mcp-footer .mcp-footer__logo img {
	width: 100%;
	height: auto;
}
.mcp-footer .mcp-footer__heading {
	margin: 0;
	font-family: var(--mcp-font-marcellus);
	font-size: 20px;
	line-height: 32px;
	font-weight: 400;
	color: #fff;
	text-transform: capitalize;
}
.mcp-footer p.mcp-footer__contact {
	gap: 12px;
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 26px;
	color: #fff;
	text-transform: capitalize;
}
.mcp-footer p.mcp-footer__contact a {
	gap: 12px;
}
.mcp-footer p.mcp-footer__contact--mail {
	text-transform: none;
}
.mcp-footer p.is-style-mcp-link-tel::before {
	background-color: var(--mcp-white);
	background-image: url(../images/icons/tel-dark.svg);
}
.mcp-footer p.is-style-mcp-link-mail::before {
	background-color: var(--mcp-white);
	background-image: url(../images/icons/mail-dark.svg);
}
.mcp-footer .mcp-footer__line {
	display: block;
	width: 100% !important;
	height: 1px;
	margin: 0 auto 32px;
	border: 0;
	background: rgba(255, 255, 255, 0.2);
	opacity: 1;
}
.mcp-footer .mcp-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.mcp-footer .mcp-footer__copy,
.mcp-footer .mcp-footer__privacy {
	margin: 0;
	font-family: var(--mcp-font-lato);
	font-size: 14px;
	line-height: 26px;
	color: #fff;
}
.mcp-footer .mcp-footer__privacy a {
	color: #fff;
	transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke;
	transition-timing-function: var(--mcp-ease);
	transition-duration: 0.15s;
}
.mcp-footer .mcp-footer__privacy a:hover {
	color: var(--mcp-accent);
}
@media (min-width: 640px) {
	.mcp-footer {
		padding: 64px 0;
	}
	.mcp-footer .mcp-footer__inner {
		padding: 0 40px;
	}
	.mcp-footer .mcp-footer__gallery {
		margin-bottom: 64px;
	}
	.mcp-footer .mcp-footer__brand,
	.mcp-footer .mcp-footer__address,
	.mcp-footer .mcp-footer__contacts {
		gap: 32px;
	}
	.mcp-footer .mcp-footer__heading {
		font-size: 22px;
	}
	.mcp-footer p.mcp-footer__contact,
	.mcp-footer p.mcp-footer__contact a {
		gap: 16px;
		font-size: 16px;
	}
	.mcp-footer .mcp-footer__line {
		margin-bottom: 40px;
	}
	.mcp-footer .mcp-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.mcp-footer .mcp-footer__copy,
	.mcp-footer .mcp-footer__privacy {
		font-size: 16px;
	}
}
@media (min-width: 768px) {
	.mcp-footer {
		padding: 80px 0;
	}
	.mcp-footer .mcp-footer__inner {
		padding: 0 48px;
	}
	.mcp-footer .mcp-footer__gallery {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
		margin: 0 auto 64px;
		padding: 0;
		overflow: visible;
	}
	.mcp-footer .mcp-footer__gallery-item {
		width: auto;
	}
	.mcp-footer .mcp-footer__cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1024px) {
	.mcp-footer {
		padding: 96px 0;
	}
	.mcp-footer .mcp-footer__inner {
		padding: 0 80px;
	}
	.mcp-footer .mcp-footer__gallery {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 20px;
		margin-bottom: 80px;
	}
	.mcp-footer .mcp-footer__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 48px;
		margin-bottom: 64px;
	}
}
@media (min-width: 1280px) {
	.mcp-footer .mcp-footer__inner {
		padding: 0 145px;
	}
}

/* --------------------------------------------------------------------------
   Pagine interne (privacy policy e future pagine)
   -------------------------------------------------------------------------- */
.mcp-page {
	background: #fff;
	padding: 48px 0;
}
.mcp-page .mcp-page__inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 16px;
}
.mcp-page .mcp-page__title {
	margin: 0 0 16px;
	font-family: var(--mcp-font-marcellus);
	font-size: 32px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--mcp-black);
}
.mcp-prose {
	font-family: var(--mcp-font-lato);
	font-size: 15px;
	line-height: 26px;
	color: var(--mcp-gray);
}
.mcp-prose .mcp-prose__meta {
	margin: 0 0 32px;
	font-size: 14px;
	line-height: 1.5;
}
.mcp-prose .mcp-prose__intro {
	margin: 0 0 32px;
}
.mcp-prose .mcp-prose__card {
	margin: 0 0 40px;
	padding: 24px;
	border-radius: 20px;
	background: var(--mcp-white);
}
.mcp-prose .mcp-prose__card-title {
	margin: 0 0 16px;
	font-family: var(--mcp-font-marcellus);
	font-size: 18px;
	line-height: 1.5;
	color: var(--mcp-black);
}
.mcp-prose .mcp-prose__card-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}
.mcp-prose .mcp-prose__card-list li + li {
	margin-top: 8px;
}
.mcp-prose a {
	color: var(--mcp-accent);
}
.mcp-prose a:hover {
	text-decoration: underline;
}
.mcp-prose .mcp-prose__section {
	margin: 0 0 40px;
}
.mcp-prose .mcp-prose__section > h2,
.mcp-prose > h2 {
	margin: 0 0 16px;
	font-family: var(--mcp-font-marcellus);
	font-size: 22px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--mcp-black);
}
.mcp-prose .mcp-prose__section > h3,
.mcp-prose > h3 {
	margin: 24px 0 12px;
	font-family: var(--mcp-font-marcellus);
	font-size: 18px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--mcp-black);
}
.mcp-prose .mcp-prose__section > p,
.mcp-prose > p {
	margin: 0 0 16px;
}
.mcp-prose .mcp-prose__section > p:last-child {
	margin-bottom: 0;
}
.mcp-prose .mcp-prose__section > ul,
.mcp-prose .mcp-prose__section > ol,
.mcp-prose > ul,
.mcp-prose > ol {
	margin: 0;
	padding-left: 24px;
	list-style: disc;
}
.mcp-prose .mcp-prose__section > ol,
.mcp-prose > ol {
	list-style: decimal;
}
.mcp-prose ol.mcp-list-alpha {
	list-style: lower-alpha;
}
.mcp-prose .mcp-prose__section > ul li + li,
.mcp-prose .mcp-prose__section > ol li + li {
	margin-top: 8px;
}
.mcp-prose .mcp-prose__section > ul + p,
.mcp-prose .mcp-prose__section > ol + p {
	margin-top: 16px;
}
@media (min-width: 640px) {
	.mcp-page {
		padding: 64px 0;
	}
	.mcp-page .mcp-page__inner {
		padding: 0 24px;
	}
	.mcp-page .mcp-page__title {
		font-size: 40px;
	}
	.mcp-prose {
		font-size: 16px;
	}
	.mcp-prose .mcp-prose__meta {
		margin-bottom: 48px;
		font-size: 16px;
	}
	.mcp-prose .mcp-prose__card {
		padding: 32px;
	}
	.mcp-prose .mcp-prose__card-title {
		font-size: 20px;
	}
	.mcp-prose .mcp-prose__card-list {
		font-size: 15px;
	}
	.mcp-prose .mcp-prose__section > h2,
	.mcp-prose > h2 {
		font-size: 24px;
	}
	.mcp-prose .mcp-prose__section > h3,
	.mcp-prose > h3 {
		font-size: 20px;
	}
}
@media (min-width: 768px) {
	.mcp-page {
		padding: 80px 0;
	}
	.mcp-page .mcp-page__inner {
		padding: 0 32px;
	}
	.mcp-page .mcp-page__title {
		font-size: 48px;
	}
}
