:root {
    --bg: #080604;
    --bg-soft: #120d09;
    --card: #18100c;
    --fire: #f06a18;
    --fire-deep: #8e2d0b;
    --gold: #d6a04f;
    --text: #f6eee4;
    --muted: #bea58e;
    --line: rgba(214, 160, 79, 0.22);
    --success: #2eaf68;
    --font-body: "Be Vietnam Pro", Arial, Helvetica, sans-serif;
    --font-heading: "Merriweather", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top center, rgba(240, 106, 24, 0.08), transparent 22%),
        linear-gradient(180deg, #070503 0%, #120c09 45%, #080604 100%);
    color: var(--text);
    line-height: 1.6;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.bg-fire-video {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #080604;
}

.bg-fire-video video {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.38;
    filter: saturate(1.2) contrast(1.08) brightness(0.75);
}

.bg-fire-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 6, 4, .92) 0%, rgba(8, 6, 4, .76) 28%, rgba(8, 6, 4, .34) 58%, rgba(8, 6, 4, .18) 100%);
    z-index: 1;
}

.bg-fire-video::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -2%;
    height: 32vh;
    background:
        radial-gradient(circle at 20% 100%, rgba(255, 120, 20, .14), transparent 26%),
        radial-gradient(circle at 50% 100%, rgba(255, 150, 40, .18), transparent 30%),
        radial-gradient(circle at 80% 100%, rgba(255, 90, 10, .14), transparent 24%);
    filter: blur(22px);
    z-index: 2;
}

header,
main,
footer {
    position: relative;
    z-index: 3;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(8, 6, 4, .92);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 24px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.brand::after {
    content: "";
    position: absolute;
    inset: -10px -16px;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 120, 30, .16), transparent 24%),
        radial-gradient(circle at 80% 50%, rgba(214, 160, 79, .12), transparent 22%);
    filter: blur(14px);
    pointer-events: none;
    z-index: -1;
}

.brand img {
    height: 88px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 28px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
    flex-wrap: wrap;
    align-items: center;
    letter-spacing: .3px;
}

.nav-links a {
    line-height: 1;
    transition: color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    transform: translateY(-1px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .8px;
    text-transform: uppercase;
    transition: .2s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(180deg, #ff7c26 0%, #c94912 55%, #8e2d0b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(158, 53, 16, .34), 0 0 20px rgba(240, 106, 24, .18);
    animation: firePulse 2s ease-in-out infinite;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -120%;
    width: 90px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: skewX(-18deg);
    animation: shimmer 3.6s ease-in-out infinite;
}

header .btn-primary {
    padding: 14px 26px;
    min-height: 50px;
    font-size: 15px;
    border-radius: 15px;
}

.btn-secondary {
    border: 1px solid var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, .02);
}

.hero {
    padding: 88px 0 56px;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 114, 26, .18), transparent 28%),
        radial-gradient(circle at 15% 10%, rgba(142, 45, 11, .16), transparent 24%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 360px);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--gold);
    font-size: 11px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .02);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 68px);
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
}

h3 {
    margin: 0 0 10px;
}

.hero p {
    color: var(--muted);
    font-size: 18px;
    margin: 0 0 28px;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-card {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    margin-left: auto;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #120c09;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .42), 0 0 30px rgba(240, 106, 24, .12);
    position: relative;
    overflow: hidden;
}

.hero-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border: 0;
    outline: none;
    z-index: 0;
}

.hero-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(70, 20, 8, .16), rgba(8, 6, 4, .38)),
        radial-gradient(circle at bottom center, rgba(255, 140, 40, .10), transparent 35%);
    pointer-events: none;
    z-index: 2;
}

.hero-fallback-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(8, 6, 4, .18), rgba(8, 6, 4, .38)),
        radial-gradient(circle at bottom center, rgba(255, 140, 40, .16), transparent 40%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.hero-card.is-fallback .hero-fallback-overlay {
    opacity: 1;
    visibility: visible;
}

.hero-fallback-play {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .45);
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    font: inherit;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.hero-card::after {
    content: "NHẬP TỘC - GIỮ LỬA - ĐI SĂN";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.3px;
    font-size: 13px;
    font-family: var(--font-heading);
    z-index: 4;
}

.video-sound-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .42);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
    font-family: var(--font-body);
    backdrop-filter: blur(8px);
}

section {
    padding: 84px 0;
    position: relative;
    z-index: 2;
}

