/* ============================================================
   FOGLI ARREDAMENTI — Editorial Luxury Style
   Rifacimento grafico ispirato a marchicucine.it
   (serif display + sans grotesk, palette calda, griglie
   editoriali asimmetriche, hero immersiva, mobile-first)
   ============================================================ */

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a,
abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong,
sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside, canvas, details,
embed, figure, figcaption, footer, header, hgroup, menu,
nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1.7; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
table { border-collapse: collapse; border-spacing: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }
html { scroll-behavior: smooth; }

/* --- DESIGN TOKENS (palette calda "alta falegnameria") --- */
:root {
  --color-primary: #626E64;
  --color-primary-hover: #4E5A51;
  --color-primary-light: #7E8A80;
  --color-primary-tint: rgba(98, 110, 100, 0.12);
  --color-accent: #9C7B4F;
  --color-accent-hover: #82643E;
  --color-ink: #20221D;
  --color-heading: #23261F;
  --color-heading-alt: #3A3D33;
  --color-text: #45483F;
  --color-text-secondary: #76796E;
  --color-milk: #FAF8F3;
  --color-champagne: #F2E7D0;
  --color-bg: #FBF9F7;
  --color-bg-section: #F5F1EA;
  --color-bg-section-2: #ECEBE2;
  --color-bg-card: #FDFCF7;
  --color-bg-footer: #626E64;
  --color-bg-footer-soft: #6B776D;
  --color-border: rgba(70, 64, 52, 0.14);
  --color-border-soft: rgba(70, 64, 52, 0.09);
  --color-header-bg: #FBF9F7;
  --color-header-solid: #FBF9F7;
  --color-header-ink: #23261F;
  --color-header-text: #FAF8F3;
  --color-footer-text: rgba(251, 249, 247, 0.72);
  --color-sale: #A4443A;
  --color-star: #C9A24B;
  --color-overlay: rgba(16, 18, 14, 0.55);
  --color-overlay-soft: rgba(16, 18, 14, 0.34);
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --content-width: 1360px;
  --content-narrow: 860px;
  --header-h: 92px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 14px;
  --card-radius: 8px;
  --border-subtle: 1px solid rgba(70, 64, 52, 0.12);
  --card-shadow: 0 1px 2px rgba(32, 34, 29, 0.04), 0 10px 30px rgba(32, 34, 29, 0.06);
  --card-shadow-hover: 0 2px 4px rgba(32, 34, 29, 0.05), 0 22px 48px rgba(32, 34, 29, 0.11);
  --shadow-sm: 0 2px 10px rgba(32, 34, 29, 0.07);
  --shadow-md: 0 10px 34px rgba(32, 34, 29, 0.13);
  --ease-lux: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-btn: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- TYPOGRAPHY --- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga' 1, 'kern' 1;
}

.page-wrapper {
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  margin-bottom: 18px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(40px, 6vw, 68px); font-weight: 600; line-height: 1.08; }
h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 500; }
h3 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; }
h4 { font-size: 20px; font-weight: 600; }
p { margin-bottom: 18px; }
strong { font-weight: 600; color: var(--color-ink); }

::selection { background: var(--color-primary); color: #fff; }

/* --- UTILITIES --- */
.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 0;
  white-space: nowrap;
}

.eyebrow::before,
.section-eyebrow::before {
  content: "";
  position: static;
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
  transform: none;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.32s var(--ease-lux);
  text-decoration: none;
  touch-action: manipulation;
}
.btn-fill {
  background: var(--color-primary);
  color: var(--color-milk);
  border-color: var(--color-primary);
}
.btn-fill:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(78, 90, 81, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--color-heading);
  border-color: rgba(70, 64, 52, 0.4);
}
.btn-outline:hover {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-milk);
}
.btn-light {
  background: transparent;
  color: var(--color-milk);
  border-color: rgba(250, 248, 243, 0.55);
}
.btn-light:hover {
  background: var(--color-milk);
  border-color: var(--color-milk);
  color: var(--color-ink);
}
.btn-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.btn-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.4s var(--ease-lux);
}
.btn-underline:hover { color: var(--color-ink); }
.btn-underline:hover::after { transform: scaleX(1); }
.btn-underline .btn-arrow { transition: transform 0.32s var(--ease-lux); }
.btn-underline:hover .btn-arrow { transform: translateX(6px); }

/* Hero CTA (homepage, già usati nei template) */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 38px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.32s var(--ease-lux);
  cursor: pointer;
  line-height: 1.2;
  touch-action: manipulation;
  text-decoration: none;
}
.hero-btn-primary {
  background: var(--color-milk);
  color: var(--color-ink);
  border: 1px solid var(--color-milk);
}
.hero-btn-primary:hover {
  background: transparent;
  color: var(--color-milk);
  transform: translateY(-2px);
}
.hero-btn-secondary {
  background: transparent;
  color: var(--color-milk);
  border: 1px solid rgba(250, 248, 243, 0.55);
}
.hero-btn-secondary:hover {
  border-color: var(--color-milk);
  background: rgba(250, 248, 243, 0.12);
  transform: translateY(-2px);
}

/* Landing pages CTA */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: var(--color-primary);
  color: var(--color-milk);
  border: 1px solid var(--color-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.32s var(--ease-lux);
  line-height: 1.2;
}
.btn-cta:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(78, 90, 81, 0.3);
  color: var(--color-milk);
}
.btn-cta-ghost {
  background: transparent;
  color: var(--color-heading);
  border-color: rgba(70, 64, 52, 0.4);
}
.btn-cta-ghost:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-milk);
}
.btn-cta-small { padding: 12px 26px; font-size: 12px; }

/* --- LAYOUT --- */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: clamp(84px, 10vw, 140px) 0; }
.section-alt {
  background: var(--color-bg-section);
  padding: clamp(84px, 10vw, 140px) 0;
}
.section-dark {
  background: var(--color-bg-footer);
  color: var(--color-footer-text);
  padding: clamp(84px, 10vw, 140px) 0;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-milk); }
.page-content > .section:first-of-type,
.page-content > section:first-of-type { padding-top: 0; }

.section-title {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.section-title .eyebrow,
.section-title .section-eyebrow { margin-bottom: 18px; }
.section-title h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-title p {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   HEADER — trasparente sulla home, solido altrove
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: var(--color-header-solid);
  z-index: 1000;
  transition: background 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), height 0.3s;
  box-shadow: 0 1px 0 rgba(16, 18, 14, 0.06);
}
/* Home: header trasparente sopra la hero video */
body.home .site-header.transparent {
  background: linear-gradient(180deg, rgba(16, 18, 14, 0.52) 0%, rgba(16, 18, 14, 0) 100%);
  box-shadow: none;
}
body.home .site-header.transparent.scrolled {
  background: var(--color-header-bg);
  border-bottom: 1px solid rgba(16, 18, 14, 0.06);
  box-shadow: 0 6px 30px rgba(32, 34, 29, 0.08);
}
.site-header.scrolled {
  background: var(--color-header-bg);
  border-bottom: 1px solid rgba(16, 18, 14, 0.06);
  box-shadow: 0 6px 30px rgba(32, 34, 29, 0.08);
}

.header-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.site-logo { flex-shrink: 0; line-height: 0; }
.site-logo img {
  max-height: 74px;
  width: auto;
  transition: max-height 0.3s;
}

.header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .snipcart-checkout {
  background: none;
  border: 1px solid rgba(250, 248, 243, 0.35);
  color: var(--color-header-text);
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.25s var(--ease-btn);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 0;
}
.header-actions .snipcart-checkout:hover {
  border-color: var(--color-champagne);
  color: var(--color-champagne);
}

