/* =========================================================
   VocalSpace — style.css  ·  v6
   THK Consulting · costruito da zero, nessun template
   Solo tema chiaro (il toggle è stato rimosso su richiesta).
   ========================================================= */

/* ---------- FONT SELF-HOSTED ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrumentsans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- TOKEN ---------- */
:root {
  --blu-profondo: #003d59;
  --blu-notte: #05202f;
  --azzurro: #1894b2;
  --azzurro-chiaro: #61c3d8;
  --corallo: #ef6236;
  --corallo-scuro: #d64d22;
  --corallo-tenue: #fdece6;

  --sfondo: #fbf8f4;
  --sfondo-alt: #f3ede5;
  --superficie: #ffffff;
  --superficie-2: #fffdfb;
  --testo: #0f2836;
  --testo-soft: #4c6572;
  --bordo: #e5dcd1;
  --bordo-forte: #d3c6b6;
  --ombra-col: 12 40 54;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-testo: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --t-xs: 0.78rem;
  --t-sm: 0.9rem;
  --t-base: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --t-lg: clamp(1.12rem, 1.05rem + 0.35vw, 1.3rem);
  --t-xl: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --t-2xl: clamp(1.7rem, 1.4rem + 1.4vw, 2.5rem);
  --t-3xl: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  --t-4xl: clamp(2.7rem, 1.6rem + 4.6vw, 5.4rem);

  --interlinea-stretta: 1.06;
  --interlinea-larga: 1.68;

  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 2.75rem; --s-8: 3.5rem;
  --s-10: 5rem; --s-12: 7rem; --s-16: clamp(4.5rem, 9vw, 9rem);
  --contenitore: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --r-sm: 6px; --r-md: 14px; --r-lg: 26px; --r-xl: 34px; --r-pill: 999px;
  --ombra-1: 0 1px 2px rgb(var(--ombra-col) / 0.06), 0 4px 14px rgb(var(--ombra-col) / 0.05);
  --ombra-2: 0 2px 6px rgb(var(--ombra-col) / 0.07), 0 16px 40px rgb(var(--ombra-col) / 0.09);
  --ombra-3: 0 30px 70px rgb(var(--ombra-col) / 0.16);

  --t-veloce: 0.18s;
  --t-medio: 0.42s;
  --t-lento: 0.9s;
  --ease-out: cubic-bezier(0.22, 0.68, 0.28, 1);
  --ease-morbida: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-elastica: cubic-bezier(0.34, 1.4, 0.5, 1);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--sfondo);
  color: var(--testo);
  font-family: var(--font-testo);
  font-size: var(--t-base);
  line-height: var(--interlinea-larga);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--interlinea-stretta);
  letter-spacing: -0.022em;
  margin: 0 0 var(--s-4);
  font-variation-settings: "opsz" 96;
  text-wrap: balance;
}
h1 { font-size: var(--t-4xl); font-weight: 700; }
h2 { font-size: var(--t-3xl); }
h3 { font-size: var(--t-xl); font-family: var(--font-testo); font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 var(--s-4); max-width: 62ch; text-wrap: pretty; }
a { color: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--corallo); outline-offset: 3px; border-radius: var(--r-sm);
}
::selection { background: var(--corallo); color: #fff; }

.contenitore { width: 100%; max-width: var(--contenitore); margin-inline: auto; padding-inline: var(--gutter); }
.stretto { max-width: 820px; }
.sezione { padding-block: var(--s-16); position: relative; }
.sezione--alt { background: var(--sfondo-alt); }

.occhiello {
  font-family: var(--font-testo); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--corallo);
  margin: 0 0 var(--s-4); display: flex; align-items: center; gap: var(--s-3);
}
.occhiello::before {
  content: ""; width: 26px; height: 2px; background: var(--corallo); flex: none;
  transform-origin: left; animation: nasceLinea 0.9s var(--ease-out) both;
}
@keyframes nasceLinea { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.guida { color: var(--testo-soft); font-size: var(--t-lg); }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--corallo); color: #fff;
  padding: var(--s-3) var(--s-5); z-index: 200; border-radius: 0 0 var(--r-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- BARRA DI PROGRESSO ---------- */
.progresso {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%;
  transform: scaleX(0); transform-origin: left; z-index: 120;
  background: linear-gradient(90deg, var(--corallo), var(--azzurro));
  pointer-events: none;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, var(--sfondo) 86%, transparent);
  border-bottom: 1px solid transparent;
  transition: background var(--t-medio) var(--ease-morbida), border-color var(--t-medio), box-shadow var(--t-medio);
}
.nav.scrolled { background: var(--sfondo); border-bottom-color: var(--bordo); box-shadow: var(--ombra-1); }
.nav__in { display: flex; align-items: center; gap: var(--s-5); min-height: 74px; }
.nav__logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.nav__logo img { height: 42px; width: auto; transition: transform var(--t-medio) var(--ease-elastica); }
.nav__logo:hover img { transform: scale(1.05) rotate(-1deg); }
.nav__links { display: flex; align-items: center; gap: var(--s-6); }
.nav__links a {
  text-decoration: none; font-weight: 500; font-size: var(--t-sm);
  position: relative; padding-block: 4px; color: var(--testo);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--corallo); transform: scaleX(0); transform-origin: right;
  transition: transform var(--t-medio) var(--ease-out);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__azioni { display: flex; align-items: center; gap: var(--s-3); }
