/* ══════════════════════════════════════════
   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, top .32s ease;
}

@media(max-width:1023px) {
    #hdr.hdr-hidden {
        top: -70px
    }
}

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

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

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

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

.logo-full {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain
}

@media(max-width:767px) {
    .logo-full { height: 55px }
}

/* ── 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);
        position: relative;
        transition: color var(--dur) var(--ease);
    }

    .desk-nav a::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 13px;
        right: 13px;
        height: 1.5px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .28s var(--ease);
    }

    .desk-nav a:hover { color: var(--gold) }
    .desk-nav a:hover::after { transform: scaleX(1) }

    /* 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
    }
}

/* ── Desktop nav submenu ── */
.nav-item {
    position: relative
}

.nav-has-sub > a {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-caret {
    width: 10px;
    height: 6px;
    flex-shrink: 0;
    transition: transform .22s ease
}

.nav-has-sub:hover .nav-caret {
    transform: rotate(180deg)
}

.nav-sub {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 164px;
    display: flex;
    flex-direction: column;
    background: rgba(253, 246, 227, .97);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(232, 168, 32, .22);
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 10px 36px rgba(58, 34, 0, .13);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .2s ease,
        transform .26s cubic-bezier(.34,1.56,.64,1),
        visibility 0s .2s;
    z-index: 200
}

.nav-has-sub:hover .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity .16s ease,
        transform .26s cubic-bezier(.34,1.56,.64,1),
        visibility 0s
}

.nav-sub a {
    font-family: 'Cinzel', serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .09em;
    color: var(--brown);
    padding: 9px 14px;
    border-radius: 9px;
    white-space: nowrap;
    transition: background .15s, color .15s
}

.nav-sub a:hover {
    background: rgba(232, 168, 32, .18);
    color: var(--gold-deep)
}

html[lang="vi"] .nav-sub a { font-family: 'Be Vietnam Pro', sans-serif; letter-spacing: .04em }
html[lang="zh"] .nav-sub a { font-family: 'Noto Serif SC', serif }
html[lang="ko"] .nav-sub a { font-family: 'Noto Serif KR', serif; letter-spacing: .02em }

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

/* ── lang-bar removed: replaced by pill on all breakpoints ── */

/* ── Flag icon (flag-icons lib) ── */
.lang-flag {
    width: 22px !important;
    height: 15px !important;
    background-size: cover !important;
    background-position: center !important;
    flex-shrink: 0;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,.28);
    line-height: 0
}

/* ── Lang pill (all breakpoints) ── */
.lang-pill-wrap {
    position: relative
}

.lang-pill-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(232, 168, 32, .35);
    border-radius: 20px;
    background: transparent;
    color: var(--brown2);
    cursor: pointer;
    transition: background .2s, border-color .2s, color .2s
}

#langPillLabel {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em
}

.pill-caret {
    width: 9px;
    height: 6px;
    flex-shrink: 0;
    color: var(--brown2);
    transition: transform .22s var(--ease), color .2s
}

.lang-pill-btn.open .pill-caret { transform: rotate(180deg) }

.lang-pill-btn.open,
.lang-pill-btn:active {
    background: rgba(245, 213, 144, .5);
    border-color: var(--gold);
    color: var(--gold-deep)
}

/* Dropdown — glassmorphism + spring scale */
.lang-pill-drop {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: flex;
    flex-direction: column;
    min-width: 162px;
    background: rgba(253, 246, 227, .94);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(232, 168, 32, .28);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(184, 115, 10, .2);
    overflow: hidden;
    z-index: 9999;
    /* spring animation */
    opacity: 0;
    visibility: hidden;
    transform: scale(.92) translateY(-8px);
    transform-origin: top right;
    transition:
        opacity .22s ease,
        transform .28s cubic-bezier(.34, 1.56, .64, 1),
        visibility 0s .22s
}

.lang-pill-drop.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    transition:
        opacity .18s ease,
        transform .28s cubic-bezier(.34, 1.56, .64, 1),
        visibility 0s
}

