:root {
    /* Logo-derived brand system (sampled from assets/img/logo.png) */
    --brand: #1575bb;
    --brand-light: #2a8fd4;
    --brand-dark: #0f5a92;
    --brand-deep: #272460;
    --brand-grey: #58595c;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;

    /* Core UI */
    --navy: #141c32;
    --navy-soft: #1d2742;
    --gold: var(--brand);          /* legacy accent token → brand blue */
    --gold-dark: var(--brand-dark);
    --ivory: #f3f1ec;
    --paper: #f8f9fb;
    --text: #1f2430;
    --muted: #5c6470;
    --line: rgba(21, 117, 187, 0.18);
    --header-h: 92px;

    /* Public content heading scale — matches h2.display ("Bairava Bliss Inn") */
    --heading-primary: calc(1.325rem + 0.9vw);
    --heading-secondary: clamp(1.25rem, 1.85vw, 1.5rem);
    --heading-card: clamp(1.125rem, 1.55vw, 1.35rem);
}
@media (min-width: 1200px) {
    :root { --heading-primary: 2rem; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background: var(--paper);
    font-size: 16.5px;
    line-height: 1.75;
}
body.lightbox-open { overflow: hidden; }
h1, h2, h3, h4, h5, .display {
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--navy);
}
/* Lock the public content reference scale used by "Bairava Bliss Inn" */
.display {
    font-size: var(--heading-primary);
}
img, video { max-width: 100%; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--navy); }
:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
}

