/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2026 | 02:59:29 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}
  /* ─── MOBILE RESPONSIVE ───────────────────────────────── */
  @media (max-width: 992px) {
    header {
      padding: 0 var(--gutter) !important;
      height: 60px;
    }

    .logo {
      font-size: 24px;
      letter-spacing: 2px;
    }
    .logo-blade {
      width: 28px;
      height: 28px;
    }

    .mobile-menu-toggle {
      display: block;
    }

    .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(8,8,8,0.95);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      flex-direction: column;
      gap: 0;
      padding: 20px;
      align-items: flex-start;
      transition: all 0.3s ease;
    }
    .nav-menu.open {
      display: flex;
    }

    nav a, .nav-dropdown > a {
      padding: 12px 0;
      width: 100%;
      border-bottom: 1px solid var(--border);
    }

    .nav-dropdown > a::after {
      content: ' ▶';
    }

    .dropdown-menu {
      position: static;
      transform: none;
      background: none;
      border: none;
      min-width: auto;
      display: none;
      width: 100%;
      padding-left: 20px;
      transition: all 0.3s ease;
    }
    .nav-dropdown.open .dropdown-menu {
      display: block;
    }
    .dropdown-menu a {
      padding: 8px 0;
      border-bottom: 1px solid rgba(245,245,240,0.05);
    }

    .btn-shopify {
      margin-top: 20px;
      width: 100%;
      text-align: center;
    }
  }

@media (width > 992px) {
	
	.nav-dropdown {
  position: relative;
}

.dropdown-menu.brxe-div {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);

  min-width: 180px;
  padding: 8px 0;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.25s cubic-bezier(0.58,0.3,0.005,1);
}

/* SHOW */
.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
}
@keyframes shiftLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(10%); }
  }

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}


nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--white);
}

nav a.active {
	 color: var(--accent);
}

section {
  position: relative;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}


.stagger > * {
  transition-delay: calc(var(--i, 0) * 0.1s);
}


.gallery__open-btn {
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
border-bottom: 1px solid var(--border-strong);
  
  &:hover {
    color: var(--white);
  	border-color: var(--white);
  }
}
.gallery {
  display: none;
}

.gallery--active {
  display: block;
}

.gallery__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.gallery__modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  z-index: 1100;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery__img {
  width: 100%;
  cursor: pointer;
}

.gallery__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #000;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

/* Lightbox */
.gallery__lightbox {
  display: none;
}

.gallery__lightbox--active {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:black;
  z-index: 9999;
}

.gallery__lightbox-img {
  max-width: 80%;
  max-height: 80%;
}

.gallery__lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

