:root {
    --hd-brown: #3f2618;
    --hd-gold: #3f2618;
    --hd-gold-dark: #2e1b11;
    --hd-dark: #3f2618;
    --hd-overlay: rgba(63, 38, 24, 0.72);
    --hd-accent: #b8956f;
    --hd-cream: #f7f3ee;
    --hd-cream-2: #efe8de;
    --hd-ink: #3f2618;
    --hd-muted: #8a7c6e;
    --hd-line: #e7ddd0;
    --hd-shadow-sm: 0 2px 10px rgba(63, 38, 24, 0.06);
    --hd-shadow-md: 0 10px 30px rgba(63, 38, 24, 0.10);
    --hd-shadow-lg: 0 20px 50px rgba(63, 38, 24, 0.16);
}

body.hotel-desktop,
body.hotel-desktop button,
body.hotel-desktop input,
body.hotel-desktop select,
body.hotel-desktop textarea,
body.hotel-desktop .modal,
body.hotel-desktop .btn {
    font-family: 'Vazir', Tahoma, Arial, sans-serif;
}

body.hotel-desktop {
    color: #333;
    background: #fff;
    direction: rtl;
    text-align: right;
}

.hotel-desktop a { text-decoration: none; }

/* ── Site header ──────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .25s;
}
.is-home .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.is-home .site-header.is-overlay {
    box-shadow: none;
}
.site-header.is-scrolled {
    box-shadow: var(--hd-shadow-md);
}

.site-header__top {
    background: var(--hd-dark);
    color: rgba(255,255,255,.88);
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(184, 149, 111, 0.12);
}
.site-header__top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 38px;
}
.site-header__info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}
.site-header__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,.85);
}
.site-header__pill i { color: var(--hd-accent); font-size: 0.78rem; }
.site-header__pill--link {
    color: rgba(255,255,255,.85) !important;
    transition: color .15s;
}
.site-header__pill--link:hover { color: var(--hd-accent) !important; }

.site-header__social {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.site-header__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85) !important;
    font-size: 0.85rem;
    transition: background .15s, color .15s;
}
.site-header__social a:hover {
    background: var(--hd-gold);
    color: #fff !important;
}

.site-header__main {
    background: #fff;
    border-bottom: 1px solid var(--hd-line);
    transition: background .25s, border-color .25s;
}
.site-header__main-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 76px;
}

/* Transparent overlay on homepage hero */
.is-home .site-header.is-overlay .site-header__main {
    background: rgba(255,255,255,.08);
    border-bottom-color: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}
.is-home .site-header.is-overlay .site-header__brand-text strong { color: #fff; }
.is-home .site-header.is-overlay .site-header__brand-text small { color: rgba(255,255,255,.75); }
.is-home .site-header.is-overlay .site-header__menu > li > a {
    color: rgba(255,255,255,.92);
}
.is-home .site-header.is-overlay .site-header__menu > li > a:hover,
.is-home .site-header.is-overlay .site-header__menu > li > a.is-active {
    color: var(--hd-accent);
}
.is-home .site-header.is-overlay .site-header__toggle span {
    background: #fff;
}
.is-home .site-header.is-scrolled .site-header__main {
    background: #fff;
    border-bottom-color: var(--hd-line);
}
.is-home .site-header.is-scrolled .site-header__brand-text strong { color: var(--hd-gold-dark); }
.is-home .site-header.is-scrolled .site-header__brand-text small { color: var(--hd-muted); }
.is-home .site-header.is-scrolled .site-header__menu > li > a { color: #444; }
.is-home .site-header.is-scrolled .site-header__toggle span { background: var(--hd-dark); }

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
    color: inherit !important;
}
.site-header__logo {
    max-height: 52px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    transition: max-height .25s;
}
.site-header.is-scrolled .site-header__logo { max-height: 44px; }
.site-header__logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1.25rem;
}
.site-header__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.site-header__brand-text strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--hd-gold-dark);
    transition: color .25s;
}
.site-header__brand-text small {
    font-size: 0.75rem;
    color: var(--hd-muted);
    font-weight: 500;
    transition: color .25s;
}

.site-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: var(--hd-cream);
    cursor: pointer;
    z-index: 1002;
}
.site-header__toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--hd-dark);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.site-header.is-open .site-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .site-header__toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .site-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav { flex: 1; display: flex; justify-content: flex-end; }
.site-header__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-header__menu > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    color: #444;
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    transition: color .15s, background .15s;
}
.site-header__menu > li > a i {
    font-size: 0.82rem;
    opacity: .75;
}
.site-header__menu > li > a:hover {
    color: var(--hd-gold);
    background: var(--hd-cream);
}
.site-header__menu > li > a.is-active {
    color: var(--hd-gold-dark);
    background: var(--hd-cream);
}
.site-header__menu > li > a.is-active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--hd-gold);
}

.site-header__menu-cta { margin-right: 0.5rem; }
.site-header__book {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem !important;
    border-radius: 12px !important;
    background: var(--hd-gold) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(63, 38, 24, 0.28);
    transition: transform .15s, background .15s, box-shadow .15s !important;
}
.site-header__book:hover {
    background: var(--hd-gold-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.35);
    color: #fff !important;
}
.site-header__book::after { display: none !important; }

.site-header__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(63, 38, 24, 0.55);
    z-index: 999;
    backdrop-filter: blur(2px);
}
.site-header__backdrop[hidden] { display: none !important; }

@media (max-width: 991px) {
    .site-header__pill--hide-sm { display: none; }
    .site-header__toggle { display: flex; }
    .site-header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100vh;
        background: #fff;
        z-index: 1001;
        padding: 5rem 1.25rem 2rem;
        box-shadow: -8px 0 40px rgba(0,0,0,.15);
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
    }
    .site-header.is-open .site-header__nav { transform: translateX(0); }
    .site-header__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }
    .site-header__menu > li > a {
        padding: 0.85rem 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    .site-header__menu-cta { margin: 1rem 0 0; }
    .site-header__book { width: 100%; justify-content: center; }
    .is-home .site-header.is-overlay .site-header__main { background: #fff; }
    .is-home .site-header.is-overlay .site-header__brand-text strong { color: var(--hd-gold-dark); }
    .is-home .site-header.is-overlay .site-header__brand-text small { color: var(--hd-muted); }
    .is-home .site-header.is-overlay .site-header__menu > li > a { color: #444; }
}

@media (max-width: 767px) {
    .site-header__brand-text small { display: none; }
    .site-header__main-inner { min-height: 64px; }
    .site-header__logo { max-height: 42px; }
}

.breadcrumb-section {
    background: var(--hd-dark);
    background-size: cover;
    background-position: center;
    padding: 2.5rem 0;
    color: #fff;
    position: relative;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--hd-overlay);
}

.breadcrumb-section .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-section .page-title h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.breadcrumb-section .breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    justify-content: flex-end;
    font-size: 0.92rem;
}

.breadcrumb-section .breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-right: 0.75rem;
    opacity: 0.7;
}

.breadcrumb-section .breadcrumb a {
    color: var(--hd-accent);
}

.room-feature-section {
    background: var(--hd-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2.5rem 0 3rem;
    position: relative;
}

.room-feature-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.55);
}

.room-feature-section > .container {
    position: relative;
    z-index: 1;
}

.txt-right { text-align: right; }

#slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #111;
    min-height: 420px;
}

#slideshow > div {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

#slideshow > div.current {
    position: relative;
    opacity: 1;
}

#slideshow img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

#slideshow .slideshow-placeholder {
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3f2618;
    color: rgba(255,255,255,.35);
    font-size: 5rem;
}

