/* ==========================================================================
   HOTEL ROYAL ONE — theme layer on top of Bootstrap 5.3
   Palette: deep royal indigo + champagne gold, lifted by jewel accents
   (violet, teal, rose) so the site reads executive without feeling grey.
   ========================================================================== */

:root {
    --royal-900: #0f0a26;
    --royal-800: #150f33;
    --royal-700: #211849;
    --royal-600: #2b1b58;
    --violet-500: #6d3fa8;
    --violet-300: #a077e0;

    --gold-600: #b8862a;
    --gold-500: #d4a437;
    --gold-400: #e8be5c;
    --gold-200: #f4e0ac;

    --teal-500: #12b5a5;
    --rose-500: #e0546b;
    --sky-500: #3d8ce0;

    --ink: #211d33;
    --ink-soft: #4a4462;
    --muted: #6f6a88;
    --line: #e7e3f2;
    --paper: #ffffff;
    --sand: #faf8fd;
    --sand-2: #f4f1fa;

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;

    --shadow-sm: 0 2px 10px rgba(21, 15, 51, .06);
    --shadow: 0 14px 40px rgba(21, 15, 51, .10);
    --shadow-lg: 0 28px 70px rgba(21, 15, 51, .18);

    --header-h: 84px;
    --topbar-h: 45px;

    --grad-royal: linear-gradient(125deg, var(--royal-800) 0%, var(--violet-500) 100%);
    --grad-gold: linear-gradient(120deg, var(--gold-600) 0%, var(--gold-400) 55%, var(--gold-500) 100%);
    --grad-jewel: linear-gradient(120deg, var(--violet-500), var(--teal-500));
}

/* ---------- Base ---------- */

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-royal {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: var(--royal-700);
    line-height: 1.2;
}

a { color: var(--violet-500); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-600); }

.skip-link {
    position: absolute; top: .5rem; left: .5rem; z-index: 2000;
    background: var(--royal-800); color: #fff; padding: .6rem 1rem; border-radius: 8px;
}

::selection { background: var(--gold-200); color: var(--royal-800); }

.icon { flex: none; vertical-align: -.18em; }
.icon--xs { width: 15px; height: 15px; }
.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 32px; height: 32px; }

.text-gold { color: var(--gold-600) !important; }
.text-royal { color: var(--royal-600) !important; }
.text-muted-2 { color: var(--muted) !important; }
.bg-sand { background: var(--sand) !important; }
.bg-royal { background: var(--royal-800) !important; }

/* ---------- Buttons ---------- */