.lpd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Cinzel', serif;
    font-size: 12.5px;
    font-weight: 500;
    padding: 13px 16px;
    border: none;
    border-bottom: 1px solid rgba(245, 213, 144, .5);
    background: transparent;
    color: var(--brown);
    cursor: pointer;
    transition: background .15s, color .15s
}

.lpd-item:last-child { border-bottom: none }

.lpd-item::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: background .15s
}

.lpd-item.on::after {
    background: var(--gold)
}

.lpd-item:active,
.lpd-item.on {
    background: rgba(245, 213, 144, .45);
    color: var(--gold-deep)
}

.lpd-item[data-lb="zh"] { font-family: 'Noto Sans SC', sans-serif }
.lpd-item[data-lb="ko"] { font-family: 'Noto Sans KR', sans-serif }

.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"] { font-family: 'Noto Sans SC', sans-serif }
.lb[data-lb="ko"] { font-family: 'Noto Sans KR', 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 overlay ── */
.mob-overlay {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(20, 8, 0, .45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .38s ease, visibility .38s ease
}

.mob-overlay.open {
    opacity: 1;
    visibility: visible
}

/* ── Mobile drawer (bottom sheet) ── */
.mob-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 960;
    max-height: 88vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    padding: 12px 28px calc(48px + env(safe-area-inset-bottom, 0px));
    gap: 0;
    /* Glassmorphism */
    background: rgba(253, 246, 227, .88);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(232, 168, 32, .22);
    border-bottom: none;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -8px 48px rgba(184, 115, 10, .18);
    /* Motion */
    transform: translateY(100%);
    visibility: hidden;
    transition:
        transform .48s cubic-bezier(.22, 1, .36, 1),
        visibility 0s .48s
}

.mob-drawer.open {
    transform: translateY(0);
    visibility: visible;
    transition:
        transform .48s cubic-bezier(.22, 1, .36, 1),
        visibility 0s
}

/* Drag handle */
.drawer-handle {
    width: 44px;
    height: 4px;
    background: var(--gold-pale);
    border-radius: 4px;
    margin: 0 auto 20px;
    flex-shrink: 0;
    cursor: grab
}

/* Nav links — stagger entrance */
.mob-drawer a {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--brown);
    padding: 17px 0;
    border-bottom: 1px solid rgba(245, 213, 144, .5);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .32s ease, transform .32s ease, color .2s
}

.mob-drawer.open a {
    opacity: 1;
    transform: translateY(0)
}

/* direct <a> children only: drawer-handle=1, Home=2, Services=3, mob-sub=4(div), Pickup=5, Gallery=6, Contact=7 */
.mob-drawer.open > a:nth-child(2) { transition-delay: .06s }
.mob-drawer.open > a:nth-child(3) { transition-delay: .11s }
.mob-drawer.open > a:nth-child(5) { transition-delay: .16s }
.mob-drawer.open > a:nth-child(6) { transition-delay: .21s }
.mob-drawer.open > a:nth-child(7) { transition-delay: .26s }

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

/* ── Mobile services submenu ── */
.mob-sub {
    display: flex;
    flex-direction: column;
    margin: -8px 0 8px 16px;
    padding-left: 16px;
    border-left: 2px solid rgba(232, 168, 32, .35)
}

.mob-sub a {
    font-size: 14px !important;
    font-weight: 600;
    letter-spacing: .07em;
    padding: 11px 8px !important;
    border-bottom: none !important;
    color: var(--brown2) !important;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease, color .2s !important
}

.mob-drawer.open .mob-sub a {
    opacity: 1;
    transform: translateY(0)
}

.mob-drawer.open .mob-sub a:nth-child(1) { transition-delay: .14s }
.mob-drawer.open .mob-sub a:nth-child(2) { transition-delay: .18s }
.mob-drawer.open .mob-sub a:nth-child(3) { transition-delay: .22s }
.mob-drawer.open .mob-sub a:nth-child(4) { transition-delay: .26s }

.mob-sub a:active {
    color: var(--gold) !important
}

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: 24px 0 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease .3s, transform .3s ease .3s
}

.mob-drawer.open .mob-lang-title {
    opacity: 1;
    transform: translateY(0)
}

.mob-lang {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease .34s, transform .3s ease .34s
}