/* Stato "solido" (pagine interne e home dopo scroll): sfondo crema, testo scuro */
.site-header:not(.transparent) .main-nav-list > li > a,
.site-header:not(.transparent) .main-nav-list > li > .nav-link,
.site-header:not(.transparent) .mobile-menu-toggle,
.site-header:not(.transparent) .header-actions .snipcart-checkout,
body.home .site-header.scrolled .main-nav-list > li > a,
body.home .site-header.scrolled .main-nav-list > li > .nav-link,
body.home .site-header.scrolled .mobile-menu-toggle,
body.home .site-header.scrolled .header-actions .snipcart-checkout {
  color: var(--color-header-ink);
}
.site-header:not(.transparent) .header-actions .snipcart-checkout,
body.home .site-header.scrolled .header-actions .snipcart-checkout {
  border-color: rgba(35, 38, 31, 0.28);
}
.site-header:not(.transparent) .header-actions .snipcart-checkout:hover,
body.home .site-header.scrolled .header-actions .snipcart-checkout:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* --- Main Navigation desktop --- */
.main-nav { display: flex; align-items: center; }
.main-nav-list { display: flex; align-items: center; gap: 6px; }
.main-nav-list > li { position: relative; }
.main-nav-list > li > a,
.main-nav-list > li > .nav-link {
  display: block;
  padding: 10px 16px;
  color: var(--color-header-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: color 0.2s var(--ease-btn), opacity 0.2s var(--ease-btn);
  opacity: 0.92;
  position: relative;
}
.main-nav-list > li > a::after,
.main-nav-list > li > .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease-lux);
}
.main-nav-list > li > a:hover::after,
.main-nav-list > li > .nav-link:hover::after,
.main-nav-list > li > a.nav-active::after,
.main-nav-list > li > .nav-link.nav-active::after {
  transform: scaleX(1);
}
.main-nav-list > li > a:hover,
.main-nav-list > li > .nav-link:hover,
.main-nav-list > li:hover > a,
.main-nav-list > li:hover > .nav-link {
  color: var(--color-primary);
  opacity: 1;
}
.main-nav-list > li > a.nav-active,
.main-nav-list > li > .nav-link.nav-active {
  color: var(--color-primary);
  opacity: 1;
}
/* Stato solido (pagine interne + home scrollata): hover e voce attiva
   restano in salvia come su Marchi Cucine */
.site-header:not(.transparent) .main-nav-list > li > a:hover,
.site-header:not(.transparent) .main-nav-list > li > .nav-link:hover,
.site-header:not(.transparent) .main-nav-list > li:hover > a,
.site-header:not(.transparent) .main-nav-list > li:hover > .nav-link,
.site-header:not(.transparent) .main-nav-list > li > a.nav-active,
.site-header:not(.transparent) .main-nav-list > li > .nav-link.nav-active,
body.home .site-header.scrolled .main-nav-list > li > a:hover,
body.home .site-header.scrolled .main-nav-list > li > .nav-link:hover,
body.home .site-header.scrolled .main-nav-list > li:hover > a,
body.home .site-header.scrolled .main-nav-list > li:hover > .nav-link,
body.home .site-header.scrolled .main-nav-list > li > a.nav-active,
body.home .site-header.scrolled .main-nav-list > li > .nav-link.nav-active {
  color: var(--color-primary);
}

.main-nav .submenu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 260px;
  background: var(--color-bg-card);
  box-shadow: 0 18px 50px rgba(32, 34, 29, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.28s var(--ease-lux);
  z-index: 999;
  padding: 12px 0;
  border-top: 2px solid var(--color-primary);
}
.main-nav-list > li:hover .submenu,
.main-nav-list > li:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .submenu li a {
  display: block;
  padding: 9px 26px;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  transition: all 0.2s;
}
.main-nav .submenu li a:hover {
  color: var(--color-primary);
  background: var(--color-primary-tint);
  padding-left: 32px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
  position: relative;
  color: var(--color-header-text);
}
.mobile-menu-toggle .burger-line {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: all 0.3s var(--ease-lux);
}
.mobile-menu-toggle .burger-line:nth-child(1) { top: 16px; }
.mobile-menu-toggle .burger-line:nth-child(2) { top: 23px; }
.mobile-menu-toggle .burger-line:nth-child(3) { top: 30px; }
.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) { top: 23px; transform: translateX(-50%) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) { top: 23px; transform: translateX(-50%) rotate(-45deg); }

/* --- Mobile: menu full-screen stile Marchi (serif gigante) --- */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .mobile-menu-toggle { display: block; }
  .site-logo img { max-height: 52px; }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10015;
    width: 100%;
    height: 100dvh;
    background: #1A1A1A;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s var(--ease-lux), visibility 0.45s;
  }
  .main-nav::-webkit-scrollbar { width: 5px; }
  .main-nav::-webkit-scrollbar-track { background: transparent; }
  .main-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.22);
    border-radius: 3px;
  }
  .main-nav::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.34); }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  /* Quando il menu è aperto, l'header (e quindi il drawer) sta sopra
     tutti i widget flottanti (Laura 9999/10000, cookie banner 9998). */
  body.nav-open .site-header {
    z-index: 10020;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 26px 18px;
    border-bottom: 1px solid rgba(250, 248, 243, 0.1);
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(-12px);
    transition: all 0.5s var(--ease-lux) 0.1s;
    position: sticky;
    top: 0;
    z-index: 5;
    background: #1A1A1A;
  }
  .main-nav.open .nav-drawer-head { opacity: 1; transform: none; }
  .nav-drawer-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(250, 248, 243, 0.55);
  }
  .nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(250, 248, 243, 0.07);
    border: 1px solid rgba(250, 248, 243, 0.14);
    color: var(--color-milk);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s;
  }
  .nav-drawer-close:hover { background: rgba(250, 248, 243, 0.16); }

  .main-nav-list {
    flex: 1;
    padding: 26px 0;
    display: block;
  }
  .main-nav-list > li {
    width: 100%;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s var(--ease-lux), transform 0.55s var(--ease-lux);
  }
  .main-nav.open .main-nav-list > li { opacity: 1; transform: none; }
  .main-nav.open .main-nav-list > li:nth-child(1) { transition-delay: 0.16s; }
  .main-nav.open .main-nav-list > li:nth-child(2) { transition-delay: 0.22s; }
  .main-nav.open .main-nav-list > li:nth-child(3) { transition-delay: 0.28s; }
  .main-nav.open .main-nav-list > li:nth-child(4) { transition-delay: 0.34s; }
  .main-nav.open .main-nav-list > li:nth-child(5) { transition-delay: 0.4s; }
  .main-nav.open .main-nav-list > li:nth-child(6) { transition-delay: 0.46s; }
  .main-nav.open .main-nav-list > li:nth-child(7) { transition-delay: 0.52s; }

  body.nav-open .site-header .main-nav .main-nav-list > li > a,
  body.nav-open .site-header .main-nav .main-nav-list > li > .nav-link {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.3;
    padding: 14px 28px;
    display: block;
    color: #FFFFFF;
    opacity: 1;
  }
  body.nav-open .site-header .main-nav .main-nav-list > li > a:hover,
  body.nav-open .site-header .main-nav .main-nav-list > li > .nav-link:hover,
  body.nav-open .site-header .main-nav .main-nav-list > li > a.nav-active,
  body.nav-open .site-header .main-nav .main-nav-list > li > .nav-link.nav-active {
    color: #FFFFFF;
  }
  .main-nav .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 14px;
    background: transparent;
    margin: 0;
    border-top: none;
    display: block;
    max-height: none;
    overflow: visible;
  }
  .main-nav .submenu li a {
    color: #CCCCCC;
    padding: 10px 28px;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.5;
    font-family: var(--font-body);
    text-indent: 20px;
  }
  .main-nav .submenu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-drawer-foot {
    padding: 22px 26px 34px;
    border-top: 1px solid rgba(250, 248, 243, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(14px);
    transition: all 0.5s var(--ease-lux) 0.5s;
  }
  .main-nav.open .nav-drawer-foot { opacity: 1; transform: none; }
  .nav-drawer-cta {
    display: block;
    text-align: center;
    padding: 16px 20px;
    background: var(--color-primary);
    color: var(--color-milk);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: background 0.3s;
  }
  .nav-drawer-cta:hover { background: var(--color-primary-hover); color: var(--color-milk); }
  .nav-drawer-phone {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border: 1px solid rgba(250, 248, 243, 0.22);
    color: var(--color-milk);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10010;
    background: rgba(16, 18, 14, 0.55);
    opacity: 0;
    transition: opacity 0.35s;
  }
  .nav-backdrop.visible { opacity: 1; }
  body.nav-open { overflow: hidden; }
}

