@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
       url('../fonts/Outfit-Regular.woff') format('woff'),
       url('../fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
       url('../fonts/Outfit-Bold.woff') format('woff'),
       url('../fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

:root {
  --ink: #2A2E28;
  --ivory: #F1E9E0;
  --ivory-2: #E8DDD0;
  --page: #E8DDD0;
  --terracotta: #B5573C;
  --terracotta-dark: #8f4028;
  --white: #FFFFFF;
  --studio-white: #f8f3ed; /* bianco studio delle foto prodotto: holder allineati a QUESTO, non a --white puro */
  --font-display: 'Outfit', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { height: 0; }

/* Contenitore della mappa SVG del liquid glass (GlassSurface / React Bits,
   porting vanilla in mountLiquidGlass, main.js): invisibile di per sé, serve
   solo a ospitare il <filter> a cui il backdrop-filter dell'elemento punta. */
.liquid-glass__filter { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; z-index: -1; }

img { max-width: 100%; }

/* Pagina a pieno schermo: niente più cornice "a finestra" (page-shell in
   tinta --page + card centrata con margine/ombra) — quello spigolo vivo in
   cima era esattamente lo "stacco netto" segnalato all'inizio dell'header,
   e lo StaggeredMenu (position:fixed su tutto il viewport) rompeva la cornice
   in modo incoerente quando si apriva. La stessa identica regola era già
   usata sotto i 900px (era "solo mobile"): ora è il comportamento di base. */
.page-shell {
  min-height: 100vh;
  background: var(--page);
  padding: 0;
  display: flex;
  justify-content: center;
}

.card {
  position: relative;
  width: 100%;
  background: var(--ivory);
  box-shadow: none;
  font-family: var(--font-body);
  color: var(--ink);
  /* niente overflow:hidden: romperebbe il position:sticky dell'header.
     Gli elementi che sforano (divano, bande, caroselli) hanno già overflow proprio. */
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  /* sopra il pannello dello StaggeredMenu (z-index:90 in staggered-menu.css):
     la nav vera — con dentro il bottone che chiude il menu — deve restare
     sempre visibile e cliccabile, altrimenti il pannello la copre e non c'è
     più modo di chiuderlo né di raggiungere ricerca/lingua. */
  z-index: 95;
  height: 56px;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  transition: border-color .35s ease, box-shadow .35s ease;
}
/* Sfocatura PROGRESSIVA dell'header — ricetta "GradualBlur" (React Bits),
   portata in vanilla JS: N strati PIATTI e indipendenti (non annidati), ognuno
   mascherato su una fascia diversa dell'header e con un valore di blur via via
   più intenso verso l'alto — la sfumatura è quindi realmente continua invece
   che accumulata per contenimento. Iniettato via JS (initNav in main.js). */
.nav__blur {
  position: absolute; left: 0; right: 0; top: 0; bottom: -24px;
  z-index: -1; pointer-events: none;
  /* tinta sull'--ivory della pagina (non lo studio-white delle foto prodotto):
     altrimenti il vetro dell'header stacca dal fondo reale su cui galleggia.
     Stop calcolati sulla stessa curva esponenziale 2^(-4t) del blur qui sotto
     (picco più basso di prima, .56→.4, e più tappe intermedie): lo stacco tra
     "pieno" e "trasparente" non è più un salto netto ma un vero decadimento. */
  background: linear-gradient(to bottom,
    rgba(241,233,224,.40) 0%,
    rgba(241,233,224,.23) 20%,
    rgba(241,233,224,.13) 40%,
    rgba(241,233,224,.08) 60%,
    rgba(241,233,224,.04) 80%,
    rgba(241,233,224,0) 100%);
}
.nav__blur-l {
  position: absolute; inset: 0; display: block; pointer-events: none;
  /* maschera E intensità del blur sono iniettate inline via JS, un valore
     diverso per strato: niente valore fisso qui (vedi initNav in main.js) */
}
.nav.is-scrolled { box-shadow: 0 8px 26px rgba(42,46,40,.05); }

.nav__logo { height: 30px; width: auto; display: block; }
.nav__logo-link { display: block; line-height: 0; }

.nav__right { display: flex; align-items: center; gap: 24px; }
.nav__search { cursor: pointer; display: block; }
.nav__lang {
  display: flex; gap: 6px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 13px; letter-spacing: .04em;
}
.nav__lang .active { color: var(--ink); cursor: pointer; }
.nav__lang .sep { color: rgba(42,46,40,.3); }
.nav__lang .inactive { color: rgba(42,46,40,.38); cursor: pointer; }

.btn-outline {
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 9px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
  background: transparent;
  color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

/* Bottone unico del menu (StaggeredMenu): stessa forma su ogni pagina/larghezza,
   niente più due sistemi separati (mega-menu desktop + hamburger mobile) */
.nav__menu-toggle {
  display: flex; align-items: center; gap: 10px;
  background: transparent; border: none; padding: 4px 2px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -.01em;
  color: var(--ink);
}
.nav__menu-label { min-width: 3.6em; text-align: left; }
.nav__menu-icon { position: relative; width: 20px; height: 14px; flex: none; }
.nav__menu-icon span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .32s cubic-bezier(.22,.61,.36,1), top .32s cubic-bezier(.22,.61,.36,1), opacity .2s ease;
}
.nav__menu-icon span:first-child { top: 2px; }
.nav__menu-icon span:last-child { top: 12px; }
.nav.is-menu-open .nav__menu-icon span:first-child { top: 6px; transform: rotate(45deg); }
.nav.is-menu-open .nav__menu-icon span:last-child { top: 6px; transform: rotate(-45deg); }
.nav__menu-toggle:hover { color: var(--terracotta); }

/* ===== HERO ===== */
/* Editoriale: titolo con "gioia" script terracotta a sinistra; il divano sfora
   dall'angolo destro molto grande e sovrappone appena il titolo. (rif. NORDIQ) */
.hero {
  position: relative;
  /* niente più cornice page-shell da compensare (pagina full-bleed): la hero
     riempie l'intero viewport. Il margin-top negativo resta — serve a farla
     scorrere SOTTO la nav sticky (56px), che così resta un filo trasparente
     sopra il contenuto invece di occupare la sua fascia in flusso normale. */
  min-height: 100vh; max-height: 1000px;
  margin-top: -56px;
  overflow: hidden;
  background: var(--ivory);
  display: flex; flex-direction: column;
}
.hero__inner { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; justify-content: flex-start; padding: 116px 56px 40px; }
.hero__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(58px, 8.4vw, 132px); line-height: .96; letter-spacing: -.04em;
  color: var(--ink); margin: 0;
}
.hero__line { display: block; }
/* unità minima dell'entrata "blur-in": ogni parola (o l'SVG "gioia") vive nel suo
   span e si anima per conto proprio — vedi initHeroBlur in main.js */
.hero__word { display: inline-block; }
/* "gioia" allineato per BASELINE dei glifi (non della box): i glifi appoggiano
   a ~59% dell'altezza dell'SVG, il resto è la coda della 'g' → abbasso l'immagine
   di ~0.4em così le lettere siedono sulla stessa riga di "La". */
.hero__gioia { height: 1.02em; width: auto; display: inline-block; vertical-align: -0.43em; margin: 0 .07em 0 .06em; }
.hero__sub {
  font-size: clamp(15px, 1.2vw, 18px); line-height: 1.6; color: rgba(42,46,40,.66);
  max-width: 42ch; margin: 32px 0 0;
}
.hero__cta { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.hero__ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .04em;
  color: var(--ink); text-decoration: none;
  transition: gap .3s cubic-bezier(.22,.61,.36,1);
}
.hero__ghost span { color: var(--terracotta); }
.hero__ghost:hover { gap: 12px; }
.hero__product { position: absolute; z-index: 2; right: -16%; bottom: 0; width: 64%; max-width: 980px; pointer-events: none; }
.hero__product img { width: 100%; height: auto; display: block; }
/* fascia inferiore che ancora il fondo della hero (link rapidi + scroll cue) */
.hero__foot {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 36px;
  padding: 22px 56px 32px; margin-top: auto;
  border-top: 1px solid rgba(42,46,40,.14);
}
.hero__scrollcue { display: flex; align-items: center; gap: 11px; color: rgba(42,46,40,.5); flex: none; }
.hero__scrollcue span { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero__scrollcue i { width: 26px; height: 1px; background: rgba(42,46,40,.4); display: block; transform-origin: left; animation: hintPulseX 1.8s ease-in-out infinite; }
.hero__quick { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__quick a {
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none; transition: color .25s ease;
}
.hero__quick a:hover { color: var(--terracotta); }
.hero__quick i { width: 3px; height: 3px; border-radius: 50%; background: rgba(42,46,40,.3); display: inline-block; flex: none; }

/* pallini indicatori (caroselli collezioni / in evidenza) */
.dots { display: flex; align-items: center; gap: 9px; }
.dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; border: none; cursor: pointer;
  background: rgba(42,46,40,.22); transition: background .3s ease, transform .3s ease;
}
.dots button:hover { background: rgba(42,46,40,.4); }
.dots button.is-active { background: var(--terracotta); transform: scale(1.25); }
.dots button:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

@keyframes hintPulseX { 0%,100% { transform: scaleX(.4); opacity: .35; } 50% { transform: scaleX(1); opacity: .85; } }

/* ===== PULSANTI VETRO (liquid glass sottile su ivory) ===== */
.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 40px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .03em;
  color: var(--ink); text-decoration: none; cursor: pointer; white-space: nowrap;
  background: rgba(255,255,255,.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), inset 0 -1px 1px rgba(42,46,40,.04), 0 10px 26px rgba(42,46,40,.10);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .35s ease;
}
.btn-glass:hover { transform: translateY(-2px); background: rgba(255,255,255,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 16px 38px rgba(42,46,40,.15); }
.btn-glass:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.btn-glass__arw { color: var(--terracotta); transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.btn-glass:hover .btn-glass__arw { transform: translateX(4px); }
.btn-glass--sm { padding: 9px 18px; border-radius: 30px; font-size: 12px; letter-spacing: .08em; }
.btn-glass--on-dark {
  color: var(--ivory); background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 12px 28px rgba(42,46,40,.16);
}
.btn-glass--on-dark:hover { background: rgba(255,255,255,.24); box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 16px 34px rgba(42,46,40,.2); }
.btn-glass--on-dark .btn-glass__arw { color: var(--ivory); }

/* frecce vetro circolari */
.icon-glass {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; color: var(--ink); cursor: pointer;
  background: rgba(255,255,255,.40);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(42,46,40,.08);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.icon-glass:hover { transform: translateY(-2px); background: rgba(255,255,255,.58); color: var(--terracotta); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 14px 28px rgba(42,46,40,.12); }
.icon-glass:disabled { opacity: .32; pointer-events: none; }
.icon-glass:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

/* pillola vetro secondaria ("ghost", più trasparente) */
.btn-glass--ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 6px 18px rgba(42,46,40,.06); }
.btn-glass--ghost:hover { background: rgba(255,255,255,.3); box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 12px 28px rgba(42,46,40,.11); }

/* CTA secondaria: etichetta + pulsante circolare in vetro con freccia */
.cta-circle { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); cursor: pointer; width: fit-content; }
.cta-circle__label { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: -.01em; transition: color .25s ease; }
.cta-circle__btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; color: var(--terracotta); font-style: normal;
  background: rgba(255,255,255,.42);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(42,46,40,.08);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, background .3s ease;
}
.cta-circle:hover .cta-circle__btn { transform: translateY(-2px); background: rgba(255,255,255,.6); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 14px 28px rgba(42,46,40,.12); }
.cta-circle:hover .cta-circle__label { color: var(--terracotta); }
.cta-circle:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
/* variante su immagine (card in evidenza) */
.cta-circle--on-img .cta-circle__label { color: var(--ivory); }
.cta-circle--on-img .cta-circle__btn { color: var(--ivory); background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); }
.cta-circle--on-img:hover .cta-circle__btn { background: rgba(255,255,255,.32); }

/* ===== SECTION HEADS ===== */
.section { position: relative; }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }

/* ===== COLLEZIONI ===== */
/* Sezione pinnata a piena altezza: testata in alto, nastro al centro, barra in basso —
   il contenuto si distribuisce e non lascia blocchi di vuoto. */
.collezioni {
  min-height: 100vh;
  padding: 88px 0 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 40px;
}
.collezioni__head { padding: 0 56px; }
.collezioni__kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.collezioni__head h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 60px;
  line-height: .98; letter-spacing: -.02em; margin: 0;
}
.collezioni__lead { font-size: 18px; line-height: 1.5; color: rgba(42,46,40,.6); margin: 20px 0 0; max-width: 44ch; }
.collezioni__all {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  text-decoration: underline; text-decoration-color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 4px;
  transition: color .2s ease;
}
.collezioni__all:hover { color: var(--terracotta); }
.collezioni__all span { color: var(--terracotta); }
/* Griglia statica (non più nastro infinito): con poche famiglie attive un loop
   che clona le card si vedeva ripetere quasi subito — meglio mostrarle una
   volta sola, ferme, tutte visibili insieme. */
.collezioni__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 56px; }
.col-card {
  position: relative; width: 100%; aspect-ratio: 3 / 4; border-radius: 4px;
  overflow: hidden; background: var(--ivory-2);
  box-shadow: inset 0 0 0 1px rgba(42,46,40,.06); cursor: pointer;
}
/* Tre livelli perfettamente allineati: foto originale, velo terracotta,
   ritaglio PNG dell'oggetto (generato dalla stessa foto). A riposo il ritaglio
   è invisibile perché combacia coi pixel sottostanti; on hover il velo pieno
   sale in dissolvenza DIETRO l'oggetto, che resta intatto. */
.col-card__media { position: absolute; inset: 0; }
.col-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.col-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #B5573C 0%, #B5573CF0 55%, #B5573CDD 100%);
  opacity: 0; transition: opacity .6s cubic-bezier(.22,.61,.36,1);
}
/* Il ritaglio si accende solo con il velo (in sincrono): a riposo la card è
   la pura foto originale, senza artefatti di sovrapposizione. */
.col-card__cutout { opacity: 0; transition: opacity .6s cubic-bezier(.22,.61,.36,1); }
.col-card:hover .col-card__veil,
.col-card:hover .col-card__cutout { opacity: 1; }
.col-card__scrim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(to top, rgba(42,46,40,.45), transparent);
}
/* BLOCCO NOME IN LIQUID GLASS sull'immagine (unico pattern per le card) —
   rifrange davvero la foto dietro (stesso filtro di .pdp-life-cap): qui, a
   differenza delle pillole piatte, c'è sempre una fotografia sotto, quindi
   la distorsione ha senso ed è visibile. --lg-filter è iniettata da JS
   (mountLiquidGlass in main.js, porting vanilla di GlassSurface / React Bits):
   mappa di distorsione generata sulle dimensioni reali dell'elemento, con
   aberrazione cromatica per canale — non il feTurbulence statico di prima. */
.col-card__label, .ev-card__glass {
  position: absolute; left: 22px; bottom: 22px; z-index: 3;
  display: inline-flex; align-items: center; gap: 18px;
  padding: 13px 18px; border-radius: 16px; overflow: hidden;
  background: rgba(255,255,255,.15);
  -webkit-backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.3);
          backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.3);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 10px 30px rgba(42,46,40,.18);
  transition: background .35s ease, transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.col-card__label span:first-child, .ev-card__glass span:first-child {
  font-family: var(--font-display); font-weight: 600; font-size: 23px; line-height: 1;
  letter-spacing: -.02em; color: var(--ivory);
}
.col-card__label span:last-child, .ev-card__glass span:last-child {
  color: var(--ivory); font-size: 16px; line-height: 1;
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
}
.col-card:hover .col-card__label, .ev-card:hover .ev-card__glass {
  background: rgba(255,255,255,.26); transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 16px 40px rgba(42,46,40,.24);
}
.col-card:hover .col-card__label span:last-child, .ev-card:hover .ev-card__glass span:last-child { transform: translateX(4px); }
.collezioni__foot { display: flex; align-items: center; padding: 0 56px; }

/* ===== IN EVIDENZA ===== */
.evidenza { padding: 112px 56px; }
.evidenza__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 24px; flex-wrap: wrap; }
.evidenza__kicker { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 20px; }
.evidenza__head h2 { font-family: var(--font-display); font-weight: 600; font-size: 64px; line-height: .98; letter-spacing: -.025em; margin: 0; }
/* selettore Materassi/Divani letto: stesso segmented control in vetro con
   pillola scorrevole del catalogo (.seg/.seg__pill/.seg__tab, style.css ~684) */
