/**
 * YZ Mobili — foglio di stile del tema.
 *
 * I token (colori, spazi, font) vivono in theme.json ed entrano qui come var(--wp--*).
 * Questo file contiene solo la traduzione in classi del design originale.
 */

/* ---------------------------------------------------------------- token locali */

:root {
	--yz-cream: var(--wp--preset--color--cream, #faf8f4);
	--yz-sand: var(--wp--preset--color--sand, #f2ede4);
	--yz-sand-deep: var(--wp--preset--color--sand-deep, #e5ddd2);
	--yz-ink: var(--wp--preset--color--ink, #1a1715);
	--yz-ink-soft: var(--wp--preset--color--ink-soft, #231f1c);
	--yz-gold: var(--wp--preset--color--gold, #c9a96e);
	--yz-muted: var(--wp--preset--color--muted, #7a6e63);
	--yz-wa: var(--wp--preset--color--whatsapp, #25d366);
	--yz-wa-hover: #1db954;
	--yz-radius: 2px;
	--yz-border: rgba(26, 23, 21, 0.07);
	--yz-border-strong: rgba(26, 23, 21, 0.2);
	--yz-surface-img: #e8e0d5;
	--yz-header-h: 104px;
	--yz-serif: var(--wp--preset--font-family--serif, "Cormorant Garamond", Georgia, serif);
	--yz-sans: var(--wp--preset--font-family--sans, "DM Sans", system-ui, sans-serif);
}

/* ---------------------------------------------------------------- base */

/* Il padding dei contenitori deve stare DENTRO la larghezza, altrimenti su mobile
   ogni sezione sfora di 48px e la pagina scrolla in orizzontale. */
.yz-block,
.yz-container,
.yz-block *,
.yz-container * {
	box-sizing: border-box;
}

body {
	background: var(--yz-cream);
	color: var(--yz-ink);
	font-family: var(--yz-sans);
	-webkit-font-smoothing: antialiased;
}

/* Senza hero (pagine interne) l'header è opaco e occupa spazio nel flusso. */
body.yz-no-hero {
	padding-top: var(--yz-header-h);
}

.yz-container {
	width: 100%;
	max-width: 1152px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.yz-container--wide {
	max-width: 1280px;
}

@media (min-width: 1024px) {
	.yz-container {
		padding-inline: 3rem;
	}
}

.yz-block {
	padding-block: clamp(5rem, 3rem + 6vw, 7rem);
}

/* I blocchi di servizio non sono sezioni: dentro l'header il padding di sezione li
   gonfiava di 112px sopra e sotto, rendendo la barra sticky alta 345px. */
.yz-block--topbar,
.yz-block--wa-button,
.yz-block--footer {
	padding-block: 0;
}

.yz-icon {
	flex: none;
}

/* ---------------------------------------------------------------- tipografia condivisa */

.yz-eyebrow {
	margin: 0 0 1rem;
	font-family: var(--yz-sans);
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--yz-muted);
}

.yz-eyebrow--gold {
	color: var(--yz-gold);
}

.yz-head {
	margin-bottom: 4rem;
}

.yz-head--center {
	text-align: center;
}

.yz-head--left {
	text-align: left;
	margin-bottom: 0;
}

.yz-head__title {
	margin: 0;
	font-family: var(--yz-serif);
	font-weight: 600;
	font-size: clamp(1.875rem, 1.2rem + 2.6vw, 3rem);
	line-height: 1.12;
	color: var(--yz-ink);
}

.yz-head__sub {
	max-width: 32rem;
	margin: 1rem auto 0;
	font-size: 0.875rem;
	color: var(--yz-muted);
}

.yz-head--left .yz-head__sub {
	margin-inline: 0;
}

.yz-head--dark .yz-head__title {
	color: #fff;
}

.yz-head--dark .yz-head__sub {
	color: rgba(255, 255, 255, 0.4);
}

/* ---------------------------------------------------------------- pulsante WhatsApp */

.yz-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	border-radius: var(--yz-radius);
	background: var(--yz-wa);
	color: #fff;
	font-family: var(--yz-sans);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background-color 0.2s, box-shadow 0.2s, transform 0.1s;
}

.yz-wa:hover,
.yz-wa:focus-visible {
	background: var(--yz-wa-hover);
	color: #fff;
	box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.yz-wa:active {
	transform: scale(0.98);
}

.yz-wa--sm {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	gap: 0.5rem;
}

.yz-wa--md {
	padding: 0.875rem 1.5rem;
	font-size: 0.9375rem;
}

.yz-wa--lg {
	padding: 1rem 2.25rem;
	font-size: 1.125rem;
	gap: 0.75rem;
}

.yz-wa--center {
	margin-inline: auto;
}

.yz-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--yz-radius);
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s, border-color 0.2s;
}

.yz-btn-ghost:hover,
.yz-btn-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.7);
	color: #fff;
}

/* ---------------------------------------------------------------- header */

.yz-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 50;
	background: transparent;
	transition: background-color 0.3s, box-shadow 0.3s;
}

/* Sopra l'hero il testo è bianco: senza una velatura resta illeggibile quando
   la foto è chiara (cielo). Sparisce appena l'header diventa opaco. */
.yz-header:not(.is-scrolled) {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.12) 70%, transparent);
}

.yz-header.is-scrolled {
	background: var(--yz-cream);
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

/* Fondo scuro fisso: prima la barra era trasparente e il testo bianco finiva sopra
   qualunque cosa ci fosse sotto (cielo chiaro dell'hero, sfondo crema), risultando
   illeggibile. Con un fondo proprio il contrasto è garantito in ogni stato. */
.yz-topbar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.5rem 1.5rem;
	background: var(--yz-ink);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.85);
}

