@charset "UTF-8";
/* CSS Document */
/* Base */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  background-color: #FDFBF7
}
body {
  font-family: "Inter", Helvetica, sans-serif;
}
strong {
  font-weight: 600;
}
.wrapper {
  max-width: 1290px;
  margin-inline: auto;
  padding-inline: 15px;
  text-align: center;
}
.hero__text img {
  max-width: 682px;
  margin: 0 auto;
  width: 90%;
}
h1 {
  font-family: "Bodoni Moda", serif;
  letter-spacing: 10px;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  line-height: 78px;
  font-size: clamp(3rem, 7.5vw, 4.55rem);
  line-height: clamp(1.2, 1.2, 1.3);
}
p {
  margin: 0
}
.hero .wrapper p {
  color: #E5E7EB;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: normal;
  margin: 10px;
}
.container {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 24px;
}
.container-980 {
  max-width: 980px;
  margin-inline: auto;
  padding-inline: 15px;
}
.container-sm {
  max-width: 850px;
  margin-inline: auto;
}
.container-md {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 15px;
}
/* HEADER look & feel (come screen) */
.site-header {
  background: #FDFBF7;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .25s ease, background-color .25s ease;
  border-bottom: 1px solid #E5E5E5;
}
.site-header.is-scrolled {
  background: rgba(253, 251, 247, 0.95);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Logo immagine */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo {
  width: 340px;
  height: auto;
  display: block;
}
/* Blocco destro: menu + lingua allineati a destra */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px; /* spazio tra menu e select */
  margin-left: auto;
}
/* NAV desktop */
.nav-list {
  display: flex;
  align-items: center;
  gap: 26px; /* spazio tra voci come screen */
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-link {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1A1A1A;
  opacity: 1; /* niente effetto “sbiadito” */
  transition: color .2s ease;
}
.nav-link:hover {
  color: #8B7355;
}
.nav-link.is-active {
  color: #8B7355;
  font-weight: bold;
}
/* Select lingua (stile minimal a destra) */
.lang-switch {
  display: inline-flex;
  align-items: center;
}
.lang-switch select {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #1A1A1A;
  background: transparent;
  border: 0;
  padding: 8px 0 8px 6px;
  outline: none;
  cursor: pointer;
  appearance: none; /* look pulito */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* freccina tipo screen */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%231A1A1A' d='M5 6 0 1.2 1.2 0 5 3.6 8.8 0 10 1.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 16px; /* spazio per la freccia */
}
.collection-item__arrow img {
  width: 24px;
}
.lang-switch select:hover {
  color: #8B7355;
}
.lang-switch select:hover {
  /* se vuoi anche la freccia colorata in hover, dimmelo e te la faccio */
}
/* Responsive: su mobile nascondi menu e select, resta burger */
/* Burger */
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.burger {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  position: relative;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #111;
  transition: transform .25s ease, top .25s ease, opacity .25s ease;
}
.burger::before {
  top: -8px;
}
.burger::after {
  top: 8px;
}
/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 82vw);
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  transform: translateX(12px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  padding: 90px 24px 24px;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.mobile-link {
  text-decoration: none;
  color: #fff;
  opacity: .85;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
}
.mobile-link.is-active {
  opacity: 1;
}
.lang-mob {
  margin-top: 20px;
}
.lang-mob a {
  color: #99A1AF;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}
/* Layout demo */
.hero {
  min-height: 91vh;
  position: relative;
  overflow: hidden;
  color: #fff;
  margin-bottom: 2rem;
}
/* background slider */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
/* overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* layout contenuto */
.hero__content {
  position: relative;
  z-index: 2;
  min-height: 91vh;
  display: grid;
  grid-template-rows: 1fr auto;
}
/* titolo centrato verticalmente */
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* bottone in basso */
.btn-home-pos {
  align-self: end;
  padding-bottom: 40px;
}
.btn-home-pos {
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -119px;
}
/* CTA STYLE */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 19px;
  border: 1px solid rgba(255, 255, 255, .5);
  text-decoration: none;
  overflow: hidden;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  transition: color .4s ease;
}
/* freccia sottile */
.cta__arrow {
  width: 18px;
  height: 10px;
  position: relative;
}
.cta__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}
.cta__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
/* BACKGROUND ANIMATION */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #8B7355;
  transform: translateX(-100%);
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
  border: 1px solid #8B7355 !important;
}
/* testo sopra il background */
.cta__text, .cta__arrow {
  position: relative;
  z-index: 1;
}
/* HOVER */
.cta:hover::before {
  transform: translateX(0);
}
.cta:hover {
  color: #FFF;
}
/* Cards demo */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 48px 0 80px;
}
.card {
  border: 1px solid #E5E5E5;
  padding: 30px 15px;
}
.card p {
  font-weight: 200;
  color: #4A5565;
}
.card h3 {
  color: #1A1A1A;
  font-size: 24px;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
} /* FOOTER */
.site-footer {
  background: #111;
  padding: 62px 0 68px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
/* LEFT */
.footer-left {
  flex: 0 0 auto;
}
.footer-brand {
  display: inline-flex;
  text-decoration: none;
}
.footer-brand img {
  width: 235px;
  height: auto;
  display: block;
}
/* RIGHT */
.footer-right {
  margin-left: auto;
  display: grid;
  justify-items: end;
  text-align: right;
  gap: 26px;
}
/* indirizzo */
.footer-address {
  color: #99A1AF;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}
.footer-address p {
  margin: 0;
}
.footer-address a {
  color: inherit;
  text-decoration: none;
}
.footer-address a:hover {
  color: rgba(255, 255, 255, .85);
}
/* social */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social__link {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-social__link img {
  width: 22px;
  height: 22px;
  display: block;
  opacity: .95;
  transition: opacity .25s ease, transform .25s ease;
}
.footer-social__link:hover img {
  opacity: 1;
  transform: translateY(-1px);
}
/* links policy */
.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6A7282;
  text-decoration: none;
  transition: color .25s ease;
}
.footer-links a:hover {
  color: rgba(255, 255, 255, .78);
}
/* copyright */
.footer-copy {
  color: #6A7282;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.footer-copy small {
  font-size: inherit;
}

.name-contatti {
  font-size: 16px;
  margin-bottom: 19px;
  color: #000;
  font-weight: 500;
}
.policy-block {
  text-align: left;
}
.policy-block .about-hero__title {font-size: clamp(30px, 5vw, 40px); text-transform: none}
.policy-block h2 {
  color: #1e2939;
  font-size: 20px;
  letter-spacing: 1.5px;
    font-family: "Bodoni Moda", serif;
  font-weight: 500;
  margin: 30px 0 15px 0;
}
.policy-block p {
  color: #1E2939;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}
.policy-block p a {color: #1e2939;}
/* responsive */
@media (max-width: 980px) {
  .site-footer {
    padding: 48px 0 54px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 34px;
  }
  .footer-brand img {
    width: 220px;
  }
  .footer-right {
    width: 100%;
    justify-items: start;
    text-align: left;
    gap: 20px;
  }
  .footer-links {
    justify-items: start;
  }
}
/* Language switch – stile luxury con separatore verticale */
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
  margin-left: 10px;
}
/* linea verticale */
.lang-switch--divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: #D6D3CC; /* grigio chiaro come screen */
}
/* select */
.lang-switch select {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #99A1AF; /* grigio soft come screen */
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  padding: 6px 18px 6px 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239B9B9B' d='M5 6 0 1.2 1.2 0 5 3.6 8.8 0 10 1.2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
/* hover elegante */
.lang-switch select:hover {
  color: #8B7355;
}
/* anche la freccia cambia colore in hover */
.lang-switch select:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238B7355' d='M5 6 0 1.2 1.2 0 5 3.6 8.8 0 10 1.2z'/%3E%3C/svg%3E");
}
/* PRELOADER CON LOGO */
.page-loader {
  position: fixed;
  inset: 0;
  background: #111;
  z-index: 2000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
.page-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.page-loader__inner {
  display: grid;
  place-items: center;
}
/* logo animation */
.page-loader__logo {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: scale(.96);
  animation: loaderFadeIn 1.1s ease forwards;
  filter: invert(1);
}
/* assicura che il toggle stia sopra l'overlay */
.nav-toggle {
  position: relative;
  z-index: 1205;
}
/* Hamburger base (3 linee) */
.burger {
  display: block;
  width: 26px;
  height: 2px;
  background: #111;
  position: relative;
  transition: background .25s ease;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #111;
  transition: transform .25s ease, top .25s ease, opacity .2s ease, background .25s ease;
}
.burger::before {
  top: -8px;
}
.burger::after {
  top: 8px;
}
/* Stato OPEN: diventa una X bianca */
.nav-toggle.is-open .burger {
  background: transparent; /* la linea centrale sparisce */
}
.nav-toggle.is-open .burger::before, .nav-toggle.is-open .burger::after {
  top: 0;
  background: #fff; /* X bianca */
}
.nav-toggle.is-open .burger::before {
  transform: rotate(45deg);
}
.nav-toggle.is-open .burger::after {
  transform: rotate(-45deg);
}
/* Accessibilità */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* HOME – sezione split scura */
.home-split-dark__content {
  text-align: left;
}
.home-split-dark {
  background: #111;
  color: #fff;
  padding: 90px 0 60px 0;
}
.home-split-dark__inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 60px;
}
.home-split-dark__eyebrow {
  margin: 0 0 10px;
  font-family: "Bodoni Moda", serif;
  font-size: 20px;
  letter-spacing: 2.2px;
  color: #8B7355;
}
.home-split-dark__title {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 4.5px;
  font-family: "Bodoni Moda", serif;
}
.home-split-dark__text {
  margin: 0 0 40px;
  max-width: 46ch;
  color: #99A1AF;
  font-size: 18px;
  line-height: 1.7;
  /* qui poi metti Inter se vuoi */
  font-size: 16px;
  font-weight: 300;
}
.home-split-dark__link {
  display: inline-block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding-bottom: 6px;
  transition: color .25s ease, border-color .25s ease;
}
.home-split-dark__link:hover {
  color: #8B7355;
  border-bottom-color: rgba(139, 115, 85, .9);
}
.home-split-dark__media {
  display: flex;
  justify-content: flex-end;
}
.home-split-dark__media img {
  width: min(600px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
/* Pagina progetto */
.project-hero {
  padding: 70px 0 40px;
}
.project-hero__inner {
  text-align: center;
}
.project-hero__title {
  margin: 0;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 400;
  /* effetto “ghost” come screen */
  color: #1A1A1A;
  letter-spacing: 6px;
}
.project-hero__subtitle {
  margin: 15px 0 0;
  font-size: 24px;
  letter-spacing: 1.2px;
  font-family: "Bodoni Moda", serif;
}
.project-text {
  padding: 10px 0 40px;
}
.project-text p {
  margin: 0 0 27px;
  line-height: 1.6;
  color: #364153;
  font-size: 18px;
  font-weight: 300;
}
.project-image {
  padding: 0 0 20px;
}
.project-image img {
  width: 100%;
  height: auto;
  display: block;
}
.project-caption {
  padding: 18px 0 60px;
}
.project-caption__inner {
  text-align: center;
}
.project-dots {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 12px;
}
.project-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .25);
}
.project-dots .dot.is-active {
  background: rgba(255, 255, 255, .85);
}
.project-caption__text {
  margin: 0;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: .7;
}
/* blocchi finali */
.project-blocks {
  padding: 5rem 0px 90px;
}
.project-blocks__inner {
  display: grid;
  gap: 80px;
}
.project-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.project-block--reverse {
  grid-template-columns: 1fr 1.05fr;
}
/* media */
.project-block__media img {
  width: 100%;
  height: auto;
  display: block;
}
.project-block__media-caption {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.1px;
  text-align: center;
  font-style: italic;
  color: #99A1AF;
  font-weight: 300;
}
/* contenuto */
.project-block__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 4.6vw, 30px);
  line-height: 1.05;
  font-weight: 400;
  opacity: ; /* “ghost” come screen */
  font-family: "Bodoni Moda", serif;
  letter-spacing: 2px;
}
.project-block__text {
  margin: 0;
  line-height: 1.6;
  max-width: 52ch;
  color: #364153;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 300;
}
/* blocchi finali */
.project-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
/* default: immagine sx, testo dx */
.project-block__media {
  order: 1;
}
.project-block__content {
  order: 2;
}
/* GALLERY BASE riutilizzabile */
.project-gallery {
  position: relative;
}
.project-gallery__viewport {
  position: relative;
  overflow: hidden;
}
.project-gallery__track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.project-gallery__slide {
  flex: 0 0 100%;
  margin: 0;
}
.project-gallery__slide img {
  width: 100%;
  display: block;
}
/* reverse: testo sx, immagine dx (solo desktop) */
@media (min-width: 981px) {
  .project-block--reverse .project-block__content {
    order: 1;
  }
  .project-block--reverse .project-block__media {
    order: 2;
  }
}
/* ✅ mobile: SEMPRE testo prima, immagine dopo */
@media (max-width: 980px) {
  .project-block {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .project-block__content {
    order: 1;
  }
  .project-block__media {
    order: 2;
  }
}
.project-gallery {
  padding: 0 0 0rem;
}
.project-gallery__viewport {
  overflow: hidden;
}
.project-gallery__track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.project-gallery__slide {
  flex: 0 0 100%;
  margin: 0;
}
.project-gallery__slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* dots */
.project-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}
.project-gallery__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #D1D5DC;
  cursor: pointer;
  padding: 0;
}
.project-gallery__dots .dot.is-active {
  background: rgba(26, 26, 26, .65);
}
/* caption */
.project-gallery__caption {
  margin: 32px 0 0;
  text-align: center;
  font-size: 12px;
  color: #99A1AF;
  font-weight: 300;
  font-style: italic;
}
/* CHI SIAMO */
.about-hero {
  padding: 70px 0 6rem;
}
.about-hero__inner {
  text-align: center;
}
.about-hero__title {
  margin: 0 0 2rem;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.about-hero__intro {
  margin: 0 auto;
  max-width: 65ch;
  line-height: 1.5;
  color: #4A5565;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.4px;
}
/* blocchi persona */
.about-blocks {
  padding: 0 0 90px;
}
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start; /* ✅ testo allineato in alto rispetto all’immagine */
}
.about-block__media img {
  width: 100%;
  height: auto;
  display: block;
}
.about-block__name {
  margin: 0 0 15px;
  font-size: clamp(25px, 3vw, 30px);
  line-height: 1.1;
  font-weight: 400;
  /* font serif tuo */
  font-family: "Bodoni Moda", serif;
  letter-spacing: 2px;
}
.about-block__role {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: lowercase;
  color: #8B7355;
  font-family: "Bodoni Moda", serif;
}
.about-block__text {
  margin: 0;
  line-height: 26px;
  color: #364153;
  font-weight: 300;
  letter-spacing: -0.4px;
  font-size: 16px;
}
.align-left {
  text-align: left
}
/* alternanza desktop */
@media (min-width: 981px) {
  .about-block--reverse .about-block__media {
    order: 2;
  }
  .about-block--reverse .about-block__content {
    order: 1;
  }
}
/* ✅ mobile: sempre prima immagine poi testo */
@media (max-width: 980px) {
  .about-block {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .about-block__media {
    order: 1;
  }
  .about-block__content {
    order: 2;
  }
}
/* card finale: l’incontro */
.about-meet {
  padding: 10px 0 90px;
}
.about-meet__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0;
  align-items: center;
}
.about-meet__media img {
  width: 100%;
  height: auto;
  display: block;
}
.about-meet__title {
  margin: 0 0 14px;
  font-size: clamp(24px, 4.6vw, 30px);
  line-height: 1.05;
  font-weight: 400;
  opacity: ;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 2px;
}
.about-meet__text {
  margin: 0;
  line-height: 1.6;
  max-width: 52ch;
  color: #364153;
  font-size: 16px;
  letter-spacing: -0.5px;
  font-weight: 300;
  padding-right: 4rem;
}
/* COLLEZIONE */
.collection-hero {
  padding: 70px 0 40px;
}
.collection-hero__inner {
  text-align: center;
}
.collection-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.collection-hero__subtitle {
  margin: 0;
  font-size: 18px;
  letter-spacing: 1.8px;
  text-transform: lowercase;
  color: #6A7282;
  font-family: "Bodoni Moda", serif;
}
/* lista */
.collection-list {
  padding: 0px 0 40px;
}
.collection-item {
  margin: 0 0 64px;
}
.collection-item__image {
  display: block;
  text-decoration: none;
}
.collection-item__image img {
  width: 100%;
  height: auto;
  display: block;
}
.collection-item__meta {
  padding-top: 18px;
  padding-bottom: 18px;
}
.collection-item__head {
  gap: 18px;

}
.collection-item__left {
  text-align: center;
}
.collection-item__num {
  font-size: 14px;
  letter-spacing: 0.4px;
  color: #8B7355;
  font-weight: 300;
  text-align: center;
}
.collection-item__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  letter-spacing: .2px;
  text-transform: lowercase;
  font-family: "Bodoni Moda", serif;
  color: #1A1A1A;
  padding-bottom: 10px;
  text-align: center;
}
.collection-item__title a {
  color: #1A1A1A;
  text-decoration: none;
}
.collection-item__title a:hover {
  text-decoration: underline;
}
.collection-item__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  text-decoration: none;
  color: rgba(0, 0, 0, .35);
  transition: color .2s ease, transform .2s ease;
}
.collection-item__arrow:hover {
  color: #8B7355;
  transform: translateX(2px);
}
/* descrizione */
.collection-item__desc {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.4;
  /*! max-width: 68ch; */
  color: #6A7282;
  letter-spacing: -0.4px;
  font-weight: 300;
  text-align: center;
}
/* PAGINA PRODOTTO */
.product-hero {
  padding: 34px 0 70px;
}
.product-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26, 26, 26, .45);
  transition: color .25s ease;
}
.product-back:hover {
  color: #8B7355;
}
.product-hero__head {
  text-align: center;
  margin-bottom: 28px;
}
.product-title {
  margin: 0 0 1rem;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: 6px;
  font-style: normal;
}
.product-subtitle {
  margin: 10px 0 35px 0;
  font-size: 12px;
  letter-spacing: .3px;
  color: #99A1AF;
}
.product-hero__image {
  margin-bottom: 28px;
}
.product-hero__image img {
  width: 100%;
  display: block;
}
.product-hero__text {
  max-width: 610px;
  margin: 0 auto;
  text-align: center;
}
.product-hero__text p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: #6A7282;
  letter-spacing: -0.4px;
  font-weight: 300;
}
.product-hero__material {
  margin-top: 14px !important;
  font-size: 11px !important;
  color: rgba(26, 26, 26, .62) !important;
  text-transform: lowercase;
  text-align: center;
}
/* fascia nera dettagli */
.product-details-band {
  background: #0d0d0d;
  padding: 62px 0 44px;
}
.product-section-title {
  margin-bottom: 35px;
  font-family: "Bodoni Moda", serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1.5px;
  text-align: center
}
.product-section-title--light {
  color: #fff;
  margin-bottom: 45px;
  font-family: "Bodoni Moda", serif;
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 1.5px
}
/* gallery prodotto */
.project-gallery--product {
  position: relative;
}
.project-gallery--product .project-gallery__viewport {
  position: relative;
  overflow: hidden;
}
.project-gallery--product .project-gallery__track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.project-gallery--product .project-gallery__slide {
  flex: 0 0 100%;
  margin: 0;
}
.project-gallery--product .project-gallery__slide img {
  width: 100%;
  display: block;
}
.project-gallery--product .project-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}
.project-gallery--product .project-gallery__dots .dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  padding: 0;
  cursor: pointer;
}
.project-gallery--product .project-gallery__dots .dot.is-active {
  background: rgba(255, 255, 255, .92);
}
.project-gallery--product .project-gallery__caption {
  min-height: 1em;
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
/* frecce gallery */
.project-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, .82);
  transition: color .25s ease, opacity .25s ease;
}
.project-gallery__arrow:hover {
  color: #fff;
}
.project-gallery__arrow--prev {
  left: 10px;
}
.project-gallery__arrow--next {
  right: 10px;
}
.arrow-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
.arrow-icon::before, .arrow-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform-origin: left center;
}
/* freccia sinistra */
.project-gallery__arrow--prev .arrow-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.project-gallery__arrow--prev .arrow-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
/* freccia destra */
/* frecce gallery */
.project-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, .82);
  transition: color .25s ease, opacity .25s ease;
}
.project-gallery__arrow:hover {
  color: #fff;
}
.project-gallery__arrow--prev {
  left: 10px;
}
.project-gallery__arrow--next {
  right: 10px;
}
/* icona */
.arrow-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
/* linee freccia */
.arrow-icon::before, .arrow-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  transform-origin: left center;
}
/* freccia sinistra */
.arrow-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.arrow-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
/* ruota per creare la freccia destra */
.project-gallery__arrow--next .arrow-icon {
  transform: rotate(180deg);
}
/* specifiche */
.product-specs {
  padding: 50px 0 46px;
}
.product-specs__actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 44px;
}
.product-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(26, 26, 26, .35);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1A1A1A;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.product-pill:hover {
  background: #1A1A1A;
  color: #fff;
  border-color: #1A1A1A;
}
.product-specs__image img {
  width: 100%;
  display: block;
}
/* finiture */
.product-finishes {
  padding: 12px 0 20px;
}
.product-finishes__grid {
  display: flex;
  gap: 88px;
  flex-wrap: wrap;
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 6rem;
}
.finish-item {
  text-align: center;
}
.finish-item img {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 999px;
  display: block;
  margin: 0 auto 20px;
}
.finish-item h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
/* correlati */
.product-related {
  padding: 28px 0 92px;
}
.product-related .container-sm {
  border-top: 1px solid #E5E7EB;
  padding-top: 52px;
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.related-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.product-hero__text {
  max-width: 610px;
  margin: 0 auto;
  text-align: center;
}
.product-hero__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(26, 26, 26, .48);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-hero__text.is-open .product-hero__excerpt {
  display: block;
  overflow: visible;
}
.product-hero__toggle {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #1A1A1A;
  transition: color .25s ease;
  font-style: italic;
}
.product-hero__toggle:hover {
  color: #8B7355;
}
/* RELATED / COLLEZIONE */
.product-related {
  padding: 28px 0 92px;
}
.product-related .container-sm {
  border-top: 1px solid rgba(26, 26, 26, .08);
  padding-top: 52px;
}
.product-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.related-card a {
  display: block;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
.related-card__media {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  background: #f2f2f2;
}
.related-card__media img {
  width: 100%;
  display: block;
  transition: transform .45s ease, filter .35s ease;
}
.related-card.related-card--private p {
  color: #99A1AF;
}
/* badge / CTA centrale */
.related-card__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  min-width: 180px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity .3s ease, background-color .3s ease, border-color .3s ease;
}
/* overlay generale */
.related-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background .35s ease;
  z-index: 1;
}
/* -------- STATO NORMALE -------- */
/* immagine pulita, badge visibile solo in hover */
.related-card:not(.related-card--private):hover .related-card__media::after {
  background: rgba(0, 0, 0, .18);
}
.related-card:not(.related-card--private):hover .related-card__badge {
  opacity: 1;
}
.related-card:not(.related-card--private):hover .related-card__media img {
  transform: scale(1.015);
}
.related-card--private .related-card__media::after {
  background: rgba(0, 0, 0, .22);
}
.related-card--private .related-card__badge {
  opacity: 1;
}
.related-card--private:hover .related-card__media::after {
  background: rgba(0, 0, 0, .28);
}
.related-card--private:hover .related-card__media img {
  transform: scale(1.015);
}
/* testi sotto */
.related-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #1A1A1A;
  font-family: "Bodoni Moda", serif;
}
.related-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8B7355;
}
/* EVENTI E STAMPA */
.press-page {
  padding-bottom: 90px;
}
.press-hero {
  padding: 70px 0 42px;
}
.press-hero__inner {
  text-align: center;
}
.press-hero__title {
  margin: 0 0 2rem;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: 6px;
}
/* PRESS OFFICE */
.press-office {
  padding-bottom: 74px;
}
.press-office__card {
  background: #F9FAFB;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid #F3F4F6;
}
.press-office__eyebrow {
  margin: 0 0 18px;
  font-size: 20px;
  letter-spacing: 1.2px;
  color: #99A1AF;
  font-family: "Bodoni Moda", serif;
}
.press-office__title {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Bodoni Moda", serif;
}
.press-office__info p {
  margin: 0 0 8px;
  color: #4A5565;
  line-height: 1.2;
  font-weight: 300;
}
.press-office__info a {
  color: #8B7355;
  text-decoration: none;
  transition: color .25s ease;
  font-weight: 300;
  display: inline-block;
  margin-top: 10PX;
}
.press-office__info a:hover {
  color: #1A1A1A;
}
/* NEWS */
.press-news {
  padding-top: 8px;
}
.press-news__title {
  margin: 0 0 44px;
  text-align: center;
  font-size: clamp(26px, 3vw, 30px);
  line-height: 1.05;
  font-weight: 400;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 2px;
}
.press-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.press-card__image {
  display: block;
  margin-bottom: 22px;
  overflow: hidden;
}
.press-card__image img {
  width: 100%;
  display: block;
  transition: transform .45s ease;
}
.press-card:hover .press-card__image img {
  transform: scale(1.02);
}
.press-card__date {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #99A1AF;
}
.press-card__title {
  margin: 0 0 14px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.08;
  font-weight: 400;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 2px;
}
.press-card__text {
  margin: 0 0 24px;
  line-height: 1.6;
  color: #4A5565;
  font-size: 14px;
}
.press-card__link {
  margin-top: auto;
  display: inline-block;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(26, 26, 26, .45);
  text-decoration: none;
  transition: color .25s ease;
}
.press-card__link:hover {
  color: #8B7355;
}
.press-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* NEWS ARTICLE */

