/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#hdr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(253, 246, 227, .97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gold-pale);
    transition: box-shadow .3s;
}

#hdr.scrolled {
    box-shadow: 0 3px 24px rgba(184, 115, 10, .18)
}

.hdr-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    padding: 0 20px
}

@media(min-width:1024px) {
    .hdr-inner {
        padding: 0 44px
    }
}

/* ── Logo block ── */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo-icon {
    height: 64px;
    width: auto;
    flex-shrink: 0
}

@media(max-width:767px) {
    .logo-icon {
        height: 54px
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px
}

.logo-name {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--gold);
    letter-spacing: .18em;
    line-height: 1;
}

.logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(10px, 1vw, 11.5px);
    color: var(--brown2);
    letter-spacing: .22em;
    text-transform: uppercase;
}

/* Tagline hidden on small mobile */
@media(max-width:480px) {
    .logo-tagline {
        display: none
    }
}

/* ── Desktop nav ── */
.desk-nav {
    display: none
}

@media(min-width:1024px) {
    .desk-nav {
        display: flex;
        align-items: center;
        gap: 2px
    }

    .desk-nav a {
        font-family: 'Cinzel', serif;
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: .1em;
        color: var(--brown);
        padding: 8px 13px;
        border-radius: var(--r);
        transition: color .2s;
    }

    .desk-nav a:hover {
        color: var(--gold)
    }

    /* VI/ZH/KO: switch nav font to handle non-Latin chars */
    html[lang="vi"] .desk-nav a {
        font-family: 'Be Vietnam Pro', sans-serif;
        letter-spacing: .05em
    }

    html[lang="zh"] .desk-nav a {
        font-family: 'Noto Serif SC', serif;
        letter-spacing: .1em
    }

    html[lang="ko"] .desk-nav a {
        font-family: 'Noto Serif KR', serif;
        letter-spacing: .04em
    }
}

/* ── Lang + Book ── */
.hdr-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.lang-bar {
    display: flex;
    gap: 2px
}

.lb {
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 5px 8px;
    border: 1px solid var(--gold-pale);
    border-radius: 2px;
    background: transparent;
    color: var(--brown2);
    cursor: pointer;
    transition: all .2s;
}

.lb:hover,
.lb.on {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

/* Korean/Chinese label can't use Cinzel */
.lb[data-lb="zh"],
.lb[data-lb="ko"] {
    font-family: 'Lato', sans-serif
}

.hdr-book {
    display: none
}

@media(min-width:768px) {
    .hdr-book {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Cinzel', serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .1em;
        padding: 10px 22px;
        background: var(--gold);
        color: #fff;
        border-radius: var(--r);
        transition: background .2s, transform .2s;
        white-space: nowrap;
    }

    .hdr-book:hover {
        background: var(--gold-deep);
        transform: translateY(-1px)
    }

    html[lang="vi"] .hdr-book {
        font-family: 'Be Vietnam Pro', sans-serif;
        letter-spacing: .04em
    }

    html[lang="zh"] .hdr-book {
        font-family: 'Noto Serif SC', serif;
        letter-spacing: .06em
    }

    html[lang="ko"] .hdr-book {
        font-family: 'Noto Serif KR', serif;
        letter-spacing: .02em
    }
}

/* ── Hamburger ── */
.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .3s
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger.open span:nth-child(2) {
    opacity: 0
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

@media(min-width:1024px) {
    .burger {
        display: none
    }
}

/* ── Mobile drawer ── */
.mob-drawer {
    display: none;
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 899;
    background: var(--cream);
    overflow-y: auto;
    flex-direction: column;
    padding: 32px 28px 100px;
    gap: 0;
}

.mob-drawer.open {
    display: flex
}

.mob-drawer a {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--brown);
    padding: 18px 0;
    border-bottom: 1px solid var(--gold-pale)
}

.mob-drawer a:hover {
    color: var(--gold)
}

html[lang="vi"] .mob-drawer a {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-weight: 600;
    letter-spacing: .04em
}

html[lang="zh"] .mob-drawer a {
    font-family: 'Noto Serif SC', serif;
    letter-spacing: .1em
}

html[lang="ko"] .mob-drawer a {
    font-family: 'Noto Serif KR', serif;
    letter-spacing: .04em
}

.mob-lang-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 28px 0 12px
}

