:root {
  --cream: #f7f3ec;
  --cream-deep: #eee8de;
  --white: #ffffff;
  --ink: #172a2e;
  --ink-soft: #647074;
  --teal: #459caf;
  --teal-dark: #246f80;
  --teal-deep: #153e47;
  --gold: #c8a45f;
  --gold-dark: #9e7b3f;
  --line: rgba(23, 42, 46, 0.1);
  --header-height: 72px;
  --font-display: "Times New Roman", Times, serif;
  --font-body: "Times New Roman", Times, serif;
  --font-description: 20px;
  --ease: cubic-bezier(0.22, 0.72, 0.22, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
h4,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
}

h1,
h2 {
  text-transform: uppercase;
}

h1 em,
h2 em,
h3 em {
  font-weight: 500;
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--teal-deep);
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--teal-deep);
  font-size: 0.75rem;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.shell {
  width: min(90%, 1320px);
  margin-inline: auto;
}

.shell-wide {
  width: min(92%, 1760px);
  margin-inline: auto;
}

.cream-section {
  background: var(--cream);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.8);
}

.heading-line {
  display: block;
  width: 54px;
  height: 1px;
  margin: 17px 0 20px;
  background: var(--teal);
}

.heading-line--light {
  background: rgba(255, 255, 255, 0.72);
}

.heading-ornament {
  display: flex;
  width: 118px;
  height: 12px;
  margin: 17px 0 20px;
  align-items: center;
}

.heading-ornament::before,
.heading-ornament::after {
  height: 1px;
  background: rgba(36, 111, 128, 0.72);
  content: "";
  flex: 1;
}

.heading-ornament i {
  width: 9px;
  height: 9px;
  margin-inline: 7px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
  flex: 0 0 auto;
}

.section-heading--center {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .heading-line {
  margin-inline: auto;
}

.section-heading--center .heading-ornament {
  margin-inline: auto;
}

.section-heading--center > p:last-child {
  max-width: 520px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: var(--font-description);
  line-height: 1.7;
}

.button {
  --button-cut: clamp(14px, 1.2vw, 22px);
  --button-fill: transparent;
  --button-stroke: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 0;
  border-radius: 0;
  background-color: var(--button-stroke);
  clip-path: polygon(
    var(--button-cut) 0,
    100% 0,
    100% calc(100% - var(--button-cut)),
    calc(100% - var(--button-cut)) 100%,
    0 100%,
    0 var(--button-cut)
  );
  cursor: pointer;
  isolation: isolate;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 240ms ease, background-color 240ms ease, transform 240ms var(--ease);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 1px;
  background-color: var(--button-fill);
  clip-path: polygon(
    calc(var(--button-cut) - 1px) 0,
    100% 0,
    100% calc(100% - var(--button-cut) + 1px),
    calc(100% - var(--button-cut) + 1px) 100%,
    0 100%,
    0 calc(var(--button-cut) - 1px)
  );
  content: "";
  pointer-events: none;
  transition: background-color 240ms ease;
}

.button > span {
  margin-left: 15px;
  font-size: 1rem;
  font-weight: 300;
  transition: transform 240ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover > span {
  transform: translate(3px, -2px);
}

.button--gold {
  --button-fill: rgba(255, 255, 255, 0.96);
  --button-stroke: rgba(200, 164, 95, 0.72);
  color: var(--teal-deep);
  box-shadow: 0 10px 30px rgba(16, 55, 63, 0.08);
}

.button--gold:hover {
  --button-fill: #fbf7ef;
  --button-stroke: var(--gold);
  box-shadow: 0 13px 34px rgba(16, 55, 63, 0.11);
}

.button--gold > span {
  color: var(--gold-dark);
}

.button--deep {
  --button-fill: var(--teal-deep);
  --button-stroke: var(--teal-deep);
  color: var(--white);
}

.button--deep:hover {
  --button-fill: var(--teal-dark);
  --button-stroke: var(--teal-dark);
}

.button--outline-light {
  --button-fill: rgba(15, 53, 61, 0.22);
  --button-stroke: rgba(225, 185, 121, 0.7);
  color: var(--white);
}

.button--outline-light:hover {
  --button-fill: rgba(255, 255, 255, 0.96);
  --button-stroke: var(--gold);
  color: var(--teal-deep);
}

.button--large {
  min-height: 60px;
  padding-inline: 36px;
}

/* Navbar */
.site-header {
  position: fixed;
  z-index: 1100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(31, 77, 85, 0.12);
  transition: box-shadow 230ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(12, 39, 44, 0.09);
}

/* Ritorno all'inizio */
.back-to-top {
  position: fixed;
  z-index: 1200;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  width: 36px;
  height: 40px;
  place-items: center;
  color: #4d91a0;
  background: rgba(214, 195, 157, 0.94);
  border: 1px solid rgba(69, 156, 175, 0.38);
  box-shadow: 0 10px 24px rgba(23, 42, 45, 0.18);
  clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms var(--ease), background-color 220ms ease;
  visibility: hidden;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.back-to-top:hover {
  background: #cdb583;
  transform: translateY(-3px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.nav-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  height: 100%;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
  height: 100%;
}

.desktop-nav--right {
  justify-content: flex-end;
}

.nav-link,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  padding: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.105em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link::after,
.nav-dropdown__trigger::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 230ms var(--ease);
}

.nav-link:hover::after,
.nav-dropdown__trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

.nav-dropdown__trigger > span {
  margin-left: 8px;
  color: var(--teal-dark);
  font-size: 0.95rem;
  transition: transform 220ms ease;
}

.nav-dropdown__trigger[aria-expanded="true"] > span {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown__panel {
  position: absolute;
  top: calc(100% - 1px);
  left: -24px;
  width: 300px;
  padding: 15px 24px 19px;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.995);
  border-top: 1px solid var(--teal);
  box-shadow: 0 24px 50px rgba(21, 43, 46, 0.12);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 190ms ease, transform 190ms ease, visibility 190ms;
}

.nav-dropdown__panel--right {
  right: -24px;
  left: auto;
}

.nav-dropdown__trigger[aria-expanded="true"] + .nav-dropdown__panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown__panel a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(32, 72, 79, 0.1);
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.nav-dropdown__panel a:last-child {
  border-bottom: 0;
}

.nav-dropdown__panel a:hover {
  padding-left: 5px;
  color: var(--teal-dark);
}

.brand {
  display: inline-flex;
  grid-column: 2;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  padding-inline: 22px;
  flex-direction: column;
  line-height: 1;
}

.brand__logo {
  width: clamp(178px, 15vw, 220px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.menu-toggle,
.mobile-catalog,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 66%) minmax(320px, 34%);
  min-height: max(720px, 100svh);
  padding-top: var(--header-height);
  overflow: hidden;
  color: #111111;
  background: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(20px, 2.2vw, 32px);
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 236, 0) 0%,
    rgba(247, 243, 236, 0.68) 58%,
    var(--cream) 100%
  );
  content: "";
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: 66%;
  overflow: hidden;
  background: var(--white);
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.045);
  transition: opacity 850ms ease, transform 3s ease;
}

.hero-slide--unoaerre {
  padding: clamp(28px, 4.5vw, 72px);
  object-fit: contain;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__veil {
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: 66%;
  background: transparent;
}

.hero__copy {
  --hero-copy-pad-right: clamp(38px, 4.5vw, 88px);
  --hero-copy-pad-left: clamp(48px, 5.2vw, 102px);
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1;
  min-width: 0;
  padding: clamp(58px, 7vh, 84px) var(--hero-copy-pad-right) 46px var(--hero-copy-pad-left);
  flex-direction: column;
  text-shadow: none;
}

.hero__lead {
  display: flex;
  width: 100%;
  max-width: 900px;
  align-items: center;
  margin: auto;
  flex-direction: column;
  text-align: center;
}

.hero h1 {
  max-width: 1040px;
  margin: 0 auto;
  color: #111111;
  font-size: calc(clamp(2.8rem, 3.6vw, 4.6rem) - 11px);
  line-height: 0.92;
  text-shadow: 0 0 2px rgba(255, 255, 255, 1), 0 0 7px rgba(255, 255, 255, 0.94), 0 0 15px rgba(255, 255, 255, 0.72);
}

.hero h1 > span {
  white-space: nowrap;
}

.hero h1 em {
  color: var(--gold-dark);
}

@media (min-width: 781px) {
  .hero h1 {
    position: relative;
    z-index: 0;
    isolation: isolate;
  }

  .hero h1::before {
    position: absolute;
    z-index: -1;
    inset: -14px -28px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.34) 48%, rgba(255, 255, 255, 0) 78%);
    content: "";
    filter: blur(13px);
    pointer-events: none;
  }
}

.hero__subheadline {
  max-width: 510px;
  margin: clamp(20px, 3vh, 30px) auto 0;
  color: rgba(17, 17, 17, 0.82);
  font-size: clamp(1.08rem, 1.45vw, 1.4rem);
  line-height: 1.45;
  text-shadow: 0 0 4px rgba(255, 255, 255, 1), 0 0 12px rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: clamp(24px, 4vh, 38px);
  gap: 12px;
}

.hero__actions .button {
  width: 250px;
  min-height: 58px;
  margin-top: 0;
}

@media (min-width: 901px) {
  .hero {
    height: 100svh;
    min-height: 0;
  }

  .hero__lead {
    width: calc(100% + var(--hero-copy-pad-left) + var(--hero-copy-pad-right));
    max-width: none;
    margin-left: calc(-1 * var(--hero-copy-pad-left));
    padding-inline: clamp(32px, 4vw, 72px);
  }

  .hero::after {
    height: 22px;
  }

}

.hero__aside {
  position: relative;
  z-index: 3;
  grid-column: 2;
  width: 100%;
  min-height: calc(720px - var(--header-height));
  height: calc(100svh - var(--header-height));
  margin: 0;
  overflow: hidden;
  background: #1a2628;
}

.hero__aside::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 17, 19, 0.64), transparent 38%);
  content: "";
}