.btn {
    font-weight: 700;
    letter-spacing: .01em;
    border-radius: 999px;
    padding: .7rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: none;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn-royal {
    background: var(--grad-royal);
    color: #fff;
    box-shadow: 0 8px 24px rgba(45, 27, 88, .32);
}
.btn-royal:hover, .btn-royal:focus { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(45, 27, 88, .42); }

.btn-gold {
    background: var(--grad-gold);
    color: var(--royal-800);
    box-shadow: 0 8px 24px rgba(184, 134, 42, .32);
}
.btn-gold:hover, .btn-gold:focus { color: var(--royal-900); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(184, 134, 42, .44); }

.btn-outline-royal {
    border: 1.5px solid var(--royal-600);
    color: var(--royal-600);
    background: transparent;
}
.btn-outline-royal:hover { background: var(--royal-600); color: #fff; }

.btn-outline-light-royal {
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(6px);
}
.btn-outline-light-royal:hover { background: #fff; color: var(--royal-700); }

.btn-lg { padding: .9rem 2rem; font-size: 1.02rem; }
.btn-sm { padding: .45rem 1rem; font-size: .86rem; }

/* ---------- Top utility bar ---------- */

.topbar {
    background: var(--royal-900);
    color: #cfc9e6;
    font-size: .82rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(212, 164, 55, .18);
}
.topbar a { color: #cfc9e6; }
.topbar a:hover { color: var(--gold-400); }
.topbar__info { display: flex; align-items: center; gap: .85rem; flex-wrap: wrap; }
.topbar__sep { width: 1px; height: 14px; background: rgba(255, 255, 255, .18); }
.topbar__meta { display: flex; align-items: center; gap: 1rem; }
.topbar__stars { color: var(--gold-400); display: inline-flex; align-items: center; gap: .15rem; }
.topbar__stars .star--on { fill: currentColor; }
.topbar__wa {
    display: inline-flex; align-items: center; gap: .35rem;
    background: rgba(18, 181, 165, .16); color: #7fe3d8 !important;
    padding: .18rem .7rem; border-radius: 999px;
}
.topbar__wa:hover { background: rgba(18, 181, 165, .3); }

/* ---------- Header / nav ---------- */

/* The utility bar and the navbar live inside one positioning context, so the
   two can never overlap each other. Only this wrapper is ever positioned. */
.site-top {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header .navbar { padding: .55rem 0; }

/* On the home page the whole bar floats over the hero until the user scrolls.
   Scrolled state simply lets the default backgrounds reassert themselves. */
body.is-home .site-top {
    position: fixed;
    left: 0; right: 0;
}
body.is-home .site-top:not(.is-stuck) .topbar {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, .16);
}
body.is-home .site-top:not(.is-stuck) .site-header {
    background: transparent;
    border-bottom-color: transparent;
    backdrop-filter: none;
}
body.is-home .site-top:not(.is-stuck) .nav-link,
body.is-home .site-top:not(.is-stuck) .navbar-brand__name { color: #fff; }
body.is-home .site-top:not(.is-stuck) .navbar-brand__sub { color: rgba(255, 255, 255, .72); }
body.is-home .site-top:not(.is-stuck) .navbar-toggler { border-color: rgba(255, 255, 255, .5); }
body.is-home .site-top:not(.is-stuck) .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
body.is-home .site-top.is-stuck .site-header { box-shadow: var(--shadow-sm); }

.navbar-brand { display: flex; align-items: center; gap: .7rem; }
.navbar-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.navbar-brand__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.28rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--royal-700);
}
.navbar-brand__sub {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: .93rem;
    color: var(--ink-soft);
    padding: .5rem .7rem !important;
    position: relative;
    white-space: nowrap; /* "Rooms & Suites" must never wrap to a second line */
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: .7rem; right: .7rem; bottom: .25rem;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--gold-600) !important; }

/* Seven nav items plus a brand and a CTA need the wide breakpoint, so the menu
   collapses to a burger below 1200px rather than 992px. */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: #fff;
        margin-top: .75rem;
        padding: 1rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .navbar-collapse .nav-link { white-space: normal; }
    body.is-home .site-top .navbar-collapse .nav-link { color: var(--ink-soft); }
    body.is-home .site-top .navbar-collapse .nav-link.active { color: var(--gold-600) !important; }
}

/* Once the menu is a burger the bar sits in normal flow and stays solid, so the
   toggler and brand keep their contrast against whatever is behind them. */
@media (max-width: 1199.98px) {
    body.is-home .site-top { position: sticky; }
    body.is-home .site-top .site-header,
    body.is-home .site-top:not(.is-stuck) .site-header {
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(14px);
        border-bottom-color: var(--line);
    }
    body.is-home .site-top:not(.is-stuck) .nav-link,
    body.is-home .site-top:not(.is-stuck) .navbar-brand__name { color: var(--royal-700); }
    body.is-home .site-top:not(.is-stuck) .navbar-brand__sub { color: var(--muted); }
    body.is-home .site-top:not(.is-stuck) .navbar-toggler { border-color: var(--line); }
    body.is-home .site-top:not(.is-stuck) .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833,29,51,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}

/* Between 1200 and 1400px everything fits, but only just — tighten it up. */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-nav .nav-link { font-size: .87rem; padding: .5rem .55rem !important; }
    .navbar-nav .nav-link::after { left: .55rem; right: .55rem; }
    .navbar-brand__name { font-size: 1.1rem; }
    .navbar-brand__sub { font-size: .6rem; letter-spacing: .1em; }
    .site-header .btn-royal { padding: .6rem 1.1rem; font-size: .88rem; }
}