.widget {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    color: #fff;
}

.widget-title h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    color: var(--hd-accent);
    border-bottom: 2px solid var(--hd-gold);
    padding-bottom: 0.5rem;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    padding: 0.35rem 0;
    font-size: 0.95rem;
}

.widget ul li a {
    color: var(--hd-accent);
}

.room-feature-section .btn-primary {
    background: var(--hd-gold);
    border-color: var(--hd-gold);
    color: #fff;
    display: block;
    width: 100%;
    margin-bottom: 0.65rem;
    padding: 0.7rem 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
}

.room-feature-section .btn-primary:hover {
    background: var(--hd-gold-dark);
    border-color: var(--hd-gold-dark);
    color: #fff;
}

.room-feature-section hr {
    border-color: rgba(255,255,255,.25);
}

.btn-sub {
    background: rgba(255,255,255,.92);
    border-radius: 6px;
    padding: 1rem 0.75rem;
    margin-bottom: 1rem;
    min-height: 88px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.btn-sub h4 {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-sub img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-sub i {
    width: 28px;
    text-align: center;
    color: var(--hd-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Footer */
.site-footer {
    background: var(--hd-dark);
    color: rgba(255,255,255,.82);
    margin-top: 0;
}
.site-footer__main {
    padding: 4rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,.08);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.08'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
}

.site-footer__logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    color: #fff !important;
    transition: opacity .15s;
}
.site-footer__logo-link:hover { opacity: .88; color: #fff !important; }
.site-footer__logo {
    width: auto;
    max-width: 120px;
    height: 52px;
    object-fit: contain;
}
.site-footer__logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    color: var(--hd-accent);
    font-size: 1.35rem;
}
.site-footer__logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.site-footer__logo-text strong {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
}
.site-footer__logo-text small {
    font-size: 0.78rem;
    color: rgba(255,255,255,.65);
}
.site-footer__desc {
    margin: 0 0 1.15rem;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(255,255,255,.72);
    max-width: 36ch;
}
.site-footer__stars {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1.15rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--hd-accent);
    font-size: 0.78rem;
}
.site-footer__stars i { font-size: 0.72rem; }
.site-footer__stars span {
    margin-right: 0.35rem;
    color: rgba(255,255,255,.75);
    font-weight: 600;
}
.site-footer__social {
    display: flex;
    gap: 0.55rem;
}
.site-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    color: var(--hd-accent) !important;
    font-size: 1rem;
    transition: background .15s, transform .15s, color .15s;
}
.site-footer__social a:hover {
    background: var(--hd-gold);
    color: #fff !important;
    transform: translateY(-2px);
}

.site-footer__title {
    margin: 0 0 1.15rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--hd-accent);
}
.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,.78) !important;
    transition: color .15s, transform .15s;
}
.site-footer__links a i {
    width: 1rem;
    text-align: center;
    color: var(--hd-accent);
    font-size: 0.82rem;
    flex-shrink: 0;
}
.site-footer__links a:hover {
    color: #fff !important;
    transform: translateX(-3px);
}

.site-footer__contact-list {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.site-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.6;
}
.site-footer__contact-list i {
    color: var(--hd-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}
.site-footer__contact-list a {
    color: rgba(255,255,255,.85) !important;
    transition: color .15s;
}
.site-footer__contact-list a:hover { color: var(--hd-accent) !important; }

.site-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 0.92rem;
    font-weight: 800;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.site-footer__cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    color: #fff !important;
}

.site-footer__bottom {
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgba(0,0,0,.15);
}
.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.site-footer__bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,.58);
}
.site-footer__location {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,.58);
}
.site-footer__location i { color: var(--hd-accent); }

#back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 46px;
    height: 46px;
    background: var(--hd-gold);
    color: #fff;
    border-radius: 14px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(63, 38, 24, 0.35);
    border: 1px solid rgba(255,255,255,.15);
    transition: background .15s, transform .15s;
}
#back-to-top:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-3px);
}
#back-to-top.reveal { display: flex; }

.modal-header.gold {
    background: var(--hd-gold);
    color: #fff;
}

.modal-header.gold .btn-close {
    filter: invert(1);
}

.rooms-desktop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
}

.room-desktop-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--hd-shadow-sm);
    border: 1px solid var(--hd-line);
    transition: transform .25s, box-shadow .25s;
    color: inherit;
}

.room-desktop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hd-shadow-md);
    color: inherit;
}

.room-desktop-card__img {
    height: 220px;
    background: var(--hd-cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.room-desktop-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.room-desktop-card:hover .room-desktop-card__img img {
    transform: scale(1.05);
}

.room-desktop-card__img i {
    font-size: 4rem;
    color: var(--hd-gold);
    opacity: .4;
}

.room-desktop-card__body {
    padding: 1.25rem;
}

.room-desktop-card__body h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--hd-dark);
}

.room-desktop-card__price {
    color: var(--hd-gold-dark);
    font-weight: 700;
}

@media (max-width: 991px) {
    .rooms-desktop-grid { grid-template-columns: repeat(2, 1fr); }
    #slideshow, #slideshow img, #slideshow .slideshow-placeholder { min-height: 300px; height: 300px; }
}

@media (max-width: 767px) {
    .rooms-desktop-grid { grid-template-columns: 1fr; }
    .breadcrumb-section .page-title h1 { font-size: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   Room Detail — Luxury redesign
   ══════════════════════════════════════════════════════════ */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Hero ─────────────────────────────────────────────── */
.room-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--hd-dark);
    color: #fff;
}

.room-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.room-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 6s ease;
}

.room-hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Elegant patterned background when no photo is available (SVG dots, not a gradient) */
.room-hero--empty {
    background-color: #3f2618;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 22px 22px;
}

.room-hero--empty::after {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(184, 149, 111, 0.18);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.room-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(63, 38, 24, 0.55);
}
.room-hero:not(.room-hero--empty) .room-hero__scrim {
    background: rgba(63, 38, 24, 0.5);
    box-shadow: inset 0 -160px 140px -60px rgba(12, 7, 3, 0.92);
}

.room-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 1rem 2.5rem;
}

.room-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: auto;
    padding-bottom: 2.5rem;
    color: rgba(255,255,255,.75);
}
.room-hero__breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.room-hero__breadcrumb a:hover { color: var(--hd-accent); }
.room-hero__breadcrumb span[aria-hidden] { opacity: .5; }
.room-hero__breadcrumb .is-current { color: var(--hd-accent); font-weight: 600; }

.room-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--hd-accent);
    margin-bottom: 0.85rem;
}
.room-hero__kicker i { font-size: 0.9rem; }

.room-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.room-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,.92);
}
.room-hero__meta i { color: var(--hd-accent); margin-left: 0.25rem; }
.room-hero__stars { color: var(--hd-accent); letter-spacing: .12em; font-size: 0.85rem; }
.room-hero__dot { opacity: .5; }

.room-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.1rem;
}
.room-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(184, 149, 111, 0.4);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}
.room-hero__badge i { color: var(--hd-accent); }

.room-hero__actions {
    position: absolute;
    bottom: 2.5rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.room-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border: none;
    border-radius: 999px;
    background: #fff;
    color: var(--hd-dark);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    transition: transform .15s, background .15s;
}
.room-hero__btn:hover { transform: translateY(-2px); }
.room-hero__btn--ghost {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    backdrop-filter: blur(6px);
}
.room-hero__btn--ghost:hover { background: rgba(255,255,255,.24); }