.nav__azioni .btn { font-size: 0.82rem; padding: 0.8em 1.35em; white-space: nowrap; }

/* le ancore non finiscono sotto la barra fissa */
[id] { scroll-margin-top: 92px; }

.hamburger {
  display: none; position: relative; width: 42px; height: 42px;
  border: 1px solid var(--bordo); background: var(--superficie);
  border-radius: var(--r-pill); cursor: pointer; padding: 0;
}
.hamburger span {
  position: absolute; left: 50%; width: 18px; height: 2px; margin-left: -9px;
  background: var(--testo); border-radius: 2px;
  transition: transform var(--t-medio) var(--ease-out), opacity var(--t-veloce);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 20px; }
.hamburger span:nth-child(3) { top: 26px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.menu-mobile {
  position: fixed; inset: 74px 0 0; background: var(--sfondo); z-index: 89;
  padding: var(--s-6) var(--gutter) var(--s-10);
  display: flex; flex-direction: column; gap: var(--s-2);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity var(--t-medio) var(--ease-out), transform var(--t-medio) var(--ease-out), visibility var(--t-medio);
  overflow-y: auto;
}
.menu-mobile.aperto { opacity: 1; transform: none; visibility: visible; }
.menu-mobile a {
  text-decoration: none; font-family: var(--font-display); font-size: var(--t-2xl);
  padding-block: var(--s-3); border-bottom: 1px solid var(--bordo);
  opacity: 0; transform: translateY(14px);
}
.menu-mobile.aperto a { animation: entraVoce 0.5s var(--ease-out) forwards; }
.menu-mobile.aperto a:nth-child(1) { animation-delay: 0.05s; }
.menu-mobile.aperto a:nth-child(2) { animation-delay: 0.1s; }
.menu-mobile.aperto a:nth-child(3) { animation-delay: 0.15s; }
.menu-mobile.aperto a:nth-child(4) { animation-delay: 0.2s; }
.menu-mobile.aperto a:nth-child(5) { animation-delay: 0.25s; }
.menu-mobile.aperto a:nth-child(6) { animation-delay: 0.3s; }
@keyframes entraVoce { to { opacity: 1; transform: none; } }
.menu-mobile .btn { margin-top: var(--s-5); font-size: var(--t-base); border-bottom: 0; }

/* ---------- PULSANTI ---------- */
.btn {
  --btn-bg: var(--corallo); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-3);
  padding: 0.95em 1.7em; background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: var(--r-pill);
  text-decoration: none; font-weight: 600; font-size: var(--t-sm); line-height: 1.15;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform var(--t-veloce) var(--ease-out), box-shadow var(--t-medio) var(--ease-out), background var(--t-medio);
  box-shadow: 0 4px 16px rgb(239 98 54 / 0.28);
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgb(255 255 255 / 0.32) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 0.75s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgb(239 98 54 / 0.38); }
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; flex: none; transition: transform var(--t-medio) var(--ease-out); }
.btn:hover svg:last-child { transform: translateX(4px); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--testo); border-color: var(--bordo-forte); box-shadow: none; }
.btn--ghost:hover { border-color: var(--blu-profondo); background: var(--superficie); box-shadow: var(--ombra-1); }
.btn--chiaro { --btn-bg: #fff; --btn-fg: var(--blu-profondo); box-shadow: 0 4px 18px rgb(0 0 0 / 0.18); }
.btn--chiaro:hover { box-shadow: 0 14px 36px rgb(0 0 0 / 0.28); }
.btn--bordo-chiaro { --btn-bg: transparent; --btn-fg: #fff; border-color: rgb(255 255 255 / 0.45); box-shadow: none; }
.btn--bordo-chiaro:hover { background: rgb(255 255 255 / 0.12); border-color: #fff; }
.azioni { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* ---------- LINEA DELLA VOCE ---------- */
.voce-linea { display: block; width: 100%; height: 68px; overflow: visible; }
.voce-linea path { fill: none; stroke: var(--corallo); stroke-width: 2.4; stroke-linecap: round; }
.voce-linea .traccia { stroke: var(--bordo-forte); stroke-width: 1.4; }

/* ---------- MACCHIE DI COLORE ANIMATE ---------- */
.macchie { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.macchia {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.5;
  animation: derivaMacchia 22s var(--ease-morbida) infinite alternate;
}
.macchia--1 { width: 46vw; height: 46vw; left: -14vw; top: -12vw; background: rgb(24 148 178 / 0.24); }
.macchia--2 { width: 34vw; height: 34vw; right: -8vw; top: 18vw; background: rgb(239 98 54 / 0.18); animation-delay: -8s; }
.macchia--3 { width: 28vw; height: 28vw; left: 28vw; bottom: -12vw; background: rgb(0 61 89 / 0.14); animation-delay: -15s; }
@keyframes derivaMacchia {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 3vw, 0) scale(1.14); }
}

/* ---------- HERO ---------- */
.hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem) 0; }
.hero > * { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: var(--s-5); }
.hero h1 .parola { display: inline-block; overflow: hidden; vertical-align: bottom; }
.hero h1 .parola > span { display: inline-block; transform: translateY(105%); }
html.js .hero h1 .parola > span { animation: saleParola 0.95s var(--ease-out) forwards; }
html:not(.js) .hero h1 .parola > span { transform: none; }
@keyframes saleParola { to { transform: translateY(0); } }
.hero h1 em { font-style: normal; color: var(--corallo); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.1em; height: 0.09em;
  background: var(--corallo); opacity: 0.28; transform: scaleX(0); transform-origin: left;
}
html.js .hero h1 em::after { animation: sottolinea 0.9s 1.1s var(--ease-out) forwards; }
@keyframes sottolinea { to { transform: scaleX(1); } }

.hero__sub, .hero .azioni, .hero__nota { opacity: 1; }
html.js .hero__sub, html.js .hero .azioni, html.js .hero__nota { opacity: 0; animation: sale 0.8s var(--ease-out) forwards; }
html.js .hero__sub { animation-delay: 0.5s; }
html.js .hero .azioni { animation-delay: 0.65s; }
html.js .hero__nota { animation-delay: 0.8s; }
@keyframes sale { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero__sub { font-size: var(--t-lg); color: var(--testo-soft); max-width: 46ch; margin-bottom: var(--s-6); }
.hero__nota { margin-top: var(--s-5); font-size: var(--t-sm); color: var(--testo-soft); display: flex; gap: var(--s-3); align-items: flex-start; max-width: 44ch; }
.hero__nota svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--azzurro); }

