/* ---========== MAIN VISUAL ==========---*/
.mv {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
  background: #0a0806;
}
.mv_slides { position: absolute; inset: 0; }
.mv_slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  overflow: hidden; 
}
.mv_slide.is-active { opacity: 1; pointer-events: auto; }
.mv_slide-wrap {
  position: absolute; inset: 0;
  will-change: transform;
}
.mv_slide-img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv_slide-wrap {
  transition: transform 7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mv_slide .mv_slide-wrap {
  transform: scale(1.12);
}
.mv_slide.is-active .mv_slide-wrap {
  transform: scale(1);
  transition-delay: 0s;
}

.mv_overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,6,4,.78) 0%, rgba(8,6,4,.3) 55%, transparent 100%),
    linear-gradient(0deg, rgba(8,6,4,.5) 0%, transparent 40%);
}
.mv_grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}
.mv_content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center;
  padding: 0 8%;
}
.mv_inner { max-width: 660px; }
.mv_line {
  display: flex; align-items: center; gap: 1.2rem;
  margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .8s .2s forwards ease-out;
}
.mv_line-bar { width: 40px; height: 1px; background: #AA7A5A; }
.mv_eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 300;
  letter-spacing: .45em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.mv_ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 300; line-height: 1.12;
  color: #fff; letter-spacing: -.01em;
  margin-bottom: 1rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s .42s forwards ease-out;
}
.mv_ttl-accent {
  font-style: italic; font-weight: 400; color: #AA7A5A;
  position: relative;
}
.mv_ttl-accent::after {
  content: '';
  position: absolute; left: 0; bottom: -.1em;
  width: 100%; 
  height: 3px;
  background: #AA7A5A; opacity: .4;
  transform: scaleX(0); transform-origin: left;
  animation: lineIn .7s 1.5s forwards ease-out;
}
.mv_desc {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.15rem, 1.1vw, 1.15rem);
  font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.65);
  margin-bottom: 3.5rem;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .9s .7s forwards ease-out;
}
.mv_btns {
  display: flex; gap: 1.4rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp .9s .95s forwards ease-out;
}
.mv_btn {
  display: inline-flex; align-items: center; gap: .8rem;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  transition: all .35s ease; cursor: pointer;
}
.mv_btn svg { flex-shrink: 0; transition: transform .35s ease; }
.mv_btn:hover svg { transform: translateX(5px); }
.mv_btn--gold {
  background: #AA7A5A; color: #fff;
  border: 1px solid #AA7A5A;
  position: relative; overflow: hidden;
}
.mv_btn--gold::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.13);
  transform: translateX(-110%);
  transition: transform .45s ease;
}
.mv_btn--gold:hover::before { transform: translateX(0); }
.mv_btn--gold:hover { opacity: 1; }
.mv_btn--ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.4);
}
.mv_btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.8); opacity: 1;
}
.mv_dots {
  position: absolute; right: 3.5rem; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: flex; flex-direction: column; gap: 1.4rem; align-items: center;
}
.mv_dot {
  width: 5px; height: 5px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.3);
  transition: all .4s ease; outline: none; position: relative;
}
.mv_dot::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid #AA7A5A;
  transition: all .4s ease;
}
.mv_dot.is-active { background: #AA7A5A; transform: scale(1.5); }
.mv_dot.is-active::before { transform: translate(-50%,-50%) scale(1); }
.mv_counter {
  position: absolute; left: 8%; bottom: 1.5rem; z-index: 4;
  font-family: 'Jost', sans-serif;
  font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,.4); letter-spacing: .1em;
  display: flex; align-items: center; gap: .6rem;
}
.mv_counter-current { font-size: 1.4rem; font-weight: 400; color: rgba(255,255,255,.75); }
.mv_progress {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; z-index: 4;
  background: rgba(255,255,255,.1);
}
.mv_progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #AA7A5A, #e4b97a);
  transition: width linear;
}
.mv_scroll {
  position: absolute; bottom: 3.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  opacity: 0; animation: fadeUp .8s 1.8s forwards ease-out;
}
.mv_scroll-label {
  font-family: 'Jost', sans-serif;
  font-size: .85rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.35); writing-mode: vertical-rl;
}
.mv_scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent);
  animation: scrollLine 1.8s 2s infinite ease-in-out;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes lineIn { to { transform: scaleX(1); } }
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(.4); opacity: .3; }
}
@media (max-width: 768px) {
  .mv_content { padding: 0 6% 6rem; align-items: flex-end; }
  .mv_dots { right: 1.5rem; }
  .mv_scroll { display: none; }
  .mv_desc {font-size: clamp(10px, 3.6vw, 20px);}
  .mv_btn {font-size: 0.8rem;padding: 0.3rem 1.5rem}
  .mv_eyebrow {font-size: 0.8rem;}
}