.btn-gold, .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    padding: 13px 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.25s ease;
}
.btn-gold {
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
    border: 1px solid var(--brand-dark);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(21, 117, 187, 0.22);
}
.btn-gold:hover {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-dark) 100%);
    border-color: var(--brand-deep);
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-outline-gold {
    border: 1px solid rgba(255,255,255,0.78);
    color: #fff !important;
    background: transparent;
}
.btn-outline-gold:hover { background: rgba(255,255,255,0.12); color: #fff !important; border-color: #fff; }
.btn-outline-dark {
    border: 1.5px solid var(--navy);
    color: var(--navy) !important;
    border-radius: 8px;
    padding: 12px 22px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.25s ease;
    background: transparent;
}
.btn-outline-dark:hover {
    background: var(--navy);
    color: #fff !important;
    border-color: var(--navy);
}

/* Book Now — pending booking-engine URL (safe non-navigating placeholder) */
a.is-booking-pending,
.btn.is-booking-pending,
.float-book.is-booking-pending {
    cursor: not-allowed;
    opacity: 0.78;
}
a.is-booking-pending:hover,
.btn.is-booking-pending:hover {
    transform: none;
}

/* WhatsApp — always brand green; glyph larger than companion text */
.fa-whatsapp {
    color: var(--whatsapp) !important;
}
.btn .fa-whatsapp,
.footer-contact .fa-whatsapp,
.stay-cta-actions .fa-whatsapp,
.rd-cta-group .fa-whatsapp,
.rd-final-cta-actions .fa-whatsapp,
.policy-contact-whatsapp .fa-whatsapp {
    font-size: 1.55em;
    line-height: 1;
    width: 1em;
    text-align: center;
    flex-shrink: 0;
}
.header-social .social-whatsapp .fa-whatsapp,
.footer-social .social-whatsapp .fa-whatsapp {
    font-size: 1.2em;
    line-height: 1;
}
.social-whatsapp:hover:not(.social-disabled),
.social-whatsapp:hover:not(.social-disabled) .fa-whatsapp {
    color: #fff !important;
}
.float-whatsapp .fa-whatsapp {
    color: #fff !important;
    font-size: 28px;
}
.policy-contact-whatsapp .policy-contact-icon {
    color: var(--whatsapp);
    background: #fff;
}
.policy-contact-whatsapp .policy-contact-icon .fa-whatsapp {
    font-size: 28px;
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; width: 100%; }
.header-top {
    background: var(--navy);
    color: #e8eef6;
    font-size: 13px;
    padding: 9px 0;
}
.header-top .container {
    flex-wrap: wrap;
    row-gap: 6px;
    width: min(1240px, calc(100% - 32px));
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.header-top-links { display: flex; align-items: center; gap: 22px; }
.header-top a {
    color: #e8eef6;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.25s ease, transform 0.25s ease;
}
.header-top a i { transition: transform 0.25s ease; }
.header-top a:hover { color: var(--brand-light); transform: translateX(2px); }
.header-top a:hover i { transform: scale(1.12); }
.header-top .header-social { flex-shrink: 0; }
.header-whatsapp { color: var(--whatsapp) !important; }
.header-social { display: flex; align-items: center; gap: 10px; }
.header-social .social-link,
.footer-social .social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: grid;
    place-items: center;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(12, 18, 28, 0.14);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.footer-social .social-link {
    width: 42px;
    height: 42px;
    font-size: 17px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* Platform brand colors (recognizable identity) */
.social-facebook { color: #1877f2 !important; border-color: rgba(24,119,242,0.35) !important; }
.social-facebook:hover:not(.social-disabled) { background: #1877f2 !important; color: #fff !important; border-color: #1877f2 !important; box-shadow: 0 6px 16px rgba(24,119,242,0.4); transform: translateY(-2px); }
.social-instagram {
    color: #e1306c !important;
    border-color: rgba(225,48,108,0.35) !important;
}
.social-instagram:hover:not(.social-disabled) {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 16px rgba(225,48,108,0.4);
    transform: translateY(-2px);
}
.social-youtube { color: #ff0000 !important; border-color: rgba(255,0,0,0.35) !important; }
.social-youtube:hover:not(.social-disabled) { background: #ff0000 !important; color: #fff !important; border-color: #ff0000 !important; box-shadow: 0 6px 16px rgba(255,0,0,0.35); transform: translateY(-2px); }
.social-whatsapp { color: var(--whatsapp) !important; border-color: rgba(37,211,102,0.4) !important; }
.social-whatsapp:hover:not(.social-disabled) { background: var(--whatsapp) !important; color: #fff !important; border-color: var(--whatsapp) !important; box-shadow: 0 6px 16px rgba(37,211,102,0.4); transform: translateY(-2px); }

/* Inactive platforms stay readable — never wash icon to white-on-white on hover */
.social-link.social-disabled {
    opacity: 1;
    cursor: default;
    pointer-events: none;
    filter: none;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(12, 18, 28, 0.1) !important;
    background: #f1f3f6 !important;
    border-color: #c5ccd6 !important;
}
.social-link.social-disabled.social-facebook { color: #1877f2 !important; }
.social-link.social-disabled.social-instagram { color: #e1306c !important; }
.social-link.social-disabled.social-youtube { color: #ff0000 !important; }
.social-link.social-disabled.social-whatsapp { color: var(--whatsapp) !important; }
.social-link.social-disabled:hover {
    transform: none !important;
    background: #f1f3f6 !important;
    box-shadow: 0 2px 8px rgba(12, 18, 28, 0.1) !important;
}

.header-social-desktop { margin-left: 4px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,0.18); }
.header-social-mobile {
    justify-content: center;
    gap: 12px;
    margin: 18px 0 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.header-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.site-nav {
    background: rgba(20, 28, 50, 0.97);
    padding: 12px 0;
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    margin-right: 18px;
}
.navbar-brand img {
    height: 58px;
    width: auto;
    max-width: min(220px, 52vw);
    object-fit: contain;
}
.site-nav .nav-link {
    color: #eef3f9 !important;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 14px !important;
}
.site-nav .nav-link.active,
.site-nav .nav-link:hover { color: var(--brand-light) !important; }
.site-nav .btn-gold {
    padding: 11px 20px;
    font-size: 12px;
}
.navbar-toggler { border: 0; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span {
    display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0;
    transition: 0.2s ease;
}

/* Homepage overlay header — video runs behind nav; logo stays on a soft plate */
body.is-home .site-header-overlay {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1040;
    background: transparent;
}
body.is-home .site-header-overlay .site-nav {
    background: linear-gradient(180deg, rgba(12, 18, 28, 0.72) 0%, rgba(12, 18, 28, 0.28) 70%, rgba(12, 18, 28, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 0;
    box-shadow: none;
    padding: 16px 0 28px;
}
body.is-home .site-header-overlay.is-scrolled .site-nav,
body.is-home .site-header-overlay.nav-open .site-nav {
    background: rgba(12, 18, 28, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(12, 18, 28, 0.28);
    padding: 12px 0;
}
body.is-home .site-header-overlay .site-nav .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
}
body.is-home .site-header-overlay .site-nav .nav-link.active,
body.is-home .site-header-overlay .site-nav .nav-link:hover {
    color: #fff !important;
}
body.is-home .site-header-overlay .header-social-desktop {
    border-left-color: rgba(255, 255, 255, 0.18);
}
body.is-home .site-header-overlay .navbar-toggler span {
    background: #fff;
}
body.is-home .site-header-overlay .navbar-brand {
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 22px rgba(12, 18, 28, 0.22);
}
@media (max-width: 991px) {
    body.is-home #mainNav {
        background: rgba(12, 18, 28, 0.96);
        margin-top: 10px;
        border-radius: 14px;
        padding: 12px 8px 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 12px 30px rgba(12, 18, 28, 0.28);
    }
    .navbar-brand img { height: 48px; }
}
@media (max-width: 575px) {
    .navbar-brand img { height: 42px; max-width: 168px; }
}

/* Hero — full-bleed video under transparent header */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.hero-media, .hero-fallback {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(12,18,28,0.62) 0%, rgba(12,18,28,0.28) 42%, rgba(12,18,28,0.18) 100%),
        linear-gradient(180deg, rgba(12,18,28,0.55) 0%, rgba(12,18,28,0.18) 38%, rgba(12,18,28,0.55) 100%);
}
@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(12,18,28,0.62) 0%, rgba(12,18,28,0.28) 36%, rgba(12,18,28,0.62) 100%);
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-top: auto;
    padding: calc(var(--header-h) + 48px) 0 32px;
}
.eyebrow {
    color: var(--brand-dark);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}
.hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}
.hero-brand {
    font-family: "Outfit", sans-serif;
    font-size: clamp(44px, 7.2vw, 84px);
    line-height: 0.98;
    margin: 0 0 18px;
    font-weight: 700;
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    filter: none;
}
.hero-tagline {
    font-size: clamp(19px, 2.4vw, 26px);
    max-width: 560px;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 500;
    line-height: 1.35;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.hero-support {
    font-size: 16px;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn-outline-gold {
    border-color: rgba(255, 255, 255, 0.85);
    color: #fff !important;
    background: transparent;
}
.hero-actions .btn-outline-gold:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff !important;
    border-color: #fff;
}
.hero-sound-toggle {
    position: absolute;
    right: 24px;
    bottom: 88px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(12, 18, 28, 0.55);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-sound-toggle:hover,
.hero-sound-toggle:focus-visible {
    background: rgba(12, 18, 28, 0.78);
    border-color: rgba(255, 255, 255, 0.55);
    outline: none;
    transform: translateY(-1px);
}
.hero-sound-toggle.is-active {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(21, 117, 187, 0.72);
}
.hero-sound-toggle i {
    font-size: 15px;
    line-height: 1;
}
@media (max-width: 767px) {
    .hero-sound-toggle {
        right: 16px;
        bottom: 72px;
        padding: 9px 12px;
        font-size: 12px;
    }
}
/* Last flex child of the hero, so it always sits immediately above the
   enquiry bar on every breakpoint — no absolute `bottom` offset. */
.hero-scroll {
    position: relative;
    z-index: 5;
    align-self: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.65);
    display: grid;
    place-items: center;
    background: var(--navy);
    box-shadow: 0 10px 24px rgba(12,18,28,0.28);
    color: #fff;
}
.hero-scroll-arrow {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg) translateY(-2px);
    animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: rotate(45deg) translateY(-4px); opacity: 0.45; }
    50% { transform: rotate(45deg) translateY(2px); opacity: 1; }
}

.section { padding: 92px 0; }
.section-tight { padding: 76px 0; }
.section-compact { padding: 52px 0; }
.section-ivory { background: var(--ivory); }
.section-head { margin-bottom: 40px; }
/* Match homepage about title (h2.display / Bootstrap h2 scale) */
.section-head h2 {
    font-size: var(--heading-primary);
    margin: 0;
    color: var(--navy);
}
.section-head p { color: var(--muted); margin: 12px auto 0; max-width: 580px; font-size: 16.5px; line-height: 1.75; }
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--brand-deep) 55%, var(--navy-soft) 100%) center/cover no-repeat;
    color: #fff;
    padding: 128px 0 76px;
    position: relative;
}
.page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(12,18,28,0.35);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
    color: #fff;
    font-size: clamp(36px, 4.5vw, 58px);
}
.page-hero .eyebrow { color: var(--brand-light); }
.page-hero-sm { padding: 118px 0 64px; }
.page-hero-lg { padding: 140px 0 88px; }

.enquiry-bar { margin-top: -42px; position: relative; z-index: 4; padding-bottom: 8px; }
#enquire { scroll-margin-top: 24px; }
.place-card-media.is-placeholder img { filter: grayscale(0.12) brightness(0.88); }
.enquiry-card, .card-soft {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(21,32,51,0.08);
    border-radius: 18px;
    padding: 24px;
}
.enquiry-card-polished {
    padding: 28px 28px 22px;
    border-radius: 22px;
    border: 1px solid rgba(21, 117, 187, 0.14);
    box-shadow:
        0 22px 56px rgba(12, 18, 28, 0.12),
        0 2px 0 rgba(255, 255, 255, 0.8) inset;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}
.enquiry-card-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(21, 117, 187, 0.12);
}
.enquiry-card-kicker {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-dark);
}
.enquiry-card-title {
    margin: 0;
    font-size: var(--heading-primary);
    line-height: 1.15;
    color: var(--navy);
}
.enquiry-card-aside {
    margin: 0;
    max-width: 320px;
    text-align: right;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.enquiry-fields {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}
.enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    min-width: 0;
}
.enquiry-field-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.enquiry-field-control {
    position: relative;
    display: block;
}
.enquiry-field-control > i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    color: var(--brand);
    font-size: 14px;
    pointer-events: none;
}
.enquiry-card-polished .form-control,
.enquiry-card-polished .form-select {
    min-height: 50px;
    padding-left: 40px;
    border-radius: 12px;
    border: 1px solid rgba(20, 28, 50, 0.12);
    background: #fff;
    box-shadow: 0 1px 0 rgba(12, 18, 28, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-card-polished .form-control:focus,
.enquiry-card-polished .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(21, 117, 187, 0.14);
}
.enquiry-submit .btn {
    width: 100%;
    min-height: 50px;
    border-radius: 12px;
}
.enquiry-form-note {
    margin-top: 14px;
}
.form-control, .form-select {
    border-radius: 10px;
    border-color: #e5ddd0;
    padding: 10px 12px;
}
.form-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 1099px) {
    .enquiry-fields { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .enquiry-submit { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
    .enquiry-bar { margin-top: -28px; }
    .enquiry-card-polished { padding: 20px 16px 16px; border-radius: 18px; }
    .enquiry-card-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .enquiry-card-aside { text-align: left; max-width: none; }
    .enquiry-fields { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575px) {
    .enquiry-fields { grid-template-columns: 1fr; }
}

.about-media { position: relative; }
.about-media img { width: 100%; height: 460px; object-fit: cover; border-radius: 18px; }
.about-media-small {
    position: absolute; right: -20px; bottom: -24px; width: 46%;
    border: 6px solid #fff; border-radius: 16px; overflow: hidden;
}
.about-media-small img { height: 180px; object-fit: cover; width: 100%; }
.highlight-list { list-style: none; padding: 0; margin: 24px 0; }
.highlight-list li { margin-bottom: 8px; }
.highlight-list i { color: var(--gold-dark); margin-right: 8px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.filter-bar-lg { gap: 12px; }
.filter-btn {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    border-radius: 999px;
    padding: 12px 22px;
    min-height: 48px;
    font-size: 15px;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-btn:hover {
    background: rgba(21,117,187,0.08);
    border-color: var(--brand);
    color: var(--navy);
}
.filter-btn.active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand-dark);
}
.filter-btn.active:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }

/* --- Homepage Rooms & Suites (image-led, compact) ---------------------- */
.home-rooms {
    padding: 96px 0;
    background:
        radial-gradient(circle at top right, rgba(21,117,187,0.06), transparent 42%),
        var(--paper);
}
.home-rooms .section-head { margin-bottom: 28px; }
.home-rooms .section-head p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.room-filter {
    display: flex;
    justify-content: center;
    margin: 0 0 40px;
}
.room-filter-track {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    max-width: 100%;
    background: #fff;
    border: 1px solid rgba(21, 117, 187, 0.14);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(20, 28, 50, 0.06);
}
.room-filter-btn {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.room-filter-label { white-space: nowrap; }
.room-filter-count {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    font-size: 11px;
    font-weight: 600;
    background: rgba(21, 117, 187, 0.1);
    color: var(--brand-dark);
}
.room-filter-btn:hover {
    background: rgba(21, 117, 187, 0.08);
    color: var(--brand-dark);
}
.room-filter-btn.active {
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(21, 117, 187, 0.28);
}
.room-filter-btn.active .room-filter-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.home-rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}
.home-room-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(21, 117, 187, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(20, 28, 50, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.home-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(20, 28, 50, 0.1);
    border-color: rgba(21, 117, 187, 0.28);
}
.home-room-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #d9e2ec;
}
.home-room-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.home-room-card:hover .home-room-media img { transform: scale(1.04); }
.home-room-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,18,28,0.08) 0%, rgba(12,18,28,0) 42%, rgba(12,18,28,0.28) 100%);
    pointer-events: none;
}
.home-room-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 1;
    max-width: calc(100% - 96px);
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(20, 28, 50, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}
.home-room-ac {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 1;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.home-room-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px 26px 28px;
    flex: 1;
}
.home-room-title {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-card);
    line-height: 1.25;
    font-weight: 600;
    color: var(--navy);
}
.home-room-title a { color: inherit; }
.home-room-title a:hover { color: var(--brand-dark); }
.home-room-lead {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.home-room-meta {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(21, 117, 187, 0.12);
    display: grid;
    gap: 10px;
}
.home-room-meta li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    align-items: start;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.45;
}
.home-room-meta i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: rgba(21, 117, 187, 0.1);
    color: var(--brand);
    font-size: 13px;
}
.home-room-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(21, 117, 187, 0.06) 0%, rgba(21, 117, 187, 0.02) 100%);
    border: 1px solid rgba(21, 117, 187, 0.12);
}
.home-room-plans-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-dark);
    font-weight: 700;
}
.home-room-plan-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.home-room-plan-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
    border: 1.5px solid rgba(21, 117, 187, 0.28);
    background: #fff;
    color: var(--brand-dark);
}
.home-room-plan-pill strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(21, 117, 187, 0.12);
}
.home-room-plan-ep {
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 14px rgba(21, 117, 187, 0.22);
}
.home-room-plan-ep strong {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.home-room-plan-cp {
    background: #fff;
    border-color: var(--brand);
    color: var(--brand-dark);
}
.home-room-plan-cp strong {
    background: rgba(21, 117, 187, 0.1);
    color: var(--brand-dark);
}
.home-room-amenities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.home-room-amenities li {
    font-size: 12px;
    color: var(--muted);
    padding: 5px 11px;
    border-radius: 999px;
    background: #f4f6f8;
}
.home-room-amenities li.is-more {
    color: var(--brand-dark);
    background: rgba(21, 117, 187, 0.1);
    font-weight: 600;
}
.home-room-amen-more-wrap {
    position: relative;
    display: inline-flex;
}
.home-room-amen-more {
    appearance: none;
    border: 0;
    margin: 0;
    padding: 5px 11px;
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--brand-dark);
    background: rgba(21, 117, 187, 0.1);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.home-room-amen-more:hover,
.home-room-amen-more:focus-visible {
    background: rgba(21, 117, 187, 0.18);
    color: var(--brand-deep);
}
.home-room-amenities-popover {
    position: absolute;
    left: 0;
    bottom: calc(100% + 8px);
    z-index: 12;
    min-width: 168px;
    max-width: min(240px, 72vw);
    margin: 0;
    padding: 8px;
    list-style: none;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 14px 34px rgba(21, 32, 51, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}
.home-room-amenities-popover::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(45deg);
}
.home-room-amenities-popover li {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--muted);
    background: transparent;
}
.home-room-amenities-popover li + li {
    margin-top: 2px;
}
@media (hover: hover) and (pointer: fine) {
    .home-room-amen-more-wrap:hover .home-room-amenities-popover,
    .home-room-amen-more-wrap:focus-within .home-room-amenities-popover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}