.tribal-divider {
    display: none !important;
}

.section-head {
    margin-bottom: 28px;
    position: relative;
    padding-top: 22px;
}

.section-head h2 {
    display: inline-block;
    padding-bottom: 12px;
    text-transform: uppercase;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, .005)),
        linear-gradient(135deg, rgba(240, 106, 24, .06), rgba(0, 0, 0, 0));
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
}

.card h3 {
    color: var(--gold);
}

.card p {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.visual {
    min-height: 340px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: url("../images/space.jpg") center/cover;
    overflow: hidden;
}

.list {
    display: grid;
    gap: 14px;
}

.list-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .02);
}

.list-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--gold);
    font-family: var(--font-heading);
}

.gallery-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-viewport {
    width: 100%;
    overflow: hidden;
}

.gallery-horizontal {
    display: flex;
    gap: 16px;
    width: 100%;
}

.gallery-slide {
    position: relative;
    flex: 0 0 260px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background: #120c09;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .28), 0 0 18px rgba(240, 106, 24, .08);
    cursor: pointer;
}

.gallery-hover-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 18px;
    background: #000;
    border: 0;
    outline: none;
}

.gallery-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(90, 26, 10, .08), rgba(25, 10, 6, .18)),
        linear-gradient(135deg, rgba(240, 106, 24, .06), rgba(0, 0, 0, .03));
    pointer-events: none;
    z-index: 2;
}

.video-play-hint {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 13px;
    font-family: var(--font-body);
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.gallery-slide.is-playing .video-play-hint {
    opacity: 0;
}

.gallery-nav {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    flex: 0 0 46px;
}

.cta-box {
    background:
        radial-gradient(circle at bottom right, rgba(240, 106, 24, .14), transparent 30%),
        linear-gradient(135deg, rgba(240, 106, 24, .18), rgba(142, 45, 11, .08));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px;
    display: grid;
    gap: 14px;
}

.site-footer {
    margin-top: 44px;
    padding: 54px 0 44px;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(214, 160, 79, .14);
    background:
        radial-gradient(circle at center top, rgba(240, 106, 24, .10), transparent 26%),
        linear-gradient(180deg, rgba(18, 12, 9, .96) 0%, rgba(10, 7, 5, .98) 100%);
}

.footer-match {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 56px;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.footer-logo img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.footer-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 14px;
    border: none !important;
    outline: none;
    color: #fff !important;
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .6px;
    text-decoration: none;
    background: linear-gradient(180deg, #ff7c26 0%, #c94912 55%, #8e2d0b 100%) !important;
    box-shadow: 0 12px 28px rgba(158, 53, 16, .34), 0 0 20px rgba(240, 106, 24, .18);
    transition: .2s ease;
    position: relative;
    overflow: hidden;
}

.footer-book-btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -120%;
    width: 90px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: skewX(-18deg);
    animation: shimmer 3.6s ease-in-out infinite;
}

.footer-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(240, 106, 24, .34), 0 0 28px rgba(255, 140, 40, .24);
    color: #fff !important;
}

.footer-book-btn:visited,
.footer-book-btn:active,
.footer-book-btn:focus {
    color: #fff !important;
    text-decoration: none;
}

.footer-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(240, 106, 24, .34), 0 0 28px rgba(255, 140, 40, .24);
}

.footer-center {
    display: grid;
    gap: 16px;
    align-content: center;
}

.footer-center a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #f06a18;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .02);
}