/* ---========== FEATURE MENU ==========---*/
.fmenu-section {
  position: relative;
  max-width: 1400px;
  width: 96%!important;
  margin: 0 auto;
}
.fmenu-header {
  text-align: center;
  margin-bottom: 60px;
}
.fmenu-header .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #c9a96e;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 8px;
}
.fmenu-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  color: #f0ead8;
}
.fmenu-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fmenu-col {
    width: 30%;
}
.fmenu-col-title {
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.35em;
  font-family: 'Cormorant Garamond', serif;
  color: #c9a96e;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 40px !important;
  position: relative;
}
.fmenu-col-title:before,
.fmenu-col-title:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
    left: 0;
    opacity: 0.5;
}
.fmenu-col-title:before {
    top: 0;
}
.fmenu-col-title:after {
    bottom: 0;
}
.fmenu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.fmenu-item::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px;
  height: 60%;
  background: #c9a96e;
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.fmenu-item:hover::before,
.fmenu-item.active::before {
  transform: translateY(-50%) scaleY(1);
}
.fmenu-item:last-child { border-bottom: none; }
.fmenu-item-info { flex: 1; }
.fmenu-item-name {
  font-size: clamp(18px, 1vw, 24px);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 10px !important;
  color: #f0ead8;
  transition: color 0.3s;
}
.fmenu-item-desc {
  font-size: clamp(10px, 1vw, 13px);
  color: #8a8070;
  line-height: 1.5;
  font-style: italic;
  transition: color 0.3s;
}
.fmenu-item-price {
  font-size: clamp(12px, 1vw, 17px);
  color: #c9a96e;
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}
.fmenu-item:hover .fmenu-item-name,
.fmenu-item.active .fmenu-item-name {
  color: #e8d5a3;
}
.fmenu-item:hover .fmenu-item-desc,
.fmenu-item.active .fmenu-item-desc {
  color: rgba(201,169,110,0.6);
}
.fmenu-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
}
.fmenu-title-center {
  text-align: center;
  margin-bottom: -52px;
  position: relative;
  z-index: 3;
}
.fmenu-title-center h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.1;
  color: #f0ead8;
}
.fmenu-img-frame {
  position: relative;
  width: 100%;
  height: 36vw;
  min-height: 600px;
  border-radius: 1000px;
  overflow: hidden;
  cursor: pointer;
}
.fmenu-img-frame:hover .fmenu-img-oval {
    transform: scale(1.07);
}
.fmenu-img-oval {
    transition: all .3s ease;
}
.fmenu-img-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid #baa383;
  z-index: 2;
  pointer-events: none;
  border-radius: 1000px;
}
.fmenu-img-oval {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background: #1a1710;
}
.fmenu-img-oval img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fmenu-img-oval img.active {
  opacity: 1;
}
.fmenu-active-label {
  text-align: center;
  min-height: 48px;
  margin-top: 22px;
}
.fmenu-active-label .item-name {
  font-size: clamp(16px, 1vw, 20px);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.15em;
  color: #c9a96e;
  display: block;
  margin-bottom: 4px;
  transition: opacity 0.3s;
}
.fmenu-active-label .item-price {
  font-size: clamp(12px, 1vw, 17px);
  color: #c9a96e;
  font-style: italic;
}
@media (max-width: 900px) {
  .fmenu-layout {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
  .fmenu-center {
    order: -1;
    width: 96%;
    position: static;
  }
  .fmenu-img-frame {
    width: 96%;
    height: 135vw;
    min-height: 0;
  }
  .fmenu-item {
    padding: 14px 12px;
    border-radius: 8px;
    background: transparent;
    transition: background 0.3s;
  }
  .fmenu-item.active {
    background: rgba(201,169,110,0.06);
  }
  .fmenu-item::before {
    left: 0;
  }
  .fmenu-col { 
    order: 1; 
    width: 96%;
    margin: 0 auto;
      
  }
  .fmenu-col:last-child { order: 2; }
}

/* ---========== MENU TAXONOMY ==========---*/
.mtg-section {
    position: relative;
}
.mtg-section:after {
    position: absolute;
    content:"";
    width: 100%;
    height: 66%;
    top: 0;
    left: 0;
    background: url("https://lumyrestaurant.com/wp-content/uploads/2026/03/aleks-marinkovic-5gqMS0XitwE-unsplash-1.jpg") no-repeat top/cover;
    z-index: -2;
}
.mtg-section:before {
    position: absolute;
    content:"";
    width: 100%;
    height: 66%;
    top: 0;
    left: 0;
    background: #000;
    z-index: -1;
    opacity: .45;
}
.mtg-wrapper {
    position: relative;
    width: 96%!important;
}

.mtg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 80px;
}