.hero__aside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__aside figcaption {
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: min(320px, calc(100% - 60px));
  align-items: flex-end;
  color: rgba(255, 255, 255, 0.88);
  flex-direction: column;
}

.hero__aside figcaption span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__aside figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.08;
  text-align: right;
}

@media (min-width: 901px) {
  .hero__aside {
    width: auto;
    min-height: 0;
    height: calc(100svh - var(--header-height) - 40px);
    margin: 0 14px;
    align-self: center;
    border: 1px solid rgba(200, 164, 95, 0.9);
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  }

  .hero__aside img {
    object-position: center 18%;
  }
}

/* Fedi e fidanzamento */
.duo-section {
  --catalog-gold-highlight: #a86f00;
  position: relative;
  padding: 58px 0 54px;
}

.duo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.duo-grid::after {
  position: absolute;
  top: 2%;
  bottom: 2%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 164, 95, 0.46) 16%,
    rgba(200, 164, 95, 0.46) 84%,
    transparent
  );
  content: "";
}

.duo-panel {
  min-width: 0;
  padding-inline: clamp(30px, 4.5vw, 86px);
}

@media (min-width: 781px) {
  .duo-grid {
    width: 100%;
    grid-template-rows: auto auto auto;
    align-items: stretch;
  }

  .duo-panel {
    display: grid;
    padding-inline: 0;
    grid-row: 1 / span 3;
    grid-template-rows: subgrid;
    align-content: start;
    row-gap: 0;
  }

  .duo-panel:first-child {
    grid-column: 1;
    grid-template-columns: minmax(0, 40fr) minmax(0, 532px) minmax(0, 60fr);
  }

  .duo-panel:last-child {
    grid-column: 2;
    grid-template-columns: minmax(0, 60fr) minmax(0, 532px) minmax(0, 40fr);
  }

  .duo-panel > * {
    width: 100%;
    grid-column: 2;
  }
}

.duo-panel .section-heading h2 {
  margin-bottom: 0;
  font-size: calc(clamp(2.45rem, 3vw, 3.75rem) - 11px);
}

.duo-panel:last-child .section-heading h2 {
  white-space: nowrap;
}

.duo-panel .section-heading h2 em {
  color: var(--teal-dark);
}

.finance-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 532px;
  margin: 13px auto 16px;
}

.finance-note {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 10px 20px;
  color: var(--ink);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 164, 95, 0.06) 12%,
    rgba(200, 164, 95, 0.14) 32%,
    rgba(200, 164, 95, 0.14) 68%,
    rgba(200, 164, 95, 0.06) 88%,
    transparent 100%
  );
  border: 0;
  box-shadow: none;
  gap: 10px;
}

.finance-note::before,
.finance-note::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(158, 123, 63, 0.24) 24%,
    rgba(158, 123, 63, 0.32) 50%,
    rgba(158, 123, 63, 0.24) 76%,
    transparent
  );
  content: "";
  pointer-events: none;
}

.finance-note::before {
  top: 0;
}

.finance-note::after {
  bottom: 0;
}

.finance-note__symbol {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.finance-note__symbol--euro {
  width: 28px;
  height: 28px;
  color: #806027;
  border: 1px solid rgba(128, 96, 39, 0.58);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1;
}

.finance-note__text {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(0.91rem, 1.08vw, 1.02rem);
  font-weight: 600;
  letter-spacing: 0.012em;
  line-height: 1.3;
}

.duo-panel--fedi .finance-note__text,
.duo-panel--fidanzamento .finance-note__text {
  font-weight: 400;
}

.duo-photos {
  --duo-cut: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  align-items: start;
  justify-content: center;
  gap: 28px;
}

@media (min-width: 781px) {
  .duo-photos > .feature-photo,
  .duo-photos .feature-photo__image {
    width: 260px;
  }

  .duo-photos .feature-photo__image {
    height: 260px;
    aspect-ratio: auto;
  }
}

.duo-photos .feature-photo:first-child .feature-photo__image {
  clip-path: polygon(0 0, calc(100% - var(--duo-cut)) 0, 100% var(--duo-cut), 100% 100%, var(--duo-cut) 100%, 0 calc(100% - var(--duo-cut)));
}

.duo-photos .feature-photo:last-child .feature-photo__image {
  clip-path: polygon(var(--duo-cut) 0, 100% 0, 100% calc(100% - var(--duo-cut)), calc(100% - var(--duo-cut)) 100%, 0 100%, 0 var(--duo-cut));
}

.feature-photo {
  display: grid;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
  gap: 8px;
}

.feature-photo:focus-visible {
  outline: 0;
  box-shadow: none;
}

.feature-photo__image {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #ebe6dc;
  box-shadow: none;
  aspect-ratio: 1;
}

.feature-photo:focus-visible .feature-photo__image {
  outline: 2px solid var(--gold-dark);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(158, 123, 63, 0.18);
}

.feature-photo__image::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 75%;
  background: linear-gradient(0deg, rgba(69, 156, 175, 0.23), rgba(69, 156, 175, 0) 48%);
  content: "";
  pointer-events: none;
}

.feature-photo__brand-badge {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 11px;
  display: flex;
  width: clamp(58px, 4.2vw, 72px);
  min-height: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

.feature-photo__image-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
}

.feature-photo__carousel {
  touch-action: pan-y;
  user-select: none;
}

@media (hover: hover) {
  .feature-photo__carousel {
    cursor: grab;
  }

  .feature-photo__carousel:active {
    cursor: grabbing;
  }
}

.feature-photo__image-link:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 2px var(--gold-dark), inset 0 0 0 5px rgba(255, 255, 255, 0.72);
}

.feature-photo__visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.feature-photo__slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: var(--feature-track-width, 300%);
  height: 100%;
  transform: translate3d(var(--feature-slide-offset, 0%), 0, 0);
  transition: transform 760ms var(--ease);
  will-change: transform;
}

.feature-photo__slide {
  flex: 0 0 var(--feature-slide-width, 33.333333%);
  width: var(--feature-slide-width, 33.333333%);
  object-fit: contain;
  background: #fff;
}

.feature-photo__pagination {
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.feature-photo__pagination i {
  display: block;
  width: 5px;
  height: 5px;
  background: rgba(24, 30, 31, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(24, 30, 31, 0.16);
  transition: width 260ms ease, background-color 260ms ease, border-radius 260ms ease;
}

.feature-photo__pagination i.is-active {
  width: 17px;
  background: var(--gold-dark);
  border-radius: 999px;
}

.feature-photo__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  width: 26px;
  height: 34px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0.72;
  transform: translateY(-50%);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, opacity 220ms ease;
}

.feature-photo__arrow span {
  margin-top: -2px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.feature-photo__arrow--previous {
  left: 8px;
}

.feature-photo__arrow--next {
  right: 8px;
}

.feature-photo:hover .feature-photo__arrow,
.feature-photo__arrow:hover,
.feature-photo__arrow:focus-visible {
  color: var(--catalog-gold-highlight);
  background: transparent;
  opacity: 1;
}

.feature-photo__arrow:focus-visible {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}

.feature-photo__brand {
  display: block;
  width: 100%;
  height: auto;
  max-height: 18px;
  object-fit: contain;
}

.feature-photo__brand--polello {
  width: 92%;
  max-height: 21px;
}

.feature-photo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 0.84vw, 0.94rem);
  font-variant-caps: small-caps;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.2;
  min-height: 1.45em;
  gap: 7px;
  transition: color 240ms ease;
}

.feature-photo__cta i {
  display: inline-flex;
  width: 1.45em;
  height: 1.45em;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  border: 1px solid rgba(158, 123, 63, 0.42);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 0.72em;
  font-style: normal;
  transition: transform 180ms ease;
}

.feature-photo__note {
  width: 92%;
  max-width: 38ch;
  margin: -3px auto 0;
  color: var(--ink-soft);
  font-size: clamp(0.8rem, 0.76vw, 0.86rem);
  font-style: italic;
  line-height: 1.35;
}

.feature-photo__note--polello {
  width: max-content;
  max-width: none;
  white-space: nowrap;
}

.duo-panel--fedi .feature-photo__note,
.duo-panel--fidanzamento .feature-photo__note {
  display: block;
  min-height: 2.7em;
  margin: 0 auto 8px;
}

.feature-photo:hover .feature-photo__visual,
.feature-photo:focus-visible .feature-photo__visual {
  transform: scale(1.035);
}

@media (prefers-reduced-motion: reduce) {
  .feature-photo__slides,
  .feature-photo__pagination i,
  .feature-photo__arrow {
    transition: none;
  }
}

@media (hover: none) {
  .feature-photo__arrow {
    opacity: 0.72;
  }
}

.feature-photo:hover .feature-photo__cta,
.feature-photo:focus-visible .feature-photo__cta {
  color: var(--catalog-gold-highlight);
}

.feature-photo:hover .feature-photo__cta i,
.feature-photo:focus-visible .feature-photo__cta i {
  transform: translate(2px, -2px);
}

/* Storia */
.story-section {
  padding: clamp(84px, 7vw, 112px) 0 clamp(70px, 6vw, 94px);
  overflow: hidden;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 110px);
}

.story-gallery {
  position: relative;
  aspect-ratio: 16 / 8.7;
  max-height: 420px;
  overflow: hidden;
  background: #dfd8ce;
}

.story-slides,
.story-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 700ms ease, transform 3.8s ease;
}

.story-slide--counter {
  object-position: center 42%;
}

.story-slide--contain {
  object-fit: contain;
  background: #171717;
}

.story-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-play {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--white);
  background: rgba(21, 62, 71, 0.42);
  cursor: pointer;
  backdrop-filter: blur(4px);
  place-items: center;
}