.room-hero__dots {
    display: flex;
    gap: 0.4rem;
    margin-right: 0.25rem;
}
.room-hero__dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: background .15s, transform .15s;
}
.room-hero__dots button.is-active {
    background: var(--hd-accent);
    transform: scale(1.25);
}

/* ── Body layout ──────────────────────────────────────── */
.room-detail-body {
    background: var(--hd-cream);
    padding: 3rem 0;
}

.room-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    align-items: start;
}

/* Quick facts strip */
.room-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    background: var(--hd-line);
    border: 1px solid var(--hd-line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--hd-shadow-sm);
    margin-bottom: 2rem;
}
.room-fact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.15rem 1.25rem;
    background: #fff;
}
.room-fact > i {
    font-size: 1.35rem;
    color: var(--hd-gold);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}
.room-fact > div { display: flex; flex-direction: column; min-width: 0; }
.room-fact__value {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--hd-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.room-fact__label { font-size: 0.78rem; color: var(--hd-muted); }

/* Sections */
.room-section {
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 16px;
    padding: 1.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--hd-shadow-sm);
}

.room-section__head { margin-bottom: 1.4rem; }
.room-section__head--center { text-align: center; }
.room-section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--hd-gold);
    margin-bottom: 0.4rem;
}
.room-section__title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hd-ink);
    position: relative;
    padding-bottom: 0.7rem;
}
.room-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: var(--hd-gold);
}
.room-section__head--center .room-section__title::after {
    right: 50%;
    transform: translateX(50%);
}
.room-section__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 2;
    color: #5b5048;
}

/* Amenities */
.room-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 0.85rem;
}
.room-amenity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4a4039;
}
.room-amenity__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Policies */
.room-policies {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.85rem;
}
.room-policy {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem;
    background: var(--hd-cream);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4039;
}
.room-policy i {
    color: var(--hd-gold);
    font-size: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* Hotel facilities */
.room-facilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.85rem;
}
.room-facility {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1.25rem 0.75rem;
    text-align: center;
    border: 1px solid var(--hd-line);
    border-radius: 14px;
    background: #fff;
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.room-facility:hover {
    transform: translateY(-4px);
    box-shadow: var(--hd-shadow-md);
    border-color: rgba(63, 38, 24, 0.35);
}
.room-facility__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1.35rem;
}
.room-facility__icon img { width: 30px; height: 30px; object-fit: contain; }
.room-facility__name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4039;
    line-height: 1.4;
}

/* ── Booking card ─────────────────────────────────────── */
.room-detail-sidebar {
    position: sticky;
    top: 1.5rem;
}
.room-booking {
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--hd-shadow-md);
    transition: box-shadow .25s;
}
.room-booking.is-stuck { box-shadow: var(--hd-shadow-lg); }

.room-booking__price {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--hd-line);
}
.room-booking__from {
    display: block;
    font-size: 0.8rem;
    color: var(--hd-muted);
    margin-bottom: 0.2rem;
}
.room-booking__amount {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--hd-gold-dark);
    line-height: 1.2;
}
.room-booking__per {
    display: block;
    font-size: 0.8rem;
    color: var(--hd-muted);
    margin-top: 0.2rem;
}
.room-booking__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: var(--hd-cream);
    color: var(--hd-gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.room-booking__chip i { color: var(--hd-accent); }

.room-booking__dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 1.25rem 0;
}
.room-booking__date {
    border: 1px solid var(--hd-line);
    border-radius: 12px;
    padding: 0.7rem 0.85rem;
}
.room-booking__date-label {
    display: block;
    font-size: 0.72rem;
    color: var(--hd-muted);
    margin-bottom: 0.25rem;
}
.room-booking__date-value {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hd-ink);
}
.room-booking__date-value i { color: var(--hd-gold); font-size: 0.85rem; }

.room-booking__rows {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.room-booking__rows li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: #5b5048;
    border-bottom: 1px dashed var(--hd-line);
}
.room-booking__rows li:last-child { border-bottom: none; }
.room-booking__rows li > span:first-child { display: inline-flex; align-items: center; gap: 0.45rem; }
.room-booking__rows i { color: var(--hd-gold); width: 16px; text-align: center; }
.room-booking__rows a { color: var(--hd-gold-dark); font-weight: 700; text-decoration: underline; }

.room-booking__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    transition: transform .15s, background .15s, box-shadow .15s;
    margin-bottom: 0.65rem;
}
.room-booking__cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.35);
    color: #fff;
}

.room-booking__secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.78rem 1.25rem;
    border-radius: 12px;
    border: 1.5px solid var(--hd-gold);
    background: transparent;
    color: var(--hd-gold-dark);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s;
    margin-bottom: 1rem;
}
.room-booking__secondary:hover { background: var(--hd-cream); }

.room-booking__trust {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--hd-line);
    border-bottom: 1px solid var(--hd-line);
}
.room-booking__trust span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
    font-size: 0.72rem;
    color: var(--hd-muted);
    text-align: center;
}
.room-booking__trust i { color: var(--hd-gold); font-size: 1.05rem; }

.room-booking__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hd-ink) !important;
}
.room-booking__phone:hover { color: var(--hd-gold) !important; }
.room-booking__phone i { color: var(--hd-gold); }

/* ── Trust strip ──────────────────────────────────────── */
.room-trust {
    background: #fff;
    padding: 3rem 0;
    border-top: 1px solid var(--hd-line);
}
.room-trust__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.room-trust__item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.room-trust__item i {
    font-size: 1.9rem;
    color: var(--hd-gold);
    margin-bottom: 0.85rem;
}
.room-trust__item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hd-ink);
}
.room-trust__item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--hd-muted);
}

/* ── Related ──────────────────────────────────────────── */
.room-detail-related {
    background: var(--hd-cream);
    padding: 3rem 0;
}
.room-detail-related .room-section__head { margin-bottom: 2rem; }
.room-detail-related .rooms-desktop-grid { padding: 0; }

/* ── Lightbox ─────────────────────────────────────────── */
.room-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.room-lightbox[hidden] { display: none !important; }
.room-lightbox img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.room-lightbox__close {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background .15s;
}
.room-lightbox__close:hover { background: rgba(255,255,255,.3); }
.room-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background .15s;
}
.room-lightbox__nav:hover { background: rgba(255,255,255,.3); }
.room-lightbox__nav--prev { right: 1.5rem; }
.room-lightbox__nav--next { left: 1.5rem; }
.room-lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.75);
    font-size: 0.9rem;
}

/* ── 360 modal ────────────────────────────────────────── */
.room-detail-modal .modal-header {
    background: var(--hd-dark);
    color: #fff;
    border-bottom: none;
}
.room-detail-modal .modal-header .btn-close { filter: invert(1); }
.room-detail-modal .modal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 991px) {
    .room-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .room-detail-sidebar {
        position: static;
        order: -1;
    }
    .room-hero { min-height: 56vh; }
}