/* ---------- Hero ---------- */

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
}
.hero__slide.is-active { opacity: 1; animation: heroZoom 9s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero__scrim {
    position: absolute; inset: 0;
    background:
        radial-gradient(120% 90% at 15% 25%, rgba(45, 27, 88, .72) 0%, rgba(15, 10, 38, .88) 65%),
        linear-gradient(180deg, rgba(15, 10, 38, .55) 0%, rgba(15, 10, 38, .35) 45%, rgba(15, 10, 38, .92) 100%);
}
.hero__grain {
    position: absolute; inset: 0;
    opacity: .35;
    background-image:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 7px);
}

/* The floating bar is the utility bar plus the navbar, so the hero has to clear
   both — otherwise the eyebrow sits underneath it. */
.hero__inner { position: relative; z-index: 2; padding-top: calc(var(--header-h) + var(--topbar-h) + 2rem); padding-bottom: 9rem; color: #fff; }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .75rem; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
    color: var(--gold-400);
    background: rgba(212, 164, 55, .12);
    border: 1px solid rgba(212, 164, 55, .35);
    padding: .4rem 1.1rem;
    border-radius: 999px;
    margin-bottom: 1.4rem;
}
.hero__title {
    font-size: clamp(2.3rem, 5.6vw, 4.4rem);
    color: #fff;
    margin-bottom: 1.1rem;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .35);
}
.hero__title em { font-style: normal; color: var(--gold-400); }
.hero__subtitle { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255, 255, 255, .82); max-width: 640px; }

.hero__dots { display: flex; gap: .5rem; margin-top: 2.4rem; }
.hero__dot {
    width: 34px; height: 4px; border-radius: 999px; border: none;
    background: rgba(255, 255, 255, .28); padding: 0; cursor: pointer; transition: background .3s ease, width .3s ease;
}
.hero__dot.is-active { background: var(--gold-400); width: 54px; }

.hero__mini {
    display: flex; gap: 2.2rem; flex-wrap: wrap;
    margin-top: 2.6rem; padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__mini div { color: rgba(255, 255, 255, .78); font-size: .84rem; }
.hero__mini strong { display: block; font-size: 1.6rem; color: #fff; font-family: 'Playfair Display', serif; }

/* ---------- Availability search bar ---------- */

.booking-bar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.4rem 1.6rem;
    border-top: 4px solid transparent;
    border-image: var(--grad-gold) 1;
    position: relative;
}
.booking-bar--float { margin-top: -5.5rem; z-index: 5; }
.booking-bar__title {
    font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold-600); margin-bottom: .9rem;
}
.booking-bar label {
    font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: .3rem; display: block;
}
.booking-bar .form-control,
.booking-bar .form-select {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .65rem .8rem;
    font-weight: 600;
    color: var(--ink);
    background-color: var(--sand);
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
    border-color: var(--violet-300);
    box-shadow: 0 0 0 .2rem rgba(109, 63, 168, .12);
    background-color: #fff;
}

/* ---------- Sections ---------- */

.section { padding: 5.5rem 0; }
.section--tight { padding: 3.5rem 0; }

.section-head { max-width: 680px; margin-bottom: 3rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .72rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: .85rem;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--grad-gold); }
.section-head--center .section-eyebrow::after { content: ''; width: 28px; height: 2px; background: var(--grad-gold); }
.section-title { font-size: clamp(1.85rem, 3.2vw, 2.75rem); margin-bottom: .85rem; }
.section-lead { color: var(--muted); font-size: 1.03rem; margin-bottom: 0; }

