/* =====================================================================
   ALPHABENI — MODERN REDESIGN LAYER  (loaded after theme.css)
   Adds: scroll animations, restaurant + hotel sections, stats, gallery,
   CTA band, and richer micro-interactions.
   Palette inherited from theme.css :root (--royal / --powder / --ice)
   ===================================================================== */

:root {
    --gold: #c9a24b;
    --gold-soft: #e7d3a1;
    --dark: #0a1f4d;
    --ink: #11203f;
    --r-lg: 22px;
    --r-md: 16px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* =====================================================================
   1. SCROLL-REVEAL ANIMATIONS
   Elements get [data-reveal]; JS toggles .is-revealed when in view.
   ===================================================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="zoom"]  { transform: scale(.9); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

/* stagger helpers */
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }
[data-delay="6"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* keyframes used by floats / shimmers */
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatY2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-22px); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(201,162,75,.45); } 70% { box-shadow: 0 0 0 18px rgba(201,162,75,0); } 100% { box-shadow: 0 0 0 0 rgba(201,162,75,0); } }
@keyframes shimmer { 0% { background-position: -460px 0; } 100% { background-position: 460px 0; } }
@keyframes riseFade { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* =====================================================================
   2. SECTION SCAFFOLD — eyebrow + title used by new sections
   ===================================================================== */
.rd-section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }
.rd-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase; letter-spacing: .22em;
    font-size: .72rem; font-weight: 700; color: var(--gold);
    margin-bottom: 14px;
}
.rd-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.rd-eyebrow--center { justify-content: center; }
.rd-title {
    font-size: clamp(1.7rem, 3.6vw, 2.9rem);
    font-weight: 800; color: var(--royal); line-height: 1.12;
    letter-spacing: -.02em; margin-bottom: 14px;
}
.rd-lead { color: var(--muted); font-size: 1.04rem; max-width: 620px; }
.rd-head--center { text-align: center; margin: 0 auto clamp(34px, 5vw, 60px); max-width: 720px; }
.rd-head--center .rd-lead { margin-left: auto; margin-right: auto; }

/* =====================================================================
   3. STATS STRIP — animated counters
   ===================================================================== */
.rd-stats {
    background: linear-gradient(135deg, var(--dark) 0%, var(--royal) 60%, #173a8a 100%);
    position: relative; overflow: hidden;
    padding: clamp(40px, 4.5vw, 64px) 0;
}
.rd-stats::before,
.rd-stats::after {
    content: ""; position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,75,.22) 0%, transparent 70%);
}
.rd-stats::before { width: 460px; height: 460px; top: -180px; right: -120px; }
.rd-stats::after  { width: 360px; height: 360px; bottom: -160px; left: -100px; background: radial-gradient(circle, rgba(169,192,224,.18) 0%, transparent 70%); }
.rd-stats .container { position: relative; z-index: 2; }
.rd-stat { text-align: center; padding: 8px 10px; position: relative; }
.rd-stat__num {
    font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; color: #fff;
    line-height: 1; display: inline-flex; align-items: baseline;
}
.rd-stat__num .suffix { color: var(--gold-soft); margin-left: 2px; }
.rd-stat__label { color: rgba(255,255,255,.75); margin-top: 10px; font-weight: 500; letter-spacing: .03em; font-size: .92rem; }
.rd-stat__icon { font-size: 1.7rem; color: var(--gold); margin-bottom: 8px; display: block; }
.rd-stat + .rd-stat::before {
    content: ""; position: absolute; left: 0; top: 24%; height: 52%; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.22), transparent);
}
@media (max-width: 767px) { .rd-stat + .rd-stat::before { display: none; } }

/* =====================================================================
   4. HOTEL FEATURES / AMENITIES
   ===================================================================== */
