.dte-main {
    background: #1a1a1a;
}

/* ---- Hero (full-viewport background) ---- */
.dte-hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 24px 100px;
    margin-bottom: 0;
    overflow: hidden;
    text-align: center;
}

.dte-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.dte-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dte-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0) 15%,
        #1a1a1a 100%
    );
}

.dte-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.dte-hero-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    font-weight: 400;
    color: #c5a059;
    margin: 0;
}

.dte-hero-subtitle {
    font-family: "Philosopher", serif;
    font-size: 32px;
    line-height: 38px;
    color: #e6e6e6;
    margin: 0;
    max-width: 900px;
}

.dte-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

.dte-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #e6e6e6;
}

.dte-hero-meta-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #dec89e;
}

.dte-hero-meta-item--seats svg {
    color: transparent;
}

.dte-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

/* ---- About House of Legends — full-viewport background + booking card ---- */
.dte-immersive {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 80px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.dte-immersive-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    min-height: 100%;
}

.dte-immersive-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dte-immersive-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 26, 0) 27%,
        #1a1a1a 81%
    );
}

.dte-immersive-grid {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-height: 100%;
}

.dte-immersive-copy {
    max-width: 589px;
    flex: 1;
}

.dte-immersive-kicker {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #808080;
    margin: 0 0 8px;
}

.dte-section-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    font-weight: 400;
    color: #c5a059;
    margin: 0 0 24px;
}

.dte-immersive-copy .dte-section-title {
    margin-bottom: 0;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.15;
}

.dte-immersive-copy .dte-prose {
    font-size: 15px;
    line-height: 22px;
}

.dte-immersive-copy .dte-prose p {
    margin-bottom: 0.45em;
}

.dte-prose {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #e6e6e6;
    margin: 0;
}

.dte-prose p {
    margin: 0 0 0.75em;
}

.dte-prose p:last-child {
    margin-bottom: 0;
}

.dte-book-card-wrap {
    position: relative;
    flex-shrink: 0;
    align-self: center;
}

.dte-book-card {
    width: 320px;
    padding: 24px;
    background: #1a1a1a;
    border: 1px solid #a6a6a6;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dte-book-card-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 32px;
    line-height: 40px;
    color: #c5a059;
    margin: 0;
}

.dte-book-card-hr {
    height: 1px;
    background: rgba(166, 166, 166, 0.4);
    border: 0;
    margin: 0;
}

.dte-book-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dte-book-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    background: #2e2e2e;
    border-radius: 8px;
}

.dte-book-field label {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #e6e6e6;
}

.dte-book-field input {
    background: transparent;
    border: 0;
    padding: 0;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    outline: none;
}

.dte-book-field input::placeholder {
    color: #808080;
}

.dte-book-field input:-webkit-autofill,
.dte-book-field input:-webkit-autofill:hover,
.dte-book-field input:-webkit-autofill:focus,
.dte-book-field input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #2e2e2e inset !important;
    box-shadow: 0 0 0 1000px #2e2e2e inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    transition: background-color 99999s ease-out;
}

.dte-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #c5a059;
    color: #1a1a1a;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 800px;
    border: none;
    cursor: pointer;
}

.dte-btn-gold:hover {
    filter: brightness(1.05);
}

.dte-btn-gold:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: none;
}

/* DTE loads landing-page-v4.css which hides .reservation-box by default.
   Force popup reservation box visible inside the v5 modal. */
.v5-reservation-modal .reservation-box {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.dte-btn-gold .dte-btn-gold-chevron {
    flex-shrink: 0;
    display: block;
}

/* ---- Fusion cuisine — full-viewport background (like hero), panel #2E2E2E, photo 329×628 ---- */
.dte-fusion {
    position: relative;
    box-sizing: border-box;
    padding: 80px 120px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: visible;
}

.dte-fusion-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    /* Full viewport width when ancestors constrain width (rare edge cases) */
    width: 100%;
    min-height: 100%;
}

.dte-fusion-bg img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dte-fusion-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    pointer-events: none;
}

.dte-fusion-flex {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    flex: 0 1 auto;
    min-height: min(560px, 70vh);
    align-items: stretch;
    box-sizing: border-box;
}