.story-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.story-play[aria-pressed="true"] span {
  width: 12px;
  height: 16px;
  margin-left: 0;
  border: 0;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.story-copy {
  align-self: center;
}

.story-since {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.story-wordmark {
  display: flex;
  align-items: center;
}

.story-wordmark h2 {
  margin: 0;
  font-size: calc(clamp(3.7rem, 5.2vw, 6.3rem) - 18px);
  line-height: 0.86;
  letter-spacing: -0.025em;
}

.story-wordmark h2 span {
  display: block;
}

.story-wordmark > span {
  width: 1px;
  height: 66px;
  margin-left: 24px;
  background: var(--gold);
}

.story-location {
  margin: 13px 0 23px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.story-review {
  display: grid;
  place-items: center;
  margin-top: 40px;
}

.story-review__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 650px);
  min-height: 42px;
  padding: 7px 14px 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid rgba(0, 0, 0, 0.62);
  gap: 14px;
  line-height: 1;
  transition: color 180ms ease, padding 180ms ease;
}

.story-review__link::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms var(--ease);
}

.story-review__link:hover,
.story-review__link:focus-visible {
  color: var(--gold-dark);
}

.story-review__link:hover::after,
.story-review__link:focus-visible::after {
  transform: scaleX(1);
}

.story-review__link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.story-review__rating {
  font-size: 1.02rem;
  font-weight: 600;
}

.story-review__stars {
  color: var(--gold-dark);
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.story-review__count {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.story-review__action {
  margin-left: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-review__action i {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  transition: transform 180ms ease;
}

.story-review__link:hover .story-review__action i,
.story-review__link:focus-visible .story-review__action i {
  transform: translate(2px, -2px);
}

/* Compro oro */
.gold-banner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-deep);
}

.gold-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 29%;
}

.gold-banner__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 62, 71, 0.96) 0%, rgba(36, 111, 128, 0.88) 42%, rgba(36, 111, 128, 0.54) 72%, rgba(21, 62, 71, 0.22) 100%);
}

.gold-banner__content {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 320px;
  padding: 38px 0 28px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  grid-template-areas:
    "title cta"
    "line line"
    "description description";
  align-items: center;
  align-content: center;
  column-gap: clamp(36px, 4vw, 60px);
  row-gap: 18px;
}

.gold-banner h2 {
  min-width: 0;
  margin: 0;
  font-size: calc(clamp(4rem, 5.6vw, 6.75rem) - 18px);
  line-height: 0.93;
  text-wrap: balance;
  grid-area: title;
}

.gold-banner h2 em {
  color: #e3ba78;
}

.gold-banner__content > .button {
  width: 100%;
  min-height: 74px;
  grid-area: cta;
}

.gold-banner__line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(239, 215, 170, 0.38) 0%,
    rgba(255, 232, 190, 0.78) 50%,
    rgba(239, 215, 170, 0.38) 100%
  );
  box-shadow: 0 0 7px rgba(255, 220, 158, 0.24);
  grid-area: line;
}

.gold-banner__description {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-description);
  text-align: center;
  grid-area: description;
}

/* Catalogo */
.catalog-section {
  --catalog-gold-highlight: #a86f00;
  padding: clamp(66px, 6vw, 92px) 0;
  background: var(--cream);
}

.catalog-intro {
  max-width: 820px;
  margin-bottom: clamp(36px, 3.8vw, 52px);
  text-align: center;
}

.catalog-intro .eyebrow {
  margin-bottom: 9px;
  font-size: 0.62rem;
}

.catalog-intro h2 {
  margin: 0;
  font-size: calc(clamp(2.25rem, 3.4vw, 3.75rem) - 7px);
  line-height: 0.98;
}

.catalog-intro h2 em {
  color: var(--teal-dark);
}

.catalog-intro__description {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
  text-wrap: balance;
}

.catalog-intro .heading-ornament {
  margin-inline: auto;
  margin-block: 12px 14px;
}

.catalog-list {
  display: grid;
  width: min(83%, 1440px);
  gap: clamp(34px, 3.4vw, 52px);
}

.catalog-exhibitor {
  display: grid;
  min-height: 342px;
  overflow: visible;
  background: transparent;
  grid-template-columns: minmax(230px, 23%) minmax(0, 1fr);
  column-gap: clamp(18px, 2vw, 34px);
  scroll-margin-top: calc(var(--header-height) + 22px);
}

.catalog-exhibitor__cover {
  position: relative;
  display: block;
  min-height: 342px;
  overflow: hidden;
  background: #edf1f0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(22, 48, 54, 0.055);
  color: inherit;
  text-decoration: none;
}

.catalog-exhibitor__cover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

[data-catalog-brand="ottaviani"] .catalog-exhibitor__cover > img {
  object-position: 68% center;
}

.catalog-exhibitor__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 17, 19, 0.16), transparent 42%);
}

.catalog-exhibitor__label {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  min-height: 72px;
  padding: 14px clamp(14px, 1.5vw, 22px);
  background: rgba(5, 17, 19, 0.68);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  align-content: center;
  justify-items: center;
  color: var(--white);
  gap: 5px 16px;
}

.catalog-exhibitor:nth-child(odd) .catalog-exhibitor__label {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
}

.catalog-exhibitor:nth-child(even) .catalog-exhibitor__label {
  color: var(--white);
  background: rgba(5, 17, 19, 0.68);
}

.catalog-exhibitor__label small {
  grid-column: 1 / -1;
  color: var(--teal-dark);
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
}

.catalog-exhibitor__label h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.28vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.catalog-exhibitor__link-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1;
  opacity: 0.78;
  transition: color 260ms ease, background 260ms ease, border-color 260ms ease, transform 360ms var(--ease);
}

.catalog-exhibitor__cover:hover > img,
.catalog-exhibitor__cover:focus-visible > img {
  transform: scale(1.035);
}

.catalog-exhibitor__cover:hover .catalog-exhibitor__link-arrow,
.catalog-exhibitor__cover:focus-visible .catalog-exhibitor__link-arrow {
  border-color: var(--catalog-gold-highlight);
  background: var(--catalog-gold-highlight);
  color: var(--white);
  transform: translate(2px, -2px);
}

.catalog-exhibitor__cover:focus-visible {
  outline: 2px solid var(--catalog-gold-highlight);
  outline-offset: 4px;
}

.catalog-rail {
  --catalog-columns: 3;
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 342px;
  padding: 0;
  background: transparent;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: 17px;
}

.catalog-control {
  position: absolute;
  z-index: 4;
  top: calc(50% - 26px);
  display: grid;
  width: 44px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--catalog-gold-highlight);
  cursor: pointer;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  opacity: 1;
  transform: translateY(-50%);
  transition: color 220ms ease, opacity 220ms ease, transform 260ms var(--ease);
}

.catalog-control--previous {
  left: -34px;
}

.catalog-control--next {
  right: -34px;
}

.catalog-control:hover:not(:disabled),
.catalog-control:focus-visible:not(:disabled) {
  color: var(--gold-dark);
}

.catalog-control--previous:hover:not(:disabled),
.catalog-control--previous:focus-visible:not(:disabled) {
  transform: translate(-3px, -50%);
}

.catalog-control--next:hover:not(:disabled),
.catalog-control--next:focus-visible:not(:disabled) {
  transform: translate(3px, -50%);
}

.catalog-control:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 1px;
}

.catalog-control:disabled {
  cursor: default;
  opacity: 0.32;
}

.catalog-rail.is-static .catalog-control {
  pointer-events: none;
  opacity: 0;
}

.catalog-viewport {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  grid-column: 1;
  grid-row: 1;
  scroll-behavior: auto;
  scroll-padding-inline: 2px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
}

.catalog-viewport::-webkit-scrollbar {
  display: none;
}

.catalog-track {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.product-card {
  display: flex;
  min-width: 0;
  padding: 0 0 10px;
  flex: 0 0 calc((100% - 20px) / 3);
  flex-direction: column;
  list-style: none;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  text-align: center;
}

.product-card:last-child {
  border-right: 0;
}

.product-card figure {
  --product-cut: 14px;
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(300px, 19vw, 345px);
  margin: 0 0 11px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  box-shadow: 0 7px 22px rgba(22, 48, 54, 0.035);
  clip-path: polygon(
    0 0,
    calc(100% - var(--product-cut)) 0,
    100% var(--product-cut),
    100% 100%,
    var(--product-cut) 100%,
    0 calc(100% - var(--product-cut))
  );
  place-items: center;
}

.product-card figure::before {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 75%;
  background: linear-gradient(0deg, rgba(69, 156, 175, 0.17), rgba(69, 156, 175, 0) 48%);
  content: "";
  pointer-events: none;
}

.product-card figure::after {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 13px;
  width: clamp(64px, 4.5vw, 78px);
  height: 29px;
  background: url("images/logo-di-nucci-trasparente-nero.png") center / contain no-repeat;
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.product-card figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(4px, 0.45vw, 8px);
  transform: scale(1.08);
  transition: transform 600ms var(--ease), filter 400ms ease;
}

.product-card:hover figure img {
  filter: saturate(1.055);
  transform: scale(1.15);
}

.product-card small {
  display: none;
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-card h3,
.product-card h4 {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 0.84vw, 0.94rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.2;
}

.product-card h4 {
  font-variant-caps: small-caps;
  text-transform: none;
  transition: color 240ms ease;
}

.product-card:hover h4,
.product-card h4:hover {
  color: var(--catalog-gold-highlight);
}

.catalog-progress {
  position: relative;
  width: min(132px, 42%);
  height: 3px;
  overflow: hidden;
  background: rgba(22, 48, 54, 0.16);
  border-radius: 999px;
  grid-column: 1;
  grid-row: 2;
}

.catalog-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--teal-dark);
  border-radius: inherit;
  transition: width 80ms linear;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-viewport {
    cursor: grab;
  }

  .catalog-viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
  }
}


/* Recensioni da Google e Matrimonio.com */
.reviews-section {
  position: relative;
  padding: clamp(46px, 4vw, 62px) 0 clamp(48px, 4vw, 66px);
  overflow: hidden;
  background: var(--white);
  border-top: 1px solid rgba(23, 42, 45, 0.08);
}