.yz-header.is-scrolled .yz-topbar {
	background: var(--yz-ink);
	color: rgba(255, 255, 255, 0.85);
}

.yz-topbar__icon {
	display: inline-flex;
	color: var(--yz-gold);
}

.yz-topbar__num {
	margin-left: 0.125rem;
	color: var(--yz-gold);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.yz-topbar__num:hover {
	opacity: 0.75;
	color: var(--yz-gold);
}

.yz-topbar__sep {
	margin-inline: 0.5rem;
	opacity: 0.35;
}

.yz-topbar__hours {
	opacity: 0.7;
}

/* Su telefono la barra deve restare una riga sola: restano icona, etichetta e numero. */
@media (max-width: 600px) {
	.yz-topbar {
		gap: 0.375rem;
		font-size: 0.625rem;
		white-space: nowrap;
	}

	.yz-topbar__sep,
	.yz-topbar__hours {
		display: none;
	}
}

/* La barra segue la stessa griglia del contenuto: su schermi larghi il logo resta
   allineato alle sezioni sotto, invece di finire incollato al bordo della finestra. */
.yz-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	max-width: 1152px;
	margin-inline: auto;
	padding: 0.75rem 1.5rem;
}

@media (min-width: 1024px) {
	.yz-header__bar {
		padding-inline: 3rem;
	}
}


/* Il logo è a colori: sopra l'hero scuro va invertito, come nel design. */
.yz-header .wp-block-site-logo img {
	height: 2.5rem;
	width: auto;
	filter: brightness(0) invert(1);
	transition: filter 0.3s;
}

.yz-header.is-scrolled .wp-block-site-logo img {
	filter: none;
}

@media (min-width: 1024px) {
	.yz-header .wp-block-site-logo img {
		height: 3rem;
	}
}

/* Navigazione core: colori invertiti finché l'header è trasparente.
   Il selettore è volutamente lungo: gli stili dei link di core caricano DOPO quelli del
   tema e a parità di specificità vincerebbero, riportando i link al colore inchiostro. */
.yz-header .wp-block-navigation {
	font-size: 0.8125rem;
	font-weight: 600;
	gap: 2rem;
}

.yz-header .wp-block-navigation .wp-block-navigation-item__content,
.yz-header .wp-block-navigation a,
.yz-header .wp-block-navigation a:visited {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: opacity 0.2s, color 0.3s;
}

.yz-header .wp-block-navigation a:hover,
.yz-header .wp-block-navigation .wp-block-navigation-item__content:hover {
	opacity: 0.65;
	color: #fff;
}