@media (min-width: 1025px) {
  .nav-drawer-head,
  .nav-backdrop,
  .nav-drawer-foot {
    display: none;
  }
  .main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100% - 560px);
  }
  .main-nav-list { flex-wrap: nowrap; }
}

/* ============================================================
   PAGE CONTENT
   ============================================================ */
.page-content {
  padding-top: var(--header-h);
  min-height: 60vh;
}
body.home .page-content { padding-top: 0; }

/* ============================================================
   HERO GENERIC (pagine interne)
   ============================================================ */
.hero,
.hero-section {
  position: relative;
  background: var(--color-bg-section);
  padding: clamp(96px, 12vw, 150px) 0 clamp(72px, 9vw, 110px);
  text-align: center;
  border-bottom: 1px solid var(--color-border-soft);
  overflow: hidden;
}
.hero::before,
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52% 46% at 50% 0%, rgba(98, 110, 100, 0.12) 0%, rgba(98, 110, 100, 0) 70%);
  pointer-events: none;
}
.hero .container,
.hero-section .container { position: relative; }
.hero h1,
.hero-section h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero p,
.hero-section p {
  font-size: 18px;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.hero-section .section-eyebrow { margin-bottom: 20px; }

/* ============================================================
   HERO HOMEPAGE — immersiva, video full-screen
   (contenuto ancorato in basso, stile Marchi Cucine)
   ============================================================ */
.hero-home {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding: 0;
}
.hero-home .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-home .hero-track {
  position: absolute;
  inset: 0;
}
.hero-home .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hero-home .hero-slide img,
.hero-home .hero-slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transform: scale(1.02);
}
.hero-home .hero-slide.active { opacity: 1; }
.hero-home .hero-slide.active img,
.hero-home .hero-slide.active .hero-slide-video {
  animation: heroKenburns 9s ease-out forwards;
}
@keyframes heroKenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}
.hero-home .hero-video .poster-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 18, 14, 0.55) 0%, rgba(16, 18, 14, 0.2) 34%, rgba(16, 18, 14, 0.1) 55%, rgba(16, 18, 14, 0.85) 100%);
  z-index: 1;
}
.hero-home .hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 32px clamp(120px, 16vh, 170px);
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.85);
  margin-bottom: 22px;
  padding-left: 30px;
  position: relative;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--color-accent);
}
.hero-home .hero-content h1 {
  font-size: clamp(44px, 7.2vw, 88px);
  font-weight: 500;
  color: var(--color-champagne);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-shadow: 0 2px 34px rgba(16, 18, 14, 0.55);
}
.hero-home .hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(250, 248, 243, 0.9);
  max-width: 560px;
  margin: 0 0 38px;
  line-height: 1.75;
  font-weight: 400;
  text-shadow: 0 1px 18px rgba(16, 18, 14, 0.5);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-dots,
.azienda-dots {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-dots { bottom: 40px; left: 50%; transform: translateX(-50%); }
.azienda-dots { bottom: 26px; left: 50%; transform: translateX(-50%); }
.gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.6);
  cursor: pointer;
  transition: all 0.3s var(--ease-lux);
  touch-action: manipulation;
  box-shadow: 0 0 0 2px rgba(16, 18, 14, 0.15);
}
.gallery-dot:hover,
.gallery-dot:focus {
  background: var(--color-milk);
  transform: scale(1.2);
  box-shadow: 0 0 0 4px rgba(250, 248, 243, 0.2);
}
.gallery-dot.active {
  background: var(--color-milk);
  transform: scale(1.3);
  box-shadow: 0 0 0 5px rgba(250, 248, 243, 0.2);
}
.hero-swipe-hint {
  display: none;
  position: absolute;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-milk);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.85;
  animation: swipePulse 2.4s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes swipePulse {
  0%, 100% { opacity: 0.35; transform: translateX(calc(-50% - 5px)); }
  50% { opacity: 0.95; transform: translateX(calc(-50% + 5px)); }
}

/* ============================================================
   HOMEPAGE EDITORIALE — sezioni asimmetriche
   ============================================================ */

/* --- Intro editorial (storia / bottega) --- */
.home-intro {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--color-bg);
}
.home-intro .editorial-grid {
  display: grid;
  grid-template-columns: 12fr 12fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.home-intro .intro-copy { max-width: 520px; }
.home-intro .intro-copy h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 24px;
}
.home-intro .intro-copy p {
  font-size: 16.5px;
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: 22px;
}
.home-intro .intro-media {
  position: relative;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(18px, 2.4vw, 34px);
  align-items: end;
}
.home-intro .intro-media figure { margin: 0; }
.home-intro .intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}
.home-intro .media-main {
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(32, 34, 29, 0.16);
}
.home-intro .media-acc {
  aspect-ratio: 3 / 4;
  transform: translateY(clamp(20px, 4vw, 54px));
  box-shadow: 0 18px 44px rgba(32, 34, 29, 0.13);
}
.home-intro .media-acc { position: relative; }
.home-intro .intro-stats {
  display: flex;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid var(--color-border);
}
.home-intro .stat-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.6vw, 46px);
  color: var(--color-primary);
  line-height: 1;
  font-weight: 600;
  display: block;
}
.home-intro .stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* --- Vetrina categorie (stile collezioni Marchi) --- */
.category-showcase {
  background: var(--color-bg-section);
  padding: clamp(90px, 11vw, 150px) 0;
  overflow: hidden;
}
.category-showcase .showcase-head {
  display: grid;
  grid-template-columns: 12fr 12fr;
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.category-showcase .showcase-head .section-eyebrow { margin-bottom: 18px; }
.category-showcase .showcase-head h2 { margin-bottom: 0; }
.category-showcase .showcase-head .showcase-note {
  justify-self: end;
  max-width: 420px;
  font-size: 15.5px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
  text-align: right;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 12fr 12fr;
  gap: clamp(18px, 2.6vw, 36px);
}
.showcase-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-bg-card);
  text-decoration: none;
  color: inherit;
}
.showcase-card .showcase-media {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-section-2);
}
.showcase-card .showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-lux), filter 1.1s var(--ease-lux);
  filter: saturate(0.92);
}
.showcase-card:hover .showcase-media img {
  transform: scale(1.05);
  filter: saturate(1.02);
}
.showcase-card .showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 18, 14, 0) 40%, rgba(16, 18, 14, 0.35) 100%);
}
.showcase-card .showcase-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 28px 28px;
  color: var(--color-milk);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.showcase-card .showcase-body h3 {
  color: var(--color-milk);
  margin-bottom: 4px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.showcase-card .showcase-body .showcase-count {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.75);
}
.showcase-card .showcase-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--color-milk);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-lux);
}
.showcase-card:hover .showcase-link { opacity: 1; transform: none; }
.showcase-card--tall .showcase-media { aspect-ratio: 4 / 4.8; }
.showcase-card--short .showcase-media { aspect-ratio: 16 / 10.5; }
.showcase-card--wide .showcase-media { aspect-ratio: 16 / 9; }
.showcase-grid > .showcase-card:first-child { grid-row: span 2; }
.showcase-grid > .showcase-card:first-child .showcase-media { aspect-ratio: 4 / 5.4; }