.hero__media { position: relative; isolation: isolate; }
.hero__foto {
  position: relative; z-index: 1; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--ombra-3); aspect-ratio: 3 / 4; background: var(--sfondo-alt);
}
.hero__foto img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
html.js .hero__foto { clip-path: inset(0 0 100% 0); animation: apreFoto 1.1s 0.25s var(--ease-out) forwards; }
@keyframes apreFoto { to { clip-path: inset(0 0 0 0); } }
.hero__badge {
  position: absolute; z-index: 3; left: -18px; bottom: 34px;
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5); box-shadow: var(--ombra-2); max-width: 235px;
}
html.js .hero__badge { opacity: 0; animation: sale 0.7s 1.15s var(--ease-out) forwards; }
.hero__badge strong { display: block; font-family: var(--font-display); font-size: var(--t-lg); line-height: 1.15; }
.hero__badge span { font-size: var(--t-xs); color: var(--testo-soft); letter-spacing: 0.04em; text-transform: uppercase; }
.hero__pianeta {
  position: absolute; z-index: 3; top: clamp(-58px, -4vw, -40px); right: -22px;
  width: clamp(78px, 9vw, 120px);
  filter: drop-shadow(0 8px 20px rgb(var(--ombra-col) / 0.18));
  animation: fluttua 7s var(--ease-morbida) infinite;
}
@keyframes fluttua { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(6deg); } }