.news-article{
  padding: 40px 0 100px;
}

/* BACK LINK */

.news-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: #99A1AF;
  text-decoration: none;

  margin-bottom: 40px;

  transition: color .25s ease;
}

.news-back:hover{
  color: #8B7355;
}

/* freccia */
.news-back{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  color: #6A7282;
  text-decoration: none;

  margin-bottom: 40px;

  transition: color .25s ease;
}

.news-back:hover{
  color:#8B7355;
}


/* freccia */

.news-back__arrow{
  position: relative;
  width: 18px;
  height: 10px;
}

/* linea */

.news-back__arrow::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:10px;
  height:1.5px;
  background:currentColor;
  transform:translateY(-50%);
}

/* punta */

.news-back__arrow::after{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:6px;
  height:6px;
  border-left:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor;
  transform:translateY(-50%) rotate(45deg);
}
/* DATA */

.news-date{
  text-align:center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;

  color:#99A1AF;

  margin-bottom: 16px;
}

/* TITLE */

.news-title{
  text-align:center;
  margin:0 0 40px;

  font-size: clamp(48px,5vw,48px);
  font-weight:400;

  font-style: normal;
  letter-spacing: 1.8px;
}

/* IMAGE */

.news-image{
  margin-bottom:40px;
}

.news-image img{
  width:100%;
  display:block;
}