.mob-lang {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

/* ══════════════════════════════════════════
   FLOATING CONTACT
══════════════════════════════════════════ */
.float-dock {
    position: fixed;
    right: 0;
    bottom: 80px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fd-btn {
    display: flex;
    align-items: center;
    gap: 0;
    width: 50px;
    height: 50px;
    border-radius: 0;
    overflow: hidden;
    transition: width .3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.fd-btn:first-child {
    border-radius: 8px 0 0 0
}

.fd-btn:last-child {
    border-radius: 0 0 0 8px
}

@media(min-width:768px) {
    .fd-btn {
        width: 44px;
        height: 44px
    }

    .float-dock {
        bottom: 120px
    }
}

.fd-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fd-icon .si {
    width: 22px;
    height: 22px
}

@media(min-width:768px) {
    .fd-icon {
        width: 44px;
        height: 44px
    }
}

@media(min-width:768px) {
    .fd-icon .si {
        width: 20px;
        height: 20px
    }
}

.fd-label {
    white-space: nowrap;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding-right: 14px;
    max-width: 0;
    overflow: hidden;
    transition: max-width .3s ease, padding .3s ease;
}

.fd-btn:hover {
    width: auto
}

.fd-btn:hover .fd-label {
    max-width: 120px;
    padding-right: 14px
}

.fd-wa {
    background: #25D366
}

.fd-zalo {
    background: #0068FF
}

.fd-call {
    background: var(--gold)
}

.fd-map {
    background: #EA4335
}

/* bottom CTA bar on mobile */
.mob-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    display: flex;
    background: var(--brown);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, .25);
}

@media(min-width:768px) {
    .mob-cta {
        display: none
    }
}

.mob-cta a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 10px 4px;
    font-size: 9px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: background .2s;
}

.mob-cta a:last-child {
    border-right: none
}

.mob-cta a:hover {
    background: rgba(255, 255, 255, .08)
}

.mob-cta a span.ico {
    display: flex;
    align-items: center;
    justify-content: center
}

.mob-cta a span.ico .si {
    width: 20px;
    height: 20px
}

.mob-cta a.book-cta {
    background: var(--gold);
    color: #fff;
    flex: 1.4
}

.mob-cta a.book-cta:hover {
    background: var(--gold-deep)
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
    position: relative;
    height: 100svh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 82px;
    /* offset sticky header */
}

.hero-slides {
    position: absolute;
    inset: 0
}

.hs {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease
}

.hs.on {
    opacity: 1
}

.hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 6, 0, .3) 0%, rgba(18, 6, 0, .55) 55%, rgba(18, 6, 0, .72) 100%)
}

.hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 820px;
}

.hero-eye {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold-pale);
    margin-bottom: 10px
}

.hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(68px, 14vw, 118px);
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 2px 32px rgba(200, 134, 10, .4)
}

html[lang="vi"] .hero-script {
    font-family: 'Dancing Script', cursive
}

html[lang="zh"] .hero-script {
    font-family: 'Liu Jian Mao Cao', cursive
}

html[lang="ko"] .hero-script {
    font-family: 'Nanum Brush Script', cursive
}

.hero-sub {
    font-family: 'Cinzel', serif;
    font-size: clamp(11px, 2vw, 16px);
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 16px
}

html[lang="vi"] .hero-sub,
html[lang="zh"] .hero-sub,
html[lang="ko"] .hero-sub {
    font-family: inherit;
    letter-spacing: .12em
}