@media (max-width: 767px) {
    .room-hero { min-height: 64vh; }
    .room-hero__actions {
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
    .room-section { padding: 1.3rem; border-radius: 14px; }
    .room-facilities { grid-template-columns: repeat(2, 1fr); }
    .room-booking__dates { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════════════
   Home page — luxury landing (same design system)
   ══════════════════════════════════════════════════════════ */

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s, background .15s, box-shadow .15s, color .15s;
}
.home-btn--primary {
    background: var(--hd-gold);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.3);
}
.home-btn--primary:hover { background: var(--hd-gold-dark); transform: translateY(-2px); color: #fff; }
.home-btn--ghost {
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.55);
    color: #fff !important;
    backdrop-filter: blur(6px);
}
.home-btn--ghost:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.home-btn--outline {
    background: transparent;
    border: 1.5px solid var(--hd-gold);
    color: var(--hd-gold-dark) !important;
}
.home-btn--outline:hover { background: var(--hd-gold); color: #fff !important; }
.home-btn--solid {
    background: var(--hd-gold);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(63, 38, 24, 0.25);
}
.home-btn--solid:hover { background: var(--hd-gold-dark); transform: translateY(-2px); color: #fff; }
.home-btn--outline-dark {
    background: transparent;
    border: 1.5px solid var(--hd-line);
    color: var(--hd-ink) !important;
}
.home-btn--outline-dark:hover {
    border-color: var(--hd-gold);
    color: var(--hd-gold) !important;
    background: var(--hd-cream);
}

/* Hero */
.home-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-color: var(--hd-dark);
    color: #fff;
    overflow: hidden;
}
.home-hero--empty {
    background-color: #3f2618;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}

.home-hero__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: home-hero-zoom 18s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes home-hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}

.home-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(63, 38, 24, 0.45);
}
.home-hero__scrim-side {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(63, 38, 24, 0.35);
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
}
[dir="rtl"] .home-hero__scrim-side {
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 58% 100%);
}

.home-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: center;
    padding: 9.5rem 1rem 5rem;
    width: 100%;
}

.home-hero__content {
    animation: home-hero-in .9s ease both;
}
@keyframes home-hero-in {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}

.home-hero__badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(63, 38, 24, 0.85);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}
.home-hero__badge i { color: var(--hd-accent); font-size: 0.78rem; }
.home-hero__badge--outline {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(6px);
}

.home-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.25;
    text-shadow: 0 4px 40px rgba(0,0,0,.45);
    max-width: 14ch;
}
.home-hero__lead {
    margin: 0 0 1.25rem;
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    line-height: 2;
    color: rgba(255,255,255,.88);
    max-width: 52ch;
}
.home-hero__stars {
    display: flex;
    gap: 0.3rem;
    color: var(--hd-accent);
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.75rem;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}
.home-btn--lg {
    padding: 0.95rem 1.85rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.home-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}
.home-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    min-width: 130px;
}
.home-hero__stat > i {
    font-size: 1.2rem;
    color: var(--hd-accent);
    width: 24px;
    text-align: center;
}
.home-hero__stat strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.home-hero__stat span {
    font-size: 0.75rem;
    color: rgba(255,255,255,.7);
}

/* Floating booking card */
.home-hero__card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 24px 60px rgba(0,0,0,.28);
    color: var(--hd-ink);
    animation: home-hero-in .9s .15s ease both;
}
.home-hero__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.home-hero__card-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hd-muted);
}
.home-hero__card-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: var(--hd-cream);
    color: var(--hd-gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
}
.home-hero__card-chip i { color: var(--hd-gold); }

.home-hero__card-price {
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
    border-bottom: 1px solid var(--hd-line);
}
.home-hero__card-price > span {
    display: block;
    font-size: 0.78rem;
    color: var(--hd-muted);
    margin-bottom: 0.25rem;
}
.home-hero__card-price strong {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--hd-gold-dark);
    line-height: 1.2;
}
.home-hero__card-price strong small {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hd-muted);
}

.home-hero__card-list {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.home-hero__card-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: #5b5048;
}
.home-hero__card-list i {
    color: var(--hd-gold);
    width: 18px;
    text-align: center;
    font-size: 0.85rem;
}

.home-hero__card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 14px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 800;
    transition: transform .15s, background .15s, box-shadow .15s;
    margin-bottom: 0.75rem;
}
.home-hero__card-cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.35);
    color: #fff;
}
.home-hero__card-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--hd-ink) !important;
    padding-top: 0.5rem;
    border-top: 1px solid var(--hd-line);
}
.home-hero__card-phone:hover { color: var(--hd-gold) !important; }
.home-hero__card-phone i { color: var(--hd-gold); }

.home-hero__scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255,255,255,.75);
    font-size: 0.75rem;
    font-weight: 600;
    animation: home-bounce 2.5s ease-in-out infinite;
}
.home-hero__scroll i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
    font-size: 0.85rem;
}
@keyframes home-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* About */
.home-about {
    background: var(--hd-cream);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.home-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hd-gold);
}

.home-about__main {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
    align-items: center;
}

/* Visual panel */
.home-about__visual {
    position: relative;
    padding: 1.25rem 0 1.25rem 1.25rem;
}
.home-about__photo {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 480px;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--hd-shadow-lg);
}
.home-about__photo--empty {
    background: var(--hd-cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hd-accent);
    font-size: 4rem;
    opacity: .45;
}
.home-about__photo-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 55%;
    border: 2px solid var(--hd-accent);
    border-radius: 20px;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}
.home-about__photo-badge {
    position: absolute;
    bottom: 2.5rem;
    left: -1.25rem;
    z-index: 2;
    background: var(--hd-gold);
    color: #fff;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hd-shadow-md);
    border: 4px solid #fff;
}
.home-about__photo-badge strong {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}
.home-about__photo-badge span {
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 0.15rem;
}
.home-about__photo-tag {
    position: absolute;
    top: 2rem;
    right: -0.5rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hd-ink);
    box-shadow: var(--hd-shadow-sm);
}
.home-about__photo-tag i { color: var(--hd-gold); }

/* Content */
.home-about__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--hd-gold);
    margin-bottom: 0.65rem;
}
.home-about__title {
    margin: 0 0 1.1rem;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--hd-ink);
    line-height: 1.45;
    position: relative;
    padding-bottom: 1rem;
}
.home-about__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: var(--hd-gold);
}
.home-about__lead {
    margin: 0 0 1.75rem;
    font-size: 1.02rem;
    line-height: 2.1;
    color: #5b5048;
}

.home-about__points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.home-about__point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 14px;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.home-about__point:hover {
    transform: translateX(-4px);
    box-shadow: var(--hd-shadow-sm);
    border-color: rgba(63, 38, 24, 0.2);
}
.home-about__point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.home-about__point strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--hd-ink);
    margin-bottom: 0.2rem;
}
.home-about__point span {
    font-size: 0.85rem;
    color: var(--hd-muted);
    line-height: 1.6;
}

.home-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

/* Feature strip */
.home-about__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding-top: 3rem;
    margin-top: 3.5rem;
    border-top: 1px solid var(--hd-line);
}
.home-about__feature {
    position: relative;
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 16px;
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
    overflow: hidden;
}
.home-about__feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--hd-shadow-md);
}
.home-about__feature-num {
    position: absolute;
    top: 0.75rem;
    left: 0.85rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--hd-line);
    letter-spacing: 0.05em;
}
.home-about__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.home-about__feature h3 {
    margin: 0 0 0.45rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--hd-ink);
}
.home-about__feature p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--hd-muted);
}

/* Featured rooms */
.home-rooms { background: var(--hd-cream); padding: 4.5rem 0; }
.home-rooms .room-section__head { margin-bottom: 2.5rem; }
.home-rooms .rooms-desktop-grid--cards { padding: 0 0 2rem; }
.room-desktop-card__img { position: relative; }
.home-room-price {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(63, 38, 24, 0.78);
    color: var(--hd-accent);
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}
.home-room-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hd-gold-dark);
}

