/*
 * Lemon Drops — token di marca + sistema visivo.
 * Valori campionati dal logo ufficiale (backup-flazio/assets/38925_907fe0b8....png):
 *   giallo limone #FDD835 / #FCD705, magenta #AF0F71.
 * Regola di marca: solo questa palette. Nessuna icona generica, nessuna emoji decorativa.
 * La personalità nasce dalla tipografia (Fraunces editoriale + Inter) e dal contrasto giallo/magenta.
 */

:root {
	/* Colori marca */
	--ld-yellow:        #FDD835; /* giallo limone primario (CTA, accenti, fasce) */
	--ld-yellow-deep:   #FCD705; /* giallo piu carico (hover/dettagli) */
	--ld-magenta:       #AF0F71; /* fucsia del logo (accenti secondari, link, dettagli) */
	--ld-magenta-dark:  #8E0A5C; /* magenta hover */
	--ld-cream:         #FEFBED; /* bianco caldo: sfondo pagina/superfici */
	--ld-grey-ink:      #2A2A2A; /* testo principale: mai nero puro */
	--ld-grey-soft:     #5A5550; /* testo secondario, didascalie */
	--ld-hairline:      #ECE6D2; /* linee sottili su crema */
	--ld-white:         #FFFFFF;

	/* Tipografia (display editoriale + sans leggibile) */
	--ld-font-display:  "Fraunces", Georgia, "Times New Roman", serif;
	--ld-font-body:     "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Misure */
	--ld-measure:       46rem;   /* misura di lettura per testi lunghi (legale) */
	--ld-radius:        14px;
	--ld-radius-pill:   999px;
	--ld-shadow-soft:   0 10px 30px rgba(42, 42, 42, .08);
	--ld-shadow-card:   0 4px 18px rgba(42, 42, 42, .06);
}

/* ============================ Base ============================ */
body {
	background-color: var(--ld-cream);
	color: var(--ld-grey-ink);
	font-family: var(--ld-font-body);
	font-feature-settings: "kern", "liga", "calt";
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.wp-block-heading {
	font-family: var(--ld-font-display);
	color: var(--ld-grey-ink);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.12;
}

/* Fraunces guadagna carattere con l'asse ottico alto sui titoli grandi */
h1, .entry-title, .wp-block-heading.has-x-large-font-size {
	font-optical-sizing: auto;
	font-weight: 600;
	letter-spacing: -0.02em;
}

p { line-height: 1.7; }

a {
	color: var(--ld-magenta);
	text-underline-offset: 0.18em;
	text-decoration-thickness: from-font;
	transition: color .15s ease;
}
a:hover,
a:focus { color: var(--ld-magenta-dark); }

/* Selezione testo in tinta brand */
::selection { background: var(--ld-yellow); color: var(--ld-grey-ink); }

/* ============================ Pulsante di marca ============================ */
.ld-btn,
.wp-block-button.is-style-ld .wp-block-button__link {
	display: inline-block;
	background-color: var(--ld-yellow);
	color: var(--ld-grey-ink);
	font-family: var(--ld-font-body);
	font-weight: 700;
	letter-spacing: 0.01em;
	border: 0;
	border-radius: var(--ld-radius-pill);
	padding: 0.9rem 1.9rem;
	text-decoration: none;
	box-shadow: 0 2px 0 rgba(142, 10, 92, .12);
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ld-btn:hover,
.wp-block-button.is-style-ld .wp-block-button__link:hover {
	background-color: var(--ld-yellow-deep);
	color: var(--ld-grey-ink);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(142, 10, 92, .18);
}

/* ============================ Fascia CTA finale ============================ */
.ld-cta-band {
	background-color: var(--ld-yellow);
	color: var(--ld-grey-ink);
	border-radius: var(--ld-radius);
	position: relative;
	overflow: hidden;
}
.ld-cta-band h2 { letter-spacing: -0.02em; }
.ld-cta-band .wp-block-button.is-style-ld .wp-block-button__link,
.ld-cta-band .ld-btn {
	background-color: var(--ld-grey-ink);
	color: var(--ld-cream);
}
.ld-cta-band .wp-block-button.is-style-ld .wp-block-button__link:hover,
.ld-cta-band .ld-btn:hover {
	background-color: var(--ld-magenta);
	color: var(--ld-white);
}

/* ============================ Header ============================ */
/* Logo: dimensione coerente col rapporto 4.8:1 dell'immagine ufficiale */
.site-header .site-branding img,
.site-header-item .custom-logo {
	max-height: 44px;
	width: auto;
}

/* Header bianco su pagina crema, hairline calda invece di un bordo netto */
.site-header-row.site-header-main-section-left,
#main-header,
.site-main-header-wrap .site-header-row-container {
	background-color: var(--ld-white);
}
.site-main-header-inner-wrap {
	border-bottom: 1px solid var(--ld-hairline);
}

/* Navigazione: tipografia, mai icone. Underline giallo animato in hover/attivo */
.header-navigation .menu-container > ul > li > a,
.header-navigation .header-menu-container > ul > li > a {
	font-family: var(--ld-font-body);
	font-weight: 500;
	color: var(--ld-grey-ink);
	position: relative;
}
.header-navigation ul li a::after {
	content: "";
	position: absolute;
	left: var(--ld-nav-pad, 1.2em);
	right: var(--ld-nav-pad, 1.2em);
	bottom: 0.55em;
	height: 3px;
	background: var(--ld-yellow);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .22s ease;
}
.header-navigation ul li:hover > a::after,
.header-navigation ul li.current-menu-item > a::after,
.header-navigation ul li.current-menu-ancestor > a::after {
	transform: scaleX(1);
}
.header-navigation ul li:hover > a,
.header-navigation ul li.current-menu-item > a { color: var(--ld-magenta); }

/* Pulsante CTA (header desktop E tendina mobile) → pillola gialla di marca.
   Le classi "button" e "header-button" stanno sullo STESSO <a>; selettore globale
   perche nel drawer mobile il bottone vive fuori da .mobile-navigation. */
a.button.header-button {
	background-color: var(--ld-yellow) !important;
	border-color: var(--ld-yellow) !important;
	color: var(--ld-grey-ink) !important;
	font-family: var(--ld-font-body);
	font-weight: 700;
	border-radius: var(--ld-radius-pill) !important;
	padding: 0.6rem 1.4rem !important;
	box-shadow: 0 2px 0 rgba(142, 10, 92, .12);
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
a.button.header-button:hover,
a.button.header-button:focus {
	background-color: var(--ld-yellow-deep) !important;
	color: var(--ld-grey-ink) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(142, 10, 92, .18);
}

/* Il logo contiene gia il wordmark: nascondi il titolo testuale del sito nell'header */
.site-header .site-title-wrap { display: none !important; }

/* Voci nav piu compatte: evita che il menu vada a capo su desktop ~1366px */
.header-navigation .menu-container > ul > li > a,
.header-navigation .header-menu-container > ul > li > a {
	font-size: 0.96rem;
	padding-left: 0.7em;
	padding-right: 0.7em;
	--ld-nav-pad: 0.7em;
}
/* Mantieni il menu primario su una sola riga */
.header-navigation .menu-container > ul.menu { flex-wrap: nowrap; }

/* Area titolo pagina: dal grigio-azzurro default Kadence al crema di marca */
.entry-hero-container-inner,
.entry-hero.page-hero-section { background-color: var(--ld-cream) !important; }

/* Header agganciato (sticky): ombra morbida quando "stuck" */
.site-header-row-container.item-is-stuck,
.site-main-header-wrap.item-is-stuck {
	box-shadow: var(--ld-shadow-soft);
}

/* Tendina mobile: il drawer Kadence ha sfondo scuro → voci di menu in giallo di marca
   (prima erano ink #2A2A2A, scuro-su-scuro illeggibile). !important per battere il
   colore "voce attiva" di Kadence. Il toggle hamburger resta ink (sta sull'header chiaro). */
.mobile-navigation ul li a,
.mobile-navigation .drawer-sub-toggle,
.mobile-navigation .dropdown-nav-special-toggle { color: var(--ld-yellow) !important; }
.header-navigation .mobile-toggle-open-container { color: var(--ld-grey-ink); }

/* ============================ Footer ============================ */
/* Inchiostro caldo, accenti gialli, filetto giallo in testa. Nessuna icona social. */
.site-footer .footer-html { color: var(--ld-cream); }

.site-footer-wrap,
#colophon,
.site-footer-row-container.site-footer-focus-item {
	background-color: var(--ld-grey-ink);
}
.site-footer-row-container-inner { background-color: var(--ld-grey-ink); }

.ld-footer {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 3.4rem 1.4rem 1.2rem;
	color: rgba(254, 251, 237, .82);
	text-align: left;
	font-family: var(--ld-font-body);
}
/* Filetto giallo a tutta larghezza sopra il footer */
.ld-footer::before {
	content: "";
	position: absolute;
	top: 0; left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 5px;
	background: linear-gradient(90deg, var(--ld-yellow) 0%, var(--ld-yellow-deep) 55%, var(--ld-magenta) 100%);
}

.ld-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2.4rem;
	align-items: start;
}
.ld-footer-brand .ld-footer-wordmark {
	font-family: var(--ld-font-display);
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--ld-white);
	line-height: 1;
	margin: 0 0 .55rem;
}
.ld-footer-brand .ld-footer-wordmark .drop { color: var(--ld-yellow); }
.ld-footer-brand .ld-footer-wordmark .drops { color: var(--ld-magenta); }
.ld-footer-payoff {
	font-size: .95rem;
	line-height: 1.55;
	color: rgba(254, 251, 237, .72);
	max-width: 26ch;
	margin: 0;
}

.ld-footer h3 {
	font-family: var(--ld-font-display);
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ld-yellow);
	margin: 0 0 1rem;
}
.ld-footer ul { list-style: none; margin: 0; padding: 0; }
.ld-footer li { margin: 0 0 .6rem; line-height: 1.4; }
.ld-footer a {
	color: rgba(254, 251, 237, .82);
	text-decoration: none;
	transition: color .15s ease;
}
.ld-footer a:hover {
	color: var(--ld-yellow);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}