.reviews-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(20px, 2.2vw, 32px);
  background: linear-gradient(
    to bottom,
    var(--cream) 0%,
    rgba(247, 243, 236, 0.68) 42%,
    rgba(247, 243, 236, 0) 100%
  );
  content: "";
  pointer-events: none;
}

.reviews-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 22px;
}

.reviews-bar__heading {
  min-width: 0;
}

.reviews-bar h2 {
  margin: 0;
  font-size: calc(clamp(2.35rem, 3.5vw, 3.9rem) - 15px);
  line-height: 0.94;
  text-wrap: balance;
}

.reviews-bar h2 em {
  color: var(--teal);
}

.reviews-bar__heading .heading-ornament {
  margin-bottom: 0;
}

.reviews-bar__actions {
  display: flex;
  width: min(100%, 248px);
  flex: 0 0 auto;
  flex-direction: column;
  gap: 7px;
}

.reviews-cta {
  --reviews-cta-cut: 10px;
  --reviews-cta-fill: var(--white);
  --reviews-cta-stroke: rgba(23, 42, 45, 0.28);
  position: relative;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 13px;
  color: var(--teal-dark);
  background-color: var(--reviews-cta-stroke);
  border: 0;
  clip-path: polygon(var(--reviews-cta-cut) 0, 100% 0, 100% calc(100% - var(--reviews-cta-cut)), calc(100% - var(--reviews-cta-cut)) 100%, 0 100%, 0 var(--reviews-cta-cut));
  font-size: calc(0.66rem + 2px);
  font-weight: 700;
  isolation: isolate;
  letter-spacing: 0.09em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.reviews-cta > span {
  margin-left: 12px;
  font-size: 0.84rem;
  line-height: 1;
}

.reviews-cta::before {
  position: absolute;
  z-index: -1;
  inset: 1px;
  background-color: var(--reviews-cta-fill);
  clip-path: polygon(calc(var(--reviews-cta-cut) - 1px) 0, 100% 0, 100% calc(100% - var(--reviews-cta-cut) + 1px), calc(100% - var(--reviews-cta-cut) + 1px) 100%, 0 100%, 0 calc(var(--reviews-cta-cut) - 1px));
  content: "";
  transition: background-color 180ms ease;
}

.reviews-cta--google {
  --reviews-cta-fill: var(--teal-dark);
  --reviews-cta-stroke: var(--teal-dark);
  color: var(--white);
}

.reviews-cta:hover,
.reviews-cta:focus-visible {
  --reviews-cta-fill: var(--gold-dark);
  --reviews-cta-stroke: var(--gold-dark);
  color: var(--white);
  background-color: var(--gold-dark);
  transform: translateY(-1px);
}

.google-reviews {
  position: relative;
  height: 168px;
  overflow-x: hidden;
  overflow-y: hidden;
  touch-action: pan-y;
}

.google-reviews__track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: dinucci-review-scroll var(--review-duration, 78s) linear infinite;
  will-change: transform;
}

.google-reviews.is-paused .google-reviews__track {
  animation-play-state: paused;
}

@keyframes dinucci-review-scroll {
  to {
    transform: translateX(-50%);
  }
}

.google-reviews:focus-visible {
  outline: 1px solid var(--teal);
  outline-offset: 4px;
}

.google-review-card {
  position: relative;
  display: flex;
  width: clamp(290px, 27vw, 410px);
  height: 100%;
  padding: 13px 24px 12px;
  overflow: hidden;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(23, 42, 45, 0.14);
  box-shadow: none;
  flex: 0 0 clamp(290px, 27vw, 410px);
  flex-direction: column;
}

.google-review-card::before {
  content: none;
}

.google-review-card--matrimonio {
  background: transparent;
  border-color: rgba(23, 42, 45, 0.14);
  box-shadow: none;
}

.google-review-card--matrimonio::before {
  content: none;
}

.review-source-mark {
  display: inline-grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.review-source-mark--google {
  color: #356f9f;
  background: var(--white);
  border: 1px solid rgba(53, 111, 159, 0.18);
  font-family: Arial, sans-serif;
}

.review-source-mark--matrimonio {
  color: var(--white);
  background: var(--teal-dark);
  border: 1px solid rgba(200, 164, 95, 0.68);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
}

.google-review-card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.google-review-card__head > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.google-review-card__head strong {
  overflow: hidden;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-card__head small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.6rem;
  letter-spacing: 0.025em;
}

.google-review-card__head i {
  color: var(--gold-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: normal;
}

.google-review-card__title {
  margin: 8px 0 0;
  overflow: hidden;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.google-review-card > p {
  display: -webkit-box;
  margin: 3px 0 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: calc(var(--font-description) - 0.04rem);
  font-style: italic;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-more {
  align-self: flex-start;
  margin-top: 4px;
  padding: 0;
  color: var(--teal-dark);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.google-review-card footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
  border-top: 0;
  gap: 16px;
}

.google-review-card footer span {
  color: var(--ink-soft);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.google-review-card footer a {
  color: var(--teal-dark);
  font-size: 0.95rem;
  line-height: 1;
}

.review-reader {
  position: absolute;
  z-index: 50;
  top: var(--review-reader-top, 0);
  left: var(--review-reader-left, 0);
  display: flex;
  width: var(--review-reader-width, 320px);
  max-width: calc(100vw - 24px);
  max-height: min(380px, calc(100vh - 24px));
  min-width: 0;
  padding: 18px 46px 18px 20px;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 42, 45, 0.18);
  box-shadow: 0 18px 36px rgba(23, 42, 45, 0.14);
  flex-direction: column;
  gap: 12px;
  transform-origin: top center;
  animation: review-dropdown-open 220ms var(--ease) both;
}

@keyframes review-dropdown-open {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.review-reader[hidden] {
  display: none;
}

.review-reader__identity {
  min-width: 0;
  align-self: stretch;
}

.review-reader__close {
  position: absolute;
  top: 9px;
  right: 12px;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(23, 42, 45, 0.24);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.review-reader__source {
  color: var(--gold-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-reader h3 {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--teal-dark);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2vw, 1.52rem);
  line-height: 1.08;
  text-overflow: ellipsis;
}

.review-reader__meta {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-reader > p {
  align-self: stretch;
  min-height: 0;
  margin: 0;
  padding: 2px 8px 2px 0;
  overflow-y: auto;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.45;
  scrollbar-color: rgba(23, 42, 45, 0.32) transparent;
  scrollbar-width: thin;
  white-space: pre-line;
}

.google-reviews.has-open-review .google-reviews__track {
  pointer-events: none;
}

/* Contatti */
.contact-section {
  position: relative;
  display: flex;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-deep);
  align-items: center;
}

.contact-backgrounds,
.contact-bg,
.contact-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-bg {
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1100ms ease, transform 5.8s ease;
}

.contact-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(18, 72, 83, 0.9) 0%, rgba(29, 100, 114, 0.76) 54%, rgba(15, 57, 66, 0.6) 100%);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) 1px minmax(440px, 1fr);
  align-items: center;
  padding: 88px 0;
  gap: clamp(30px, 3.5vw, 62px);
}

.contact-copy h2 {
  margin: 0;
  font-size: calc(clamp(3.8rem, 5.2vw, 6.2rem) - 18px);
  line-height: 0.86;
}

.contact-copy h2 span {
  display: block;
  white-space: nowrap;
}

.contact-copy h2 em {
  color: var(--gold);
}

.contact-intro {
  max-width: 570px;
  margin: 34px 0 25px;
  color: rgba(255, 255, 255, 0.83);
  font-size: var(--font-description);
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  width: min(100%, 330px);
  gap: 10px;
}

.contact-call,
.contact-whatsapp {
  width: calc((100% - 10px) / 2);
  min-height: 58px;
  padding-inline: 10px;
  font-size: clamp(0.64rem, 0.75vw, 0.72rem);
}

.contact-divider {
  width: 1px;
  height: 340px;
  background: var(--gold);
}

.map-wrap {
  position: relative;
  height: 360px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.75) contrast(0.95);
}

.map-wrap__click-target {
  position: absolute;
  z-index: 1;
  inset: 3px;
}

.map-wrap__click-target:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -5px;
}

.map-directions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: fit-content;
  margin: 13px 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 10px;
}

.map-directions span {
  color: var(--gold);
  font-size: 0.8rem;
  transition: transform 180ms ease;
}

.map-directions:hover span,
.map-directions:focus-visible span {
  transform: translate(3px, -3px);
}

.contact-slides-indicator {
  position: absolute;
  z-index: 2;
  bottom: 19px;
  left: 50%;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.contact-slides-indicator span {
  width: 23px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.contact-slides-indicator span.is-active {
  background: var(--gold);
}

/* Footer */
.site-footer {
  --footer-text-size: clamp(0.875rem, 0.8vw, 0.95rem);
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid rgba(23, 42, 45, 0.09);
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(125px, 0.72fr));
  padding: 58px 0 50px;
  gap: clamp(24px, 3.3vw, 64px);
}

.brand--footer {
  align-items: flex-start;
  min-width: 0;
  padding: 0;
}

.brand--footer .brand__logo {
  width: min(100%, 240px);
  max-height: none;
}

.footer-identity p {
  max-width: 290px;
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: var(--font-description);
  line-height: 1.7;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: calc(var(--footer-text-size) - 5px);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column address {
  color: var(--ink-soft);
  font-size: var(--footer-text-size);
  line-height: 1.55;
}

.footer-column a {
  color: var(--ink);
  font-size: clamp(1.05rem, 1vw, 1.15rem);
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--teal);
  transform: translateX(3px);
}

.footer-contacts address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  gap: 8px;
  font-size: clamp(1.05rem, 1vw, 1.15rem);
  line-height: 1.45;
}

.footer-address-copy {
  display: flex;
  flex-direction: column;
}

.footer-location-link {
  display: flex;
  align-items: flex-start;
  color: var(--ink-soft);
  gap: 8px;
}