.mob-drawer.open .mob-lang {
    opacity: 1;
    transform: translateY(0)
}

.mob-lang .lb {
    font-size: 13px;
    padding: 14px 10px;
    border-radius: 10px;
    text-align: center;
    border-color: rgba(232, 168, 32, .3);
    background: rgba(253, 246, 227, .6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .2s, color .2s, border-color .2s, transform .15s
}

.mob-lang .lb:active {
    transform: scale(.96)
}

.mob-lang .lb.on {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 14px rgba(184, 115, 10, .3)
}

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

.fd-btn {
    display: flex;
    align-items: center;
    gap: 0;
    width: 44px;
    height: 44px;
    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
}

/* ── Mobile: circular FAB stack at bottom-right ── */
@media(max-width:767px) {
    .float-dock {
        right: 14px;
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        gap: 10px;
        /* entrance animation */
        animation: fabIn .6s cubic-bezier(.22,1,.36,1) both
    }
    .fd-btn {
        width: 46px;
        height: 46px;
        border-radius: 50% !important;
        box-shadow: 0 4px 18px rgba(0,0,0,.22);
        overflow: hidden;
        transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s
    }
    .fd-btn:active {
        transform: scale(.88)
    }
    .fd-label {
        display: none
    }
    .fd-btn:hover {
        width: 46px
    }
    .fd-btn:hover .fd-label {
        max-width: 0;
        padding: 0
    }
    /* stagger entrance for each button */
    .fd-btn:nth-child(1) { animation: fabItemIn .5s .05s cubic-bezier(.22,1,.36,1) both }
    .fd-btn:nth-child(2) { animation: fabItemIn .5s .13s cubic-bezier(.22,1,.36,1) both }
    .fd-btn:nth-child(3) { animation: fabItemIn .5s .21s cubic-bezier(.22,1,.36,1) both }
    .fd-btn:nth-child(4) { animation: fabItemIn .5s .29s cubic-bezier(.22,1,.36,1) both }
}

@keyframes fabItemIn {
    from { opacity: 0; transform: scale(.6) translateX(20px) }
    to   { opacity: 1; transform: none }
}

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

.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: 70px;
    /* 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
}

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

.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))
}

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

@media(min-width:768px) {
    .sig-grid { grid-template-columns: 1fr 1fr }
    .sig-img { min-height: 500px }
    .sig-img::after { background: linear-gradient(90deg, transparent 60%, var(--brown)) }
    .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(28px, 4vw, 42px);
    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;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap
}

.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-sm);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    transition: transform .32s var(--ease), box-shadow .32s var(--ease)
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-lg)
}

.card.card--hidden {
    display: none !important
}

@keyframes cardIn {
    from { opacity:0; transform:translateY(14px) }
    to   { opacity:1; transform:translateY(0) }
}
.card.card--in {
    animation: cardIn .35s var(--ease) both
}

.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)
}

/* Kids Massage mini slideshow */
.card-slideshow { overflow: hidden }
.card-slideshow .ks-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .55s var(--ease)
}
.card-slideshow .ks-slide.ks-active { opacity: 1 }
.card:hover .card-slideshow .ks-slide.ks-active { transform: scale(1.07) }

.ks-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(58,34,0,.45);
    color: #fff;
    border: none;
    width: 28px; height: 28px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .2s var(--ease), background .2s;
    padding: 0
}
.ks-prev { left: 8px }
.ks-next { right: 8px }
.ks-arrow:hover { background: rgba(200,134,10,.85) }
.card-slideshow:hover .ks-arrow { opacity: 1 }

.ks-dots {
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3
}
.ks-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: background .25s, transform .25s
}
.ks-dot.ks-dot-active {
    background: #fff;
    transform: scale(1.35)
}

.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 {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gold-deep);
    background: rgba(232, 168, 32, .12);
    border: 1px solid rgba(232, 168, 32, .3);
    border-radius: 20px;
    padding: 3px 8px;
    margin-bottom: 10px;
    align-self: flex-start
}
.card-dur::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    background-color: var(--gold-deep);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/%3E%3Cpolyline points='12 6 12 12 16 14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/%3E%3Cpolyline points='12 6 12 12 16 14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat
}