.footer-social a svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-copy {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(80px) scale(.94);
    transition: opacity .9s ease, transform .9s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scrolled header {
    background: rgba(8, 6, 4, .96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.parallax-soft {
    will-change: transform;
    transition: transform .08s linear;
}

@keyframes shimmer {

    0%,
    65% {
        left: -120%;
    }

    100% {
        left: 140%;
    }
}

@keyframes firePulse {

    0%,
    100% {
        box-shadow: 0 12px 28px rgba(158, 53, 16, .28), 0 0 16px rgba(240, 106, 24, .12);
    }

    50% {
        box-shadow: 0 16px 34px rgba(240, 106, 24, .34), 0 0 28px rgba(255, 140, 40, .24);
    }
}

.hero-card-video::-webkit-media-controls,
.gallery-hover-video::-webkit-media-controls {
    display: none !important;
}

.hero-card-video::-webkit-media-controls-start-playback-button,
.gallery-hover-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero-card-video::-webkit-media-controls-play-button,
.gallery-hover-video::-webkit-media-controls-play-button {
    display: none !important;
    -webkit-appearance: none;
}

.hero-card-video::-webkit-media-controls-overlay-play-button,
.gallery-hover-video::-webkit-media-controls-overlay-play-button {
    display: none !important;
    -webkit-appearance: none;
}

@media (max-width: 960px) {

    .hero-grid,
    .split,
    .grid-3,
    .footer-match {
        grid-template-columns: 1fr;
    }

    .nav {
        min-height: 74px;
        padding: 10px 0;
        gap: 14px;
    }

    .brand img {
        height: 68px;
    }

    .nav-links {
        display: none;
    }

    .footer-left,
    .footer-right {
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        display: flex;
        align-items: center;
        padding: 12px 0;
    }

    .hero .wrap {
        width: calc(100% - 8px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
    }

    .hero-grid>div:first-child {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
        max-width: none;
        height: 88svh;
        max-height: none;
        aspect-ratio: auto;
        margin: 0 auto;
        border-radius: 18px;
    }

    .hero-card-video {
        object-fit: cover;
        object-position: center bottom;
    }

    .hero-card::after {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: 10px;
        letter-spacing: .8px;
    }

    .video-sound-btn {
        top: 10px !important;
        right: 10px !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: max-content !important;
        padding: 6px 9px !important;
        font-size: 11px !important;
        line-height: 1 !important;
        border-radius: 999px !important;
        white-space: nowrap !important;
        background: rgba(0, 0, 0, .55) !important;
    }

    .hero-fallback-play {
        padding: 10px 14px;
        font-size: 13px;
    }

    .gallery-slider-wrap {
        display: block;
    }

    .gallery-viewport {
        overflow: hidden;
        width: 100%;
    }

    .gallery-horizontal {
        gap: 0;
        transition: transform .45s ease;
        will-change: transform;
    }

    .gallery-slide {
        flex: 0 0 100%;
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 9 / 16;
        border-radius: 14px;
    }

    .gallery-hover-video,
    .gallery-slide::after {
        border-radius: 14px;
    }

    .gallery-nav {
        display: none;
    }

    .video-play-hint {
        bottom: 10px;
        padding: 7px 10px;
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.branch-section-modern {
    padding-top: 10px;
}

.branch-list-modern {
    display: grid;
    gap: 24px;
}

.branch-card-modern {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 360px);
    gap: 18px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        linear-gradient(135deg, rgba(240, 106, 24, .06), rgba(0, 0, 0, 0));
    box-shadow:
        0 20px 48px rgba(0, 0, 0, .24),
        0 0 18px rgba(240, 106, 24, .06);
    position: relative;
    overflow: hidden;
}

.branch-card-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg,
            transparent 0 20px,
            rgba(214, 160, 79, .02) 20px 22px);
    pointer-events: none;
}

.branch-card-modern-content,
.branch-card-modern-media {
    position: relative;
    z-index: 1;
}

.branch-card-modern-content {
    display: grid;
    gap: 10px;
    align-content: start;
}

.branch-card-modern-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.branch-card-modern-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(46, 175, 104, .18);
    border: 1px solid rgba(46, 175, 104, .34);
    color: #9ef1ba;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    width: fit-content;
}

.branch-card-modern-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f6eee4;
    font-weight: 700;
    white-space: nowrap;
}

.branch-card-modern-phone-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ff7c26 0%, #c94912 55%, #8e2d0b 100%);
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 18px rgba(240, 106, 24, .24);
}

.branch-card-modern-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.12;
    color: #f4e5d1;
    text-transform: none;
}

.branch-card-modern-desc {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.branch-card-modern-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(214, 160, 79, .12);
    border-bottom: 1px solid rgba(214, 160, 79, .12);
    padding: 10px 0;
}

.branch-card-modern-meta-item {
    min-width: 130px;
    padding: 8px 18px 8px 0;
    margin-right: 18px;
    border-right: 1px solid rgba(214, 160, 79, .16);
}

.branch-card-modern-meta-item:last-child {
    border-right: none;
    margin-right: 0;
}

.branch-card-modern-meta-label {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.branch-card-modern-meta-value {
    display: block;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
}

.branch-card-modern-address {
    margin: 0;
    color: #f6eee4;
}

.branch-card-modern-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.branch-card-modern-actions .btn {
    min-width: 170px;
}

.branch-card-modern-media {
    display: flex;
    align-items: stretch;
}

.branch-card-modern-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(214, 160, 79, .18);
    background: #120c09;
    position: relative;
    aspect-ratio: 4 / 3;
}