.footer-contacts address strong {
  color: var(--ink);
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-location-link:hover strong,
.footer-location-link:focus-visible strong {
  color: var(--teal);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-link--phone-whatsapp svg + svg {
  margin-left: -3px;
}

.footer-location-link svg,
.footer-contact-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-location-link svg {
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: var(--footer-text-size);
  letter-spacing: 0.04em;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.footer-legal__links,
.footer-legal__rights {
  display: flex;
  align-items: center;
}

.footer-legal__links {
  gap: clamp(18px, 2vw, 30px);
}

.footer-legal__rights {
  gap: 4px;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-legal .footer-photo-credit {
  font-size: 2px;
  line-height: 1;
  opacity: 0.28;
  letter-spacing: 0;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--catalog-gold-highlight, var(--gold-dark));
}

/* Entrate ripetibili */
.has-js .reveal,
.has-js .reveal-photo {
  transition: opacity 700ms ease, transform 850ms var(--ease);
}

.has-js .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.has-js .reveal-photo:not(.is-visible) {
  opacity: 0;
  transform: translateX(-58px) scale(0.965);
}

.has-js .reveal-photo--right:not(.is-visible) {
  transform: translateX(58px) scale(0.965);
}

.has-js .reveal-photo--rise:not(.is-visible) {
  transform: translateY(84px) scale(0.955);
}

.has-js .duo-section .reveal-photo {
  transition: opacity 760ms ease, transform 950ms var(--ease);
}

.has-js .duo-section .feature-photo.is-visible:nth-child(2) {
  transition-delay: 90ms;
}

.has-js .reveal.is-visible,
.has-js .reveal-photo.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

.has-js .fade-section {
  opacity: 1;
  transition: opacity 650ms ease;
}

.has-js .fade-section.section-visible {
  opacity: 1;
}

/* Tablet */
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 22px;
  }

  .nav-link,
  .nav-dropdown__trigger {
  font-size: var(--footer-text-size);
  }

  .brand {
    min-width: 190px;
  }

  .hero__copy {
    --hero-copy-pad-right: 34px;
    --hero-copy-pad-left: 52px;
    padding-right: 34px;
    padding-left: 52px;
  }

  .catalog-exhibitor {
    grid-template-columns: minmax(220px, 25%) minmax(0, 1fr);
  }

  .contact-layout {
    grid-template-columns: minmax(380px, 1fr) 1px minmax(380px, 1fr);
    gap: 28px;
  }

  .map-wrap {
    height: 300px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 68px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-bar {
    grid-template-columns: 1fr auto 1fr;
  }

  .menu-toggle,
  .mobile-catalog {
    display: flex;
  }

  .menu-toggle {
    align-items: flex-start;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    background: var(--teal-deep);
    transition: transform 230ms ease, opacity 170ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mobile-catalog {
    grid-column: 3;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    position: relative;
    width: auto;
    min-width: 0;
    height: var(--header-height);
    padding: 0;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.105em;
    text-transform: uppercase;
  }

  .mobile-catalog::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 1px;
    background: var(--teal);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 230ms var(--ease);
  }

  .mobile-catalog:hover::after,
  .mobile-catalog:focus-visible::after {
    transform: scaleX(1);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1090;
    top: var(--header-height);
    bottom: 0;
    left: 0;
    display: block;
    width: 50vw;
    padding: 42px max(28px, 7vw) 60px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.995);
    border-right: 1px solid rgba(31, 77, 85, 0.12);
    box-shadow: 18px 0 42px rgba(12, 39, 44, 0.14);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu__group,
  .mobile-menu__direct {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  .mobile-submenu-trigger,
  .mobile-menu__direct {
    width: 100%;
    padding: 16px 0;
    color: var(--ink);
    background: transparent;
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.105em;
    text-align: left;
    text-transform: uppercase;
  }

  .mobile-submenu-trigger {
    display: flex;
    justify-content: space-between;
  }

  .mobile-submenu {
    padding: 0 0 14px 16px;
  }

  .mobile-submenu a {
    display: block;
    padding: 7px 0;
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .catalog-section {
    padding: 64px 0 76px;
  }

  .catalog-exhibitor {
    grid-template-columns: minmax(215px, 28%) minmax(0, 1fr);
  }

  .catalog-rail {
    --catalog-columns: 2;
  }

  .product-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .contact-section {
    min-height: auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 72px 0;
    gap: 36px;
  }

  .contact-divider {
    display: none;
  }

  .contact-map {
    grid-column: auto;
  }

  .map-wrap {
    height: 390px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-identity {
    grid-row: span 2;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: max(760px, 100svh);
  }

  .hero__visual,
  .hero__veil {
    width: 100%;
  }

  .hero__veil {
    background: transparent;
  }

  .hero__copy {
    grid-column: 1;
    padding: 62px 7vw 44px;
  }

  .hero__aside {
    display: none;
  }

  .story-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 40px;
  }

  .story-wordmark h2 {
    font-size: calc(clamp(3.3rem, 7vw, 4.6rem) - 18px);
  }

  .catalog-exhibitor {
    grid-template-columns: minmax(205px, 29%) minmax(0, 1fr);
  }

  .catalog-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card {
    padding-inline: 0;
  }

}

/* Mobile */
@media (max-width: 780px) {
  .shell,
  .shell-wide {
    width: min(100% - 36px, 720px);
  }

  .has-js .reveal-photo:not(.is-visible),
  .has-js .reveal-photo--right:not(.is-visible) {
    transform: translateY(30px) scale(0.98);
  }

  .has-js .duo-section .reveal-photo--rise:not(.is-visible) {
    transform: translateY(84px) scale(0.955);
  }

  .hero {
    min-height: max(780px, 100svh);
    grid-template-rows: minmax(440px, 60%) minmax(260px, 40%);
  }

  .hero__visual,
  .hero__veil {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100%;
  }

  .hero__copy {
    grid-row: 1;
    padding: 54px 28px 44px 32px;
  }

  .hero h1 {
    font-size: clamp(2rem, 5vw, 2.35rem);
  }

  .hero h1 > span {
    display: block;
    white-space: normal;
  }

  .hero h1 br {
    display: none;
  }

  .hero__subheadline {
    max-width: 340px;
  }

  .hero__aside {
    display: block;
    grid-row: 2;
    grid-column: 1;
    min-height: 0;
    height: 100%;
  }

  .hero__aside figcaption {
    right: 20px;
    bottom: 24px;
    left: 20px;
    width: auto;
    align-items: center;
    text-align: center;
  }

  .hero__aside figcaption strong {
    max-width: 300px;
    text-align: center;
  }

  .hero__aside img {
    object-position: center 42%;
  }

  .hero__actions {
    width: min(100%, 280px);
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__copy {
    min-height: 0;
  }

  .duo-section {
    padding: 52px 0 58px;
  }

  .duo-grid {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 680px);
    margin-inline: auto;
  }

  .duo-grid::after {
    display: none;
  }

  .duo-panel {
    padding: 0 0 44px;
  }

  .duo-panel + .duo-panel {
    padding-top: 46px;
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, rgba(200, 164, 95, 0.52), transparent) 1;
  }

  .duo-panel:last-child {
    padding-bottom: 0;
  }

  .duo-photos {
    --duo-cut: 22px;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 520px);
    margin-inline: auto;
    gap: 20px;
  }

  .story-section {
    padding: 72px 0 62px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-gallery {
    width: 100%;
  }

  .story-copy {
    text-align: center;
  }

  .story-wordmark {
    justify-content: center;
  }

  .story-review {
    margin-top: 30px;
  }

  .gold-banner {
    min-height: 330px;
  }

  .gold-banner__gradient {
    background: linear-gradient(90deg, rgba(21, 62, 71, 0.94), rgba(36, 111, 128, 0.68));
  }

  .gold-banner__content {
    min-height: 330px;
    padding: 30px 0 24px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "cta"
      "line"
      "description";
    align-content: center;
    gap: 18px;
  }

  .gold-banner h2 {
    font-size: calc(clamp(3.35rem, 13.8vw, 4.35rem) - 18px);
  }

  .gold-banner__content > .button {
    width: min(100%, 380px);
  }

  .catalog-section {
    padding: 58px 0 66px;
  }

  .catalog-intro {
    margin-bottom: 34px;
  }

  .catalog-exhibitor {
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .catalog-exhibitor__cover {
    min-height: 260px;
  }

  .catalog-exhibitor__label h3 {
    font-size: clamp(1.12rem, 4.6vw, 1.5rem);
  }

  .catalog-rail {
    --catalog-columns: 2;
    min-height: 292px;
    padding-top: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card {
    flex-basis: calc((100% - 10px) / 2);
  }

  .product-card figure {
    height: 290px;
  }

  .reviews-section {
    padding: 38px 0 42px;
  }

  .reviews-bar {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    flex-direction: column;
  }

  .reviews-bar h2 {
    white-space: normal;
  }

  .reviews-bar__actions {
    width: min(100%, 260px);
  }

  .reviews-cta {
    min-height: 35px;
    padding: 7px 11px;
    font-size: calc(0.62rem + 2px);
  }

  .google-reviews {
    height: 150px;
  }

  .google-review-card {
    width: min(78vw, 300px);
    padding: 11px 16px 10px;
    flex-basis: min(78vw, 300px);
  }

  .google-review-card > p {
    margin-top: 2px;
    font-size: calc(var(--font-description) - 0.07rem);
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }

  .google-review-card footer {
    padding-top: 5px;
  }

  .review-reader {
    padding: 11px 40px 10px 14px;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
  }

  .review-reader__close {
    top: 7px;
    right: 7px;
    width: 28px;
    height: 28px;
  }

  .review-reader__source {
    font-size: 0.49rem;
  }

  .review-reader h3 {
    margin-top: 4px;
    font-size: 0.9rem;
  }

  .review-reader__meta {
    margin-top: 5px;
    font-size: 0.51rem;
    line-height: 1.3;
  }

  .review-reader > p {
    padding-right: 8px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    padding: 66px 0 70px;
    gap: 35px;
  }

  .contact-copy h2 {
    font-size: calc(clamp(3.5rem, 13vw, 5.2rem) - 18px);
  }

  .map-wrap {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 46px 0 38px;
  }

  .footer-identity {
    grid-column: 1 / -1;
    grid-row: auto;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .footer-bottom {
    padding: 17px 0;
    gap: 16px;
  }

  .footer-legal {
    gap: 5px;
  }
}

@media (max-width: 520px) {
  .story-review__link {
    min-height: 40px;
    padding: 6px 7px 5px;
    gap: 8px;
  }

  .story-review__rating {
    font-size: 0.88rem;
  }

  .story-review__stars {
    font-size: 0.71rem;
    letter-spacing: 0.08em;
  }

  .story-review__count {
    font-size: 0.73rem;
  }

  .story-review__action {
    margin-left: 3px;
    font-size: 0.67rem;
    letter-spacing: 0.07em;
  }

  .story-review__action i {
    margin-left: 3px;
  }

  .mobile-catalog {
    height: var(--header-height);
    padding-inline: 0;
    font-size: 0.68rem;
  }

  .mobile-submenu-trigger,
  .mobile-menu__direct,
  .mobile-submenu a {
    font-size: 0.68rem;
  }

  .brand {
    min-width: 165px;
    padding-inline: 9px;
  }

  .brand__logo {
    width: 156px;
    max-height: 52px;
  }

  .hero {
    min-height: max(820px, 100svh);
  }

  .hero__copy {
    padding: 48px 22px 40px 25px;
  }

  .hero h1 {
    font-size: calc(clamp(2.75rem, 11vw, 3.15rem) - 11px);
  }

  .button {
    padding-inline: 17px;
    font-size: 0.63rem;
  }

  .duo-panel .section-heading h2 {
    font-size: calc(2.75rem - 11px);
  }

  .finance-wrap {
    max-width: 492px;
    margin: 14px auto 18px;
  }

  .finance-note__text {
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: normal;
  }

  .duo-photos {
    --duo-cut: 16px;
    gap: 14px;
  }

  .feature-photo__brand-badge {
    right: 12px;
    bottom: 10px;
    width: 66px;
    min-height: 0;
    padding: 0;
  }

  .feature-photo__cta {
    font-size: 0.92rem;
  }

  .story-wordmark h2 {
    font-size: calc(clamp(3rem, 16vw, 4.1rem) - 18px);
  }

  .story-wordmark > span {
    height: 50px;
    margin-left: 14px;
  }

  .story-play {
    width: 46px;
    height: 46px;
  }

  .catalog-section {
    padding: 52px 0 58px;
  }

  .catalog-intro h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .catalog-intro__description {
    font-size: 1rem;
  }

  .catalog-list {
    gap: 28px;
  }

  .catalog-exhibitor__cover {
    min-height: 225px;
  }

  .catalog-exhibitor__label {
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 64px;
    padding: 12px 14px;
  }

  .catalog-rail {
    --catalog-columns: 2;
    min-height: 270px;
    padding: 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .product-card {
    padding: 0 0 10px;
    flex-basis: calc((100% - 10px) / 2);
  }

  .product-card figure {
    --product-cut: 11px;
    height: 268px;
  }

  .product-card figure::after {
    right: 11px;
    bottom: 10px;
    width: 56px;
    height: 22px;
  }

  .product-card small {
    font-size: 0.5rem;
  }

  .product-card h3,
  .product-card h4 {
    font-size: 0.92rem;
  }

  .reviews-bar .button {
    width: 100%;
  }

  .google-review-card__head strong {
    font-size: 0.78rem;
  }

  .map-wrap {
    height: 310px;
  }

  .footer-grid {
    gap: 28px 18px;
  }

}

@media (max-width: 380px) {
  .story-review__link {
    padding-block: 6px 5px;
    flex-wrap: wrap;
    row-gap: 7px;
  }

  .story-review__action {
    flex-basis: 100%;
    margin-left: 0;
    text-align: center;
  }
}

/* Rifinitura mobile complessiva */
@media (max-width: 780px) {
  main > section {
    border-top: 0;
    border-bottom: 0;
  }

  .duo-section,
  .story-section,
  .catalog-section,
  .novara-section {
    background: var(--cream);
  }

  :root {
    --header-height: 64px;
  }

  .shell,
  .shell-wide {
    width: min(calc(100% - 28px), 720px);
  }

  a,
  button {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(69, 156, 175, 0.16);
  }

  .nav-bar {
    width: calc(100% - 20px);
  }

  .menu-toggle {
    justify-self: start;
    width: 40px;
    height: 40px;
  }

  .brand {
    width: clamp(138px, 42vw, 160px);
    min-width: 0;
    padding-inline: 4px;
  }

  .brand__logo {
    width: 100%;
    max-height: 48px;
  }

  .mobile-catalog {
    min-height: var(--header-height);
    padding-inline: 0;
    justify-self: end;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .mobile-menu {
    padding: 24px 20px calc(42px + env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  .mobile-submenu-trigger,
  .mobile-menu__direct {
    min-height: 52px;
    padding: 13px 0;
    font-size: 0.74rem;
  }

  .mobile-submenu {
    padding: 2px 0 12px 12px;
  }

  .mobile-submenu a {
    min-height: 42px;
    padding: 10px 0;
  }

  .hero {
    display: block;
    height: max(640px, 100svh);
    min-height: 0;
    isolation: isolate;
  }

  .hero__visual,
  .hero__veil {
    position: absolute;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .hero__veil {
    background: transparent;
  }

  .hero__copy {
    z-index: 4;
    display: block;
    width: 100%;
    padding: clamp(42px, 7svh, 62px) 20px 0;
  }

  .hero__lead {
    width: 100%;
    max-width: none;
    align-items: flex-start;
    margin: 0;
    text-align: left;
  }

  .hero h1 {
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: clamp(1.45rem, 6.15vw, 1.78rem);
    line-height: 0.98;
    text-align: left;
    isolation: isolate;
  }

  .hero h1::before,
  .hero__subheadline::before {
    position: absolute;
    z-index: -1;
    inset: -11px -16px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.76) 68%, rgba(255, 255, 255, 0) 100%);
    content: "";
    filter: blur(10px);
    pointer-events: none;
  }

  .hero h1 > span {
    display: inline;
  }

  .hero h1 em {
    display: inline;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .hero__subheadline {
    position: relative;
    z-index: 0;
    max-width: 300px;
    margin-top: 9px;
    margin-right: auto;
    margin-left: 0;
    font-size: clamp(0.96rem, 4.2vw, 1.08rem);
    line-height: 1.38;
    text-align: left;
    isolation: isolate;
  }

  .hero__actions {
    width: clamp(148px, 44vw, 176px);
    margin-top: 45px;
    margin-right: auto;
    margin-left: 0;
    flex-direction: column;
    gap: 14px;
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    margin-top: 0;
    padding-inline: 8px;
    flex: 1 1 0;
    font-size: clamp(0.5rem, 2.3vw, 0.62rem);
    letter-spacing: 0.08em;
  }

  .hero__actions .button > span {
    margin-left: 6px;
  }

  .hero__aside {
    position: absolute;
    z-index: 5;
    top: var(--hero-mobile-aside-top, 280px);
    right: 18px;
    bottom: auto;
    left: auto;
    display: block;
    width: clamp(138px, 40vw, 176px);
    min-height: 0;
    height: calc(clamp(320px, 52svh, 380px) - 28px);
    border: 1px solid rgba(200, 164, 95, 0.9);
    box-shadow: 0 20px 42px rgba(14, 38, 43, 0.22);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  }

  .hero__aside img {
    object-position: center 42%;
  }

  .hero__aside figcaption {
    right: 12px;
    bottom: 13px;
    left: 12px;
    width: auto;
    align-items: flex-start;
    text-align: left;
  }

  .hero__aside figcaption span {
    font-size: 0.48rem;
  }

  .hero__aside figcaption strong {
    max-width: 145px;
    font-size: clamp(0.92rem, 4vw, 1.12rem);
    line-height: 1.08;
    text-align: left;
  }

  .duo-section {
    padding: 46px 0 52px;
  }

  .duo-grid {
    width: min(calc(100% - 28px), 680px);
  }

  .duo-panel {
    padding-bottom: 38px;
  }

  .duo-panel + .duo-panel {
    position: relative;
    padding-top: 40px;
    border-top: 0;
    border-image: none;
  }

  .duo-panel + .duo-panel::before {
    position: absolute;
    top: 0;
    right: 10%;
    left: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(158, 123, 63, 0.62), transparent);
    content: "";
  }

  .duo-panel .section-heading h2 {
    font-size: clamp(1.7rem, 6.7vw, 1.85rem);
  }

  .duo-panel .section-heading > p:last-child {
    font-size: 1rem;
    line-height: 1.55;
  }

  .finance-wrap {
    min-height: 0;
    margin: 14px auto 18px;
  }

  .finance-note {
    min-height: 48px;
    max-width: 100%;
    padding: 9px 12px;
    justify-content: flex-start;
    gap: 9px;
  }

  .finance-note__symbol--euro {
    width: 27px;
    height: 27px;
  }

  .finance-note__text {
    min-width: 0;
    font-size: clamp(0.88rem, 3.75vw, 0.98rem);
    line-height: 1.3;
    text-align: left;
    white-space: normal;
  }

  .duo-photos {
    width: 100%;
    gap: 14px;
  }

  .story-section {
    padding: 58px 0 54px;
  }

  .story-grid {
    gap: 30px;
  }

  .story-gallery {
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .story-since {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .story-wordmark h2 {
    font-size: calc(clamp(2.65rem, 12vw, 3.8rem) - 7px);
  }

  .story-wordmark > span {
    height: 48px;
    margin-left: 15px;
  }

  .story-location {
    margin: 12px 0 20px;
    font-size: clamp(1.3rem, 5.7vw, 1.8rem);
  }

  .story-review {
    margin-top: 26px;
  }

  .gold-banner,
  .gold-banner__content {
    min-height: 0;
  }

  .gold-banner {
    border-top: 18px solid var(--cream);
  }

  .gold-banner__content {
    padding: 18px 0 15px;
    grid-template-columns: minmax(0, 1fr) clamp(132px, 42%, 180px);
    grid-template-areas:
      "title cta"
      "line line"
      "description description";
    column-gap: 12px;
    row-gap: 10px;
  }

  .gold-banner h2 {
    font-size: calc(clamp(2.65rem, 12vw, 3.7rem) - 7px);
  }

  .gold-banner__content > .button {
    left: 0;
    width: 100%;
    min-height: 50px;
    padding-inline: 10px;
    font-size: 0.58rem;
    justify-self: end;
    text-align: center;
  }

  .gold-banner__content > .button > span {
    margin-left: 7px;
  }

  .gold-banner__description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .catalog-section {
    padding: 52px 0 60px;
  }

  .catalog-intro {
    margin-bottom: 30px;
  }

  .catalog-intro h2 {
    font-size: calc(clamp(2rem, 9.5vw, 2.85rem) - 7px);
  }

  .catalog-intro__description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .catalog-list {
    gap: 42px;
  }

  .catalog-exhibitor {
    row-gap: 14px;
  }

  .catalog-exhibitor__cover {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .catalog-exhibitor__cover > img,
  .catalog-exhibitor__wash {
    display: none;
  }

  .catalog-exhibitor__label {
    position: static;
    min-height: 0;
    padding: 0;
    color: var(--ink) !important;
    background: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    justify-items: start;
  }

  .catalog-exhibitor__label h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
    letter-spacing: 0.045em;
    text-align: left;
  }

  .catalog-exhibitor__link-arrow {
    width: 32px;
    height: 32px;
    color: var(--catalog-gold-highlight);
  }

  .catalog-viewport {
    overscroll-behavior-inline: contain;
  }

  .catalog-rail {
    min-height: 0;
    row-gap: 14px;
  }

  .catalog-control {
    top: calc(50% - 22px);
    width: 38px;
    height: 56px;
    font-size: 2.7rem;
  }

  .catalog-control--previous {
    left: -25px;
  }

  .catalog-control--next {
    right: -25px;
  }

  .catalog-track {
    gap: 8px;
  }

  .product-card {
    flex-basis: calc((100% - 8px) / 2);
  }

  .product-card figure {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
  }

  .product-card h4 {
    margin-top: 2px;
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
    letter-spacing: 0.025em;
  }

  .catalog-progress {
    width: min(96px, 32%);
  }

  .reviews-section {
    padding: 38px 0 44px;
  }

  .reviews-bar {
    gap: 16px;
  }

  .reviews-bar h2 {
    font-size: calc(clamp(2rem, 9vw, 2.75rem) - 7px);
  }

  .reviews-bar__actions {
    width: min(100%, 260px);
  }

  .reviews-cta {
    min-height: 46px;
    padding: 10px 12px;
  }

  .google-reviews {
    height: 172px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-touch-callout: none;
    user-select: none;
  }

  .google-reviews::-webkit-scrollbar {
    display: none;
  }

  .google-reviews__track {
    animation: none;
    transform: none;
  }

  .google-review-card {
    width: min(84vw, 320px);
    flex-basis: min(84vw, 320px);
  }

  .contact-layout {
    padding: 58px 0 62px;
    gap: 30px;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-copy h2 {
    font-size: calc(clamp(2.65rem, 12vw, 3.8rem) - 7px);
    line-height: 0.94;
  }

  .contact-copy h2 span {
    white-space: normal;
  }

  .contact-intro {
    margin: 24px auto 22px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .contact-actions {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .map-wrap {
    height: 300px;
  }

  .map-directions {
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px 0 22px;
    column-gap: 16px;
    row-gap: 18px;
  }

  .footer-grid > *,
  .footer-column,
  .footer-column a {
    min-width: 0;
  }

  .footer-identity {
    grid-column: 1 / -1;
    padding-bottom: 12px;
  }

  .brand--footer .brand__logo {
    width: min(64vw, 220px);
  }

  .footer-identity p {
    max-width: none;
    margin-top: 9px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .footer-column {
    gap: 6px;
  }

  .footer-column h2 {
    margin-bottom: 3px;
    font-size: 0.62rem;
  }

  .footer-column a,
  .footer-column address,
  .footer-contacts address {
    font-size: 0.86rem;
    line-height: 1.3;
  }

  .footer-shop {
    grid-column: 1 / -1;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    flex-flow: row wrap;
    column-gap: 42px;
    row-gap: 6px;
  }

  .footer-shop h2 {
    flex-basis: 100%;
  }

  .footer-contacts {
    display: grid;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 8px;
  }

  .footer-contacts h2,
  .footer-contacts address,
  .footer-contact-link {
    margin: 0;
    grid-column: 1;
  }

  .footer-contact-link {
    gap: 6px;
  }

  .footer-contact-link span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    min-height: 0;
    padding: 12px 0 14px;
    gap: 8px 14px;
    flex-wrap: wrap;
    font-size: 0.72rem;
  }

  .footer-legal {
    align-items: flex-start;
    gap: 5px;
  }

}

@media (max-width: 520px) {
  .story-review__link {
    padding-block: 8px;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .story-review__action {
    flex-basis: 100%;
    margin-left: 0;
    text-align: center;
  }

  .review-reader {
    padding: 12px 38px 12px 14px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 6px;
  }

  .google-reviews {
    height: 190px;
  }

  .review-reader__identity {
    align-self: start;
  }

  .review-reader > p {
    padding-right: 4px;
    font-size: 0.78rem;
  }

}

@media (max-width: 380px) {
  .shell,
  .shell-wide {
    width: calc(100% - 20px);
  }

  .nav-bar {
    width: calc(100% - 12px);
  }

  .brand {
    width: 134px;
  }

  .mobile-catalog {
    padding-inline: 0;
    font-size: 0.58rem;
    letter-spacing: 0.07em;
  }

  .gold-banner__content > .button {
    left: 0;
  }

  .mobile-submenu-trigger,
  .mobile-menu__direct,
  .mobile-submenu a {
    font-size: 0.62rem;
  }

  .hero__copy {
    padding-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(1.42rem, 6.4vw, 1.6rem);
  }

  .duo-photos {
    gap: 10px;
  }

  .product-card figure {
    height: auto;
  }
}

@media (hover: none) {
  .catalog-exhibitor__cover:hover > img {
    transform: none;
  }

  .feature-photo:hover .feature-photo__visual,
  .feature-photo:focus-visible .feature-photo__visual {
    transform: none;
  }

  .product-card:hover figure img {
    filter: none;
    transform: translateZ(0) scale(var(--catalog-image-scale, 1.08));
  }

  .product-card:hover h4 {
    color: inherit;
  }
}

@media (max-width: 780px) {
  .duo-panel--fedi .feature-photo__note,
  .duo-panel--fidanzamento .feature-photo__note {
    min-height: 0;
  }

  .feature-photo__cta {
    font-size: calc(clamp(0.82rem, 0.84vw, 0.94rem) + 2px);
  }

  .duo-panel.is-mobile-focus .feature-photo__cta {
    color: var(--catalog-gold-highlight);
    transition-delay: 360ms;
    transition-duration: 420ms;
  }

  .product-card figure {
    --product-cut: var(--catalog-product-cut, 18px);
    backface-visibility: hidden;
    transform: translateZ(0) scale(var(--catalog-figure-scale, 1));
    transform-origin: center;
    transition: none;
    will-change: transform, clip-path;
  }

  .product-card figure img {
    backface-visibility: hidden;
    filter: none;
    transform-origin: center;
    transform: translateZ(0) scale(var(--catalog-image-scale, 1.08));
    transition: none;
    will-change: transform;
  }

  .catalog-exhibitor.is-mobile-focus .product-card h4 {
    color: var(--catalog-gold-highlight);
  }

  .product-card h4 {
    font-size: calc(clamp(0.78rem, 3.4vw, 0.9rem) + 2px);
  }

}


@media (max-width: 520px) {
  .feature-photo__cta {
    font-size: calc(0.92rem + 2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .google-reviews {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .google-reviews::-webkit-scrollbar {
    display: none;
  }

  .google-reviews__track {
    animation: none !important;
  }

}

/* Tutti gli H2 visibili hanno la stessa misura di "Fedi nuziali". */
h2:not(.sr-only) {
  font-size: calc(clamp(2.45rem, 3vw, 3.75rem) - 11px);
}

@media (max-width: 780px) {
  h2:not(.sr-only),
  .hero h1 {
    font-size: clamp(1.7rem, 6.7vw, 1.85rem);
  }
}

/* Il nome nella sezione Chi siamo mantiene la dimensione protagonista originale. */
.story-wordmark h2 {
  font-size: calc(clamp(3.7rem, 5.2vw, 6.3rem) - 11px);
}

@media (max-width: 900px) {
  .story-wordmark h2 {
    font-size: calc(clamp(3.3rem, 7vw, 4.6rem) - 11px);
  }
}

@media (max-width: 780px) {
  .story-wordmark h2 {
    font-size: clamp(2.65rem, 12vw, 3.8rem);
  }
}

/* Sottotitoli e intestazioni secondarie conservano la scala originale. */
.footer-column h2 {
  font-size: calc(var(--footer-text-size) - 5px);
}

/* CTA Chi siamo: sottile, allungata e allineata a sinistra. */
.story-copy .button--deep {
  --button-cut: 12px;
  --button-fill: transparent;
  --button-stroke: transparent;
  display: flex;
  width: clamp(210px, 18vw, 240px);
  max-width: 100%;
  min-height: 36px;
  margin-right: auto;
  margin-left: 0;
  padding: 7px 28px;
  color: var(--teal-deep);
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 36' preserveAspectRatio='none'%3E%3Cpath d='M12 .75H239.25V24L227.25 35.25H.75V12Z' fill='none' stroke='%23459caf' stroke-width='1.5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-size: 0.62rem;
}

.story-copy .button--deep::before {
  display: none;
}

.story-copy .button--deep:hover {
  --button-fill: transparent;
  --button-stroke: transparent;
  color: var(--teal-deep);
  background-color: transparent;
}

/* Chi siamo: su desktop la composizione a due colonne rimane al centro. */
@media (min-width: 901px) {
  .story-grid {
    transform: translateX(clamp(80px, 10vw, 240px));
  }
}

/* Chi siamo: composizione mobile ispirata al riferimento fornito. */
@media (max-width: 780px) {
  .story-section {
    padding: 34px 0 46px;
    background: var(--cream);
  }

  .story-grid {
    gap: 32px;
  }

  .story-copy {
    order: -1;
    text-align: left;
  }

  .story-since {
    margin: 0 0 11px;
    font-size: clamp(0.8rem, 3.8vw, 0.95rem);
    line-height: 1;
  }

  .story-wordmark {
    justify-content: flex-start;
  }

  .story-wordmark h2 {
    font-size: clamp(1.15rem, 7.2vw, 1.75rem);
    line-height: 1;
    letter-spacing: 0.005em;
    white-space: nowrap;
  }

  .story-wordmark h2 span {
    display: inline;
  }

  .story-wordmark > span {
    display: none;
  }

  .story-location {
    margin: 11px 0 24px;
    font-size: clamp(0.72rem, 3.25vw, 0.82rem);
    line-height: 1.05;
    letter-spacing: 0.025em;
  }

  .story-copy .button--deep {
    width: 210px;
    min-height: 34px;
    padding: 6px 24px;
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .story-gallery {
    aspect-ratio: 16 / 9;
  }

  .story-play {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: 42px;
    height: 42px;
    background: rgba(23, 42, 46, 0.12);
    border-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: none;
    transform: translate(-50%, -50%);
  }

  .story-play span {
    margin-left: 3px;
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .story-review {
    display: none;
  }
}

/* Contatti mobile: titolo, mappa, descrizione e CTA. */
@media (max-width: 780px) {
  .contact-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .contact-copy,
  .contact-map {
    display: contents;
  }

  .contact-copy h2 {
    order: 1;
    margin-bottom: 24px;
    text-align: center;
  }

  .map-wrap {
    order: 2;
    width: 100%;
    height: 190px;
  }

  .contact-intro {
    order: 3;
    margin: 24px auto 22px;
    text-align: center;
  }

  .contact-actions {
    order: 4;
    margin-inline: auto;
  }

  .map-directions {
    display: none;
  }
}

/* Catalogo per marchio: estensione della composizione originale. */
.catalog-category-selector__track::-webkit-scrollbar {
  display: none;
}

.catalog-category-tab {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.catalog-category-tab:focus-visible {
  outline: 2px solid var(--catalog-gold-highlight);
  outline-offset: 3px;
}

.catalog-list--brands {
  gap: clamp(46px, 5vw, 78px);
}

.catalog-exhibitor--brand {
  grid-template-columns: minmax(210px, 20.5%) clamp(145px, 10.5vw, 178px) minmax(0, 1fr);
  column-gap: 0;
}

.catalog-category-selector {
  position: relative;
  min-width: 0;
  min-height: 342px;
  margin-right: clamp(18px, 2vw, 34px);
  overflow: hidden;
  border-left: 1px solid rgba(168, 111, 0, 0.3);
  background: transparent;
}

.catalog-category-control {
  display: none;
}

.catalog-category-selector::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 24px;
  background: linear-gradient(to top, var(--cream), rgba(247, 243, 236, 0));
  content: "";
  pointer-events: none;
}

.catalog-category-selector::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 18px;
  background: linear-gradient(to bottom, var(--cream), rgba(247, 243, 236, 0));
  content: "";
  pointer-events: none;
}

.catalog-category-indicator {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 8px;
  width: 3px;
  height: 28px;
  background: var(--catalog-gold-highlight);
  border-radius: 0 2px 2px 0;
  opacity: 0.92;
  pointer-events: none;
  transform: translate3d(var(--category-indicator-x, 0), var(--category-indicator-y, 12px), 0);
  transition: transform 220ms var(--ease), opacity 180ms ease;
}

.catalog-category-selector__track {
  height: 342px;
  padding: 7px 0 8px 9px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-width: none;
  scroll-snap-type: y proximity;
}

.catalog-category-tab {
  display: flex;
  width: 100%;
  min-height: 52px;
  padding: 10px 8px 10px 13px;
  align-items: center;
  justify-content: flex-start;
  font-size: clamp(0.76rem, 0.78vw, 0.9rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
  scroll-snap-align: start;
  text-align: left;
  transition: color 220ms ease, transform 220ms var(--ease), background 220ms ease;
}

.catalog-category-tab:hover {
  background: transparent;
  color: var(--teal-dark);
  transform: translateX(2px);
}

.catalog-category-tab[aria-selected="true"] {
  background: linear-gradient(90deg, rgba(168, 111, 0, 0.09), rgba(168, 111, 0, 0));
  color: var(--teal-dark);
  transform: translateX(3px);
}

.catalog-list--brands .product-card figure::after {
  content: none;
}

.product-brand-badge {
  position: absolute;
  z-index: 2;
  right: 13px;
  bottom: 12px;
  max-width: calc(100% - 26px);
  color: rgba(23, 42, 45, 0.68);
  font-family: var(--font-display);
  font-size: clamp(0.52rem, 0.56vw, 0.65rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-align: right;
  text-transform: uppercase;
}

.catalog-exhibitor--brand .product-card {
  animation: catalog-product-enter 420ms var(--ease) both;
}

.catalog-exhibitor--brand .product-card:nth-child(2) {
  animation-delay: 45ms;
}

.catalog-exhibitor--brand .product-card:nth-child(3) {
  animation-delay: 90ms;
}

.catalog-exhibitor--brand .product-card:nth-child(n + 4) {
  animation-delay: 120ms;
}

@keyframes catalog-product-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1160px) {
  .catalog-exhibitor--brand {
    grid-template-columns: minmax(185px, 22%) 140px minmax(0, 1fr);
  }

  .catalog-category-selector {
    margin-right: 20px;
  }
}

@media (max-width: 780px) {
  .catalog-exhibitor--brand {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 14px;
  }

  .catalog-exhibitor--brand .catalog-exhibitor__cover {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .catalog-exhibitor--brand .catalog-exhibitor__cover > img,
  .catalog-exhibitor--brand .catalog-exhibitor__wash {
    display: none;
  }

  .catalog-exhibitor--brand .catalog-exhibitor__label {
    position: static;
    min-height: 52px;
    padding: 7px 4px 10px;
    border-bottom: 1px solid rgba(23, 42, 45, 0.14);
    background: transparent !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    justify-items: start;
    color: var(--ink) !important;
  }

  .catalog-exhibitor--brand .catalog-exhibitor__label h3 {
    text-align: left;
  }

  .catalog-category-selector {
    position: relative;
    min-height: 0;
    margin-right: 0;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid rgba(23, 42, 45, 0.12);
    overscroll-behavior-inline: contain;
  }

  .catalog-category-selector::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 30px;
    height: auto;
    background: linear-gradient(to left, var(--cream), rgba(247, 243, 236, 0));
  }

  .catalog-category-selector::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 26px;
    height: auto;
    background: linear-gradient(to right, var(--cream), rgba(247, 243, 236, 0));
  }

  .catalog-category-indicator {
    left: 0;
    width: 48px;
    height: 2px;
    border-radius: 2px 2px 0 0;
    transform: translate3d(var(--category-indicator-x, 27px), var(--category-indicator-y, 56px), 0);
  }

  .catalog-category-selector__track {
    display: flex;
    width: 100%;
    height: auto;
    padding: 0 27px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .catalog-category-tab {
    width: auto;
    min-width: 128px;
    min-height: 58px;
    flex: 0 0 auto;
    justify-content: center;
    scroll-snap-align: start;
    text-align: center;
    white-space: nowrap;
    font-size: 0.78rem;
  }

  .catalog-category-control {
    position: absolute;
    z-index: 4;
    top: 0;
    display: grid;
    width: 28px;
    height: 58px;
    padding: 0;
    border: 0;
    background: linear-gradient(90deg, rgba(247, 243, 236, 0.98), rgba(247, 243, 236, 0.76));
    color: rgba(168, 111, 0, 0.58);
    cursor: pointer;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 1.5rem;
    line-height: 1;
    transition: color 200ms ease, opacity 200ms ease;
  }

  .catalog-category-control--previous {
    left: 0;
  }

  .catalog-category-control--next {
    right: 0;
    background: linear-gradient(270deg, rgba(247, 243, 236, 0.98), rgba(247, 243, 236, 0.76));
  }

  .catalog-category-control:hover:not(:disabled),
  .catalog-category-control:focus-visible:not(:disabled) {
    color: rgba(168, 111, 0, 0.82);
  }

  .catalog-category-control:focus-visible {
    outline: 1px solid currentColor;
    outline-offset: -3px;
  }

  .catalog-category-control:disabled {
    cursor: default;
    opacity: 0.22;
  }

  .catalog-category-tab:hover {
    background: transparent;
    transform: none;
  }

  .catalog-category-tab[aria-selected="true"] {
    background: linear-gradient(180deg, rgba(168, 111, 0, 0), rgba(168, 111, 0, 0.055));
    transform: none;
  }

  .product-brand-badge {
    right: 10px;
    bottom: 9px;
    font-size: 0.52rem;
  }
}

@media (max-width: 430px) {
  .catalog-category-tab {
    min-width: 116px;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-exhibitor--brand .product-card {
    animation: none;
  }

  .catalog-category-tab {
    transition: none;
  }

  .catalog-category-control {
    transition: none;
  }

  .catalog-category-indicator {
    transition: none;
  }
}

/* Mantiene la pagina entro il viewport, senza bloccare gli slider interni. */
@media (max-width: 780px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }

  .site-header,
  main,
  .site-footer {
    width: 100%;
    max-width: 100%;
  }
}