.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: 18px;
    color: var(--gold-deep);
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(184,115,10,.18)
}
.price-unit {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    opacity: .65;
    vertical-align: middle
}

.card-btn {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 6px 12px;
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    color: var(--gold-deep);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease)
}

.card-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-1px)
}
.card-btn:active { transform: translateY(0) }

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

/* ── Price tiers (multi-duration services) ── */
.price-tiers {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    background: rgba(232,168,32,.06);
    border-radius: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(232,168,32,.22);
}
.pt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 12.5px;
}
.pt-dur {
    color: var(--brown2);
    font-weight: 600;
}
.pt-p {
    color: var(--gold-deep);
    font-weight: 700;
}

/* ── Best seller badge ── */
.badge-best {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold-deep);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

/* ── Discount badge (góc phải trên ảnh mỗi card) ── */
.badge-sale {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    padding: 6px 14px 6px 12px;
    border-radius: 0 0 0 12px;
    white-space: nowrap;
    box-shadow: -2px 2px 8px rgba(198,17,31,.3);
    z-index: 2;
    animation: badge-pulse 2.5s ease-in-out infinite;
}
/* Khi có badge-best, đẩy badge-sale xuống dưới */
.badge-best + .badge-sale {
    top: auto;
    bottom: 0;
    right: 0;
    border-radius: 12px 0 0 0;
    box-shadow: -2px -2px 8px rgba(198,17,31,.3);
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ── Giá cũ (gạch ngang) / Giá mới (nổi bật) ── */
.price-old {
    text-decoration: line-through;
    text-decoration-color: rgba(198,17,31,.5);
    text-decoration-thickness: 1.5px;
    color: #aaa;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .01em;
}
.price-new {
    color: #c1121f;
    font-weight: 800;
}
.card-price .price-old {
    display: block;
    line-height: 1.2;
    margin-bottom: 3px;
}
.card-price .price-new {
    display: block;
    line-height: 1.2;
    font-size: inherit;
}

/* ── Bảng giá theo thời lượng (giá cũ/mới) ── */
.pt-old {
    text-decoration: line-through;
    text-decoration-color: rgba(198,17,31,.45);
    text-decoration-thickness: 1.5px;
    color: #aaa;
    font-size: 11px;
    font-weight: 400;
    margin-right: 5px;
}
.pt-new {
    color: #c1121f;
    font-weight: 800;
}

/* ── Signature section (giá cũ/mới + badge) ── */
.sig-price-old {
    text-decoration: line-through;
    text-decoration-color: rgba(255,107,107,.5);
    text-decoration-thickness: 1.5px;
    color: rgba(255,255,255,.4);
    font-size: 14px;
    font-weight: 400;
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
}
.sig-price-new {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 22px;
    display: block;
    line-height: 1.2;
}
.sig-badge-sale {
    align-self: center;
    display: inline-flex;
    align-items: center;
    background: rgba(230,57,70,.15);
    border: 1.5px solid rgba(230,57,70,.5);
    color: #ff6b6b;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    animation: badge-pulse 2.5s ease-in-out infinite;
}

/* ── Font cho badge-sale theo ngôn ngữ ── */
html[lang="zh"] .badge-sale,
html[lang="zh"] .sig-badge-sale {
    font-family: 'Noto Sans SC', sans-serif;
}
html[lang="ko"] .badge-sale,
html[lang="ko"] .sig-badge-sale {
    font-family: 'Noto Sans KR', sans-serif;
}
html[lang="vi"] .badge-sale,
html[lang="vi"] .sig-badge-sale {
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* ── Responsive cho mobile ── */
@media (max-width: 480px) {
    .badge-sale {
        font-size: 11px;
        padding: 5px 10px 5px 9px;
    }
    .card-price .price-old {
        font-size: 11px;
    }
    .card-price .price-new {
        font-size: 15px;
    }
    .pt-old {
        font-size: 10px;
    }
    .pt-new {
        font-size: 12px;
    }
    .sig-badge-sale {
        font-size: 12px;
        padding: 5px 12px;
    }
}

/* ── Package includes list ── */
.pkg-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.pkg-includes li {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: var(--brown2);
    padding: 4px 0;
    border-bottom: 1px dashed rgba(184,115,10,.15);
    line-height: 1.4;
}
.pkg-includes li:last-child {
    border-bottom: none;
}
.pkg-includes li::before {
    content: '✦ ';
    color: var(--gold-deep);
    font-size: 8px;
}

/* ══════════════════════════════════════════
   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-sm);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--sh);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease)
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-md)
}

.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
}

/* ── Infinite horizontal marquee gallery ── */
@keyframes gal-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.gal-track-wrap {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.gal-track {
    display: flex;
    gap: 6px;
    width: max-content;
    animation: gal-scroll 48s linear infinite;
}

.gal-track-wrap:hover .gal-track {
    animation-play-state: paused;
}

.gal-item {
    flex-shrink: 0;
    height: clamp(200px, 25vw, 320px);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
}

.gal-item img {
    height: 100%;
    width: auto;
    display: block;
    transition: transform .55s ease
}

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

.gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58,34,0,.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s
}

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

.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(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.55);
    color: #fff;
    font-size: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s
}

.gal-item:hover .gal-zoom span {
    background: rgba(232,168,32,.6);
    border-color: rgba(232,168,32,.8)
}

/* 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(20, 6, 0, .65);
    display: none;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(6px)
}

.bk-ov.open { display: flex }

.bk-modal {
    background: var(--cream);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 520px;
    padding: 0 0 env(safe-area-inset-bottom, 24px);
    position: relative;
    max-height: 94vh;
    overflow-y: auto
}

@media(min-width:600px) {
    .bk-ov { align-items: center }
    .bk-modal { border-radius: 20px; padding-bottom: 0 }
}

/* Gold accent bar */
.bk-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-lt), var(--gold-deep));
    border-radius: 20px 20px 0 0
}