/* --- Banda servizi editoriali (sostituisce info-grid) --- */
.home-services {
  padding: clamp(90px, 11vw, 150px) 0;
  background: var(--color-bg);
}
.home-services .services-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.home-services .service-item {
  border-top: 1px solid var(--color-border);
  padding-top: 30px;
  position: relative;
}
.home-services .service-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 46px;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.45s var(--ease-lux);
}
.home-services .service-item:hover::before { width: 100%; }
.home-services .service-item .icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-tint);
  border-radius: 50%;
  margin-bottom: 22px;
}
.home-services .service-item .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}
.home-services .service-item h4 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}
.home-services .service-item p {
  font-size: 14.5px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 44px);
}
.product-card {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.45s var(--ease-lux), transform 0.45s var(--ease-lux), border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(98, 110, 100, 0.35);
}
.product-card .card-image {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-section);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 18, 14, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.product-card:hover .card-image::after { opacity: 1; }
.product-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-lux);
  filter: saturate(0.94);
}
.product-card:hover .card-image img { transform: scale(1.03); filter: saturate(1); }
.product-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-sale);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  z-index: 2;
  line-height: 1.4;
}
.product-card .card-body {
  padding: 28px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-collezione {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.product-card .card-body .price {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 18px;
  line-height: 1.3;
  font-family: var(--font-body);
}
.product-card .card-body .price del {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-right: 8px;
  vertical-align: middle;
}
.old-price {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-decoration: line-through;
  margin-right: 8px;
}
.product-card .card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--color-heading);
  border: 1px solid rgba(70, 64, 52, 0.35);
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.3s var(--ease-lux);
  margin-top: auto;
  align-self: flex-start;
}
.product-card .btn-add-cart:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-milk);
  transform: translateY(-2px);
}
.card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}
.card-link:hover { color: inherit; }
.card-link:hover .card-image img { transform: scale(1.06); }
.card-actions { padding: 0 24px 24px; }
.card-actions .btn-add-cart { width: 100%; text-align: center; display: block; }

/* --- Catalogo completo (prodotti/index) --- */
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.catalogo-grid .card {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 26px;
  transition: box-shadow 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}
.catalogo-grid .card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.catalogo-grid .card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.catalogo-grid .card p { font-size: 15px; color: var(--color-primary); font-weight: 600; margin-bottom: 0; font-family: var(--font-body); }

/* ============================================================
   OFFERS
   ============================================================ */
.offers-section { background: var(--color-bg-section); padding: clamp(84px, 10vw, 140px) 0; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(22px, 3vw, 40px);
}
.offer-card {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.45s var(--ease-lux), transform 0.45s var(--ease-lux), border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-6px);
  border-color: rgba(98, 110, 100, 0.35);
}
.offer-card .card-image {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-section);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease-lux);
  filter: saturate(0.94);
}
.offer-card:hover .card-image img { transform: scale(1.07); }
.offer-card .card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.offer-card .card-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 8px;
  line-height: 1.4;
}
.offer-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.offer-card .price-old {
  font-size: 13px;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}
.offer-card .price-new {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-sale);
  font-family: var(--font-body);
}
.offer-card .card-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.offer-card .offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-sale);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 11px;
  z-index: 2;
  line-height: 1.3;
}

/* ============================================================
   INFO GRID / SERVICES / BRANDS
   ============================================================ */
.info-section { padding: clamp(64px, 8vw, 110px) 0; background: var(--color-bg-section); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 54px); }
.info-card { text-align: center; padding: 34px 22px; background: var(--color-bg-card); border: var(--border-subtle); border-radius: var(--card-radius); transition: box-shadow 0.4s var(--ease-lux), transform 0.4s var(--ease-lux); }
.info-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-5px); }
.info-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-tint);
}
.info-card .icon svg { width: 26px; height: 26px; stroke: var(--color-primary); }
.info-card .separator {
  width: 38px;
  height: 2px;
  background: var(--color-accent);
  margin: 0 auto 18px;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 12px;
}
.info-card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.8; margin-bottom: 0; }

/* ============================================================
   SERVICES / BRANDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 46px); }
.service-card {
  text-align: center;
  padding: 42px 28px;
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  transition: box-shadow 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
}
.service-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-6px); }
.service-card .service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-tint);
}
.service-card .service-icon svg { width: 26px; height: 26px; stroke: var(--color-primary); }
.service-card .service-sep { width: 38px; height: 2px; background: var(--color-accent); margin: 0 auto 18px; display: block; }
.service-card h3 { font-size: 19px; font-weight: 600; color: var(--color-heading); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 0; }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 50px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 38px 26px;
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s var(--ease-lux), border-color 0.3s;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(98, 110, 100, 0.35);
}
.brand-card .brand-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-primary);
  background: var(--color-primary-tint);
  border-radius: 50%;
}
.brand-card h3 { font-size: 21px; font-weight: 600; color: var(--color-heading); margin-bottom: 10px; }
.brand-card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.7; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(130deg, var(--color-bg-footer) 0%, #2C312A 60%, var(--color-primary-hover) 130%);
  padding: clamp(88px, 11vw, 150px) 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(46% 60% at 50% 100%, rgba(98, 110, 100, 0.35) 0%, rgba(98, 110, 100, 0) 70%);
  pointer-events: none;
}
.cta-section .cta-content { position: relative; }
.cta-section .cta-content h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 500;
  color: var(--color-milk);
  margin-bottom: 18px;
}
.cta-section .cta-content p {
  font-size: 17px;
  color: rgba(250, 248, 243, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-section .hero-btn-primary {
  background: var(--color-milk);
  color: var(--color-ink);
  border-color: var(--color-milk);
}
.cta-section .hero-btn-primary:hover { background: transparent; color: var(--color-milk); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: clamp(80px, 10vw, 130px) 20px;
  background: var(--color-bg-footer);
  text-align: center;
  color: var(--color-milk);
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 70% at 50% 0%, rgba(98, 110, 100, 0.3) 0%, rgba(98, 110, 100, 0) 65%);
}
.newsletter-content { max-width: 620px; margin: 0 auto; position: relative; }
.newsletter-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--color-milk);
}
.newsletter-section p { font-size: 16.5px; color: rgba(250, 248, 243, 0.85); margin-bottom: 34px; line-height: 1.7; }
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form input[type="email"] { flex: 1 1 240px; }
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(250, 248, 243, 0.25);
  background: rgba(250, 248, 243, 0.07);
  color: var(--color-milk);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s, background 0.3s;
}
.newsletter-form input::placeholder { color: rgba(250, 248, 243, 0.5); }
.newsletter-form input:focus { border-color: var(--color-primary-light); background: rgba(250, 248, 243, 0.1); }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--color-milk);
  color: var(--color-ink);
  border: none;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-lux);
  white-space: nowrap;
  border-radius: 0;
}
.newsletter-form button:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-2px);
}
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px auto 0;
  flex-basis: 100%;
  max-width: 520px;
  font-size: 12.5px;
  color: rgba(250, 248, 243, 0.6);
  text-align: left;
  line-height: 1.6;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary-light);
}
.newsletter-consent a { color: var(--color-primary-light); text-decoration: underline; }
.newsletter-msg {
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--color-milk);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-footer);
  color: var(--color-footer-text);
  padding: clamp(70px, 9vw, 110px) 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(251, 249, 247, 0.35) 50%, transparent 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  padding-bottom: clamp(44px, 6vw, 70px);
  border-bottom: 1px solid rgba(250, 248, 243, 0.08);
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-col h2 {
  color: var(--color-milk);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-body);
}
.footer-col p, .footer-col li { font-size: 14px; line-height: 1.9; margin-bottom: 4px; color: var(--color-footer-text); }
.footer-col a { color: var(--color-footer-text); transition: color 0.3s; }
.footer-col a:hover { color: var(--color-milk); }
.footer-email { color: var(--color-milk) !important; }
.footer-legal-link { color: var(--color-footer-text); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal-link:hover { color: var(--color-milk); }
.footer-col:first-child > p { line-height: 1.85; margin-bottom: 10px; }

.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(250, 248, 243, 0.16);
  background: transparent;
  color: var(--color-footer-text);
  transition: all 0.3s var(--ease-lux);
}
.footer-social a:hover {
  background: var(--color-milk);
  color: var(--color-ink);
  border-color: var(--color-milk);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-social i { font-size: 17px; color: currentColor; }
.footer-social a:hover .fa-facebook-f,
.footer-social a:hover .fa-instagram,
.footer-social a:hover .fa-map-marker-alt,
.footer-social a:hover .fa-whatsapp { color: inherit; }

.footer-bottom {
  text-align: center;
  padding: 26px 32px;
  font-size: 13px;
  color: var(--color-footer-text);
  max-width: var(--content-width);
  margin: 0 auto;
}
.footer-bottom p { margin-bottom: 0; line-height: 1.8; }

/* ============================================================
   AZIENDA PAGE
   ============================================================ */
