:root {
  --nav-total-height: 92px;
  --black: #050505;
  --ink: #111111;
  --dark: #161616;
  --grey: #6f6f6f;
  --soft: #efefed;
  --line: rgba(0, 0, 0, 0.10);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --max-width: 1180px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', Arial, Helvetica, sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-total-height);
}

body {
  font-family: var(--sans);
  background: var(--soft);
  color: var(--ink);
  line-height: 1.55;
}

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

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

/* NAV */

.main-nav,
.sticky-nav {
  left: 0;
  width: 100%;
  height: var(--nav-total-height);
  z-index: 1000;
}

.main-nav {
  position: absolute;
  top: 0;
}

.sticky-nav {
  position: fixed;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0);
  transition: opacity .2s ease, visibility 0s linear .2s, box-shadow .2s ease;
}

.sticky-nav.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
  transition: opacity .45s ease, visibility 0s, box-shadow .45s ease;
}

.sticky-nav.compact {
  --nav-total-height: 78px;
}

.nav-flag,
.nav-main {
  background: rgba(255, 255, 255, .98);
}

.nav-stripe {
  display: none;
}

.nav-main {
  height: var(--nav-total-height);
  display: flex;
  align-items: center;
}

.main-nav .container.nav-inner,
.sticky-nav .container.nav-inner {
  width: calc(100% - 40px);
  max-width: none;
  margin-left: 20px;
  margin-right: 20px;
}

.nav-inner {
  min-height: var(--nav-total-height);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 136px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  filter: none !important;
}

.sticky-nav.compact .brand-logo {
  width: 116px;
  max-height: 62px;
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.8rem, 4vw, 4rem);
  width: auto;
  white-space: nowrap;
  color: var(--ink);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  text-align: center;
}

.nav-links a {
  position: relative;
  padding: .4rem .05rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links .home-link::after {
  transform: scaleX(1);
}

.menu-toggle {
  position: relative;
  z-index: 3;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 46px;
  height: 46px;
  line-height: 1;
  background: transparent;
  border: 0;
  color: var(--black);
  font-size: 2rem;
  cursor: pointer;
}

/* HERO */

.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  background: #000;
}

.hero.dragging {
  cursor: grabbing;
}

.slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0;
  background: #000;
  transition: transform .45s ease;
  will-change: transform;
  touch-action: pan-y;
}

.slide {
  position: relative;
  min-width: calc(100% + 2px);
  flex: 0 0 calc(100% + 2px);
  width: 100%;
  height: 100%;
  margin-right: -2px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.slide img {
  width: calc(100% + 4px);
  max-width: none;
  height: 100%;
  margin-left: -2px;
  object-fit: cover;
  filter: none !important;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.slide-overlay .container.hero-content {
  position: relative;
  width: fit-content;
  max-width: min(90vw, 620px);
  margin-left: clamp(105px, 10vw, 180px);
  margin-right: auto;
  padding: 2rem;
  /*padding-top: calc(14vh + 2rem);*/
  transform: translateY(95px);
  color: #fff;
  text-align: left;
  pointer-events: auto;
}

.slide-overlay .container.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, .5);
  pointer-events: none;
}

.slide-overlay .container.hero-content > * {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero h1 span {
  display: none;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}

.hero p {
  max-width: 38ch;
  margin-bottom: 1.6rem;
  font-size: clamp(.95rem, 1.15vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .92);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 1rem 1.5rem;
  border-radius: 0;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

.btn-primary {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-secondary {
  background: rgba(0, 0, 0, .18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .75);
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
}

.slide-nav {
  position: absolute;
  top: 54%;
  transform: translateY(-54%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .25s ease, transform .25s ease;
}

.slide-nav:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-54%) scale(1.04);
}

.slide-nav-prev {
  left: 1.25rem;
}

.slide-nav-next {
  right: 1.25rem;
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}

.slider-dots {
  display: flex;
  gap: .75rem;
}

.dot {
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.25);
}

.mouse-scroll-down {
  cursor: pointer;
  opacity: .9;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 24px;
  position: relative;
}

.scroll-wheel {
  display: block;
  width: 4px;
  height: 8px;
  border-radius: 8px;
  background: #fff;
  margin: 7px auto;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(9px);
  }
}

/* SECTIONS */

section {
  padding: 5rem 0;
}

.section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: .75rem;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
  line-height: 1.05;
  margin-bottom: .8rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: -.035em;
  text-transform: none;
  color: var(--ink);
}

.section-title span {
  color: inherit;
}