.evidenza__tabs { display: flex; flex-direction: column; align-items: flex-end; }
/* Carosello con card grandi: peek della successiva, snap, frecce e drag */
.evidenza__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.evidenza__viewport::-webkit-scrollbar { display: none; }
.evidenza__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.evidenza__viewport.no-snap { scroll-snap-type: none; }
.evidenza__track { display: flex; gap: 28px; }
.ev-card {
  position: relative; flex: 0 0 min(1220px, 84%); aspect-ratio: 16/9;
  scroll-snap-align: start;
  border-radius: 6px; overflow: hidden;
  background: var(--ivory-2); box-shadow: 0 1px 0 0 rgba(42,46,40,.12); cursor: pointer;
}
.evidenza__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.evidenza__count { font-size: 12px; font-weight: 600; letter-spacing: .18em; font-variant-numeric: tabular-nums; color: rgba(42,46,40,.55); }
.evidenza__arrows { display: flex; gap: 10px; }
.ev-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; line-height: 1; color: var(--ink); cursor: pointer;
  background: rgba(255,255,255,.40);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(42,46,40,.08);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, background .3s ease, color .3s ease;
}
.ev-arrow:hover { transform: translateY(-2px); background: rgba(255,255,255,.58); color: var(--terracotta); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 14px 28px rgba(42,46,40,.12); }
.ev-arrow:disabled { opacity: .32; pointer-events: none; }
.ev-arrow:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.ev-card__media { position: absolute; inset: 0; overflow: hidden; }
.ev-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ev-card__ph {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background-image: repeating-linear-gradient(135deg, rgba(42,46,40,.04) 0 12px, transparent 12px 24px);
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.ev-card:hover .ev-card__ph { transform: scale(1.035); }
.ev-card__ph span { font-size: 11px; font-weight: 600; letter-spacing: .16em; color: rgba(42,46,40,.45); text-transform: uppercase; }
.ev-card__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(28,30,26,.62) 0%, rgba(28,30,26,.30) 26%, rgba(28,30,26,0) 56%);
}
/* Hover: l'immagine resta invariata, è il testo a virare in terracotta con sfumatura */
.ev-card__content { position: absolute; inset: 0; z-index: 2; pointer-events: none; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.ev-card:hover .ev-card__cat { color: var(--terracotta); }
.ev-card:hover h3 { color: var(--terracotta); }
.ev-card:hover .ev-card__content p { color: #E0A98F; }
.ev-card:hover .ev-card__link .txt { color: var(--terracotta); }
.ev-card__top { display: flex; align-items: baseline; justify-content: space-between; }
.ev-card__cat { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(247,243,238,.80); transition: color .5s cubic-bezier(.22,.61,.36,1); }
.ev-card__idx { font-size: 12px; font-weight: 400; color: rgba(247,243,238,.55); transition: color .3s ease; }
.ev-card:hover .ev-card__idx { color: var(--terracotta); }
/* Sottolineatura terracotta che cresce sotto il nome, come sulle card Collezioni */
.ev-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1;
  letter-spacing: -.02em; color: var(--ivory); margin: 0;
  width: fit-content; padding-bottom: 6px;
  background-image: linear-gradient(var(--terracotta), var(--terracotta));
  background-repeat: no-repeat; background-position: 0 100%; background-size: 0% 3px;
  transition: background-size .45s cubic-bezier(.22,.61,.36,1), color .5s cubic-bezier(.22,.61,.36,1);
}
.ev-card:hover h3 { background-size: 100% 3px; }
.ev-card p { font-size: 15px; line-height: 1.45; color: rgba(247,243,238,.80); margin: 6px 0 0; max-width: 46ch; text-wrap: balance; transition: color .5s cubic-bezier(.22,.61,.36,1); }
.ev-card__link { margin-top: 16px; display: flex; align-items: center; gap: 8px; pointer-events: auto; width: fit-content; }
.ev-card__link .txt {
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory); text-decoration: underline; text-decoration-color: var(--terracotta);
  text-decoration-thickness: 1px; text-underline-offset: 5px;
  transition: color .5s cubic-bezier(.22,.61,.36,1);
}
.ev-card__link .arrow { color: var(--ivory); font-size: 14px; transition: color .3s ease, transform .45s cubic-bezier(.22,.61,.36,1); }
.ev-card:hover .ev-card__link .arrow { color: var(--terracotta); transform: translateX(6px); }

/* ===== MATERIA ===== */
.materia-a { padding: 120px 56px 112px; }
.materia-head { display: grid; grid-template-columns: 7fr 1fr 4fr; gap: 24px; align-items: end; }
.materia-head h2 { font-family: var(--font-display); font-weight: 600; font-size: 68px; line-height: .98; letter-spacing: -.03em; margin: 0; }
.materia-head__copy { margin-bottom: 6px; }
.materia-head__copy p:first-child { font-size: 18px; line-height: 1.55; color: rgba(42,46,40,.70); margin: 0; }
.materia-head__copy p:last-child { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.3; letter-spacing: -.02em; color: var(--ink); margin: 14px 0 0; text-wrap: balance; }

.materia-collage { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; margin-top: 72px; }
.collage-item { }
.collage-frame {
  border-radius: 6px; background: var(--ivory-2); box-shadow: inset 0 0 0 1px rgba(42,46,40,.06);
  overflow: hidden; transition: transform .5s cubic-bezier(.22,.61,.36,1); cursor: pointer;
}
.collage-frame:hover { transform: scale(1.03) translateY(-4px); }
.collage-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-cap { margin-top: 16px; max-width: 40ch; }
.collage-cap h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.02em; margin: 0; }
.collage-cap p { font-size: 14px; line-height: 1.55; color: rgba(42,46,40,.70); margin: 6px 0 0; }

.collage-1 { grid-column: 1 / span 5; }
.collage-1 .collage-frame { aspect-ratio: 4/5; }
.collage-2 { grid-column: 7 / span 3; margin-top: 96px; }
.collage-2 .collage-frame { aspect-ratio: 1/1; }
.collage-3 { grid-column: 10 / span 3; margin-top: 116px; }
.collage-3 .collage-frame { aspect-ratio: 3/4; }
.collage-4 { grid-column: 1 / span 3; grid-row: 2; margin-top: 56px; }
.collage-4 .collage-frame { aspect-ratio: 1/1; }
.collage-5 { grid-column: 4 / span 6; grid-row: 2; margin-top: 56px; }
.collage-5 .collage-frame { aspect-ratio: 16/10; }

/* ===== TESSUTI ===== */
.materia-b { background: var(--ivory); padding: 40px 0 88px; }
.tessuti-head { padding: 0 56px; }
.tessuti-head__row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.tessuti-head h3 { font-family: var(--font-display); font-weight: 600; font-size: 56px; line-height: 1; letter-spacing: -.025em; color: var(--ink); margin: 0; }
.tessuti-head__meta { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(42,46,40,.45); white-space: nowrap; }
.tessuti-head p { font-size: 17px; line-height: 1.6; color: rgba(42,46,40,.70); margin: 10px 0 0; max-width: 46ch; }

.bande { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.band { position: relative; height: 480px; width: 100%; overflow: hidden; transition: background .5s cubic-bezier(.22,.61,.36,1); }
.band__texture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.band__scrim { position: absolute; inset: 0; pointer-events: none; }
.band__body { position: relative; height: 100%; padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }

/* Pannelli in vetro: il testo resta sempre leggibile su qualunque tessuto/colore,
   niente più fg/text-shadow calcolati per swatch — più contrasto e coerenza col resto del sito.
   --lg-filter iniettata da mountLiquidGlass (main.js): rifrange davvero la texture
   del tessuto sotto (GlassSurface / React Bits, porting vanilla — vedi main.js). */
.band__glass {
  position: relative; overflow: hidden;
  width: fit-content;
  background: rgba(255,255,255,.22);
  -webkit-backdrop-filter: var(--lg-filter) saturate(1.3);
          backdrop-filter: var(--lg-filter) saturate(1.3);
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), 0 10px 30px rgba(42,46,40,.16);
  border-radius: 18px;
  color: var(--ink);
}
.band__glass--top { padding: 20px 26px; max-width: 80%; }
.band__glass--colors { padding: 16px 20px; }
.band__glass--stats { padding: 16px 24px; }
/* tessuti scuri: vetro scuro smerigliato + testi bianchi, così restano leggibili */
.band--on-dark .band__glass {
  background: rgba(22,24,20,.32);
  border-color: rgba(255,255,255,.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.26), 0 10px 30px rgba(42,46,40,.32);
  color: var(--ivory);
}
.band--on-dark .band__name,
.band--on-dark .band__color-label .v,
.band--on-dark .band__stat .v,
.band--on-dark .band__cycles-row .v { color: var(--ivory); }
.band--on-dark .band__cycles-row .unit,
.band--on-dark .band__stat-sub { color: rgba(247,243,238,.74); }
.band--on-dark .band__color-label .k,
.band--on-dark .band__stat .k { color: rgba(247,243,238,.88); }
.band--on-dark .band__note { color: rgba(247,243,238,.86); }
.band--on-dark .band__stat { border-left-color: rgba(255,255,255,.22); }
.band__name { font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1; letter-spacing: -.025em; margin: 0; color: var(--ink); }
.band__note { font-size: 13px; font-weight: 600; line-height: 1.5; margin-top: 12px; color: rgba(42,46,40,.82); }
.band__foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.band__color-label { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.band__color-label .k { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(42,46,40,.68); }
.band__color-label .v { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -.01em; color: var(--ink); }
.band__chips { display: flex; gap: 8px; align-items: center; }
.chip { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; transition: box-shadow .3s cubic-bezier(.22,.61,.36,1); border: none; padding: 0; background-size: cover; background-position: center; }
.chip:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }
.chip-more {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600; color: var(--ink); background: rgba(255,255,255,.5); box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); cursor: pointer;
}
.chip-more:hover, .chip:hover { box-shadow: 0 0 0 2px var(--terracotta); }
/* Varianti / Resistenza: stessa struttura k+v per entrambe, più aria tra le due
   così i numeri non risultano "attaccati" l'uno all'altro. */