/* Facilities */
.home-facilities {
    background: #fff;
    padding: 4.5rem 0;
    border-top: 1px solid var(--hd-line);
}
.home-facilities__intro {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: end;
    margin-bottom: 2.75rem;
}
.home-facilities__intro .room-section__head { margin-bottom: 0; }
.home-facilities__lead {
    margin: 0.85rem 0 0;
    max-width: 58ch;
    font-size: 1rem;
    line-height: 2;
    color: var(--hd-muted);
}
.home-facilities__stats {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.home-facilities__stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    border: 1px solid var(--hd-line);
    border-radius: 14px;
    background: var(--hd-cream);
}
.home-facilities__stat strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hd-gold);
    line-height: 1;
    min-width: 3.5rem;
}
.home-facilities__stat span {
    font-size: 0.88rem;
    color: #5b5048;
    font-weight: 600;
}

.home-facilities__bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    margin-bottom: 2.5rem;
}
.home-facility-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.35rem;
    border: 1px solid var(--hd-line);
    border-radius: 16px;
    background: #fff;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.home-facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hd-shadow-md);
    border-color: rgba(63, 38, 24, 0.22);
}
.home-facility-card--featured {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--hd-cream);
    border-color: rgba(63, 38, 24, 0.12);
}
.home-facility-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: #fff;
    color: var(--hd-gold);
    font-size: 1.45rem;
    flex-shrink: 0;
    box-shadow: var(--hd-shadow-sm);
}
.home-facility-card--featured .home-facility-card__icon {
    width: 72px;
    height: 72px;
    font-size: 1.75rem;
    border-radius: 16px;
    background: var(--hd-gold);
    color: #fff;
}
.home-facility-card__icon--sm {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    border-radius: 12px;
}
.home-facility-card__content { flex: 1; min-width: 0; }
.home-facility-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--hd-ink);
    line-height: 1.45;
}
.home-facility-card--featured .home-facility-card__title { font-size: 1.2rem; }
.home-facility-card__desc {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.75;
    color: var(--hd-muted);
}
.home-facility-card--featured .home-facility-card__desc { font-size: 0.92rem; }
.home-facility-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.35rem;
}
.home-facility-card__tags span {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--hd-line);
    font-size: 0.72rem;
    font-weight: 600;
    color: #5b5048;
}
.home-facility-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--hd-gold);
    transition: color .15s, gap .15s;
}
.home-facility-card__link:hover { color: var(--hd-gold-dark); gap: 0.55rem; }
.home-facility-card__link i { font-size: 0.75rem; }

.home-facilities__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    padding-top: 0.5rem;
}

/* Experiences / tourism */
.home-experiences {
    background: var(--hd-cream);
    padding: 4.5rem 0;
    border-top: 1px solid var(--hd-line);
}
.home-experiences__intro {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 2.5rem;
    align-items: end;
    margin-bottom: 2.75rem;
}
.home-experiences__intro .room-section__head { margin-bottom: 0; }
.home-experiences__lead {
    margin: 0.85rem 0 0;
    max-width: 58ch;
    font-size: 1rem;
    line-height: 2;
    color: var(--hd-muted);
}
.home-experiences__aside {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.home-experiences__stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.35rem;
    border: 1px solid var(--hd-line);
    border-radius: 14px;
    background: #fff;
}
.home-experiences__stat strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--hd-gold);
    line-height: 1;
}
.home-experiences__stat strong i { font-size: 1.15rem; }
.home-experiences__stat span {
    font-size: 0.88rem;
    color: #5b5048;
    font-weight: 600;
}

.home-experiences__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.experience-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--hd-shadow-sm);
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hd-shadow-lg);
    border-color: rgba(63, 38, 24, 0.2);
}
.experience-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
}
.experience-card__media {
    position: relative;
    display: block;
    min-height: 220px;
    background: var(--hd-cream-2);
    overflow: hidden;
}
.experience-card--featured .experience-card__media { min-height: 100%; }
.experience-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.experience-card:hover .experience-card__media img { transform: scale(1.06); }
.experience-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    color: var(--hd-accent);
    font-size: 3.25rem;
    opacity: .45;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.12'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.experience-card__media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.04);
    box-shadow: inset 0 -80px 60px -40px rgba(63, 38, 24, 0.45);
    transition: background .25s;
}
.experience-card:hover .experience-card__media-overlay { background: rgba(63, 38, 24, 0.1); }
.experience-card__index {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.5rem;
    border-radius: 10px;
    background: rgba(255,255,255,.92);
    color: var(--hd-gold);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: var(--hd-shadow-sm);
}

.experience-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem 1.5rem;
}
.experience-card--featured .experience-card__body { padding: 1.75rem 1.85rem; }
.experience-card__head { margin-bottom: 0.85rem; }
.experience-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.45rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--hd-accent);
}
.experience-card__eyebrow i { font-size: 0.72rem; }
.experience-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.45;
}
.experience-card--featured .experience-card__title { font-size: 1.35rem; }
.experience-card__title a { color: var(--hd-ink); transition: color .15s; }
.experience-card__title a:hover { color: var(--hd-gold); }
.experience-card__desc {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.85;
    color: var(--hd-muted);
    flex: 1;
}
.experience-card--featured .experience-card__desc { font-size: 0.95rem; }

.experience-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--hd-line);
}
.experience-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.1rem;
    border-radius: 12px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 0.86rem;
    font-weight: 700;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.experience-card__cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(63, 38, 24, 0.28);
    color: #fff !important;
}
.experience-card__cta i { transition: transform .15s; }
.experience-card__cta:hover i { transform: translateX(-3px); }
.experience-card__map {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--hd-gold);
    white-space: nowrap;
    transition: color .15s;
}
.experience-card__map:hover { color: var(--hd-gold-dark); }

.home-experiences__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

/* CTA band */
.home-cta {
    position: relative;
    background-color: var(--hd-dark);
    color: #fff;
    padding: 5rem 0;
    overflow: hidden;
}
.home-cta--empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.home-cta__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: home-hero-zoom 20s ease-in-out infinite alternate;
}
.home-cta__scrim {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.72);
    box-shadow: inset 0 120px 120px -60px rgba(63, 38, 24, 0.5);
}
.home-cta__scrim-side {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.35);
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
}
.home-cta__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

.home-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--hd-accent);
    font-size: 0.82rem;
    font-weight: 700;
}
.home-cta__title {
    margin: 0 0 1rem;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.45;
    text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.home-cta__lead {
    margin: 0 0 1.25rem;
    max-width: 52ch;
    font-size: 1.02rem;
    line-height: 2;
    color: rgba(255,255,255,.88);
}
.home-cta__stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.75rem;
    color: var(--hd-accent);
    font-size: 0.95rem;
}
.home-cta__trust {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.home-cta__trust li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(6px);
}
.home-cta__trust i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    color: var(--hd-accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.home-cta__trust strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}
.home-cta__trust span {
    font-size: 0.8rem;
    color: rgba(255,255,255,.72);
}
.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.home-cta__panel {
    background: #fff;
    color: var(--hd-ink);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--hd-shadow-lg);
    border: 1px solid rgba(255,255,255,.2);
}
.home-cta__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.home-cta__panel-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hd-muted);
}
.home-cta__panel-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 0.72rem;
    font-weight: 700;
}
.home-cta__panel-chip i { font-size: 0.7rem; }
.home-cta__panel-price {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--hd-line);
}
.home-cta__panel-price > span {
    display: block;
    font-size: 0.78rem;
    color: var(--hd-muted);
    margin-bottom: 0.2rem;
}
.home-cta__panel-price strong {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--hd-gold-dark);
    line-height: 1.2;
}
.home-cta__panel-price strong small {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--hd-muted);
}
.home-cta__panel-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.home-cta__panel-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: #5b5048;
}
.home-cta__panel-list i {
    color: var(--hd-gold);
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}
.home-cta__panel-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 14px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.home-cta__panel-cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.35);
    color: #fff !important;
}
.home-cta__panel-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hd-gold) !important;
    transition: color .15s;
}
.home-cta__panel-phone:hover { color: var(--hd-gold-dark) !important; }
.home-cta__panel-phone i { font-size: 0.9rem; }