.hero-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px
}

.hero-div::before,
.hero-div::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold-lt);
    opacity: .6
}

.hero-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(16px, 2.8vw, 22px);
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
    line-height: 1.5
}

html[lang="zh"] .hero-tag,
html[lang="ko"] .hero-tag {
    font-style: normal
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px
}

.hero-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .82)
}

.hero-chip::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-lt);
    flex-shrink: 0
}

.hero-pickup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 134, 10, .22);
    border: 1px solid rgba(200, 134, 10, .5);
    border-radius: 30px;
    padding: 8px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--gold-pale);
    margin-bottom: 32px;
    letter-spacing: .04em
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px
}

/* slide dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s
}

.dot.on {
    background: var(--gold-lt);
    transform: scale(1.4)
}

/* ══════════════════════════════════════════
   SIGNATURE COMBO
══════════════════════════════════════════ */
#sig {
    background: var(--brown);
    padding: 0;
    overflow: hidden
}

.sig-grid {
    display: grid;
    grid-template-columns: 1fr
}

@media(min-width:768px) {
    .sig-grid {
        grid-template-columns: 1fr 1fr
    }
}

.sig-img {
    position: relative;
    min-height: 320px
}

@media(min-width:768px) {
    .sig-img {
        min-height: 500px
    }
}

.sig-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.sig-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--brown))
}

@media(min-width:768px) {
    .sig-img::after {
        background: linear-gradient(90deg, transparent 60%, var(--brown))
    }
}

.sig-body {
    padding: 40px 28px 48px
}

@media(min-width:768px) {
    .sig-body {
        padding: 60px 48px 60px 36px;
        display: flex;
        flex-direction: column;
        justify-content: center
    }
}

.sig-eye {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 10px
}

.sig-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 6vw, 60px);
    color: var(--gold-lt);
    line-height: 1.1;
    margin-bottom: 6px
}

html[lang="vi"] .sig-script {
    font-family: 'Dancing Script', cursive
}

html[lang="zh"] .sig-script {
    font-family: 'Liu Jian Mao Cao', cursive
}

html[lang="ko"] .sig-script {
    font-family: 'Nanum Brush Script', cursive
}

.sig-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(13px, 1.6vw, 17px);
    color: rgba(255, 255, 255, .6);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 24px
}

html[lang="vi"] .sig-name,
html[lang="zh"] .sig-name,
html[lang="ko"] .sig-name {
    font-family: inherit;
    letter-spacing: .06em
}

.sig-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px
}

.sig-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(255, 255, 255, .78)
}

.sig-items li::before {
    content: '';
    display: block;
    width: 18px;
    height: 1px;
    background: var(--gold-lt);
    flex-shrink: 0
}

html[lang="zh"] .sig-items li,
html[lang="ko"] .sig-items li {
    font-family: inherit;
    font-size: 15px;
    font-style: normal
}

.sig-meta {
    display: flex;
    gap: 28px;
    margin-bottom: 28px
}

.sig-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.sig-meta-lbl {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold)
}

.sig-meta-val {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #fff;
    font-weight: 600
}

.sig-meta-val.price {
    color: var(--gold-lt)
}

/* ══════════════════════════════════════════
   SERVICES (with filter)
══════════════════════════════════════════ */
#services {
    background: var(--cream2)
}

/* Filter tabs */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px
}

.ftab {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    padding: 9px 18px;
    border: 1.5px solid var(--gold-pale);
    border-radius: 30px;
    background: transparent;
    color: var(--brown2);
    cursor: pointer;
    transition: all .25s
}

.ftab:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.ftab.on {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold)
}

html[lang="vi"] .ftab,
html[lang="zh"] .ftab,
html[lang="ko"] .ftab {
    font-family: inherit;
    letter-spacing: .04em
}

/* Cards grid */
.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