.band__stats { display: flex; align-items: flex-start; gap: 56px; }
.band__stat { padding-left: 20px; border-left: 1px solid rgba(42,46,40,.14); }
.band__stat:first-child { padding-left: 0; border-left: none; }
.band__stat .k { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 8px; color: rgba(42,46,40,.68); }
.band__stat .v { font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: var(--ink); }
.band__cycles-row { display: flex; align-items: baseline; gap: 6px; }
.band__cycles-row .v { font-family: var(--font-display); font-weight: 600; font-size: 30px; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; color: var(--ink); }
.band__cycles-row .unit { font-size: 14px; color: rgba(42,46,40,.6); }
.band__stat-sub { font-size: 11px; color: rgba(42,46,40,.5); margin-top: 6px; }

/* Chiusura sezione tessuti: fascia con testo rassicurante a sinistra e CTA in
   vetro a destra. Niente rule/gap grande: deve leggersi come continuazione
   naturale delle bande, non come un blocco separato ("stacco"). */
.tessuti-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-top: 32px; padding: 0 56px;
  flex-wrap: wrap;
}
.tessuti-foot__kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 10px; }
.tessuti-foot__text p { font-size: 16px; line-height: 1.5; color: rgba(42,46,40,.7); margin: 0; max-width: 42ch; }

/* ===== CHI SIAMO / MANIFESTO ===== */
.manifesto {
  padding: 120px 56px; background: var(--white);
  display: grid; grid-template-columns: 56fr 44fr; gap: 64px; align-items: center;
}
.manifesto__img { height: 620px; background: var(--ivory-2); border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(42,46,40,.06); overflow: hidden; }
.manifesto__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.manifesto__txt { padding-right: 24px; }
.manifesto__kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 26px; }
.manifesto__txt h2 { font-family: var(--font-display); font-weight: 600; font-size: 60px; line-height: 1.0; letter-spacing: -.02em; margin: 0 0 28px; }
.manifesto__txt h2 img { height: 1.3em; width: auto; margin: 0 -.04em; vertical-align: -.5em; display: inline-block; }
.manifesto__txt p { font-size: 17px; line-height: 1.7; color: rgba(42,46,40,.75); margin: 0 0 16px; }
.manifesto__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); text-decoration: underline; text-decoration-color: var(--terracotta);
  text-decoration-thickness: 1px; text-underline-offset: 4px; cursor: pointer; transition: color .2s ease;
}
.manifesto__link:hover { color: var(--terracotta); }
.manifesto__link span { color: var(--terracotta); }

/* ===== FOOTER ===== */
.footer { position: relative; color: var(--ink); padding: 72px 56px 32px; border-top: 1px solid rgba(42,46,40,.12); }
.footer__wordmark { width: 100%; height: auto; display: block; margin: 0 0 80px; }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 40px; padding-bottom: 64px; border-bottom: 1px solid rgba(42,46,40,.14); }
.footer__blurb { font-size: 16px; line-height: 1.6; color: rgba(42,46,40,.62); max-width: 280px; margin: 0; }
.footer__col-title { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(42,46,40,.5); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; font-size: 16px; color: rgba(42,46,40,.82); }
.footer__links span { cursor: pointer; }
.footer p { font-size: 16px; line-height: 1.6; color: rgba(42,46,40,.82); margin: 0; }
.footer__social { display: flex; gap: 16px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .08em; color: rgba(42,46,40,.82); margin-top: 16px; }
.footer__social span { cursor: pointer; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: rgba(42,46,40,.5); }
.footer__legal { display: flex; gap: 22px; }
.footer__legal span { cursor: pointer; }
.footer__legal a { color: inherit; text-decoration: none; cursor: pointer; transition: color .2s ease; }
.footer__legal a:hover { color: var(--terracotta); }
.footer__links a { color: inherit; text-decoration: none; cursor: pointer; }
.footer__links a:hover { color: var(--terracotta); }

/* ===== PRODOTTI · LISTING ===== */
.listing-head { padding: 128px 56px 40px; }
.listing-head__top { padding-bottom: 40px; border-bottom: 1px solid rgba(42,46,40,.12); }
.listing-head__kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.listing-head__title { font-family: var(--font-display); font-weight: 600; font-size: 76px; line-height: .96; letter-spacing: -.03em; margin: 0; }

.listing-filters { display: flex; align-items: center; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
/* Segmented control in VETRO: barra glass unica con pillola terracotta che scorre */
.seg {
  position: relative; display: inline-flex; align-items: center; gap: 2px;
  padding: 5px; border-radius: 40px; max-width: 100%;
  background: rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.6); backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 24px rgba(42,46,40,.08);
}
.seg__pill {
  position: absolute; top: 0; left: 0; width: 0; height: 0;
  border-radius: 30px; background: var(--terracotta);
  box-shadow: 0 4px 14px rgba(181,87,60,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transform: translate(0, 0); pointer-events: none; z-index: 0;
  transition: transform .48s cubic-bezier(.5,.05,.15,1), width .48s cubic-bezier(.5,.05,.15,1), height .48s cubic-bezier(.5,.05,.15,1);
}
.seg__tab {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px; letter-spacing: -.01em;
  color: rgba(42,46,40,.6); cursor: pointer; white-space: nowrap;
  padding: 9px 18px; border: none; background: transparent; border-radius: 30px;
  transition: color .35s ease;
}
.seg__tab:hover { color: var(--ink); }
.seg__tab.active { color: var(--ivory); }
.seg__tab sup { font-family: var(--font-body); font-size: 9.5px; font-weight: 400; margin-left: 3px; color: var(--terracotta); transition: color .35s ease; }
.seg__tab.active sup { color: rgba(247,243,238,.8); }

.listing { padding: 40px 56px 128px; }
/* Catalogo a 2 colonne, con prospettiva per il tilt 3D delle card */
.listing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; perspective: 1600px; }

/* Card catalogo: sfondo NEUTRO avorio, immagine 16:9 col materasso (contain, il piu'
   grande possibile e mai tagliato). Il pannello informazioni e' un vero blocco in
   liquid glass che galleggia sovrapposto al bordo inferiore della foto (stessa
   ricetta dei btn-glass della hero), ben distinto dal fondo della card.
   Tilt 3D all'hover. */
.prod-card {
  position: relative; display: block; overflow: hidden;  /* clip del riflesso */
  color: inherit; text-decoration: none; cursor: pointer;
  border-radius: 22px; background: var(--studio-white);
  border: 1px solid rgba(42,46,40,.05);
  box-shadow: 0 2px 4px rgba(42,46,40,.03), 0 20px 44px rgba(42,46,40,.05);
  transform-style: preserve-3d; will-change: transform;
  transition: box-shadow .5s ease, border-color .4s ease;
  padding-bottom: 20px;   /* respiro sotto il pannello galleggiante */
}
.prod-card:hover { box-shadow: 0 44px 88px -24px rgba(42,46,40,.22); border-color: rgba(42,46,40,.09); }
/* immagine 16:9 col materasso GRANDE, mai tagliato, su fondo bianco pieno:
   il bianco delle foto studio si estende fino ai bordi dell'holder, niente
   rettangolo colorato attorno. */
.prod-card__media {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 22px 22px 0 0; background: var(--studio-white);
}
.prod-card__media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center 50%;
  will-change: transform; transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.prod-card:hover .prod-card__media img { transform: scale(1.035); }
.prod-card__media--ph {
  display: flex; align-items: center; justify-content: center;
  background-image: repeating-linear-gradient(135deg, rgba(42,46,40,.045) 0 14px, transparent 14px 28px);
}
.prod-card__media--ph span { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(42,46,40,.42); }

/* Pannello in VERO LIQUID GLASS: galleggia sovrapposto al bordo inferiore della
   foto (margin-top negativo), stessa ricetta vetro dei btn-glass della hero —
   bianco translucido, forte blur+saturate, bordo chiaro, riflesso inset in alto.
   Molto piu' evidente del fondo piatto della card. Nome + feature a sinistra,
   CTA a destra. */
