/** Shopify CDN: Minification failed

Line 86:1 Expected "}" to go with "{"

**/
/* ============================================================
   EXP Nav — scoped dark navigation
   ============================================================ */

.exp-nav {
  width: 100%;
  background-color: #000;

.exp-nav--sticky {
  position: sticky;
  top: 0;
}

.exp-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
}

.exp-nav__logo img {
  display: block;
  height: 32px;
  width: auto;
}

.exp-nav__logo-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.exp-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.exp-nav__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.exp-nav__link:hover {
  color: #fff;
}

/* Mobile — collapse links (hamburger out of scope for now) */
@media (max-width: 767px) {
  .exp-nav__inner {
    padding: 0 20px;
  }

  .exp-nav__links {
    display: none;
  }
}

/* Fix EXP Nav collapsed on Brain Dead page */
body.template-exp-brain-dead #shopify-section-template--20036849598517__exp-nav .exp-nav {
  display: flex !important;
  align-items: center;
  width: 100%;
  min-height: 60px;
}

body.template-exp-brain-dead #shopify-section-template--20036849598517__exp-nav .exp-nav__inner {
  display: flex !important;
  align-items: center;
  width: 100%;
}