.bk-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold-pale);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brown2);
    transition: background .2s, color .2s;
    z-index: 2
}

.bk-close:hover { background: var(--gold-pale); color: var(--gold-deep) }

/* Header */
.bk-head {
    text-align: center;
    padding: 28px 28px 20px
}

.bk-head-icon {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px
}

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

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

/* Chat buttons */
.bk-chat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 20px
}

.bk-chat-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s
}

.bk-chat-btn:active { transform: scale(.97) }

.bk-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

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

.bk-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px
}

.bk-btn-label {
    font-size: 14px;
    font-weight: 700
}

.bk-btn-hint {
    font-size: 11px;
    opacity: .65
}

.bk-arr { flex-shrink: 0; opacity: .4 }

/* Button themes */
.bk-wa {
    background: rgba(37, 211, 102, .1);
    color: #1a7a3f
}
.bk-wa .bk-btn-icon { background: #25D366; color: #fff }
.bk-wa:hover { background: rgba(37, 211, 102, .18) }

.bk-zalo {
    background: rgba(0, 104, 255, .08);
    color: #0050cc
}
.bk-zalo .bk-btn-icon { background: #0068FF; color: #fff }
.bk-zalo:hover { background: rgba(0, 104, 255, .14) }

.bk-wc {
    background: rgba(7, 193, 96, .08);
    color: #056b37
}
.bk-wc .bk-btn-icon { background: #07C160; color: #fff }
.bk-wc:hover { background: rgba(7, 193, 96, .14) }

/* Divider */
.bk-or {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    margin-bottom: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: rgba(107, 63, 0, .5)
}

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

/* ── Form ── */
.bk-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px 22px
}

.bk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}
@media(max-width:420px) { .bk-row { grid-template-columns: 1fr } }

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

/* ── Input wrapper ── */
.bk-wrap { position: relative }

/* Left icon */
.bk-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px; height: 16px;
    color: #C4A97A;
    pointer-events: none;
    z-index: 1;
    transition: color .18s
}
.bk-wrap:focus-within .bk-ico { color: var(--gold) }

/* Floating label */
.bk-float {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #C4A97A;
    pointer-events: none;
    transition: top .18s, transform .18s, font-size .18s, color .18s, letter-spacing .18s, font-weight .18s;
    white-space: nowrap;
    z-index: 1
}