.scorri {
  display: inline-flex; align-items: center; gap: var(--s-3);
  margin-top: var(--s-7); font-size: var(--t-xs); letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--testo-soft); text-decoration: none;
}
.scorri i {
  width: 22px; height: 34px; border: 1.5px solid var(--bordo-forte); border-radius: var(--r-pill);
  position: relative; flex: none;
}
.scorri i::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; margin-left: -1.5px;
  border-radius: 2px; background: var(--corallo); animation: rotella 1.9s var(--ease-morbida) infinite;
}
@keyframes rotella { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(11px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- TICKER GENERI ---------- */
.ticker {
  background: var(--blu-profondo); color: #fff; overflow: hidden;
  padding-block: var(--s-4); border-block: 1px solid rgb(255 255 255 / 0.08);
}
/* i nastri non si fermano mai, nemmeno col mouse sopra */
.ticker__pista { display: flex; width: max-content; animation: scorreTicker 36s linear infinite; }
.ticker span {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.1vw, 1.7rem);
  padding-inline: var(--s-5); display: inline-flex; align-items: center; gap: var(--s-5);
  white-space: nowrap; opacity: 0.92;
}
.ticker span::after { content: "✦"; color: var(--corallo); font-size: 0.6em; }
@keyframes scorreTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CREDENZIALI ---------- */
.credenziali { border-bottom: 1px solid var(--bordo); background: var(--superficie-2); }
.credenziali ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.credenziali li {
  padding: var(--s-5) var(--s-4); display: flex; gap: var(--s-3); align-items: flex-start;
  font-size: var(--t-sm); line-height: 1.45; border-left: 1px solid var(--bordo);
  transition: background var(--t-medio);
}
.credenziali li:first-child { border-left: 0; }
.credenziali li:hover { background: var(--corallo-tenue); }
.credenziali svg { width: 22px; height: 22px; flex: none; color: var(--azzurro); transition: transform var(--t-medio) var(--ease-elastica); }
.credenziali li:hover svg { transform: scale(1.18) rotate(-6deg); }
.credenziali strong { display: block; }
.credenziali span { color: var(--testo-soft); }

/* ---------- IMMAGINI: REVEAL + ZOOM ---------- */
/* <picture> è un contenitore in più: senza questo, height:100% sull'img non ha
   un genitore con altezza e le foto non riempiono la cornice */
.hero__foto > picture, .foto-cornice > picture, .media > picture,
.pilastro__foto > picture, .luogo__foto > picture, .target__foto > picture,
.scura__fondo > picture, .galleria__pista figure > picture {
  display: block; width: 100%; height: 100%;
}
.foto-cornice, .media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--ombra-2); position: relative; }
.foto-cornice { aspect-ratio: 4 / 5; }
.foto-cornice--larga { aspect-ratio: 4 / 3; }
.foto-cornice img, .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.foto-cornice:hover img, .media:hover img { transform: scale(1.05); }
html.js .clip img { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
html.js .clip.in img { clip-path: inset(0 0 0 0); }

/* collage a due foto */
.collage { position: relative; padding-bottom: 3.5rem; padding-right: 2.5rem; }
.collage__a { aspect-ratio: 4 / 5; }
.collage__b {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 4 / 5;
  border: 8px solid var(--sfondo); border-radius: var(--r-lg); box-shadow: var(--ombra-3);
}
.sezione--alt .collage__b { border-color: var(--sfondo-alt); }

/* ---------- OBIEZIONE ---------- */
.obiezione__frasi { display: flex; flex-direction: column; gap: var(--s-3); margin: var(--s-6) 0 var(--s-7); }
.obiezione__frasi q {
  font-family: var(--font-display); font-size: var(--t-xl); color: var(--testo-soft);
  quotes: "«" "»"; font-variation-settings: "opsz" 40;
}
.obiezione__frasi q::before, .obiezione__frasi q::after { color: var(--corallo); }
.blocco-due { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

/* ---------- PILASTRI (con foto) ---------- */
.pilastri { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-top: var(--s-8); }
.pilastro {
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-lg);
  overflow: hidden; position: relative;
  transition: transform var(--t-medio) var(--ease-out), box-shadow var(--t-medio) var(--ease-out), border-color var(--t-medio);
}
.pilastro:hover { transform: translateY(-8px); box-shadow: var(--ombra-3); border-color: var(--bordo-forte); }
.pilastro__foto { aspect-ratio: 16 / 11; overflow: hidden; position: relative; background: var(--sfondo-alt); }
.pilastro__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.pilastro:hover .pilastro__foto img { transform: scale(1.07); }
.pilastro__foto::after {
  content: ""; position: absolute; inset: 40% 0 0 0;
  background: linear-gradient(to bottom, transparent, rgb(4 22 32 / 0.72));
  pointer-events: none;
}
.pilastro__n {
  position: absolute; left: var(--s-5); bottom: 10px; z-index: 2;
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: #fff;
  line-height: 1; font-variation-settings: "opsz" 144;
  text-shadow: 0 6px 26px rgb(0 0 0 / 0.55);
}
.pilastro__testo { padding: var(--s-6); }
.pilastro h3 { margin-bottom: var(--s-3); }
.pilastro p { margin: 0; font-size: var(--t-sm); color: var(--testo-soft); }
.nota-piccola { font-size: var(--t-sm); color: var(--testo-soft); font-style: italic; margin-top: var(--s-5); }

/* ---------- LUOGHI (con foto) ---------- */
.luoghi { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: var(--s-5); margin-top: var(--s-8); }
.luogo {
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t-medio) var(--ease-out), box-shadow var(--t-medio) var(--ease-out);
}
.luogo:hover { transform: translateY(-6px); box-shadow: var(--ombra-3); }
.luogo__foto { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sfondo-alt); }
.luogo__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.luogo:hover .luogo__foto img { transform: scale(1.06); }
.luogo__corpo { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.luogo--primo { background: var(--blu-profondo); color: #fff; border-color: transparent; }
.luogo h3 { margin: 0; }
.luogo__eti { font-size: var(--t-xs); text-transform: uppercase; letter-spacing: 0.12em; color: var(--corallo); font-weight: 600; }
.luogo__lista { list-style: none; margin: var(--s-2) 0 0; padding: 0; font-size: var(--t-sm); }
.luogo__lista li { padding-block: var(--s-2); border-top: 1px solid var(--bordo); }
.luogo p { font-size: var(--t-sm); color: var(--testo-soft); margin: 0; }
.luogo.luogo--primo p { color: rgb(255 255 255 / 0.86); }
.luogo.luogo--primo h3 { color: #fff; }
.luogo.luogo--primo em { color: #ffd2c2; font-style: normal; font-weight: 600; }
.luogo.luogo--primo .luogo__eti { color: #ffb59b; }
.luogo.luogo--primo .luogo__lista li { border-color: rgb(255 255 255 / 0.18); }
.luogo__nota {
  margin-top: var(--s-6); padding: var(--s-4) var(--s-5); background: var(--corallo-tenue);
  border-radius: var(--r-md); font-size: var(--t-sm); color: var(--testo);
  border-left: 3px solid var(--corallo);
}

/* ---------- NUMERI ---------- */
.numeri { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-top: var(--s-8); }
.numero { text-align: center; padding: var(--s-5); }
.numero strong {
  display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 700; color: var(--corallo); line-height: 1; font-variation-settings: "opsz" 144;
}
.numero span { display: block; font-size: var(--t-sm); color: var(--testo-soft); margin-top: var(--s-2); }

/* ---------- VANTAGGI ---------- */
.vantaggi { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); margin-top: var(--s-8); }
.vantaggio {
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-md);
  padding: var(--s-5); position: relative; overflow: hidden;
  transition: transform var(--t-medio) var(--ease-out), border-color var(--t-medio), box-shadow var(--t-medio);
}
.vantaggio::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, var(--corallo), var(--azzurro));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-medio) var(--ease-out);
}
.vantaggio:hover { transform: translateY(-6px); border-color: var(--corallo); box-shadow: var(--ombra-2); }
.vantaggio:hover::before { transform: scaleX(1); }
.vantaggio__icona {
  width: 38px; height: 38px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: color-mix(in srgb, var(--azzurro) 12%, transparent); color: var(--azzurro);
  margin-bottom: var(--s-3); transition: transform var(--t-medio) var(--ease-elastica), background var(--t-medio), color var(--t-medio);
}
.vantaggio:hover .vantaggio__icona { transform: rotate(-8deg) scale(1.1); background: var(--corallo); color: #fff; }
.vantaggio__icona svg { width: 19px; height: 19px; }
.vantaggio strong { display: block; margin-bottom: var(--s-1); font-size: var(--t-base); }
.vantaggio span { font-size: var(--t-sm); color: var(--testo-soft); line-height: 1.5; display: block; }

/* ---------- GALLERIA SCORREVOLE ---------- */
.galleria { overflow: hidden; padding-block: var(--s-6); position: relative; }
.galleria::before, .galleria::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 12vw; z-index: 2; pointer-events: none;
}
.galleria::before { left: 0; background: linear-gradient(90deg, var(--sfondo), transparent); }
.galleria::after { right: 0; background: linear-gradient(270deg, var(--sfondo), transparent); }
.galleria--alt::before { background: linear-gradient(90deg, var(--sfondo-alt), transparent); }
.galleria--alt::after { background: linear-gradient(270deg, var(--sfondo-alt), transparent); }
.galleria__pista { display: flex; gap: var(--s-4); width: max-content; animation: scorreGalleria 52s linear infinite; }
.galleria--lenta .galleria__pista { animation-duration: 66s; animation-direction: reverse; }
.galleria__pista figure {
  margin: 0; width: clamp(190px, 22vw, 300px); aspect-ratio: 4 / 3;
  border-radius: var(--r-md); overflow: hidden; box-shadow: var(--ombra-1); flex: none;
}
.galleria__pista img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-lento) var(--ease-out); }
.galleria__pista figure:hover img { transform: scale(1.08); }
@keyframes scorreGalleria { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SEZIONE SCURA CON FOTO ---------- */
.scura { background: var(--blu-notte); color: #f2f7f9; position: relative; overflow: hidden; }
.scura > .contenitore { position: relative; z-index: 2; }
.scura h2, .scura h3 { color: #fff; }
.scura p { color: rgb(242 247 249 / 0.8); }
.scura .occhiello { color: var(--azzurro-chiaro); }
.scura .occhiello::before { background: var(--azzurro-chiaro); }
.scura__fondo { position: absolute; inset: -12% 0 -12% 0; z-index: 0; }
.scura__fondo img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; will-change: transform; }
.scura::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, var(--blu-notte) 22%, rgb(5 32 47 / 0.82) 60%, rgb(5 32 47 / 0.6));
}

