.lv-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: var(--lv-gold);
  padding: 12px 20px;
  z-index: 1000;
  font: 600 12px/1 var(--lv-font-sans);
}
.lv-skip:focus { left: 12px; top: 12px; }

.lv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.lv-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -28px;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  pointer-events: none;
  z-index: -1;
}
.lv-header.is-scrolled,
.lv-header--solid {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--lv-gold-hair);
}
/* Scrolled-over-hero: stay subtle/translucent, just enough to read against bright frames */
.lv-header.is-scrolled { background: rgba(10, 10, 10, .5); }
/* Interior pages have no video behind them, so they need a more legible base */
.lv-header--solid { background: rgba(10, 10, 10, .86); }
@supports not (backdrop-filter: blur(12px)) {
  .lv-header.is-scrolled { background: rgba(10,10,10,.75); }
  .lv-header--solid { background: rgba(10,10,10,.97); }
}

.lv-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lv-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.lv-logo-script {
  font: 400 26px/1 var(--lv-font-script);
  color: var(--lv-gold);
}
.lv-header__logo-img { height: 50px; width: auto; display: block; }

.lv-header__nav { display: none; }
@media (min-width: 900px) {
  .lv-header__nav { display: block; }
  .lv-header__nav > ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
  .lv-header__nav > ul > li { position: relative; }
  .lv-header__nav a,
  .lv-header__nav button {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--lv-cream);
    text-decoration: none;
    font: 600 12px/1 var(--lv-font-sans);
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 22px 0;
    position: relative;
  }
  .lv-header__nav a::after,
  .lv-nav__item--dd > button::after {
    content: "";
    position: absolute;
    left: 0; bottom: 18px;
    height: 1px;
    width: 0;
    background: var(--lv-gold);
    transition: width .25s ease;
  }
  .lv-header__nav a:hover::after,
  .lv-header__nav a:focus-visible::after,
  .lv-nav__item--dd > button:hover::after,
  .lv-nav__item--dd > button:focus-visible::after { width: 100%; }
  .lv-nav__item--dd > button svg { transition: transform .2s ease; color: var(--lv-gold); }
  .lv-nav__item--dd.is-open > button svg { transform: rotate(180deg); }
}

.lv-dd {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 230px;
  background: rgba(10, 10, 10, .96);
  border: 1px solid var(--lv-gold-hair);
  padding: 14px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s cubic-bezier(.22,.61,.36,1);
}
.lv-nav__item--dd.is-open .lv-dd { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lv-dd li { margin: 0; }
.lv-dd a {
  display: block;
  padding: 10px 22px !important;
  font-weight: 600;
  letter-spacing: .06em !important;
  text-transform: none !important;
}
.lv-dd a::after { display: none; }
.lv-dd a:hover, .lv-dd a:focus-visible { color: var(--lv-gold); }

.lv-header__utils { display: flex; align-items: center; gap: 4px; }
.lv-icon-link {
  color: var(--lv-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 44px;
  min-height: 44px;
  transition: color .2s ease;
}
.lv-icon-link:hover, .lv-icon-link:focus-visible { color: var(--lv-gold); }

.lv-cart__count {
  position: absolute;
  top: 7px; right: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--lv-gold);
  color: #000;
  font: 700 10px/16px var(--lv-font-sans);
  text-align: center;
}
.lv-cart__count.is-bump { animation: lv-bump .3s ease-out; }
@keyframes lv-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.lv-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.lv-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--lv-gold);
  margin: 0 auto;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .15s ease;
}
.lv-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.lv-burger.is-open span:nth-child(2) { opacity: 0; }
.lv-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 900px) { .lv-burger { display: none; } }

.lv-mobile {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .97);
  padding: 96px 28px 40px;
  overflow-y: auto;
  z-index: 890;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
}
.lv-mobile:not([hidden]) { opacity: 1; transform: translateY(0); }
body.lv-menu-open { overflow: hidden; }

.lv-mobile__list { list-style: none; margin: 0 0 32px; padding: 0; }
.lv-mobile__list > li { border-bottom: 1px solid var(--lv-gold-hair); }
.lv-mobile__list > li > a {
  display: block;
  padding: 16px 0;
  color: var(--lv-cream);
  text-decoration: none;
  font: 600 15px/1 var(--lv-font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.lv-acc__trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--lv-cream);
  font: 600 13px/1 var(--lv-font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.lv-acc__trigger svg { color: var(--lv-gold); transition: transform .25s ease; }
.lv-acc.is-open .lv-acc__trigger svg { transform: rotate(180deg); }

.lv-acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.lv-acc.is-open .lv-acc__panel { grid-template-rows: 1fr; }
.lv-acc__inner { overflow: hidden; display: flex; flex-direction: column; }
.lv-acc__inner a {
  padding: 12px 0 12px 16px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(243, 230, 200, .75);
  text-decoration: none;
  font: 400 14px/1 var(--lv-font-sans);
}
.lv-acc__inner a:hover, .lv-acc__inner a:focus-visible { color: var(--lv-gold); }

.lv-mobile__utils { display: flex; gap: 24px; }
.lv-mobile__utils a {
  color: var(--lv-gold);
  text-decoration: none;
  font: 600 12px/1 var(--lv-font-sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}

:focus-visible { outline: 1px solid var(--lv-gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  .lv-header, .lv-header::before, .lv-dd, .lv-mobile, .lv-burger span,
  .lv-acc__trigger svg, .lv-acc__panel, .lv-nav__item--dd > button svg,
  .lv-header__nav a::after, .lv-nav__item--dd > button::after {
    transition-duration: 0ms !important;
  }
  .lv-cart__count.is-bump { animation: none; }
}