.prod-card__panel {
  position: relative; z-index: 2;
  margin: -54px 18px 0; padding: 22px 26px; border-radius: 20px; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: rgba(255,255,255,.52);
  -webkit-backdrop-filter: blur(24px) saturate(1.7); backdrop-filter: blur(24px) saturate(1.7);
  border: 1.5px solid rgba(255,255,255,.75);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,1),
    inset 0 -1px 1px rgba(42,46,40,.04),
    0 24px 48px -14px rgba(42,46,40,.28),
    0 4px 14px rgba(42,46,40,.10);
  transition: box-shadow .4s ease, transform .4s ease, background .4s ease;
}
.prod-card:hover .prod-card__panel {
  transform: translateY(-3px);
  background: rgba(255,255,255,.62);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,1),
    inset 0 -1px 1px rgba(42,46,40,.04),
    0 30px 58px -14px rgba(42,46,40,.34),
    0 6px 18px rgba(42,46,40,.14);
}
.prod-card__panel::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.7) 50%, transparent 100%);
  transform: skewX(-16deg); opacity: 0; pointer-events: none;
}
.prod-card:hover .prod-card__panel::after { animation: prodSheen .95s cubic-bezier(.22,.61,.36,1); }
@keyframes prodSheen { 0% { left: -60%; opacity: 0; } 15% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

.prod-card__meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.prod-card__name { font-family: var(--font-display); font-weight: 600; font-size: 27px; line-height: 1; letter-spacing: -.02em; color: var(--ink); }
.prod-card__feat { font-size: 14px; line-height: 1.3; color: rgba(42,46,40,.66); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prod-card__go {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; flex: none;
  font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); transition: color .3s ease, gap .3s ease;
}
.prod-card__go .arw { color: var(--terracotta); transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.prod-card:hover .prod-card__go { color: var(--terracotta); gap: 11px; }
.prod-card:hover .prod-card__go .arw { transform: translateX(3px); }

/* ===== SCHEDA PRODOTTO (PDP) — hero a tutto schermo, foto a rullo (rif. allegato 1) ===== */
.crumb { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(42,46,40,.55); }
.crumb a { color: rgba(42,46,40,.55); text-decoration: none; transition: color .2s ease; }
.crumb a:hover { color: var(--ink); }
.crumb__sep { color: rgba(42,46,40,.3); }
.crumb__here { color: var(--ink); }

/* hero = una schermata piena: immagine grande al centro, testo in basso a sinistra, thumb in basso a destra */
.pdp-hero { position: relative; height: 100vh; min-height: 640px; max-height: 940px; overflow: hidden; background: var(--studio-white); }
.pdp-hero .crumb { position: absolute; top: 22px; left: 56px; z-index: 4; }

/* stage centrale: viste impilate, una visibile per volta (crossfade a rullo).
   La fascia bassa (~168px) è riservata a testo/thumbnail per non coprirli. */
.pdp-stage { position: absolute; top: 0; left: 0; right: 0; bottom: 150px; z-index: 1; }
.pdp-view { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .45s ease; }
.pdp-view.is-active { opacity: 1; }
.pdp-view img { max-width: 60%; max-height: 92%; width: auto; height: auto; object-fit: contain; display: block; }
.pdp-view--flip img { transform: scaleX(-1); } /* angolo del materasso verso sinistra */
.pdp-view.is-ph {
  align-items: center; justify-content: center;
}
.pdp-view.is-ph::before {
  content: attr(data-label); font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(42,46,40,.4);
  width: 52%; aspect-ratio: 3/2; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background-image: repeating-linear-gradient(135deg, rgba(42,46,40,.04) 0 12px, transparent 12px 24px);
}

/* testo prodotto ancorato in basso a sinistra */
.pdp-buy { position: absolute; left: 56px; bottom: 48px; z-index: 3; max-width: 420px; }

/* thumbnail in fila, in basso a destra */
.pdp-gallery__thumbs { position: absolute; right: 56px; bottom: 48px; z-index: 3; display: flex; gap: 12px; }
.pdp-thumb { width: 84px; height: 84px; aspect-ratio: 1; border-radius: 8px; overflow: hidden; border: 1.5px solid rgba(42,46,40,.14); background: var(--studio-white); cursor: pointer; padding: 0; transition: border-color .25s ease, transform .25s ease; }
.pdp-thumb:hover { transform: translateY(-3px); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb.is-active { border-color: var(--ink); }
.pdp-thumb.is-ph, .pdp-sticky__thumb.is-ph {
  display: flex; align-items: center; justify-content: center;
  background-image: repeating-linear-gradient(135deg, rgba(42,46,40,.04) 0 12px, transparent 12px 24px);
}
.pdp-thumb.is-ph span { font-size: 15px; font-weight: 600; color: rgba(42,46,40,.35); }

/* hint "scorri" */
.pdp-scrollhint { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .6; }
.pdp-scrollhint span { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(42,46,40,.55); }
.pdp-scrollhint i { width: 1px; height: 26px; background: rgba(42,46,40,.4); animation: hintPulse 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes hintPulse { 0%,100% { transform: scaleY(.4); opacity: .3; } 50% { transform: scaleY(1); opacity: .8; } }
.pdp-hero.is-hidden-hint .pdp-scrollhint { opacity: 0; }

.pdp-buy__brand { font-size: 13px; letter-spacing: .04em; color: rgba(42,46,40,.55); margin-bottom: 14px; }
.pdp-buy__brand strong { color: var(--ink); font-weight: 600; }
.pdp-buy__title { font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1.04; letter-spacing: -.025em; margin: 0; color: var(--ink); }
.pdp-buy__title em { font-style: italic; font-weight: 600; color: var(--terracotta); }
.pdp-buy__rule { height: 1px; background: rgba(42,46,40,.14); margin: 20px 0; }
.pdp-buy__desc { font-size: 15px; line-height: 1.55; color: rgba(42,46,40,.72); margin: 0; max-width: 40ch; }
.pdp-buy__avail { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 14px; color: rgba(42,46,40,.72); }
.pdp-buy__dot { width: 11px; height: 11px; border-radius: 50%; background: #5fa463; box-shadow: 0 0 0 4px rgba(95,164,99,.16); flex: none; }
.pdp-buy__actions { display: flex; gap: 14px; margin-top: 22px; }
/* CTA vetrina */
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  border: none; border-radius: 40px; background: var(--ink); color: var(--ivory);
  font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .04em;
  padding: 0 30px; height: 52px; cursor: pointer; transition: background .25s ease;
}
.btn-cta span { color: var(--terracotta); transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.btn-cta:hover { background: var(--terracotta); color: var(--ivory); }
.btn-cta:hover span { color: var(--ivory); transform: translateX(4px); }
.pdp-buy__note { font-size: 13px; color: rgba(42,46,40,.5); margin: 18px 0 0; }

.pdp-lifestyle { padding: 0 56px 24px; }
.pdp-lifestyle__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; border-radius: 10px; }
.pdp-lifestyle__viewport::-webkit-scrollbar { display: none; }
.pdp-lifestyle__track { display: flex; }
.pdp-ls-slide { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 21/9; }
.pdp-ls-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-lifestyle__nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 22px; }
.pdp-dots { display: flex; gap: 8px; }
.pdp-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(42,46,40,.25); cursor: pointer; transition: background .25s ease; padding: 0; }
.pdp-dot.is-active { background: var(--ink); }
.pdp-arrow { width: 44px; height: 44px; border: 1.5px solid var(--ink); border-radius: 50%; background: none; color: var(--ink); font-size: 15px; cursor: pointer; transition: background .25s ease, color .25s ease; }
.pdp-arrow:hover { background: var(--ink); color: var(--ivory); }
.pdp-arrow:disabled { opacity: .3; pointer-events: none; }

.pdp-discover { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; padding: 96px 56px; }
.pdp-kicker { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(42,46,40,.5); margin-bottom: 28px; }
.pdp-discover__lead { font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1.28; letter-spacing: -.015em; color: var(--ink); margin: 0; }
.pdp-discover__sub { font-size: 16px; line-height: 1.7; color: rgba(42,46,40,.7); margin: 28px 0 0; max-width: 52ch; }
.acc__item { border-top: 1px solid rgba(42,46,40,.14); }
.acc__item:last-child { border-bottom: 1px solid rgba(42,46,40,.14); }
.acc__head { width: 100%; display: flex; align-items: center; justify-content: space-between; background: none; border: none; cursor: pointer; padding: 22px 0; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }
.acc__ic { color: var(--terracotta); font-size: 22px; line-height: 1; transition: transform .3s cubic-bezier(.22,.61,.36,1); }
.acc__item.is-open .acc__ic { transform: rotate(90deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.22,.61,.36,1); }
.acc__panel p { font-size: 15px; line-height: 1.65; color: rgba(42,46,40,.7); margin: 0 0 22px; max-width: 46ch; }

.pdp-related { padding: 0 56px 128px; }
.pdp-related__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.pdp-related__head h2 { font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1; letter-spacing: -.02em; margin: 0; }
.pdp-related__all { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); text-decoration: underline; text-decoration-color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 4px; white-space: nowrap; }
.pdp-related__all span { color: var(--terracotta); }
.pdp-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pdp-sticky {
  position: fixed; left: 50%; bottom: 20px; z-index: 90;
  width: min(1120px, calc(100% - 48px));
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 14px 12px 20px; border-radius: 14px;
  background: var(--ivory); box-shadow: 0 24px 60px rgba(42,46,40,.22);
  transform: translateX(-50%) translateY(180%); transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.pdp-sticky.is-visible { transform: translateX(-50%) translateY(0); }
.pdp-sticky__prod { display: flex; align-items: center; gap: 16px; min-width: 0; }
.pdp-sticky__thumb { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; background: var(--studio-white); flex: none; }
.pdp-sticky__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-sticky__name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pdp-sticky__right { display: flex; align-items: center; gap: 20px; }
.pdp-sticky .btn-cta { height: 46px; flex: none; }

/* ===== SCHEDA PRODOTTO — griglia media + pannello sticky (rif. NORDIQ) ===== */
.pdp {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  padding: 36px 48px 100px; align-items: start;
}
.pdp-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
/* Il wrapper si allunga per tutta l'altezza della riga (= altezza della galleria,
   fino alla foto still life): dà al pannello sticky, più corto, lo spazio di
   percorrenza necessario per restare "bloccato" fino a lì, non prima. */
.pdp-panel-wrap { align-self: stretch; position: relative; }
/* Card media grandi. Fondo bianco pieno: il bianco delle foto studio si estende
   fino ai bordi dell'holder, niente rettangolo colorato attorno; il card resta
   distinto dalla pagina grazie a bordo + leggera elevazione. */
.pdp-tile {
  position: relative; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden;
  background: var(--studio-white);
  box-shadow: inset 0 0 0 1px rgba(42,46,40,.07), 0 2px 3px rgba(42,46,40,.04), 0 18px 40px rgba(42,46,40,.07);
}
.pdp-tile img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.pdp-tile:hover img { transform: scale(1.03); }
.pdp-tile--wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
.pdp-tile--wide img { object-fit: cover; padding: 0; }
/* dettaglio (es. lato) a filo con la cornice: niente padding orizzontale, così il
   bordo dell'immagine combacia col card e il taglio diventa voluto, non casuale */
.pdp-tile--edge img { padding: 0; object-position: center; }
/* SEQUENZA MECCANISMO: i fotogrammi stanno impilati nello stesso tile e si
   alternano in dissolvenza. Sono ritagliati su una tela comune, allineati al
   bordo sinistro e alla linea di terra: il pouf resta fermo e il letto si
   estende verso destra, come nel movimento reale. */
.pdp-tile--seq img.pdp-seq__f {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; opacity: 0; transform: scale(1.035);
  transition: opacity .85s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1);
}
/* il fotogramma che arriva si "assesta": parte leggermente più grande e si
   posa alla scala definitiva mentre appare, così il passaggio si legge come
   un piccolo movimento fisico e non un semplice taglio netto */
.pdp-tile--seq img.pdp-seq__f.is-on { opacity: 1; transform: scale(1); }
/* solo il fotogramma visibile intercetta il click, così il lightbox apre la posa giusta */
.pdp-tile--seq img.pdp-seq__f:not(.is-on) { pointer-events: none; }
/* niente hover-zoom del tile: il meccanismo deve restare fermo e allineato,
   il movimento è già tutto nella dissolvenza tra fotogrammi */
.pdp-tile--seq:hover img.pdp-seq__f.is-on { transform: scale(1); }
.pdp-seq__dots { position: absolute; right: 22px; bottom: 22px; z-index: 2; display: flex; gap: 6px; pointer-events: none; }
.pdp-seq__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(42,46,40,.16); transition: background .4s ease, transform .4s cubic-bezier(.22,.61,.36,1); }
.pdp-seq__dot.is-on { background: var(--terracotta); transform: scale(1.3); }
/* Didascalia in LIQUID GLASS sulla still-life: rifrange la scena calda dietro.
   --lg-filter iniettata da mountLiquidGlass (main.js), porting vanilla di
   GlassSurface (React Bits): mappa di distorsione dinamica + aberrazione cromatica. */