/* Float up when input has value or focused */
.bk-input:focus ~ .bk-float,
.bk-input:not(:placeholder-shown) ~ .bk-float,
.bk-float--up {
    top: 10px;
    transform: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gold-deep)
}
.bk-input:focus ~ .bk-float { color: var(--gold) }

/* ── Input ── */
.bk-input {
    width: 100%;
    height: 56px;
    padding: 22px 42px 8px 40px;
    border: 1.5px solid #E2CFA0;
    border-radius: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 14.5px;
    color: var(--brown);
    background: #FDFAF4;
    outline: none;
    transition: border-color .2s, box-shadow .2s, background .2s;
    -webkit-appearance: none;
    box-sizing: border-box
}
.bk-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3.5px rgba(200,134,10,.1);
    background: #fff
}

/* Checkmark tick */
.bk-tick {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none
}

/* Date picker */
.bk-input--date { cursor: pointer; padding-right: 36px }
.bk-input--date::-webkit-calendar-picker-indicator {
    opacity: .4;
    cursor: pointer;
    filter: invert(48%) sepia(60%) saturate(600%) hue-rotate(5deg)
}

/* Select */
.bk-input--select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8730A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer
}

/* ── Error state ── */
.bk-field.is-error .bk-input {
    border-color: #D94F4F;
    background: #FFF8F8
}
.bk-field.is-error .bk-input:focus { box-shadow: 0 0 0 3.5px rgba(217,79,79,.1) }
.bk-field.is-error .bk-float  { color: #D94F4F !important }
.bk-field.is-error .bk-ico    { color: #D94F4F }

/* ── Valid state ── */
.bk-field.is-valid .bk-input { border-color: #2E9E5B }
.bk-field.is-valid .bk-tick  { opacity: 1 }
.bk-field.is-valid .bk-float { color: #2E9E5B !important }
.bk-field.is-valid .bk-ico   { color: #2E9E5B }

/* ── Error message ── */
.bk-err {
    display: none;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 11.5px;
    color: #D94F4F;
    padding-left: 2px
}
.bk-err::before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: #D94F4F;
    color: #fff;
    font-size: 9px;
    font-weight: 700
}
.bk-field.is-error .bk-err { display: flex }

/* ── Submit button ── */
.bk-btn-primary {
    margin-top: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #C8860A 0%, #B8730A 55%, #9A5E06 100%);
    color: #fff;
    border: none;
    border-radius: 13px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(184,115,10,.35);
    transition: box-shadow .2s, transform .15s
}
.bk-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
    transition: left .5s ease
}
.bk-btn-primary:hover { box-shadow: 0 6px 24px rgba(184,115,10,.45); transform: translateY(-1px) }
.bk-btn-primary:hover::after { left: 160% }
.bk-btn-primary:active { transform: scale(.98); box-shadow: 0 2px 10px rgba(184,115,10,.3) }
.bk-btn-primary:disabled { opacity: .65; cursor: not-allowed; transform: none }

/* ── Trust signals ── */
.bk-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}
.bk-trust > span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    color: #9A7A40;
    letter-spacing: .01em
}
.bk-trust svg { flex-shrink: 0; color: var(--gold-deep) }

/* ── WhatsApp text button ── */
.bk-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 8px;
    background: none;
    border: none;
    color: #25A244;
    font-family: 'Lato', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s
}
.bk-btn-wa:hover { opacity: 1 }

/* ── Success screen ── */
.bk-success {
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px 30px;
    opacity: 0;
    pointer-events: none;
    transform: scale(.94);
    transition: opacity .35s ease, transform .35s ease;
    overflow: hidden;
    z-index: 10
}
.bk-success.show {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1)
}

.bk-success-ring {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,168,32,.08) 0%, transparent 70%);
    animation: bk-pulse 2.4s ease-in-out infinite
}
@keyframes bk-pulse {
    0%,100% { transform: scale(1);   opacity: .7 }
    50%      { transform: scale(1.15); opacity: 1 }
}

.bk-success-check {
    width: 80px;
    height: 80px;
    position: relative;
    z-index: 1
}
.bk-success-check svg { width: 100%; height: 100% }