.yz-header.is-scrolled .wp-block-navigation .wp-block-navigation-item__content,
.yz-header.is-scrolled .wp-block-navigation a,
.yz-header.is-scrolled .wp-block-navigation a:visited,
.yz-header.is-scrolled .wp-block-navigation a:hover,
.yz-header.is-scrolled .wp-block-navigation__responsive-container-open {
	color: var(--yz-ink);
}

.yz-header .wp-block-navigation__responsive-container-open {
	color: #fff;
}

/* L'overlay mobile di core è chiaro: dentro, i link tornano scuri. */
.yz-header .wp-block-navigation__responsive-container.is-menu-open {
	background: var(--yz-cream);
	padding-top: 4rem;
}

.yz-header .wp-block-navigation__responsive-container.is-menu-open a {
	color: var(--yz-ink);
	font-family: var(--yz-serif);
	font-size: 1.5rem;
}

/* Il pulsante WhatsApp nell'header non deve ereditare gli stili dei bottoni core. */
.yz-header .yz-wa-wrap .yz-wa {
	white-space: nowrap;
}

@media (max-width: 600px) {
	.yz-header .yz-wa-wrap .yz-wa span:not(.yz-icon) {
		display: none;
	}

	.yz-header .yz-wa-wrap .yz-wa {
		padding: 0.625rem;
	}
}

/* ---------------------------------------------------------------- hero */

.yz-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 680px;
	height: 100svh;
	padding: var(--yz-header-h) 1.5rem 3rem;
	text-align: center;
	background: #2a2420;
	overflow: hidden;
}

.yz-hero__bg {
	position: absolute;
	inset: 0;
}

.yz-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
}

.yz-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.65));
}

.yz-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 64rem;
	margin-inline: auto;
}

.yz-hero__title {
	margin: 0 0 1.75rem;
	font-family: var(--yz-serif);
	font-weight: 600;
	font-size: clamp(2.25rem, 1.2rem + 4.6vw, 4.25rem);
	line-height: 1.07;
	color: #fff;
}

.yz-hero__sub {
	max-width: 42rem;
	margin: 0 auto 2.75rem;
	font-size: clamp(1.125rem, 1rem + 0.4vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
}

.yz-hero__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
	.yz-hero__actions {
		flex-direction: row;
	}
}

.yz-hero__note {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.4);
}

.yz-hero__scroll {
	position: absolute;
	bottom: 2.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	opacity: 0.5;
}

.yz-hero__scroll span {
	width: 1px;
	height: 2.5rem;
	background: rgba(255, 255, 255, 0.5);
}

.yz-hero__scroll i {
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
}

/* ---------------------------------------------------------------- barra numeri */

.yz-trust {
	padding-block: 1.5rem;
	background: var(--yz-ink);
}

.yz-trust__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	row-gap: 1.25rem;
	max-width: 1152px;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.yz-trust__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 130px;
	padding: 0.25rem 1.75rem;
}

@media (min-width: 768px) {
	.yz-trust__item + .yz-trust__item {
		border-left: 1px solid rgba(255, 255, 255, 0.1);
	}
}

.yz-trust__num {
	font-family: var(--yz-serif);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--yz-gold);
}

.yz-trust__label {
	margin-top: 0.5rem;
	font-size: 0.625rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
}

/* ---------------------------------------------------------------- card categorie */

.yz-cats {
	background: var(--yz-cream);
}

.yz-cats__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.yz-cats__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.yz-cat {
	background: var(--yz-sand);
	overflow: hidden;
}

.yz-cat__media {
	height: 16rem;
	background: var(--yz-surface-img);
	overflow: hidden;
}

.yz-cat__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

.yz-cat:hover .yz-cat__img {
	transform: scale(1.05);
}

.yz-cat__body {
	padding: 1.75rem;
}

@media (min-width: 1024px) {
	.yz-cat__body {
		padding: 2rem;
	}
}

.yz-cat__body .yz-eyebrow {
	margin-bottom: 0.625rem;
	font-size: 0.5625rem;
}

.yz-cat__title {
	margin: 0 0 0.75rem;
	font-family: var(--yz-serif);
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
}