.ld-footer .ld-nap span { display: block; margin-bottom: .5rem; }
.ld-footer .ld-nap .ld-nap-strong { color: var(--ld-white); font-weight: 600; }

.ld-footer-bottom {
	margin-top: 2.8rem;
	padding-top: 1.2rem;
	border-top: 1px solid rgba(254, 251, 237, .14);
	display: flex;
	flex-wrap: wrap;
	gap: .4rem 1.4rem;
	justify-content: space-between;
	font-size: .82rem;
	color: rgba(254, 251, 237, .6);
}
.ld-footer-bottom a { color: rgba(254, 251, 237, .6); }
.ld-footer-bottom a:hover { color: var(--ld-yellow); }

@media (max-width: 880px) {
	.ld-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.6rem; }
	.ld-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
	.ld-footer-grid { grid-template-columns: 1fr; }
	.ld-footer-bottom { flex-direction: column; }
}

/* ============================ Pagine legali (lettura lunga) ============================ */
.ld-legal { max-width: var(--ld-measure); }
.ld-legal > * { margin-left: auto; margin-right: auto; }
.ld-legal p,
.ld-legal li { font-size: 1.02rem; line-height: 1.8; color: var(--ld-grey-ink); }
.ld-legal h2 {
	font-size: 1.5rem;
	margin-top: 2.6rem;
	padding-top: .2rem;
	position: relative;
}
.ld-legal h2::before {
	content: "";
	display: block;
	width: 2.2rem;
	height: 4px;
	background: var(--ld-yellow);
	border-radius: 2px;
	margin-bottom: .9rem;
}
.ld-legal h3 { font-size: 1.15rem; margin-top: 1.8rem; }
.ld-legal .ld-legal-meta {
	font-size: .9rem;
	color: var(--ld-grey-soft);
	border-left: 3px solid var(--ld-yellow);
	padding-left: .9rem;
	margin-bottom: 2rem;
}

/* Tabella sub-processor / dati: intestazione gialla, righe alternate crema */
.ld-legal table,
.ld-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4rem 0 2rem;
	font-size: .95rem;
	box-shadow: var(--ld-shadow-card);
	border-radius: var(--ld-radius);
	overflow: hidden;
}
.ld-legal table th,
.ld-table th {
	background: var(--ld-yellow);
	color: var(--ld-grey-ink);
	font-family: var(--ld-font-body);
	font-weight: 700;
	text-align: left;
	padding: .8rem 1rem;
}
.ld-legal table td,
.ld-table td {
	padding: .75rem 1rem;
	border-top: 1px solid var(--ld-hairline);
	background: var(--ld-white);
	vertical-align: top;
}
.ld-legal table tr:nth-child(even) td,
.ld-table tr:nth-child(even) td { background: var(--ld-cream); }

/* ============================ Pagine geo ============================ */
.ld-geo-hero {
	background:
		radial-gradient(120% 140% at 92% -10%, rgba(253, 216, 53, .35) 0%, rgba(253, 216, 53, 0) 55%),
		var(--ld-cream);
	border-radius: var(--ld-radius);
	border: 1px solid var(--ld-hairline);
	padding: 3rem 2rem !important;
	margin-bottom: 2.4rem;
}
.ld-geo-hero .ld-geo-eyebrow {
	font-family: var(--ld-font-body);
	font-weight: 700;
	font-size: .8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ld-magenta);
	margin: 0 0 .7rem;
}
.ld-geo-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin: 0 0 .8rem; }
.ld-geo-hero p { font-size: 1.12rem; color: var(--ld-grey-soft); max-width: 40ch; }

/* Griglia province / sotto-aree */
.ld-geo-cards { margin: 1.6rem 0; }
.ld-geo-cards .wp-block-columns { gap: 1.2rem; }
.ld-geo-card {
	background: var(--ld-white);
	border: 1px solid var(--ld-hairline);
	border-radius: var(--ld-radius);
	padding: 1.4rem 1.5rem !important;
	box-shadow: var(--ld-shadow-card);
	transition: transform .15s ease, box-shadow .15s ease;
}
.ld-geo-card:hover { transform: translateY(-3px); box-shadow: var(--ld-shadow-soft); }
.ld-geo-card h3 { margin: 0 0 .4rem; font-size: 1.25rem; }
.ld-geo-card h3 a { color: var(--ld-grey-ink); text-decoration: none; }
.ld-geo-card:hover h3 a { color: var(--ld-magenta); }

/* Riga di numeri/affermazioni locali */
.ld-geo-proof {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.4rem;
	margin: 2rem 0;
}
.ld-geo-proof .ld-proof-item {
	background: var(--ld-white);
	border: 1px solid var(--ld-hairline);
	border-radius: var(--ld-radius);
	padding: 1.3rem 1.4rem;
}
.ld-geo-proof .ld-proof-k {
	font-family: var(--ld-font-display);
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--ld-magenta);
	display: block;
	line-height: 1;
	margin-bottom: .4rem;
}
.ld-geo-proof .ld-proof-v { font-size: .95rem; color: var(--ld-grey-soft); }
@media (max-width: 700px) {
	.ld-geo-proof { grid-template-columns: 1fr; }
}


/* ============================================================
   Lemon Drops — Sessione 04 — Sezioni visive WOW
   Append a tokens.css (non sostituisce — aggiunge)
   ============================================================ */