.branch-card-modern-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(90, 26, 10, .04), rgba(25, 10, 6, .16)),
        linear-gradient(135deg, rgba(240, 106, 24, .06), rgba(0, 0, 0, .03));
    pointer-events: none;
}

.branch-card-modern-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

@media (max-width: 960px) {
    .branch-card-modern {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

    .branch-card-modern-media {
        order: -1;
    }

    .branch-card-modern-image-wrap {
        min-height: 260px;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 768px) {
    .branch-card-modern {
        padding: 14px;
        border-radius: 18px;
        gap: 12px;
    }

    .branch-card-modern-content {
        gap: 10px;
    }

    .branch-card-modern-title {
        font-size: 18px;
        line-height: 1.15;
    }

    .branch-card-modern-desc {
        font-size: 13px;
        line-height: 1.45;
    }

    .branch-card-modern-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 12px 0;
    }

    .branch-card-modern-meta-item {
        min-width: 0;
        margin-right: 0;
        padding: 0;
        border-right: none;
    }

    .branch-card-modern-meta-value {
        font-size: 15px;
    }

    .branch-card-modern-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .branch-card-modern-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .branch-card-modern-actions .btn {
        min-width: 0;
        width: 100%;
        padding: 12px 14px;
        font-size: 12px;
    }

    .branch-card-modern-image-wrap {
        min-height: 220px;
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 520px) {
    .branch-card-modern-meta {
        grid-template-columns: 1fr 1fr;
    }

    .branch-card-modern-actions {
        grid-template-columns: 1fr;
    }
}

.branch-card-modern {
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.branch-card-modern:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 54px rgba(0, 0, 0, .28),
        0 0 20px rgba(240, 106, 24, .10);
    border-color: rgba(214, 160, 79, .34);
}

.branch-card-modern:focus-visible {
    outline: 2px solid rgba(214, 160, 79, .55);
    outline-offset: 3px;
}

.branch-article-page {
    position: relative;
}

.branch-article-hero {
    padding: 34px 0 18px;
}

.branch-article-hero-cover {
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(214, 160, 79, .18);
    background: #120c09;
    box-shadow:
        0 24px 54px rgba(0, 0, 0, .30),
        0 0 20px rgba(240, 106, 24, .08);
    margin-top: 16px;
}

.branch-article-hero-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.branch-article-hero-content {
    padding-top: 26px;
    max-width: 980px;
}

.branch-article-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(46, 175, 104, .18);
    border: 1px solid rgba(46, 175, 104, .34);
    color: #9ef1ba;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 14px;
}

.branch-article-main {
    padding: 8px 0 30px;
}

.branch-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 360px);
    gap: 28px;
    align-items: start;
}

.branch-article-content {
    display: grid;
    gap: 24px;
}

.branch-article-section {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        linear-gradient(135deg, rgba(240, 106, 24, .05), rgba(0, 0, 0, 0));
}

.branch-article-section h2 {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 34px);
    text-transform: uppercase;
}

.branch-article-section p {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 17px;
}

.branch-article-section p:last-child {
    margin-bottom: 0;
}

.branch-article-inline-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.branch-article-inline-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(214, 160, 79, .18);
    background: #120c09;
    min-height: 280px;
}

.branch-article-inline-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.branch-article-sidebar {
    position: sticky;
    top: 104px;
}

.branch-sidebar-card {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        linear-gradient(135deg, rgba(240, 106, 24, .07), rgba(0, 0, 0, 0));
    box-shadow:
        0 16px 38px rgba(0, 0, 0, .22),
        0 0 18px rgba(240, 106, 24, .06);
    display: grid;
    gap: 18px;
}

.branch-sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.branch-sidebar-phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ff7c26 0%, #c94912 55%, #8e2d0b 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(240, 106, 24, .20);
}

.branch-sidebar-meta {
    display: grid;
    gap: 14px;
}

.branch-sidebar-meta-item {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(214, 160, 79, .16);
}