/* Vẽ vòng tròn SVG animated */
.bk-check-circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    transform-origin: center;
    transform: rotate(-90deg);
    transition: stroke-dashoffset .6s ease .1s
}
.bk-check-tick {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    transition: stroke-dashoffset .4s ease .65s
}
.bk-success.show .bk-check-circle { stroke-dashoffset: 0 }
.bk-success.show .bk-check-tick   { stroke-dashoffset: 0 }

.bk-success-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--gold-deep);
    margin: 0;
    z-index: 1
}
.bk-success-msg {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #6B5B3E;
    text-align: center;
    line-height: 1.7;
    margin: 0;
    z-index: 1
}
.bk-success-close {
    margin-top: 8px;
    padding: 12px 36px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    cursor: pointer;
    transition: background .2s, transform .15s;
    z-index: 1
}
.bk-success-close:hover  { background: var(--gold-deep) }
.bk-success-close:active { transform: scale(.97) }

.bk-confetti-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

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

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

.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) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px }
    .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
}

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

@media(min-width:768px) {
    footer { padding-bottom: 52px }
    .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-tel {
    color: var(--gold-lt);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    display: inline-block;
    margin-top: 4px;
    transition: color .2s
}

.foot-tel:hover { color: #fff }

.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)
}

/* ══════════════════════════════════════════
   MOBILE OPTIMIZATIONS (< 768px)
══════════════════════════════════════════ */
@media(max-width:767px) {

    /* ── Header compact ── */
    .hdr-inner { height: 60px }
    .logo { gap: 8px }
    .logo-icon { height: 40px }
    #hero { margin-top: 60px }
    /* override hdr-hidden distance to match compact header */
    #hdr.hdr-hidden { top: -64px }

    /* ── Filter tabs horizontal scroll ── */
    .filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* fade edges hint */
        mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0, black 12px, black calc(100% - 12px), transparent 100%);
        padding-left: 12px;
        padding-right: 12px
    }
    .filter-bar::-webkit-scrollbar { display: none }
    .ftab { flex-shrink: 0 }

    /* ── Touch feedback cards ── */
    .card:active {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(184,115,10,.2)
    }
    .why-card:active { transform: scale(.97) }
    .ftab:active {
        border-color: var(--gold);
        color: var(--gold)
    }

    /* ── mob-cta safe area ── */
    .mob-cta {
        padding-bottom: env(safe-area-inset-bottom, 0px)
    }

    /* ── Sig section: tighten padding ── */
    .sig-body { padding: 28px 20px 36px }
    .sig-img { min-height: 260px }

    /* ── Why cards: tighten ── */
    .why-card { padding: 20px 14px }

    /* ── Section headers: tighten ── */
    .sec-head { margin-bottom: 28px }

    /* ── Gallery: tighten gap on small screens ── */
    .gal-track { gap: 4px }

    /* ── Footer mobile redesign ── */
    .foot-services { display: none }

    footer {
        padding: 44px 0 calc(128px + env(safe-area-inset-bottom, 0px))
    }

    .foot-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        text-align: center
    }

    /* Brand block */
    .foot-brand {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .foot-brand .foot-script {
        font-size: 52px;
        margin-bottom: 6px
    }

    .foot-brand .foot-tag {
        display: block;
        font-size: 10px;
        letter-spacing: .32em
    }

    .foot-brand .foot-div {
        width: 56px;
        margin: 18px auto
    }

    .foot-body {
        font-size: 13.5px;
        line-height: 1.9;
        color: rgba(255,255,255,.48)
    }

    /* Connect block */
    .foot-inner > div:last-child {
        margin-top: 28px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px
    }

    .foot-title { margin-bottom: 0 }

    .foot-social { gap: 14px }

    .soc-btn {
        width: 46px;
        height: 46px;
        border-color: rgba(255,255,255,.15);
        background: rgba(255,255,255,.04)
    }

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

    .foot-copy {
        margin-top: 28px;
        padding-top: 18px;
        font-size: 11px
    }
}
/* ══════════════════════════════════════════
   FOCUS-VISIBLE (keyboard accessibility)
══════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px
}
button:focus-visible,
.card-btn:focus-visible,
.ftab:focus-visible,
.lb:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(200,134,10,.18)
}
a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px
}