.tappe { display: grid; gap: var(--s-5); margin-top: var(--s-7); }
.tappa {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-5); align-items: start;
  padding-bottom: var(--s-5); border-bottom: 1px solid rgb(255 255 255 / 0.14);
}
.tappa:last-child { border-bottom: 0; padding-bottom: 0; }
.tappa__eti {
  font-family: var(--font-display); font-size: var(--t-lg); color: var(--corallo);
  white-space: nowrap; padding-top: 2px; font-variation-settings: "opsz" 40;
  display: flex; align-items: baseline; gap: var(--s-3);
}
.tappa__eti b {
  font-size: 2.1em; line-height: 0.8; font-weight: 700; color: #fff;
  font-variation-settings: "opsz" 144;
}
.tappa p { margin: 0; }
.chiusa-forte {
  margin-top: var(--s-8); font-family: var(--font-display); font-size: var(--t-2xl);
  line-height: 1.25; color: #fff; border-left: 3px solid var(--corallo);
  padding-left: var(--s-5); max-width: 30ch;
}

/* ---------- RECENSIONI ---------- */
.recensioni { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-5); margin-top: var(--s-8); }
.recensione {
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-lg);
  padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-4); position: relative;
  transition: transform var(--t-medio) var(--ease-out), box-shadow var(--t-medio);
}
.recensione:hover { transform: translateY(-5px) rotate(-0.4deg); box-shadow: var(--ombra-2); }
.recensione::before {
  content: "“"; position: absolute; top: 4px; right: 22px; font-family: var(--font-display);
  font-size: 5rem; line-height: 1; color: var(--corallo); opacity: 0.16;
}
.recensione blockquote { margin: 0; font-size: var(--t-lg); line-height: 1.5; font-family: var(--font-display); font-variation-settings: "opsz" 30; }
.recensione figcaption { font-size: var(--t-sm); color: var(--testo-soft); display: flex; align-items: center; gap: var(--s-3); margin-top: auto; }
.recensione figcaption::before { content: ""; width: 26px; height: 2px; background: var(--corallo); flex: none; }