.branch-sidebar-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.branch-sidebar-meta-label {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.branch-sidebar-meta-value {
    color: #fff;
    font-weight: 700;
    line-height: 1.5;
}

.branch-sidebar-actions {
    display: grid;
    gap: 10px;
}

.branch-sidebar-actions .btn {
    width: 100%;
}

.branch-article-gallery-section {
    padding-top: 10px;
}

.branch-article-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.branch-article-gallery-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(214, 160, 79, .18);
    background: #120c09;
    min-height: 220px;
}

.branch-article-gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.branch-article-back {
    margin-top: 20px;
}

.branch-article-back a {
    color: var(--gold);
    font-weight: 700;
}

@media (max-width: 960px) {
    .branch-article-layout {
        grid-template-columns: 1fr;
    }

    .branch-article-sidebar {
        position: static;
    }

    .branch-article-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .branch-article-hero {
        padding: 18px 0 8px;
    }

    .branch-article-hero-cover {
        border-radius: 18px;
    }

    .branch-article-hero-cover img {
        height: 240px;
    }

    .branch-article-hero-content {
        padding-top: 18px;
    }

    .branch-article-section {
        padding: 18px;
        border-radius: 18px;
    }

    .branch-article-section p {
        font-size: 15px;
    }

    .branch-article-inline-gallery {
        grid-template-columns: 1fr;
    }

    .branch-article-inline-image,
    .branch-article-inline-image img {
        min-height: 220px;
    }

    .branch-sidebar-card {
        padding: 18px;
        border-radius: 18px;
    }

    .branch-sidebar-phone {
        font-size: 17px;
    }

    .branch-article-gallery-grid {
        grid-template-columns: 1fr;
    }

    .branch-article-gallery-item,
    .branch-article-gallery-item img {
        min-height: 220px;
    }
}

.branch-article-gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 960px) {
    .branch-article-gallery-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .branch-article-gallery-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ===== BOOKING PAGE REFINED MOBILE LOOK ===== */
.booking-page .booking-hero-page {
    padding: 22px 0 46px;
    min-height: calc(100svh - 74px);
}

.booking-page .booking-mobile-wrap {
    width: min(760px, calc(100% - 20px));
}

.booking-page .booking-top {
    margin-bottom: 18px;
}

.booking-page .breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.booking-page h1 {
    margin: 0 0 10px;
    font-size: clamp(38px, 11vw, 56px);
    line-height: 1.02;
    text-transform: uppercase;
}

.booking-page .lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 100%;
}

.booking-page .booking-single-card {
    border: 1px solid rgba(214, 160, 79, .18);
    border-radius: 22px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(20, 12, 8, .84), rgba(12, 8, 6, .88)),
        linear-gradient(135deg, rgba(240, 106, 24, .08), rgba(142, 45, 11, .04));
    box-shadow:
        0 18px 45px rgba(0, 0, 0, .28),
        0 0 18px rgba(240, 106, 24, .06);
    backdrop-filter: blur(10px);
}

.booking-page .booking-section-head {
    margin-bottom: 14px;
}

.booking-page .booking-section-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, .03);
}

.booking-page .booking-section-head h2,
.booking-page .booking-section-head h3 {
    margin: 0 0 8px;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.14;
    font-family: var(--font-heading);
}

.booking-page .booking-section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.booking-page .booking-support-actions {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.booking-page .booking-support-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 12px;
}

.booking-page .booking-note-box {
    border: 1px solid rgba(214, 160, 79, .16);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .025);
}

.booking-page .booking-note-title {
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 5px;
}

.booking-page .booking-note-box .mini-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.booking-page .booking-divider {
    height: 1px;
    margin: 18px 0 16px;
    background: linear-gradient(90deg, transparent, rgba(214, 160, 79, .24), transparent);
}

.booking-page .booking-form-head {
    margin-bottom: 12px;
}

.booking-page .booking-form-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.booking-page .booking-form-grid-2 {
    grid-template-columns: 1fr;
}

.booking-page .booking-field {
    display: grid;
    gap: 6px;
    margin-bottom: 0;
}

.booking-page .booking-field label {
    font-size: 13px;
    font-weight: 700;
    color: #f3e6d8;
}

.booking-page .booking-field input,
.booking-page .booking-field select,
.booking-page .booking-field textarea {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(214, 160, 79, .20);
    background: rgba(255, 255, 255, .94);
    color: #23160f;
    padding: 0 14px;
    font: inherit;
    font-size: 15px;
    outline: none;
    box-shadow: none;
}

.booking-page .booking-field textarea {
    min-height: 96px;
    padding: 12px 14px;
    resize: vertical;
}