/* CONTENT */

.news-content{
}

.news-content p{
  line-height:1.6;
  color:#1E2939;
  margin-bottom:24px;
  font-weight: 400;
}

/* lead */

.news-lead{
  font-size:20px;
  color:#1E2939!important;
  margin-bottom:32px !important;
  line-height: 1.6 !important;
}

/* divider */

.news-divider{
  border:none;
  height:1px;
  background:rgba(26,26,26,.15);
  margin:60px 0 28px;
}

/* press office */

.news-press{
  text-align:center;

  font-family: Helvetica, Arial, sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;

  color:#99A1AF;
}
.news-press{
  text-align: center;
}

/* link */

.news-press__link{
  display: inline-block;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: #FFF;
  text-decoration: none;

  padding:15px 30px;

  transition: color .25s ease, border-color .25s ease;
  background-color: #000000;
    border: 1px solid #000;
}

.news-press__link:hover{
  color:#000;
  background-color:#fff;

}
/* CONTATTI */

.contacts-page{
  padding-bottom: 90px;
}

.contacts-hero{
  padding: 70px 0 40px;
}

.contacts-hero__inner{
  text-align: center;
}

.contacts-hero__title{
  margin: 0;
  font-size: clamp(40px, 5vw, 50px);
  line-height: 1.05;
  font-weight: 400;
  /* effetto “ghost” come screen */
  color: #1A1A1A;
  letter-spacing: 6px;
}