@media(min-width:600px) {
    .cards {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .cards {
        grid-template-columns: repeat(3, 1fr)
    }
}

.card {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--sh);
    display: flex;
    flex-direction: column;
    transition: transform .3s, box-shadow .3s
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(184, 115, 10, .18)
}

.card[style*="none"] {
    display: none !important
}

.card-img {
    position: relative;
    height: 200px;
    overflow: hidden
}

@media(min-width:600px) {
    .card-img {
        height: 210px
    }
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.card:hover .card-img img {
    transform: scale(1.07)
}

.cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 2px
}

.card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.card-dur {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    color: var(--brown);
    margin-bottom: 8px;
    line-height: 1.3
}

html[lang="vi"] .card-title {
    font-family: 'Playfair Display', serif
}

html[lang="zh"] .card-title {
    font-family: 'Noto Serif SC', serif
}

html[lang="ko"] .card-title {
    font-family: 'Noto Serif KR', serif
}

.card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14.5px;
    color: var(--brown2);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px
}

html[lang="zh"] .card-desc,
html[lang="ko"] .card-desc {
    font-style: normal;
    font-family: inherit;
    font-size: 14px
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gold-pale);
    padding-top: 14px
}

.card-price {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    color: var(--gold);
    font-weight: 700
}

.card-btn {
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    letter-spacing: .1em;
    padding: 7px 14px;
    border: 1.5px solid var(--gold);
    border-radius: var(--r);
    color: var(--gold);
    transition: all .2s
}

.card-btn:hover {
    background: var(--gold);
    color: #fff
}

html[lang="vi"] .card-btn,
html[lang="zh"] .card-btn,
html[lang="ko"] .card-btn {
    font-family: inherit;
    letter-spacing: .04em
}

/* ══════════════════════════════════════════
   FREE PICK-UP
══════════════════════════════════════════ */
#pickup {
    position: relative;
    overflow: hidden;
    background: var(--brown);
}

.pickup-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/4.jpg');
    background-size: cover;
    background-position: center;
    opacity: .18;
}

.pickup-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 72px 20px;
}

@media(min-width:768px) {
    .pickup-inner {
        padding: 96px 20px
    }
}

.pickup-ico {
    font-size: 48px;
    margin-bottom: 14px
}

.pickup-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(44px, 8vw, 72px);
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: 6px
}

html[lang="vi"] .pickup-script {
    font-family: 'Dancing Script', cursive
}

html[lang="zh"] .pickup-script {
    font-family: 'Liu Jian Mao Cao', cursive
}

html[lang="ko"] .pickup-script {
    font-family: 'Nanum Brush Script', cursive
}

.pickup-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: 700;
    color: #fff;
    letter-spacing: .18em;
    margin-bottom: 14px
}

html[lang="vi"] .pickup-title,
html[lang="zh"] .pickup-title,
html[lang="ko"] .pickup-title {
    font-family: inherit;
    letter-spacing: .06em
}

.pickup-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 480px
}

html[lang="zh"] .pickup-desc,
html[lang="ko"] .pickup-desc {
    font-style: normal;
    font-family: inherit
}

.pickup-channels {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px
}

.pc {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 30px;
    padding: 9px 20px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: .1em;
    color: #fff;
    transition: background .2s
}

.pc .si {
    width: 18px;
    height: 18px;
    opacity: .9
}

.pc:hover {
    background: rgba(255, 255, 255, .22)
}

html[lang="vi"] .pc,
html[lang="zh"] .pc,
html[lang="ko"] .pc {
    font-family: inherit;
    letter-spacing: .04em
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
#why {
    background: var(--cream)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(min-width:768px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.why-card {
    background: #fff;
    border-radius: var(--r);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--sh);
    transition: transform .3s
}

.why-card:hover {
    transform: translateY(-4px)
}

.why-ico {
    font-size: 36px;
    margin-bottom: 14px
}

.why-title {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--brown);
    letter-spacing: .08em;
    margin-bottom: 8px;
    line-height: 1.35
}