.home-room-amen-more-wrap.is-open .home-room-amenities-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.home-room-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
}
.home-room-actions .btn {
    flex: 1 1 140px;
    text-align: center;
    min-height: 48px;
    border-radius: 10px;
}
.home-rooms-empty { grid-column: 1 / -1; }
.home-room-card.is-room-collapsed { display: none !important; }
.home-rooms-more {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}
.home-rooms-more.is-hidden { display: none; }
.home-rooms-toggle {
    min-width: 220px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .room-filter-track {
        border-radius: 18px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    .home-rooms-grid { gap: 22px; }
}
@media (max-width: 767px) {
    .home-rooms { padding: 72px 0; }
    .home-rooms-grid { grid-template-columns: 1fr; }
    .home-room-body { padding: 18px 18px 20px; }
    .home-room-actions .btn { flex: 1 1 100%; }
}

.room-card, .activity-card, .story-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.room-card:hover, .activity-card:hover, .story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(21,32,51,0.06);
}
.room-card img, .activity-card img { width: 100%; height: 230px; object-fit: cover; }
.room-card-lg img { height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.room-card-body, .activity-card-body, .story-card-body { padding: 20px; }
.room-card-lg .room-card-body { padding: 28px 26px 30px; }
.room-card-lg h3 {
    font-size: var(--heading-card);
    line-height: 1.25;
    margin: 0 0 12px;
    font-weight: 600;
}
.room-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 8px;
}
.room-card-desc { position: relative; margin: 0 0 6px; }
.room-card-desc-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.room-card-desc-text.is-expanded { overflow: visible; }
.room-card-desc-fade {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    height: 1.6em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 88%);
    pointer-events: none;
}
.room-card-desc.has-more .room-card-desc-fade { display: block; }
.room-card-desc.has-more .room-card-desc-text.is-expanded ~ .room-card-desc-fade { display: none; }
.room-desc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 6px 0 10px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--gold-dark);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}
.room-desc-toggle:hover { color: var(--navy); }
.room-desc-toggle i { font-size: 10px; transition: transform 0.25s ease; }
.room-desc-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) {
    .room-card-desc-text { transition: none; }
}
.room-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 14.5px;
}
.room-facts li {
    position: relative;
    padding-left: 0;
}
.room-facts li:not(:last-child)::after {
    content: "·";
    margin-left: 14px;
    color: var(--brand);
}
.room-meal-plan {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 16px;
    padding: 12px 16px;
    background: rgba(21,117,187,0.06);
    border-left: 2px solid var(--brand);
    font-size: 14px;
    line-height: 1.55;
    color: var(--text);
}
.room-meal-plan i { color: var(--brand-dark); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.room-meal-plan strong {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-dark);
    margin-bottom: 2px;
}
.room-meal-choice-note {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--muted);
}
.room-meal-options {
    display: grid;
    gap: 6px;
}
.room-meal-option {
    display: block;
    font-size: 13.5px;
    color: var(--navy);
    line-height: 1.45;
}
.room-meal-option em {
    font-style: normal;
    font-weight: 600;
    color: var(--brand-dark);
    margin-right: 4px;
}
.room-title-num {
    /* Enlarged only inside main room headings (see rules below). */
    font-weight: inherit;
    letter-spacing: inherit;
    color: inherit;
}
.room-title-unit {
    font-weight: inherit;
    letter-spacing: inherit;
}
.home-room-title .room-title-num,
.rd-title .room-title-num,
.room-card-body > h3 .room-title-num {
    display: inline;
    font-size: 1em;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    vertical-align: baseline;
    color: inherit;
}
.home-room-title .room-title-unit,
.rd-title .room-title-unit,
.room-card-body > h3 .room-title-unit {
    font-weight: inherit;
}
.room-view-btn:hover,
.room-card .btn-outline-dark.room-view-btn:hover {
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
    border-color: var(--brand-dark);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(21, 117, 187, 0.22);
    transform: translateY(-1px);
}
.room-amenity-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.room-amenity-chips li {
    font-size: 12px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 10px;
}
.room-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }
.room-card-media { position: relative; }
.badge-gold, .badge-soft {
    font-size: 11px; padding: 5px 9px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.06em;
}
.badge-gold { background: var(--brand); color: #fff; }
.badge-soft { background: rgba(255,255,255,0.92); color: var(--navy); }
.room-meta, .muted { color: var(--muted); font-size: 14px; }
.empty-state {
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    color: var(--muted);
}

/* Amenities */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.amenity-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 22px;
    height: 100%;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.amenity-item:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 117, 187,0.55);
    box-shadow: 0 16px 36px rgba(21,32,51,0.07);
}
.amenity-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    background: rgba(21, 117, 187,0.14);
    color: var(--gold-dark);
    font-size: 20px;
    transition: background 0.22s ease, color 0.22s ease;
}
.amenity-item h5 { margin-bottom: 8px; font-family: "Outfit", sans-serif; font-size: var(--heading-card); }
.amenity-item p { margin: 0; color: var(--muted); font-size: 14px; }
.amenity-grid-premium {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.amenity-grid-premium .amenity-item {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 10px 26px rgba(21,32,51,0.05);
    padding: 34px 26px;
}
.amenity-grid-premium .amenity-item:hover {
    transform: translateY(-6px);
    border-color: rgba(21, 117, 187,0.6);
    box-shadow: 0 22px 44px rgba(21,32,51,0.1);
}
.amenity-grid-premium .amenity-icon {
    margin-left: auto;
    margin-right: auto;
    width: 60px;
    height: 60px;
    font-size: 22px;
    transition: transform 0.32s ease, background 0.32s ease;
}
.amenity-grid-premium .amenity-item:hover .amenity-icon {
    transform: scale(1.08);
    background: var(--brand);
    color: #fff;
}

/* Recognition — MakeMyTrip guest rating award */
.recognition-section {
    position: relative;
    padding-top: 72px;
    padding-bottom: 72px;
    background: linear-gradient(165deg, #eef3f8 0%, var(--ivory) 42%, #fff 100%);
}
.recognition-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(140px, 24vw);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(21, 117, 187, 0.55), transparent);
}
.recognition-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 56px;
    align-items: center;
    padding: 48px 52px;
    border-radius: 24px;
    border: 1px solid rgba(21, 117, 187, 0.12);
    background: #fff;
    box-shadow: 0 20px 50px rgba(21, 32, 51, 0.07);
}
.recognition-heading {
    margin: 0 0 6px;
    font-size: var(--heading-primary);
    line-height: 1.2;
}
.recognition-platform {
    margin: 0 0 18px;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--brand-dark);
}
.recognition-text {
    margin: 0 0 28px;
    max-width: 48ch;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}