@media (max-width: 991px) {
    .home-about__main { grid-template-columns: 1fr; gap: 2.5rem; }
    .home-about__visual { padding: 0; max-width: 520px; margin: 0 auto; width: 100%; }
    .home-about__photo { height: 380px; }
    .home-about__photo-badge { left: 1rem; bottom: 1.5rem; }
    .home-about__photo-tag { right: 1rem; top: 1.5rem; }
    .home-about__features { grid-template-columns: repeat(2, 1fr); }
    .home-hero__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 8.5rem 1rem 4.5rem;
    }
    .home-hero__card { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
    .home-hero__title { max-width: none; text-align: center; }
    .home-hero__lead { text-align: center; margin-left: auto; margin-right: auto; }
    .home-hero__badge-row,
    .home-hero__stars,
    .home-hero__actions { justify-content: center; }
    .home-hero__badge-row,
    .home-hero__actions { display: flex; }
    .home-hero__stars { justify-content: center; }
    .home-hero__stats { justify-content: center; }
    .home-hero__scrim-side { display: none; }
    .home-facilities__intro { grid-template-columns: 1fr; gap: 1.75rem; }
    .home-facilities__stats { flex-direction: row; flex-wrap: wrap; }
    .home-facilities__stat { flex: 1; min-width: calc(50% - 0.45rem); }
    .home-facilities__bento { grid-template-columns: repeat(2, 1fr); }
    .home-facility-card--featured { grid-column: span 2; }
    .home-experiences__intro { grid-template-columns: 1fr; gap: 1.75rem; }
    .home-experiences__aside { flex-direction: row; flex-wrap: wrap; }
    .home-experiences__stat { flex: 1; min-width: calc(50% - 0.45rem); }
    .home-cta__grid { grid-template-columns: 1fr; gap: 2rem; }
    .home-cta__panel { max-width: 440px; margin: 0 auto; width: 100%; }
    .home-cta__scrim-side { display: none; }
    .home-cta__lead { max-width: none; }
    .site-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .site-footer__brand { grid-column: span 2; }
}
@media (max-width: 767px) {
    .home-hero { min-height: auto; }
    .home-hero__grid { padding: 7.5rem 1rem 4rem; }
    .home-hero__stats { gap: 0.65rem; }
    .home-hero__stat { min-width: calc(50% - 0.35rem); flex: 1; }
    .home-hero__actions { flex-direction: column; }
    .home-btn--lg { width: 100%; }
    .home-about__features { grid-template-columns: 1fr; }
    .home-about__photo { height: 300px; }
    .home-about__actions { flex-direction: column; }
    .home-about__actions .home-btn { width: 100%; }
    .home-facilities__stats { flex-direction: column; }
    .home-facilities__stat { min-width: 0; }
    .home-facilities__bento { grid-template-columns: 1fr; }
    .home-facility-card--featured {
        grid-column: span 1;
        flex-direction: column;
    }
    .home-facilities__actions { flex-direction: column; }
    .home-facilities__actions .home-btn { width: 100%; }
    .home-experiences__aside { flex-direction: column; }
    .home-experiences__stat { min-width: 0; }
    .home-experiences__grid { grid-template-columns: 1fr; }
    .experience-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .home-experiences__actions { flex-direction: column; }
    .home-experiences__actions .home-btn { width: 100%; }
    .home-cta { padding: 4rem 0; }
    .home-cta__actions { flex-direction: column; }
    .home-cta__actions .home-btn { width: 100%; }
    .site-footer__main { padding: 3rem 0 2rem; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .site-footer__brand { grid-column: span 1; }
    .site-footer__desc { max-width: none; }
    .site-footer__bottom-inner { flex-direction: column; text-align: center; }
    .experience-card__footer { flex-direction: column; align-items: stretch; }
    .experience-card__cta,
    .experience-card__map { justify-content: center; }
    .home-hero__scroll { display: none; }
}

/* ══════════════════════════════════════════════════════════
   Rooms listing page + rich room cards
   ══════════════════════════════════════════════════════════ */

/* Hero */
.rooms-page-hero {
    position: relative;
    background-color: var(--hd-dark);
    color: #fff;
    overflow: hidden;
}
.rooms-page-hero--empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.rooms-page-hero__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: home-hero-zoom 20s ease-in-out infinite alternate;
}
.rooms-page-hero__scrim {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.66);
    box-shadow: inset 0 -120px 120px -60px rgba(63, 38, 24, 0.85);
}
.rooms-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: 6.5rem 1rem 3rem;
}
.rooms-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}
.rooms-page-hero__breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.rooms-page-hero__breadcrumb a:hover { color: var(--hd-accent); }
.rooms-page-hero__breadcrumb i { font-size: 0.7rem; opacity: .6; }
.rooms-page-hero__breadcrumb span { color: var(--hd-accent); font-weight: 600; }
.rooms-page-hero .room-section__eyebrow { color: var(--hd-accent); }
.rooms-page-hero__title {
    margin: 0.4rem 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.rooms-page-hero__lead {
    margin: 0;
    max-width: 60ch;
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    line-height: 2;
    color: rgba(255,255,255,.9);
}
.rooms-page-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}
.rooms-page-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.rooms-page-hero__stat i { color: var(--hd-accent); font-size: 1.1rem; }
.rooms-page-hero__stat strong { font-size: 1.2rem; font-weight: 800; }
.rooms-page-hero__stat span { font-size: 0.78rem; color: rgba(255,255,255,.75); }

/* List wrapper */
.rooms-page-list {
    background: var(--hd-cream);
    padding: 3rem 0 4rem;
}
.rooms-page-list__intro {
    text-align: center;
    margin-bottom: 2.25rem;
}
.rooms-page-list__intro p {
    margin: 0;
    color: var(--hd-muted);
    font-size: 0.98rem;
}
.rooms-page-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--hd-muted);
}
.rooms-page-empty i { font-size: 3rem; color: var(--hd-accent); opacity: .5; margin-bottom: 1rem; }
.rooms-page-empty p { margin: 0 0 1.5rem; }

.rooms-desktop-grid--cards {
    padding: 0;
    gap: 1.75rem;
}

/* Room card */
.room-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--hd-shadow-sm);
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hd-shadow-lg);
    border-color: rgba(63, 38, 24, 0.18);
}

.room-card__media {
    position: relative;
    display: block;
    height: 230px;
    background: var(--hd-cream-2);
    overflow: hidden;
}
.room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.room-card:hover .room-card__media img { transform: scale(1.07); }
.room-card__media-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--hd-accent);
    font-size: 3.5rem;
    opacity: .4;
}
.room-card__media-overlay {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.05);
    box-shadow: inset 0 -90px 70px -50px rgba(63, 38, 24, 0.55);
    transition: background .25s;
}
.room-card:hover .room-card__media-overlay { background: rgba(63, 38, 24, 0.12); }

.room-card__tags {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    max-width: 70%;
}
.room-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--hd-gold);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(63, 38, 24, 0.3);
}
.room-card__tag i { color: var(--hd-accent); font-size: 0.7rem; }

.room-card__360 {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: rgba(63, 38, 24, 0.7);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
}
.room-card__360 i { color: var(--hd-accent); }

