:root {
  --bg: #ffffff;
  --text: #1d1d1f;
  --muted: #6b7280;
  --dark: #0f1115;
  --dark-2: #171a21;
  --accent: #ca9e67;
  --accent-dark: #b88b54;
  --card: #f8f8f8;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  margin: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  text-decoration: none;
}

main {
  background: #fff;
}

/* NAVBAR */
.gs-nav {
  background: #000;
  backdrop-filter: blur(14px);
  transition: background-color .25s ease, box-shadow .25s ease;
  z-index: 1030;
}

.gs-brand-text {
  color: #fff;
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .95rem;
}

.gs-menu .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  padding-inline: 1rem !important;
  transition: color .2s ease;
}

.gs-menu .nav-link:hover,
.gs-menu .nav-link.active {
  color: #fff;
}

.gs-cta {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all .2s ease;
}

.gs-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.navbar-toggler {
  width: 40px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000000;
}

.navbar-toggler span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.gs-brand img {
  height: 72px;       
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
}

/* MOBILE OVERLAY */
.gs-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.96);
  color: #fff;
}

.gs-mobile-overlay__inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.gs-overlay-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.35rem;
}

.gs-mobile-center {
  flex: 1;
  display: grid;
  place-items: center;
}

.gs-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.gs-mobile-link {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
}

.gs-mobile-link.is-active {
  color: var(--accent);
}

.gs-mobile-footer {
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}

/* HERO */
#hero-carousel {
  position: relative;
  min-height: 100vh;
  margin-top: -88px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding-top: 88px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 1rem;
  max-width: 980px;
  margin-inline: auto;
}

.hero-subtitle {
  max-width: 760px;
  margin: 0 auto 1.5rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: .95rem 1.4rem;
  font-weight: 600;
  min-width: 180px;
  transition: all .2s ease;
}

.hero-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.hero-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-indicators {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 2;
}

.indicator {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
  letter-spacing: .08em;
  padding: 0;
}

.indicator.active {
  color: #fff;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SHARED SECTION STYLES */
.gs-story,
.gs-catalog,
.gs-testimonials {
  position: relative;
  background: #fff;
}

.gs-story {
  padding-block: 88px 80px;
}

.gs-catalog,
.gs-testimonials {
  padding-block: 88px;
}

.gs-story-title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: #171717;
  margin: 0;
}

.gs-story-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
}

/* FEATURE CARDS */
.gs-feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease, color .25s ease;
}

.gs-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background-color: #ca9e67;
  color: #e8f6ee;
}

.gs-feature-card:hover .gs-feature-title {
  color: #ffffff;
}

.gs-feature-card:hover .gs-feature-ic {
  color: #ffffff;
}

.gs-feature-card:hover .gs-feature-ic {
  background: rgba(255,255,255,0.15);
}

.gs-feature-ic {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(202, 158, 103, 0.12);
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background .25s ease, color .25s ease;
}

.gs-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: #171717;
  transition: color .25s ease;
}


/* PRODUCT GRID */
.gs-product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gs-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gs-product-media {
  display: block;
  aspect-ratio: 4 / 4.3;
  background: #f3f4f6;
  overflow: hidden;
}

.gs-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gs-product-card:hover .gs-product-media img {
  transform: scale(1.04);
}

.gs-product-body {
  padding: 1rem 1rem 1.2rem;
}

.gs-product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: .35rem;
}

.gs-product-price {
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.gs-btn-add,
.gs-btn-add2 {
  border-radius: 999px;
  padding: .7rem 1rem;
  font-size: .95rem;
}

.gs-btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--dark);
  color: var(--dark);
  font-weight: 600;
  transition: all .2s ease;
}

.gs-btn-more:hover {
  background: var(--dark);
  color: #fff;
}

/* GALLERY */
.gs-gallery {
  padding-block: 88px;
  background: #fff;
}

.gs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 160px;
  gap: 18px;
}

.gs-g-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f4f6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gs-g-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.gs-g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.gs-g-item:hover img {
  transform: scale(1.05);
}

.span-5x2 {
  grid-column: span 5;
  grid-row: span 2;
}

.span-4x1 {
  grid-column: span 4;
  grid-row: span 1;
}

.span-3x1 {
  grid-column: span 3;
  grid-row: span 1;
}

/* LIGHTBOX */
.gs-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 3000;
  transition: opacity .25s ease, visibility .25s ease;
}

.gs-lightbox:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gs-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.gs-lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  text-decoration: none;
  z-index: 2;
}

/* TESTIMONIALS */
.gs-t-card {
  position: relative;
  background: var(--card);
  border-radius: 14px;
  padding: 20px 22px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  overflow: hidden;
  min-height: 210px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.gs-t-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.gs-t-card::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -8px;
  width: 180px;
  height: 140px;
  background: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 160' fill='none' stroke='%23D9D9D9' stroke-width='4' opacity='0.4'>\
    <path d='M40 130c10-30 30-50 60-60'/>\
    <path d='M80 140c8-18 20-32 36-44'/>\
    <rect x='110' y='112' width='70' height='40' rx='8' />\
  </svg>") center/contain no-repeat;
  pointer-events: none;
}

.gs-t-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gs-t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid rgba(202, 158, 103, .25);
  background: #e8f6ee;
  font-weight: 700;
  color: #111827;
}

.gs-t-author {
  font-weight: 700;
  color: #111827;
}