.azienda-hero {
  background: var(--color-bg-section);
  padding: clamp(70px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.azienda-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 46% at 50% 0%, rgba(98, 110, 100, 0.12) 0%, rgba(98, 110, 100, 0) 70%);
}
.azienda-hero .container { position: relative; }
.azienda-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.azienda-hero h1 {
  text-align: center;
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.azienda-story-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.azienda-story-text .azienda-lead {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.6;
  color: var(--color-heading);
  font-weight: 500;
  margin-bottom: 24px;
}
.azienda-story-text p { font-size: 15.5px; line-height: 1.9; color: var(--color-text); }
.azienda-checklist { margin: 28px 0 0; padding: 0; }
.azienda-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 15px;
  color: var(--color-text);
}
.azienda-checklist li:last-child { border-bottom: none; }
.azienda-checklist .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--color-primary-tint);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.azienda-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.6;
  box-shadow: 0 24px 60px rgba(32, 34, 29, 0.16);
  filter: saturate(0.94);
}
.azienda-content { max-width: 860px; margin: 0 auto; }
.azienda-content h2 { font-size: 30px; font-weight: 500; color: var(--color-heading); margin-bottom: 22px; text-align: center; }
.azienda-content p { font-size: 16px; line-height: 1.9; color: var(--color-text); margin-bottom: 22px; }

/* --- Slider azienda --- */
.azienda-process { background: var(--color-bg-section); }
.azienda-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.azienda-track {
  display: flex;
  transition: transform 0.7s var(--ease-lux);
}
.azienda-slide {
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}
.azienda-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.azienda-slider-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 26px 22px;
  background: linear-gradient(180deg, transparent, rgba(16, 18, 14, 0.75));
  color: var(--color-milk);
  font-size: 14.5px;
  line-height: 1.6;
}
.azienda-process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(40px, 6vw, 70px);
}
.process-step {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--color-border);
}
.process-step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 38px;
  height: 1px;
  background: var(--color-accent);
}
.process-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}
.process-step h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 0; }

/* ============================================================
   SUBCATEGORY GRID (categorie con immagine)
   ============================================================ */
.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
}
.subcategory-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--card-radius);
  padding: 40px 24px;
  min-height: 230px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.45s var(--ease-lux), transform 0.45s var(--ease-lux), border-color 0.3s;
}
.subcategory-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 18, 14, 0.08), rgba(16, 18, 14, 0.35));
  z-index: 1;
  transition: opacity 0.45s ease;
}
.subcategory-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.9s var(--ease-lux);
  filter: saturate(0.92);
}
.subcategory-card:hover .subcategory-card-img { transform: scale(1.03); filter: saturate(1); }
.subcategory-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--color-accent);
  transition: width 0.45s var(--ease-lux);
  z-index: 3;
}
.subcategory-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-6px); }
.subcategory-card:hover::after { width: 56%; }
.subcategory-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-milk);
  margin-bottom: 0;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(16, 18, 14, 0.7);
  position: relative;
  z-index: 2;
  transition: transform 0.45s var(--ease-lux);
  font-family: var(--font-display);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.subcategory-card:hover h3 { transform: scale(1.06); }

.subcategory-block {
  margin-bottom: clamp(50px, 7vw, 80px);
}
.subcategory-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 10px;
}
.subcategory-block > .container > p {
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-bottom: 30px;
}

/* ============================================================
   PROJECT STORY (moderno/classico intro)
   ============================================================ */
.project-story-section { background: var(--color-bg); padding: clamp(70px, 9vw, 120px) 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-image {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.6s var(--ease-lux);
  filter: saturate(0.94);
}
.story-image:hover img { transform: scale(1.04); }
.story-content h3 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 20px;
  line-height: 1.3;
}
.story-content p { font-size: 16px; line-height: 1.85; color: var(--color-text); margin-bottom: 18px; }
.story-details { list-style: none; padding: 0; margin: 24px 0 0; }
.story-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 15px;
  color: var(--color-text);
}
.story-details li:last-child { border-bottom: none; }
.story-detail-icon { font-size: 18px; flex-shrink: 0; width: 26px; text-align: center; }

/* ============================================================
   LANDING LOCALI
   ============================================================ */