.room-card__view {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(63, 38, 24, 0.75);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    transition: opacity .25s;
}
.room-card__view i { color: var(--hd-accent); }
.room-card:hover .room-card__view { opacity: 0; }

.room-card__media-cta {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--hd-ink);
    font-size: 0.78rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s, transform .25s;
}
.room-card:hover .room-card__media-cta { opacity: 1; transform: none; }

/* Body */
.room-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.35rem;
}
.room-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.room-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.45;
}
.room-card__title a { color: var(--hd-ink); transition: color .15s; }
.room-card__title a:hover { color: var(--hd-gold); }

.room-card__tagline {
    margin: -0.5rem 0 1rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--hd-muted);
}

.room-card__avail {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}
.room-card__avail i { font-size: 0.5rem; }
.room-card__avail.is-open { background: #e8f3ec; color: #1f7a44; }
.room-card__avail.is-full { background: #f4e9e6; color: #a8443a; }

.room-card__specs {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.1rem;
    border-bottom: 1px solid var(--hd-line);
}
.room-card__specs li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.86rem;
    color: #5b5048;
}
.room-card__specs i { color: var(--hd-gold); font-size: 0.85rem; }

.room-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}
.room-card__amenity {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    border-radius: 8px;
    background: var(--hd-cream);
    color: #5b5048;
    font-size: 0.78rem;
    font-weight: 600;
}
.room-card__amenity i { color: var(--hd-gold); font-size: 0.78rem; }
.room-card__amenity--more {
    background: transparent;
    border: 1px dashed var(--hd-line);
    color: var(--hd-muted);
}

.room-card__info {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0.9rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem 0.85rem;
    background: var(--hd-cream);
    border: 1px solid var(--hd-line);
    border-radius: 12px;
}
.room-card__info li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: #5b5048;
}
.room-card__info i {
    color: var(--hd-gold);
    font-size: 0.8rem;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.room-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--hd-line);
}
.room-card__price-label {
    display: block;
    font-size: 0.72rem;
    color: var(--hd-muted);
    margin-bottom: 0.1rem;
}
.room-card__price-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--hd-gold-dark);
    line-height: 1.2;
}
.room-card__price-value small {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--hd-muted);
}
.room-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.15rem;
    border-radius: 12px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.room-card__cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(63, 38, 24, 0.3);
    color: #fff !important;
}
.room-card__cta i { transition: transform .15s; }
.room-card__cta:hover i { transform: translateX(-3px); }

@media (max-width: 991px) {
    .rooms-desktop-grid--cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .rooms-page-hero__inner { padding: 5.5rem 1rem 2.5rem; }
    .rooms-desktop-grid--cards { grid-template-columns: 1fr; }
    .room-card__media-cta { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   Menu page
   ══════════════════════════════════════════════════════════ */

.menu-page-hero {
    position: relative;
    background-color: var(--hd-dark);
    color: #fff;
    overflow: hidden;
}
.menu-page-hero--empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.menu-page-hero__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: home-hero-zoom 20s ease-in-out infinite alternate;
}
.menu-page-hero__scrim {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.66);
    box-shadow: inset 0 -120px 120px -60px rgba(63, 38, 24, 0.85);
}
.menu-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: 6.5rem 1rem 3rem;
}
.menu-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}
.menu-page-hero__breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.menu-page-hero__breadcrumb a:hover { color: var(--hd-accent); }
.menu-page-hero__breadcrumb i { font-size: 0.7rem; opacity: .6; }
.menu-page-hero__breadcrumb span { color: var(--hd-accent); font-weight: 600; }
.menu-page-hero .room-section__eyebrow { color: var(--hd-accent); }
.menu-page-hero__title {
    margin: 0.4rem 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.menu-page-hero__lead {
    margin: 0;
    max-width: 60ch;
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    line-height: 2;
    color: rgba(255,255,255,.9);
}
.menu-page-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}
.menu-page-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.menu-page-hero__stat i { color: var(--hd-accent); font-size: 1.1rem; }
.menu-page-hero__stat strong { font-size: 1.2rem; font-weight: 800; }
.menu-page-hero__stat span { font-size: 0.78rem; color: rgba(255,255,255,.75); }

.menu-page {
    background: var(--hd-cream);
    padding: 3rem 0 4.5rem;
}
.menu-page-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--hd-muted);
}
.menu-page-empty i { font-size: 3rem; color: var(--hd-accent); opacity: .5; margin-bottom: 1rem; }
.menu-page-empty p { margin: 0 0 1.5rem; }

.menu-page__note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--hd-line);
    box-shadow: var(--hd-shadow-sm);
}
.menu-page__note i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.menu-page__note strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--hd-ink);
    margin-bottom: 0.2rem;
}
.menu-page__note span {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--hd-muted);
}

.menu-page__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 2.25rem;
    padding: 0.65rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--hd-line);
    box-shadow: var(--hd-shadow-sm);
    position: sticky;
    top: 5.5rem;
    z-index: 20;
}
.menu-page__tab {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: transparent;
    color: #5b5048;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}
.menu-page__tab:hover {
    background: var(--hd-cream);
    color: var(--hd-ink);
}
.menu-page__tab.is-active {
    background: var(--hd-gold);
    color: #fff;
    border-color: var(--hd-gold);
}
.menu-page__tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: rgba(255,255,255,.2);
    font-size: 0.72rem;
    font-weight: 800;
}
.menu-page__tab:not(.is-active) .menu-page__tab-count {
    background: var(--hd-cream);
    color: var(--hd-gold);
}

.menu-section { display: none; }
.menu-section.is-active { display: block; }
.menu-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--hd-line);
}
.menu-section__title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--hd-ink);
}
.menu-section__count {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hd-muted);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--hd-line);
}

.menu-section__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.15rem 1.35rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--hd-line);
    box-shadow: var(--hd-shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--hd-shadow-md);
    border-color: rgba(63, 38, 24, 0.18);
}
.menu-item__img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--hd-cream-2);
}
.menu-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__row {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
}
.menu-item__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--hd-ink);
    line-height: 1.5;
    flex-shrink: 0;
    max-width: 65%;
}
.menu-item__dots {
    flex: 1;
    border-bottom: 2px dotted var(--hd-line);
    min-width: 1.5rem;
    margin-bottom: 0.3rem;
    opacity: .8;
}
.menu-item__price {
    flex-shrink: 0;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--hd-gold-dark);
    white-space: nowrap;
}
.menu-item__en {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    color: var(--hd-muted);
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .menu-page__nav { top: 4.5rem; }
    .menu-item__title { max-width: 55%; }
}
@media (max-width: 767px) {
    .menu-page-hero__inner { padding: 5.5rem 1rem 2.5rem; }
    .menu-page__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .menu-page__nav::-webkit-scrollbar { display: none; }
    .menu-page__tab { flex-shrink: 0; }
    .menu-item { flex-direction: column; gap: 0.85rem; }
    .menu-item__row { flex-wrap: wrap; }
    .menu-item__title { max-width: 100%; flex: 1 1 100%; }
    .menu-item__dots { display: none; }
    .menu-item__price { margin-right: auto; }
}

/* ══════════════════════════════════════════════════════════
   Tourism listing page
   ══════════════════════════════════════════════════════════ */