.recognition-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 24px;
    margin-bottom: 28px;
    padding: 18px 22px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fafbfc 0%, #f4f7fa 100%);
}
.recognition-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.recognition-meta-value {
    font-family: "Outfit", sans-serif;
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.1;
}
.recognition-meta-value .fa-star {
    font-size: 0.82em;
    color: var(--brand);
    margin-right: 4px;
}
.recognition-meta-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.recognition-meta-divider {
    width: 1px;
    height: 36px;
    background: var(--line);
    flex-shrink: 0;
}
.recognition-view-btn {
    min-width: 180px;
}
.recognition-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.recognition-gallery-multiple {
    gap: 14px;
}
.recognition-gallery-multiple .recognition-frame {
    padding: 10px;
}
.recognition-gallery-multiple .recognition-image {
    max-height: 260px;
}
.recognition-media {
    margin: 0;
    text-align: center;
}
.recognition-frame {
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(21, 117, 187, 0.14);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 14px 36px rgba(21, 32, 51, 0.08);
}
.recognition-image-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 12px;
    cursor: zoom-in;
    text-align: center;
}
.recognition-frame-inner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background: #f3f6f9;
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}
@media (hover: hover) and (pointer: fine) {
    .recognition-image-btn:hover .recognition-frame-inner,
    .recognition-image-btn:focus-visible .recognition-frame-inner {
        transform: scale(1.015);
        box-shadow: 0 12px 28px rgba(21, 32, 51, 0.12);
    }
    .recognition-image-btn:hover .recognition-view-overlay,
    .recognition-image-btn:focus-visible .recognition-view-overlay {
        opacity: 1;
    }
}
.recognition-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 440px;
    object-fit: contain;
    margin: 0 auto;
}
.recognition-view-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(20, 28, 50, 0.42);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.28s ease;
}
.recognition-view-overlay .fa-search-plus {
    font-size: 22px;
}
.recognition-caption {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Compact MakeMyTrip recognition — public pages (not homepage) */
.recognition-mini {
    padding: 28px 0 32px;
    background: linear-gradient(180deg, #eef4fa 0%, #f8fafc 100%);
}
.recognition-mini__banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 28%, var(--brand) 62%, var(--brand-light) 100%);
    box-shadow: 0 14px 36px rgba(21, 117, 187, 0.28);
    color: #fff;
}
.recognition-mini__badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd86b 0%, #f5a623 100%);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.45);
}
.recognition-mini__copy {
    flex: 1 1 auto;
    min-width: 0;
}
.recognition-mini__title {
    margin: 0 0 6px;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary);
    font-weight: 600;
    line-height: 1.25;
    color: #fff;
    letter-spacing: 0.01em;
}
.recognition-mini__location {
    margin: 0 0 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.45;
}
.recognition-mini__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.recognition-mini__link:hover {
    color: #fff;
    border-color: #fff;
}
.recognition-mini__rating {
    flex-shrink: 0;
    min-width: 118px;
    padding: 14px 18px;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(4px);
}
.recognition-mini__stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 6px;
    color: #ffd86b;
    font-size: 13px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.recognition-mini__score {
    margin: 0;
    line-height: 1;
}
.recognition-mini__value {
    font-family: "Outfit", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
}
.recognition-mini__outof {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}
.recognition-mini__year {
    margin: 6px 0 0;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}
@media (max-width: 767px) {
    .recognition-mini {
        padding: 22px 0 26px;
    }
    .recognition-mini__banner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 22px 20px;
        text-align: center;
    }
    .recognition-mini__badge {
        margin: 0 auto;
    }
    .recognition-mini__link {
        justify-content: center;
    }
    .recognition-mini__rating {
        min-width: 0;
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
    }
}

/* Gallery — equal tiles on gallery page; homepage uses mosaic below */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    min-height: 0;
    aspect-ratio: 4 / 3;
    background: #111;
    cursor: pointer;
    border: 0;
    padding: 0;
    display: block;
    width: 100%;
    color: inherit;
}
.gallery-item img, .gallery-item video,
.gallery-item .gallery-thumb {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.gallery-item:hover img,
.gallery-item:hover .gallery-thumb { transform: scale(1.04); }
.gallery-item::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(12,18,28,0.12);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1;
    pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }

/* Homepage gallery mosaic — no uneven masonry gaps */
.home-gallery {
    padding: 96px 0;
    background:
        radial-gradient(circle at top left, rgba(21,117,187,0.05), transparent 40%),
        var(--ivory, #f7f5f1);
}
.home-gallery .section-head { margin-bottom: 36px; }
.home-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.home-gallery-item {
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
    border-radius: 16px;
    background: #1a2230;
    cursor: pointer;
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    color: inherit;
}
.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.home-gallery-item:hover img { transform: scale(1.05); }
.home-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(12,18,28,0.35) 100%);
    opacity: 0.75;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.home-gallery-item:hover::after { opacity: 1; }
@media (max-width: 991px) {
    .home-gallery-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .home-gallery { padding: 72px 0; }
    .home-gallery-mosaic { gap: 10px; }
}
.gallery-play {
    position: absolute;
    z-index: 2;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.94);
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(12,18,28,0.3);
    transition: transform 0.25s ease, background 0.25s ease;
}
.gallery-play i { font-size: 16px; margin-left: 2px; }
.gallery-item:hover .gallery-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--gold);
    color: var(--navy);
}
@media (max-width: 991px) {
    .gallery-play { width: 42px; height: 42px; }
    .gallery-play i { font-size: 14px; }
}
@media (max-width: 575px) {
    .gallery-play { width: 40px; height: 40px; }
    .gallery-play i { font-size: 13px; }
}

/* Why stay */
.why-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}
.why-split-media {
    min-height: 420px;
    border-radius: 22px;
    background: var(--navy) center/cover no-repeat;
}
.why-split-content {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 36px 32px;
}
.why-points { display: grid; gap: 18px; margin-top: 24px; }
.why-point {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}
.why-point i {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(21, 117, 187,0.14);
    color: var(--gold-dark);
}
.why-point h4 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-card);
    margin: 0 0 4px;
}
.why-point p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.contact-strip-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-strip-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(21,32,51,0.07);
    border-color: rgba(21, 117, 187,0.5);
}
.contact-strip-item i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 117, 187,0.14);
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
    font-size: 18px;
    line-height: 1;
    box-sizing: border-box;
}
.contact-strip-item i.fa-whatsapp {
    background: rgba(37, 211, 102, 0.16);
    color: var(--whatsapp) !important;
    font-size: 22px;
    line-height: 1;
    width: 44px;
    height: 44px;
    min-width: 44px;
}
.contact-strip-item:hover i { background: var(--brand); color: #fff; }
.contact-strip-item:hover i.fa-whatsapp {
    background: var(--whatsapp);
    color: #fff !important;
}
.contact-strip-item strong { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.contact-strip-item a, .contact-strip-item span {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.55;
    transition: color 0.22s ease;
}
.contact-strip-item a:hover { color: var(--brand-dark); }
.contact-info-list { display: grid; gap: 16px; margin-top: 24px; }
.contact-info-list .contact-strip-item a,
.contact-info-list .contact-strip-item span { font-size: 17px; }
.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.destination-grid-page { grid-template-columns: repeat(3, 1fr); }
.destination-card {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    color: inherit;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 0;
    width: 100%;
}
.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(21,32,51,0.1);
    color: inherit;
}
.destination-card-button { cursor: pointer; }
.destination-media {
    height: 210px;
    background: var(--navy) center/cover no-repeat;
    transition: transform 0.45s ease;
}
.destination-card:hover .destination-media { transform: scale(1.04); }
.destination-media.is-placeholder { filter: grayscale(0.15) brightness(0.85); }
.destination-body { padding: 18px; }
.destination-cat {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}
.destination-body h3 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-card);
    margin: 0 0 8px;
}
.destination-body p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.destination-link {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}
.destination-hero .hero-page-lead {
    max-width: 640px;
    color: rgba(255,255,255,0.88);
    margin-top: 10px;
}