/* ============================ Hero home ============================ */
.ld-hero-home {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(ellipse 70% 90% at 90% -10%, rgba(253,216,53,.30) 0%, transparent 55%),
		radial-gradient(ellipse 45% 50% at 8% 96%,  rgba(175,15,113,.09) 0%, transparent 55%),
		var(--ld-cream);
	padding: clamp(3rem,8vw,6.5rem) 0 clamp(2.5rem,6vw,5.5rem);
}
.ld-hero-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 58fr 42fr;
	gap: 2rem 3.5rem;
	align-items: center;
}

/* Badge sopra l'H1 */
.ld-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: var(--ld-yellow);
	color: var(--ld-grey-ink);
	font-family: var(--ld-font-body);
	font-weight: 700;
	font-size: .72rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	border-radius: var(--ld-radius-pill);
	padding: .32rem .95rem;
	margin-bottom: 1.2rem;
	width: fit-content;
}
.ld-hero-badge::before {
	content: "";
	display: inline-block;
	width: .5rem;
	height: .5rem;
	background: var(--ld-magenta);
	border-radius: 50%;
	flex-shrink: 0;
}

/* H1 editoriale: grande, Fraunces, con corsivo magenta sulla seconda riga */
.ld-hero-h1 {
	font-family: var(--ld-font-display);
	font-size: clamp(2rem, 5.2vw, 3.5rem);
	font-weight: 600;
	letter-spacing: -.028em;
	line-height: 1.09;
	color: var(--ld-grey-ink);
	margin: 0 0 1.2rem;
	font-optical-sizing: auto;
}
.ld-hero-h1 em {
	font-style: italic;
	color: var(--ld-magenta);
	font-weight: 500;
}

.ld-hero-lead {
	font-size: 1.1rem;
	line-height: 1.68;
	color: var(--ld-grey-soft);
	max-width: 46ch;
	margin: 0 0 2rem;
}

.ld-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: .8rem 1.5rem;
	margin-bottom: 2rem;
}
.ld-hero-ghost {
	font-family: var(--ld-font-body);
	font-weight: 600;
	font-size: .96rem;
	color: var(--ld-grey-ink);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 2.5px solid var(--ld-yellow);
	transition: color .14s, border-color .14s;
}
.ld-hero-ghost:hover { color: var(--ld-magenta); border-color: var(--ld-magenta); }

/* Mini segnali di fiducia sotto i CTA */
.ld-hero-trust {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	flex-wrap: wrap;
}
.ld-trust-item {
	font-size: .8rem;
	color: var(--ld-grey-soft);
	display: flex;
	align-items: center;
	gap: .4rem;
}
.ld-trust-item::before {
	content: "";
	display: inline-block;
	width: .5rem;
	height: .5rem;
	background: var(--ld-yellow);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ── Area visiva destra (composizione grafica) ─────────────── */
.ld-hero-art {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
}
.ld-hero-art-inner {
	position: relative;
	width: 290px;
	height: 290px;
}

/* Blob animati */
.ld-blob {
	position: absolute;
	border-radius: 50%;
	will-change: transform;
}
.ld-blob-main {
	inset: 0;
	background: radial-gradient(circle at 40% 38%, #FDD835 0%, rgba(253,216,53,.5) 55%, transparent 80%);
	animation: ld-breathe 5.5s ease-in-out infinite;
}
.ld-blob-accent {
	width: 160px; height: 160px;
	background: rgba(175,15,113,.13);
	top: -22px; right: -28px;
	animation: ld-breathe 7s ease-in-out infinite reverse;
}
.ld-blob-small {
	width: 76px; height: 76px;
	background: rgba(253,216,53,.6);
	bottom: 8px; left: -12px;
	animation: ld-breathe 4.2s ease-in-out infinite;
	animation-delay: -.9s;
}
@keyframes ld-breathe {
	0%, 100% { transform: scale(1) rotate(0deg); }
	50%       { transform: scale(1.045) rotate(1.5deg); }
}

/* Citrus slice SVG al centro, levitante */
.ld-hero-slice {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 210px; height: 210px;
	filter: drop-shadow(0 18px 36px rgba(253,216,53,.28));
	animation: ld-float 6s ease-in-out infinite;
	pointer-events: none;
}
@keyframes ld-float {
	0%, 100% { transform: translate(-50%, -50%) rotate(-2deg); }
	50%       { transform: translate(-50%, calc(-50% - 10px)) rotate(2.5deg); }
}

/* Gocce fluttuanti */
.ld-drop {
	position: absolute;
	border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
	will-change: transform;
}
.ld-drop-a {
	width: 22px; height: 30px;
	background: var(--ld-yellow); opacity: .85;
	top: 8%; right: -5%;
	transform: rotate(18deg);
	animation: ld-drift-a 7s ease-in-out infinite;
}
.ld-drop-b {
	width: 14px; height: 20px;
	background: var(--ld-magenta); opacity: .45;
	bottom: 14%; left: -4%;
	transform: rotate(-22deg);
	animation: ld-drift-b 5.8s ease-in-out infinite;
	animation-delay: -1.6s;
}
.ld-drop-c {
	width: 18px; height: 24px;
	background: var(--ld-yellow); opacity: .7;
	bottom: 4%; right: 13%;
	transform: rotate(6deg);
	animation: ld-drift-a 8.2s ease-in-out infinite;
	animation-delay: -.7s;
}
@keyframes ld-drift-a {
	0%, 100% { transform: rotate(18deg) translateY(0); }
	50%       { transform: rotate(26deg) translateY(-10px); }
}
@keyframes ld-drift-b {
	0%, 100% { transform: rotate(-22deg) translateY(0); }
	50%       { transform: rotate(-14deg) translateY(-8px); }
}

.ld-hero-art-note {
	position: absolute;
	bottom: -24px; left: 50%;
	transform: translateX(-50%);
	font-size: .68rem;
	color: var(--ld-grey-soft);
	letter-spacing: .06em;
	white-space: nowrap;
	opacity: .55;
}

/* Responsive hero */
@media (max-width: 780px) {
	.ld-hero-inner { grid-template-columns: 1fr; text-align: center; }
	.ld-hero-art { order: -1; min-height: 220px; margin-bottom: .5rem; }
	.ld-hero-art-inner { width: 200px; height: 200px; }
	.ld-blob-accent { width: 110px; height: 110px; }
	.ld-blob-small { width: 55px; height: 55px; }
	.ld-hero-slice { width: 150px; height: 150px; }
	.ld-hero-lead { max-width: none; margin-left: auto; margin-right: auto; }
	.ld-hero-actions { justify-content: center; }
	.ld-hero-trust { justify-content: center; }
	.ld-hero-badge { margin-left: auto; margin-right: auto; }
}
@media (max-width: 390px) {
	.ld-hero-h1 { font-size: 1.85rem; }
}

/* ============================ Sezione servizi — card grid ============================ */
.ld-services-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(3rem,7vw,5.5rem) 1.5rem;
}
.ld-section-eyebrow {
	font-family: var(--ld-font-body);
	font-weight: 700;
	font-size: .73rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--ld-magenta);
	margin: 0 0 .65rem;
}
.ld-section-headline {
	font-family: var(--ld-font-display);
	font-size: clamp(1.55rem, 3.5vw, 2.35rem);
	font-weight: 600;
	letter-spacing: -.022em;
	color: var(--ld-grey-ink);
	margin: 0 0 2.4rem;
	line-height: 1.18;
}
.ld-section-headline em { font-style: italic; color: var(--ld-magenta); font-weight: 500; }

.ld-service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.3rem;
}
.ld-service-card {
	background: var(--ld-white);
	border: 1px solid var(--ld-hairline);
	border-radius: var(--ld-radius);
	padding: 1.7rem 1.7rem 1.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: var(--ld-shadow-card);
	transition: transform .18s ease, box-shadow .18s ease;
	display: flex;
	flex-direction: column;
}
/* Barra colorata in cima alla card (alternata giallo/magenta) */
.ld-service-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--ld-sc-accent, var(--ld-yellow));
}
.ld-service-card:hover { transform: translateY(-4px); box-shadow: var(--ld-shadow-soft); }