.booking-page .booking-field input::placeholder,
.booking-page .booking-field textarea::placeholder {
    color: #8f7d71;
}

.booking-page .booking-field input:focus,
.booking-page .booking-field select:focus,
.booking-page .booking-field textarea:focus {
    border-color: rgba(240, 106, 24, .55);
    box-shadow: 0 0 0 3px rgba(240, 106, 24, .10);
}

.booking-page .booking-submit-row {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.booking-page .booking-submit-row .btn {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    border-radius: 12px;
}

.booking-page .booking-submit-row .mini-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .booking-page .booking-mobile-wrap {
        width: min(920px, calc(100% - 32px));
    }

    .booking-page .booking-single-card {
        padding: 24px;
    }

    .booking-page .booking-form-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== MENU PAGE MODERN ===== */
.menu-page-modern {
    position: relative;
}

.menu-section-modern {
    padding: 0 280px 34px 0;
}

.menu-section-head-modern {
    margin-bottom: 16px;
}

.menu-section-head-modern h3 {
    margin: 0;
    font-size: clamp(28px, 4vw, 40px);
    color: var(--gold);
    text-transform: uppercase;
}

.menu-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.menu-card-modern {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)),
        linear-gradient(135deg, rgba(240, 106, 24, .08), rgba(0, 0, 0, 0));
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
    align-items: center;
}

.menu-card-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #120c09;
    border: 1px solid rgba(214, 160, 79, .14);
}

.menu-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-card-content {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.menu-card-top {
    display: grid;
    gap: 8px;
}

.menu-card-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #f6eee4;
    font-weight: 800;
}

.menu-card-price {
    color: var(--gold);
    font-weight: 900;
    font-size: 20px;
}

.menu-card-actions {
    display: flex;
    justify-content: flex-end;
}

.menu-add-btn {
    border: 1px solid rgba(214, 160, 79, .22);
    background: rgba(255, 255, 255, .03);
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    transition: .2s ease;
}

.menu-cart-float {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 120;
    display: grid;
    gap: 12px;
    width: 250px;
}

.menu-cart-toggle {
    width: 100%;
    border: 1px solid rgba(214, 160, 79, .18);
    border-radius: 20px;
    padding: 16px 18px;
    text-align: left;
    cursor: pointer;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(240, 106, 24, .16), transparent 32%),
        linear-gradient(180deg, rgba(28, 17, 11, .98) 0%, rgba(14, 9, 6, .98) 100%);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, .34),
        0 0 18px rgba(240, 106, 24, .08);
    backdrop-filter: blur(10px);
}

.menu-cart-toggle span {
    display: block;
    margin-bottom: 6px;
    color: #c9b19b;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .3px;
}

.menu-cart-toggle strong {
    display: block;
    color: #f6eee4;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .2px;
}

.menu-cart-panel {
    display: none;
    border: 1px solid rgba(214, 160, 79, .18);
    border-radius: 20px;
    padding: 16px;
    background:
        radial-gradient(circle at bottom left, rgba(240, 106, 24, .10), transparent 30%),
        linear-gradient(180deg, rgba(20, 12, 8, .98) 0%, rgba(10, 7, 5, .98) 100%);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .34),
        0 0 20px rgba(240, 106, 24, .08);
}

.menu-cart-float.is-open .menu-cart-panel {
    display: block;
}

.menu-cart-head h3 {
    margin: 0 0 12px;
    color: #f6eee4;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.08;
}

.menu-cart-list {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
    max-height: 320px;
    overflow: auto;
    padding-right: 2px;
}

.menu-cart-empty {
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
}

.menu-cart-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(214, 160, 79, .10);
}

.menu-cart-item:last-child {
    border-bottom: none;
}

.menu-cart-item-info {
    display: grid;
    gap: 4px;
}

.menu-cart-item-info strong {
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
}

.menu-cart-item-info span {
    color: #c7ae97;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.menu-cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(214, 160, 79, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    cursor: pointer;
}

.menu-cart-qty {
    min-width: 16px;
    text-align: center;
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
}