.pdp-life-cap {
  position: absolute; left: 26px; bottom: 26px; z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
  padding: 14px 22px 15px; border-radius: 18px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.06) 60%, rgba(255,255,255,0) 100%), rgba(255,255,255,.20);
  -webkit-backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.7) brightness(1.05);
          backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.7) brightness(1.05);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.95), inset 0 -1.5px 0 rgba(255,255,255,.5),
    inset 1px 0 0 rgba(255,255,255,.6), inset -1px 0 0 rgba(255,255,255,.6),
    0 14px 32px -8px rgba(42,46,40,.3);
}
.pdp-life-cap__k { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); }
.pdp-life-cap__n { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.02em; color: var(--ink); text-shadow: 0 1px 10px rgba(255,255,255,.5); }

/* Sticky classico: il pannello resta ancorato in cima mentre scorre la galleria,
   poi prosegue con la pagina. Nessuno scroll interno separato. */
.pdp-panel { position: sticky; top: 96px; }
.pdp-panel .crumb { margin-bottom: 16px; }
.pdp-heading { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 2.7vw, 40px); line-height: 1.06; letter-spacing: -.025em; margin: 0; color: var(--ink); }
.pdp-sku { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(42,46,40,.5); }
.pdp-desc { font-size: 15px; line-height: 1.6; color: rgba(42,46,40,.75); margin: 12px 0 0; }

/* Due schede vetro gemelle (intro testuale + specifiche): stesso stile e stesso
   rientro interno, così il testo dentro l'una si allinea con quello dell'altra
   e i due blocchi risultano perfettamente incolonnati. */
.pdp-intro, .pdp-specs {
  padding: 26px 28px 28px; border-radius: 22px;
  background: rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 14px 36px rgba(42,46,40,.07);
}
.pdp-intro { margin-top: 20px; }
.pdp-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; margin-top: 14px; }
.pdp-spec .k { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(42,46,40,.5); margin-bottom: 6px; }
.pdp-spec .v { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4; }

/* Nota in vetro tinto terracotta, con respiro sopra e sotto rispetto ai blocchi. */
.pdp-note {
  display: flex; align-items: center; gap: 11px;
  margin: 32px 0; padding: 15px 20px; border-radius: 18px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .01em; color: var(--terracotta-dark);
  background: rgba(181,87,60,.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.3); backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(181,87,60,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.pdp-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--terracotta); flex: none; display: block; }

.pdp-faq { margin: 0; }
/* FAQ in caso normale (come reference), non maiuscolo come l'accordion prodotto */
.pdp-faq .acc__head { text-transform: none; font-weight: 500; font-size: 15px; letter-spacing: 0; padding: 15px 0; }
.pdp-faq .acc__panel p { font-size: 14px; line-height: 1.55; max-width: none; margin: 0 0 14px; }
/* via la riga sopra la prima domanda */
.pdp-faq .acc__item:first-child { border-top: none; }
.pdp-buybar { margin-top: 22px; }
.pdp-price { font-family: var(--font-display); font-weight: 600; font-size: 20px; letter-spacing: -.01em; color: var(--ink); margin-bottom: 16px; }
.pdp-order {
  display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px;
  padding: 18px 24px; border-radius: 14px; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 26px rgba(42,46,40,.10);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, background .35s ease;
}
.pdp-order:hover { transform: translateY(-2px); background: rgba(255,255,255,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 16px 38px rgba(42,46,40,.15); }
.pdp-order__arw { color: var(--terracotta); transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.pdp-order:hover .pdp-order__arw { transform: translateX(4px); }

.pdp-totop {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--ink);
  background: rgba(255,255,255,.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6); box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 20px rgba(42,46,40,.12);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease;
}
.pdp-totop.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.pdp-totop:hover { background: rgba(255,255,255,.66); color: var(--terracotta); }

/* immagini prodotto ingrandibili: cursore lente */
.pdp-tile img { cursor: zoom-in; }

/* Animazione delle box in vetro: micro-sollevamento + riflesso "sheen" che
   attraversa il vetro all'hover (coerente col linguaggio liquid-glass). */
.pdp-intro, .pdp-specs { position: relative; overflow: hidden; transition: transform .45s cubic-bezier(.22,.61,.36,1), box-shadow .45s ease; }
.pdp-intro::after, .pdp-specs::after {
  content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-16deg); pointer-events: none; opacity: 0;
}
.pdp-intro:hover, .pdp-specs:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 22px 48px rgba(42,46,40,.12);
}
.pdp-intro:hover::after, .pdp-specs:hover::after { animation: pdpSheen .85s cubic-bezier(.22,.61,.36,1); }
@keyframes pdpSheen { 0% { left: -70%; opacity: 0; } 15% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

/* ===== LIGHTBOX PRODOTTO ===== */
.pdp-lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 44px;
  background: rgba(28,30,26,.82);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; cursor: zoom-out;
  transition: opacity .35s ease, visibility .35s;
}
.pdp-lightbox.is-open { opacity: 1; visibility: visible; }
.pdp-lightbox img {
  max-width: min(92vw, 1120px); max-height: 88vh; object-fit: contain;
  border-radius: 12px; background: var(--ivory);
  box-shadow: 0 50px 110px rgba(0,0,0,.55);
  transform: scale(.94); transition: transform .4s cubic-bezier(.22,.61,.36,1);
  cursor: default;
}
.pdp-lightbox.is-open img { transform: scale(1); }
.pdp-lightbox__close {
  position: absolute; top: 26px; right: 30px; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 17px; color: var(--ink);
  background: rgba(255,255,255,.85); border: 1px solid rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .25s ease, background .25s ease;
}
.pdp-lightbox__close:hover { transform: scale(1.06); background: #fff; }

/* ===== PAGINE SEMPLICI (Chi siamo, Contatti, Legali) =====
   Stessa intestazione del catalogo (.listing-head), corpo a prosa con la
   stessa ricetta di card in vetro usata ovunque nel sito (.pdp-intro). */
.simple { padding: 0 56px 128px; max-width: 860px; }
.simple--wide { max-width: 1120px; }
/* nessun cap: il contenuto si allinea a nav e footer invece di restare
   schiacciato a sinistra lasciando un vuoto sul lato destro */
.simple--full { max-width: none; }
.simple__lead { font-size: 19px; line-height: 1.6; color: rgba(42,46,40,.7); max-width: 62ch; margin: 0 0 48px; }
.simple h2 { font-family: var(--font-display); font-weight: 600; font-size: 30px; letter-spacing: -.02em; margin: 56px 0 18px; }
.simple h2:first-of-type { margin-top: 0; }
.simple h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -.01em; margin: 28px 0 10px; color: var(--ink); }
.simple p { font-size: 16px; line-height: 1.7; color: rgba(42,46,40,.75); margin: 0 0 16px; max-width: 68ch; }
.simple ul { margin: 0 0 16px; padding-left: 22px; max-width: 68ch; }
.simple li { font-size: 16px; line-height: 1.7; color: rgba(42,46,40,.75); margin-bottom: 8px; }
.simple strong { color: var(--ink); font-weight: 600; }
.simple a { color: var(--terracotta); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.simple__meta { font-size: 13px; color: rgba(42,46,40,.5); margin-bottom: 40px; }

/* card in vetro riusata per blocchi info (contatti, ecc.) */
.simple-card {
  padding: 26px 28px 28px; border-radius: 22px;
  background: rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 14px 36px rgba(42,46,40,.07);
}
.simple-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0 56px; }
.simple-card h3 { margin-top: 0; }
.simple-card p { margin-bottom: 0; }