.landing-hero {
  background: var(--color-bg-section);
  padding: clamp(70px, 9vw, 120px) 0 clamp(56px, 7vw, 90px);
  text-align: center;
  border-bottom: 1px solid var(--color-border-soft);
  position: relative;
}
.landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 46% at 50% 0%, rgba(98, 110, 100, 0.12) 0%, rgba(98, 110, 100, 0) 70%);
}
.landing-hero .container { position: relative; }
.landing-hero h1 { margin-bottom: 16px; }
.landing-lead {
  font-size: 17.5px;
  color: var(--color-text-secondary);
  max-width: 680px;
  margin: 0 auto 34px;
  line-height: 1.8;
}
.landing-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing-strip {
  background: var(--color-bg-footer);
  color: var(--color-footer-text);
  padding: clamp(28px, 4vw, 44px) 0;
}
.landing-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.landing-strip-item { text-align: center; }
.landing-strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  color: var(--color-milk);
  margin-bottom: 6px;
}
.landing-strip-item span { font-size: 13px; color: var(--color-footer-text); line-height: 1.6; }
.landing-servizi-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.landing-servizio { border-top: 1px solid var(--color-border); padding-top: 28px; }
.landing-servizio h2 { font-size: clamp(22px, 2.8vw, 30px); margin-bottom: 12px; }
.landing-servizio p { color: var(--color-text-secondary); font-size: 15px; line-height: 1.8; }
.landing-more {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
}
.landing-more:hover { color: var(--color-ink); border-color: var(--color-ink); }
.landing-info-card {
  background: var(--color-bg-section);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 34px 30px;
}
.landing-info-card p { font-size: 14.5px; line-height: 1.8; color: var(--color-text); margin-bottom: 12px; }
.landing-info-card .landing-info-note {
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  counter-reset: step;
}
.landing-step {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 32px 26px;
  position: relative;
}
.landing-step-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.landing-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.landing-step p { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 0; line-height: 1.7; }
.landing-faq { max-width: 860px; margin: 0 auto; }
.landing-faq-item {
  border-bottom: 1px solid var(--color-border-soft);
  padding: 18px 4px;
}
.landing-faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 300;
  transition: transform 0.3s;
}
.landing-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.landing-faq-item p {
  margin: 14px 0 4px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.8;
}
.landing-cta { background: var(--color-bg-section); }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { padding: clamp(56px, 8vw, 110px) 0 60px; }
.breadcrumb { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 34px; letter-spacing: 0.3px; }
.breadcrumb a { color: var(--color-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.gallery-main {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--color-bg-section);
  aspect-ratio: 4 / 3;
}
.gallery-main img {
  display: block;
  width: 100%;
  max-width: 920px;
  height: auto;
  object-fit: contain;
  image-rendering: auto;
  filter: saturate(0.94);
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 1025px) {
  .product-gallery { min-width: 520px; }
}
.gallery-main-btn {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}
.gallery-main-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: -4px; }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 248, 243, 0.92);
  border: none;
  font-size: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink);
  transition: all 0.3s;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(16, 18, 14, 0.16);
  line-height: 1;
}
.gallery-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.2s, border-color 0.3s;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.gallery-thumb:hover { opacity: 0.9; transform: translateY(-2px); }
.gallery-thumb.active { opacity: 1; border-color: var(--color-primary); }
.product-info h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 12px; }
.product-info .price {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.product-description { font-size: 16px; line-height: 1.9; color: var(--color-text); margin-bottom: 32px; }
.product-description p { margin-bottom: 16px; }
.btn-detail { display: inline-block; padding: 16px 40px; font-size: 16px; }
.btn-preventivo {
  display: inline-block;
  padding: 16px 48px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: var(--color-primary);
  color: var(--color-milk);
  border: 1px solid var(--color-primary);
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-lux);
  text-align: center;
}
.btn-preventivo:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 90, 81, 0.32);
  color: var(--color-milk);
}

/* ============================================================
   LIGHTBOX PRODOTTO
   ============================================================ */
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(16, 18, 14, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-lux), visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-figure {
  margin: 0;
  max-width: min(94vw, 1600px);
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.lightbox-figure img {
  display: block;
  max-width: 94vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  background: #fff;
}
.lightbox-caption {
  color: rgba(250, 248, 243, 0.75);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.12);
  color: #faf8f3;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-close:hover {
  background: rgba(250, 248, 243, 0.24);
  transform: rotate(90deg);
}
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.12);
  color: #faf8f3;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s, transform 0.3s;
}
.lightbox-nav:hover { background: rgba(250, 248, 243, 0.24); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 640px) {
  .lightbox-close { top: 12px; right: 12px; width: 44px; height: 44px; font-size: 26px; }
  .lightbox-nav { width: 44px; height: 44px; font-size: 28px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-figure img { max-width: 96vw; }
}

/* ============================================================
   KITCHEN GALLERY
   ============================================================ */
.kitchen-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: clamp(20px, 3vw, 30px);
}
.kitchen-card {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: box-shadow 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
  display: flex;
  flex-direction: column;
}
.kitchen-card:hover { box-shadow: var(--card-shadow-hover); transform: translateY(-7px); }
.kitchen-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}
.kitchen-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-lux);
  filter: saturate(0.94);
}
.kitchen-card:hover .kitchen-card-image img { transform: scale(1.06); }
.kitchen-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.kitchen-card-body h3 { font-size: 20px; font-weight: 600; color: var(--color-heading); margin-bottom: 10px; }
.kitchen-card-body p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 11px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
  text-decoration: none;
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.empty-state { text-align: center; padding: 60px 20px; font-size: 16px; color: var(--color-text-secondary); grid-column: 1 / -1; }

/* ============================================================
   HOTSPOTS
   ============================================================ */
.hotspot-container { position: relative; max-width: 100%; }
.hotspot-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hotspot-image { display: block; width: 100%; height: auto; }
.hotspot-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(98, 110, 100, 0.92);
  border: 2px solid rgba(250, 248, 243, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s;
  z-index: 5;
  padding: 0;
}
.hotspot-dot:hover { transform: translate(-50%, -50%) scale(1.2); background: var(--color-primary-hover); }
.hotspot-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: hotspotPulse 2s infinite;
  border: 2px solid rgba(98, 110, 100, 0.45);
}
@keyframes hotspotPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hotspot-icon { color: #fff; font-size: 17px; font-weight: 300; line-height: 1; position: relative; z-index: 1; }
.hotspot-panel {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--card-radius);
  box-shadow: 0 14px 44px rgba(32, 34, 29, 0.2);
  padding: 24px;
  z-index: 10;
  border: var(--border-subtle);
  transition: opacity 0.3s, transform 0.3s;
}
.hotspot-panel[aria-hidden="true"] { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(10px); }
.hotspot-panel[aria-hidden="false"] { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.hotspot-panel-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--color-text);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.hotspot-panel-close:hover { color: var(--color-primary); }
.hotspot-panel-content { padding: 0; }
.hotspot-panel-title { font-size: 18px; font-weight: 600; color: var(--color-heading); margin-bottom: 8px; padding-right: 20px; }
.hotspot-panel-description { font-size: 14px; line-height: 1.7; color: var(--color-text); margin-bottom: 0; }

/* ============================================================
   FORMS (preventivo + project form)
   ============================================================ */
.preventivo-form-wrapper { max-width: 680px; margin: 0 auto; }
.preventivo-form .form-row,
.project-form .form-row { margin-bottom: 22px; }
.form-privacy { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 22px; }
.form-privacy input[type="checkbox"],
.checkbox-label input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-primary); }
.form-privacy a { color: var(--color-primary); text-decoration: underline; }
.preventivo-form label,
.project-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-heading);
  margin-bottom: 7px;
}
.preventivo-form .required,
.project-form .required { color: var(--color-sale); }
.preventivo-form input[type="text"],
.preventivo-form input[type="email"],
.preventivo-form input[type="tel"],
.preventivo-form input[type="file"],
.preventivo-form textarea,
.project-form input[type="text"],
.project-form input[type="email"],
.project-form input[type="tel"],
.project-form input[type="file"],
.project-form textarea,
.project-form select {
  width: 100%;
  padding: 14px 16px;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg-card);
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.preventivo-form input:focus,
.preventivo-form textarea:focus,
.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-tint);
}
.project-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23454A42' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.preventivo-form button[type="submit"] { padding: 15px 38px; }

.form-hint { font-size: 12px; color: var(--color-text-secondary); margin-top: 5px; line-height: 1.4; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  cursor: pointer;
}
.checkbox-label a { color: var(--color-primary); text-decoration: underline; }