/* layout */
.contacts-content{
  padding-top: 8px;
}

.contacts-grid{
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 460px);
  gap: 72px;
  align-items: start;
}

/* colonna sinistra */
.contacts-info{
  display: grid;
  gap: 35px;
}

.contacts-block__title{
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 500;
  font-family: "Bodoni Moda", serif;
  color: #1A1A1A;
  letter-spacing: 1.5px;
}

/* righe contatto */
.contacts-item{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  align-items: start;
  margin-bottom: 18px;
}

.contacts-item:last-child{
  margin-bottom: 0;
}

.contacts-item__icon{
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.contacts-item__icon img{
  max-width: 18px;
  max-height: 18px;
  display: block;
}

.contacts-item p{
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  color: #4A5565;
  padding-top: 4px;
}

.contacts-item a{
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

/* newsletter */
.contacts-newsletter__intro{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.8;
  color: #4A5565;
  font-weight: 300;
}

.contacts-newsletter__row{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 17px;
  border-bottom: 1px solid rgba(26,26,26,.18);
  padding-bottom: 5px;
  margin-bottom: 12px;
}

.contacts-newsletter__row input{
  width: 100%;
  background: transparent;
  border: 0;
  outline: none;
  color: #1A1A1A;
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
}

.contacts-newsletter__row input::placeholder{
  color: rgba(26,26,26,.55);
}


.contacts-newsletter__row button{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;

  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #a1a1a1;
  transition: color .25s ease;
}

.contacts-newsletter__row button:hover{
  color: #8B7355;
}

.contacts-newsletter__privacy{
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #6A7282;
}

.contacts-newsletter__privacy input{
  margin-top: 3px;
}

.contacts-newsletter__privacy a{
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-newsletter__privacy a:hover{
  color: #8B7355;
}

/* social */
.contacts-social{
  display: flex;
  align-items: center;
  gap: 18px;
}

.contacts-social a{
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contacts-social img{
  width: 22px;
  height: 22px;
  display: block;
  opacity: .95;
  transition: opacity .25s ease, transform .25s ease;
}

.contacts-social a:hover img{
  opacity: 1;
  transform: translateY(-1px);
}

/* immagine destra */
.contacts-media img{
  width: 100%;
  display: block;
}
.product-hero__text p strong {
  font-weight: bold;
}
.icon-mail {
  max-width: 35px !important;
  max-height: 16px !important;
}
.contacts-item a:hover{
  text-decoration: underline;
}
/* responsive */
@media (max-width: 980px){
  .contacts-page{
    padding-bottom: 64px;
  }

  .contacts-hero{
    padding: 26px 0 28px;
  }

  .contacts-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contacts-info{
    gap: 42px;
  }

  .contacts-block__title{
    margin-bottom: 26px;
  }

  .contacts-media{
    order: -1;
  }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .press-page {
    padding-bottom: 64px;
  }
  .press-hero {
    padding: 42px 0 30px;
  }
  .press-office {
    padding-bottom: 54px;
  }
  .press-office__card {
    padding: 52px 22px;
  }
  .press-news__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
	 .product-related__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .related-card__badge {
    min-width: 170px;
    padding: 11px 16px;
  }
	 .product-hero {
    padding: 24px 0 56px;
  }
  .product-back {
    margin-bottom: 28px;
  }
  .product-details-band {
    padding: 48px 0 56px;
  }
  .product-specs {
    padding: 56px 0 34px;
  }
  .product-finishes__grid {
    gap: 28px;
  }
  .product-related__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
	 .collection-item {
    margin-bottom: 52px;
  }
  .collection-item__meta {
    padding-top: 14px;
    padding-bottom: 14px;
  }
	 .about-meet__card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }
  /* ✅ mobile: immagine poi testo */
  .about-meet__media {
    order: 1;
  }
  .about-meet__content {
    order: 2;
  }
	 .nav-list {
    display: none;
  }
  .lang-switch {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .logo {
    width: 240px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .site-footer {
    padding: 64px 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: 34px;
  }
  .footer-right {
    width: 100%;
    text-align: center;
    justify-items: center;
  }
  .footer-address {
    text-align: center;
  }
  .footer-left {
    display: block;
    gap: 22px;
    align-items: flex-start;
    min-width: 100%;
    margin-top: 0px;
  }
  .home-split-dark {
    padding: 64px 0;
  }
  .home-split-dark__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 20px;
  }
  .home-split-dark__media {
    justify-content: flex-start;
  }
  .home-split-dark__media img {
    width: 100%;
    max-width: 560px;
  }
  .project-hero {
    padding: 56px 0 22px;
  }
  .project-block {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  /* importantissimo: forziamo ordine */
  .project-block__content {
    order: 1;
  }
  .project-block__media {
    order: 2;
  }
  .project-blocks__inner {
    gap: 54px;
  }
  .container-sm {
    padding-inline: 15px;
  }
}
@keyframes loaderFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .project-text p {
    margin: 0 0 17px;
    font-size: 16px;
  }
  .project-text {
    padding: 10px 0 20px;
  }
  .about-hero__intro {
    line-height: 1.5;
    font-size: 17px;
  }
  .about-hero {
    padding: 56px 0 3rem;
  }
  .about-blocks {
    padding: 0 0 50px;
  }
  .about-meet__text {
    padding-right: 0;
    padding-bottom: 10px;
  }
  .collection-hero {
    padding: 56px 0 2rem;
  }
}