@font-face {
  font-family: Metropolis;
  src: url('../fonts/metropolis-regular-webfont.woff2')
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth
}
body {
  margin: 0;
  background: #f3f3f0;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45
}
img {
  max-width: 100%;
  display: block
}
a {
  color: inherit;
  text-decoration: none
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  transition: .25s;
  background: linear-gradient(#0009, transparent)
}
.site-header.is-solid, .store-page .site-header {
  background: #111
}
.brand img {
  width: 150px;
  max-height: 44px
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em
}



.main-nav > a {
  position: relative
}
.main-nav > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: .2s
}
.main-nav > a:hover:after {
  width: 100%
}
.header-socials {
  display: flex;
  gap: 12px;
  border-left: 1px solid #ffffff55;
  padding-left: 22px
}
.header-socials a, .footer-socials a {
  text-transform: capitalize
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 8px
}
.hero {
  height: min(82vh, 850px);
  background: #111
}
.hero picture, .hero img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.logo-band {
  padding: 54px 24px 70px;
  display: flex;
  justify-content: center;
  background: #f3f3f0
}
.logo-band img {
  width: min(430px, 70vw)
}
.section {
  padding: clamp(70px, 10vw, 150px) clamp(22px, 6vw, 100px)
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: clamp(28px, 4vw, 72px);
  align-items: start
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 16px
}
.about h1, .section-heading h1, .section-heading h2 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: .9;
  text-transform: uppercase;
  margin: 0
}
.about-copy {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6
}
.about-copy p:first-child {
  margin-top: 0
}
.about-media {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover
}
.products {
  background: #111;
  color: #fff
}
.section-heading {
  margin-bottom: 55px
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 28px
}
.product-card {
  cursor: pointer;
  outline: none
}
.product-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: #222
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}
.product-card:hover .product-image img, .product-card:focus .product-image img {
  transform: scale(1.035)
}
.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #fff;
  color: #111;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em
}
.product-copy {
  padding-top: 20px
}
.product-copy h3 {
  font-size: clamp(22px, 2vw, 32px);
  margin: 3px 0 12px;
  text-transform: uppercase
}
.product-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  opacity: .65
}
.product-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .1em
}
.load-more, .button {
  margin: 55px auto 0;
  display: block;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 15px 24px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
  cursor: pointer
}
.retailers {
  overflow: hidden
}
.marquee {
  overflow: hidden;
  border-top: 1px solid #bbb;
  border-bottom: 1px solid #bbb
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 26s linear infinite
}
.marquee:hover .marquee-track {
  animation-play-state: paused
}
.retailer {
  width: 240px;
  height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 25px;
  border-right: 1px solid #bbb
}
.retailer img {
  max-height: 75px;
  max-width: 150px;
  object-fit: contain
}
.retailer span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .12em
}
@keyframes scroll {
  to {
    transform: translateX(-50%)
  }
}
.site-footer {
  background: #111;
  color: #fff;
  padding: 65px clamp(22px, 6vw, 100px);
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  gap: 30px;
  align-items: end
}
.footer-logo {
  width: 180px
}
.footer-contacts, .footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.copyright {
  margin: 0;
  text-align: right;
  font-size: 12px
}
.product-modal {
  width: min(1000px, 92vw);
  border: 0;
  padding: 0;
  background: #f3f3f0
}
.product-modal::backdrop {
  background: #000b
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 38px;
  z-index: 2
}
.modal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr
}
.modal-grid > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover
}
.modal-grid > div {
  padding: 65px 45px
}
.modal-grid h2 {
  font-size: 45px;
  line-height: 1;
  text-transform: uppercase
}
.modal-grid .button {
  margin: 30px 0 0;
  width: max-content
}
.store-main {
  padding: 150px clamp(20px, 4vw, 60px) 70px;
  min-height: 75vh
}
.ecwid-wrap {
  margin-top: 45px;
  min-height: 650px;
  background: #fff
}
.ecwid-frame {
  width: 100%;
  height: 1000px;
  border: 0
}
.store-placeholder {
  padding: 40px
}
.store-page .section-heading h1 {
  font-size: clamp(50px, 8vw, 100px)
}
@media(max-width:900px) {
  .menu-toggle {
    display: block
  }
  .main-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    background: #111;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px
  }
  .main-nav.is-open {
    display: flex
  }
  .header-socials {
    border: 0;
    padding: 15px 0 0
  }
  .about {
    grid-template-columns: 1fr 1fr
  }
  .about-media {
    grid-column: 1/-1
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .site-footer {
    grid-template-columns: 1fr 1fr
  }
  .copyright {
    text-align: left
  }
  .modal-grid {
    grid-template-columns: 1fr
  }
  .modal-grid > img {
    min-height: 300px;
    max-height: 55vh
  }
  .modal-grid > div {
    padding: 35px 28px
  }
}
@media(max-width:620px) {
  .site-header {
    height: 70px
  }
  .brand img {
    width: 125px
  }
  .main-nav {
    inset: 70px 0 auto
  }
  .hero {
    height: 72vh
  }
  .logo-band {
    padding: 40px 20px 55px
  }
  .about {
    grid-template-columns: 1fr
  }
  .about-media {
    grid-column: auto
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 55px
  }
  .section {
    padding: 70px 20px
  }
  .site-footer {
    grid-template-columns: 1fr
  }
  .retailer {
    width: 190px;
    height: 140px
  }
  .modal-grid h2 {
    font-size: 34px
  }
}
/* Refinements v1.1 */
.logo-band {
  background: #050505;
  padding: 54px 24px 70px
}
.logo-band img {
  filter: none
}
.about-intro {
  margin: 26px 0 0;
  max-width: 28ch;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: #3e3e3e
}
.site-footer {
  display: block;
  padding: 0;
  background: #090909;
  color: #fff;
  border-top: 1px solid #2b2b2b
}
.footer-top {
  padding: 72px clamp(22px, 6vw, 100px) 58px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: start
}
.footer-brand p {
  margin: 24px 0 0;
  color: #aaa;
  line-height: 1.65;
  max-width: 260px
}
.footer-logo {
  width: min(210px, 65vw)
}
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start
}
.footer-column > a, .footer-contacts a, .footer-socials a {
  color: #d8d8d8;
  font-size: 14px;
  transition: .2s
}
.footer-column > a:hover, .footer-contacts a:hover, .footer-socials a:hover {
  color: #fff;
  transform: translateX(3px)
}
.footer-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 800;
  color: #777
}
.footer-contacts, .footer-socials {
  display: flex;
  flex-direction: column;
  gap: 11px
}
.footer-bottom {
  border-top: 1px solid #242424;
  padding: 22px clamp(22px, 6vw, 100px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: #777;
  font-size: 12px
}
.footer-bottom a {
  color: #bcbcbc;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 10px;
  font-weight: 700
}
.copyright {
  text-align: left
}
@media(max-width:900px) {
  .site-header {
    background: #111
  }
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr
  }
  .footer-brand {
    grid-column: 1/-1
  }
}
@media(max-width:620px) {
  body:not(.store-page) {
    padding-top: 70px
  }
  .site-header {
    position: fixed;
    background: #111
  }
  .hero {
    height: calc(72vh - 70px);
    min-height: 430px
  }
  .main-nav {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 18px 40px #0008
  }
  .about-title {
    padding-bottom: 8px
  }
  .about-intro {
    max-width: none;
    margin-top: 20px
  }
  .logo-band {
    padding: 38px 20px 48px
  }
  .footer-top {
    padding: 56px 20px 42px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px
  }
  .footer-brand {
    grid-column: 1/-1
  }
  .footer-bottom {
    padding: 20px;
    align-items: flex-start
  }
}
@media(max-width:420px) {
  .footer-top {
    grid-template-columns: 1fr
  }
  .footer-brand {
    grid-column: auto
  }
}
/* Gallery automatica sezione Chi siamo — v1.7.3
   Animazione solo CSS: funziona anche se Google Sheets/API è lento o non disponibile. */
.about-gallery {
  position: relative;
  background: #ddd;
  isolation: isolate
}
.about-gallery .about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: aboutGalleryFade 16s infinite ease-in-out;
  will-change: opacity;
}
.about-gallery .about-slide:nth-child(1) {
  animation-delay: 0s
}
.about-gallery .about-slide:nth-child(2) {
  animation-delay: 4s
}
.about-gallery .about-slide:nth-child(3) {
  animation-delay: 8s
}
.about-gallery .about-slide:nth-child(4) {
  animation-delay: 12s
}
@keyframes aboutGalleryFade {
  0% {
    opacity: 0
  }
  5% {
    opacity: 1
  }
  22% {
    opacity: 1
  }
  27% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}
@media (prefers-reduced-motion:reduce) {
  .about-gallery .about-slide {
    animation: none;
    opacity: 0
  }
  .about-gallery .about-slide:first-child {
    opacity: 1
  }
}