.section-form { padding: 30px 0 20px; }
.section-compact { padding: 0 0 40px; }
.project-form-heading { text-align: center; margin-bottom: 32px; }
.project-form-heading h2 { font-size: 30px; font-weight: 500; color: var(--color-heading); margin-bottom: 8px; }
.project-form-heading p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; }
.contact-info-compact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-border-soft);
  font-size: 13px;
  color: var(--color-text-secondary);
}
.contact-item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.contact-item svg { flex-shrink: 0; color: var(--color-primary); }
.contact-item a { color: var(--color-text); }
.contact-item a:hover { color: var(--color-primary); }
.project-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: clamp(30px, 5vw, 50px);
  box-shadow: var(--card-shadow);
}
.form-steps { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; }
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--color-bg-section);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}
.step.active { background: var(--color-primary); color: #fff; }
.step-num {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  background: rgba(250, 248, 243, 0.3);
  color: inherit;
  border-radius: 50%;
}
.step:not(.active) .step-num { background: var(--color-border); }
.step-label { display: none; }
.step.active .step-label { display: inline; }
.form-step-content { display: none; animation: fadeIn 0.35s ease; }
.form-step-content.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.step-heading { font-size: 22px; font-weight: 600; color: var(--color-heading); margin-bottom: 26px; letter-spacing: -0.3px; }
.form-nav { display: flex; gap: 12px; margin-top: 8px; }
.form-nav .btn-prev,
.form-nav .btn-next,
.form-nav .btn-submit {
  padding: 14px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-lux);
  line-height: 1.2;
}
.btn-prev { background: transparent; color: var(--color-text-secondary); border: var(--border-subtle); }
.btn-prev:hover { border-color: var(--color-text); color: var(--color-text); }
.btn-next,
.form-nav .btn-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 15px 38px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.2;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-milk);
  transition: all 0.32s var(--ease-lux);
}
.btn-next:hover,
.form-nav .btn-next:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(78, 90, 81, 0.32);
}
.btn-submit { background: var(--color-ink); color: var(--color-milk); padding: 14px 40px; }
.btn-submit:hover { background: var(--color-heading-alt); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(32, 34, 29, 0.25); }
.btn-next, .btn-submit { margin-left: auto; }
.project-form .btn-next[data-next],
.project-form .btn-prev[data-prev] { display: inline-flex; align-items: center; gap: 6px; }
.form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 18, 14, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: overlayIn 0.3s ease;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
.form-success {
  background: var(--color-bg-card);
  border: var(--border-subtle);
  border-radius: var(--card-radius);
  padding: 50px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 12px 44px rgba(16, 18, 14, 0.18);
  animation: successIn 0.4s var(--ease-lux);
}
@keyframes successIn {
  from { opacity: 0; transform: scale(0.94) translateY(18px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.form-success-icon { color: var(--color-primary); margin-bottom: 16px; }
.form-success h2 { font-size: 24px; font-weight: 600; color: var(--color-heading); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 24px; }
.btn-close-success {
  padding: 13px 34px;
  border-radius: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-close-success:hover { background: var(--color-primary-hover); }

/* --- Luxury form (prodotto) --- */
.luxury-form { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.luxury-form input, .luxury-form textarea {
  padding: 15px;
  border: var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.luxury-form input:focus, .luxury-form textarea:focus { border-color: var(--color-primary); outline: none; }
.luxury-form button {
  background: var(--color-ink);
  color: var(--color-milk);
  padding: 18px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.3s ease;
}
.luxury-form button:hover { background: var(--color-heading-alt); }

/* ============================================================
   COOKIE BANNER (stile Marchi: fondo caldo, bottoni salvia)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-bg);
  color: var(--color-ink);
  padding: 22px 30px;
  z-index: 9998;
  box-shadow: 0 -6px 34px rgba(16, 18, 14, 0.16);
  transform: translateY(110%);
  transition: transform 0.55s var(--ease-lux);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid var(--color-border-soft);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 260px; color: var(--color-text); }
.cookie-banner a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 12px 26px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
  line-height: 1.2;
}
.cookie-btn-accept { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.cookie-btn-accept:hover { background: var(--color-primary-hover); border-color: var(--color-primary-hover); transform: translateY(-1px); }
.cookie-btn-refuse { background: transparent; color: var(--color-text); border-color: rgba(70, 64, 52, 0.35); }
.cookie-btn-refuse:hover { border-color: var(--color-ink); background: var(--color-ink); color: var(--color-milk); }

/* ============================================================
   LAURA — Chatbot (integra e rifinita con la nuova palette)
   ============================================================ */
.whatsapp-fab,
.laura-launcher {
  position: fixed;
  right: clamp(16px, 2.5vw, 30px);
  bottom: calc(clamp(16px, 2.5vw, 30px) + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--color-milk);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary-hover));
  box-shadow: 0 12px 30px rgba(78, 90, 81, 0.4);
  transition: transform 0.3s var(--ease-lux), box-shadow 0.3s;
}
.laura-launcher { animation: laura-pulse 3.2s ease-in-out infinite; }
.laura-launcher:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(78, 90, 81, 0.5); }
.laura-launcher.active { animation: none; }
/* Con il pannello aperto il launcher non deve restare sotto: si nasconde. */
body.laura-open .laura-launcher {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}
/* Cookie banner visibile: il launcher sale sopra il banner (non copre i bottoni). */
body.cookie-banner-open .laura-launcher {
  bottom: calc(clamp(16px, 2.5vw, 30px) + var(--cookie-banner-h, 0px) + 10px + env(safe-area-inset-bottom, 0px));
}
.laura-launcher .wa-icon { width: 58%; height: 58%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-fab-label {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: var(--color-ink);
  color: var(--color-milk);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  pointer-events: none;
}
.laura-launcher:hover .whatsapp-fab-label { opacity: 1; visibility: visible; }
@keyframes laura-pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(78, 90, 81, 0.4), 0 0 0 0 rgba(98, 110, 100, 0.4); }
  50% { box-shadow: 0 12px 30px rgba(78, 90, 81, 0.4), 0 0 0 14px rgba(98, 110, 100, 0); }
}

.laura-panel {
  position: fixed;
  right: clamp(14px, 2vw, 30px);
  bottom: calc(clamp(18px, 3vw, 42px) + 76px + var(--laura-safe-bottom, 0px));
  z-index: 10000;
  width: min(390px, calc(100vw - 24px));
  max-height: min(640px, calc(100vh - 160px));
  max-height: min(640px, calc(100dvh - 160px));
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(16, 18, 14, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.97);
  transform-origin: bottom right;
  transition: all 0.38s var(--ease-lux);
  overflow: hidden;
}
.laura-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.laura-panel.laura-kb-open {
  top: var(--laura-vv-top, 0px);
  bottom: auto;
  height: var(--laura-vv-height, auto);
  max-height: var(--laura-vv-height, inherit);
  transform-origin: top right;
  transform: none;
}
.laura-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--color-primary-hover), var(--color-primary));
  color: var(--color-milk);
  flex-shrink: 0;
}
.laura-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 248, 243, 0.16);
  border: 1px solid rgba(250, 248, 243, 0.45);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  flex-shrink: 0;
}
.laura-head-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.laura-name { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.02em; line-height: 1.2; }
.laura-sub { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.05em; color: rgba(250, 248, 243, 0.85); margin-top: 2px; font-family: var(--font-body); }
.laura-dot { width: 7px; height: 7px; border-radius: 50%; background: #8FDD9C; box-shadow: 0 0 0 3px rgba(143, 221, 156, 0.25); }
.laura-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--color-milk);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.laura-close svg { width: 17px; height: 17px; }
.laura-close:hover { background: rgba(250, 248, 243, 0.16); transform: rotate(90deg); }
.laura-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px 8px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(98, 110, 100, 0.3) transparent;
}
.laura-msg { display: flex; }
.laura-user { justify-content: flex-end; }
.laura-bubble {
  max-width: 84%;
  padding: 10px 14px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft);
  border-radius: 4px 14px 14px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.68;
  color: var(--color-text);
  box-shadow: 0 1px 3px rgba(32, 34, 29, 0.05);
  animation: laura-in 0.28s ease;
}
.laura-user .laura-bubble {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-milk);
  border-radius: 14px 4px 14px 14px;
}
@keyframes laura-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.laura-bubble-typing { display: flex; align-items: center; gap: 5px; padding: 13px 16px; }
.laura-bubble-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary-light);
  animation: laura-bounce 1.2s ease-in-out infinite;
}
.laura-bubble-typing span:nth-child(2) { animation-delay: 0.15s; }
.laura-bubble-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes laura-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }
.laura-links { display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 2px 4px; }
.laura-link {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(98, 110, 100, 0.45);
  border-radius: 999px;
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s;
  background: var(--color-bg-card);
}
.laura-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.laura-prod {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 2px 10px rgba(32, 34, 29, 0.05);
  animation: laura-in 0.3s ease;
}
.laura-prod img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; background: var(--color-bg-section); }
.laura-prod-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.laura-prod-name { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--color-heading); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.laura-prod-meta { font-size: 11.5px; color: var(--color-text-secondary); margin: 3px 0 6px; letter-spacing: 0.02em; }
.laura-prod-link {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(98, 110, 100, 0.35);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.laura-prod-link:hover { color: var(--color-primary-hover); border-color: var(--color-primary-hover); }
.laura-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 10px 14px 2px; flex-shrink: 0; }
.laura-chip {
  padding: 7px 13px;
  border: 1px solid rgba(98, 110, 100, 0.4);
  border-radius: 999px;
  background: var(--color-bg-card);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s;
}
.laura-chip:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.laura-chip--quiz { border-color: var(--color-accent); background: rgba(156, 123, 79, 0.12); color: var(--color-accent-hover); }
.laura-chip--quiz:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.laura-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border-soft);
  flex-shrink: 0;
}
.laura-form input {
  flex: 1;
  border: none;
  outline: none;
  background: var(--color-bg-section);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 16px;
  color: var(--color-text);
  font-family: var(--font-body);
  min-width: 0;
}
.laura-form input:focus { background: var(--color-bg-section-2); }
.laura-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  flex-shrink: 0;
}
.laura-send svg { width: 17px; height: 17px; }
.laura-send:hover { background: var(--color-primary-hover); transform: scale(1.05); }
.laura-actions {
  display: flex;
  gap: 8px;
  padding: 8px 14px 4px;
  flex-shrink: 0;
}
.laura-action {
  flex: 1;
  text-align: center;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}