.tourism-page-hero {
    position: relative;
    background-color: var(--hd-dark);
    color: #fff;
    overflow: hidden;
}
.tourism-page-hero--empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.tourism-page-hero__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: home-hero-zoom 20s ease-in-out infinite alternate;
}
.tourism-page-hero__scrim {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.66);
    box-shadow: inset 0 -120px 120px -60px rgba(63, 38, 24, 0.85);
}
.tourism-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: 6.5rem 1rem 3rem;
}
.tourism-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}
.tourism-page-hero__breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.tourism-page-hero__breadcrumb a:hover { color: var(--hd-accent); }
.tourism-page-hero__breadcrumb i { font-size: 0.7rem; opacity: .6; }
.tourism-page-hero__breadcrumb span { color: var(--hd-accent); font-weight: 600; }
.tourism-page-hero .room-section__eyebrow { color: var(--hd-accent); }
.tourism-page-hero__title {
    margin: 0.4rem 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.tourism-page-hero__lead {
    margin: 0;
    max-width: 60ch;
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    line-height: 2;
    color: rgba(255,255,255,.9);
}
.tourism-page-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}
.tourism-page-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.tourism-page-hero__stat i { color: var(--hd-accent); font-size: 1.1rem; }
.tourism-page-hero__stat strong { font-size: 1.2rem; font-weight: 800; }
.tourism-page-hero__stat span { font-size: 0.78rem; color: rgba(255,255,255,.75); }

.tourism-page {
    background: var(--hd-cream);
    padding: 3rem 0 4.5rem;
}
.tourism-page-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--hd-muted);
}
.tourism-page-empty i { font-size: 3rem; color: var(--hd-accent); opacity: .5; margin-bottom: 1rem; }
.tourism-page-empty p { margin: 0 0 1.5rem; }
.tourism-page__intro {
    text-align: center;
    margin-bottom: 2.25rem;
}
.tourism-page__intro p {
    margin: 0;
    color: var(--hd-muted);
    font-size: 0.98rem;
}
.tourism-page__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.tourism-page__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

@media (max-width: 991px) {
    .tourism-page__grid .experience-card--featured { grid-column: span 2; }
}
@media (max-width: 767px) {
    .tourism-page-hero__inner { padding: 5.5rem 1rem 2.5rem; }
    .tourism-page__grid { grid-template-columns: 1fr; }
    .tourism-page__grid .experience-card--featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .tourism-page__actions { flex-direction: column; }
    .tourism-page__actions .home-btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   Contact page
   ══════════════════════════════════════════════════════════ */

.contact-page-hero {
    position: relative;
    background-color: var(--hd-dark);
    color: #fff;
    overflow: hidden;
}
.contact-page-hero--empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23b8956f' fill-opacity='0.10'/%3E%3C/svg%3E");
    background-size: 26px 26px;
}
.contact-page-hero__bg {
    position: absolute;
    inset: -4%;
    background-size: cover;
    background-position: center;
    animation: home-hero-zoom 20s ease-in-out infinite alternate;
}
.contact-page-hero__scrim {
    position: absolute;
    inset: 0;
    background: rgba(63, 38, 24, 0.66);
    box-shadow: inset 0 -120px 120px -60px rgba(63, 38, 24, 0.85);
}
.contact-page-hero__inner {
    position: relative;
    z-index: 1;
    padding: 6.5rem 1rem 3rem;
}
.contact-page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 2rem;
}
.contact-page-hero__breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.contact-page-hero__breadcrumb a:hover { color: var(--hd-accent); }
.contact-page-hero__breadcrumb i { font-size: 0.7rem; opacity: .6; }
.contact-page-hero__breadcrumb span { color: var(--hd-accent); font-weight: 600; }
.contact-page-hero .room-section__eyebrow { color: var(--hd-accent); }
.contact-page-hero__title {
    margin: 0.4rem 0 0.85rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.contact-page-hero__lead {
    margin: 0;
    max-width: 60ch;
    font-size: clamp(0.98rem, 1.8vw, 1.15rem);
    line-height: 2;
    color: rgba(255,255,255,.9);
}
.contact-page-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}
.contact-page-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.contact-page-hero__stat i { color: var(--hd-accent); font-size: 1.1rem; }
.contact-page-hero__stat strong { font-size: 1.2rem; font-weight: 800; }
.contact-page-hero__stat span { font-size: 0.78rem; color: rgba(255,255,255,.75); }

.contact-page {
    background: var(--hd-cream);
    padding: 3rem 0 4.5rem;
}
.contact-page__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2rem;
    align-items: start;
}
.contact-page__main {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}
.contact-page__aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 5.5rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.5rem 1.65rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--hd-line);
    box-shadow: var(--hd-shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hd-shadow-md);
    border-color: rgba(63, 38, 24, 0.18);
}
.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}
.contact-card__body { flex: 1; min-width: 0; }
.contact-card__title {
    margin: 0 0 0.45rem;
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--hd-ink);
}
.contact-card__desc {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--hd-muted);
}
.contact-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.contact-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    transition: background .15s, transform .15s, box-shadow .15s, color .15s;
}
.contact-card__btn--primary {
    background: var(--hd-gold);
    color: #fff !important;
}
.contact-card__btn--primary:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(63, 38, 24, 0.28);
    color: #fff !important;
}
.contact-card__btn--outline {
    background: #fff;
    border: 1px solid var(--hd-line);
    color: var(--hd-ink) !important;
}
.contact-card__btn--outline:hover {
    border-color: rgba(63, 38, 24, 0.25);
    color: var(--hd-gold) !important;
}
.contact-card__btn--whatsapp {
    background: #25d366;
    color: #fff !important;
}
.contact-card__btn--whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    color: #fff !important;
}

.contact-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.contact-card__list a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    background: var(--hd-cream);
    color: var(--hd-ink) !important;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background .15s, color .15s;
}
.contact-card__list a:hover {
    background: var(--hd-gold);
    color: #fff !important;
}
.contact-card__list a i { color: var(--hd-gold); font-size: 0.82rem; }
.contact-card__list a:hover i { color: #fff; }

.contact-panel {
    background: #fff;
    border: 1px solid var(--hd-line);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--hd-shadow-lg);
}
.contact-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.contact-panel__label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hd-muted);
}
.contact-panel__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--hd-cream);
    color: var(--hd-gold);
    font-size: 0.72rem;
    font-weight: 700;
}
.contact-panel__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--hd-line);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.contact-panel__list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: #5b5048;
}
.contact-panel__list i {
    color: var(--hd-gold);
    width: 1.1rem;
    text-align: center;
    flex-shrink: 0;
}
.contact-panel__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.95rem 1.25rem;
    border-radius: 14px;
    background: var(--hd-gold);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 800;
    transition: background .15s, transform .15s, box-shadow .15s;
}
.contact-panel__cta:hover {
    background: var(--hd-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(63, 38, 24, 0.35);
    color: #fff !important;
}
.contact-panel__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--hd-gold) !important;
    transition: color .15s;
}
.contact-panel__phone:hover { color: var(--hd-gold-dark) !important; }

.contact-location {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--hd-line);
    box-shadow: var(--hd-shadow-sm);
}
.contact-location--muted { background: var(--hd-cream); }
.contact-location__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    color: var(--hd-gold);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: var(--hd-shadow-sm);
}
.contact-location--muted .contact-location__icon { background: #fff; }
.contact-location strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--hd-ink);
    margin-bottom: 0.2rem;
}
.contact-location span {
    font-size: 0.84rem;
    line-height: 1.75;
    color: var(--hd-muted);
}

@media (max-width: 991px) {
    .contact-page__grid { grid-template-columns: 1fr; }
    .contact-page__aside { position: static; }
}
@media (max-width: 767px) {
    .contact-page-hero__inner { padding: 5.5rem 1rem 2.5rem; }
    .contact-card { flex-direction: column; }
    .contact-card__actions { flex-direction: column; }
    .contact-card__btn { justify-content: center; width: 100%; }
}