/* Local Activities — full-bleed video hero (homepage-style) */
.page-hero-video {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-image: none !important;
    background-color: var(--navy);
}
.page-hero-video::after {
    display: none;
}
.activities-hero-full {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0;
}
.activities-hero-full .activities-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    padding: calc(var(--header-h) + 48px) 0 56px;
}
.page-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    transform: scale(1.08);
    transform-origin: center;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(12,18,28,0.62) 0%, rgba(12,18,28,0.28) 42%, rgba(12,18,28,0.18) 100%),
        linear-gradient(180deg, rgba(12,18,28,0.55) 0%, rgba(12,18,28,0.18) 38%, rgba(12,18,28,0.55) 100%);
}
.page-hero-video:not(.activities-hero-full) {
    min-height: clamp(420px, 58vh, 620px);
    align-items: flex-end;
}
.page-hero-video:not(.activities-hero-full) .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 8px;
}
.page-hero-video:not(.activities-hero-full) .page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(12,18,28,0.68) 0%, rgba(12,18,28,0.34) 48%, rgba(12,18,28,0.22) 100%),
        linear-gradient(180deg, rgba(12,18,28,0.42) 0%, rgba(12,18,28,0.18) 40%, rgba(12,18,28,0.62) 100%);
}
@media (max-width: 767px) {
    .activities-hero-full .activities-hero-content {
        padding: calc(var(--header-h) + 32px) 0 40px;
    }
    .page-hero-overlay,
    .activities-hero-full .page-hero-overlay {
        background:
            linear-gradient(180deg, rgba(12,18,28,0.62) 0%, rgba(12,18,28,0.28) 36%, rgba(12,18,28,0.62) 100%);
    }
    .page-hero-video:not(.activities-hero-full) {
        min-height: clamp(360px, 52vh, 520px);
        align-items: center;
    }
}
.destination-modal[hidden] { display: none !important; }
.destination-modal {
    position: fixed; inset: 0; z-index: 2100;
    display: grid; place-items: center; padding: 20px;
}
.destination-modal-backdrop {
    position: absolute; inset: 0; background: rgba(8,12,18,0.72);
}
.destination-modal-panel {
    position: relative; z-index: 1;
    width: min(920px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.destination-modal-media {
    position: relative;
    min-height: 280px;
    background: var(--navy) center/cover no-repeat;
}
.destination-modal-body { padding: 28px; }
.destination-modal-close {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: 40px; height: 40px; border-radius: 50%; border: 0;
    background: rgba(255,255,255,0.9);
}
.destination-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.85);
    color: var(--navy);
    display: grid;
    place-items: center;
    font-size: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.destination-modal-nav:hover { background: var(--gold); transform: translateY(-50%) scale(1.06); }
.destination-modal-prev { left: 14px; }
.destination-modal-next { right: 14px; }
.destination-modal-nav[hidden] { display: none; }
.destination-modal-count {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--muted);
    text-transform: uppercase;
}
.destination-modal-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 6px;
}
.destination-modal-dots[hidden] { display: none; }
.destination-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: 0; padding: 0;
    background: rgba(255,255,255,0.45);
}
.destination-dot.is-active { background: var(--gold); }
.destination-modal-browse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.destination-browse-btn {
    border: 0;
    background: transparent;
    color: var(--navy);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0;
}
.destination-browse-btn:hover { color: var(--gold-dark); }
.destination-browse-btn[hidden] { display: none; }
.credits-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
}
.credits-box ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); font-size: 13px; }

/* Guest stories carousel */
.stories-carousel { position: relative; }
.stories-viewport { overflow: hidden; }
.stories-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
}
.story-slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
}
.story-card {
    position: relative;
    cursor: pointer;
    border: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    background: #fff;
}
.story-card-media {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #1a2436;
}
.story-card-media img,
.story-card-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-quote {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
}
.story-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(12,18,28,0.05), rgba(12,18,28,0.35));
}
.story-play i {
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--navy);
    display: grid; place-items: center;
    font-size: 20px;
}
.stories-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}
.stories-nav {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
}
.stories-dots { display: flex; gap: 8px; }
.stories-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: 0; background: #d7cbb8; padding: 0;
}
.stories-dot.active { background: var(--navy); width: 22px; border-radius: 999px; }

.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--brand-deep) 48%, var(--brand-dark) 100%);
    color: #fff;
    border-radius: 18px;
    padding: 52px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}
.cta-band h2, .cta-band p { color: #fff; }

.site-footer {
    background: #0f1524;
    color: #e8eef6;
    padding: 76px 0 24px;
}
.site-footer-premium { background: #0f1524; }
.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 0.9fr;
    gap: 40px 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    height: 64px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 18px;
}
.footer-brand p { color: rgba(232,238,246,0.78); max-width: 320px; font-size: 15.5px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links a, .site-footer a { color: #e8eef6; }
.footer-links a:hover, .footer-contact a:hover { color: var(--brand-light); }
.footer-links li, .footer-contact li { margin-bottom: 11px; }
.footer-contact li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 15px;
}
.footer-contact .fa-whatsapp {
    font-size: 20px;
    line-height: 1;
    margin-top: 1px;
}
.site-footer h5 {
    color: var(--brand-light);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
    font-family: "Outfit", sans-serif;
}
.footer-plan p { color: rgba(232,238,246,0.78); margin-bottom: 18px; }
.footer-bottom {
    margin-top: 0; padding-top: 18px;
    display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    font-size: 13px; color: rgba(232,238,246,0.65);
}
.footer-bottom a { margin-left: 14px; color: rgba(232,238,246,0.65); }
.footer-bottom a:hover { color: var(--brand-light); }

/* Floating actions */
.float-btn {
    position: fixed;
    bottom: 20px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
    transition: box-shadow 0.2s ease, filter 0.2s ease;
    transform: none;
}
.float-btn:hover,
.float-btn:focus-visible {
    transform: none;
    filter: brightness(1.06);
    box-shadow: 0 16px 34px rgba(0,0,0,0.28);
    color: #fff !important;
}
.float-btn i { font-size: 24px; }
.float-label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    white-space: nowrap;
    background: var(--navy);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 8px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2;
}
.float-whatsapp .float-label {
    right: auto;
    left: calc(100% + 10px);
}
.float-btn:hover .float-label,
.float-btn:focus-visible .float-label { opacity: 1; }
.float-whatsapp { left: 18px; background: var(--whatsapp); }
.float-book { right: 18px; bottom: 20px; background: var(--brand); color: #fff !important; }
.float-book i { color: #fff; }

.room-gallery img { height: 280px; object-fit: cover; width: 100%; border-radius: 14px; margin-bottom: 10px; }
.form-note { font-size: 13px; color: var(--muted); }

/* Lightbox */
.bbi-lightbox[hidden] { display: none !important; }
.bbi-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}
.bbi-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 18, 0.88);
}
.bbi-lightbox-stage {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: 88vh;
    animation: lightboxIn 0.28s ease;
}
.bbi-lightbox-image,
.bbi-lightbox-video {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    background: #000;
    display: block;
}
.bbi-lightbox-caption {
    color: #e8eef6;
    text-align: center;
    margin: 12px 0 0;
}
.bbi-lightbox-close,
.bbi-lightbox-nav {
    position: absolute;
    z-index: 2;
    border: 0;
    background: rgba(255,255,255,0.12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 24px;
}
.bbi-lightbox-close { top: 18px; right: 18px; }
.bbi-lightbox-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.bbi-lightbox-next { right: 18px; top: 50%; transform: translateY(-50%); }
.bbi-lightbox.is-single .bbi-lightbox-nav {
    display: none;
}
@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.page-hero-lg { padding: 140px 0 90px; }
.hero-page-lead { max-width: 640px; color: rgba(255,255,255,0.88); margin-top: 12px; }
.page-breadcrumb {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 18px; color: rgba(255,255,255,0.68);
    font-weight: 500;
}
.page-breadcrumb a { color: rgba(255,255,255,0.68); transition: color 0.2s ease; }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span[aria-hidden] {
    color: var(--gold);
    font-size: 10px;
}
.page-breadcrumb span:not([aria-hidden]) { color: var(--gold); }
@media (max-width: 575px) {
    .page-breadcrumb { font-size: 10px; gap: 6px; }
}

.stay-cta { background: var(--ivory); border-top: 1px solid var(--line); }
.stay-cta-inner {
    background: transparent;
    color: var(--navy);
    padding: 48px 0;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    border-top: 0;
}
.stay-cta-copy h2 { font-size: var(--heading-primary); margin: 0 0 8px; }
.stay-cta-copy p { margin: 0; color: var(--muted); max-width: 520px; }
.stay-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.stay-cta .btn-outline-gold {
    border-color: var(--navy);
    color: var(--navy) !important;
}
.stay-cta .btn-outline-gold:hover { background: var(--navy); color: #fff !important; }

.editorial-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}
.editorial-split-reverse { grid-template-columns: 0.95fr 1.05fr; }
.editorial-split-reverse .editorial-media { order: 2; }
.editorial-media img {
    width: 100%; height: 520px; object-fit: cover;
}
.editorial-copy h2 { font-size: var(--heading-primary); margin-bottom: 16px; }
.pillar-grid, .choose-grid, .guide-grid, .experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.guide-grid { grid-template-columns: repeat(3, 1fr); }
.experience-grid { grid-template-columns: repeat(3, 1fr); }
.pillar-card, .choose-card, .guide-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 28px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.experience-grid .pillar-card { text-align: center; border-radius: 16px; }
.experience-grid .pillar-card .amenity-icon { margin: 0 auto 16px; }
.experience-grid .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(21,32,51,0.08);
    border-color: rgba(21, 117, 187,0.5);
}
.pillar-card h3, .choose-card h3, .guide-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-card); margin: 0 0 8px;
}
.pillar-card p, .choose-card p, .guide-card p { margin: 0; color: var(--muted); font-size: 14px; }
.photo-mosaic {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 12px;
}
.photo-mosaic button {
    border: 0; padding: 0; background: #111; overflow: hidden; cursor: pointer;
}
.photo-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.photo-mosaic button:hover img { transform: scale(1.04); }
.mosaic-large { min-height: 420px; }
.mosaic-stack { display: grid; gap: 12px; }
.mosaic-stack button { min-height: 204px; }
.mosaic-wide { grid-column: 1 / -1; min-height: 280px; }