.menu-cart-booking-btn {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.menu-cart-booking-btn.is-disabled {
    pointer-events: none;
    opacity: .42;
    filter: grayscale(.12);
}

@media (max-width: 1100px) {
    .menu-section-modern {
        padding-right: 0;
    }

    .menu-grid-modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-cart-float {
        right: 14px;
        width: 230px;
    }
}

@media (max-width: 768px) {
    .menu-grid-modern {
        grid-template-columns: 1fr;
    }

    .menu-section-modern {
        padding: 0 0 24px;
    }

    .menu-card-modern {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .menu-card-title {
        font-size: 16px;
    }

    .menu-card-price {
        font-size: 18px;
    }

    .menu-cart-float {
        right: 10px;
        left: 10px;
        top: auto;
        bottom: 12px;
        width: auto;
        transform: none;
        gap: 8px;
    }

    .menu-cart-toggle {
        border-radius: 16px;
        padding: 14px 16px;
    }

    .menu-cart-toggle span {
        font-size: 12px;
    }

    .menu-cart-toggle strong {
        font-size: 17px;
    }

    .menu-cart-panel {
        border-radius: 16px;
        padding: 14px;
        margin-bottom: 8px;
    }

    .menu-cart-head h3 {
        font-size: 24px;
    }

    .menu-cart-booking-btn {
        min-height: 50px;
        font-size: 14px;
    }
}

/* ===== HEADER MOBILE REFINED + MOBILE OVERLAY MENU ===== */
.site-nav-enhanced {
    position: relative;
}

.nav-right-desktop {
    display: flex;
    align-items: center;
}

.header-booking-btn {
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 15px;
    font-size: 15px;
}

.mobile-header-actions,
.mobile-menu-toggle,
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 960px) {
    .site-nav-enhanced {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 12px;
        min-height: 78px;
        padding: 10px 0;
    }

    .site-nav-enhanced .brand {
        min-width: 0;
    }

    .site-nav-enhanced .brand img {
        height: 58px;
        max-width: 100%;
        object-fit: contain;
    }

    .site-nav-enhanced .nav-links,
    .site-nav-enhanced .nav-right-desktop {
        display: none !important;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-booking-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0 16px;
        border-radius: 14px;
        background: linear-gradient(180deg, #ff7c26 0%, #c94912 55%, #8e2d0b 100%);
        color: #fff;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .5px;
        box-shadow: 0 10px 24px rgba(240, 106, 24, .22);
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 14px;
        border: 1px solid rgba(214, 160, 79, .18);
        background: rgba(255, 255, 255, .03);
        cursor: pointer;
        padding: 0;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #f6eee4;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .mobile-nav-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .62);
        backdrop-filter: blur(6px);
    }

    .mobile-nav-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100%;
        padding: 18px 18px 24px;
        background:
            radial-gradient(circle at top right, rgba(240, 106, 24, .14), transparent 30%),
            linear-gradient(180deg, rgba(18, 12, 9, .985) 0%, rgba(10, 7, 5, .99) 100%);
        border-left: 1px solid rgba(214, 160, 79, .14);
        box-shadow: -16px 0 40px rgba(0, 0, 0, .36);
        transform: translateX(100%);
        transition: transform .28s ease;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-overlay.is-open .mobile-nav-panel {
        transform: translateX(0);
    }

    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 22px;
    }

    .mobile-nav-logo img {
        height: 48px;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-close {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(214, 160, 79, .16);
        background: rgba(255, 255, 255, .03);
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-nav-links {
        display: grid;
        gap: 4px;
        margin-bottom: 22px;
    }

    .mobile-nav-links a {
        display: block;
        padding: 14px 0;
        color: #f6eee4;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
        border-bottom: 1px solid rgba(214, 160, 79, .10);
    }

    .mobile-nav-booking {
        margin-top: auto;
        width: 100%;
        min-height: 52px;
        border-radius: 14px;
        font-size: 15px;
    }
}

@media (max-width: 520px) {
    .site-nav-enhanced .brand img {
        height: 50px;
    }

    .mobile-booking-btn {
        min-height: 42px;
        padding: 0 14px;
        font-size: 12px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .mobile-nav-links a {
        font-size: 20px;
    }
}

body.mobile-menu-open {
    overflow: hidden;
}

/* ===== FINAL CLEAN HEADER MOBILE + OVERLAY MENU ===== */
.site-nav-enhanced {
    position: relative;
}

.nav-right-desktop {
    display: flex;
    align-items: center;
}

.header-booking-btn {
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 14px;
    font-size: 14px;
    letter-spacing: .45px;
}

.mobile-header-actions,
.mobile-menu-toggle,
.mobile-nav-overlay {
    display: none;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 960px) {
    .site-nav-enhanced {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        min-height: 74px;
        padding: 10px 0;
    }

    .site-nav-enhanced .brand {
        min-width: 0;
    }

    .site-nav-enhanced .brand img {
        height: 50px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .site-nav-enhanced .nav-links,
    .site-nav-enhanced .nav-right-desktop {
        display: none !important;
    }

    .site-nav-enhanced .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .site-nav-enhanced .mobile-booking-btn,
    .site-nav-enhanced .header-booking-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 14px;
        border-radius: 12px;
        background: linear-gradient(180deg, #ff7c26 0%, #c94912 55%, #8e2d0b 100%);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .45px;
        line-height: 1;
        white-space: nowrap;
        box-shadow: 0 10px 24px rgba(240, 106, 24, .22);
    }

    .site-nav-enhanced .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border-radius: 12px;
        border: 1px solid rgba(214, 160, 79, .18);
        background: rgba(255, 255, 255, .03);
        cursor: pointer;
        padding: 0;
    }

    .site-nav-enhanced .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: #f6eee4;
    }

    .mobile-nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .mobile-nav-overlay.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-nav-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, .62);
        backdrop-filter: blur(6px);
    }

    .mobile-nav-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100%;
        padding: 18px 18px 24px;
        background:
            radial-gradient(circle at top right, rgba(240, 106, 24, .14), transparent 30%),
            linear-gradient(180deg, rgba(18, 12, 9, .985) 0%, rgba(10, 7, 5, .99) 100%);
        border-left: 1px solid rgba(214, 160, 79, .14);
        box-shadow: -16px 0 40px rgba(0, 0, 0, .36);
        transform: translateX(100%);
        transition: transform .28s ease;
        display: flex;
        flex-direction: column;
    }

    .mobile-nav-overlay.is-open .mobile-nav-panel {
        transform: translateX(0);
    }

    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 22px;
    }

    .mobile-nav-logo img {
        height: 46px;
        width: auto;
        object-fit: contain;
    }

    .mobile-nav-close {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        border: 1px solid rgba(214, 160, 79, .16);
        background: rgba(255, 255, 255, .03);
        color: #fff;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-nav-links {
        display: grid;
        gap: 4px;
        margin-bottom: 22px;
    }

    .mobile-nav-links a {
        display: block;
        padding: 14px 0;
        color: #f6eee4;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.2;
        border-bottom: 1px solid rgba(214, 160, 79, .10);
    }

    .mobile-nav-booking {
        margin-top: auto;
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
        font-size: 14px;
    }
}