/* Numero decorativo (sfumato in background) */
.ld-service-n {
	position: absolute;
	top: .6rem; right: 1.1rem;
	font-family: var(--ld-font-display);
	font-size: 4rem;
	font-weight: 600;
	color: var(--ld-sc-accent, var(--ld-yellow));
	opacity: .13;
	line-height: 1;
	font-optical-sizing: auto;
	user-select: none;
	pointer-events: none;
}
.ld-service-title {
	font-family: var(--ld-font-display);
	font-size: 1.22rem;
	font-weight: 600;
	color: var(--ld-grey-ink);
	margin: 0 0 .55rem;
	letter-spacing: -.01em;
	line-height: 1.25;
}
.ld-service-desc {
	font-size: .96rem;
	line-height: 1.65;
	color: var(--ld-grey-soft);
	flex: 1;
	margin: 0 0 1rem;
}
.ld-service-cta {
	font-family: var(--ld-font-body);
	font-weight: 700;
	font-size: .86rem;
	color: var(--ld-grey-ink);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .38rem;
	padding-bottom: 2px;
	border-bottom: 2px solid var(--ld-sc-accent, var(--ld-yellow));
	transition: color .14s, border-color .14s;
	width: fit-content;
	letter-spacing: .01em;
}
.ld-service-cta:hover { color: var(--ld-magenta); border-color: var(--ld-magenta); }

/* Accenti alternati per le 6 card */
.ld-service-card:nth-child(odd)  { --ld-sc-accent: #FDD835; }
.ld-service-card:nth-child(even) { --ld-sc-accent: #AF0F71; }
.ld-service-card:nth-child(even) .ld-service-cta { color: var(--ld-grey-ink); }

@media (max-width: 700px) {
	.ld-service-grid { grid-template-columns: 1fr; }
	.ld-service-card { padding: 1.4rem; }
}

/* ============================ Stats band ============================ */
.ld-stats-band {
	background: var(--ld-grey-ink);
	position: relative;
	overflow: hidden;
}
.ld-stats-band::before {
	content: "";
	position: absolute;
	top: -60px; right: -80px;
	width: 340px; height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(253,216,53,.13) 0%, transparent 65%);
	pointer-events: none;
}
.ld-stats-band::after {
	content: "";
	position: absolute;
	bottom: -50px; left: -50px;
	width: 200px; height: 200px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(175,15,113,.1) 0%, transparent 65%);
	pointer-events: none;
}
.ld-stats-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(2.8rem,6vw,4.5rem) 1.5rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem 2rem;
	text-align: center;
	position: relative;
	z-index: 1;
}
.ld-stat-n {
	font-family: var(--ld-font-display);
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 600;
	color: var(--ld-yellow);
	line-height: 1;
	display: block;
	margin-bottom: .4rem;
	font-optical-sizing: auto;
	letter-spacing: -.03em;
}
.ld-stat-v {
	font-family: var(--ld-font-body);
	font-size: .88rem;
	color: rgba(254,251,237,.72);
	line-height: 1.4;
}
@media (max-width: 700px) {
	.ld-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
}
@media (max-width: 380px) {
	.ld-stats-inner { grid-template-columns: 1fr; }
}

/* ============================ Team grid ============================ */
.ld-team-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(3rem,7vw,5.5rem) 1.5rem;
}
.ld-team-header {
	text-align: center;
	margin-bottom: 2.8rem;
}
/* Flex centrato: la fila incompleta (es. 8 card su 5 colonne) resta al centro */
.ld-team-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6rem 1rem;
}
.ld-team-grid > .ld-team-card { width: calc((100% - 4rem) / 5); }
.ld-team-card {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	padding: 1.3rem .7rem 1.1rem;
	border-radius: var(--ld-radius);
	text-decoration: none;
	color: inherit;
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.ld-team-card:hover {
	transform: translateY(-5px);
	background: var(--ld-white);
	box-shadow: var(--ld-shadow-soft);
}
.ld-team-card.is-tbd { cursor: default; pointer-events: none; }
.ld-team-card.is-tbd:hover { transform: none; background: transparent; box-shadow: none; }

/* Avatar circolare */
.ld-team-avatar {
	width: 112px; height: 112px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--ld-hairline);
	background: var(--ld-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: border-color .18s ease;
	position: relative;
}
.ld-team-card:hover .ld-team-avatar { border-color: var(--ld-yellow); }

/* Avatar magenta per il 2° slot */
.ld-team-card:nth-child(2n) .ld-team-avatar { background: var(--ld-magenta); }
.ld-team-card:nth-child(2n) .ld-team-av-init { color: var(--ld-white); }

.ld-team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ld-team-av-init {
	font-family: var(--ld-font-display);
	font-size: 1.55rem;
	font-weight: 600;
	color: var(--ld-grey-ink);
	font-optical-sizing: auto;
	letter-spacing: -.01em;
	user-select: none;
	line-height: 1;
}

/* Placeholder TBD */
.ld-team-avatar.is-tbd {
	background: var(--ld-hairline);
	border-style: dashed;
	border-color: #ccc;
}
.ld-team-av-init.is-tbd-init {
	font-size: 1rem;
	font-style: italic;
	color: #aaa;
	font-family: var(--ld-font-body);
	font-weight: 500;
}

.ld-team-name {
	font-family: var(--ld-font-display);
	font-size: .97rem;
	font-weight: 600;
	color: var(--ld-grey-ink);
	margin: 0;
	letter-spacing: -.01em;
	line-height: 1.25;
}
.ld-team-card.is-tbd .ld-team-name { color: #bbb; font-style: italic; font-family: var(--ld-font-body); font-weight: 400; }

.ld-team-role {
	font-family: var(--ld-font-body);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--ld-magenta);
	margin: 0;
}
.ld-team-card.is-tbd .ld-team-role { color: #ccc; }

@media (max-width: 900px) {
	.ld-team-grid > .ld-team-card { width: calc((100% - 2rem) / 3); }
}
@media (max-width: 600px) {
	.ld-team-grid { gap: 1.1rem .8rem; }
	.ld-team-grid > .ld-team-card { width: calc((100% - .8rem) / 2); }
	.ld-team-avatar { width: 90px; height: 90px; }
	.ld-team-av-init { font-size: 1.25rem; }
}
@media (max-width: 390px) {
	.ld-team-grid { gap: .9rem; }
	.ld-team-grid > .ld-team-card { width: calc((100% - .9rem) / 2); }
}

/* ============================ Video brand ============================ */
.ld-video-wrap {
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(2rem,5vw,3.5rem) 1.5rem;
}
.ld-video-box {
	position: relative;
	border-radius: var(--ld-radius);
	overflow: hidden;
	background: var(--ld-grey-ink);
	aspect-ratio: 16/9;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--ld-shadow-soft);
}
.ld-video-box video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Poster/overlay prima del play */
.ld-video-poster {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(42,42,42,.96) 0%, rgba(42,42,42,.82) 100%);
	cursor: pointer;
	transition: background .2s;
}
.ld-video-poster:hover { background: linear-gradient(135deg, rgba(20,20,20,.97) 0%, rgba(30,30,30,.9) 100%); }
.ld-video-poster.is-hidden { display: none; }