.yz-cat__desc {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--yz-muted);
}

/* ---------------------------------------------------------------- carosello prodotti */

.yz-products {
	background: var(--yz-sand);
}

.yz-products__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 3rem;
}

.yz-products__nav {
	display: none;
	gap: 0.5rem;
}

@media (min-width: 768px) {
	.yz-products__nav {
		display: flex;
	}
}

.yz-products__nav--mobile {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

@media (min-width: 768px) {
	.yz-products__nav--mobile {
		display: none;
	}
}

.yz-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--yz-border-strong);
	border-radius: var(--yz-radius);
	background: transparent;
	color: var(--yz-ink);
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s;
}

.yz-arrow:hover {
	background: var(--yz-ink);
	color: #fff;
}

.yz-products__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 0.25rem;
	scrollbar-width: none;
}

.yz-products__track::-webkit-scrollbar {
	display: none;
}

.yz-product {
	flex: none;
	width: 78vw;
	scroll-snap-align: start;
	background: var(--yz-cream);
}

@media (min-width: 640px) {
	.yz-product {
		width: 48vw;
	}
}

@media (min-width: 768px) {
	.yz-product {
		width: 31%;
	}
}

@media (min-width: 1024px) {
	.yz-product {
		width: 23%;
	}
}

.yz-product__media {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 268px;
	padding: 1.5rem;
	background: #f8f5f0;
	overflow: hidden;
}

.yz-product__img {
	width: 100%;
	height: 100%;
	transition: transform 0.5s;
}

.yz-product__media--contain .yz-product__img {
	object-fit: contain;
	mix-blend-mode: multiply;
}

.yz-product__media--cover .yz-product__img {
	object-fit: cover;
}

.yz-product:hover .yz-product__img {
	transform: scale(1.05);
}

.yz-product__body {
	padding: 1.25rem;
	border-top: 1px solid var(--yz-border);
}

.yz-product__cat {
	margin: 0 0 0.25rem;
	font-size: 0.5625rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--yz-muted);
}

.yz-product__title {
	margin: 0 0 0.75rem;
	font-family: var(--yz-serif);
	font-size: 1.0625rem;
	font-weight: 500;
	line-height: 1.35;
}

.yz-product__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.375rem;
}

.yz-badge {
	padding: 0.25rem 0.625rem;
	background: var(--yz-sand-deep);
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #5a4f47;
}

/* ---------------------------------------------------------------- perché YZ */

.yz-why {
	background: var(--yz-cream);
}

.yz-why__grid {
	display: grid;
	gap: 4rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.yz-why__grid {
		grid-template-columns: 360px 1fr;
		gap: 6rem;
	}

	.yz-why__intro {
		position: sticky;
		top: 8rem;
	}
}

.yz-why__title {
	margin: 0 0 1.5rem;
	font-family: var(--yz-serif);
	font-size: clamp(1.875rem, 1.2rem + 2.6vw, 3rem);
	font-weight: 600;
	line-height: 1.15;
}

.yz-why__text {
	margin: 0 0 2.25rem;
	line-height: 1.7;
	color: var(--yz-muted);
}

.yz-why__items {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.yz-why__items {
		grid-template-columns: repeat(2, 1fr);
	}
}

.yz-why__item {
	padding: 1.5rem;
	background: var(--yz-sand);
	transition: background-color 0.2s;
}

.yz-why__item:hover {
	background: #ebe2d5;
}

.yz-why__icon {
	margin-bottom: 1rem;
	color: var(--yz-gold);
}

.yz-why__item-title {
	margin: 0 0 0.5rem;
	font-family: var(--yz-serif);
	font-size: 1rem;
	font-weight: 600;
}

.yz-why__item-desc {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--yz-muted);
}

/* ---------------------------------------------------------------- vantaggi */

.yz-perks {
	background: var(--yz-ink);
}