.laura-action:hover { border-color: var(--color-primary); color: var(--color-primary); }
.laura-foot {
  padding: 8px 14px;
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border-soft);
  font-size: 10.5px;
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.laura-foot a { color: var(--color-primary); font-weight: 700; text-decoration: underline; }

  @media (max-width: 640px) {
  .laura-panel {
    right: 8px;
    left: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-height: calc(100dvh - 72px);
    border-radius: var(--radius);
  }
  .laura-panel.laura-kb-open {
    max-height: calc(100dvh - 16px);
  }
  .laura-launcher,
  .whatsapp-fab { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .laura-launcher .whatsapp-fab-label {
    display: inline-flex;
    position: static;
    right: auto;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-left: 10px;
  }
  .laura-launcher { width: auto; min-width: 180px; padding: 0 14px; }
  .laura-launcher .wa-icon { width: 22px; height: 22px; }
}

/* ============================================================
   REVEAL ON SCROLL (IntersectionObserver, no librerie esterne)
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.js .reveal.revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-swipe-hint { animation: none; }
  .hero-home .hero-slide { transition: opacity 0.4s ease; }
  .hero-home .hero-slide.active img,
  .hero-home .hero-slide.active .hero-slide-video { animation: none; transform: none; }
}

/* ============================================================
   SEO LINKS / INTRO TEXT
   ============================================================ */
.seo-intro { margin-top: -70px; padding: 0 0 56px; position: relative; }
.seo-intro .container { max-width: 860px; }
.seo-intro-text { font-size: 17px; color: var(--color-text); line-height: 1.8; margin-bottom: 14px; }
.seo-intro-geo { font-size: 15px; color: var(--color-text-secondary); line-height: 1.7; }
.seo-intro-geo a, .seo-links-nav a { color: var(--color-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.seo-links { text-align: center; }
.seo-links h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.seo-links-lead { max-width: 720px; margin: 0 auto 22px; color: var(--color-text-secondary); line-height: 1.75; }
.seo-links-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; }
.seo-links-nav a { font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .subcategory-grid,
  .product-grid,
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid,
  .product-detail-grid,
  .home-intro .editorial-grid,
  .landing-servizi-grid { grid-template-columns: 1fr; }
  .home-intro .intro-copy { max-width: none; }
  .home-intro .media-acc { transform: none; }
  .azienda-story-grid { grid-template-columns: 1fr; }
  .azienda-process-steps { grid-template-columns: repeat(2, 1fr); }
  .home-intro .intro-stats { flex-wrap: wrap; }
  .category-showcase .showcase-head { grid-template-columns: 1fr; }
  .category-showcase .showcase-head .showcase-note { justify-self: start; text-align: left; }
  .landing-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .landing-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .footer-grid { padding-left: 20px; padding-right: 20px; }
  .header-inner { padding: 0 18px; }
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  .section-title { margin-bottom: 44px; }
  .hero, .hero-section { padding: clamp(72px, 12vw, 110px) 0 clamp(56px, 8vw, 84px); }
  .hero-home { min-height: 100svh; }
  .hero-home .hero-content { padding: 0 22px clamp(110px, 15vh, 150px); }
  .hero-home .hero-content h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-home .hero-subtitle { margin-bottom: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 380px; gap: 12px; }
  .hero-actions .hero-btn { width: 100%; }
  .hero-dots { bottom: 60px; }
  .hero-swipe-hint { display: block; bottom: 96px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .home-services .services-editorial { grid-template-columns: 1fr; }
  .landing-hero-actions { flex-direction: column; align-items: stretch; }
  .landing-hero-actions .btn-cta { width: 100%; }
}

@media (max-width: 640px) {
  .subcategory-grid,
  .product-grid,
  .offers-grid,
  .info-grid,
  .services-grid,
  .footer-grid,
  .azienda-process-steps,
  .showcase-grid { grid-template-columns: 1fr; }
  .product-grid { gap: 26px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .cookie-banner { padding: 18px 20px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .cookie-btn { flex: 1; }
  .landing-strip-grid { grid-template-columns: 1fr; }

  /* Gallerie a scorrimento orizzontale (swipe) su mobile */
  .product-grid,
  .offers-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
    padding: 4px 20px 22px;
    scrollbar-width: none;
  }
  .product-grid::-webkit-scrollbar,
  .offers-grid::-webkit-scrollbar { display: none; }
  .product-grid > .product-card,
  .offers-grid > .offer-card {
    flex: 0 0 78%;
    max-width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .product-card .card-body { padding: 22px 20px 24px; }
  .subcategory-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; margin: 0 -20px; padding: 4px 20px 22px; scrollbar-width: none; }
  .subcategory-grid::-webkit-scrollbar { display: none; }
  .subcategory-grid > .subcategory-card { flex: 0 0 74%; min-height: 190px; scroll-snap-align: start; }

  /* Input >= 16px: evita lo zoom automatico iOS al focus */
  .laura-form input { font-size: 16px; }
  .project-form input[type="text"],
  .project-form input[type="email"],
  .project-form input[type="tel"],
  .project-form input[type="file"],
  .project-form textarea,
  .project-form select { font-size: 16px; }

  /* Contatti: gli item testuali possono andare su due righe */
  .contact-item { white-space: normal; text-align: center; }
}

/* Schermi molto stretti: carrello solo-icona per non spingere fuori l'header */
@media (max-width: 360px) {
  .header-inner { gap: 10px; }
  .header-right { gap: 6px; }
  .header-actions .snipcart-checkout { padding: 10px 11px; }
  .cart-label { display: none; }
}