/* Page banner for interior pages */
.page-banner {
    position: relative;
    padding: 5rem 0 3.4rem;
    background: var(--grad-royal);
    color: #fff;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute; right: -8%; top: -60%;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 164, 55, .28), transparent 65%);
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .5rem; }
.page-banner p { color: rgba(255, 255, 255, .78); margin-bottom: 0; max-width: 620px; }
.page-banner .breadcrumb { --bs-breadcrumb-divider-color: rgba(255, 255, 255, .4); margin-bottom: .9rem; }
.page-banner .breadcrumb a { color: var(--gold-400); }
.page-banner .breadcrumb-item.active { color: rgba(255, 255, 255, .65); }

/* ---------- Media panels (photo or generated placeholder) ---------- */

.media-panel {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--royal-700);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.media-panel--generated::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 12px);
}
.media-panel__icon {
    position: relative; z-index: 2;
    color: rgba(255, 255, 255, .55);
    display: grid; place-items: center;
    width: 84px; height: 84px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}
.media-panel__label {
    position: absolute; bottom: .9rem; left: 0; right: 0; z-index: 2;
    text-align: center;
    font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
    color: rgba(255, 255, 255, .6);
    padding: 0 1rem;
}

/* ---------- Welcome collage ---------- */

.collage {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, 165px);
    gap: 1rem;
    position: relative;
}
.collage__main { grid-row: span 2; border-radius: var(--radius-lg); }
.collage__side { border-radius: var(--radius); }
.collage .media-panel__icon { width: 62px; height: 62px; }
.collage__stamp {
    position: absolute;
    left: 52%; bottom: -26px; transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: .85rem 1.3rem;
    text-align: center;
    color: var(--gold-600);
    border: 1px solid var(--line);
}
.collage__stamp strong { display: block; font-family: 'Playfair Display', serif; color: var(--royal-700); font-size: 1.05rem; }
.collage__stamp small { color: var(--muted); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 575.98px) {
    .collage { grid-template-rows: repeat(2, 130px); }
}

/* ---------- Room cards ---------- */

.room-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.room-card__media { height: 240px; }
.room-card:hover .room-card__media { filter: saturate(1.08); }
.room-card__badge {
    position: absolute; top: 1rem; left: 1rem; z-index: 3;
    background: var(--grad-gold); color: var(--royal-800);
    font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    padding: .34rem .85rem; border-radius: 999px;
    box-shadow: 0 6px 18px rgba(184, 134, 42, .4);
}
.room-card__price {
    position: absolute; bottom: 1rem; right: 1rem; z-index: 3;
    background: rgba(15, 10, 38, .78);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: .45rem .85rem;
    text-align: right;
    border: 1px solid rgba(255, 255, 255, .14);
}
.room-card__price strong { display: block; font-size: 1.12rem; color: var(--gold-400); font-family: 'Playfair Display', serif; }
.room-card__price small { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }

.room-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.room-card__title { font-size: 1.35rem; margin-bottom: .5rem; }
.room-card__title a { color: inherit; }
.room-card__title a:hover { color: var(--gold-600); }
.room-card__desc { color: var(--muted); font-size: .93rem; flex: 1; }

.room-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.spec-chip {
    display: inline-flex; align-items: center; gap: .35rem;
    font-size: .78rem; font-weight: 600;
    color: var(--ink-soft);
    background: var(--sand-2);
    border: 1px solid var(--line);
    padding: .3rem .7rem;
    border-radius: 999px;
}
.spec-chip .icon { color: var(--violet-500); }

.room-card__foot {
    display: flex; align-items: center; justify-content: space-between; gap: .75rem;
    padding-top: 1rem; border-top: 1px dashed var(--line);
}