.section-lead {
  max-width: 58ch;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #343434;
  font-size: 1rem;
}

/* CHI SIAMO */

#chi-siamo {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card,
.service-card {
  background: #fff;
  box-shadow: none;
  border-radius: 0;
}

.service-card {
  min-height: 235px;
  padding: 2rem;
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
}

.service-icon {
  color: var(--black);
  margin-bottom: 1rem;
}

.service-icon .material-symbols-outlined {
  font-size: 3.1rem;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48;
}

.service-card h3 {
  margin-bottom: .7rem;
  font-size: .86rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}

.service-card p {
  color: var(--grey);
  font-size: .94rem;
}

/* COLLEZIONI */

.collections {
  background: linear-gradient(180deg, #f6f6f4 0%, #ededeb 100%);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.collection-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}

.collection-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none !important;
  background: #ddd;
  transition: transform .6s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: auto;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .05) 0%,
    rgba(0, 0, 0, .35) 55%,
    rgba(0, 0, 0, .85) 100%
  );
}

.collection-content h3 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: .75rem;
  color: #fff;
}

.collection-content h3::after {
  display: none;
}

.collection-content p {
  max-width: 34ch;
  color: rgba(255, 255, 255, .9);
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.text-link {
  display: none;
}

.highlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 180px;
  padding: 1rem 1.5rem;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .75rem;
  font-weight: 600;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.highlight-btn:hover {
  background: #fff;
  color: #000;
  border-color: #000;
  transform: translateY(-2px);
}

/* NUMBERS / CONTATTI */

.numbers {
  background: #080808;
  color: #fff;
  text-align: center;
}

.numbers .section-title,
.numbers .section-lead {
  color: #fff;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.number-card {
  background: #080808;
  padding: 2rem;
}

.number-card strong {
  display: block;
  margin-bottom: .35rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
}

.number-card span {
  color: rgba(255, 255, 255, .72);
}

/* FOOTER */

.footer-site {
  background: #050505;
  color: rgba(255, 255, 255, .82);
  padding: 3.25rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  width: 240px;
  height: auto;
  filter: brightness(0) invert(1) grayscale(1) contrast(3) !important;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  display: grid;
  gap: .75rem;
}

.footer-column li,
.footer-column a {
  color: rgba(255, 255, 255, .72);
  transition: color .25s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom-bar {
  background: #000;
  margin-top: 2rem;
  padding: 1.2rem 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .75rem;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  color: rgba(255, 255, 255, .62);
  font-size: .9rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .9rem;
  flex-wrap: wrap;
}

.footer-credit-label {
  color: rgba(255, 255, 255, .74);
  font-size: .9rem;
}

.footer-credit-badge img {
  max-height: 40px;
  width: auto;
}

.footer-links a:hover {
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-credit,
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 460px;
  }
}

@media (max-width: 900px) {
  .services-grid,
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .slide-overlay .container.hero-content {
    width: min(420px, calc(100% - 120px));
    margin-left: clamp(90px, 9vw, 130px);
  }
}

@media (max-width: 760px) {
  :root {
    --nav-total-height: 86px;
  }

  .main-nav .container.nav-inner,
  .sticky-nav .container.nav-inner {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .brand-logo {
    width: 105px;
    max-height: 65px;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-total-height);
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    transform: none;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 20px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
  }

  .nav-links.open {
    display: flex;
  }

  .slide-nav {
    width: 42px;
    height: 42px;
  }

  .slide-nav-prev {
    left: .75rem;
  }

  .slide-nav-next {
    right: .75rem;
  }

  .slide-overlay {
    align-items: flex-end;
    justify-content: center;
    padding: calc(var(--nav-total-height) + 1rem) 4.5rem 9.75rem;
  }

  .slide-overlay .container.hero-content {
    width: fit-content;
    max-width: calc(100vw - 7rem);
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    transform: none;
    text-align: center;
  }

  .hero-content p {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: nowrap;
    gap: .5rem;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
    min-width: 0;
    max-width: none;
    padding: .8rem .9rem;
    font-size: .65rem;
    letter-spacing: .06em;
    white-space: nowrap;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 430px;
  }

  .collection-content {
    padding: 2rem;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom,
  .footer-legal,
  .footer-credit {
    text-align: center;
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .slide-overlay {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 10rem;
  }

  .slide-overlay .container.hero-content {
    padding: 1.25rem;
    transform: none;
  }

  .hero-actions .btn,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    max-width: none;
    padding: .72rem .72rem;
    font-size: .6rem;
  }
}