/* pagina Contatti: form + colonna con dati e foto, affiancati */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 32px; }
.contact-aside { display: flex; flex-direction: column; gap: 24px; }
.contact-info .k { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 6px; }
.contact-info .v { font-size: 16px; color: var(--ink); line-height: 1.5; margin-bottom: 20px; }
.contact-info .v:last-child { margin-bottom: 0; }
.contact-info .v a { color: inherit; text-decoration: none; }
.contact-info .v a:hover { color: var(--terracotta); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: rgba(42,46,40,.6); display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--terracotta); background: rgba(255,255,255,.7);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
/* stesso bottone in vetro di "Per ordini, contattaci" sulla scheda prodotto (.pdp-order) */
.contact-form button {
  display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px;
  margin-top: 4px; border: none; cursor: pointer;
  padding: 18px 24px; border-radius: 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,.42);
  -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 10px 26px rgba(42,46,40,.10);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, background .3s ease;
}
.contact-form button::after { content: "→"; color: var(--terracotta); transition: transform .35s cubic-bezier(.22,.61,.36,1); }
.contact-form button:hover { transform: translateY(-2px); background: rgba(255,255,255,.56); box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 16px 38px rgba(42,46,40,.15); }
.contact-form button:hover::after { transform: translateX(4px); }
.contact-form button:disabled { opacity: .6; cursor: default; transform: none; }
/* niente margine negativo: col bottone a piena larghezza la nota finiva
   appiccicata al suo bordo inferiore */
.contact-form__note { font-size: 12px; line-height: 1.5; color: rgba(42,46,40,.5); margin: 0; }
.contact-form__status { font-size: 14px; margin-top: 4px; display: none; }
.contact-form__status.is-ok { display: block; color: #3a7d4f; }
.contact-form__status.is-err { display: block; color: var(--terracotta-dark); }

/* ===== HERO FOTOGRAFICO + capitoli (usato da Chi siamo e Contatti) =====
   Hero a pieno schermo con pannello in vetro liquido sopra (il filtro si vede
   davvero solo su una foto vera), capitoli alternati sul processo, e le card
   che si inclinano seguendo il mouse. Il prefisso .cs- resta per continuità. */
.cs-hero { position: relative; min-height: 76vh; display: flex; align-items: flex-end; overflow: hidden; }
/* variante più bassa: sulle pagine dove il contenuto sotto è il vero contenuto.
   La foto qui è orizzontale (non verticale come su Chi siamo), quindi il taglio
   va ricentrato o il soggetto resta decapitato in alto. */
.cs-hero--short { min-height: 54vh; }
.cs-hero--short .cs-hero__media img { object-position: center 56%; }
/* leggermente più alto del contenitore: lascia margine alla parallasse in
   scroll senza scoprire bordi vuoti (la .cs-hero ha overflow:hidden) */
.cs-hero__media { position: absolute; inset: -7% 0; }
.cs-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 72%; display: block; }
.cs-hero__panel {
  position: relative; z-index: 2; margin: 0 56px 56px; max-width: 620px;
  padding: 32px 36px 34px; border-radius: 24px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.30) 0%, rgba(255,255,255,.12) 60%, rgba(255,255,255,.06) 100%), rgba(255,255,255,.22);
  -webkit-backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.6) brightness(1.06);
          backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.6) brightness(1.06);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.95), inset 0 -1.5px 0 rgba(255,255,255,.5),
    inset 1px 0 0 rgba(255,255,255,.6), inset -1px 0 0 rgba(255,255,255,.6),
    0 22px 50px -12px rgba(42,46,40,.34);
}
.cs-hero__kicker { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 14px; }
.cs-hero h1 {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 54px);
  line-height: 1.02; letter-spacing: -.03em; margin: 0 0 16px; color: var(--ink);
  text-shadow: 0 1px 12px rgba(255,255,255,.45);
}
.cs-hero p { font-size: 17px; line-height: 1.6; color: rgba(42,46,40,.86); margin: 0; max-width: 46ch; }

/* capitoli del processo: media e testo che si alternano lato */
.cs-chapter { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 104px 56px; }
.cs-chapter--flip .cs-chapter__media { order: 2; }
.cs-chapter__media {
  border-radius: 6px; overflow: hidden; background: var(--studio-white);
  box-shadow: inset 0 0 0 1px rgba(42,46,40,.06);
}
/* 4/5: le foto della zona "materia" sono verticali o quadrate, così non
   vengono tagliate come succedeva con un ritaglio orizzontale forzato */
.cs-chapter__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.cs-chapter__n { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.cs-chapter h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3vw, 42px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 18px; }
.cs-chapter p { font-size: 16px; line-height: 1.7; color: rgba(42,46,40,.75); margin: 0 0 14px; max-width: 52ch; }
.cs-chapter p:last-child { margin-bottom: 0; }

/* meccanica: foto centrata su fondo studio, contenuta (non a piena larghezza) */
.cs-mech { padding: 104px 56px; background: var(--white); text-align: center; }
.cs-mech__n { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.cs-mech h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3vw, 42px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 18px; }
.cs-mech p { font-size: 16px; line-height: 1.7; color: rgba(42,46,40,.75); margin: 0 auto; max-width: 58ch; }
/* 4/3 = proporzione nativa della foto: nessun ritaglio, e max-width la tiene
   contenuta invece di occupare tutta la larghezza della pagina */
.cs-mech__strip { margin: 40px auto 0; max-width: 720px; border-radius: 6px; overflow: hidden; }
.cs-mech__strip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; display: block; }

/* still life: card sfalsate che si inclinano col mouse, didascalia in vetro liquido */
.cs-stills { padding: 104px 56px 112px; }
.cs-stills__head { max-width: 62ch; margin-bottom: 56px; }
.cs-stills__n { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 18px; }
.cs-stills__head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3vw, 42px); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 18px; }
.cs-stills__head p { font-size: 16px; line-height: 1.7; color: rgba(42,46,40,.75); margin: 0; }
.cs-stills__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; align-items: start; }
.cs-still {
  position: relative; border-radius: 8px; overflow: hidden; background: var(--ivory-2);
  box-shadow: 0 1px 0 0 rgba(42,46,40,.12);
  transform-style: preserve-3d; will-change: transform;
}
/* lo sfalsamento vale solo nella griglia "In ambiente": la stessa .cs-still è
   riusata anche in colonna su Contatti, dove non deve slittare */
.cs-stills__grid .cs-still:nth-child(2) { margin-top: 64px; }
.cs-still img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
/* riflesso che attraversa la card all'hover: stesse keyframes prodSheen usate
   dalle card del catalogo e dai box in vetro della scheda prodotto */