.place-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.place-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    text-align: left;
    padding: 0;
    color: inherit;
    cursor: pointer;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.place-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(21,32,51,0.06); color: inherit; }
.place-card-media {
    position: relative; overflow: hidden; height: 280px; background: var(--navy);
}
.place-card-media img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.place-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(12,18,28,0) 40%, rgba(12,18,28,0.28) 100%);
    opacity: 0.55; transition: opacity 0.3s ease;
}
.place-card:hover .place-card-media img { transform: scale(1.05); }
.place-card:hover .place-card-overlay { opacity: 0.8; }
.place-card-body { padding: 24px 24px 26px; }
.place-badge {
    display: inline-block;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold-dark); border: 1px solid var(--line);
    padding: 4px 10px; margin-bottom: 10px;
}
.place-card-body h3, .sea-feature-copy h3 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary); margin: 0 0 10px; line-height: 1.2;
}
.place-card-body p { color: var(--muted); margin-bottom: 16px; }
.place-explore {
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
}
.place-explore i { margin-left: 6px; transition: transform 0.25s ease; }
.place-card:hover .place-explore i, .sea-feature:hover .place-explore i { transform: translateX(4px); }

.section-navy-soft { background: #f3eee6; }
.sea-editorial { display: grid; gap: 18px; }
.sea-feature {
    display: grid; grid-template-columns: 1.25fr 0.75fr; min-height: 380px;
    padding: 0; border: 0; background: #111; color: #fff; text-align: left; cursor: pointer;
}
.sea-feature-media { background: var(--navy) center/cover no-repeat; min-height: 320px; }
.sea-feature-copy { padding: 40px 36px; background: var(--navy); }
.sea-feature-copy .place-badge { color: var(--gold); border-color: rgba(21, 117, 187,0.35); }
.sea-feature-copy p { color: rgba(255,255,255,0.78); }
.sea-feature-copy .place-explore { color: var(--gold); }
.sea-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.sea-mini {
    display: grid; gap: 10px; padding: 0; border: 0; background: transparent;
    text-align: left; color: inherit; cursor: pointer;
}
.sea-mini-media { height: 140px; background: var(--navy) center/cover no-repeat; }
.sea-mini h4 { font-family: "Outfit", sans-serif; font-size: var(--heading-card); margin: 0; }

.destination-modal-panel-lg { grid-template-columns: 1fr 1fr; }
.modal-subhead {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-card); margin: 18px 0 8px;
}

/* ==========================================================================
   Room Detail — dedicated premium boutique-hotel design system.
   Scoped entirely to .room-detail-page / .rd-* classes; nothing here is
   shared with other pages, and nothing on other pages depends on it.
   ========================================================================== */

.rd-breadcrumb-bar { padding: 22px 0 0; }
.rd-breadcrumb {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); font-weight: 500;
}
.rd-breadcrumb a { color: var(--muted); transition: color 0.2s ease; }
.rd-breadcrumb a:hover { color: var(--gold-dark); }
.rd-breadcrumb span[aria-hidden] { color: var(--gold); font-size: 10px; }
.rd-breadcrumb span:not([aria-hidden]) { color: var(--gold-dark); }

.rd-eyebrow,
.rd-kicker {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    font-weight: 500;
    margin: 0 0 12px;
}
.rd-kicker { margin-bottom: 14px; }
.rd-kicker::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin-top: 14px;
}
.rd-eyebrow-center { text-align: center; }
.rd-heading {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 16px;
}
.rd-heading-center { text-align: center; }
.rd-body { font-size: 16px; line-height: 1.8; color: var(--text); max-width: 640px; }

/* --- Hero: editorial gallery mosaic + borderless booking column --- */
.rd-hero { padding: 34px 0 0; }
.rd-hero-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 56px; align-items: start; }

.rd-gallery { position: relative; }
.rd-gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
    border-radius: 24px;
    overflow: hidden;
}
.rd-gallery-main {
    border: 0; padding: 0; background: #111; cursor: pointer; width: 100%; height: 100%; display: block;
}
.rd-gallery-main img {
    width: 100%; height: 100%; min-height: 460px; object-fit: cover; display: block;
    transition: transform 0.6s ease;
}
.rd-gallery-main:hover img { transform: scale(1.035); }
.rd-gallery-side { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 8px; }
.rd-gallery-tile { position: relative; border: 0; padding: 0; background: #111; cursor: pointer; width: 100%; height: 100%; overflow: hidden; }
.rd-gallery-tile img {
    width: 100%; height: 100%; min-height: 110px; object-fit: cover; display: block;
    transition: transform 0.45s ease;
}
.rd-gallery-tile:hover img { transform: scale(1.08); }
.rd-gallery-more-badge {
    position: absolute; inset: 0;
    background: rgba(12,18,28,0.62);
    color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: "Outfit", sans-serif; font-size: 22px; line-height: 1.2;
}
.rd-gallery-more-badge small { font-family: "Outfit", sans-serif; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.rd-gallery-count {
    position: absolute; left: 18px; bottom: 18px;
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(12,18,28,0.6);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.rd-booking { display: flex; flex-direction: column; }
.rd-booking .rd-eyebrow { margin-bottom: 10px; }
.rd-title { font-family: "Outfit", sans-serif; font-size: var(--heading-primary); line-height: 1.2; color: var(--navy); margin: 0 0 14px; font-weight: 600; }
.rd-meta { color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-size: 12px; margin: 0 0 20px; }
.rd-lead {
    font-size: 16px; line-height: 1.7; color: var(--text); margin: 0 0 28px;
    padding-bottom: 26px; border-bottom: 1px solid var(--line);
}

/* Room specifications — aligned 2-column grid (equal columns keep the
   divider and icons lined up across rows, unlike the old wrapping flex row). */
.rd-highlights-inline {
    list-style: none; margin: 0 0 32px; padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 16px;
}
.rd-highlights-inline li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: var(--navy);
    min-width: 0;
}
.rd-highlights-inline li:nth-child(odd) {
    padding-right: 20px;
    border-right: 1px solid var(--line);
}
.rd-highlights-inline i {
    color: var(--gold-dark); font-size: 16px;
    width: 18px; flex-shrink: 0; text-align: center;
}
.rd-highlights-inline span { overflow-wrap: break-word; }

/* Enquiry CTAs — equal height/width regardless of label length or wrap. */
.rd-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; }
.rd-cta-group .btn-gold, .rd-cta-group .btn-outline-dark { flex: 1 1 170px; text-align: center; padding: 15px 22px; }
.rd-booking .rd-cta-group .btn-gold,
.rd-booking .rd-cta-group .btn-outline-dark {
    flex: 1 1 0;
    min-width: 0;
    min-height: 56px;
    padding: 14px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.rd-booking .rd-cta-group .btn-gold:hover,
.rd-booking .rd-cta-group .btn-outline-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(21,32,51,0.14);
}
@media (min-width: 992px) { .rd-booking { position: sticky; top: 108px; } }
@media (max-width: 480px) {
    .rd-highlights-inline { grid-template-columns: 1fr; }
    .rd-highlights-inline li:nth-child(odd) { border-right: 0; padding-right: 0; }
    .rd-booking .rd-cta-group .btn-gold,
    .rd-booking .rd-cta-group .btn-outline-dark { flex: 1 1 100%; }
}

/* --- Below-hero editorial sections -------------------------------------- */
.rd-glance {
    padding: 92px 0 72px;
    background: #fff;
    border-top: 1px solid var(--line);
}
.rd-glance-intro { max-width: 640px; margin: 0 0 56px; }
.rd-glance-intro h2 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
    color: var(--navy);
    margin: 0;
}
.rd-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
}
.rd-glance-item {
    min-width: 0;
    padding: 36px 28px 40px 0;
    border-bottom: 1px solid var(--line);
}
.rd-glance-item:nth-child(3n+1) { padding-left: 0; }
.rd-glance-item:nth-child(3n+2),
.rd-glance-item:nth-child(3n) { padding-left: 36px; border-left: 1px solid var(--line); }
.rd-glance-icon {
    display: block;
    color: var(--gold-dark);
    font-size: 15px;
    margin-bottom: 16px;
}
.rd-glance-value {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 10px;
    overflow-wrap: break-word;
    font-variant-numeric: lining-nums;
}
.rd-glance-num {
    font-size: 1.08em;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: inherit;
}
.rd-glance-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.rd-glance-note {
    display: block;
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--muted);
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.55;
}
.rd-glance-item-meals {
    align-content: start;
}
.rd-glance-item-meals .rd-glance-label {
    margin-bottom: 10px;
}
.rd-meal-plans {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.rd-meal-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    color: var(--brand-dark);
    font-size: 18px;
    line-height: 1.35;
}
.rd-meal-pill strong {
    display: inline;
    min-width: 0;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--brand-dark);
}
.rd-meal-pill span {
    color: var(--brand-dark);
}
.rd-meal-ep,
.rd-meal-cp {
    background: none;
    border: 0;
    color: var(--brand-dark);
    box-shadow: none;
}
.rd-meal-ep strong,
.rd-meal-cp strong {
    background: none;
    color: var(--brand-dark);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    z-index: 59;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--navy);
    color: #fff !important;
    box-shadow: 0 12px 28px rgba(12, 18, 28, 0.22);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.back-to-top[hidden] { display: none !important; }
