:root {
  --bg: #ebebeb;
  --text: #232323;
  --muted: #666;
  --line: #d7d7d7;
  --dark: #151719;
  --card-bg: #efefef;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

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

.frame {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  padding: 10px 0 4px;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}

.logo img {
  width: clamp(170px, 26vw, 254px);
  height: auto;
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  background: transparent;
  display: grid;
  gap: 4px;
  place-content: center;
}

.menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: #2a2a2a;
}

.nav {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: min(240px, 86vw);
  background: #f2f2f2;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 10;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

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

.nav a {
  text-decoration: none;
  color: #232323;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 14px;
  border-top: 1px solid #dfdfdf;
}

.nav a:first-child {
  border-top: 0;
}

.main {
  padding-bottom: 24px;
}

.hero {
  margin-top: 14px;
  min-height: 380px;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.68) 0%, rgba(18, 18, 18, 0.5) 44%, rgba(18, 18, 18, 0.1) 72%),
    url("assets/images/hero-banner.png") center right / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero__overlay {
  width: min(560px, calc(100% - 36px));
  margin-left: 18px;
  color: #fff;
}

.hero__line {
  display: block;
  width: 54px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.hero__eyebrow {
  margin: 0 0 12px;
  font-size: clamp(0.76rem, 2.1vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero h1 {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(2.4rem, 7.7vw, 5.4rem);
  line-height: 0.95;
  font-weight: 700;
}

.hero__text {
  margin: 14px 0 0;
  max-width: 30ch;
  font-size: clamp(1rem, 3vw, 1.36rem);
  line-height: 1.15;
  color: #e8e8e8;
}

.brands {
  padding-top: 16px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(0.84rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #4f4f4f;
}

.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: clamp(28px, 6vw, 62px);
  height: 1px;
  background: #6f6f6f;
  vertical-align: middle;
  margin: 0 10px;
}

.brands-carousel {
  margin-top: 14px;
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: brands-scroll 35s linear infinite;
}

.brands-carousel:hover .brands-track {
  animation-play-state: paused;
}

.brands-track img {
  height: 30px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
  opacity: 0.95;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brands-track img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@keyframes brands-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.about {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.about__image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  background: #d5d5d5;
  filter: grayscale(100%);
}

.about__content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 4.6vw, 2.1rem);
  font-weight: 600;
}

.about__content p {
  margin: 0 0 10px;
  font-size: clamp(0.84rem, 2.3vw, 0.96rem);
  line-height: 1.5;
  color: #5f5f5f;
}

.features {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.feature-card {
  min-height: 142px;
  background: var(--card-bg);
  border: 1px solid #dfdfdf;
  padding: 16px 12px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: auto;
  height: 30px;
  max-width: none;
  object-fit: contain;
  margin: 0 auto 8px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: clamp(0.6rem, 1.7vw, 0.76rem);
  letter-spacing: 0.07em;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: clamp(0.56rem, 1.6vw, 0.67rem);
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: #666;
}

.gallery {
  margin-top: 16px;
}

.gallery__grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gallery__grid img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #d5d5d5;
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.gallery__grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.14);
  filter: saturate(1.03);
}

.no-scroll {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1200px);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 22px 8px;
}

.lightbox__image {
  max-height: calc(100vh - 44px);
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.lightbox__image.is-transitioning {
  opacity: 0.25;
  transform: translateX(8px);
}

.lightbox__close,
.lightbox__nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.03);
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox__nav {
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.location {
  margin-top: 16px;
  background: var(--dark);
  padding: 18px;
  display: grid;
  gap: 18px;
  align-items: center;
}

.location__content {
  color: #fff;
}

.location__eyebrow {
  margin: 0 0 6px;
  font-size: clamp(0.62rem, 1.6vw, 0.7rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aeaeae;
}

.location h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 2.62rem);
  line-height: 0.95;
  font-weight: 600;
}

.location p {
  margin: 0 0 12px;
  color: #d8d8d8;
  font-size: clamp(0.82rem, 2.2vw, 0.93rem);
  line-height: 1.4;
}

.location__image {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  background: #303030;
}

.showcase-placeholder {
  height: clamp(170px, 23vw, 260px);
  margin-top: 16px;
  background: #cecece;
  overflow: hidden;
}

.showcase-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(100%);
}

.footer {
  padding: 14px 0 10px;
}

.footer__grid {
  display: grid;
  gap: 14px;
  align-items: center;
}

.logo--footer img {
  width: clamp(140px, 20vw, 170px);
  height: auto;
}

.footer h3 {
  margin: 0 0 8px;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #3d3d3d;
}

.footer__contact {
  font-style: normal;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #454545;
  color: #2f2f2f;
  text-decoration: none;
  font-size: 0.78rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.social-icons a img {
  width: 12px;
  height: 12px;
  max-width: none;
  object-fit: contain;
}

.social-icons a:hover {
  background: #1e1e1e;
  color: #fff;
}

.footer__contact a {
  display: block;
  text-decoration: none;
  color: #6b6b6b;
  font-size: 0.68rem;
  line-height: 1.45;
}

.footer__copy {
  margin: 12px 0 0;
  text-align: center;
  color: #9a9a9a;
  font-size: 0.52rem;
  letter-spacing: 0.09em;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #1e1e1e;
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.whatsapp-float__icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 22px;
}

@media (min-width: 481px) {
  .hero {
    min-height: 460px;
  }

  .hero__overlay {
    margin-left: 34px;
  }

  .about__image,
  .location__image {
    min-height: 290px;
  }
}

@media (min-width: 769px) {
  .header {
    padding-top: 12px;
  }

  .hero {
    min-height: 589px;
  }

  .hero__overlay {
    margin-left: 96px;
  }

  .brands-track {
    gap: 42px;
  }

  .brands-track img {
    height: 30px;
    width: auto;
  }

  .about {
    margin-top: 26px;
    grid-template-columns: 519px 1fr;
    gap: 24px;
    align-items: center;
  }

  .about__image {
    min-height: 333px;
  }

  .features {
    margin-top: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-card {
    min-height: 176px;
    padding: 18px 14px;
  }

  .gallery {
    margin-top: 24px;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .lightbox__dialog {
    padding: 28px 14px;
    gap: 16px;
  }

  .lightbox__close {
    top: 20px;
    right: 20px;
  }

  .location {
    margin-top: 24px;
    padding: 24px 28px;
    grid-template-columns: 1fr 1.08fr;
  }

  .location__image {
    min-height: 378px;
  }

  .showcase-placeholder {
    margin-top: 18px;
    height: 228px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: end;
  }
}

@media (min-width: 1025px) {
  .showcase-placeholder {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .lightbox__dialog {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 16px 12px 26px;
  }

  .lightbox__image {
    max-height: calc(100vh - 140px);
  }

  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
  }

  .lightbox__nav--prev {
    left: 10px;
  }

  .lightbox__nav--next {
    right: 10px;
  }
}