.cs-still::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%; z-index: 2;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-16deg); opacity: 0; pointer-events: none;
}
.cs-still:hover::after { animation: prodSheen .95s cubic-bezier(.22,.61,.36,1); }
.cs-still__cap {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 18px 13px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.24) 0%, rgba(255,255,255,.06) 60%, rgba(255,255,255,0) 100%), rgba(255,255,255,.20);
  -webkit-backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.7) brightness(1.05);
          backdrop-filter: var(--lg-filter, url(#liquid-glass)) saturate(1.7) brightness(1.05);
  box-shadow:
    inset 0 1.5px 0 rgba(255,255,255,.95), inset 0 -1.5px 0 rgba(255,255,255,.5),
    inset 1px 0 0 rgba(255,255,255,.6), inset -1px 0 0 rgba(255,255,255,.6),
    0 12px 28px -8px rgba(42,46,40,.3);
}
/* nowrap + un filo di respiro a destra: con letter-spacing largo l'ultima
   lettera del kicker finiva tagliata dall'overflow:hidden del pannello */
.cs-still__cap .k {
  white-space: nowrap; padding-right: 2px;
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta);
}
.cs-still__cap .v {
  white-space: nowrap;
  font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -.02em; color: var(--ink);
}

/* ---- indice laterale dei capitoli: sticky, si illumina sulla sezione attiva ---- */
.cs-rail {
  position: fixed; right: 26px; top: 50%; transform: translateY(-50%); z-index: 60;
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; pointer-events: none; transition: opacity .5s ease;
}
.cs-rail.is-visible { opacity: 1; pointer-events: auto; }
.cs-rail__item {
  display: flex; align-items: center; gap: 10px; justify-content: flex-end;
  text-decoration: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: .16em;
  color: rgba(42,46,40,.38); transition: color .35s ease;
}
.cs-rail__item .l {
  display: block; width: 16px; height: 1.5px; border-radius: 2px;
  background: rgba(42,46,40,.24);
  transition: width .4s cubic-bezier(.22,.61,.36,1), background .35s ease;
}
.cs-rail__item:hover { color: rgba(42,46,40,.72); }
.cs-rail__item.is-active { color: var(--terracotta); }
.cs-rail__item.is-active .l { width: 34px; background: var(--terracotta); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  /* Nav → compact: il bottone del menu resta identico, il pannello a comparsa
     (StaggeredMenu) ha già le sue regole responsive per il pieno schermo */
  .nav { padding: 0 20px; }
  .nav__search, .nav__lang { display: none; }
  .nav__right { gap: 14px; }
  .nav__menu-label { display: none; }

  .simple { padding: 0 20px 96px; }
  .simple-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Chi siamo */
  .cs-hero { min-height: 0; }
  .cs-hero__media { position: static; }
  .cs-hero__media img { height: 52vh; }
  .cs-hero__panel { margin: -48px 20px 0; max-width: none; padding: 26px 24px 28px; }
  .cs-chapter { grid-template-columns: 1fr; gap: 28px; padding: 72px 20px; }
  .cs-chapter--flip .cs-chapter__media { order: 0; }
  .cs-mech { padding: 72px 20px; }
  .cs-stills { padding: 72px 20px 88px; }
  .cs-stills__head { margin-bottom: 32px; }
  .cs-stills__grid { grid-template-columns: 1fr; gap: 18px; }
  .cs-stills__grid .cs-still:nth-child(2) { margin-top: 0; }
  .cs-rail { display: none; }
  .cs-hero--short { min-height: 0; }

  /* Hero editoriale su mobile: titolo/copy/CTA, poi divano, poi fascia link */
  .hero { min-height: 0; max-height: none; margin-top: 0; display: flex; flex-direction: column; align-items: stretch; }
  .hero__inner { order: 1; flex: none; justify-content: flex-start; padding: 104px 20px 0; }
  .hero__product { order: 2; position: static; width: 86%; max-width: 420px; margin: 26px 0 0 auto; right: auto; bottom: auto; }
  .hero__title { font-size: 44px; }
  .hero__sub { max-width: none; margin-top: 24px; }
  .hero__cta { flex-wrap: wrap; gap: 18px; margin-top: 30px; }
  .hero__foot { order: 3; flex-wrap: wrap; gap: 16px 24px; padding: 20px 20px 8px; }
  .hero__scrollcue { display: none; }

  /* Section rhythm */
  .collezioni { padding: 72px 0; min-height: auto; justify-content: flex-start; gap: 32px; }
  .collezioni__head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .collezioni__intro { align-items: flex-start; text-align: left; max-width: none; }
  .collezioni__foot { flex-wrap: wrap; gap: 16px; }
  .collezioni__head, .collezioni__foot { padding-left: 20px; padding-right: 20px; }
  .collezioni__track { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; gap: 16px; }
  .collezioni__head h2 { font-size: 38px; }
  .col-card { aspect-ratio: 4 / 3; }
  .col-card__label span:first-child { font-size: 30px; }

  .evidenza { padding: 72px 20px; }
  .evidenza__head { margin-bottom: 36px; }
  .evidenza__head h2 { font-size: 40px; }
  .evidenza__tabs { align-items: flex-start; width: 100%; }
  .evidenza__track { gap: 14px; }
  .ev-card { flex: 0 0 86vw; aspect-ratio: 4/3; }
  .ev-card h3 { font-size: 28px; }
  .ev-arrow { width: 44px; height: 44px; }

  .materia-a { padding: 72px 20px 64px; }
  .materia-head { grid-template-columns: 1fr; gap: 16px; }
  .materia-head h2 { font-size: 38px; }
  .materia-collage { grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 40px; }
  .collage-1 { grid-column: 1 / span 6; margin-top: 0 !important; }
  .collage-2 { grid-column: 1 / span 3; margin-top: 0 !important; }
  .collage-3 { grid-column: 4 / span 3; margin-top: 0 !important; }
  .collage-4 { grid-column: 1 / span 3; margin-top: 14px; }
  .collage-5 { grid-column: 4 / span 3; margin-top: 14px; }
  .collage-cap h3 { font-size: 17px; }

  .materia-b { padding: 24px 0 72px; }
  .tessuti-head { padding: 0 20px; }
  .tessuti-head h3 { font-size: 36px; }
  .tessuti-head__meta { font-size: 11px; }
  .band { height: auto; min-height: 420px; }
  .band__body { padding: 20px; gap: 20px; }
  .band__glass--top, .band__glass--colors, .band__glass--stats { max-width: 100%; padding: 16px 18px; }
  .band__name { font-size: 34px; }
  .band__foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .band__stats { gap: 28px; }
  .band__stat .v { font-size: 32px; }
  .band__cycles-row { flex-wrap: wrap; }
  .band__cycles-row .v { font-size: 22px; }
  .band__chips { flex-wrap: wrap; }
  .chip, .chip-more { width: 34px; height: 34px; }
  .tessuti-foot { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 28px; padding: 0 20px; }
  .band__stats { gap: 32px; }
  .band__stat { padding-left: 16px; }

  .manifesto { grid-template-columns: 1fr; gap: 32px; padding: 72px 20px; }
  .manifesto__img { height: 320px; }
  .manifesto__txt { padding-right: 0; }
  .manifesto__txt h2 { font-size: 38px; }

  .footer { padding: 56px 20px 28px; }
  .footer__wordmark { margin-bottom: 48px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Listing prodotti */
  .listing-head { padding: 96px 20px 32px; }
  .listing-head__title { font-size: 46px; }
  .listing-filters { align-items: flex-start; }
  .seg { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .seg::-webkit-scrollbar { display: none; }
  .listing { padding: 32px 20px 80px; }
  .listing__grid { grid-template-columns: 1fr; gap: 24px; perspective: none; }

  /* Scheda prodotto — su mobile: griglia media impilata, poi pannello */
  .pdp { grid-template-columns: 1fr; gap: 28px; padding: 24px 20px 72px; }
  .pdp-gallery { gap: 8px; }
  .pdp-seq__dots { right: 14px; bottom: 15px; gap: 5px; }
  .pdp-seq__dot { width: 5px; height: 5px; }
  .pdp-panel { position: static; }
  .pdp-specs { padding: 22px 20px 24px; gap: 18px 22px; }
  .pdp-specs { gap: 16px 24px; }
  .pdp-order { padding: 16px 20px; }
  .pdp-totop { right: 16px; bottom: 16px; }
  .pdp-related { padding: 0 20px 96px; }
  .pdp-related__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pdp-related__head h2 { font-size: 32px; }
  .pdp-related__grid { grid-template-columns: 1fr; }
  .pdp-sticky { left: 0; bottom: 0; width: 100%; border-radius: 0; padding: 10px 16px; gap: 12px; transform: translateY(110%); }
  .pdp-sticky.is-visible { transform: translateY(0); }
  .pdp-sticky__name { font-size: 14px; }
}

@media (max-width: 560px) {
  .hero__kicker { font-size: 11px; letter-spacing: .14em; }
  .evidenza__head h2, .materia-head h2, .manifesto__txt h2 { font-size: 32px; }
  .band__name { font-size: 34px; }
  .band__stats { flex-wrap: wrap; gap: 22px 28px; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .listing__grid { grid-template-columns: 1fr; }
  .listing-head__title { font-size: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