.back-to-top:hover {
    background: var(--brand-dark);
    color: #fff !important;
    transform: translateY(-2px);
}
.back-to-top i { font-size: 20px; line-height: 1; }
@media (max-width: 575px) {
    .back-to-top { right: 14px; bottom: 82px; width: 44px; height: 44px; }
    .float-book { right: 14px; bottom: 16px; }
}

.rd-overview {
    padding: 88px 0 96px;
    background: var(--ivory);
}
.rd-overview-layout {
    display: grid;
    gap: 48px;
    align-items: center;
}
.rd-overview-layout.has-image {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 72px;
}
.rd-overview-content { min-width: 0; }
.rd-overview-content h2 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 24px;
}
.rd-overview-text {
    font-size: 16.5px;
    line-height: 1.9;
    color: var(--text);
    max-width: 520px;
}
.rd-overview-image {
    position: relative;
    margin: 0;
    padding: 22px 0 0 22px;
    min-width: 0;
    overflow: hidden;
}
.rd-overview-frame {
    position: absolute;
    inset: 0 22px 22px 0;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 1;
}
.rd-overview-image img {
    position: relative;
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    box-shadow: 0 22px 48px rgba(21,32,51,0.1);
}

.rd-amenities {
    padding: 92px 0;
    background: #fff;
}
.rd-amenities-intro { margin: 0 0 48px; max-width: 720px; }
.rd-amenities-intro h2 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
    color: var(--navy);
    margin: 0;
}
.rd-amenities-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 48px;
}
.rd-amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 4px 22px 0;
    border-bottom: 1px solid var(--line);
    transition: transform 0.28s ease, border-color 0.28s ease;
}
.rd-amenity-item:hover {
    transform: translateY(-3px);
    border-bottom-color: var(--gold);
}
.rd-amenity-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: rgba(21, 117, 187,0.14);
    color: var(--gold-dark);
    font-size: 16px;
    transition: background 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
}
.rd-amenity-item:hover .rd-amenity-icon {
    background: linear-gradient(180deg, var(--brand-light) 0%, var(--brand) 55%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(21, 117, 187, 0.28);
}
.rd-amenity-name {
    font-size: 15px;
    color: var(--navy);
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
}

/* Dedicated WhatsApp CTA — brand green */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    padding: 13px 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
    background: linear-gradient(180deg, #2fe075 0%, var(--whatsapp) 55%, #1ebe57 100%);
    border: 1px solid var(--whatsapp-dark);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.28);
    transition: 0.25s ease;
}
.btn-whatsapp:hover {
    background: linear-gradient(180deg, var(--whatsapp) 0%, #1ebe57 100%);
    border-color: var(--whatsapp-dark);
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-whatsapp .fa-whatsapp {
    color: #fff !important;
    font-size: 1.65em;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.12));
}

.rd-good-to-know {
    padding: 96px 0;
    background: var(--ivory);
}
.rd-good-to-know-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 80px;
    align-items: start;
}
.rd-good-to-know-intro h2 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 18px;
}
.rd-good-to-know-intro p {
    margin: 0;
    color: var(--muted);
    max-width: 340px;
    line-height: 1.8;
}
.rd-good-to-know-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.rd-good-to-know-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text);
}
.rd-good-to-know-list li:first-child { padding-top: 0; }
.rd-good-to-know-list li:last-child { border-bottom: 0; }
.rd-good-to-know-list i {
    color: var(--gold-dark);
    margin-top: 5px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.rd-final-cta {
    padding: 108px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    text-align: center;
}
.rd-final-cta-inner { max-width: 740px; margin: 0 auto; padding: 0 12px; }
.rd-final-cta .rd-kicker::after { margin-left: auto; margin-right: auto; }
.rd-final-cta h2 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
    color: var(--navy);
    margin: 0 0 18px;
}
.rd-final-cta p {
    margin: 0 auto 36px;
    max-width: 460px;
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.8;
}
.rd-final-cta .rd-kicker { margin-bottom: 22px; }
.rd-final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.rd-final-cta-actions .btn {
    min-width: 168px;
    padding: 14px 26px;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.rd-final-cta-actions .btn-gold:hover,
.rd-final-cta-actions .btn-outline-dark:hover {
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .rd-glance-grid { grid-template-columns: 1fr 1fr; }
    .rd-glance-item:nth-child(3n),
    .rd-glance-item:nth-child(3n+2) { padding-left: 0; border-left: 0; }
    .rd-glance-item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--line); }
    .rd-overview-layout.has-image { gap: 48px; }
    .rd-overview-image img { height: 400px; }
    .rd-amenities-grid { grid-template-columns: 1fr 1fr; column-gap: 36px; }
    .rd-good-to-know-layout { gap: 48px; }
}
@media (max-width: 991px) {
    .rd-hero-layout { grid-template-columns: 1fr; gap: 34px; }
    .rd-booking { position: static; }
    .rd-gallery-main img { min-height: 340px; }
    .rd-gallery-tile img { min-height: 90px; }
    .rd-overview-layout.has-image { grid-template-columns: 1fr; gap: 36px; }
    .rd-overview { padding: 56px 0 72px; }
    .rd-overview-image { order: 2; }
    .rd-overview-image img { height: 320px; }
    .rd-good-to-know-layout { grid-template-columns: 1fr; gap: 32px; }
    .rd-final-cta { padding: 80px 0; }
}
@media (max-width: 767px) {
    .rd-glance { padding: 64px 0 40px; }
    .rd-glance-intro { margin-bottom: 32px; }
    .rd-glance-grid { grid-template-columns: 1fr; }
    .rd-glance-item,
    .rd-glance-item:nth-child(even) { padding: 24px 0; border-left: 0; }
    .rd-amenities { padding: 64px 0; }
    .rd-amenities-grid { grid-template-columns: 1fr; }
    .rd-good-to-know { padding: 64px 0; }
    .rd-final-cta-actions .btn { width: 100%; }
}
@media (max-width: 575px) {
    .rd-hero { padding-top: 24px; }
    .rd-gallery-grid { grid-template-columns: 1fr; }
    .rd-gallery-side { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
    .rd-gallery-main img { min-height: 300px; }
    .rd-gallery-tile img { min-height: 74px; }
    .rd-glance { padding: 52px 0 24px; }
    .rd-overview-image { padding: 14px 0 0 14px; }
    .rd-overview-frame { inset: 0 14px 14px 0; }
    .rd-overview-image img { height: 220px; }
    .rd-cta-group .btn-gold, .rd-cta-group .btn-outline-dark { flex: 1 1 100%; }
}

@media (max-width: 1099px) {
    .story-slide { flex-basis: calc((100% - 20px) / 2); }
    .footer-main, .pillar-grid, .choose-grid, .sea-mini-grid, .experience-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
    .amenity-grid, .gallery-grid, .contact-strip, .destination-grid, .destination-grid-page { grid-template-columns: 1fr; }
    .place-grid { grid-template-columns: 1fr 1fr; }
    .amenity-grid-premium { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .about-media-small { position: static; width: 100%; margin-top: 16px; border: 0; }
    .about-media img { height: 320px; }
    .cta-band, .why-split, .destination-modal-panel, .destination-modal-panel-lg,
    .editorial-split, .editorial-split-reverse, .sea-feature, .photo-mosaic, .stay-cta-inner, .footer-main {
        grid-template-columns: 1fr;
    }
    .editorial-split-reverse .editorial-media { order: 0; }
    .cta-band, .stay-cta-inner { padding: 32px 0; display: flex; flex-direction: column; text-align: center; }
    .stay-cta-actions { justify-content: center; }
    .recognition-card {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 28px;
    }
    .recognition-copy { text-align: center; }
    .recognition-text { margin-left: auto; margin-right: auto; }
    .recognition-meta { justify-content: center; }
    .recognition-view-btn { margin: 0 auto; }
    .recognition-gallery { max-width: 340px; margin: 0 auto; width: 100%; }
    .why-split-media { min-height: 260px; }
    .hero { min-height: 92vh; }
    .hero-content { padding-top: calc(var(--header-h) + 28px); padding-bottom: 20px; }
    .hero-scroll { margin-bottom: 14px; }
    .editorial-media img { height: 320px; }
    .mosaic-large, .mosaic-stack button, .mosaic-wide { min-height: 220px; }
}
@media (max-width: 767px) {
    .story-slide { flex-basis: 100%; }
    .bbi-lightbox-prev { left: 8px; }
    .bbi-lightbox-next { right: 8px; }
    .guide-grid { grid-template-columns: 1fr 1fr; }
    .hero-scroll { width: 38px; height: 38px; margin-bottom: 12px; }
    .room-card-lg img { aspect-ratio: 16 / 11; }
}
@media (max-width: 991px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .amenity-grid, .amenity-grid-premium, .gallery-grid, .contact-strip, .destination-grid, .destination-grid-page,
    .pillar-grid, .choose-grid, .guide-grid, .experience-grid, .sea-mini-grid, .place-grid { grid-template-columns: 1fr; }
    .navbar-brand img { height: 42px; }
    .float-btn { width: 50px; height: 50px; bottom: 16px; }
    .float-whatsapp { left: 14px; }
    .float-book { right: 14px; }
    .hero-content { padding-bottom: 16px; }
}

/* Subtle premium scroll effects (progressive enhancement, JS-driven) */
.hero-media, .hero-fallback { transform: scale(1.08); transform-origin: center; }
[data-parallax] { will-change: transform; }
.js-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-reveal.is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
    [data-parallax] { transform: none !important; }
    .js-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Policy pages (terms-conditions.php / cancellation-policy.php / refund-policy.php)
   ========================================================================== */
.policy-page { padding-top: 48px; padding-bottom: 88px; }
.policy-shell {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(21, 117, 187, 0.12);
    border-radius: 24px;
    padding: 42px 44px 40px;
    box-shadow: 0 22px 50px rgba(12, 18, 28, 0.06);
}
.policy-intro {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(21, 117, 187, 0.12);
}
.policy-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(21, 117, 187, 0.1);
}
.policy-section:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.policy-section h3 {
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary);
    color: var(--navy);
    margin: 0 0 14px;
    font-weight: 600;
}
.policy-section p {
    color: var(--text);
    line-height: 1.85;
    font-size: 16px;
    margin: 0 0 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section a {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.policy-list {
    margin: 14px 0 0;
    padding-left: 0;
    list-style: none;
    color: var(--text);
    line-height: 1.8;
    display: grid;
    gap: 10px;
}
.policy-list li {
    position: relative;
    margin: 0;
    padding: 10px 14px 10px 36px;
    background: rgba(21, 117, 187, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(21, 117, 187, 0.08);
}
.policy-list li::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 1.05em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.policy-time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.policy-time-card {
    padding: 18px 20px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(21, 117, 187, 0.08) 0%, rgba(21, 117, 187, 0.02) 100%);
    border: 1px solid rgba(21, 117, 187, 0.14);
}
.policy-time-card span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 6px;
}
.policy-time-card strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.1;
}