.mtg-card {
    display: block;
    position: relative;
    aspect-ratio: 2.5 / 4;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mtg-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid #baa383;
  z-index: 2;
  pointer-events: none;
  border-radius: 8px;
}

.mtg-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.55) 75%,
        rgba(0, 0, 0, 0.72) 100%
    );
}

.mtg-card:hover .mtg-card-image {
    transform: scale(1.1);
}

.mtg-card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #ffffff;
    font-size: clamp(20px, 2vw, 24px);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
    text-align: center;
}

.mtg-card-image {
    background-size: 100% 100%;
    background-position: center;
    transition: all .5s ease;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mtg-cta {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.mtg-cta a {
    display: inline-block;
    padding: 14px 42px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.mtg-cta a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-taxonomy-btn .wp-block-button__link {
    transition: all .3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .mtg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mtg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 0;
    }
    
    .menu-taxonomy-btn .wp-block-button__link {
        margin-top: 0;
        padding: 17px 22px!important;
    }
    
    .menu-taxonomy-btn .uagb-button__link {
        font-size: 10px!important;
    }

    .mtg-wrapper {
        padding: 30px 14px 20px;
    }
    
    .mtg-card-title {
        font-size: clamp(13px, 3vw, 24px);
    }
    .mtg-card::before {
        inset: 6px;
    }
}

/* ---========== MENU GRID ==========---*/
.menu-grid .overlay-img {
    position: relative;
}

.menu-grid .overlay-text.ab {
    position: absolute !important;
    background: unset !important;
    bottom: 5%;
    width: 100% !important;
    left: 0;
    height: auto;
}

.menu-grid .overlay-text.ab .title {
    font-size: clamp(20px, 4vw, 70px);
    letter-spacing: 0.1em;
}

.menu-grid .overlay-text {
    background-color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.menu-grid .overlay-03 .overlay-text,
.menu-grid .overlay-03 .overlay-img{
    width: 50%!important;
}

.menu-grid .overlay-text .tag {
    color: #bf8965;
    font-size: clamp(14px, 1vw, 18px);
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.menu-grid .overlay-text .title {
    font-size: clamp(20px, 2vw, 40px);
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.menu-grid .overlay-text .view-btn {
    font-family: 'Jost', sans-serif;
    color: #fff;
    font-size: clamp(10px, 1vw, 14px);
    position: relative;
}

.menu-grid .overlay-text .view-btn::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #bf8965;
    content: "";
    transition: transform 0.2s ease;
    transform-origin: 100% 0;
}

.menu-grid .overlay-text .view-btn:hover::after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}