@media (max-width: 520px) {
    .site-nav-enhanced .brand img {
        height: 48px;
    }

    .site-nav-enhanced .mobile-booking-btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 11px;
    }

    .site-nav-enhanced .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .mobile-nav-links a {
        font-size: 20px;
    }
}

/* ===== FIX TITLE CHO CAC TRANG THUC DON / CO SO / DAT BAN ===== */
.page-hero {
    padding: 34px 0 18px;
}

.page-hero .breadcrumb {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(34px, 7vw, 64px);
    line-height: 1.02;
    letter-spacing: -.6px;
    text-transform: uppercase;
    color: #f6eee4;
    text-wrap: balance;
}

.page-hero .lead {
    margin: 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 24px 0 12px;
    }

    .page-hero .breadcrumb {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .page-hero h1 {
        font-size: clamp(28px, 10vw, 48px);
        line-height: 0.96;
        letter-spacing: -.8px;
        margin-bottom: 12px;
    }

    .page-hero .lead {
        font-size: 15px;
        line-height: 1.65;
    }
}

/* ===== NÚT ĐẶT BÀN NGAY NHỎ LẠI, 1 DÒNG, CÂN ĐỐI ===== */
@media (max-width: 960px) {

    .site-nav-enhanced .mobile-booking-btn,
    .site-nav-enhanced .header-booking-btn {
        width: 142px !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 14px !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 14px !important;

        font-family: var(--font-body) !important;
        font-size: 12px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        letter-spacing: .15px !important;
        text-transform: uppercase !important;

        text-align: center !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 520px) {

    .site-nav-enhanced .mobile-booking-btn,
    .site-nav-enhanced .header-booking-btn {
        width: 136px !important;
        height: 46px !important;
        min-height: 46px !important;
        font-size: 11.5px !important;
        border-radius: 13px !important;
    }
}