.policy-summary {
    background: linear-gradient(180deg, #f4f8fc 0%, #eef4fa 100%);
    border: 1px solid rgba(21, 117, 187, 0.16);
    border-left: 4px solid var(--brand);
    border-radius: 18px;
    padding: 28px 30px;
    margin: 0 0 40px;
}
.policy-summary h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-secondary);
    color: var(--navy);
    margin: 0 0 20px;
}
.policy-summary h3 i { color: var(--brand); font-size: 22px; }
.policy-summary ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.policy-summary li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(21, 117, 187, 0.1);
}
.policy-summary li i {
    color: var(--brand);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}
.policy-summary li strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 2px;
}
.policy-summary li span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Bottom contact panel — larger icons & text */
.policy-contact {
    margin-top: 12px;
    padding: 32px 28px 28px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(21, 117, 187, 0.12), transparent 42%),
        linear-gradient(180deg, #122038 0%, #0b1424 100%);
    color: #fff;
}
.policy-contact-intro { margin-bottom: 24px; }
.policy-contact-kicker {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}
.policy-contact h3 {
    margin: 0 0 8px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-size: var(--heading-primary);
    line-height: 1.2;
}
.policy-contact-intro > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 46ch;
}
.policy-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.policy-contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff !important;
    text-decoration: none !important;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.policy-contact-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
    color: #fff !important;
}
.policy-contact-icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--brand-dark);
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.policy-contact-whatsapp .policy-contact-icon {
    color: var(--whatsapp);
}
.policy-contact-copy {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.policy-contact-copy strong {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}
.policy-contact-copy em {
    font-style: normal;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
    word-break: break-word;
}

@media (max-width: 767px) {
    .policy-shell { padding: 28px 20px 24px; border-radius: 18px; }
    .policy-time-grid { grid-template-columns: 1fr; }
    .policy-contact { padding: 26px 18px 20px; }
    .policy-contact-icon { width: 52px; height: 52px; font-size: 22px; }
    .policy-contact-copy em { font-size: 17px; }
}
@media (max-width: 575px) {
    .policy-section { padding-bottom: 24px; margin-bottom: 24px; }
    .policy-summary { padding: 22px 18px; }
    .policy-contact-card { padding: 16px; gap: 14px; }
}

/* ==========================================================================
   About page — "Our Vision / Our Priorities" editorial section.
   Scoped entirely to .about-vision; nothing here is shared with other
   sections or pages.
   ========================================================================== */
.about-vision {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #eef3f9;
}
.about-vision .container { position: relative; z-index: 1; }
.about-vision-bgtype {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    font-size: clamp(120px, 20vw, 300px);
    line-height: 1;
    color: rgba(244, 236, 224, 0.035);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}
.about-vision-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
}
.about-vision-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 14px;
}
.about-vision-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.about-vision h2 {
    color: #fff;
    font-size: var(--heading-primary);
    margin: 0;
}
.about-vision-rule {
    display: block;
    width: 64px;
    height: 2px;
    background: var(--gold);
    margin: 22px 0;
}
.about-vision-lead {
    color: rgba(244, 236, 224, 0.72);
    font-size: 15px;
    max-width: 320px;
    margin: 0;
}
.about-vision-statement {
    position: relative;
    padding-top: 8px;
}
.about-vision-quote {
    position: absolute;
    top: -34px;
    left: -8px;
    font-family: "Outfit", sans-serif;
    font-size: 140px;
    line-height: 1;
    color: rgba(21, 117, 187, 0.14);
    pointer-events: none;
    user-select: none;
}
.about-vision-statement p {
    position: relative;
    font-family: "Outfit", sans-serif;
    font-style: italic;
    font-weight: 500;
    font-size: var(--heading-secondary);
    line-height: 1.55;
    color: #f8f3ea;
    margin: 0;
}
.about-vision-priorities-title {
    color: #fff;
    font-size: var(--heading-secondary);
    margin: 0 0 24px;
}
.about-vision-priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.about-vision-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.about-vision-item-inner {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 26px 28px;
    transition: transform 0.3s ease;
}
.about-vision-number {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    letter-spacing: 0.06em;
    color: var(--gold);
    opacity: 0.65;
    flex-shrink: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}
.about-vision-name {
    position: relative;
    font-size: 13.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #eef3f9;
    padding-bottom: 5px;
}
.about-vision-name::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.about-vision-item:hover { background-color: rgba(21, 117, 187, 0.07); }
.about-vision-item:hover .about-vision-item-inner { transform: translateX(4px); }
.about-vision-item:hover .about-vision-number { opacity: 1; color: var(--brand-light); }
.about-vision-item:hover .about-vision-name::after { width: 100%; }

@media (max-width: 991px) {
    .about-vision-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-vision-lead { max-width: none; }
    .about-vision-quote { font-size: 110px; top: -26px; }
    .about-vision-priorities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .about-vision-grid { padding-bottom: 36px; margin-bottom: 36px; }
    .about-vision-rule { margin: 18px 0; }
    .about-vision-quote { font-size: 84px; top: -20px; left: -4px; }
    .about-vision-priorities-grid { grid-template-columns: 1fr; }
    .about-vision-item-inner { padding: 20px 22px; }
}
@media (prefers-reduced-motion: reduce) {
    .about-vision-item-inner { transition: none; }
    .about-vision-item { transition: none; }
    .about-vision-name::after { transition: none; }
    .about-vision-item:hover .about-vision-item-inner { transform: none; }
}
