:root {
    --navy: #152033;
    --navy-soft: #1d2b44;
    --gold: #c4a574;
    --gold-dark: #a88754;
    --ivory: #f6f1e8;
    --paper: #fffdf9;
    --text: #2b2b2b;
    --muted: #6b675f;
    --line: rgba(196, 165, 116, 0.28);
    --header-h: 84px;
}

* { 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);
    line-height: 1.7;
}
body.lightbox-open { overflow: hidden; }
h1, h2, h3, h4, .display {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.01em;
}
img, video { max-width: 100%; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { color: var(--navy); }
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.btn-gold, .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    transition: 0.25s ease;
}
.btn-gold {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy) !important;
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff !important; }
.btn-outline-gold {
    border: 1px solid rgba(255,255,255,0.7);
    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: 1px solid var(--navy);
    color: var(--navy) !important;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: 0.25s ease;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff !important; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; width: 100%; }
.header-top {
    background: var(--navy);
    color: #efe6d6;
    font-size: 13px;
    padding: 8px 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: #efe6d6;
    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(--gold); transform: translateX(2px); }
.header-top a:hover i { transform: scale(1.12); }
.header-top .header-social { flex-shrink: 0; }
.header-whatsapp { color: var(--gold) !important; }
.header-social { display: flex; align-items: center; gap: 8px; }
.header-social a, .header-social span.social-disabled {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(196,165,116,0.4);
    display: grid; place-items: center;
    color: var(--gold) !important;
    font-size: 13px;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.header-social a:hover {
    background: var(--gold);
    color: var(--navy) !important;
    border-color: var(--gold);
    transform: translateY(-2px);
}
.header-social span.social-disabled {
    opacity: 0.4;
    cursor: default;
}
.header-social-desktop { margin-left: 4px; padding-left: 18px; border-left: 1px solid rgba(196,165,116,0.3); }
.header-social-mobile {
    justify-content: center;
    gap: 12px;
    margin: 18px 0 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(196,165,116,0.18);
}
.header-social-mobile a, .header-social-mobile span.social-disabled { color: #efe6d6 !important; border-color: rgba(255,255,255,0.25); }
.header-social-mobile a:hover { background: var(--gold); color: var(--navy) !important; }
.header-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.site-nav {
    background: rgba(21, 32, 51, 0.96);
    padding: 10px 0;
}
.navbar-brand img { height: 52px; width: auto; }
.site-nav .nav-link {
    color: #f3eadc !important;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px !important;
}
.site-nav .nav-link.active, .site-nav .nav-link:hover { color: var(--gold) !important; }
.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 transparent overlay header */
body.is-home .site-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: transparent;
}
body.is-home .site-header-overlay .site-nav {
    background: transparent;
    background-image: linear-gradient(180deg, rgba(12,18,28,0.55) 0%, rgba(12,18,28,0.12) 70%, rgba(12,18,28,0) 100%);
    padding: 18px 0;
}
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.82);
    backdrop-filter: blur(10px);
}
body.is-home .site-header-overlay {
    position: fixed;
}
@media (max-width: 991px) {
    body.is-home #mainNav {
        background: rgba(12, 18, 28, 0.94);
        margin-top: 10px;
        border-radius: 14px;
        padding: 12px 8px 16px;
    }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    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.55) 0%, rgba(12,18,28,0.28) 42%, rgba(12,18,28,0.12) 70%, rgba(12,18,28,0.18) 100%),
        linear-gradient(180deg, rgba(12,18,28,0.22) 0%, rgba(12,18,28,0.08) 38%, rgba(12,18,28,0.42) 100%);
}
@media (max-width: 767px) {
    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(12,18,28,0.28) 0%, rgba(12,18,28,0.18) 35%, rgba(12,18,28,0.62) 100%);
    }
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 760px;
    padding: calc(var(--header-h) + 48px) 0 176px;
}
.eyebrow {
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 12px;
}
.hero-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(48px, 8vw, 88px);
    line-height: 0.95;
    margin: 0 0 14px;
    font-weight: 600;
}
.hero-tagline {
    font-size: clamp(18px, 2.4vw, 26px);
    max-width: 520px;
    color: #f4ece0;
    margin-bottom: 10px;
    font-weight: 300;
}
.hero-support {
    font-size: 15px;
    max-width: 480px;
    color: rgba(244, 236, 224, 0.82);
    margin-bottom: 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
/* The enquiry card overlaps the hero's bottom edge by 42px (.enquiry-bar's
   negative margin). Anchor the arrow well above that overlap so it always
   sits inside the hero with a clear gap above the form, on every breakpoint. */
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 66px;
    transform: translateX(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    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: 84px 0; }
.section-tight { padding: 72px 0; }
.section-compact { padding: 48px 0; }
.section-ivory { background: var(--ivory); }
.section-head { margin-bottom: 36px; }
.section-head h2 { font-size: clamp(32px, 4vw, 52px); margin: 0; }
.section-head p { color: var(--muted); margin: 10px auto 0; max-width: 560px; }
.page-hero {
    background: var(--navy) center/cover no-repeat;
    color: #fff;
    padding: 120px 0 70px;
    position: relative;
}
.page-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(12,18,28,0.55);
}
.page-hero .container { position: relative; z-index: 1; }