.gs-t-text {
  margin: 0;
  color: #4b5563;
  line-height: 1.75;
}

/* CTA */
.gs-newsletter {
  position: relative;
  isolation: isolate;
  padding-block: 72px;
  color: #fff;
  background: #0b0b0b;
}

.gs-newsletter__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .52), rgba(0, 0, 0, .56)),
    url("./unnamed.jpg") center/cover no-repeat;
}

.gs-newsletter__title {
  color: #fff !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .35);
}

.gs-newsletter__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gs-stats {
  padding-block: 88px;
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.gs-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gs-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.gs-stat-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(202, 158, 103, 0.12);
  color: var(--accent);
  font-size: 1.6rem;
}

.gs-stat-number {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
  color: #171717;
  margin-bottom: .75rem;
}

.gs-stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 991.98px) {
  .gs-stats {
    padding-block: 64px;
  }
}

@media (max-width: 575.98px) {
  .gs-stats {
    padding-block: 48px;
  }

  .gs-stat-card {
    padding: 1.6rem 1.2rem;
  }
}

/* FOOTER */
.site-footer {
  position: relative;
  background: #111;
  padding-top: 56px;
}

.footer-title {
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #fff;
}

.footer-social .social-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 1.2rem;
  transition: all .2s ease;
}

.footer-social .social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-nav {
  margin: 0;
}

.footer-link {
  color: rgba(255, 255, 255, .8);
  transition: color .2s ease;
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1rem 0;
  background: rgba(0, 0, 0, .35);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bg-left,
.footer-bg-right {
  position: absolute;
  bottom: 52px;
  width: 340px;
  height: 260px;
  opacity: .3;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer-bg-left {
  left: -10px;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 180'>\
    <g fill='none' stroke='%23E6C29D' stroke-width='12' stroke-linecap='round' stroke-linejoin='round' opacity='0.9'>\
      <path d='M30 140c22-38 52-68 92-86'/>\
      <path d='M54 160c18-22 38-40 62-54'/>\
      <path d='M20 110c12-10 26-18 42-24'/>\
    </g>\
  </svg>");
}

.footer-bg-right {
  right: -6px;
  width: 360px;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 180'>\
    <g fill='none' stroke='%23E6C29D' stroke-width='12' stroke-linecap='round' stroke-linejoin='round' opacity='0.9'>\
      <path d='M30 150c24-32 54-58 92-78'/>\
      <path d='M72 160c20-24 44-44 72-60'/>\
      <path d='M120 166c16-18 34-34 56-46'/>\
    </g>\
  </svg>");
}
.gs-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.gs-map-wrapper {
  border-radius: 14px;
  overflow: hidden;
}

.gs-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}
.contact-hero .hero-content {
  min-height: 48vh;
  padding-top: 0;
}
/* RESPONSIVE */
@media (max-width: 991.98px) {
  #hero-carousel {
    margin-top: -76px;
  }

  .gs-story,
  .gs-catalog,
  .gs-testimonials {
    padding-block: 64px;
  }

  .gs-story .gs-story-head,
  .gs-story .gs-story-title,
  .gs-story .gs-story-lead {
    text-align: center;
  }

  .gs-newsletter {
    padding-block: 56px;
  }

  .footer-bg-left {
    left: -60px;
    width: 300px;
    height: 220px;
    bottom: 48px;
  }

  .footer-bg-right {
    right: -60px;
    width: 300px;
    height: 220px;
    bottom: 48px;
  }
}
/* RESPONSIVE GALLERY */
@media (max-width: 991.98px) {
  .gs-gallery {
    padding-block: 64px;
  }

  .gs-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .span-5x2,
  .span-4x1,
  .span-3x1 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .span-5x2:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 575.98px) {
  .gs-gallery {
    padding-block: 48px;
  }

  .gs-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 14px;
  }

  .span-5x2,
  .span-4x1,
  .span-3x1,
  .span-5x2:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gs-lightbox {
    padding: 20px;
  }

  .gs-lightbox__close {
    top: 14px;
    right: 18px;
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: .98rem;
  }

  .hero-indicators {
    bottom: 20px;
    gap: .75rem;
  }

  .gs-story,
  .gs-catalog,
  .gs-testimonials {
    padding-block: 48px;
  }

  .gs-newsletter {
    padding-block: 42px;
  }

  .gs-newsletter__form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 42px;
  }

  .footer-bg-left,
  .footer-bg-right {
    opacity: .22;
  }
}


/* CHI SIAMO PAGE */
.gs-about-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gs-about-slider .carousel-inner {
  border-radius: 24px;
}

.gs-about-slider__img {
  height: clamp(320px, 52vw, 620px);
  object-fit: cover;
}

.gs-about-slider .carousel-control-prev,
.gs-about-slider .carousel-control-next {
  width: 10%;
}

.gs-about-slider .carousel-control-prev-icon,
.gs-about-slider .carousel-control-next-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: rgba(15, 17, 21, 0.45);
  background-size: 42%;
}

.gs-about-slider__indicators {
  margin-bottom: 1.2rem;
}

.gs-about-slider__indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  opacity: .55;
  background-color: #fff;
}

.gs-video-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.gs-video-frame {
  background: #0f1115;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.gs-video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

@media (max-width: 575.98px) {
  .gs-about-slider__img {
    height: 280px;
  }
}