.ld-video-play-btn {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: var(--ld-yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	box-shadow: 0 8px 28px rgba(253,216,53,.38);
	transition: transform .2s ease, box-shadow .2s ease;
	border: 0;
	cursor: pointer;
	flex-shrink: 0;
}
.ld-video-poster:hover .ld-video-play-btn {
	transform: scale(1.1);
	box-shadow: 0 14px 38px rgba(253,216,53,.55);
}
.ld-video-play-btn svg { width: 28px; height: 28px; fill: var(--ld-grey-ink); margin-left: 5px; }
.ld-video-poster-title {
	font-family: var(--ld-font-display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--ld-cream);
	letter-spacing: -.01em;
	margin: 0 0 .4rem;
	text-align: center;
}
.ld-video-poster-sub {
	font-size: .88rem;
	color: rgba(254,251,237,.62);
	text-align: center;
}

.ld-video-caption {
	text-align: center;
	margin-top: 1.2rem;
	font-size: .85rem;
	color: var(--ld-grey-soft);
	font-style: italic;
}

/* ============================ Sezione origine / perché nate ============================ */
.ld-origin-wrap {
	background:
		radial-gradient(ellipse 60% 70% at 5% 50%, rgba(253,216,53,.18) 0%, transparent 55%),
		var(--ld-cream);
	padding: clamp(3rem,7vw,5.5rem) 0;
}
.ld-origin-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem 4rem;
	align-items: center;
}
.ld-origin-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.ld-origin-list li {
	display: flex;
	gap: .9rem;
	align-items: flex-start;
	line-height: 1.58;
	font-size: 1.02rem;
	color: var(--ld-grey-ink);
}
.ld-origin-list li::before {
	content: "";
	display: block;
	width: 22px; height: 22px;
	background: var(--ld-yellow);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: .18em;
}

/* Lato destro: illustrazione decorativa citrus (placeholder pupette) */
.ld-origin-art {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.ld-origin-art-ring {
	width: 260px; height: 260px;
	border-radius: 50%;
	background: var(--ld-yellow);
	opacity: .22;
	position: absolute;
}
.ld-origin-art-ring-inner {
	width: 190px; height: 190px;
	border-radius: 50%;
	background: var(--ld-yellow);
	opacity: .35;
	position: absolute;
}
.ld-origin-art svg { position: relative; z-index: 1; }
.ld-origin-art-label {
	position: absolute;
	bottom: -18px; left: 50%;
	transform: translateX(-50%);
	font-size: .7rem;
	color: var(--ld-grey-soft);
	opacity: .55;
	white-space: nowrap;
	letter-spacing: .06em;
}

@media (max-width: 780px) {
	.ld-origin-inner { grid-template-columns: 1fr; gap: 2rem; }
	.ld-origin-art { display: none; }
}

/* ============================ Separatori di sezione ============================ */
.ld-section-sep {
	height: 1px;
	background: var(--ld-hairline);
	max-width: 1160px;
	margin: 0 auto;
}

/* S04 fix specificità: ld-team-card .is-tbd batte nth-child (cascade + stessa spec) */
.ld-team-card .ld-team-avatar.is-tbd {
	background: var(--ld-hairline);
	border-style: dashed;
	border-color: #ccc;
}
.ld-team-card:nth-child(2n) .ld-team-avatar.is-tbd { background: var(--ld-hairline); }
.ld-team-card .ld-team-av-init.is-tbd-init { color: #aaa; }
.ld-team-card:nth-child(2n) .ld-team-av-init.is-tbd-init { color: #aaa; }

/* ============================================================
   Lemon Drops — Sessione 04B — Asset reali (pupette, foto team, video)
   Append a tokens.css (non sostituisce — aggiunge)
   ============================================================ */

/* ── Hero: pupetta PNG animata ───────────────────────────────── */
.ld-hero-art-note { display: none; }

.ld-hero-pupetta {
	position: relative;
	z-index: 2;
	width: 90%;
	max-width: 330px;
	display: block;
	margin: 0 auto;
	filter: drop-shadow(0 24px 52px rgba(175,15,113,.28));
	animation: ld-float 5s ease-in-out infinite;
}
@media (max-width: 780px) {
	.ld-hero-pupetta { max-width: 240px; }
}

/* ── Team avatar: foto reale ─────────────────────────────────── */
.ld-team-avatar.has-photo {
	overflow: hidden;
	background: var(--ld-cream);
}
.ld-team-avatar.has-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}
/* Avatar colorati per chi non ha foto (non TBD — personale reale) */
.ld-team-avatar.ld-av-yellow  { background: var(--ld-yellow); }
.ld-team-avatar.ld-av-magenta { background: var(--ld-magenta); }
.ld-team-avatar.ld-av-magenta .ld-team-av-init { color: #fff; }

/* ── Immagine nelle card servizi ─────────────────────────────── */
.ld-sc-img-wrap {
	width: calc(100% + 3.4rem);
	margin: -1.7rem -1.7rem 1.2rem -1.7rem;
	height: 148px;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
	flex-shrink: 0;
}
.ld-sc-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .45s ease;
}
.ld-service-card:hover .ld-sc-img-wrap img { transform: scale(1.06); }

/* ── Video iframe YouTube ────────────────────────────────────── */
.ld-video-box iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	border-radius: 14px;
}

/* ── Sezione origine: foto reale al posto del ring SVG ────────── */
.ld-origin-art-ring,
.ld-origin-art-ring-inner { display: none; }

.ld-origin-img {
	position: relative;
	z-index: 2;
	width: 88%;
	max-width: 300px;
	border-radius: 50%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	display: block;
	margin: 0 auto;
	box-shadow:
		0 0 0 8px rgba(253,216,53,.35),
		0 20px 50px rgba(175,15,113,.2);
}
@media (max-width: 780px) {
	.ld-origin-img { max-width: 200px; }
}

/* ============================================================
   Lemon Drops — S04C — Hero WOW limone + avatar pupette
   ============================================================ */

/* ── Nascondi elementi hero precedenti ─────────────────────── */
.ld-blob-main, .ld-blob-accent, .ld-blob-small,
.ld-drop-a, .ld-drop-b, .ld-drop-c,
.ld-hero-pupetta { display: none; }

/* ── Composizione limone WOW ─────────────────────────────── */
.ld-hero-lemon-scene {
	position: relative;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
	aspect-ratio: 1 / 1.05;
}

/* Glow crema-giallo di sfondo */
.ld-hero-lemon-scene::before {
	content: '';
	position: absolute;
	inset: -15%;
	background:
		radial-gradient(ellipse 75% 55% at 48% 52%, rgba(253,216,53,.55) 0%, transparent 60%),
		radial-gradient(ellipse 40% 35% at 82% 18%, rgba(175,15,113,.18) 0%, transparent 55%);
	pointer-events: none;
	z-index: 0;
}

/* Immagine principale: fette tagliate su sfondo nero — grande, inclinata */
.ld-lemon-cut {
	position: absolute;
	top: 12%;
	left: 0;
	width: 70%;
	aspect-ratio: 1 / 1;
	border-radius: 44% 38% 48% 36% / 40% 44% 40% 48%;
	overflow: hidden;
	box-shadow:
		0 36px 88px rgba(0,0,0,.4),
		0 0 0 5px #FDD835,
		0 0 0 11px rgba(253,216,53,.22),
		inset 0 0 0 1px rgba(255,255,255,.06);
	z-index: 2;
	animation: ld-cut-float 5.2s ease-in-out infinite;
}
.ld-lemon-cut img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.06);
	transition: transform .4s ease;
}

@keyframes ld-cut-float {
	0%, 100% { transform: rotate(-8deg) translateY(0px); }
	50%       { transform: rotate(-5.5deg) translateY(-12px); }
}

/* Immagine secondaria: limone intero — più piccola, in alto a destra */
.ld-lemon-whole {
	position: absolute;
	top: -4%;
	right: 0;
	width: 50%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	box-shadow:
		0 24px 60px rgba(175,15,113,.38),
		0 0 0 4px #AF0F71,
		0 0 0 10px rgba(175,15,113,.18);
	z-index: 3;
	animation: ld-whole-float 6.8s ease-in-out infinite;
	animation-delay: -1.4s;
}
.ld-lemon-whole img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 25%;
	display: block;
	transform: scale(1.1);
}

@keyframes ld-whole-float {
	0%, 100% { transform: rotate(10deg) translateY(0px); }
	50%       { transform: rotate(7.5deg) translateY(-15px); }
}