.enquiry-bar { margin-top: -42px; position: relative; z-index: 4; }
#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;
}
.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); }

.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(196,165,116,0.12);
    border-color: var(--gold);
    color: var(--navy);
}
.filter-btn.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.filter-btn.active:hover { background: var(--gold-dark); color: #fff; border-color: var(--gold-dark); }

.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: clamp(26px, 2.4vw, 34px);
    line-height: 1.15;
    margin: 0 0 12px;
}
.room-kicker {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin: 0 0 8px;
}
.room-card-desc { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.room-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 13px;
}
.room-facts li {
    position: relative;
    padding-left: 0;
}
.room-facts li:not(:last-child)::after {
    content: "·";
    margin-left: 14px;
    color: var(--gold);
}
.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(--gold); color: var(--navy); }
.badge-soft { background: rgba(255,255,255,0.9); 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(196,165,116,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(196,165,116,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: "Cormorant Garamond", serif; font-size: 24px; }
.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(196,165,116,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.1) rotate(-6deg);
    background: var(--gold);
    color: var(--navy);
}

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    min-height: 180px;
    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: 220px;
    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; }
.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(196,165,116,0.14);
    color: var(--gold-dark);
}
.why-point h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    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(196,165,116,0.5);
}
.contact-strip-item i {
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(196,165,116,0.14);
    color: var(--gold-dark);
    flex-shrink: 0;
    transition: background 0.25s ease, color 0.25s ease;
}
.contact-strip-item:hover i { background: var(--gold); color: var(--navy); }
.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: 14px;
    margin-top: 2px;
    transition: color 0.22s ease;
}
.contact-strip-item a:hover { color: var(--gold-dark); }
.contact-info-list { display: grid; gap: 14px; margin-top: 20px; }
.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: "Cormorant Garamond", serif;
    font-size: 26px;
    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;
}
.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 {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(12,18,28,0.6);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 999px;
}
.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, #152033 0%, #243552 100%);
    color: #fff;
    border-radius: 22px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.site-footer {
    background: #121a28;
    color: #efe6d6;
    padding: 72px 0 24px;
}
.site-footer-premium { background: #121a28; }
.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(196,165,116,0.18);
}
.footer-logo { height: 56px; margin-bottom: 18px; }
.footer-brand p { color: rgba(239,230,214,0.78); max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a, .footer-social span.social-disabled {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(196,165,116,0.35);
    display: grid; place-items: center;
    color: var(--gold) !important;
    font-size: 15px;
    transition: 0.25s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy) !important; }
.footer-social span.social-disabled { opacity: 0.4; cursor: default; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links a, .site-footer a { color: #efe6d6; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}
.site-footer h5 {
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
    font-family: "Outfit", sans-serif;
}
.footer-plan p { color: rgba(239,230,214,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(239,230,214,0.7);
}
.footer-bottom a { margin-left: 14px; color: rgba(239,230,214,0.7); }
.footer-bottom a:hover { color: var(--gold); }

/* 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: transform 0.2s ease, box-shadow 0.2s ease;
}
.float-btn:hover { transform: translateY(-3px) scale(1.03); color: #fff !important; }
.float-btn i { font-size: 24px; }
.float-label {
    position: absolute;
    bottom: calc(100% + 8px);
    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: 0.2s ease;
}
.float-btn:hover .float-label,
.float-btn:focus-visible .float-label { opacity: 1; }
.float-whatsapp { left: 18px; background: #25d366; }
.float-book { right: 18px; background: var(--gold); color: var(--navy) !important; }
.float-book i { color: var(--navy); }

.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: #efe6d6;
    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%); }
@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: clamp(28px, 3vw, 42px); 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: clamp(32px, 4vw, 48px); 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(196,165,116,0.5);
}
.pillar-card h3, .choose-card h3, .guide-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px; 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: "Cormorant Garamond", serif;
    font-size: 32px; margin: 0 0 10px; line-height: 1.15;
}
.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(196,165,116,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: "Cormorant Garamond", serif; font-size: 22px; margin: 0; }

.destination-modal-panel-lg { grid-template-columns: 1fr 1fr; }
.modal-subhead {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px; 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 {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 11px;
    font-weight: 500;
    margin: 0 0 12px;
}
.rd-eyebrow-center { text-align: center; }
.rd-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.12;
    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: "Cormorant Garamond", 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: "Cormorant Garamond", serif; font-size: clamp(34px, 3.6vw, 50px); line-height: 1.12; color: var(--navy); margin: 0 0 14px; }
.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%; }
}

/* --- Room at a Glance: horizontal editorial fact row, no boxed cards --- */
.rd-glance { padding: 52px 0; margin-top: 60px; background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rd-glance-label { text-align: center; text-transform: uppercase; letter-spacing: 0.24em; font-size: 11px; font-weight: 500; color: var(--gold-dark); margin: 0 0 32px; }
.rd-glance-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; }
.rd-glance-row li { display: flex; align-items: center; gap: 14px; padding: 10px 34px; position: relative; }
.rd-glance-row li:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 32px; background: var(--line);
}
.rd-glance-row i { font-size: 19px; color: var(--gold-dark); }
.rd-glance-row strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 21px; color: var(--navy); line-height: 1.15; }
.rd-glance-row span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 2px; }

