@font-face {
  font-family: "NeutraText-Book";
  src:
    url("../fonts/NeutraText-Book.woff2") format("woff2"),
    url("../fonts/NeutraText-Book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "NeutraText-Light";
  src:
    url("../fonts/NeutraText-Light.woff2") format("woff2"),
    url("../fonts/NeutraText-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
:root {
  --ink: #173145;
  --red: #a9564f;
  --cream: #f2f0ec;
  --line: #d9d7d2;
  --white: #fff;
  --ref-green: #8f9d8c;
  --ref-green-dark: #617163;
  --ref-ink: #171a18;
  --ref-paper: #eee9e1;
  --ref-grey: #d1d1d1;
  --ref-white: #fff;
  --ref-line: rgba(23, 26, 24, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #765b53 #eee9e1;
}
html.lenis {
  scroll-behavior: auto;
}
html.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow-x: clip;
  overflow-y: scroll;
}
html::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track {
  background: #eee9e1;
}
html::-webkit-scrollbar-thumb {
  min-height: 54px;
  border: 2px solid #eee9e1;
  border-radius: 999px;
  background: #765b53;
}
html::-webkit-scrollbar-thumb:hover {
  background: #412c27;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--ref-paper);
  color: var(--ref-ink);
  font-family: "NeutraText-Book", "Avenir Next", Avenir, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.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;
}
@media (min-width: 901px) and (pointer: fine) and (hover: hover) {
  html.has-custom-cursor body,
  html.has-custom-cursor body * {
    cursor: none !important;
  }
  .site-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483000;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: difference;
    transform: translate3d(-100px, -100px, 0);
    transition: opacity 0.25s ease;
    will-change: transform;
  }
  .site-cursor.is-visible {
    opacity: 1;
  }
  .site-cursor.is-hidden {
    opacity: 0;
  }
  .site-cursor__core {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    transform: scale(1);
    transition:
      width 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
      height 0.38s cubic-bezier(0.34, 1.45, 0.64, 1),
      transform 0.18s ease;
  }
  .site-cursor.is-link .site-cursor__core {
    width: 42px;
    height: 42px;
  }
  .site-cursor.is-open .site-cursor__core {
    width: 76px;
    height: 76px;
  }
  .site-cursor.is-pressed .site-cursor__core {
    transform: scale(0.82);
  }
  .site-cursor__label {
    color: #000;
    font-family: "NeutraText-Book", "Avenir Next", Avenir, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0);
    transition:
      opacity 0.2s ease,
      transform 0.38s cubic-bezier(0.34, 1.45, 0.64, 1);
  }
  .site-cursor.is-open .site-cursor__label {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.08s;
  }
  html.has-custom-cursor .due90-map {
    cursor: grab !important;
  }
  html.has-custom-cursor .due90-map * {
    cursor: inherit !important;
  }
  html.has-custom-cursor .due90-map .due90-map__sidebar,
  html.has-custom-cursor .due90-map .due90-map__sidebar * {
    cursor: auto !important;
  }
  html.has-custom-cursor .due90-map button,
  html.has-custom-cursor .due90-map a,
  html.has-custom-cursor .due90-map [role="button"],
  html.has-custom-cursor .due90-map .leaflet-control {
    cursor: pointer !important;
  }
  html.has-custom-cursor .due90-map .leaflet-dragging,
  html.has-custom-cursor .due90-map .leaflet-dragging *,
  html.has-custom-cursor body.leaflet-dragging .due90-map,
  html.has-custom-cursor body.leaflet-dragging .due90-map * {
    cursor: grabbing !important;
  }
}
.site-header {
  --header-logo-width: 200px;
  --header-menu-size: 90px;
  --header-menu-gap: 12px;
  --header-brand-shift: 10px;
  height: 105px;
  width: 100%;
  padding: 32px 22px 0 1.8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 90;
  margin-bottom: -105px;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition:
    opacity 0.5s ease,
    visibility 0s linear;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: var(--header-logo-width);
  height: auto;
}
.site-header > .brand {
  filter: brightness(0) invert(1);
  transform: translateY(var(--header-brand-shift));
  transition: filter 0.45s ease;
}
.site-header[data-logo-theme="original"] > .brand {
  filter: none;
}
.site-header[data-logo-theme="hidden"] {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0s linear 0.5s;
}
.site-header[data-logo-theme="hidden"] > .brand,
.site-header[data-logo-theme="hidden"] > .header-tools {
  pointer-events: none;
}
.site-header > .brand,
.site-header > .header-tools {
  pointer-events: auto;
}
.header-tools {
  width: var(--header-menu-size);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.menu-button {
  height: var(--header-menu-size);
  width: var(--header-menu-size);
  border: 0;
  background: #f9f8f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--header-menu-gap);
  cursor: pointer;
}
.menu-button span {
  width: 32px;
  height: 1px;
  background: var(--ink);
  transition: 0.3s;
}
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: linear-gradient(rgb(32 15 9), rgb(28 10 2));
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.55s ease,
    visibility 0s linear 0.55s;
  overflow: hidden;
  overscroll-behavior: contain;
}
.menu-panel.open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.55s ease,
    visibility 0s linear 0s;
}
.menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(40 23 15), rgb(28 10 2));
  opacity: 1;
}
.menu-rail {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 106px;
}
.menu-close {
  width: 90px;
  height: 90px;
  position: relative;
  border: 0;
  background: #151515;
  cursor: pointer;
  display: grid;
  place-items: center;
  top: 30px;
  right: 6px;
}
.menu-close span {
  position: absolute;
  width: 36px;
  height: 1px;
  background: #fff;
}
.menu-close span:first-child {
  transform: rotate(45deg);
}
.menu-close span:last-child {
  transform: rotate(-45deg);
}
.menu-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100%;
  padding: 16vh 6.5vw 16vh 0.75vw;
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 5.5vw;
  align-items: center;
}
.menu-navigation {
  display: flex;
  flex-direction: column;
}
.menu-navigation a {
  min-height: 76px;
  padding: 20px 12px;
  border-top: 1px solid rgb(131 131 131 / 24%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  transition:
    background 0.28s,
    color 0.28s,
    padding 0.28s;
}
.menu-navigation a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #e2a099;
  padding-left: 28px;
}
.menu-information {
  align-self: center;
  transform: translateY(70px);
}
.menu-columns {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(270px, 1.35fr) minmax(210px, 1fr);
  column-gap: clamp(50px, 6vw, 100px);
}
.menu-columns strong {
  text-transform: uppercase;
  display: block;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 12px;
}
.menu-columns p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}
@media (min-width: 901px) and (max-width: 1300px) {
  .menu-columns {
    display: grid;
    grid-template-columns: 0.7fr 1fr 0.8fr;
    column-gap: clamp(50px, 6vw, 100px);
  }

  .menu-columns strong {
    text-transform: uppercase;
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
  }

  .menu-columns p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
  }

  .menu-navigation a {
    min-height: 76px;
    padding: 20px 12px;
    border-top: 1px solid rgb(131 131 131 / 24%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    font-size: clamp(20px, 1.6vw, 30px);
    font-weight: 400;
    transition: background 0.28s, color 0.28s, padding 0.28s;
  }

  .menu-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    padding: 16vh 9.5vw 16vh 1.75vw;
    display: grid;
    grid-template-columns: 28% 1fr;
    gap: 5.5vw;
    align-items: center;
  }
}
.menu-bottom {
  margin-top: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.menu-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
}
.menu-legal button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.menu-legal button:hover,
.menu-legal button:focus-visible {
  color: #e2a099;
}
.menu-legal span {
  height: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.55);
}
.menu-share {
  display: block;
}
.menu-share__links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu-share__links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}
.menu-share__links a:hover,
.menu-share__links a:focus-visible {
  background: #fff;
  color: #31160f;
  transform: translateY(-2px);
}
.menu-share__links svg {
  width: 18px;
  height: 18px;
  display: block;
  overflow: visible;
  fill: currentColor;
}
.menu-navigation a,
.menu-columns > div,
.menu-legal,
.menu-share {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
}
.menu-panel.open .menu-navigation a,
.menu-panel.open .menu-columns > div,
.menu-panel.open .menu-legal,
.menu-panel.open .menu-share {
  animation: menu-content-reveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.menu-panel.open .menu-navigation a:nth-child(1) {
  animation-delay: 0.16s;
}
.menu-panel.open .menu-navigation a:nth-child(2) {
  animation-delay: 0.22s;
}
.menu-panel.open .menu-navigation a:nth-child(3) {
  animation-delay: 0.28s;
}
.menu-panel.open .menu-navigation a:nth-child(4) {
  animation-delay: 0.34s;
}
.menu-panel.open .menu-navigation a:nth-child(5) {
  animation-delay: 0.4s;
}
.menu-panel.open .menu-navigation a:nth-child(6) {
  animation-delay: 0.46s;
}
.menu-panel.open .menu-navigation a:nth-child(7) {
  animation-delay: 0.52s;
}
.menu-panel.open .menu-navigation a:nth-child(8) {
  animation-delay: 0.58s;
}
.menu-panel.open .menu-navigation a:nth-child(9) {
  animation-delay: 0.64s;
}
.menu-panel.open .menu-columns > div:nth-child(1) {
  animation-delay: 0.3s;
}
.menu-panel.open .menu-columns > div:nth-child(2) {
  animation-delay: 0.38s;
}
.menu-panel.open .menu-columns > div:nth-child(3) {
  animation-delay: 0.46s;
}
.menu-panel.open .menu-legal {
  animation-delay: 0.56s;
}
.menu-panel.open .menu-share {
  animation-delay: 0.64s;
}
@keyframes menu-content-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.footer-reveal.footer-motion-ready .footer-logo,
.footer-reveal.footer-motion-ready .footer-address,
.footer-reveal.footer-motion-ready .footer-contact,
.footer-reveal.footer-motion-ready .footer-partners article,
.footer-reveal.footer-motion-ready .footer-legal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: opacity, transform;
}
.footer-reveal.footer-motion-ready.is-visible .footer-logo,
.footer-reveal.footer-motion-ready.is-visible .footer-address,
.footer-reveal.footer-motion-ready.is-visible .footer-contact,
.footer-reveal.footer-motion-ready.is-visible .footer-partners article,
.footer-reveal.footer-motion-ready.is-visible .footer-legal {
  animation: menu-content-reveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.footer-reveal.footer-motion-ready.is-visible .footer-logo {
  animation-delay: 0.1s;
}
.footer-reveal.footer-motion-ready.is-visible .footer-address {
  animation-delay: 0.18s;
}
.footer-reveal.footer-motion-ready.is-visible .footer-contact {
  animation-delay: 0.26s;
}
.footer-reveal.footer-motion-ready.is-visible .footer-partners article:nth-child(1) {
  animation-delay: 0.34s;
}
.footer-reveal.footer-motion-ready.is-visible .footer-partners article:nth-child(2) {
  animation-delay: 0.42s;
}
.footer-reveal.footer-motion-ready.is-visible .footer-partners article:nth-child(3) {
  animation-delay: 0.5s;
}
.footer-reveal.footer-motion-ready.is-visible .footer-legal {
  animation-delay: 0.58s;
}
.menu-panel.closing {
  pointer-events: none;
}
.menu-panel.closing .menu-navigation a,
.menu-panel.closing .menu-columns > div,
.menu-panel.closing .menu-legal,
.menu-panel.closing .menu-share {
  animation: menu-content-hide 0.42s cubic-bezier(0.64, 0, 0.78, 0) both;
}
.menu-panel.closing .menu-share {
  animation-delay: 0s;
}
.menu-panel.closing .menu-legal {
  animation-delay: 0.04s;
}
.menu-panel.closing .menu-columns > div:nth-child(3) {
  animation-delay: 0.08s;
}
.menu-panel.closing .menu-columns > div:nth-child(2) {
  animation-delay: 0.12s;
}
.menu-panel.closing .menu-columns > div:nth-child(1) {
  animation-delay: 0.16s;
}
.menu-panel.closing .menu-navigation a:nth-child(9) {
  animation-delay: 0.2s;
}
.menu-panel.closing .menu-navigation a:nth-child(8) {
  animation-delay: 0.24s;
}
.menu-panel.closing .menu-navigation a:nth-child(7) {
  animation-delay: 0.28s;
}
.menu-panel.closing .menu-navigation a:nth-child(6) {
  animation-delay: 0.32s;
}
.menu-panel.closing .menu-navigation a:nth-child(5) {
  animation-delay: 0.36s;
}
.menu-panel.closing .menu-navigation a:nth-child(4) {
  animation-delay: 0.4s;
}
.menu-panel.closing .menu-navigation a:nth-child(3) {
  animation-delay: 0.44s;
}
.menu-panel.closing .menu-navigation a:nth-child(2) {
  animation-delay: 0.48s;
}
.menu-panel.closing .menu-navigation a:nth-child(1) {
  animation-delay: 0.52s;
}
@keyframes menu-content-hide {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
}
html.legal-modal-open,
html.legal-modal-open.lenis:not(.lenis-autoToggle).lenis-stopped,
html.legal-modal-open body {
  overflow: hidden;
}
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: #fff;
  color: #171a18;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.48s ease,
    visibility 0s linear 0.48s;
}
html.has-footer-reveal body > .legal-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
}
.legal-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.48s ease,
    visibility 0s linear;
}
.legal-modal__scroll {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #765b53 #f2f0ec;
}
.legal-modal__scroll::-webkit-scrollbar {
  width: 10px;
}
.legal-modal__scroll::-webkit-scrollbar-track {
  background: #f2f0ec;
}
.legal-modal__scroll::-webkit-scrollbar-thumb {
  min-height: 54px;
  border: 2px solid #f2f0ec;
  border-radius: 999px;
  background: #765b53;
}
.legal-modal__content {
  width: min(100% - 64px, 1030px);
  margin: 0 auto;
  padding: 84px 0 130px;
}
.legal-modal__section {
  scroll-margin-top: 78px;
}
.legal-modal__section[hidden] {
  display: none !important;
}
.legal-modal__section + .legal-modal__section {
  margin-top: 82px;
}
.legal-modal h2 {
  margin: 0 0 70px;
  color: #203648;
  font-family: "NeutraText-Book", "Avenir Next", Avenir, Arial, sans-serif;
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.legal-modal h3 {
  margin: 50px 0 14px;
  color: #171a18;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.35;
}
.legal-modal p,
.legal-modal address,
.legal-modal li {
  color: #171a18;
  font-family: "NeutraText-Book", "Avenir Next", Avenir, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.52;
}
.legal-modal p {
  margin: 0 0 16px;
}
.legal-modal address {
  margin: 0 0 48px;
  font-style: normal;
}
.legal-modal ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.legal-modal li {
  position: relative;
  margin: 0 0 13px;
  padding-left: 22px;
}
.legal-modal li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
}
.legal-modal a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-modal__anchor {
  scroll-margin-top: 78px;
}
.legal-cookie-register {
  margin: 42px 0 60px;
}
.legal-modal .legal-cookie-register h4 {
  margin: 0 0 20px;
  color: #171a18;
  font-family: "NeutraText-Book", "Avenir Next", Avenir, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.legal-cookie-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 1px solid rgba(23, 26, 24, 0.28);
  border-bottom: 1px solid rgba(23, 26, 24, 0.28);
  -webkit-overflow-scrolling: touch;
}
.legal-cookie-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #171a18;
  font-family: "NeutraText-Book", "Avenir Next", Avenir, Arial, sans-serif;
}
.legal-cookie-table th,
.legal-cookie-table td {
  padding: 17px 14px;
  border-bottom: 1px solid rgba(23, 26, 24, 0.14);
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
}
.legal-cookie-table th:first-child,
.legal-cookie-table td:first-child {
  padding-left: 0;
  width: 20%;
}
.legal-cookie-table th:nth-child(2),
.legal-cookie-table td:nth-child(2) {
  width: 16%;
}
.legal-cookie-table th:nth-child(3),
.legal-cookie-table td:nth-child(3) {
  width: 34%;
}
.legal-cookie-table th:nth-child(4),
.legal-cookie-table td:nth-child(4) {
  width: 14%;
}
.legal-cookie-table th:last-child,
.legal-cookie-table td:last-child {
  padding-right: 0;
  width: 16%;
}
.legal-cookie-table tbody tr:last-child td {
  border-bottom: 0;
}
.legal-cookie-table th {
  color: #765b53;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legal-cookie-table td {
  font-size: 15px;
  line-height: 1.45;
}
.legal-cookie-table code {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: #203648;
}
.legal-modal .legal-cookie-register__note {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.5;
}
.legal-modal .legal-cookie-register__updated {
  margin: 13px 0 0;
  color: #6e726f;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.legal-modal__close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 2;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(23, 26, 24, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.legal-modal__close:hover {
  background: #171a18;
  color: #fff;
  transform: rotate(4deg);
}
.legal-modal__close span {
  position: absolute;
  width: 29px;
  height: 1px;
  background: currentColor;
}
.legal-modal__close span:first-child {
  transform: rotate(45deg);
}
.legal-modal__close span:last-child {
  transform: rotate(-45deg);
}
html.cookie-preferences-open,
html.cookie-preferences-open.lenis:not(.lenis-autoToggle).lenis-stopped,
html.cookie-preferences-open body {
  overflow: hidden;
}
.cookie-consent[hidden],
.cookie-preferences[hidden] {
  display: none !important;
}
.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 135;
  pointer-events: none;
  color: #171a18;
}
.cookie-consent__banner {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(420px, calc(100vw - 56px));
  padding: 30px;
  border: 1px solid rgba(23, 26, 24, 0.1);
  background: #fff;
  box-shadow: 0 26px 72px rgba(24, 20, 17, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.42s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-consent.is-banner-open .cookie-consent__banner {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.cookie-consent__eyebrow {
  margin: 0 0 12px;
  color: #8d675d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
}
.cookie-consent h2,
.cookie-preferences h2 {
  margin: 0 0 18px;
  color: #171a18;
  font-family: "NeutraText-Light", "Avenir Next", Avenir, Arial, sans-serif;
  font-size: clamp(30px, 2.1vw, 38px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.cookie-consent__banner > p:not(.cookie-consent__eyebrow),
.cookie-preferences__panel > p:not(.cookie-consent__eyebrow) {
  margin: 0;
  color: #4f5450;
  font-size: 17px;
  line-height: 1.5;
}
.cookie-consent__policy {
  margin: 17px 0 24px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #765b53;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.25s ease;
}
.cookie-consent__policy:hover,
.cookie-consent__policy:focus-visible {
  color: #171a18;
}
.cookie-consent__actions,
.cookie-preferences__actions {
  display: grid;
  gap: 8px;
}
.cookie-consent__button {
  min-height: 52px;
  width: 100%;
  padding: 13px 20px;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1efeb;
  color: #171a18;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
}
.cookie-consent__button--primary {
  background: #8f9d8c;
  color: #fff;
}
.cookie-consent__button--dark {
  background: #171a18;
  color: #fff;
}
.cookie-consent__button--plain {
  border-color: rgba(23, 26, 24, 0.15);
  background: #fff;
}
.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  border-color: #765b53;
  background: #765b53;
  color: #fff;
}
.cookie-preferences {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: auto;
}
.cookie-preferences__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 19, 17, 0.52);
  opacity: 0;
  cursor: default;
  transition: opacity 0.4s ease;
}
.cookie-preferences__panel {
  position: relative;
  z-index: 1;
  width: min(610px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  margin: 24px;
  padding: 42px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  box-shadow: 0 28px 90px rgba(18, 16, 14, 0.32);
  opacity: 0;
  outline: none;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.4s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: #765b53 #f2f0ec;
}
.cookie-preferences.is-open .cookie-preferences__backdrop,
.cookie-preferences.is-open .cookie-preferences__panel {
  opacity: 1;
}
.cookie-preferences.is-open .cookie-preferences__panel {
  transform: translate3d(0, 0, 0);
}
.cookie-preferences__panel::-webkit-scrollbar {
  width: 9px;
}
.cookie-preferences__panel::-webkit-scrollbar-track {
  background: #f2f0ec;
}
.cookie-preferences__panel::-webkit-scrollbar-thumb {
  border: 2px solid #f2f0ec;
  border-radius: 999px;
  background: #765b53;
}
.cookie-preferences__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(23, 26, 24, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #171a18;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.cookie-preferences__close:hover,
.cookie-preferences__close:focus-visible {
  background: #171a18;
  color: #fff;
  transform: rotate(4deg);
}
.cookie-preferences__close span {
  position: absolute;
  width: 23px;
  height: 1px;
  background: currentColor;
}
.cookie-preferences__close span:first-child {
  transform: rotate(45deg);
}
.cookie-preferences__close span:last-child {
  transform: rotate(-45deg);
}
.cookie-preferences__panel > .cookie-consent__eyebrow {
  padding-right: 62px;
}
.cookie-preferences__panel > h2 {
  padding-right: 62px;
}
.cookie-preferences__categories {
  margin: 32px 0;
  border-bottom: 1px solid rgba(23, 26, 24, 0.16);
}
.cookie-preferences__category {
  min-height: 112px;
  padding: 22px 0;
  border-top: 1px solid rgba(23, 26, 24, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}
.cookie-preferences__category h3 {
  margin: 0 0 7px;
  color: #171a18;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
}
.cookie-preferences__category p {
  margin: 0;
  color: #656a66;
  font-size: 15px;
  line-height: 1.45;
}
.cookie-switch {
  position: relative;
  display: block;
  cursor: pointer;
}
.cookie-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.cookie-switch__track {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  display: block;
  background: #d6d5d1;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease;
}
.cookie-switch__track span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(20, 20, 18, 0.2);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-switch input:checked + .cookie-switch__track {
  background: #8f9d8c;
}
.cookie-switch input:checked + .cookie-switch__track span {
  transform: translateX(24px);
}
.cookie-switch input:focus-visible + .cookie-switch__track {
  box-shadow: 0 0 0 3px rgba(143, 157, 140, 0.3);
}
.cookie-switch--locked {
  cursor: not-allowed;
  opacity: 0.72;
}
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.section-marker .blur-text__content {
  display: block;
  white-space: nowrap;
}
.blur-text__word {
  display: inline-block;
  opacity: 0;
  filter: blur(26px);
  transform: translate3d(0, 0.22em, 0) scale(0.985);
  transform-origin: center bottom;
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1) var(--blur-delay, 0ms),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--blur-delay, 0ms),
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--blur-delay, 0ms);
  will-change: opacity, filter, transform;
}
.blur-text.is-visible .blur-text__word,
.blur-text-group.is-visible .blur-text__word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}
@media (min-width: 901px) {
  .menu-bottom {
    margin-top: 150px;
  }
}
@media (max-width: 1140px) {
  main .reference-hero {
    margin-top: 0;
    min-height: 0;
    aspect-ratio: auto;
  }
  .reference-hero .reference-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .reference-hero .reference-hero__media picture,
  .reference-hero .reference-hero__media img {
    width: 100%;
    height: auto;
    display: block;
  }
  .reference-hero .reference-hero__media img {
    object-fit: contain;
    object-position: center;
    transform: none;
    animation: none;
  }
}
@media (min-width: 901px) and (max-width: 1140px) {
  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    height: 74px;
    padding: 18px 22px 0 30px;
    margin-bottom: -74px;
    background: transparent;
  }
  .site-header > .brand {
    filter: brightness(0) invert(1);
    transform: none;
  }
  .site-header[data-logo-theme="hidden"] {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .site-header[data-logo-theme="hidden"] > .brand,
  .site-header[data-logo-theme="hidden"] > .header-tools {
    pointer-events: auto;
  }
  .site-header .brand-logo {
    width: 140px;
  }
  .header-tools,
  .menu-rail {
    width: 68px;
  }
  .menu-button,
  .menu-close {
    width: 68px;
    height: 68px;
  }
  .menu-button {
    gap: 10px;
  }
  .menu-button span {
    width: 28px;
  }
  .menu-close {
    top: 6px;
    right: 4px;
  }
  .menu-panel {
    z-index: 101;
  }
}
@media (min-width: 1341px) {
  .reference-hero .reference-hero__media img {
    object-position: center 70%;
  }
}
@media (max-width: 900px) {
  .site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
  }
  main .reference-hero {
    margin-top: 74px;
    min-height: 0;
    aspect-ratio: auto;
  }
  .reference-hero .reference-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .reference-hero .reference-hero__media picture,
  .reference-hero .reference-hero__media img {
    width: 100%;
    height: auto;
    display: block;
  }
  .reference-hero .reference-hero__media img {
    object-fit: contain;
    object-position: center;
    transform: none;
    animation: none;
  }
  .menu-panel {
    z-index: 101;
    height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-width: thin;
    scrollbar-color: #765b53 #eee9e1;
  }
  .menu-rail {
    position: fixed;
  }
  .menu-panel::-webkit-scrollbar {
    width: 10px;
  }
  .menu-panel::-webkit-scrollbar-track {
    background: #eee9e1;
  }
  .menu-panel::-webkit-scrollbar-thumb {
    border: 2px solid #eee9e1;
    border-radius: 999px;
    background: #765b53;
  }
  .site-header {
    height: 74px;
    padding: 6px 0 0 18px;
    margin-bottom: -74px;
    background: #fff;
  }
  .site-header > .brand {
    filter: none;
    transform: none;
  }
  .site-header[data-logo-theme="hidden"] {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .site-header[data-logo-theme="hidden"] > .brand,
  .site-header[data-logo-theme="hidden"] > .header-tools {
    pointer-events: auto;
  }
  .site-header .brand-logo {
    width: 115px;
  }
  .header-tools,
  .menu-rail {
    width: 68px;
  }
  .menu-button,
  .menu-close {
    width: 68px;
    height: 68px;
  }
  .menu-close {
    top: 6px;
    right: 4px;
  }
  .menu-button {
    gap: 10px;
  }
  .menu-button span {
    width: 28px;
  }
  .menu-close span {
    width: 30px;
  }
  .menu-inner {
    min-height: 100%;
    height: max-content;
    padding: 135px 24px 60px;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
  }
  .menu-information {
    transform: none;
  }
  .menu-navigation a {
    min-height: 62px;
    padding-left: 0;
    justify-content: flex-start;
    text-align: left;
    font-size: 22px;
  }
  .menu-navigation a:hover {
    padding-left: 14px;
  }
  .menu-bottom {
    margin-top: 42px;
  }
  .menu-columns {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }
}
@media (min-width: 901px) and (max-height: 850px) {
  .menu-inner {
    padding-top: 7vh;
    padding-bottom: 7vh;
  }
  .menu-navigation a {
    min-height: 58px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .menu-bottom {
    margin-top: 120px;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 68px;
    padding: 4px 0 0 16px;
    margin-bottom: -68px;
    background: #fff;
  }
  main .reference-hero {
    margin-top: 68px;
  }
  .site-header .brand-logo {
    width: 100px;
  }
  .header-tools,
  .menu-rail {
    width: 60px;
  }
  .menu-button,
  .menu-close {
    width: 60px;
    height: 60px;
  }
  .menu-button {
    gap: 8px;
  }
  .menu-button span {
    width: 24px;
  }
  .menu-close span {
    width: 26px;
  }
  .menu-inner {
    padding: 105px 20px 42px;
    gap: 42px;
  }
  .menu-navigation a {
    min-height: 56px;
    justify-content: flex-start;
    text-align: left;
    padding-left: 0;
    font-size: 20px;
  }
  .menu-navigation a:hover {
    padding-left: 14px;
  }
  .menu-columns {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .menu-bottom {
    margin-top: 38px;
    flex-direction: column;
    align-items: center;
  }
  .menu-legal {
    justify-content: center;
  }
  .menu-share__links a {
    width: 44px;
    height: 44px;
  }
  .menu-share__links svg {
    width: 20px;
    height: 20px;
  }
  .blur-text__word {
    filter: blur(17px);
    transform: translate3d(0, 0.16em, 0) scale(0.99);
  }
  .legal-modal__content {
    width: calc(100% - 40px);
    padding: 100px 0 110px;
  }
  .legal-modal__section + .legal-modal__section {
    margin-top: 66px;
  }
  .legal-modal h2 {
    margin-bottom: 44px;
    font-size: 21px;
    line-height: 1.35;
    letter-spacing: 0.12em;
  }
  .legal-modal h3 {
    margin-top: 42px;
    font-size: 18px;
  }
  .legal-modal p,
  .legal-modal address,
  .legal-modal li {
    font-size: 17px;
    line-height: 1.55;
  }
  .legal-modal address {
    margin-bottom: 38px;
  }
  .legal-modal__close {
    top: 14px;
    right: 14px;
    width: 56px;
    height: 56px;
  }
  .legal-modal__close span {
    width: 25px;
  }
  .legal-cookie-register {
    margin: 36px 0 52px;
  }
  .legal-modal .legal-cookie-register h4 {
    font-size: 19px;
  }
  .legal-cookie-table-wrap {
    overflow: visible;
    border-bottom: 0;
  }
  .legal-cookie-table,
  .legal-cookie-table tbody,
  .legal-cookie-table tr,
  .legal-cookie-table td {
    display: block;
    width: 100%;
  }
  .legal-cookie-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .legal-cookie-table tr {
    padding: 18px 0;
    border-bottom: 1px solid rgba(23, 26, 24, 0.18);
  }
  .legal-cookie-table td,
  .legal-cookie-table td:first-child,
  .legal-cookie-table td:nth-child(2),
  .legal-cookie-table td:nth-child(3),
  .legal-cookie-table td:nth-child(4),
  .legal-cookie-table td:last-child {
    width: 100%;
    padding: 4px 0 4px 41%;
    border: 0;
    position: relative;
    font-size: 15px;
  }
  .legal-cookie-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 5px;
    width: 36%;
    color: #765b53;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .legal-modal .legal-cookie-register__note {
    font-size: 15px;
  }
  .cookie-consent__banner {
    right: 14px;
    bottom: 76px;
    width: calc(100vw - 28px);
    max-height: calc(100dvh - 96px);
    padding: 24px 22px;
    overflow-y: auto;
  }
  .cookie-consent h2,
  .cookie-preferences h2 {
    font-size: 30px;
  }
  .cookie-consent__banner > p:not(.cookie-consent__eyebrow),
  .cookie-preferences__panel > p:not(.cookie-consent__eyebrow) {
    font-size: 16px;
  }
  .cookie-consent__policy {
    margin-bottom: 20px;
  }
  .cookie-consent__button {
    min-height: 50px;
    font-size: 12px;
  }
  .cookie-preferences {
    align-items: flex-end;
  }
  .cookie-preferences__panel {
    width: 100%;
    max-height: 92dvh;
    margin: 0;
    padding: 34px 20px 24px;
  }
  .cookie-preferences__close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }
  .cookie-preferences__panel > .cookie-consent__eyebrow,
  .cookie-preferences__panel > h2 {
    padding-right: 56px;
  }
  .cookie-preferences__categories {
    margin: 26px 0;
  }
  .cookie-preferences__category {
    min-height: 104px;
    gap: 18px;
  }
  .cookie-preferences__category h3 {
    font-size: 18px;
  }
  .cookie-preferences__category p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .blur-text__word,
  .blur-text.is-visible .blur-text__word {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

.footer-intro.footer-contact-launch {
  background:
    radial-gradient(ellipse at 32% 115%, #f3e8e5 0%, #e5dbd8 30%, rgb(203 194 191) 48%, rgba(45, 63, 80, 0) 76%),
    linear-gradient(130deg, #c5bcb9 0%, #d4c9c6 52%, #cdc3bf 100%);
}

/* Regolazioni desktop della sezione contatto e del logo nel footer. */
@media (min-width: 1101px) {
  .footer-intro.footer-contact-launch {
    padding: 110px 7vw 120px 180px;
    grid-template-columns: minmax(0, .8fr) minmax(353px, .72fr);
    gap: clamp(60px, 8vw, 190px);
  }
  .footer-information.footer-information {
    grid-template-columns: 1.2fr 1fr 1.25fr 3fr;
    gap: clamp(30px, 3vw, 68px);
  }
}

/* Footer compatto: stessa griglia tra 701px e 1280px. */
@media (min-width: 701px) and (max-width: 1280px) {
  .footer-information.footer-information {
    grid-template-columns: 1.6fr 1.6fr 1.6fr 0fr;
  }
}
.footer-address.footer-address > p:not(.footer-label),
.footer-contact.footer-contact a {
  margin: 0;
}
.footer-brand.footer-brand::before {
  content: none;
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  .menu-navigation a,
  .menu-columns > div,
  .menu-legal,
  .menu-share {
    opacity: 1;
    transform: none;
  }
  .footer-reveal.footer-motion-ready .footer-logo,
  .footer-reveal.footer-motion-ready .footer-address,
  .footer-reveal.footer-motion-ready .footer-contact,
  .footer-reveal.footer-motion-ready .footer-partners article,
  .footer-reveal.footer-motion-ready .footer-legal {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .menu-panel.open .menu-navigation a,
  .menu-panel.open .menu-columns > div,
  .menu-panel.open .menu-legal,
  .menu-panel.open .menu-share,
  .menu-panel.closing .menu-navigation a,
  .menu-panel.closing .menu-columns > div,
  .menu-panel.closing .menu-legal,
  .menu-panel.closing .menu-share {
    animation: none;
  }
}
.menu-navigation a:first-child {
  border-top: 0;
} /* Menu toggle: micro-interazione ispirata a PixelFlakes. */
.menu-button span,
.menu-close span {
  transform-origin: center;
  transition:
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.4s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-button:hover span,
.menu-button:focus-visible span {
  width: 20px;
}
.menu-panel.open .menu-close span:first-child {
  animation: menu-close-line-one 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-panel.open .menu-close span:last-child {
  animation: menu-close-line-two 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-close:hover span:first-child,
.menu-close:focus-visible span:first-child {
  width: 24px;
  transform: rotate(135deg);
}
.menu-close:hover span:last-child,
.menu-close:focus-visible span:last-child {
  width: 24px;
  transform: rotate(45deg);
}
@keyframes menu-close-line-one {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes menu-close-line-two {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-45deg);
  }
}
@media (max-width: 900px) {
  .menu-button:hover span,
  .menu-button:focus-visible span,
  .menu-close:hover span,
  .menu-close:focus-visible span {
    width: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-button span,
  .menu-close span {
    transition: none;
  }
  .menu-panel.open .menu-close span {
    animation: none;
  }
} /* L'intero pulsante si ritrae sotto il cursore, mantenendo fermo il centro. */
.menu-button,
.menu-close {
  transform-origin: center;
  transition: transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  .menu-button:hover,
  .menu-button:focus-visible,
  .menu-close:hover,
  .menu-close:focus-visible {
    transform: scale(0.84);
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-button,
  .menu-close {
    transition: none;
  }
} /* Indicatore scroll della hero, reinterpretato per Residenza Due90. */
.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  transform: translateX(-50%);
  transition: opacity 0.35s ease;
}
.hero-scroll-indicator__motion {
  position: relative;
  width: 28px;
  height: 70px;
  display: block;
}
.hero-scroll-indicator__trail,
.hero-scroll-indicator__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
}
.hero-scroll-indicator__trail {
  background: rgb(169 86 79 / 72%);
  animation: due90-scroll-trail 2.15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.hero-scroll-indicator__dot {
  background: #fff;
  box-shadow: 0 4px 18px rgb(0 0 0 / 18%);
  animation: due90-scroll-dot 2.15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.hero-scroll-indicator__label {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgb(0 0 0 / 28%);
}
.hero-scroll-indicator:hover {
  opacity: 0.72;
}
@keyframes due90-scroll-dot {
  0%,
  12% {
    transform: translateY(0);
  }
  48%,
  60% {
    transform: translateY(42px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes due90-scroll-trail {
  0%,
  12% {
    top: 0;
    height: 28px;
  }
  48% {
    top: 0;
    height: 70px;
  }
  60% {
    top: 42px;
    height: 28px;
  }
  61% {
    top: 0;
    height: 28px;
  }
  100% {
    top: 0;
    height: 28px;
  }
}
@media (max-width: 700px) {
  .hero-scroll-indicator {
    bottom: 34px;
    gap: 8px;
  }
  .hero-scroll-indicator__motion {
    transform: scale(0.86);
    transform-origin: bottom center;
  }
  .hero-scroll-indicator__label {
    font-size: 9px;
    letter-spacing: 0.17em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-indicator__trail,
  .hero-scroll-indicator__dot {
    animation: none;
  }
  .hero-scroll-indicator__trail {
    height: 70px;
  }
  .hero-scroll-indicator__dot {
    transform: translateY(42px);
  }
}

/* Navigazione laterale animata delle sezioni. */
.side-section-nav {
  position: fixed;
  top: 50%;
  right: auto;
  left: 20px;
  z-index: 89;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: #fff;
  mix-blend-mode: difference;
  transform: translateY(-50%);
  transition: opacity .35s ease, visibility .35s ease;
}
.side-section-nav:has(a[data-side-nav="home"].is-active) {
  color: #fff;
  mix-blend-mode: normal;
}
.side-section-nav:has(a[data-side-nav="progetto"].is-active) {
  color: #000000;
  mix-blend-mode: normal;
}
.side-section-nav a {
  min-width: 34px;
  min-height: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  gap: 11px;
  color: inherit;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .55s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
}
.side-section-nav.is-ready a { opacity: .58; transform: translateX(0); }
.side-section-nav.is-ready a:nth-child(2) { transition-delay: .035s; }
.side-section-nav.is-ready a:nth-child(3) { transition-delay: .07s; }
.side-section-nav.is-ready a:nth-child(4) { transition-delay: .105s; }
.side-section-nav.is-ready a:nth-child(5) { transition-delay: .14s; }
.side-section-nav.is-ready a:nth-child(6) { transition-delay: .175s; }
.side-section-nav.is-ready a:nth-child(7) { transition-delay: .21s; }
.side-section-nav.is-ready a:nth-child(8) { transition-delay: .245s; }
.side-section-nav.is-ready a:nth-child(9) { transition-delay: .28s; }
.side-section-nav.is-ready a:nth-child(10) { transition-delay: .315s; }
.side-section-nav.is-ready a:nth-child(11) { transition-delay: .35s; }
.side-section-nav a span {
  max-width: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .16em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(9px);
  transition: max-width .62s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.side-section-nav a i {
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  display: block;
  background: currentColor;
  transform-origin: left center;
  transition: width .62s cubic-bezier(.22, 1, .36, 1), opacity .3s ease, transform .3s ease;
}
.side-section-nav a.is-active,
.side-section-nav a:hover,
.side-section-nav a:focus-visible { opacity: 1; }
.side-section-nav a.is-arriving i,
.side-section-nav a:hover i,
.side-section-nav a:focus-visible i { width: 64px; }
.side-section-nav a:hover span,
.side-section-nav a:focus-visible span {
  max-width: 180px;
  opacity: 1;
  transform: translateX(0);
}
html.menu-open .side-section-nav,
html.modal-open .side-section-nav,
html.contact-modal-open .side-section-nav,
html.form-popup-open .side-section-nav,
html.legal-modal-open .side-section-nav,
html.cookie-preferences-open .side-section-nav {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.side-section-nav.is-over-hidden-section {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 900px) {
  .side-section-nav { display: none !important; }
}
@media (min-width: 901px) and (max-width: 1400px) {
  .side-section-nav {
    left: 8px;
  }
  .side-section-nav a i {
    width: 24px;
    background: currentColor;
  }
  .side-section-nav a.is-arriving i,
  .side-section-nav a:hover i,
  .side-section-nav a:focus-visible i {
    width: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .side-section-nav,
  .side-section-nav a,
  .side-section-nav a span,
  .side-section-nav a i { transition: none; }
}
@media (max-width: 540px) {
  .form-popup .form-popup__panel h2 {
    max-width: 100%;
    padding-right: 62px;
    font-size: clamp(24px, 6.3vw, 30px);
    line-height: 1.08;
  }
}