.rd-features { background:
    radial-gradient(1200px 400px at 100% 0, rgba(169,192,224,.16), transparent 60%),
    var(--ice);
}
.rd-feature {
    background: #fff; border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 30px 26px;
    height: 100%; position: relative; overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.rd-feature::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit;
    background: linear-gradient(160deg, rgba(14,47,118,.04), transparent 40%);
    opacity: 0; transition: opacity .35s;
}
.rd-feature:hover { transform: translateY(-8px); box-shadow: 0 26px 50px -28px rgba(14,47,118,.45); border-color: var(--powder); }
.rd-feature:hover::after { opacity: 1; }
.rd-feature__icon {
    width: 62px; height: 62px; border-radius: 16px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: var(--royal); margin-bottom: 18px;
    background: linear-gradient(140deg, rgba(169,192,224,.4), rgba(169,192,224,.12));
    transition: transform .4s var(--ease), background .35s, color .35s;
}
.rd-feature:hover .rd-feature__icon {
    transform: rotate(-8deg) scale(1.06);
    background: var(--grad); color: #fff;
}
.rd-feature h5 { color: var(--royal); font-weight: 700; margin-bottom: 8px; font-size: 1.12rem; }
.rd-feature p { color: var(--muted); font-size: .92rem; margin: 0; line-height: 1.65; }

/* showcase split (image + checklist) */
.rd-showcase__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.rd-showcase__media img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 360px; transition: transform .8s var(--ease); }
.rd-showcase__media:hover img { transform: scale(1.06); }
.rd-showcase__badge {
    position: absolute; left: 22px; bottom: 22px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
    border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-sm);
    display: flex; align-items: center; gap: 12px; animation: floatY 5s ease-in-out infinite;
}
.rd-showcase__badge .num { font-size: 1.6rem; font-weight: 800; color: var(--royal); line-height: 1; }
.rd-showcase__badge .lbl { font-size: .78rem; color: var(--muted); font-weight: 600; }
.rd-check { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.rd-check li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-weight: 500; }
.rd-check li i {
    flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
    background: rgba(14,47,118,.08); color: var(--royal);
    display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; margin-top: 2px;
}
.rd-check li span small { display: block; color: var(--muted); font-weight: 400; font-size: .85rem; margin-top: 2px; }

/* =====================================================================
   5. RESTAURANT / DINING
   ===================================================================== */