.availability-pill {
    font-size: .76rem; font-weight: 800; letter-spacing: .06em;
    padding: .3rem .8rem; border-radius: 999px;
}
.availability-pill--ok { background: rgba(18, 181, 165, .12); color: #0b7c71; }
.availability-pill--low { background: rgba(212, 164, 55, .16); color: var(--gold-600); }
.availability-pill--none { background: rgba(224, 84, 107, .12); color: #b33049; }

/* ---------- Room detail ---------- */

.room-hero { height: 420px; border-radius: var(--radius-lg); }
.room-thumb { height: 110px; border-radius: var(--radius-sm); }

.spec-box {
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    height: 100%;
    color: var(--violet-500);
}
.spec-box small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; margin-top: .5rem; }
.spec-box strong { display: block; color: var(--royal-700); font-size: .96rem; font-weight: 700; }

.rich-text p { color: var(--ink-soft); margin-bottom: 1rem; }
.rich-text p:last-child { margin-bottom: 0; }

.policy-panel {
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.policy-panel h3 { font-size: 1.15rem; margin-bottom: 1.1rem; color: var(--royal-700); }
.policy-panel h3 .icon { color: var(--gold-600); }
.policy-panel strong { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.policy-panel span { color: var(--ink); font-weight: 600; font-size: .94rem; }

@media (max-width: 767.98px) {
    .room-hero { height: 260px; }
}

/* ---------- Feature / amenity tiles ---------- */

.feature-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    position: relative;
    overflow: hidden;
}
.feature-tile::before {
    content: '';
    position: absolute; inset: 0 0 auto 0; height: 3px;
    background: var(--grad-jewel);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}
.feature-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-tile:hover::before { transform: scaleX(1); }
.feature-tile__icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center;
    background: var(--grad-royal);
    color: var(--gold-400);
    margin-bottom: 1.1rem;
    box-shadow: 0 10px 24px rgba(45, 27, 88, .22);
}
.feature-tile h3 { font-size: 1.1rem; margin-bottom: .45rem; }
.feature-tile p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

/* alternating accent colours keep the grid colourful rather than uniform */
.feature-tile:nth-child(6n+2) .feature-tile__icon { background: linear-gradient(125deg, #0d3b52, var(--teal-500)); color: #d6fff9; }
.feature-tile:nth-child(6n+3) .feature-tile__icon { background: linear-gradient(125deg, #4a1230, var(--rose-500)); color: #ffe1e7; }
.feature-tile:nth-child(6n+4) .feature-tile__icon { background: linear-gradient(125deg, #3a2708, var(--gold-500)); color: #fff5dc; }
.feature-tile:nth-child(6n+5) .feature-tile__icon { background: linear-gradient(125deg, #0d2b4e, var(--sky-500)); color: #dceeff; }

/* ---------- Amenity list (inside room detail) ---------- */

.amenity-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .7rem; }
.amenity-list__item {
    display: flex; align-items: center; gap: .65rem;
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .65rem .85rem;
    font-size: .9rem; font-weight: 600; color: var(--ink-soft);
}
.amenity-list__item .icon { color: var(--gold-600); }

/* ---------- Stats strip ---------- */

.stats-strip {
    background: var(--grad-royal);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.6rem 2rem;
    position: relative;
    overflow: hidden;
}
.stats-strip::after {
    content: '';
    position: absolute; left: -6%; bottom: -70%;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 164, 55, .22), transparent 70%);
}
.stat { text-align: center; position: relative; z-index: 2; }
.stat__value {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.4vw, 2.9rem);
    color: var(--gold-400);
    line-height: 1;
}
.stat__label {
    font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255, 255, 255, .7); margin-top: .55rem;
}

/* ---------- Offers ---------- */

.offer-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: #fff;
    min-height: 320px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.9rem;
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-card__bg { position: absolute; inset: 0; }
.offer-card__bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15, 10, 38, .15) 0%, rgba(15, 10, 38, .88) 100%);
}
.offer-card__content { position: relative; z-index: 2; }
.offer-card h3 { color: #fff; font-size: 1.45rem; margin-bottom: .5rem; }
.offer-card p { color: rgba(255, 255, 255, .8); font-size: .92rem; }
.offer-card__ribbon {
    position: absolute; top: 1.2rem; right: 1.2rem; z-index: 3;
    background: var(--grad-gold); color: var(--royal-800);
    font-weight: 800; font-size: .95rem;
    border-radius: 50%;
    width: 66px; height: 66px;
    display: grid; place-items: center; text-align: center; line-height: 1.05;
    box-shadow: 0 10px 26px rgba(184, 134, 42, .45);
}
.offer-card__ribbon span { font-size: .58rem; display: block; letter-spacing: .08em; }
.promo-code {
    display: inline-flex; align-items: center; gap: .45rem;
    font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
    font-weight: 700; letter-spacing: .12em;
    background: rgba(255, 255, 255, .14);
    border: 1px dashed rgba(255, 255, 255, .45);
    padding: .32rem .8rem; border-radius: 8px;
    font-size: .82rem;
}

/* ---------- Testimonials ---------- */

.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.9rem;
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: .2rem; right: 1.4rem;
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem; line-height: 1;
    color: var(--sand-2);
}
.testimonial-card__msg { position: relative; color: var(--ink-soft); font-size: .96rem; }
.testimonial-card__who { display: flex; align-items: center; gap: .85rem; margin-top: 1.3rem; }
.testimonial-card__who strong { display: block; color: var(--royal-700); font-size: .96rem; }
.testimonial-card__who small { color: var(--muted); }

.avatar { border-radius: 50%; object-fit: cover; flex: none; }
.avatar--fallback {
    display: grid; place-items: center;
    background: var(--grad-royal);
    color: var(--gold-400);
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.stars { display: inline-flex; gap: .1rem; color: var(--line); }
.stars .star--on { color: var(--gold-500); }
.stars .star--on svg { fill: currentColor; }

/* ---------- Gallery ---------- */

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 230px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item .media-panel { position: absolute; inset: 0; }
.gallery-item__cap {
    position: absolute; inset: auto 0 0 0; z-index: 3;
    padding: 2.4rem 1rem .9rem;
    background: linear-gradient(180deg, transparent, rgba(15, 10, 38, .85));
    color: #fff; font-size: .88rem; font-weight: 600;
}
.gallery-item__cat {
    display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--gold-400); font-weight: 800;
}
.gallery-item--tall { grid-row: span 2; height: 100%; min-height: 476px; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.gallery-filter {
    border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
    border-radius: 999px; padding: .45rem 1.15rem; font-size: .86rem; font-weight: 700;
    transition: all .2s ease; cursor: pointer;
}
.gallery-filter:hover { border-color: var(--violet-300); color: var(--violet-500); }
.gallery-filter.is-active { background: var(--grad-royal); color: #fff; border-color: transparent; }

.lightbox-body .media-panel {
    height: 460px;
    border-radius: var(--radius);
}

/* ---------- Booking flow ---------- */

.summary-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: sticky;
    top: 110px;
}
.summary-card__head { background: var(--grad-royal); color: #fff; padding: 1.3rem 1.5rem; }
.summary-card__head h3 { color: #fff; font-size: 1.15rem; margin-bottom: .15rem; }
.summary-card__head small { color: rgba(255, 255, 255, .7); }
.summary-card__body { padding: 1.4rem 1.5rem; }
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; font-size: .93rem; }
.summary-row span:first-child { color: var(--muted); }
.summary-row span:last-child { font-weight: 700; color: var(--ink); }
.summary-total {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-top: .9rem; padding-top: .9rem; border-top: 2px solid var(--line);
}
.summary-total span { color: var(--muted); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; }
.summary-total strong { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--royal-600); }

.summary-media { height: 170px; }
.promo-box .form-control { border-radius: var(--radius-sm) 0 0 var(--radius-sm); background: var(--sand); border: 1px solid var(--line); }
.promo-box .btn { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.form-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.form-panel .form-label { font-weight: 700; font-size: .84rem; color: var(--ink-soft); margin-bottom: .35rem; }
.form-panel .form-control,
.form-panel .form-select,
.form-panel textarea {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .7rem .9rem;
    background: var(--sand);
}
.form-panel .form-control:focus,
.form-panel .form-select:focus {
    border-color: var(--violet-300);
    box-shadow: 0 0 0 .2rem rgba(109, 63, 168, .12);
    background: #fff;
}

.step-rail { display: flex; align-items: center; gap: .6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.step-rail__item {
    display: flex; align-items: center; gap: .55rem;
    font-size: .84rem; font-weight: 700; color: var(--muted);
}
.step-rail__num {
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--sand-2); color: var(--muted);
    font-size: .8rem; border: 1px solid var(--line);
}
.step-rail__item.is-active { color: var(--royal-600); }
.step-rail__item.is-active .step-rail__num { background: var(--grad-royal); color: #fff; border-color: transparent; }
.step-rail__item.is-done .step-rail__num { background: var(--teal-500); color: #fff; border-color: transparent; }
.step-rail__line { width: 34px; height: 2px; background: var(--line); }

.confirm-hero {
    background: var(--grad-royal);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.confirm-hero::after {
    content: '';
    position: absolute; inset: auto -10% -60% auto;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(18, 181, 165, .3), transparent 70%);
}
.confirm-hero h1 { color: #fff; }
.confirm-ref {
    display: inline-block;
    font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
    font-size: 1.5rem; font-weight: 800; letter-spacing: .2em;
    background: rgba(255, 255, 255, .12);
    border: 1px dashed var(--gold-400);
    color: var(--gold-400);
    padding: .7rem 1.6rem; border-radius: 12px;
    margin: 1.2rem 0;
    position: relative; z-index: 2;
}

/* ---------- Contact / misc ---------- */

.info-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.5rem; height: 100%; text-align: center;
}
.info-card__icon {
    width: 52px; height: 52px; border-radius: 15px; margin: 0 auto 1rem;
    display: grid; place-items: center;
    background: var(--grad-gold); color: var(--royal-800);
}
.info-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.info-card a, .info-card p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.map-fallback {
    min-height: 340px; display: grid; place-items: center; text-align: center;
    background: var(--grad-royal); color: rgba(255, 255, 255, .8); padding: 2rem;
}

.accordion-royal .accordion-item { border: 1px solid var(--line); border-radius: var(--radius) !important; margin-bottom: .8rem; overflow: hidden; }
.accordion-royal .accordion-button {
    font-weight: 700; color: var(--royal-700); background: #fff; padding: 1.1rem 1.3rem;
    font-size: 1rem;
}
.accordion-royal .accordion-button:not(.collapsed) { background: var(--sand); color: var(--gold-600); box-shadow: none; }
.accordion-royal .accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(109, 63, 168, .12); }
.accordion-royal .accordion-body { color: var(--muted); padding: 0 1.3rem 1.3rem; }

.cta-band {
    background: var(--grad-royal);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-band::after {
    content: '';
    position: absolute; right: -5%; top: -80%;
    width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 164, 55, .25), transparent 70%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .78); margin-bottom: 0; }
.cta-band > * { position: relative; z-index: 2; }

.alert { border-radius: var(--radius-sm); border: none; font-weight: 600; }
.alert-success { background: rgba(18, 181, 165, .12); color: #0b6f66; }
.alert-danger { background: rgba(224, 84, 107, .12); color: #a92e46; }
.alert-warning { background: rgba(212, 164, 55, .14); color: #8a6413; }
.alert-info { background: rgba(61, 140, 224, .12); color: #245c96; }

.divider-gold { width: 62px; height: 3px; background: var(--grad-gold); border-radius: 999px; }

/* ---------- Footer ---------- */

.site-footer {
    background: var(--royal-900);
    color: #b9b3d2;
    padding: 4.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.site-footer__glow {
    position: absolute; left: 50%; top: -220px; transform: translateX(-50%);
    width: 900px; height: 420px;
    background: radial-gradient(ellipse, rgba(109, 63, 168, .35), transparent 65%);
}
.footer-brand { display: flex; align-items: center; gap: .8rem; }
.footer-brand strong { display: block; font-family: 'Playfair Display', serif; color: #fff; font-size: 1.2rem; letter-spacing: .04em; }
.footer-brand small { color: var(--gold-400); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-text { color: #9b95b8; font-size: .9rem; }

.footer-heading {
    color: #fff; font-family: 'Manrope', sans-serif; font-weight: 800;
    font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #b9b3d2; font-size: .92rem; }
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .8rem; font-size: .9rem; color: #b9b3d2; }
.footer-contact .icon { color: var(--gold-500); margin-top: .25rem; }
.footer-contact a { color: #b9b3d2; }
.footer-contact a:hover { color: var(--gold-400); }

.footer-social { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.footer-social a {
    font-size: .76rem; font-weight: 700; letter-spacing: .06em;
    border: 1px solid rgba(255, 255, 255, .16);
    color: #b9b3d2; padding: .35rem .9rem; border-radius: 999px;
}
.footer-social a:hover { border-color: var(--gold-500); color: var(--gold-400); }

.footer-subscribe { margin-top: 1.6rem; }
.footer-subscribe .form-control {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff; border-radius: 999px 0 0 999px; padding-left: 1.1rem;
}
.footer-subscribe .form-control::placeholder { color: #7d7799; }
.footer-subscribe .form-control:focus { background: rgba(255, 255, 255, .1); border-color: var(--gold-500); box-shadow: none; color: #fff; }
.footer-subscribe .btn { border-radius: 0 999px 999px 0; }
.footer-subscribe__ok { display: block; color: var(--teal-500); margin-top: .5rem; font-size: .82rem; }

.site-footer__bottom {
    margin-top: 3rem; padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, .09);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
    font-size: .82rem; color: #7d7799;
}

/* ---------- Floating actions ---------- */

.floating-wa {
    position: fixed; right: 20px; bottom: 20px; z-index: 1040;
    width: 54px; height: 54px; border-radius: 50%;
    display: grid; place-items: center;
    background: linear-gradient(135deg, #12b5a5, #0a8f81);
    color: #fff;
    box-shadow: 0 12px 30px rgba(10, 143, 129, .45);
    transition: transform .25s ease;
}
.floating-wa:hover { transform: scale(1.08); color: #fff; }

.back-to-top {
    position: fixed; right: 20px; bottom: 86px; z-index: 1040;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff; color: var(--royal-600);
    font-size: 1.1rem; font-weight: 700;
    box-shadow: var(--shadow-sm);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ---------- Scroll reveal ---------- */

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

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero__slide.is-active { animation: none; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 991.98px) {
    .section { padding: 3.75rem 0; }
    .hero { min-height: 90vh; }
    .hero__inner { padding-top: 7rem; padding-bottom: 6rem; }
    .booking-bar--float { margin-top: -3rem; }
    .summary-card { position: static; }
    .gallery-item--tall { grid-row: span 1; min-height: 230px; }
    .hero__inner { padding-top: 3rem; }
}

@media (max-width: 575.98px) {
    .booking-bar { padding: 1.1rem; }
    .cta-band, .stats-strip, .confirm-hero { padding: 2rem 1.25rem; }
    .site-footer__bottom { flex-direction: column; }
    .hero__mini { gap: 1.4rem; }
}

@media print {
    .site-header, .topbar, .site-footer, .floating-wa, .back-to-top, .no-print { display: none !important; }
    body { background: #fff; }
}