/* ---------- TARGET (con foto) ---------- */
.target { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); margin-top: var(--s-8); }
.target__voce {
  border-radius: var(--r-lg); border: 1px solid var(--bordo); background: var(--superficie);
  overflow: hidden; transition: transform var(--t-medio) var(--ease-out), box-shadow var(--t-medio);
}
.target__voce:hover { transform: translateY(-6px); box-shadow: var(--ombra-2); }
.target__foto { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sfondo-alt); }
.target__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.target__voce:hover .target__foto img { transform: scale(1.06); }
.target__corpo { padding: var(--s-6); }
.target__voce h3 { margin-bottom: var(--s-2); }
.target__voce p { margin: 0; font-size: var(--t-sm); color: var(--testo-soft); }
.target__voce--primo { border-color: var(--corallo); box-shadow: 0 0 0 3px var(--corallo-tenue); }
.eti-primo {
  display: inline-block; font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--corallo); background: var(--corallo-tenue);
  padding: 3px 10px; border-radius: var(--r-pill); margin-bottom: var(--s-3);
}
.riquadro-genitori {
  margin-top: var(--s-6); background: var(--corallo-tenue); border-radius: var(--r-lg);
  padding: var(--s-6); display: flex; flex-wrap: wrap; gap: var(--s-5);
  align-items: center; justify-content: space-between; border: 1px dashed var(--corallo);
}
.riquadro-genitori p { margin: 0; max-width: 52ch; }

