/* =========================
   HEADER
========================= */

.top {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: rgba(239,228,210,.22) !important;
    backdrop-filter: blur(px) saturate(90%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 1px solid rgba(69,46,31,.10);
    box-shadow: none !important;
    margin-bottom: -120px;
}

.top__inner{
  height:120px;
  display:flex;
  align-items:center;
  gap:28px;
  
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:260px;
}

.brand__mark{
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.brand__mark .logo-img{
  height:120px;
  width:auto;
  display:block;
  object-fit:contain;
}

.nav{
  display:flex;
  justify-content:space-evenly;
  align-items:center;
  width:100%;
  padding:25px 120px;
}

.nav a{
  display:inline-flex;
  align-items:center;
  font-weight:700;
  font-size:16px;
  letter-spacing:2px;
  text-transform:uppercase;
  white-space:nowrap;
  opacity:.95;
  padding:10px 0;
  color: #3f2515;
}

.nav .menu-item.is-active{
  color:#d6a557;
}

.actions{
  min-width:260px;
  display:flex;
  align-items:center;
  gap:22px;
  justify-content:flex-end;
}

.live{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:16px;
  letter-spacing:2px;
  text-transform:uppercase;
  white-space:nowrap;
  opacity:.95;
  font-weight:700;
  color: #3f2515;
}

.live__icon{
  width:25px;
  height:25px;
  display:inline-block;
  flex:0 0 auto;
}

.signin{
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.95;
  font-weight:600;
  color: #3f2515;
}

/* =========================
   DESKTOP MEGA MENU
   background starts from top,
   header stays above it
========================= */

.mega-wrapper{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  pointer-events:none;
}

.mega-menu{
  display:none;
  width:100%;
  min-height:335px;
  padding:145px 0 55px;
  background:rgba(rgb(44 39 41 / 0%));
  backdrop-filter:blur(14px);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.mega-menu.active{
  display:block;
  pointer-events:auto;
  animation:megaFade .22s ease;
}

@keyframes megaFade{
  from{
    opacity:0;
    transform:translateY(-8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.mega-grid{
  width:min(900px,74vw);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:90px;
  align-items:start;
}

.mega-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  color:#fff;
  transition:.2s ease;
}

.mega-item:hover{
  transform:translateY(-2px);
}

.mega-item img{
  width:74px;
  height:74px;
  object-fit:contain;
  margin-bottom:18px;
  filter:invert(1);
  opacity:.95;
}

.mega-item span{
  font-size:22px;
  font-weight:700;
  line-height:1.2;
}

/* =========================
   MOBILE HEADER
========================= */

.m-btn{
  width:44px;
  height:40px;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.92);
  padding:0;
  cursor:pointer;
}

.m-bars{
  display:block;
  width:22px;
  height:2px;
  background:rgba(255,255,255,.92);
  border-radius:999px;
  position:relative;
  margin:0 auto;
}

.m-bars:before,
.m-bars:after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:rgba(255,255,255,.92);
  border-radius:999px;
}

.m-bars:before{top:-7px}
.m-bars:after{top:7px}

/* =========================
   MOBILE DRAWER
========================= */

.m-drawer{
  position:fixed;
  inset:0;
  z-index:9999;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
}

.m-drawer__panel{
  position:absolute;
  inset:0;
  background:rgba(35,35,35,.94);
  color:#fff;
  display:flex;
  flex-direction:column;
  padding:22px 18px 16px;
}

.m-drawer__top{
  display:flex;
  align-items:center;
  gap:14px;
}

.m-close{
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.92);
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.m-logo{
  display:flex;
  align-items:center;
  margin:0 auto;
  transform:translateX(-18px);
}

.m-logo__mark{
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.m-logo__mark .logo-img{
  height:120px;
  width:auto;
  display:block;
  object-fit:contain;
}

.m-nav{
  margin-top:26px;
  border-top:1px solid rgba(255,255,255,.16);
}

.m-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:18px 2px;
  font-weight:900;
  letter-spacing:3px;
  border-bottom:1px solid rgba(255,255,255,.16);
  font-size:14px;
  color:#fff;
}

.m-plus{
  font-size:22px;
  opacity:.9;
}

.m-drawer__bottom{
  margin-top:auto;
  display:flex;
  justify-content:center;
  gap:18px;
  padding:18px 0 6px;
  opacity:.95;
}

.m-ico{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  color:rgba(255,255,255,.92);
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  font-weight:900;
}

/* Mobile accordion */
.m-acc{width:100%}

.m-acc__btn{
  width:100%;
  background:transparent;
  border:0;
  color:inherit;
  text-align:left;
  cursor:pointer;
}

.m-acc__btn .m-plus{
  transition:transform .18s ease;
}

.m-acc__btn[aria-expanded="true"] .m-plus{
  transform:rotate(45deg);
}

.m-sub{
  padding:10px 0 14px;
  border-bottom:1px solid rgba(255,255,255,.16);
}

.m-sub__link{
  display:block;
  padding:12px 2px 12px 18px;
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:12px;
  opacity:.92;
}

.m-sub__link:hover{
  opacity:1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:980px){
  .m-only{display:block}
  .d-only{display:none}

  .top{
    padding:18px 0;
  }

  .top__inner{
    height:auto;
    display:grid;
    grid-template-columns:44px 1fr auto;
    align-items:center;
    gap:12px;
    
  }

  .brand{
    min-width:0;
    justify-self:center;
    gap:0;
  }

  .brand__mark{
    height:44px;
  }

  .brand__mark .logo-img{
    height:60px;
  }

  .nav{
    display:none;
  }

  .actions{
    min-width:0;
    justify-self:end;
    gap:12px;
  }

  .mega-wrapper{
    display:none;
  }
}