html[lang="vi"] .why-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px
}

html[lang="zh"] .why-title {
    font-family: 'Noto Serif SC', serif
}

html[lang="ko"] .why-title {
    font-family: 'Noto Serif KR', serif
}

.why-desc {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--brown2);
    line-height: 1.6
}

html[lang="zh"] .why-desc,
html[lang="ko"] .why-desc {
    font-style: normal;
    font-family: inherit;
    font-size: 13px
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
#gallery {
    background: var(--brown);
    padding-bottom: 0
}

.gal-head {
    padding-bottom: 40px
}

.gal-script {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(40px, 7vw, 62px);
    color: var(--gold-lt);
    display: block;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 4px
}

html[lang="vi"] .gal-script {
    font-family: 'Dancing Script', cursive
}

html[lang="zh"] .gal-script {
    font-family: 'Liu Jian Mao Cao', cursive
}

html[lang="ko"] .gal-script {
    font-family: 'Nanum Brush Script', cursive
}

.gal-sub {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    text-align: center
}

.gal-grid {
    display: grid;
    gap: 3px;
    grid-template-columns: 1fr 1fr;
}

@media(min-width:768px) {
    .gal-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 240px 240px;
    }

    .gal-item:nth-child(2) {
        grid-row: 1/3
    }
}

.gal-item {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 180px;
}

@media(min-width:768px) {
    .gal-item {
        height: auto
    }
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.gal-item:hover img {
    transform: scale(1.08)
}

.gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200, 134, 10, 0);
    transition: background .3s
}

.gal-item:hover::after {
    background: rgba(200, 134, 10, .15)
}

.gal-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    z-index: 1;
}

.gal-item:hover .gal-zoom {
    opacity: 1
}

.gal-zoom span {
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Lightbox */
.lb-ov {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, .92);
    display: none;
    align-items: center;
    justify-content: center;
}

.lb-ov.open {
    display: flex
}

.lb-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--r)
}

.lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    font-size: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.lb-close:hover {
    background: rgba(255, 255, 255, .25)
}

.lb-prev,
.lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s
}

.lb-prev {
    left: 16px
}

.lb-next {
    right: 16px
}

.lb-prev:hover,
.lb-next:hover {
    background: rgba(255, 255, 255, .25)
}

/* ══════════════════════════════════════════
   BOOKING MODAL
══════════════════════════════════════════ */
.bk-ov {
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(30, 10, 0, .7);
    display: none;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(4px);
}

@media(min-width:600px) {
    .bk-ov {
        align-items: center
    }
}

.bk-ov.open {
    display: flex
}

.bk-modal {
    background: var(--cream);
    border-radius: 12px 12px 0 0;
    width: 100%;
    max-width: 500px;
    padding: 32px 28px 40px;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
}

@media(min-width:600px) {
    .bk-modal {
        border-radius: 12px
    }
}

.bk-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--brown2);
    padding: 4px
}

.bk-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--brown);
    margin-bottom: 6px;
    letter-spacing: .06em
}

.bk-sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--brown2);
    margin-bottom: 24px
}

/* Chat options */
.bk-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px
}

.bk-chat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--r);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    transition: opacity .2s;
    text-decoration: none
}

.bk-chat-btn:hover {
    opacity: .88
}

.bk-wa {
    background: #25D366
}

.bk-zalo {
    background: #0068FF
}

.bk-wc {
    background: #07C160
}

.bk-chat-btn span.ico {
    display: flex;
    align-items: center;
    justify-content: center
}

.bk-chat-btn span.ico .si {
    width: 20px;
    height: 20px
}

/* Divider */
.bk-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--brown2)
}

.bk-or::before,
.bk-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-pale)
}

/* Form */
.bk-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bk-field {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.bk-field label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold)
}