/* Badge etichetta brand floating in basso */
.ld-lemon-badge {
	position: absolute;
	bottom: 9%;
	right: 4%;
	background: var(--ld-ink);
	color: var(--ld-yellow);
	font-family: var(--ld-font-display);
	font-size: .82rem;
	font-weight: 600;
	font-style: italic;
	letter-spacing: .03em;
	padding: .55rem 1.1rem;
	border-radius: var(--ld-radius-pill);
	box-shadow:
		0 10px 28px rgba(0,0,0,.28),
		0 0 0 1px rgba(253,216,53,.4);
	z-index: 4;
	white-space: nowrap;
	animation: ld-badge-float 7.2s ease-in-out infinite;
	animation-delay: -.5s;
}

@keyframes ld-badge-float {
	0%, 100% { transform: translateY(0px) rotate(-1deg); }
	50%       { transform: translateY(-8px) rotate(.5deg); }
}

/* Responsive */
@media (max-width: 780px) {
	.ld-hero-lemon-scene {
		max-width: 280px;
		aspect-ratio: 1 / 1;
		margin-bottom: 1rem;
	}
}

/* ── Avatar team: pupette con object-fit contain ────────────── */
.ld-team-avatar.has-pupetta {
	overflow: hidden;
	background: var(--ld-cream);
}
.ld-team-avatar.has-pupetta img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
	display: block;
}

/* ── S04D: dettaglio ingrandito sui cerchi hero ─────────────── */
/* Fette tagliate su sfondo nero: zoom sulla fetta centrale */
.ld-lemon-cut img {
	transform: scale(1.55);
	object-position: center 62%;
}
/* Limoni interi: zoom close-up su 2-3 limoni */
.ld-lemon-whole img {
	transform: scale(1.65);
	object-position: 38% 48%;
}

/* ── S04E: hero fix — cerchi perfetti + badge leggibile ─────── */
/* Forme: cerchi puri, niente blob */
.ld-lemon-cut {
  border-radius: 50% !important;
  top: 18% !important;
  left: 4% !important;
  width: 65% !important;
}
.ld-lemon-whole {
  top: -8% !important;
  right: -2% !important;
  width: 44% !important;
  border-radius: 50% !important;
}
/* Badge: sfondo inchiostro pieno, testo giallo su scuro = leggibile */
.ld-lemon-badge {
  background: #2A2A2A !important;
  color: #FDD835 !important;
  border: 2px solid rgba(253,216,53,.35) !important;
  font-style: italic !important;
  font-size: .8rem !important;
  bottom: 4% !important;
  right: 3% !important;
}

/* ============================================================
   Lemon Drops — S04E — Hero video background
   ============================================================ */

/* ── Hero home: fullwidth video ─────────────────────────────── */
.ld-hero-video {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--ld-ink);
	/* sovrascrive il padding del .ld-hero-home base */
	padding: 0 !important;
}

.ld-hero-video-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.ld-hero-video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
.ld-hero-video-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(42,42,42,.90) 0%,
		rgba(42,42,42,.65) 45%,
		rgba(42,42,42,.28) 100%
	);
}

.ld-hero-video-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: clamp(4rem,10vw,7rem) clamp(1.5rem,6vw,6rem);
}
.ld-hero-video-content .ld-hero-badge {
	background: var(--ld-yellow);
	color: var(--ld-ink);
}
.ld-hero-video-content .ld-hero-h1 {
	color: #fff;
	max-width: 14ch;
}
.ld-hero-video-content .ld-hero-h1 em { color: var(--ld-yellow); }
.ld-hero-video-content .ld-hero-lead {
	color: rgba(255,255,255,.82);
	max-width: 52ch;
}
.ld-hero-video-content .ld-hero-ghost {
	color: rgba(255,255,255,.85);
	border-bottom-color: var(--ld-yellow);
}
.ld-hero-video-content .ld-trust-item { color: rgba(255,255,255,.72); }
.ld-hero-video-content .ld-trust-item::before { background: var(--ld-yellow); }

/* ── Mini-hero video per pagine interne (servizi/geo) ───────── */
.ld-mini-video-hero {
	position: relative;
	min-height: 58vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--ld-ink);
}
.ld-mini-video-hero video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
.ld-mini-video-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(42,42,42,.85) 0%,
		rgba(42,42,42,.45) 55%,
		rgba(42,42,42,.2) 100%
	);
}
.ld-mini-video-hero-content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 3rem clamp(1.5rem,4vw,4rem) 3.5rem;
}
.ld-mini-video-hero-content .ld-section-eyebrow { color: var(--ld-yellow); }
.ld-mini-video-hero-content h1,
.ld-mini-video-hero-content h2 {
	font-family: var(--ld-font-display);
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 600;
	color: #fff;
	margin: 0 0 .5rem;
	line-height: 1.15;
	letter-spacing: -.022em;
}
.ld-mini-video-hero-content p { color: rgba(255,255,255,.78); font-size: 1.05rem; margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 780px) {
	.ld-hero-video { min-height: 92vh; }
	.ld-mini-video-hero { min-height: 42vh; }
}

/* ============================ S05/S07 — Form Lemon Call + Calendly ============================ */
.ld-contact-form {
	background: var(--ld-white);
	border: 1px solid var(--ld-hairline);
	border-top: 6px solid var(--ld-yellow);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-soft);
	padding: clamp(1.75rem, 5vw, 3.5rem);
	margin: 2.5rem auto;
	max-width: 860px;
}
.ld-contact-form h2 { margin-top: 0; }
.ld-contact-form > p { color: var(--ld-grey-soft); }

/* Due colonne sui campi corti, una colonna sotto i 720px */
.ld-contact-form .frm-fluent-form fieldset {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 1.4rem;
}
.ld-contact-form .frm-fluent-form fieldset > * { grid-column: 1 / -1; min-width: 0; }
@media (min-width: 721px) {
	.ld-contact-form .ff-el-group:has([data-name="email"]),
	.ld-contact-form .ff-el-group:has([data-name="telefono"]),
	.ld-contact-form .ff-el-group:has([data-name="settore"]),
	.ld-contact-form .ff-el-group:has([data-name="budget"]) { grid-column: span 1; }
}