.rd-dining { position: relative; background: #fff; overflow: hidden; }
.rd-dining__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 auto 38px; }
.rd-tab {
    border: 1.5px solid var(--border); background: #fff; color: var(--text);
    border-radius: 50px; padding: 9px 22px; font-weight: 600; font-size: .9rem;
    cursor: pointer; transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.rd-tab i { color: var(--gold); }
.rd-tab:hover { border-color: var(--powder); transform: translateY(-2px); }
.rd-tab.active { background: var(--grad); color: #fff; border-color: var(--royal); box-shadow: var(--shadow-sm); }
.rd-tab.active i { color: var(--gold-soft); }

.rd-menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
@media (max-width: 991px) { .rd-menu-grid { grid-template-columns: 1fr; gap: 14px; } }
.rd-menu-pane { display: none; animation: riseFade .5s var(--ease); }
.rd-menu-pane.active { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
@media (max-width: 991px) { .rd-menu-pane.active { grid-template-columns: 1fr; } }

.rd-dish { display: flex; gap: 16px; align-items: center; padding: 14px; border-radius: var(--r-md); transition: background .3s, transform .3s; }
.rd-dish:hover { background: rgba(169,192,224,.12); transform: translateX(4px); }
.rd-dish__img { flex: 0 0 78px; width: 78px; height: 78px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.rd-dish__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.rd-dish:hover .rd-dish__img img { transform: scale(1.12); }
.rd-dish__body { flex: 1; min-width: 0; }
.rd-dish__top { display: flex; align-items: baseline; gap: 10px; }
.rd-dish__name { font-weight: 700; color: var(--royal); font-size: 1.02rem; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rd-dish__dots { flex: 1; border-bottom: 1px dotted var(--border); transform: translateY(-4px); }
.rd-dish__price { font-weight: 800; color: var(--gold); white-space: nowrap; }
.rd-dish__desc { color: var(--muted); font-size: .85rem; margin: 4px 0 0; line-height: 1.5; }
.rd-tag { display: inline-block; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 2px 8px; border-radius: 50px; margin-left: 6px; vertical-align: middle; }
.rd-tag--veg { background: rgba(29,171,98,.12); color: #1dab62; }
.rd-tag--hot { background: rgba(229,57,53,.12); color: #e53935; }
.rd-tag--chef { background: rgba(201,162,75,.16); color: #a9802f; }

/* chef special banner */
.rd-special {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    background: linear-gradient(120deg, var(--dark), var(--royal));
    color: #fff; padding: clamp(34px, 5vw, 60px);
    display: flex; align-items: center; min-height: 320px; height: 100%;
}
.rd-special::after {
    content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 46%;
    background-image: var(--special-bg); background-size: cover; background-position: center;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 38%);
    mask-image: linear-gradient(90deg, transparent, #000 38%);
}
@media (max-width: 767px) { .rd-special::after { display: none; } }
.rd-special__inner { position: relative; z-index: 2; max-width: 560px; }
.rd-special .rd-eyebrow { color: var(--gold-soft); }
.rd-special h3 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }
.rd-special p { color: rgba(255,255,255,.8); margin-bottom: 22px; }

/* opening hours pills */
.rd-hours { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.rd-hours li { display: flex; justify-content: space-between; gap: 18px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.16); color: rgba(255,255,255,.82); font-size: .92rem; }
.rd-hours li span:last-child { color: var(--gold-soft); font-weight: 600; }

/* =====================================================================
   6. GALLERY (masonry-ish)
   ===================================================================== */
.rd-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.rd-gallery-grid .g { position: relative; overflow: hidden; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.rd-gallery-grid .g img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s var(--ease); }
.rd-gallery-grid .g::after {
    content: "\f00e"; font-family: "Line Awesome Free"; font-weight: 900;
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.6rem; background: linear-gradient(160deg, rgba(14,47,118,.0), rgba(14,47,118,.55));
    opacity: 0; transition: opacity .4s;
}
.rd-gallery-grid .g:hover img { transform: scale(1.1); }
.rd-gallery-grid .g:hover::after { opacity: 1; }
.rd-gallery-grid .g--tall { grid-row: span 2; }
.rd-gallery-grid .g--wide { grid-column: span 2; }
@media (max-width: 991px) {
    .rd-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .rd-gallery-grid .g--tall { grid-row: auto; }
    .rd-gallery-grid .g--wide { grid-column: auto; }
}
@media (max-width: 575px) {
    .rd-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
}

/* =====================================================================
   7. CTA BAND
   ===================================================================== */
.rd-cta { position: relative; overflow: hidden; }
.rd-cta__inner {
    position: relative; border-radius: var(--r-lg); overflow: hidden;
    background: linear-gradient(120deg, var(--royal) 0%, var(--dark) 100%);
    padding: clamp(40px, 6vw, 76px); text-align: center;
}
.rd-cta__inner::before {
    content: ""; position: absolute; inset: 0; opacity: .14;
    background-image: var(--cta-bg); background-size: cover; background-position: center;
}
.rd-cta__inner > * { position: relative; z-index: 2; }
.rd-cta h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.rd-cta p { color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto 26px; }
.rd-cta .rd-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.rd-cta .btn--gold {
    background: linear-gradient(135deg, var(--gold), #b88a35) !important; color: #1c1402 !important;
    border: none !important; font-weight: 700; border-radius: 50px; padding: 13px 30px;
    box-shadow: 0 14px 30px -14px rgba(201,162,75,.7); animation: pulseRing 2.6s infinite;
}
.rd-cta .btn--gold:hover { filter: brightness(1.06); transform: translateY(-2px); color: #1c1402 !important; }
.rd-cta .btn--ghost {
    background: rgba(255,255,255,.08) !important; color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.4) !important; border-radius: 50px; padding: 13px 30px; font-weight: 600;
}
.rd-cta .btn--ghost:hover { background: rgba(255,255,255,.16) !important; }

/* =====================================================================
   8. SHARED CARD POLISH + IMAGE FRAME used in showcase
   ===================================================================== */
.rd-frame { position: relative; }
.rd-frame::before {
    content: ""; position: absolute; inset: 14px -14px -14px 14px;
    border: 2px solid var(--powder); border-radius: var(--r-lg); z-index: 0;
}
.rd-frame > img, .rd-frame > .rd-showcase__media { position: relative; z-index: 1; }

/* small floating decoration dot */
.rd-float-dot { position: absolute; border-radius: 50%; background: var(--gold); opacity: .5; animation: floatY2 7s ease-in-out infinite; }

/* =====================================================================
   9. RESPONSIVE TUNING
   ===================================================================== */
@media (max-width: 991px) {
    .rd-showcase__media img { min-height: 300px; }
    .rd-frame::before { inset: 10px -10px -10px 10px; }
}
@media (max-width: 575px) {
    .rd-frame::before { display: none; }
    .rd-special { min-height: auto; }
}

/* =====================================================================
   10. HEADER / TOPBAR ENHANCEMENTS
   ===================================================================== */
.header-top-socials { display: inline-flex; align-items: center; gap: 8px; margin-left: 4px; }
.header-top-socials a {
    width: 28px; height: 28px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.12); color: rgba(255,255,255,.85) !important;
    font-size: .78rem; transition: all .22s var(--ease);
}
.header-top-socials a:hover { background: var(--gold); color: #1c1402 !important; transform: translateY(-2px); }
.header-top-divider { width: 1px; height: 18px; background: rgba(255,255,255,.22); margin: 0 4px; display: inline-block; }

/* sticky header that compacts on scroll */
.header { position: sticky; top: 0; }
.header__bottom { transition: padding .3s var(--ease), box-shadow .3s var(--ease), background .3s; }
.header.active .header__bottom { padding: 6px 0; box-shadow: 0 10px 34px -20px rgba(14,47,118,.7); }
.header.active .site-logo.site-title img { max-height: 40px; transition: max-height .3s var(--ease); }

/* phone pill in nav-right */
.nav-phone {
    display: inline-flex; align-items: center; gap: 10px; margin-right: 16px;
    color: var(--royal); font-weight: 700; white-space: nowrap;
}
.nav-phone__icon {
    width: 40px; height: 40px; border-radius: 50%; flex: 0 0 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(14,47,118,.08); color: var(--royal); font-size: 1.05rem;
    animation: pulseRing 2.6s infinite;
}
.nav-phone small { display: block; font-size: .68rem; color: var(--muted); font-weight: 500; letter-spacing: .04em; }
.nav-phone span { font-size: .96rem; line-height: 1.1; }
@media (max-width: 1399px) { .nav-phone { display: none; } }

/* dropdown nav item */
.main-menu .has-dropdown { position: relative; }
.main-menu .dropdown-caret { font-size: .7rem; margin-left: 3px; transition: transform .25s; }
.main-menu .has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.main-menu .sub-menu {
    position: absolute; top: 100%; left: 0; min-width: 210px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    box-shadow: var(--shadow); padding: 10px; list-style: none; margin: 8px 0 0;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all .26s var(--ease); z-index: 50;
}
.main-menu .has-dropdown:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-menu .sub-menu li a {
    display: flex; align-items: center; gap: 10px; padding: 9px 12px;
    border-radius: 9px; font-size: .88rem; font-weight: 600; color: var(--text) !important;
}
.main-menu .sub-menu li a i { color: var(--gold); width: 18px; text-align: center; }
.main-menu .sub-menu li a:hover { background: rgba(169,192,224,.16); color: var(--royal) !important; padding-left: 16px; }
@media (max-width: 1199px) {
    .main-menu .sub-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; padding: 4px 0 4px 14px; margin: 0;
        background: transparent; min-width: 0;
    }
    .main-menu .dropdown-caret { display: none; }
}

/* =====================================================================
   11. HERO TRUST ROW + SCROLL CUE
   ===================================================================== */
.hero-trust {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
    gap: 14px 30px; margin-top: 30px;
}
.hero-trust__item { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 600; font-size: .9rem; }
.hero-trust__item i { color: var(--gold); font-size: 1.15rem; }
.hero-trust__stars { color: var(--gold); letter-spacing: 2px; }
.hero-trust__divider { width: 1px; height: 22px; background: var(--border); }
@media (max-width: 575px) { .hero-trust__divider { display: none; } }

/* =====================================================================
   12. PREMIUM ROOM CARD  (homepage + listings)
   ===================================================================== */
.rd-room-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
    overflow: hidden; height: 100%; display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm); transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s;
}
.rd-room-card:hover { transform: translateY(-10px); box-shadow: 0 32px 60px -30px rgba(14,47,118,.5); border-color: var(--powder); }
.rd-room-card__media { position: relative; height: 248px; overflow: hidden; }
.rd-room-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.rd-room-card:hover .rd-room-card__media img { transform: scale(1.09); }
.rd-room-card__media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10,31,77,.55) 100%);
}
.rd-room-card__price {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
    border-radius: 50px; padding: 7px 15px; box-shadow: var(--shadow-sm);
    font-weight: 800; color: var(--royal); font-size: .95rem;
}
.rd-room-card__price small { color: var(--muted); font-weight: 600; font-size: .72rem; }
.rd-room-card__tagrow { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; gap: 6px; flex-wrap: wrap; }
.rd-room-card__badge {
    background: var(--grad); color: #fff; font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .05em; padding: 5px 11px; border-radius: 50px;
    box-shadow: var(--shadow-sm);
}
.rd-room-card__amen {
    position: absolute; left: 0; right: 0; bottom: 12px; z-index: 2;
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    opacity: 0; transform: translateY(10px); transition: all .4s var(--ease);
}
.rd-room-card:hover .rd-room-card__amen { opacity: 1; transform: translateY(0); }
.rd-room-card__amen li {
    list-style: none; width: 34px; height: 34px; border-radius: 10px;
    background: rgba(255,255,255,.92); color: var(--royal);
    display: inline-flex; align-items: center; justify-content: center; font-size: .9rem;
    box-shadow: var(--shadow-sm);
}
.rd-room-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.rd-room-card__rating { display: inline-flex; align-items: center; gap: 4px; color: var(--gold); font-size: .82rem; margin-bottom: 8px; }
.rd-room-card__rating span { color: var(--muted); font-weight: 600; margin-left: 4px; }
.rd-room-card__title { font-size: 1.22rem; font-weight: 800; color: var(--royal); margin: 0 0 6px; line-height: 1.2; }
.rd-room-card__title a { color: inherit; }
.rd-room-card__title a:hover { color: var(--royal2); }
.rd-room-card__meta { display: flex; flex-wrap: wrap; gap: 14px; margin: 10px 0 16px; color: var(--muted); font-size: .85rem; font-weight: 600; }
.rd-room-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.rd-room-card__meta i { color: var(--royal); font-size: 1rem; }
.rd-room-card__foot { margin-top: auto; display: flex; gap: 10px; align-items: center; }
.rd-room-card__foot .btn { flex: 1; }
.rd-room-card__avail { font-size: .76rem; color: #1dab62; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; margin-bottom: 14px; }
.rd-room-card__avail.is-low { color: #e08a00; }

/* listings page header */
.rd-listing-head { text-align: center; max-width: 700px; margin: 0 auto clamp(34px,5vw,56px); }

/* =====================================================================
   13. MODERN FOOTER
   ===================================================================== */
.rd-footer { position: relative; color: rgba(255,255,255,.78); background: #0a1f4d; overflow: hidden; }
.rd-footer__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .10; }
.rd-footer::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,31,77,.96), rgba(10,31,77,.99));
}
.rd-footer > * { position: relative; z-index: 2; }

/* newsletter ribbon overlapping the top */
.rd-footer__cta {
    margin-bottom: -1px; position: relative; z-index: 3;
    transform: translateY(-46px); margin-bottom: -46px;
}
.rd-footer__cta-inner {
    background: var(--grad); border-radius: var(--r-lg); padding: clamp(26px,4vw,42px);
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    box-shadow: 0 30px 60px -30px rgba(10,31,77,.8);
    position: relative; overflow: hidden;
}
.rd-footer__cta-inner::after {
    content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(201,162,75,.3), transparent 70%); border-radius: 50%;
}
.rd-footer__cta h3 { color: #fff; font-weight: 800; margin: 0 0 6px; font-size: clamp(1.3rem,2.4vw,1.8rem); }
.rd-footer__cta p { color: rgba(255,255,255,.8); margin: 0; }
.rd-footer__form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 480px; position: relative; z-index: 2; }
.rd-footer__form input {
    flex: 1; border: none; border-radius: 50px; padding: 14px 22px;
    font-family: inherit; font-size: .94rem; outline: none;
}
.rd-footer__form .btn--gold {
    background: linear-gradient(135deg, var(--gold), #b88a35); color: #1c1402;
    border: none; border-radius: 50px; padding: 14px 26px; font-weight: 700; white-space: nowrap;
}
.rd-footer__form .btn--gold:hover { filter: brightness(1.07); transform: translateY(-2px); }

.rd-footer__main { padding: clamp(56px,7vw,96px) 0 0; }
.rd-footer__brand-logo { display: inline-flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 18px; }
.rd-footer__brand-logo img { max-height: 46px; width: auto; }
.rd-footer__about { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.75; margin-bottom: 22px; }
.rd-footer__title { color: #fff; font-weight: 700; font-size: 1.05rem; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.rd-footer__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--gold); }
.rd-footer__links { list-style: none; padding: 0; margin: 0; }
.rd-footer__links li { margin-bottom: 12px; }
.rd-footer__links a { color: rgba(255,255,255,.72); font-size: .92rem; display: inline-flex; align-items: center; gap: 9px; transition: all .22s var(--ease); }
.rd-footer__links a i { color: var(--gold); font-size: .8rem; transition: transform .22s; }
.rd-footer__links a:hover { color: #fff; padding-left: 5px; }
.rd-footer__contact { list-style: none; padding: 0; margin: 0; }
.rd-footer__contact li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.rd-footer__contact li i {
    flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,.08); color: var(--gold);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1rem;
}
.rd-footer__contact li p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.5; }
.rd-footer__contact li p a { color: rgba(255,255,255,.78); }
.rd-footer__contact li p a:hover { color: #fff; }
.rd-footer__contact li small { display: block; color: rgba(255,255,255,.5); font-size: .76rem; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .06em; }
.rd-footer__socials { display: flex; gap: 10px; margin-top: 8px; }
.rd-footer__socials a {
    width: 40px; height: 40px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08); color: #fff; font-size: .95rem;
    transition: all .25s var(--ease);
}
.rd-footer__socials a:hover { background: var(--gold); color: #1c1402; transform: translateY(-4px); }
.rd-footer__hours { list-style: none; padding: 0; margin: 0; }
.rd-footer__hours li { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed rgba(255,255,255,.12); font-size: .88rem; color: rgba(255,255,255,.7); }
.rd-footer__hours li span:last-child { color: var(--gold-soft); font-weight: 600; }
.rd-footer__bottom {
    margin-top: clamp(30px,4vw,52px); border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.rd-footer__bottom p { margin: 0; color: rgba(255,255,255,.6); font-size: .86rem; }
.rd-footer__bottom a { color: var(--gold-soft); }
.rd-footer__pay { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.5); font-size: 1.5rem; }
.rd-footer__pay i { transition: color .2s; }
.rd-footer__pay i:hover { color: #fff; }
@media (max-width: 767px) {
    .rd-footer__cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
    .rd-footer__form { max-width: 100%; width: 100%; }
    .rd-footer__bottom { flex-direction: column; text-align: center; }
}

/* =====================================================================
   14. GALLERY PAGE
   ===================================================================== */
.rd-gallery-page { padding: clamp(50px,7vw,90px) 0; background:
    radial-gradient(900px 320px at 0 0, rgba(169,192,224,.18), transparent 60%), var(--ice); }
.rd-gallery-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 auto clamp(30px,4vw,48px); }
.rd-gallery-filter button {
    border: 1.5px solid var(--border); background: #fff; color: var(--text);
    border-radius: 50px; padding: 9px 22px; font-weight: 600; font-size: .9rem; cursor: pointer;
    transition: all .25s var(--ease);
}
.rd-gallery-filter button:hover { border-color: var(--powder); transform: translateY(-2px); }
.rd-gallery-filter button.active { background: var(--grad); color: #fff; border-color: var(--royal); box-shadow: var(--shadow-sm); }
.rd-pg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 991px) { .rd-pg-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 575px) { .rd-pg-grid { grid-template-columns: 1fr; } }
.rd-pg-item { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; transition: opacity .4s, transform .4s var(--ease); }
.rd-pg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.rd-pg-item:hover img { transform: scale(1.1); }
.rd-pg-item__overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px; text-align: center; color: #fff; padding: 18px;
    background: linear-gradient(160deg, rgba(14,47,118,.1), rgba(10,31,77,.72));
    opacity: 0; transition: opacity .4s var(--ease);
}
.rd-pg-item:hover .rd-pg-item__overlay { opacity: 1; }
.rd-pg-item__overlay .cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-soft); font-weight: 700; }
.rd-pg-item__overlay .ttl { font-size: 1.1rem; font-weight: 700; }
.rd-pg-item__overlay .zoom { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.18); display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; border: 1.5px solid rgba(255,255,255,.5); }
.rd-pg-item.is-hidden { display: none; }