.dte-fusion-panel {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
    padding: 40px;
    box-sizing: border-box;
    background: #2e2e2e;
    overflow: visible;
}

.dte-fusion-photo {
    flex-shrink: 0;
    width: 329px;
    height: 628px;
    max-height: min(628px, calc(100vh - 200px));
    margin-left: 0;
    /* Tràn ra ngoài panel theo cạnh trên & dưới (không lệch trái) */
    margin-top: -56px;
    margin-bottom: -56px;
    align-self: center;
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.dte-fusion-photo--video .dte-fusion-video-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
}

/* Lớp trong suốt: chặn hover/click vào iframe để YouTube không bật tiêu đề / overlay khi rê chuột */
.dte-fusion-photo--video .dte-fusion-video-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: auto;
    background: transparent;
    cursor: default;
}

/* Che phần viền/branding YouTube còn sót dưới cùng (embed không cho tắt hoàn toàn) */
.dte-fusion-photo--video .dte-fusion-video-inner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(48px, 14%, 88px);
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(
        to top,
        #0d0d0d 0%,
        rgba(13, 13, 13, 0.55) 50%,
        transparent 100%
    );
}

.dte-fusion-video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    z-index: 0;
}

.dte-fusion-photo:not(.dte-fusion-photo--video) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dte-fusion-heading {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dte-fusion-content {
    flex: 1 1 280px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.dte-fusion-intro {
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #a6a6a6;
    margin: 0;
}

.dte-fusion-intro p {
    margin: 0 0 0.5em;
}

.dte-fusion-list-title {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.dte-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 546px;
}

.dte-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #a6a6a6;
}

.dte-check-list li.dte-check-gold {
    color: #c5a059;
}

.dte-check-list svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.dte-check-list li:not(.dte-check-gold) svg {
    color: #a6a6a6;
    stroke: #a6a6a6;
}

.dte-check-list li.dte-check-gold svg {
    color: #c5a059;
    stroke: #c5a059;
}

.dte-fusion-cta-wrap {
    margin-top: 4px;
}

.dte-fusion-menu-btn {
    background: transparent;
}

/* ---- Fusion menu book modal ---- */
.dte-menu-book-open {
    overflow: hidden;
}

.dte-menu-book-overlay {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dte-menu-book-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dte-menu-book-modal {
    position: relative;
    width: min(1200px, 100%);
    max-height: min(92vh, 980px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dte-menu-book-title {
    margin: 0;
    text-align: center;
    font-family: "Decophile", "Playfair Display", serif;
    color: #dec89e;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    letter-spacing: 0.04em;
}

.dte-menu-book-close {
    position: absolute;
    top: -6px;
    right: -4px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(222, 200, 158, 0.6);
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.92);
    color: #dec89e;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
}

.dte-menu-book-stage {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.dte-menu-book-nav {
    width: 44px;
    height: 72px;
    padding: 0;
    border: 1px solid rgba(222, 200, 158, 0.7);
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.88);
    color: #f1dbb2;
    font-size: 36px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(241, 219, 178, 0.28);
    cursor: pointer;
}

.dte-menu-book-nav--prev {
    padding-left: 1px;
}

.dte-menu-book-nav--next {
    padding-left: 2px;
}

.dte-menu-book-nav:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.dte-menu-book {
    position: relative;
    height: min(74vh, 840px);
    min-height: 420px;
    display: grid;
    grid-template-columns: 1fr 18px 1fr;
    border-radius: 18px;
    background: linear-gradient(180deg, #5e4528 0%, #3f2e1b 100%);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transform: scale(0.96) translateY(12px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}

.dte-menu-book.is-open {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.dte-menu-book-page {
    position: relative;
    background: #f2ede5;
    padding: 10px;
    overflow: hidden;
}

.dte-menu-book-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dte-menu-book-page img.is-visible {
    opacity: 1;
}

.dte-menu-book-spine {
    background: linear-gradient(90deg, #22170d 0%, #7f5d33 50%, #24180e 100%);
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.55);
}

/* ---- Flip layer: completely removed from render tree by default ---- */
.dte-menu-book-flip-layer {
    display: none;
    position: absolute;
    top: 0;
    width: calc(50% - 9px);
    height: 100%;
    pointer-events: none;
    z-index: 4;
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.dte-menu-book-flip-layer--next { right: 0; }
.dte-menu-book-flip-layer--prev { left: 0; }

.dte-menu-book-flip-layer.is-prepared {
    display: block;
}

/* ---- Flip card: rotates inside the perspective container ---- */
.dte-menu-book-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dte-menu-book-flip-layer--next .dte-menu-book-flip-card {
    transform-origin: left center;
}

.dte-menu-book-flip-layer--prev .dte-menu-book-flip-card {
    transform-origin: right center;
}

/* ---- Flip faces — translateZ separates front/back so the browser never Z-fights ---- */
.dte-menu-book-flip-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #f2ede5;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.dte-menu-book-flip-face--front {
    transform: translateZ(1px);
}

.dte-menu-book-flip-face--back {
    transform: rotateY(180deg) translateZ(1px);
}

.dte-menu-book-flip-layer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background: #f2ede5;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ---- Flip animations (on the card, not the layer) ---- */
.dte-menu-book.is-flipping-next .dte-menu-book-flip-layer--next .dte-menu-book-flip-card {
    animation: dte-flip-next 620ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.dte-menu-book.is-flipping-prev .dte-menu-book-flip-layer--prev .dte-menu-book-flip-card {
    animation: dte-flip-prev 620ms cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.dte-menu-book-empty {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    color: #fff;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 28px;
}

.dte-menu-book-overlay.is-empty .dte-menu-book-empty {
    display: flex;
}

.dte-menu-book-overlay.is-empty .dte-menu-book-page,
.dte-menu-book-overlay.is-empty .dte-menu-book-spine {
    opacity: 0.18;
}

@keyframes dte-flip-next {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(-180deg); }
}

@keyframes dte-flip-prev {
    0%   { transform: rotateY(0deg); }
    100% { transform: rotateY(180deg); }
}

/* ---- Cocktails ---- */
.dte-cocktails {
    position: relative;
    min-height: 640px;
    padding: 80px 120px;
    display: flex;
    align-items: center;
    gap: 80px;
    overflow: hidden;
}

.dte-cocktails-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dte-cocktails-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dte-cocktails-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        270deg,
        rgba(26, 26, 26, 0) 20%,
        #1a1a1a 78%
    );
}

.dte-cocktails-copy {
    position: relative;
    z-index: 1;
    max-width: 588px;
    flex-shrink: 0;
}

.dte-cocktails-copy .dte-section-title {
    color: #fff;
    margin: 0 0 24px;
}

.dte-cocktails-copy .dte-prose {
    color: #a6a6a6;
}

.dte-cocktails-note {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #c5a059;
    margin: 16px 0 0;
}

.dte-cocktails-carousel-wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dte-cocktails-carousel {
    width: 100%;
    max-width: min(960px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dte-cocktails-carousel-viewport {
    container-type: inline-size;
    container-name: dte-cocktail;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.dte-cocktails-carousel-track {
    display: flex;
    gap: 16px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.dte-cocktails-slide {
    flex: 0 0 calc((100cqw - 32px) / 3);
    min-width: 0;
}

.dte-cocktails-slide img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 223 / 400;
    max-height: min(400px, 50vh);
    object-fit: cover;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .dte-cocktails-carousel-track {
        transition: none;
    }
}

.dte-cocktails-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}

.dte-cocktails-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0;
    border: 1px solid #555;
    background: #3a3a3a;
    cursor: pointer;
    transition: width 0.35s ease, border-radius 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}

.dte-cocktails-dot.is-active {
    width: 28px;
    border-radius: 6px;
    background: #c5a059;
    border-color: #c5a059;
}

.dte-cocktails-dot:focus-visible {
    outline: 2px solid #c5a059;
    outline-offset: 2px;
}

/* ---- Upcoming (Figma cards) ---- */
.dte-upcoming {
    background: #1a1a1a;
    padding: 80px 120px;
}

.dte-upcoming-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.dte-upcoming-title {
    font-family: "Decophile", "Playfair Display", serif;
    font-size: 64px;
    line-height: 72px;
    font-weight: 400;
    color: #c5a059;
    text-align: center;
    margin: 0 0 40px;
}

.dte-upcoming-rows {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.dte-upcoming-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.dte-event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    position: relative;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dte-event-media {
    height: 320px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    isolation: isolate;
}

.dte-event-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0) 35%,
        rgba(26, 26, 26, 0.55) 100%
    );
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dte-event-media::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, #c5a059, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dte-event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .dte-event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55);
    }

    .dte-event-card:hover .dte-event-media img {
        transform: scale(1.07);
    }

    .dte-event-card:hover .dte-event-media::after {
        opacity: 1;
    }

    .dte-event-card:hover .dte-event-media::before {
        transform: scaleX(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dte-event-card,
    .dte-event-media img,
    .dte-event-media::after,
    .dte-event-media::before {
        transition-duration: 0.01ms !important;
    }

    .dte-event-card:hover {
        transform: none;
        box-shadow: none;
    }

    .dte-event-card:hover .dte-event-media img {
        transform: none;
    }

    .dte-event-card:hover .dte-event-media::after {
        opacity: 0;
    }

    .dte-event-card:hover .dte-event-media::before {
        transform: scaleX(0);
    }
}

.dte-event-body {
    background: #2e2e2e;
    padding: 24px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
}

.dte-event-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Philosopher", serif;
    font-size: 18px;
    line-height: 28px;
    color: #c5a059;
}

.dte-event-badge svg {
    width: 24px;
    height: 24px;
    color: #c5a059;
}

.dte-event-name {
    font-family: "Philosopher", serif;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    margin: 0;
}

.dte-event-desc {
    font-family: "Mulish", sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #a6a6a6;
    margin: 0;
}

.dte-event-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    flex-wrap: nowrap;
    margin-top: auto;
}

.dte-event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-width: 0;
}

.dte-event-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #dec89e;
    text-decoration: none;
    border: 2px solid #dec89e;
    border-radius: 800px;
    padding: 8px 24px;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

.dte-event-see-more:hover {
    background: rgba(222, 200, 158, 0.08);
}

.dte-event-seats {
    font-family: "Philosopher", serif;
    font-size: 24px;
    line-height: 36px;
    color: #c5a059;
    margin: 0;
}

.dte-event-seats span {
    color: #e6e6e6;
    font-size: 24px;
}

.dte-upcoming-calendar {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dte-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a1a1a;
    border: 2px solid #dec89e;
    color: #dec89e;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 800px;
    cursor: pointer;
}

.dte-btn-outline:hover {
    background: rgba(222, 200, 158, 0.08);
}

/* ---- Gallery on dark band ---- */
.dte-gallery-wrap {
    background: #2e2e2e;
}

.dte-gallery-wrap .v5-gallery-title {
    padding-top: 80px;
}

/* Practical Information */

@media screen and (max-width: 1200px) {
    .dte-hero {
        padding: 140px 40px 72px;
    }

    .dte-immersive,
    .dte-cocktails,
    .dte-upcoming {
        padding-left: 40px;
        padding-right: 40px;
    }

    .dte-fusion {
        padding: 60px 40px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .dte-fusion-flex {
        min-height: 0;
    }

    .dte-fusion-panel {
        flex-direction: column;
        padding: 32px 24px;
        gap: 32px;
        width: 100%;
    }

    .dte-fusion-photo {
        width: min(329px, 100%);
        height: auto;
        max-height: 520px;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 0;
        align-self: center;
    }

    .dte-fusion-photo--video {
        aspect-ratio: 9 / 16;
        width: min(329px, 100%);
        max-width: 100%;
        height: auto;
        max-height: min(628px, 70vh);
    }

    .dte-fusion-photo--video .dte-fusion-video-inner {
        position: absolute;
        inset: 0;
    }

    .dte-fusion-heading {
        font-size: clamp(32px, 6vw, 52px);
        line-height: 1.12;
    }

}

@media screen and (max-width: 900px) {
    .dte-immersive {
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: none;
        padding: 40px 24px;
    }

    .dte-fusion {
        padding: 48px 24px;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .dte-immersive-grid {
        flex-direction: column;
        align-items: stretch;
    }

    .dte-book-card-wrap {
        align-self: center;
    }

    .dte-cocktails {
        flex-direction: column;
        gap: 40px;
    }

    .dte-upcoming-row {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {

    /* ---- Hero ---- */
    .dte-hero {
        min-height: auto;
        padding: 0 0 40px;
        flex-direction: column;
        align-items: stretch;
    }

    .dte-hero-bg {
        position: relative;
        height: 210px;
        flex-shrink: 0;
    }

    .dte-hero-bg img {
        position: absolute;
        inset: 0;
    }

    .dte-hero-inner {
        padding: 0 16px;
        margin-top: -40px;
        gap: 16px;
    }

    .dte-hero-title {
        font-size: 36px;
        line-height: 44px;
    }

    .dte-hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .dte-hero-meta {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .dte-hero-meta-item {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .dte-hero-ctas .v5-hero-btn-outline,
    .dte-hero-ctas .v5-hero-btn-filled {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
    }

    /* ---- Immersive / About ---- */
    .dte-immersive {
        min-height: auto;
        padding: 40px 16px;
    }

    .dte-immersive-bg::after {
        background: linear-gradient(
            to bottom,
            rgba(26, 26, 26, 0.4) 0%,
            #1a1a1a 60%
        );
    }

    .dte-immersive-grid {
        flex-direction: column;
        gap: 32px;
    }

    .dte-immersive-copy {
        max-width: 100%;
    }

    .dte-immersive-kicker {
        font-size: 18px;
        line-height: 28px;
    }

    .dte-section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .dte-immersive-copy .dte-section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .dte-prose {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-immersive-copy .dte-prose {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-book-card-wrap {
        width: 100%;
        align-self: stretch;
    }

    .dte-book-card {
        width: 100%;
    }

    .dte-book-card-title {
        font-size: 32px;
        line-height: 40px;
    }

    /* ---- Fusion Cuisine ---- */
    .dte-fusion {
        padding: 40px 16px;
        min-height: auto;
    }

    .dte-fusion-panel {
        flex-direction: column;
        padding: 24px;
        gap: 32px;
    }

    .dte-fusion-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 396 / 756;
        max-height: none;
        margin: 0;
    }

    .dte-fusion-photo--video {
        aspect-ratio: 396 / 756;
        width: 100%;
        max-width: 100%;
        max-height: none;
    }

    .dte-fusion-heading {
        font-size: 32px;
        line-height: 40px;
    }

    .dte-fusion-intro {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-fusion-list-title {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-check-list li {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-fusion-menu-btn {
        width: 100%;
    }

    .dte-menu-book-overlay {
        padding: 12px;
    }

    .dte-menu-book-modal {
        gap: 12px;
    }

    .dte-menu-book-close {
        top: -2px;
        right: -2px;
    }

    .dte-menu-book-stage {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .dte-menu-book-nav {
        width: 50px;
        height: 38px;
        justify-self: center;
    }

    .dte-menu-book-nav--prev {
        order: 2;
        justify-self: end;
    }

    .dte-menu-book {
        order: 1;
        grid-column: 1 / -1;
        height: min(65vh, 640px);
        min-height: 320px;
        grid-template-columns: 1fr;
    }

    .dte-menu-book-nav--next {
        order: 3;
        justify-self: start;
    }

    .dte-menu-book-page--left,
    .dte-menu-book-spine,
    .dte-menu-book-flip-layer {
        display: none;
    }

    .dte-menu-book-page--right {
        grid-column: 1;
    }

    .dte-menu-book-page {
        padding: 6px;
    }

    .dte-menu-book-empty {
        font-size: 14px;
        line-height: 20px;
    }

    /* ---- Signature Cocktails — Figma 1530:25235 (mobile) ---- */
    .dte-cocktails {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        padding: 40px 16px;
        gap: 32px;
    }

    .dte-cocktails-bg::after {
        background: linear-gradient(
            270deg,
            rgba(26, 26, 26, 0) 22%,
            #1a1a1a 78%
        );
    }

    .dte-cocktails-copy {
        max-width: none;
        width: 100%;
    }

    .dte-cocktails-copy .dte-section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .dte-cocktails-copy .dte-prose {
        font-size: 14px;
        line-height: 20px;
    }

    .dte-cocktails-note {
        font-size: 14px;
        line-height: 20px;
        margin-top: 16px;
    }

    /* Mobile: same pattern as v5 reviews — one slide per step, translate + infinite loop */
    .dte-cocktails-carousel-wrap {
        width: calc(100% + 32px);
        max-width: none;
        margin-left: -16px;
        margin-right: -16px;
        align-self: center;
    }

    .dte-cocktails-carousel {
        gap: 16px;
        align-items: center;
    }

    .dte-cocktails-carousel-viewport {
        border-radius: 0;
    }

    .dte-cocktails-carousel-track .dte-cocktails-slide {
        flex: 0 0 100cqw;
        min-width: 0;
    }

    .dte-cocktails-slide img {
        display: block;
        width: 100%;
        height: auto;
        max-height: min(400px, 62vh);
        aspect-ratio: 223 / 400;
        object-fit: cover;
        border-radius: 4px;
    }

    .dte-cocktails-dots {
        display: flex;
        margin-top: 4px;
        /* Carousel wrap is full-bleed (negative margins); inset dots to match section copy (16px) */
        padding-inline: 16px;
        box-sizing: border-box;
    }

    /* ---- Upcoming Shows — Figma 1530:24631 (mobile) ---- */
    .dte-upcoming {
        padding: 40px 16px;
    }

    .dte-upcoming-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 32px;
    }

    .dte-upcoming-rows {
        gap: 24px;
    }

    .dte-upcoming-row {
        grid-template-columns: 1fr;
        gap: 24px;
        min-width: 0;
        width: 100%;
    }

    .dte-event-card {
        min-width: 0;
        overflow: hidden;
    }

    .dte-upcoming-calendar {
        margin-top: 8px;
    }

    .dte-event-media {
        height: 189px;
        border-radius: 0;
    }

    /* Match index5 .v5-upcoming-card-body: stretch so ellipsis works; left-aligned text */
    .dte-event-body {
        align-items: stretch;
        text-align: left;
        gap: 12px;
        min-width: 0;
    }

    .dte-event-badge {
        justify-content: flex-start;
        font-family: "Mulish", sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
    }

    /* Match .v5-upcoming-card-title (index5) on mobile */
    .dte-event-name {
        font-family: "Philosopher", serif;
        font-size: 18px;
        line-height: 28px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        min-width: 0;
    }

    /* Match .v5-upcoming-card-subtitle (index5) on mobile */
    .dte-event-desc {
        font-family: "Mulish", sans-serif;
        font-size: 14px;
        line-height: 20px;
        color: #a6a6a6;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        min-width: 0;
    }

    .dte-event-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        margin-top: auto;
    }

    .dte-event-seats {
        font-family: "Mulish", sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
    }

    .dte-event-seats span {
        font-size: 14px;
        font-weight: 700;
    }

    .dte-event-actions {
        width: 100%;
    }

    .dte-event-actions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;
    }

    .dte-event-actions .dte-btn-gold {
        width: auto;
        max-width: none;
        justify-content: center;
        font-size: 18px;
        line-height: 28px;
        padding: 8px 24px;
        box-sizing: border-box;
    }

    .dte-event-see-more {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 20px;
    }

    .dte-btn-gold {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
    }

    .dte-btn-outline {
        font-size: 16px;
        line-height: 24px;
        padding: 8px 16px;
    }

    /* ---- Gallery ---- */
    .dte-gallery-wrap .v5-gallery-title {
        padding-top: 40px;
    }

    /* ---- CTA ---- */
    .dte-page .v5-cta-section {
        padding: 80px 16px 40px;
    }

    .dte-page .v5-cta-title {
        font-size: 36px;
        line-height: 44px;
    }

    /* ---- Footer ---- */
    .dte-page .v5-footer {
        padding: 40px 16px 24px;
        gap: 24px;
    }

    .dte-page .v5-footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .dte-page .v5-footer-terms {
        order: 1;
    }

    .dte-page .v5-footer-copyright {
        order: 2;
    }
}