/* --- Room Overview: editorial copy + optional secondary image --- */
.rd-story { padding: 84px 0; }
.rd-story-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.rd-story-layout.has-media { grid-template-columns: 1.05fr 0.95fr; }
.rd-story-media img { width: 100%; height: 420px; object-fit: cover; border-radius: 20px; display: block; }

/* --- Amenities: icon-circle grid on cream, no bordered cards --- */
.rd-amenities { padding: 84px 0; background: var(--ivory); }
.rd-amenity-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 24px; }
.rd-amenity-grid li { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.rd-amenity-icon {
    width: 56px; height: 56px; border-radius: 50%;
    display: grid; place-items: center;
    background: #fff; border: 1px solid var(--line);
    color: var(--gold-dark); font-size: 20px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.rd-amenity-grid li:hover .rd-amenity-icon { background: var(--gold); color: var(--navy); transform: translateY(-4px); }
.rd-amenity-name { font-size: 13px; color: var(--navy); }

/* --- Good to Know: accent-rule policy list, not a bordered card --- */
.rd-policies { padding: 84px 0; }
.rd-policies-head { max-width: 560px; margin: 0 auto 40px; text-align: center; }
.rd-policy-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 44px; }
.rd-policy-list li {
    display: flex; gap: 14px; align-items: flex-start;
    padding-left: 18px; border-left: 2px solid rgba(196,165,116,0.35);
    transition: border-color 0.25s ease;
}
.rd-policy-list li:hover { border-left-color: var(--gold); }
.rd-policy-list i { color: var(--gold-dark); font-size: 16px; margin-top: 2px; }
.rd-policy-list span { font-size: 14.5px; color: var(--text); line-height: 1.6; }

/* --- Final CTA: warm cream/gold conversion band --- */
.rd-final-cta { padding: 72px 0; background: linear-gradient(135deg, #f3ead9 0%, #ece0c8 100%); border-top: 1px solid var(--line); }
.rd-final-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.rd-final-cta-copy { max-width: 560px; }
.rd-final-cta .rd-heading { margin: 6px 0 10px; }
.rd-final-cta .rd-body { margin: 0; }
.rd-final-cta .rd-cta-group { margin-top: 0; }
.rd-final-cta .btn-gold, .rd-final-cta .btn-outline-dark { flex: 0 0 auto; padding: 15px 26px; }

@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-story-layout.has-media { grid-template-columns: 1fr; }
    .rd-story-media { order: -1; }
    .rd-story-media img { height: 280px; }
    .rd-amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .rd-glance-row { justify-content: flex-start; }
    .rd-glance-row li { padding: 8px 20px 8px 0; }
    .rd-glance-row li::after { display: none; }
    .rd-policy-list { grid-template-columns: 1fr; }
    .rd-final-cta-inner { flex-direction: column; text-align: center; }
    .rd-final-cta .rd-cta-group { justify-content: center; }
}
@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: 40px 0; margin-top: 40px; }
    .rd-story, .rd-amenities, .rd-policies { padding: 56px 0; }
    .rd-amenity-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
    .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, .place-grid { grid-template-columns: 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; }
    .why-split-media { min-height: 260px; }
    .hero { min-height: 92vh; }
    .hero-content { padding-top: calc(var(--header-h) + 28px); padding-bottom: 150px; }
    .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; }
    .room-card-lg img { aspect-ratio: 16 / 11; }
}
@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 { 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: 140px; }
}

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