.yz-perks__grid {
	display: grid;
	gap: 1px;
	background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
	.yz-perks__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.yz-perks__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.yz-perk {
	padding: 2rem;
	background: var(--yz-ink);
}

@media (min-width: 1024px) {
	.yz-perk {
		padding: 2.5rem;
	}
}

.yz-perk__icon {
	margin-bottom: 1.25rem;
	color: var(--yz-gold);
}

.yz-perk__title {
	margin: 0 0 0.75rem;
	font-family: var(--yz-serif);
	font-size: 1.0625rem;
	font-weight: 500;
	color: #fff;
}

.yz-perk__desc {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.45);
}

/* ---------------------------------------------------------------- personalizzazione */

.yz-custom {
	background: var(--yz-sand);
}

.yz-custom__grid {
	display: grid;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.yz-custom__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.yz-custom__title {
	margin: 0 0 1.5rem;
	font-family: var(--yz-serif);
	font-size: clamp(1.875rem, 1.2rem + 2.4vw, 2.75rem);
	font-weight: 600;
	line-height: 1.15;
}

.yz-custom__text {
	margin: 0;
	line-height: 1.7;
	color: var(--yz-muted);
}

.yz-custom__options {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

@media (min-width: 640px) {
	.yz-custom__options {
		grid-template-columns: repeat(3, 1fr);
	}
}

.yz-option {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	padding: 1rem;
	background: var(--yz-cream);
	border: 1px solid var(--yz-border);
	transition: border-color 0.2s;
}

@media (min-width: 1024px) {
	.yz-option {
		padding: 1.25rem;
	}
}

.yz-option:hover {
	border-color: rgba(201, 169, 110, 0.5);
}

.yz-option__icon {
	color: var(--yz-gold);
}

.yz-option__label {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35;
}

/* ---------------------------------------------------------------- galleria */

.yz-gallery {
	background: var(--yz-cream);
}

.yz-gallery__masonry {
	columns: 3 280px;
	column-gap: 12px;
}

.yz-gallery__item {
	position: relative;
	margin: 0 0 12px;
	background: var(--yz-surface-img);
	overflow: hidden;
	break-inside: avoid;
}

.yz-gallery__img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.7s;
}

.yz-gallery__item:hover .yz-gallery__img {
	transform: scale(1.05);
}

.yz-gallery__caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 1rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
	color: #fff;
	font-family: var(--yz-serif);
	font-size: 1rem;
	line-height: 1.35;
	opacity: 0;
	transition: opacity 0.3s;
}

.yz-gallery__item:hover .yz-gallery__caption,
.yz-gallery__item:focus-within .yz-gallery__caption {
	opacity: 1;
}

/* Su touch la didascalia resta visibile: senza hover sarebbe irraggiungibile. */
@media (hover: none) {
	.yz-gallery__caption {
		opacity: 1;
	}
}

/* ---------------------------------------------------------------- processo */

.yz-steps {
	background: var(--yz-sand);
}

.yz-steps__wrap {
	position: relative;
}

.yz-steps__line {
	display: none;
}

@media (min-width: 1024px) {
	.yz-steps__line {
		display: block;
		position: absolute;
		top: 2.375rem;
		left: 8%;
		right: 8%;
		height: 1px;
		background: rgba(201, 169, 110, 0.22);
	}
}

.yz-steps__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.yz-steps__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.yz-steps__grid {
		grid-template-columns: repeat(5, 1fr);
		gap: 0.75rem;
	}
}

.yz-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-inline: 0.5rem;
	text-align: center;
}

.yz-step__num {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.75rem;
	height: 4.75rem;
	margin-bottom: 1.5rem;
	border: 1px solid rgba(201, 169, 110, 0.35);
	border-radius: 999px;
	background: var(--yz-cream);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	font-family: var(--yz-serif);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--yz-gold);
}

.yz-step__title {
	margin: 0 0 0.625rem;
	font-family: var(--yz-serif);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
}

.yz-step__desc {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: var(--yz-muted);
}

/* ---------------------------------------------------------------- recensioni */

.yz-reviews {
	background: var(--yz-ink);
}

.yz-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 640px) {
	.yz-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.yz-reviews__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.yz-review {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	padding: 1.75rem;
	background: var(--yz-ink-soft);
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: border-color 0.2s;
}

.yz-review:hover {
	border-color: rgba(201, 169, 110, 0.2);
}

.yz-review__stars {
	display: flex;
	gap: 0.125rem;
	color: var(--yz-gold);
}

.yz-review__text {
	flex: 1;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.75);
}