/* ---------- PALCO ---------- */
.palco { position: relative; overflow: hidden; background: var(--blu-profondo); color: #fff; }
.palco__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.palco h2 { color: #fff; }
.palco p { color: rgb(255 255 255 / 0.84); }
.palco .occhiello { color: var(--corallo); }
.palco__foto { position: relative; }
.palco__foto .media { aspect-ratio: 4 / 5; }
.palco__foto .media--b {
  position: absolute; left: -10%; bottom: -12%; width: 48%; aspect-ratio: 3 / 4;
  border: 8px solid var(--blu-profondo); box-shadow: var(--ombra-3);
}

/* ---------- FAQ ---------- */
.faq { margin-top: var(--s-8); border-top: 1px solid var(--bordo); }
.faq__item { border-bottom: 1px solid var(--bordo); }
.faq__q {
  width: 100%; background: none; border: 0; text-align: left;
  padding: var(--s-5) 3rem var(--s-5) 0; font-family: var(--font-display);
  font-size: var(--t-xl); font-weight: 600; color: var(--testo); cursor: pointer;
  position: relative; line-height: 1.3; font-variation-settings: "opsz" 40;
  transition: color var(--t-veloce), padding-left var(--t-medio) var(--ease-out);
}
.faq__q:hover { color: var(--corallo); padding-left: 10px; }
.faq__q::after, .faq__q::before {
  content: ""; position: absolute; right: 6px; top: 50%; width: 15px; height: 2px;
  background: var(--corallo); transition: transform var(--t-medio) var(--ease-out);
}
.faq__q::before { transform: translateY(-50%) rotate(90deg); }
.faq__q::after { transform: translateY(-50%); }
.faq__q[aria-expanded="true"] { color: var(--corallo); }
.faq__q[aria-expanded="true"]::before { transform: translateY(-50%) rotate(0); }
.faq__r { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-medio) var(--ease-morbida); }
.faq__item.aperto .faq__r { grid-template-rows: 1fr; }
.faq__r > div { overflow: hidden; }
.faq__r p { margin: 0 0 var(--s-3); color: var(--testo-soft); max-width: 68ch; }
.faq__r p:last-child { margin-bottom: var(--s-5); }

/* ---------- BANDA CTA ---------- */
.cta-banda {
  background: linear-gradient(130deg, var(--blu-profondo), #0a5b7a 45%, var(--azzurro) 75%, #0a5b7a);
  background-size: 260% 260%;
  animation: muoveGradiente 16s var(--ease-morbida) infinite alternate;
  color: #fff; border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 4.4rem);
  text-align: center; position: relative; overflow: hidden;
}
@keyframes muoveGradiente { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.cta-banda h2 { color: #fff; }
.cta-banda p { color: rgb(255 255 255 / 0.88); margin-inline: auto; }
.cta-banda .azioni { justify-content: center; margin-top: var(--s-6); }
.cta-banda__onda { position: absolute; left: 0; right: 0; bottom: -2px; opacity: 0.32; pointer-events: none; }

/* ---------- FOOTER ---------- */
.footer { background: var(--sfondo-alt); border-top: 1px solid var(--bordo); padding-block: var(--s-10) var(--s-5); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: var(--s-7); padding-bottom: var(--s-8); }
.footer__logo img { height: 56px; width: auto; }
.footer__grid p { font-size: var(--t-sm); color: var(--testo-soft); margin-top: var(--s-4); }
.footer h4 { font-family: var(--font-testo); font-size: var(--t-xs); text-transform: uppercase; letter-spacing: 0.14em; color: var(--testo-soft); margin-bottom: var(--s-4); }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer a { text-decoration: none; font-size: var(--t-sm); transition: color var(--t-veloce), padding-left var(--t-veloce); }
.footer li a:hover { color: var(--corallo); padding-left: 4px; }
.footer__social { flex-direction: row !important; gap: var(--s-3); margin-top: var(--s-4); }
.footer__social a {
  width: 38px; height: 38px; border: 1px solid var(--bordo); border-radius: var(--r-pill);
  display: grid; place-items: center; background: var(--superficie);
  transition: transform var(--t-medio) var(--ease-elastica), border-color var(--t-veloce), background var(--t-veloce), color var(--t-veloce);
}
.footer__social a:hover { transform: translateY(-4px); border-color: var(--corallo); background: var(--corallo); color: #fff; }
.footer__social svg { width: 17px; height: 17px; }
.footer__legale {
  border-top: 1px solid var(--bordo); padding-top: var(--s-5); display: flex; flex-wrap: wrap;
  gap: var(--s-4); justify-content: space-between; font-size: var(--t-xs); color: var(--testo-soft);
}
.footer__legale a { font-size: var(--t-xs); }

/* ---------- RIGA CTA INTERMEDIA ---------- */
.cta-riga {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-5); margin-top: var(--s-8);
  padding: var(--s-6) clamp(1.4rem, 3vw, 2.6rem);
  background: var(--superficie); border: 1px solid var(--bordo);
  border-left: 4px solid var(--corallo); border-radius: var(--r-lg); box-shadow: var(--ombra-1);
}
.cta-riga__testo { flex: 1 1 320px; }
.cta-riga strong {
  display: block; font-family: var(--font-display); font-size: var(--t-xl);
  line-height: 1.2; margin-bottom: var(--s-2);
}
.cta-riga span { font-size: var(--t-sm); color: var(--testo-soft); }
.cta-riga .azioni { flex: 0 0 auto; }
.sezione--alt .cta-riga { background: var(--superficie); }
.scura .cta-riga {
  background: rgb(255 255 255 / 0.06); border-color: rgb(255 255 255 / 0.16);
  border-left-color: var(--corallo); box-shadow: none;
}
.scura .cta-riga strong { color: #fff; }
.scura .cta-riga span { color: rgb(242 247 249 / 0.72); }

/* ---------- COOKIE ---------- */
.cookie {
  position: fixed; right: var(--gutter); bottom: var(--gutter); max-width: 390px;
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-md);
  box-shadow: var(--ombra-3); padding: var(--s-5); z-index: 120; font-size: var(--t-sm);
  transform: translateY(16px); opacity: 0;
  transition: opacity var(--t-medio) var(--ease-out), transform var(--t-medio) var(--ease-out);
}
.cookie.visibile { opacity: 1; transform: none; }
.cookie p { margin-bottom: var(--s-4); font-size: var(--t-sm); }
.cookie .azioni .btn { padding: 0.6em 1.2em; font-size: var(--t-xs); }

/* ---------- PAGINE INTERNE ---------- */
.testata { padding-block: clamp(3rem, 7vw, 5.5rem) var(--s-8); background: var(--sfondo-alt); border-bottom: 1px solid var(--bordo); position: relative; overflow: hidden; }
.testata > .contenitore { position: relative; z-index: 1; }
.testata h1 { max-width: 18ch; }
.testata .guida { max-width: 58ch; }
.briciole { font-size: var(--t-xs); color: var(--testo-soft); margin-bottom: var(--s-5); }
.briciole a { text-decoration: none; }
.briciole a:hover { color: var(--corallo); }

.prosa h2 { margin-top: var(--s-8); }
.prosa h2:first-child { margin-top: 0; }
.prosa h3 { margin-top: var(--s-6); }
.prosa ul { padding-left: 1.15rem; color: var(--testo-soft); }
.prosa li { margin-bottom: var(--s-2); }

.citazione-forte {
  font-family: var(--font-display); font-size: var(--t-2xl); line-height: 1.25; color: var(--testo);
  border-left: 3px solid var(--corallo); padding-left: var(--s-5); margin: var(--s-7) 0;
  max-width: 24ch; font-variation-settings: "opsz" 96;
}

/* ---------- SPEZZA-TESTO: punti, evidenze, divisori ---------- */
/* servono a non lasciare mai più di due o tre righe di prosa di fila */
.punti { list-style: none; margin: var(--s-6) 0; padding: 0; display: grid; gap: var(--s-3); }
.punti li {
  display: grid; grid-template-columns: 40px 1fr; gap: var(--s-4); align-items: start;
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: transform var(--t-medio) var(--ease-out), border-color var(--t-medio);
}
.punti li:hover { transform: translateX(5px); border-color: var(--corallo); }
.punti i {
  width: 40px; height: 40px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--corallo-tenue); color: var(--corallo); font-style: normal; font-size: 1.15rem;
}
.punti b { display: block; font-size: var(--t-base); margin-bottom: 2px; }
.punti span { font-size: var(--t-sm); color: var(--testo-soft); line-height: 1.5; }
.sezione--alt .punti li { background: var(--superficie); }

.evidenzia {
  background: linear-gradient(180deg, transparent 62%, var(--corallo-tenue) 62%);
  padding: 0 2px; font-weight: 600;
}

.divisore { display: flex; align-items: center; gap: var(--s-4); margin: var(--s-7) 0; }
.divisore::before, .divisore::after { content: ""; height: 1px; background: var(--bordo-forte); flex: 1; }
.divisore span {
  font-size: var(--t-xs); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--testo-soft); white-space: nowrap;
}

/* testo più arioso e mai troppo largo */
.prosa p { max-width: 56ch; }
.prosa p + p { margin-top: var(--s-4); }

.passi { display: grid; gap: var(--s-4); margin-top: var(--s-8); }
.passo {
  display: grid; grid-template-columns: 62px 1fr; gap: var(--s-5); align-items: start;
  background: var(--superficie); border: 1px solid var(--bordo); border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  transition: transform var(--t-medio) var(--ease-out), box-shadow var(--t-medio), border-color var(--t-medio);
}
.passo:hover { transform: translateX(8px); box-shadow: var(--ombra-2); border-color: var(--corallo); }
.passo__n {
  width: 46px; height: 46px; border-radius: var(--r-pill); background: var(--blu-profondo); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-size: var(--t-lg); font-weight: 700;
  transition: background var(--t-medio), transform var(--t-medio) var(--ease-elastica);
}
.passo:hover .passo__n { background: var(--corallo); transform: scale(1.08); }
.passo h3 { margin-bottom: var(--s-2); }
.passo p { margin: 0; font-size: var(--t-sm); color: var(--testo-soft); }

.obiettivi { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-8); }
.obiettivo {
  border: 1px solid var(--bordo); border-radius: var(--r-lg); padding: var(--s-5); background: var(--superficie);
  transition: border-color var(--t-medio), transform var(--t-medio) var(--ease-out), box-shadow var(--t-medio);
}
.obiettivo:hover { border-color: var(--corallo); transform: translateY(-5px); box-shadow: var(--ombra-1); }
.obiettivo strong { display: block; font-family: var(--font-display); font-size: var(--t-lg); margin-bottom: var(--s-2); }
.obiettivo span { font-size: var(--t-sm); color: var(--testo-soft); }

/* ---------- 404 ---------- */
.errore { min-height: 68vh; display: grid; place-items: center; text-align: center; padding-block: var(--s-12); }
.errore__n {
  font-family: var(--font-display); font-size: clamp(5rem, 18vw, 11rem); line-height: 0.9;
  color: var(--corallo); font-variation-settings: "opsz" 144; margin-bottom: var(--s-4);
}

/* ---------- REVEAL (con rete di sicurezza) ---------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
html.js .reveal.in { opacity: 1; transform: none; }
html.js .reveal.rit-1 { transition-delay: 0.09s; }
html.js .reveal.rit-2 { transition-delay: 0.18s; }
html.js .reveal.rit-3 { transition-delay: 0.27s; }
html.js .reveal.rit-4 { transition-delay: 0.36s; }
html.js .reveal--scala { transform: translateY(24px) scale(0.97); }
html.js .reveal--scala.in { transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1040px) {
  .luoghi { grid-template-columns: 1fr; }
  .vantaggi { grid-template-columns: repeat(2, 1fr); }
  .credenziali ul { grid-template-columns: repeat(2, 1fr); }
  .credenziali li:nth-child(3) { border-left: 0; }
  .credenziali li:nth-child(n+3) { border-top: 1px solid var(--bordo); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .obiettivi { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__azioni .btn { display: none; }
  .hamburger { display: block; }
  .hero__grid, .blocco-due, .palco__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__badge { left: -6px; }
  .scorri { display: none; }
  .pilastri, .target, .recensioni, .obiettivi, .numeri { grid-template-columns: 1fr; }
  .cookie { left: var(--s-4); right: var(--s-4); bottom: var(--s-4); max-width: none; }
  .cta-riga { flex-direction: column; align-items: stretch; }
  .cta-riga__testo { flex: 0 0 auto; }
  .cta-riga .azioni { width: 100%; }
  .cta-riga .azioni .btn { flex: 1 1 100%; text-align: center; }
  .nav__logo img { height: 36px; }
  .footer__grid { grid-template-columns: 1fr; }
  .passo { grid-template-columns: 1fr; gap: var(--s-3); }
  .tappa { grid-template-columns: 1fr; gap: var(--s-2); }
  .palco__foto .media--b { left: auto; right: -4%; bottom: -8%; width: 42%; }
  .collage { padding-right: 1.5rem; padding-bottom: 2.5rem; }
  .galleria__pista { animation-duration: 34s; }
}
@media (max-width: 560px) {
  .vantaggi, .credenziali ul { grid-template-columns: 1fr; }
  .credenziali li { border-left: 0; border-top: 1px solid var(--bordo); }
  .credenziali li:first-child { border-top: 0; }
  .riquadro-genitori { flex-direction: column; align-items: flex-start; }
}

/* ---------- MOVIMENTO RIDOTTO ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  html.js .hero__foto { clip-path: none !important; }
  html.js .clip img { clip-path: none !important; }
  html.js .hero h1 .parola > span { transform: none !important; }
  html.js .hero__sub, html.js .hero .azioni, html.js .hero__nota, html.js .hero__badge { opacity: 1 !important; }
  .ticker__pista, .galleria__pista { animation: none !important; }
}

/* ---------- STAMPA ---------- */
@media print {
  .nav, .cookie, .btn, .menu-mobile, .progresso, .ticker, .galleria { display: none !important; }
  body { background: #fff; color: #000; }
}