/* Campi con i token di marca */
.ld-contact-form .fluentform .ff-el-group { margin-bottom: 1.35rem; }
.ld-contact-form .fluentform .ff-el-form-control {
	font-family: var(--ld-font-body);
	font-size: 1rem;
	color: var(--ld-grey-ink);
	background: var(--ld-white);
	border: 1.5px solid var(--ld-hairline);
	border-radius: 10px;
	padding: .85rem 1rem;
	width: 100%;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.ld-contact-form .fluentform .ff-el-form-control:hover { border-color: #d9d2ba; }
.ld-contact-form .fluentform .ff-el-form-control:focus {
	border-color: var(--ld-yellow-deep);
	box-shadow: 0 0 0 4px rgba(253, 216, 53, .30);
	outline: none;
}
.ld-contact-form .fluentform .ff-el-form-control::placeholder { color: #b3ac9b; }
.ld-contact-form .fluentform select.ff-el-form-control { cursor: pointer; }
.ld-contact-form .fluentform .ff-el-input--label label {
	font-family: var(--ld-font-body);
	font-size: .92rem;
	font-weight: 600;
	letter-spacing: .01em;
	color: var(--ld-grey-ink);
	margin-bottom: .35rem;
	display: inline-block;
}
.ld-contact-form .fluentform .ff-el-is-required.asterisk-right label:after { color: var(--ld-magenta); }
.ld-contact-form .fluentform .ff-el-help-message { color: var(--ld-grey-soft); }
.ld-contact-form .fluentform .ff-el-is-error .ff-el-form-control { border-color: var(--ld-magenta); }
.ld-contact-form .fluentform .error.text-danger { color: var(--ld-magenta); font-size: .85rem; }

/* Sezioni numerate: titolo serif con evidenziatore giallo */
.ld-contact-form .fluentform .ff-el-section-break {
	border: 0;
	margin: 2.2rem 0 1.4rem;
}
.ld-contact-form .fluentform .ff_columns_total_1:first-of-type .ff-el-section-break,
.ld-contact-form .fluentform .ff-el-group:first-of-type .ff-el-section-break { margin-top: 0; }
.ld-contact-form .fluentform .ff-el-section-title {
	font-family: var(--ld-font-display);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--ld-grey-ink);
	margin: 0 0 .2rem;
	display: inline;
	background: linear-gradient(transparent 62%, var(--ld-yellow) 62%, var(--ld-yellow) 94%, transparent 94%);
	padding: 0 .15em;
}
.ld-contact-form .fluentform .ff-el-section-break p {
	color: var(--ld-grey-soft);
	font-size: .95rem;
	margin: .45rem 0 0;
}

/* Consenso privacy: testo compatto */
.ld-contact-form .fluentform .ff_t_c { font-size: .88rem; color: var(--ld-grey-soft); line-height: 1.55; }

/* Icona suggerimento in palette (era blu default) */
.ld-contact-form .fluentform .ff-el-tooltip svg path { fill: var(--ld-magenta); }

/* Pulsante invio: pillola gialla grande, centrata */
.ld-contact-form .fluentform .ff_submit_btn_wrapper { text-align: center; margin-top: .5rem; }
.ld-contact-form .fluentform .ff-btn-submit {
	background: var(--ld-yellow) !important;
	color: var(--ld-grey-ink) !important;
	font-family: var(--ld-font-body);
	font-size: 1.05rem;
	font-weight: 700;
	border: none;
	border-radius: var(--ld-radius-pill);
	padding: 1rem 3rem;
	box-shadow: 0 2px 0 rgba(142, 10, 92, .12);
	transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ld-contact-form .fluentform .ff-btn-submit:hover {
	background: var(--ld-yellow-deep) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(142, 10, 92, .18);
}
@media (max-width: 720px) {
	.ld-contact-form .fluentform .ff-btn-submit { width: 100%; }
}

/* Calendly */
.ld-contact-calendly { margin: 2.5rem auto; }
.ld-calendly { border-radius: var(--ld-radius); overflow: hidden; }
.ld-calendly-pending {
	background: var(--ld-white);
	border: 1px dashed var(--ld-hairline);
	border-radius: var(--ld-radius);
	padding: 1.5rem;
	color: var(--ld-grey-soft);
}
.ld-calendly-pending p { margin: 0; }

/* ============================ S06 — fix avatar pupetta Eliandra ============================ */
/* La pupetta PNG di Eliandra ha un contorno che spicca sul magenta: sfondo bianco sotto l'immagine. */
.ld-team-card:nth-child(2n) .ld-team-avatar.has-pupetta { background: var(--ld-white); }

/* S06B — hero schede servizio: immagine fissa al posto del video */
.ld-mini-video-hero .ld-mini-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

/* S06C — sezione "Da dove nasce Lemon Drops?" valorizzata, sopra ai Servizi */
.ld-video-header {
	text-align: center;
	max-width: 46rem;
	margin: 0 auto 2rem;
}
.ld-video-header .ld-section-headline em { color: var(--ld-magenta); font-style: normal; }
.ld-video-intro {
	color: var(--ld-grey-soft);
	font-size: 1.05rem;
	margin: 1rem 0 0;
}

/* ============================ S10 — Footer "Sedi operative" ============================ */
.ld-footer-sedi {
	margin-top: 2.6rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(254, 251, 237, .14);
}
.ld-sedi-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4rem;
	margin-top: 1.15rem;
}
.ld-sede-card {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1.1rem 1.2rem;
	background: rgba(254, 251, 237, .04);
	border: 1px solid rgba(254, 251, 237, .1);
	border-radius: var(--ld-radius);
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.ld-sede-card:hover {
	border-color: rgba(253, 216, 53, .45);
	background: rgba(254, 251, 237, .06);
	transform: translateY(-2px);
}
.ld-sede-emblem { flex: 0 0 auto; width: 56px; height: 56px; }
.ld-sede-body { min-width: 0; }
.ld-sede-name {
	font-family: var(--ld-font-display);
	font-size: 1.16rem;
	font-weight: 600;
	color: var(--ld-white);
	line-height: 1.15;
	margin: 0 0 .3rem;
	display: inline-block;
}
a.ld-sede-name:hover { color: var(--ld-yellow); text-decoration: none; }
.ld-sede-addr { font-size: .86rem; line-height: 1.45; color: rgba(254, 251, 237, .7); margin: 0 0 .5rem; }
.ld-sede-prov { font-size: .82rem; margin: 0 0 .6rem; color: rgba(254, 251, 237, .58); }
.ld-sede-prov a { color: rgba(254, 251, 237, .78); }
.ld-sede-reveal { font-size: .85rem; }
.ld-sede-reveal > summary {
	cursor: pointer;
	list-style: none;
	color: var(--ld-yellow);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	width: fit-content;
}
.ld-sede-reveal > summary::-webkit-details-marker { display: none; }
.ld-sede-reveal > summary::after {
	content: "\203A"; /* › */
	font-size: 1.1em;
	line-height: 1;
	transition: transform .2s ease;
}
.ld-sede-reveal[open] > summary::after { transform: rotate(90deg); }
.ld-sede-maps {
	display: inline-block;
	margin-top: .55rem;
	padding: .42rem .85rem;
	border: 1px solid rgba(253, 216, 53, .5);
	border-radius: var(--ld-radius-pill);
	color: var(--ld-yellow) !important;
	font-weight: 600;
	font-size: .82rem;
}
.ld-sede-maps:hover {
	background: var(--ld-yellow);
	color: var(--ld-grey-ink) !important;
	text-decoration: none !important;
}
/* Emblema-mappa: colori su footer scuro */
.ld-sede-emblem .ld-emb-bg { fill: rgba(254, 251, 237, .05); stroke: rgba(254, 251, 237, .16); }
.ld-sede-emblem .ld-emb-grid { stroke: rgba(254, 251, 237, .13); }
.ld-sede-emblem .ld-emb-road { stroke: rgba(253, 216, 53, .35); }
.ld-sede-emblem .ld-emb-hole { fill: #2A2A2A; }
.ld-sede-emblem .ld-pin-er { fill: var(--ld-yellow); }
.ld-sede-emblem .ld-pin-ve { fill: var(--ld-magenta); }
@media (max-width: 720px) { .ld-sedi-grid { grid-template-columns: 1fr; } }

/* Blocco "Sede operativa" nelle pagine regione */
.ld-sede-page {
	display: flex;
	gap: 1.1rem;
	align-items: center;
	max-width: 640px;
	margin: 2.4rem auto;
	padding: 1.3rem 1.5rem;
	background: var(--ld-white);
	border: 1px solid var(--ld-hairline);
	border-left: 5px solid var(--ld-yellow);
	border-radius: var(--ld-radius);
	box-shadow: var(--ld-shadow-card);
}
.ld-sede-page .ld-sede-emblem { width: 60px; height: 60px; }
.ld-sede-page .ld-emb-bg { fill: var(--ld-cream); stroke: var(--ld-hairline); }
.ld-sede-page .ld-emb-grid { stroke: #E4DCC4; }
.ld-sede-page .ld-emb-road { stroke: rgba(253, 216, 53, .7); }
.ld-sede-page .ld-emb-hole { fill: var(--ld-white); }
.ld-sede-page .ld-pin-er, .ld-sede-page .ld-pin-ve { fill: var(--ld-magenta); }
.ld-sede-page-k {
	font-family: var(--ld-font-body);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ld-magenta);
	margin: 0 0 .3rem;
}
.ld-sede-page-addr { font-size: 1rem; line-height: 1.4; color: var(--ld-grey-ink); margin: 0 0 .7rem; }
.ld-sede-page .ld-sede-maps { color: var(--ld-magenta) !important; border-color: rgba(175, 15, 113, .4); margin-top: 0; }
.ld-sede-page .ld-sede-maps:hover { background: var(--ld-magenta); color: var(--ld-white) !important; }
@media (max-width: 520px) { .ld-sede-page { flex-direction: column; text-align: center; align-items: center; } }

/* ============================ S10 — Fascione CDI "Qualcosa di più alle Donne" ============================ */
.ld-cdi-band {
	position: relative;
	overflow: hidden;
	background: radial-gradient(120% 140% at 12% 0%, #3a1030 0%, #2A2A2A 55%, #201a24 100%);
	color: var(--ld-white);
	padding: clamp(3rem, 7vw, 5.5rem) 1.5rem;
	text-align: center;
}
.ld-cdi-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(58% 80% at 86% 100%, rgba(175, 15, 113, .38), transparent 70%);
	pointer-events: none;
}
.ld-cdi-inner { position: relative; max-width: 780px; margin: 0 auto; }
.ld-cdi-eyebrow {
	font-family: var(--ld-font-body);
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ld-yellow);
	margin: 0 0 1rem;
}
.ld-cdi-title {
	font-family: var(--ld-font-display);
	font-size: clamp(2rem, 5vw, 3.2rem);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.02em;
	color: var(--ld-white);
	margin: 0 0 1.1rem;
}
.ld-cdi-title .hl-y { color: var(--ld-yellow); }
.ld-cdi-title .hl-p { color: #F250A6; } /* rosa acceso: leggibile su scuro, famiglia magenta di marca */
.ld-cdi-text {
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, .82);
	max-width: 56ch;
	margin: 0 auto 1.9rem;
}
.ld-cdi-cta {
	display: inline-block;
	background: var(--ld-yellow);
	color: var(--ld-grey-ink) !important;
	font-family: var(--ld-font-body);
	font-weight: 700;
	font-size: 1rem;
	padding: .95rem 2rem;
	border-radius: var(--ld-radius-pill);
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease;
}
.ld-cdi-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(253, 216, 53, .32); }

/* ============================ S10 — Hero "wow": aurora animata + reveal + shimmer + scroll cue ============================ */
/* Aurora: due blob di marca (giallo + magenta) che derivano lentamente sopra il video scurito (mix-blend screen). */
.ld-hero-video-bg::before,
.ld-hero-video-bg::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	filter: blur(64px);
	mix-blend-mode: screen;
	pointer-events: none;
	opacity: .5;
	will-change: transform;
}
.ld-hero-video-bg::before {
	width: 46vw; height: 46vw; left: -8vw; top: -12vw;
	background: radial-gradient(circle, rgba(253, 216, 53, .95), rgba(253, 216, 53, 0) 68%);
	animation: ld-aurora-a 19s ease-in-out infinite alternate;
}
.ld-hero-video-bg::after {
	width: 42vw; height: 42vw; right: -10vw; bottom: -14vw;
	background: radial-gradient(circle, rgba(175, 15, 113, .9), rgba(175, 15, 113, 0) 68%);
	animation: ld-aurora-b 23s ease-in-out infinite alternate;
}
@keyframes ld-aurora-a {
	0%   { transform: translate(0, 0) scale(1); }
	100% { transform: translate(15vw, 9vw) scale(1.25); }
}
@keyframes ld-aurora-b {
	0%   { transform: translate(0, 0) scale(1.1); }
	100% { transform: translate(-13vw, -7vw) scale(.82); }
}

/* Reveal a cascata del contenuto hero */
@media (prefers-reduced-motion: no-preference) {
	.ld-hero-video-content > * { animation: ld-hero-in .7s cubic-bezier(.2, .7, .2, 1) both; }
	.ld-hero-video-content > *:nth-child(1) { animation-delay: .12s; }
	.ld-hero-video-content > *:nth-child(2) { animation-delay: .26s; }
	.ld-hero-video-content > *:nth-child(3) { animation-delay: .40s; }
	.ld-hero-video-content > *:nth-child(4) { animation-delay: .54s; }
	.ld-hero-video-content > *:nth-child(5) { animation-delay: .66s; }

	/* Shimmer sul corsivo del titolo */
	.ld-hero-video-content .ld-hero-h1 em {
		background: linear-gradient(100deg, var(--ld-yellow) 22%, #fff6c2 46%, var(--ld-yellow) 70%);
		background-size: 220% 100%;
		-webkit-background-clip: text;
		background-clip: text;
		-webkit-text-fill-color: transparent;
		color: transparent;
		animation: ld-shimmer 6.5s linear infinite;
	}
}
@keyframes ld-hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes ld-shimmer { to { background-position: -220% 0; } }

/* Indicatore scroll (mouse) in basso al centro */
.ld-hero-video::after {
	content: "";
	position: absolute;
	z-index: 2;
	left: 50%; bottom: 20px;
	transform: translateX(-50%);
	width: 24px; height: 38px;
	border: 2px solid rgba(255, 255, 255, .55);
	border-radius: 13px;
	background-image: radial-gradient(circle, #fff 0 3px, transparent 3.6px);
	background-repeat: no-repeat;
	background-position: center 7px;
}
@media (prefers-reduced-motion: no-preference) {
	.ld-hero-video::after { animation: ld-scroll 1.9s ease-in-out infinite; }
}
@keyframes ld-scroll {
	0%   { background-position: center 7px; opacity: 1; }
	60%  { background-position: center 21px; opacity: .35; }
	100% { background-position: center 7px; opacity: 1; }
}
@media (max-width: 780px) {
	.ld-hero-video-bg::before, .ld-hero-video-bg::after { opacity: .42; filter: blur(48px); }
	.ld-hero-video::after { display: none; }
}

/* ============================ S10 — Sezione Instagram (Smash Balloon) ============================ */
.ld-ig-wrap {
	max-width: 1140px;
	margin: 0 auto;
	padding: clamp(3rem, 7vw, 5rem) 1.4rem;
	text-align: center;
}
.ld-ig-header { max-width: 46rem; margin: 0 auto 2.2rem; }
.ld-ig-header .ld-section-headline em { color: var(--ld-magenta); font-style: normal; }
.ld-ig-intro { color: var(--ld-grey-soft); font-size: 1.05rem; margin: 1rem 0 0; }
.ld-ig-intro a { color: var(--ld-magenta); font-weight: 600; text-decoration: none; }
.ld-ig-intro a:hover { text-decoration: underline; text-underline-offset: .2em; }
.ld-ig-wrap .sb_instagram_header { justify-content: center; }

/* ============================ S10 — Avatar in cima alle pagine persona ============================ */
.ld-person-hero { text-align: center; margin: 0 0 2.2rem; }
.ld-person-avatar {
	width: 168px; height: 168px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--ld-hairline);
	margin: 0 auto;
	background: var(--ld-cream);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--ld-shadow-soft);
}
.ld-person-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ld-person-avatar.has-pupetta img { object-fit: contain; }
.ld-person-avatar.has-photo { background: var(--ld-yellow); }

/* ============================ S10 — Video hero a tutta larghezza schermo + attaccati all'header ============================ */
body { overflow-x: clip; } /* evita scrollbar orizzontale dai blocchi full-bleed 100vw */
.ld-hero-video,
.ld-mini-video-hero {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
/* Solo sulle pagine che iniziano con un video hero: nessuno spazio sopra */
.content-area:has(.ld-hero-video),
.content-area:has(.ld-mini-video-hero) { margin-top: 0 !important; }
.entry-content-wrap:has(.ld-hero-video),
.entry-content-wrap:has(.ld-mini-video-hero) { padding-top: 0 !important; }