.bk-field input,
.bk-field select,
.bk-field textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--gold-pale);
    border-radius: var(--r);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--brown);
    background: #fff;
    outline: none;
    transition: border .2s;
    -webkit-appearance: none
}

.bk-field input:focus,
.bk-field select:focus,
.bk-field textarea:focus {
    border-color: var(--gold)
}

.bk-field textarea {
    resize: vertical;
    min-height: 70px
}

.bk-submit {
    margin-top: 4px
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact {
    background: var(--cream2)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px
}

@media(min-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px
    }
}

.map-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(140, 80, 0, .18), 0 2px 8px rgba(140, 80, 0, .10)
}

.map-wrap iframe {
    width: 100%;
    height: 340px;
    display: block;
    border: 0
}

@media(min-width:768px) {
    .map-wrap iframe {
        height: 420px
    }
}

/* Map overlay badge */
.map-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 252, 244, .95);
    backdrop-filter: blur(6px);
    border: 1px solid var(--gold-pale);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(140, 80, 0, .12)
}

.map-badge-ico {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px
}

.map-badge-info {
    flex: 1;
    min-width: 0
}

.map-badge-name {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.map-badge-addr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--brown);
    line-height: 1.3;
    margin-top: 1px
}

.map-badge-btn {
    flex-shrink: 0;
    background: var(--gold);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 6px;
    white-space: nowrap;
    text-decoration: none;
    transition: opacity .2s
}

.map-badge-btn:hover {
    opacity: .82
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ci-item {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.ci-ico {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.ci-lbl {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px
}

.ci-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--brown);
    line-height: 1.5
}

.ci-val a {
    color: var(--gold)
}

.ci-val a:hover {
    text-decoration: underline
}

/* Contact info – per-language font fix */
html[lang="vi"] .ci-lbl,
html[lang="vi"] .ci-val {
    font-family: 'Be Vietnam Pro', sans-serif;
    letter-spacing: .04em
}

html[lang="zh"] .ci-lbl,
html[lang="zh"] .ci-val {
    font-family: 'Noto Serif SC', serif;
    letter-spacing: .04em
}

html[lang="ko"] .ci-lbl,
html[lang="ko"] .ci-val {
    font-family: 'Noto Serif KR', serif;
    letter-spacing: .02em
}

.contact-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: #1A0A00;
    padding: 52px 0 120px
}

@media(min-width:768px) {
    footer {
        padding-bottom: 52px
    }
}

.foot-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center
}

@media(min-width:768px) {
    .foot-inner {
        grid-template-columns: 1.4fr 1fr 1fr;
        text-align: left
    }
}

.foot-brand .foot-script {
    font-family: 'Great Vibes', cursive;
    font-size: 44px;
    color: var(--gold-lt);
    display: block;
    line-height: 1;
    margin-bottom: 4px
}

html[lang="vi"] .foot-script {
    font-family: 'Dancing Script', cursive
}

html[lang="zh"] .foot-script {
    font-family: 'Liu Jian Mao Cao', cursive
}

html[lang="ko"] .foot-script {
    font-family: 'Nanum Brush Script', cursive
}

.foot-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35)
}

.foot-div {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto
}

@media(min-width:768px) {
    .foot-div {
        margin: 16px 0
    }
}

.foot-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8
}

.foot-title {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px
}

html[lang="vi"] .foot-title,
html[lang="zh"] .foot-title,
html[lang="ko"] .foot-title {
    font-family: inherit;
    letter-spacing: .08em
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.foot-links a {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    transition: color .2s
}

.foot-links a:hover {
    color: var(--gold-lt)
}

.foot-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap
}

@media(min-width:768px) {
    .foot-social {
        justify-content: flex-start
    }
}

.soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: all .2s
}

.soc-btn .si {
    width: 18px;
    height: 18px
}

.soc-btn:hover {
    border-color: var(--gold-lt);
    color: var(--gold-lt)
}

.foot-copy {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .2)
}