.yz-review__meta {
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yz-review__name {
	margin: 0;
	font-family: var(--yz-serif);
	font-size: 0.875rem;
	font-weight: 500;
	color: #fff;
}

.yz-review__role {
	margin: 0.125rem 0 0;
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.35);
}

/* ---------------------------------------------------------------- CTA WhatsApp */

.yz-wa-cta {
	padding-block: clamp(6rem, 3.5rem + 8vw, 9rem);
	background: var(--yz-cream);
	text-align: center;
}

.yz-wa-cta__inner {
	max-width: 48rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.yz-wa-cta__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-bottom: 2.25rem;
	border-radius: 999px;
	background: rgba(37, 211, 102, 0.1);
	color: var(--yz-wa);
}

.yz-wa-cta__title {
	margin: 0 0 1.5rem;
	font-family: var(--yz-serif);
	font-size: clamp(1.875rem, 1.2rem + 2.6vw, 3rem);
	font-weight: 600;
	line-height: 1.15;
}

.yz-wa-cta__text {
	max-width: 36rem;
	margin: 0 auto 0.75rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--yz-muted);
}

.yz-wa-cta__note {
	margin: 0 0 2.75rem;
	font-size: 0.875rem;
	color: rgba(122, 110, 99, 0.5);
}

.yz-wa-cta__langs {
	margin: 2.25rem 0 0;
	font-size: 0.625rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(122, 110, 99, 0.4);
}

/* ---------------------------------------------------------------- CTA finale */

.yz-final {
	padding-block: clamp(6rem, 3.5rem + 7vw, 8rem);
	background: var(--yz-sand);
	text-align: center;
}

.yz-final__inner {
	max-width: 56rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.yz-final__title {
	margin: 0 0 1.5rem;
	font-family: var(--yz-serif);
	font-size: clamp(2.25rem, 1.4rem + 3.4vw, 3.5rem);
	font-weight: 600;
	line-height: 1.12;
}

.yz-final__text {
	max-width: 36rem;
	margin: 0 auto 2.75rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--yz-muted);
}

.yz-final__badges {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1.75rem;
	margin: 3.5rem 0 0;
	padding: 2.5rem 0 0;
	border-top: 1px solid rgba(26, 23, 21, 0.09);
	list-style: none;
}

.yz-final__badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.625rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--yz-muted);
}

.yz-final__badge span {
	font-size: 0.5rem;
	color: var(--yz-gold);
}

/* ---------------------------------------------------------------- footer */

.yz-footer {
	padding: 3rem 0 2rem;
	background: var(--yz-ink);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.yz-footer__top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
	.yz-footer__top {
		flex-direction: row;
	}
}

.yz-footer__brand {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 20rem;
}

.yz-footer__logo {
	height: 2.25rem;
	width: auto;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.yz-footer__desc {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.4);
}

.yz-footer__col {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.yz-footer__col .yz-eyebrow {
	margin-bottom: 0.25rem;
	font-size: 0.5625rem;
}

.yz-footer__phone,
.yz-footer__wa {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.2s;
}

.yz-footer__phone {
	color: #fff;
	font-weight: 600;
}

.yz-footer__phone:hover {
	color: var(--yz-gold);
}

.yz-footer__wa {
	color: rgba(255, 255, 255, 0.55);
}

.yz-footer__wa:hover {
	color: #fff;
}

.yz-footer__legal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
}

@media (min-width: 640px) {
	.yz-footer__legal {
		flex-direction: row;
		text-align: left;
	}
}

.yz-footer__legal-text {
	margin: 0;
	font-size: 0.6875rem;
	color: rgba(255, 255, 255, 0.25);
}

.yz-footer__note {
	margin: 0;
	font-size: 0.625rem;
	color: rgba(255, 255, 255, 0.15);
}

/* ---------------------------------------------------------------- accessibilità */

:where(a, button, [tabindex]):focus-visible {
	outline: 2px solid var(--yz-gold);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--yz-header-h) + 1rem);
}
