:root {
    --rs-paper:      #fdf9f3;
    --rs-paper-warm: #f6ede1;
    --rs-ink:        #1c1812;
    --rs-ink-mute:   #6b6358;
    --rs-line:       #d8cfbd;
    --rs-line-soft:  rgba(28, 24, 18, .08);
    --rs-brand:      #784356;
    --rs-gold:       #c4a052;
}

.rs-room { background: var(--rs-paper); color: var(--rs-ink); font-family: 'Jost', system-ui, sans-serif; line-height: 1.65; }
.rs-room h1, .rs-room h2, .rs-room h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; line-height: 1.15; letter-spacing: -.005em; margin: 0; }

/* HEADER OVERRIDE — burgundy band (white logo visible on light page).
   Same treatment as /rooms landing so cross-page nav feels consistent. */
body:has(.rs-room) .site-header {
    background: rgba(120, 67, 86, 0.96);
    backdrop-filter: blur(10px);
    height: 130px;
}
body:has(.rs-room) .site-logo { top: 50%; }
body:has(.rs-room) .site-header--scrolled { height: 64px; }
body:has(.rs-room) .site-header--scrolled .site-logo { top: 55%; }

/* PAGE TITLE STRIP — hairline frame: gold rules flanking the room name, eyebrow tag beneath */
.rs-room__pagetitle {
    text-align: center;
    padding: clamp(180px, 22vh, 260px) 24px clamp(48px, 6vh, 80px);
    background: var(--rs-paper);
}
.rs-room__pagetitle__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 48px);
    max-width: 1240px;
    margin: 0 auto;
}
.rs-room__pagetitle__hairline {
    flex: 1 1 auto;
    max-width: clamp(80px, 18vw, 280px);
    height: 1px;
    background: var(--rs-gold);
    opacity: .9;
}
.rs-room__pagetitle__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(2.375rem, 5vw, 4.75rem);
    line-height: 1.05;
    color: var(--rs-ink);
    letter-spacing: -.005em;
    white-space: nowrap;
    margin: 0;
    flex: 0 0 auto;
}
.rs-room__pagetitle__tag {
    margin-top: clamp(18px, 2.4vh, 30px);
    font-size: clamp(0.875rem, 1.15vw, 1.0625rem);
    letter-spacing: .45em;
    text-transform: uppercase;
    color: var(--rs-ink-mute);
    text-indent: .45em;
    font-weight: 400;
}
/* Mid tablet — shrink hairlines so long names still fit between them without overflowing */
@media (max-width: 1024px) {
    .rs-room__pagetitle__row { gap: clamp(14px, 2vw, 28px); }
    .rs-room__pagetitle__hairline { max-width: clamp(40px, 8vw, 120px); }
    .rs-room__pagetitle__name { font-size: clamp(2.125rem, 5.5vw, 3.5rem); }
}
/* Phone — allow name to wrap; keep tiny accent hairlines on either side */
@media (max-width: 720px) {
    .rs-room__pagetitle__row { gap: 14px; }
    .rs-room__pagetitle__name { white-space: normal; font-size: clamp(1.875rem, 7.5vw, 2.75rem); }
    .rs-room__pagetitle__hairline { max-width: 32px; flex: 0 0 32px; }
}

/* HERO IMAGE — full-viewport on scroll (Maybourne pattern).
   100dvh handles the iOS Safari / Chrome Android toolbar shrink/grow without jumping content.

   STACKING-CONTEXT NOTE: clip-path on the hero itself was creating a stacking context
   that trapped the position:fixed pinned bar inside the hero block, so any sibling
   section painted on top of it. The clip-path now lives on an inner .rs-room__hero__media
   div (absolute-positioned to fill the hero), keeping the hero itself stacking-context-free
   so the fixed bar can paint above the page sections that follow. */
.rs-room__hero {
    position: relative;
    width: 100%;
    height: 100vh; /* fallback for older browsers */
    height: 100dvh;
    overflow: hidden;
    background: var(--rs-paper);
}
.rs-room__hero__media {
    --hero-clip: 96px;
    position: absolute;
    inset: 0;
    clip-path: inset(0 var(--hero-clip) 0 var(--hero-clip));
    will-change: clip-path;
}
/* On phones drop the inset clip a touch so the reveal feels less aggressive on a smaller canvas */
@media (max-width: 720px) {
    .rs-room__hero__media { --hero-clip: 24px; }
}
.rs-room__hero__media img,
.rs-room__hero img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
}
@media (prefers-reduced-motion: reduce) {
    .rs-room__hero__media { clip-path: none; }
}

/* INTRO BLOCK ────────────────────────────────── */
.rs-room__intro {
    padding: clamp(80px, 12vh, 140px) 24px clamp(60px, 8vh, 100px);
    text-align: center;
}
.rs-room__intro__inner { max-width: 720px; margin: 0 auto; }
.rs-room__eyebrow {
    font-size: 0.6875rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--rs-ink-mute); margin-bottom: 24px;
}
.rs-room__intro__story {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.25rem, 2.2vw, 1.875rem);
    line-height: 1.55;
    color: var(--rs-ink);
    margin-bottom: 36px;
}
.rs-room__intro__rule { width: 60px; height: 1px; background: var(--rs-gold); margin: 0 auto 36px; }
.rs-room__intro__long {
    font-size: 1rem; line-height: 1.85; color: var(--rs-ink-mute);
    max-width: 620px; margin: 0 auto 40px;
}
.rs-room__intro__cta {
    display: inline-block;
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: white;
    background: var(--rs-brand);
    padding: 16px 40px;
    border: 1px solid var(--rs-brand);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.rs-room__intro__cta:hover { background: transparent; color: var(--rs-brand); }
.rs-room__price {
    margin-top: 16px;
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rs-ink-mute);
}

/* GALLERY ────────────────────────────────────── */
/* GALLERY CAROUSEL — Maybourne filmstrip pattern.
   Centred main slide + 2 neighbours peeking at low opacity. */
.rs-room__carousel {
    position: relative;
    padding: clamp(35px, 5vh, 60px) 0 clamp(28px, 4vh, 56px);
    overflow: hidden;
}
.rs-room__carousel__viewport {
    overflow: hidden;
}
.rs-room__carousel__track {
    display: flex;
    gap: clamp(14px, 1.6vw, 24px);
    transition: transform .7s cubic-bezier(.65, 0, .25, 1);
    will-change: transform;
    padding: 0 calc(50% - 30%);
}
.rs-room__carousel__slide {
    /* Pinterest-style: every slide locked to ONE height (matching the landscape
       images natural height at our viewport-width target). Width is driven by
       the images natural aspect — landscapes appear wider, portraits appear
       narrower, all the same height, no beige bars. */
    flex: 0 0 auto;
    height: clamp(280px, 40vw, 800px);
    width: auto;
    margin: 0;
    overflow: hidden;
    background: var(--rs-paper);
    opacity: .62;
    transform: scale(.90);
    transform-origin: center;
    transition: opacity .55s ease, transform .55s cubic-bezier(.65, 0, .25, 1);
    cursor: pointer;
    position: relative;
}
.rs-room__carousel__slide.is-active {
    opacity: 1;
    transform: scale(1.08);
    cursor: default;
    z-index: 1;
}
/* Slide height is fixed; image fills height, width follows natural aspect.
   !important is needed because placeholder-image writes inline width:100%
   height:100% object-fit:cover on the <img>, which would otherwise override
   the natural-width sizing we want here. */
.rs-room__carousel__slide picture { width: auto; height: 100%; display: block; }
.rs-room__carousel__slide img { width: auto !important; height: 100% !important; object-fit: contain !important; display: block; }

.rs-room__carousel__ui {
    display: flex; align-items: center; gap: 24px;
    justify-content: flex-end;
    padding: 24px clamp(24px, 5vw, 80px) 0;
    max-width: 1600px; margin: 0 auto;
}
.rs-room__carousel__counter {
    font-size: 0.8125rem; letter-spacing: .12em; color: var(--rs-ink-mute);
    font-variant-numeric: tabular-nums;
}
.rs-room__carousel__counter b { color: var(--rs-ink); font-weight: 500; }

.rs-room__carousel__btn {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--rs-line);
    color: var(--rs-ink);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 2px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.rs-room__carousel__btn:hover {
    background: var(--rs-ink); color: white; border-color: var(--rs-ink);
}
.rs-room__carousel__btn svg { width: 18px; height: 18px; }

/* Caption / placeholder content overlay on slides */
.rs-room__carousel__slot {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--rs-paper-warm) 0%, #f1e7d6 100%);
    border: 1px dashed rgba(196, 160, 82, .55);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; padding: 24px; text-align: center;
}
.rs-room__carousel__slot::before {
    content: '';
    position: absolute;
    top: 14px; left: 14px; right: 14px; bottom: 14px;
    border: 1px solid rgba(196, 160, 82, .25);
    pointer-events: none;
}
.rs-room__carousel__slot__icon {
    width: 42px; height: 42px; margin-bottom: 18px;
    color: var(--rs-gold); opacity: .7;
}
.rs-room__carousel__slot__icon svg { width: 100%; height: 100%; }
.rs-room__carousel__slot__label {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem); font-style: italic;
    color: var(--rs-ink); margin-bottom: 8px; line-height: 1.2;
}
.rs-room__carousel__slot__hint {
    font-size: 0.5625rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--rs-ink-mute); opacity: .8;
}

@media (max-width: 900px) {
    .rs-room__carousel__slide { flex: 0 0 80%; }
    .rs-room__carousel__track { padding: 0 10%; }
}
@media (max-width: 560px) {
    .rs-room__carousel__slide { flex: 0 0 88%; }
    .rs-room__carousel__track { padding: 0 6%; }
}

/* AT A GLANCE ───────────────────────────────── */
/* ROOM INFO BLOCK — sits between hero + carousel (intro + at-a-glance combined) */
.rs-room__info {
    padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 70px);
    max-width: 1280px;
    margin: 0 auto;
}
.rs-room__info__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: start;
}
@media (max-width: 900px) { .rs-room__info__inner { grid-template-columns: 1fr; gap: 56px; } }
.rs-room__info__head .rs-room__eyebrow { margin-bottom: 12px; }
.rs-room__info__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.625rem, 3.2vw, 2.5rem); font-weight: 300;
    color: var(--rs-ink); line-height: 1.15; margin: 0 0 26px;
}
.rs-room__info__story {
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem); line-height: 2.15;
    color: var(--rs-ink-mute); margin: 0 0 32px;
}
.rs-room__info__bestfor {
    display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
    margin: 4px 0 28px;
}
.rs-room__info__bestfor__label {
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rs-ink-mute, #6b605b);
}
.rs-room__info__bestfor__chips {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
}
.rs-room__info__bestfor__chip {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.0625rem; font-weight: 400;
    color: var(--rs-brand, #784356);
    padding: 2px 12px;
    border: 1px solid var(--rs-brand, #784356);
    border-radius: 999px;
    background: transparent;
}
.rs-room__info__cta-row {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.rs-room__info__cta {
    display: inline-block;
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: white; background: var(--rs-brand);
    padding: 16px 36px;
    border: 1px solid var(--rs-brand);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.rs-room__info__cta:hover { background: transparent; color: var(--rs-brand); }
.rs-room__info__price {
    font-size: 0.6875rem; letter-spacing: .25em; text-transform: uppercase;
    color: var(--rs-ink-mute);
}
.rs-room__info__glance__head { margin-bottom: 22px; }
.rs-room__info__glance__head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 300;
    margin: 4px 0 0;
}
.rs-room__info__glance__table {
    border-top: 1px solid var(--rs-line-soft);
}
.rs-room__info__glance__row {
    display: grid; grid-template-columns: 130px 1fr;
    gap: 24px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rs-line-soft);
    align-items: baseline;
}
.rs-room__info__glance__lbl {
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rs-ink-mute);
}
.rs-room__info__glance__val {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
    color: var(--rs-ink); line-height: 1.4;
}

/* EVERY STAY INCLUDES — full-width 3-column on desktop: large left img + smaller centred middle img + text (Maybourne pattern).
   Two breakpoints below: at 1100px → 2 imgs over text; at 640px → single column stack. */
.rs-room__includes {
    padding: clamp(40px, 8vh, 100px) clamp(18px, 3.5vw, 70px);
    width: 100%; box-sizing: border-box;
    overflow: hidden; /* belt-and-braces: no horizontal overflow can leak out of this section */
}
.rs-room__includes__inner {
    display: grid;
    grid-template-columns: auto auto 1fr;
    column-gap: clamp(14px, 1.6vw, 36px);
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.rs-room__includes__img {
    overflow: hidden;
    background: var(--rs-paper-warm);
    position: relative;
    max-width: 100%;
}
.rs-room__includes__img--large {
    width: clamp(280px, 55vw, 1010px);
    aspect-ratio: 1010 / 1063; /* Maybourne reference: 1010.41 × 1062.99 */
}
.rs-room__includes__img--small {
    width: clamp(200px, 28vw, 503px);
    aspect-ratio: 503 / 619; /* Maybourne reference: 503.34 × 618.96 */
    margin: 0;
}
.rs-room__includes__img img,
.rs-room__includes__img picture { width: 100%; height: 100%; display: block; }
.rs-room__includes__img img { object-fit: cover; }
.rs-room__includes__img--placeholder {
    background: linear-gradient(135deg, var(--rs-paper-warm) 0%, #f1e7d6 100%);
    border: 1px dashed rgba(196, 160, 82, .35);
    display: flex; align-items: center; justify-content: center;
    color: var(--rs-ink-mute);
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1rem; text-align: center; padding: 18px;
    width: 100%; height: 100%;
}
.rs-room__includes__text {
    max-width: 440px;
    justify-self: center;
    align-self: start;
    padding-top: clamp(20px, 4vh, 60px);
}
/* High-specificity selector — beats the global .rs-room h2 { margin: 0 }
   reset higher up in this file, which was silently overriding the
   bottom margin (specificity 1,1 vs 1,0 — the global rule won). */
.rs-room h2.rs-room__includes__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.125rem, 4.2vw, 3.875rem); font-weight: 400;
    line-height: 1.05; margin: 4px 0 clamp(12px, 2vh, 24px); color: var(--rs-gold);
    letter-spacing: -.005em;
}
.rs-room__includes__group { margin-bottom: 24px; }
.rs-room__includes__group__title {
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rs-brand); margin-bottom: 10px;
}
.rs-room__includes__list {
    list-style: none; padding: 0; margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.25rem); line-height: 1.75;
    color: var(--rs-ink); font-weight: 500;
}
.rs-room__includes__list li {
    padding: 9px 0 9px 24px;
    position: relative;
}
.rs-room__includes__list li::before {
    content: '•';
    position: absolute; left: 0; top: 9px;
    color: var(--rs-ink); font-size: 1.125rem; line-height: 1.75;
}

/* TABLET — 2 images side-by-side filling the row, text wraps below (max-width 640px column) */
@media (max-width: 1100px) {
    .rs-room__includes__inner {
        grid-template-columns: 1fr 1fr;
        column-gap: clamp(14px, 2vw, 28px);
        row-gap: clamp(28px, 5vh, 56px);
        align-items: start;
    }
    .rs-room__includes__img--large,
    .rs-room__includes__img--small { width: 100%; }
    .rs-room__includes__img--small { align-self: center; }
    .rs-room__includes__text {
        grid-column: 1 / -1;
        max-width: 640px;
        justify-self: start;
        padding-top: 0;
        margin: 0;
    }
}

/* MOBILE — full stack, images take full width, text below */
@media (max-width: 640px) {
    .rs-room__includes__inner {
        grid-template-columns: 1fr;
        row-gap: clamp(18px, 3vh, 28px);
    }
    .rs-room__includes__img--large,
    .rs-room__includes__img--small {
        width: 100%;
        max-width: 100%;
    }
    .rs-room__includes__text {
        max-width: 100%;
        margin-top: 4px;
    }
}

/* Legacy at-a-glance — kept for backwards compat but unused once info block ships */
.rs-room__glance {
    padding: clamp(80px, 10vh, 120px) 24px;
    background: var(--rs-paper-warm);
    border-top: 1px solid var(--rs-line-soft);
    border-bottom: 1px solid var(--rs-line-soft);
}
.rs-room__glance__inner { max-width: 920px; margin: 0 auto; }
.rs-room__glance__head {
    text-align: center;
    margin-bottom: 56px;
}
.rs-room__glance__head h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 300; }
.rs-room__glance__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 36px 28px;
}
.rs-room__glance__cell { text-align: left; }
.rs-room__glance__lbl {
    font-size: 0.625rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rs-ink-mute); margin-bottom: 8px;
}
.rs-room__glance__val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; color: var(--rs-ink); line-height: 1.4;
}

/* FINER DETAILS (accordion) ─────────────────── */
.rs-room__finer {
    padding: clamp(80px, 10vh, 120px) 24px;
}
.rs-room__finer__inner { max-width: 760px; margin: 0 auto; }
.rs-room__finer__head { text-align: center; margin-bottom: 48px; }
.rs-room__finer__head h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 300; }
.rs-room__finer details {
    border-bottom: 1px solid var(--rs-line);
    padding: 26px 0;
}
.rs-room__finer details:first-of-type { border-top: 1px solid var(--rs-line); }
.rs-room__finer summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Cormorant Garamond', serif; font-size: 1.375rem;
    color: var(--rs-ink);
}
.rs-room__finer summary::-webkit-details-marker { display: none; }
.rs-room__finer summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--rs-gold);
    transition: transform .25s;
    line-height: 1;
}
.rs-room__finer details[open] summary::after { transform: rotate(45deg); }
.rs-room__finer__body {
    margin-top: 22px;
    color: var(--rs-ink-mute);
    line-height: 1.85;
    font-size: 0.9375rem;
}
.rs-room__finer__body ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 36px; }
@media (max-width: 720px) { .rs-room__finer__body ul { columns: 1; } }
.rs-room__finer__body li {
    padding: 4px 0;
    break-inside: avoid;
}

/* PULL QUOTE ────────────────────────────────── */
.rs-room__quote {
    padding: clamp(64px, 8vh, 110px) 24px;
    text-align: center;
    background: var(--rs-paper-warm);
}
.rs-room__quote__rule { width: 40px; height: 1px; background: var(--rs-gold); margin: 0 auto 28px; }
.rs-room__quote__text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.5rem, 3.4vw, 2.25rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--rs-ink);
    max-width: 820px;
    margin: 0 auto 22px;
}
.rs-room__quote__cite {
    font-size: 0.6875rem; letter-spacing: .35em; text-transform: uppercase;
    color: var(--rs-ink-mute);
}
.rs-room__quote__source { color: var(--rs-gold); }

/* Reviews carousel — fade swap; grid-stack so container auto-sizes to the tallest slide
   (prevents long reviews from overflowing and overlapping the prev/next controls below).
   min-height stabilises swap so short reviews don't make the section bounce. */
.rs-room__quote__stage {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    min-height: clamp(140px, 18vh, 200px);
    align-content: center;
}
.rs-room__quote__slide {
    grid-column: 1;
    grid-row: 1;
    opacity: 0; transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none;
    visibility: hidden;
}
.rs-room__quote__slide.is-active { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.rs-room__quote__ui {
    display: flex; align-items: center; justify-content: center; gap: 22px;
    margin-top: clamp(28px, 3.5vh, 44px);
    position: relative; z-index: 2;
}
.rs-room__quote__counter {
    font-size: 0.8125rem; letter-spacing: .12em; color: var(--rs-ink-mute);
    font-variant-numeric: tabular-nums;
}
.rs-room__quote__counter b { color: var(--rs-ink); font-weight: 500; }

/* CLOSING CTA ───────────────────────────────── */
.rs-room__closing {
    padding: clamp(80px, 10vh, 140px) 24px;
    text-align: center;
    border-top: 1px solid var(--rs-line-soft);
}
.rs-room__closing__inner { max-width: 720px; margin: 0 auto; }
.rs-room__closing h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 300; margin-bottom: 28px; }
.rs-room__closing__cta {
    display: inline-block;
    font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase;
    color: white;
    background: var(--rs-brand);
    padding: 18px 44px;
    border: 1px solid var(--rs-brand);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.rs-room__closing__cta:hover { background: transparent; color: var(--rs-brand); }
.rs-room__closing__sub { margin-top: 20px; font-size: 0.6875rem; letter-spacing: .3em; text-transform: uppercase; color: var(--rs-ink-mute); }

/* RELATED ───────────────────────────────────── */
/* ROOMS CAROUSEL — horizontal scroller of other rooms (landscape cards, room-by-room nav) */
.rs-room__related {
    padding: clamp(80px, 12vh, 140px) 0 clamp(70px, 10vh, 120px);
    background: var(--rs-paper);
    border-top: 1px solid var(--rs-line-soft);
    overflow: hidden;
}
.rs-room__related__head {
    text-align: center;
    margin-bottom: 56px;
    padding: 0 24px;
}
.rs-room__related__head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 300;
    margin: 8px 0 0;
}
.rs-room__related__viewport { overflow: hidden; }
.rs-room__related__track {
    display: flex;
    gap: clamp(18px, 2vw, 32px);
    padding: 0 clamp(24px, 5vw, 80px);
    transition: transform .7s cubic-bezier(.65, 0, .25, 1);
    will-change: transform;
}
.rs-room__related__card {
    flex: 0 0 calc((100% - clamp(36px, 4vw, 64px)) / 3);
    display: block; text-decoration: none; color: var(--rs-ink);
}
@media (max-width: 1100px) {
    .rs-room__related__card { flex: 0 0 calc((100% - clamp(18px, 2vw, 32px)) / 2); }
}
@media (max-width: 700px) { .rs-room__related__card { flex: 0 0 86%; } }
.rs-room__related__card__img {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--rs-paper-warm);
    margin-bottom: 18px;
    position: relative;
}
.rs-room__related__card__frames {
    position: absolute; inset: 0;
}
.rs-room__related__card__frame {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
}
.rs-room__related__card__frame.is-active { opacity: 1; }
.rs-room__related__card__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--rs-ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .2s, background .2s, transform .2s;
    z-index: 3;
}
.rs-room__related__card__nav:hover { background: #fff; }
.rs-room__related__card:hover .rs-room__related__card__nav { opacity: 1; }
.rs-room__related__card__nav--prev { left: 10px; }
.rs-room__related__card__nav--next { right: 10px; }
.rs-room__related__card__nav svg { width: 14px; height: 14px; }
@media (max-width: 700px) { .rs-room__related__card__nav { opacity: 1; } }
.rs-room__related__card__img img,
.rs-room__related__card__img picture { width: 100%; height: 100%; display: block; }
.rs-room__related__card__img img {
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.2, 0, .2, 1);
}
.rs-room__related__card:hover .rs-room__related__card__img img { transform: scale(1.05); }
.rs-room__related__card__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.25rem, 1.7vw, 1.625rem);
    color: var(--rs-ink);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.2;
}
.rs-room__related__card__sub {
    font-size: 0.6875rem; letter-spacing: .18em; color: var(--rs-ink-mute);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.rs-room__related__card__find {
    position: relative; display: inline-block;
    overflow: hidden; isolation: isolate;
    color: var(--rs-brand);
    padding: 11px 26px;
    border: 1px solid var(--rs-brand);
    background: transparent;
    font-size: 0.625rem; letter-spacing: .3em; text-transform: uppercase;
    transition: color .4s cubic-bezier(.65, 0, .25, 1);
    text-decoration: none;
}
.rs-room__related__card__find::before {
    content: '';
    position: absolute; top: -20%; bottom: -20%; left: -30%; right: -30%;
    background: var(--rs-brand);
    transform: skewX(-22deg) translateX(-130%);
    transition: transform .6s cubic-bezier(.65, 0, .25, 1);
    z-index: -1;
}
.rs-room__related__card__find:hover { color: white; }
.rs-room__related__card__find:hover::before { transform: skewX(-22deg) translateX(0); }

.rs-room__related__ui {
    display: flex; justify-content: flex-end; gap: 16px;
    padding: 32px clamp(24px, 5vw, 80px) 0;
}
.rs-room__related__btn {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--rs-line);
    color: var(--rs-ink);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 2px;
    transition: background .2s, color .2s;
}
.rs-room__related__btn:hover { background: var(--rs-ink); color: white; border-color: var(--rs-ink); }
.rs-room__related__btn[disabled] { opacity: .3; cursor: default; }
.rs-room__related__btn svg { width: 18px; height: 18px; }

/* STICKY RESERVE LABEL — see also the `position: sticky` rule lower down.
   This block defines: pinned-state corner flip + corner-flip media override. */
/* When docked under the menu the bar hangs DOWN — flip the rounded corners
   to the bottom edge and put the visible border on the bottom instead. */
.rs-room__sticky-wrap.is-pinned .rs-room__sticky {
    border-top: none;
    border-bottom: 1px solid rgba(196, 160, 82, .55);
    border-radius: 0 0 clamp(10px, 1vw, 14px) clamp(10px, 1vw, 14px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .12), 0 2px 6px rgba(0, 0, 0, .04);
}
/* Full-bleed strip variant (≤1020px) keeps it edge-to-edge when pinned too */
@media (max-width: 1020px) {
    .rs-room__sticky-wrap.is-pinned .rs-room__sticky {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }
}
.rs-room__sticky {
    width: calc(82vw + 20px); max-width: 1320px;
    pointer-events: auto;
    background: rgba(246, 237, 225, .97);
    backdrop-filter: blur(14px) saturate(1.05);
    -webkit-backdrop-filter: blur(14px) saturate(1.05);
    border: 1px solid rgba(196, 160, 82, .55);
    border-bottom: none;
    border-radius: clamp(10px, 1vw, 14px) clamp(10px, 1vw, 14px) 0 0;
    padding: clamp(14px, 1.6vh, 20px) clamp(24px, 3vw, 44px);
    display: flex; align-items: center; justify-content: space-between;
    gap: clamp(20px, 2.5vw, 40px);
    box-shadow: 0 -16px 48px rgba(0,0,0,.10);
}
@media (prefers-reduced-motion: reduce) {
    .rs-room__sticky { transition: none; transform: translateY(0); opacity: 1; }
}

/* === RESPONSIVE CASCADE ===
   The bar grows toward 100vw as the viewport shrinks — by ~1000px it becomes
   a full-bleed strip across the bottom of the hero (no side margins, no top corners).
   Type and CTA scale down progressively at each step.

   ≥1380 : standard width (cap at 1320px), full proportions
   1200–1380: bar widens to 94vw, mild type/gap compression
   ≤1200  : bar to 97vw, drop the claim column, type smaller
   ≤1020  : bar to 100vw (FULL BLEED), top corners square, drop summary column
   ≤900   : type tightens further
   ≤820   : mobile launcher takes over (sticky bar hidden entirely)
*/
@media (max-width: 1380px) {
    .rs-room__sticky {
        width: min(94vw, 1320px);
        gap: clamp(16px, 1.9vw, 30px);
        padding: clamp(13px, 1.5vh, 18px) clamp(22px, 2.6vw, 34px);
    }
    .rs-room__sticky__name { font-size: clamp(1.375rem, 2.05vw, 1.625rem); }
    .rs-bp__field__value { font-size: clamp(1.5rem, 2.2vw, 1.875rem); }
    .rs-bp__summary__total { font-size: clamp(1.5rem, 2.2vw, 1.875rem); }
    .rs-bp__summary__label { font-size: 0.71875rem; letter-spacing: .3em; }
    .rs-bp__cta { padding: 13px 24px; font-size: 0.71875rem; letter-spacing: .28em; }
}
@media (max-width: 1200px) {
    .rs-room__sticky__claim { display: none; }
    .rs-room__sticky {
        width: 97vw;
        gap: clamp(14px, 1.7vw, 24px);
        padding: clamp(12px, 1.4vh, 16px) clamp(20px, 2.4vw, 30px);
    }
    .rs-bp__field__value { font-size: clamp(1.375rem, 2.0vw, 1.625rem); }
    .rs-bp__summary__total { font-size: clamp(1.375rem, 2.0vw, 1.625rem); }
    .rs-bp__field { padding: 8px 14px; }
    .rs-bp__summary { padding: 8px 12px; }
    .rs-bp__cta { padding: 12px 22px; font-size: 0.6875rem; }
    .rs-bp__divider { width: 1px; }
    .rs-room__sticky__name { font-size: clamp(1.3125rem, 2.0vw, 1.5rem); }
}
@media (max-width: 1020px) {
    .rs-bp__summary { display: none; }
    .rs-room__sticky {
        width: 100vw;
        max-width: 100vw;
        border-radius: 0;
        border-left: 0; border-right: 0;
        padding: 14px clamp(18px, 2.6vw, 28px);
        gap: clamp(12px, 1.6vw, 20px);
    }
    .rs-bp__field__value { font-size: clamp(1.25rem, 2.0vw, 1.5rem); }
    .rs-room__sticky__name { font-size: clamp(1.25rem, 2.0vw, 1.4375rem); }
}
@media (max-width: 900px) {
    .rs-bp__field__value { font-size: clamp(1.1875rem, 2.2vw, 1.375rem); }
    .rs-room__sticky__name { font-size: clamp(1.1875rem, 2.2vw, 1.375rem); }
    .rs-bp__field__label { font-size: 0.59375rem; letter-spacing: .36em; }
    .rs-bp__cta { padding: 11px 18px; font-size: 0.65625rem; letter-spacing: .26em; }
}
@media (max-width: 820px) {
    /* Mobile: the entire desktop sticky bar is removed from the picture.
       Replaced by a purpose-built launcher button + full-screen sheet flow below. */
    .rs-room__sticky-wrap { display: none; }
    /* Hide the standard burgundy promo banner on this page */
    .pb { display: none !important; }
    /* Visually hide #stickyBookCta but keep it in the DOM so the layout's
       scroll handler still fires `is-visible` on it, which is what lifts the
       text resizer (font-size-toggle) up by 44px when scrolled past 400. */
    .sticky-book-cta { visibility: hidden !important; pointer-events: none !important; }
    /* Reserve bottom space for our launcher (48px) + safe-area */
    main { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}
@media (max-width: 620px) {
    .rs-room__sticky {
        width: calc(100vw - 16px);
        padding: 12px 14px;
        border-radius: clamp(10px, 1vw, 14px) clamp(10px, 1vw, 14px) 0 0;
    }
    .rs-bp__row {
        gap: 0;
        flex-wrap: wrap;
    }
    .rs-bp__field {
        flex: 1 1 calc(50% - 10px);
        align-items: center;
        text-align: center;
        padding: 6px 10px;
    }
    .rs-bp__field__value { font-size: clamp(1.375rem, 7vw, 1.875rem); }
    .rs-bp__divider {
        /* horizontal hairline replaces vertical for stacked layout */
        width: auto;
        height: 1px;
        flex: 1 1 100%;
        background: linear-gradient(to right, transparent, rgba(196, 160, 82, .5) 20%, rgba(196, 160, 82, .5) 80%, transparent);
        margin: 6px 0 4px;
    }
    .rs-bp__cta {
        flex: 1 1 100%;
        justify-content: center;
        padding: 14px 22px;
        margin-top: 4px;
    }
}

/* Sticky bar: 4 columns separated by gold hairlines.
   [ Room Type / ROOM N ]  |  [ Book Direct / Best Rate ]  |  [ CHECK-IN / CHECK-OUT ]  |  [ BOOK ] */
.rs-room__sticky__text,
.rs-room__sticky__claim {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
    padding: 4px clamp(18px, 1.8vw, 26px);
}
.rs-room__sticky__text {
    align-items: flex-start;
    padding-left: 0;
}
.rs-room__sticky__name {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(1.5rem, 2.4vw, 1.875rem);
    color: var(--rs-ink);
    line-height: 1.02;
    letter-spacing: -.005em;
    white-space: nowrap;
}
.rs-room__sticky__room {
    font-family: 'Jost', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: .42em;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--rs-ink-mute);
    font-weight: 500;
    text-indent: .42em;
    line-height: 1;
}

.rs-room__sticky__claim {
    align-items: flex-start;
    border-left: 1px solid rgba(196, 160, 82, .45);
    text-align: left;
}
.rs-room__sticky__claim__line {
    font-family: 'Jost', sans-serif;
    font-size: 0.8125rem;
    letter-spacing: .38em;
    text-transform: uppercase;
    color: var(--rs-brand);
    font-weight: 600;
    text-indent: .38em;
    line-height: 1.05;
    white-space: nowrap;
}
.rs-room__sticky__claim__line:nth-child(2) {
    color: var(--rs-gold);
    font-weight: 500;
}

@media (max-width: 900px) {
    .rs-room__sticky__claim { display: none; }
}
@media (max-width: 720px) {
    .rs-room__sticky__room { display: none; }
}

/* RIGHT: Reserve pill */
.rs-room__sticky__cta {
    position: relative; display: inline-flex; align-items: center; gap: 10px;
    overflow: hidden; isolation: isolate;
    font-size: 0.6875rem; letter-spacing: .32em; text-transform: uppercase;
    color: white;
    background: var(--rs-brand);
    padding: 12px 28px;
    text-decoration: none;
    border: 1px solid var(--rs-brand);
    border-radius: 999px;
    transition: color .4s cubic-bezier(.65, 0, .25, 1);
    flex-shrink: 0;
}
.rs-room__sticky__cta::before {
    content: '';
    position: absolute; top: -20%; bottom: -20%; left: -30%; right: -30%;
    background: var(--rs-paper);
    transform: skewX(-22deg) translateX(-130%);
    transition: transform .6s cubic-bezier(.65, 0, .25, 1);
    z-index: -1;
}
.rs-room__sticky__cta:hover { color: var(--rs-brand); }
.rs-room__sticky__cta:hover::before { transform: skewX(-22deg) translateX(0); }

@media (max-width: 600px) {
    .rs-room__sticky__meta { display: none; }
    .rs-room__sticky { padding: 12px 16px; gap: 14px; width: calc(100vw - 16px); }
}

/* QBook DOM overrides — !important because the widget injects its own stylesheet at runtime.
   Strategy: flatten table/tbody/tr via display:contents, then lay <td>s into a 2-column grid
   that pairs each label above its date input. Submit is absolutely positioned to the bar's right edge. */
.rs-room__sticky #qbook_widget,
.rs-room__sticky #qbook_widget * { box-sizing: border-box; }

/* Flatten the widget's own structural wrappers */
.rs-room__sticky #qbook_widget .qbg_booking_section,
.rs-room__sticky #qbook_widget #qbg_booking_section,
.rs-room__sticky #qbook_widget form,
.rs-room__sticky #qbook_widget table,
.rs-room__sticky #qbook_widget tbody {
    display: contents !important;
    background: transparent !important;
    color: var(--rs-ink) !important;
    font-family: 'Jost', system-ui, sans-serif !important;
}

/* Kill EVERY background colour the widget tries to set */
.rs-room__sticky #qbook_widget [class*="qbg_booking_bg"],
.rs-room__sticky #qbook_widget [class*="qbg_options_bg"] {
    background: transparent !important;
}

/* The <tr> becomes our grid: 3 columns — check-in | check-out | SUBMIT-flush-right.
   grid-auto-flow: column makes <td>s fill TOP-DOWN per column. */
.rs-room__sticky #qbook_widget tr {
    display: grid !important;
    grid-template-columns: 1fr 1fr clamp(180px, 16vw, 240px) !important;
    grid-template-rows: auto 1fr !important;
    grid-auto-flow: column !important;
    width: 100% !important;
    height: 100% !important;
    align-items: stretch !important;
}

/* Each grid cell */
.rs-room__sticky #qbook_widget td {
    display: flex !important;
    align-items: center !important;
    padding: 0 clamp(20px, 2.4vw, 36px) !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    min-width: 0 !important;
}
/* Label cells (rows 1 of each column) — align to bottom, top-padding for breathing room */
.rs-room__sticky #qbook_widget td:nth-of-type(odd):not(:has(input[type="submit"])):not(:has(button[type="submit"])) {
    padding-top: 18px !important;
    padding-bottom: 6px !important;
    align-items: flex-end !important;
}
/* Input cells (rows 2 of each column) — anchor to top so the big date sits flush */
.rs-room__sticky #qbook_widget td:nth-of-type(even):not(:has(input[type="submit"])):not(:has(button[type="submit"])) {
    padding-top: 0 !important;
    padding-bottom: 18px !important;
    align-items: flex-start !important;
}

/* Gold vertical divider between column 1 and column 2 (apply to col2's cells) */
.rs-room__sticky #qbook_widget td:nth-of-type(3),
.rs-room__sticky #qbook_widget td:nth-of-type(4) {
    border-left: 1px solid rgba(196, 160, 82, .35) !important;
}

/* Labels */
.rs-room__sticky #qbook_widget h5,
.rs-room__sticky #qbook_widget h6,
.rs-room__sticky #qbook_widget label {
    font-family: 'Jost', sans-serif !important;
    color: var(--rs-ink-mute) !important;
    font-size: 0.625rem !important;
    letter-spacing: .35em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    text-indent: .35em !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: left !important;
    text-shadow: none !important;
    white-space: nowrap !important;
}

/* BIG editorial date values — italic Cormorant ~36-44px */
.rs-room__sticky #qbook_widget input,
.rs-room__sticky #qbook_widget input[type="text"],
.rs-room__sticky #qbook_widget input[type="number"],
.rs-room__sticky #qbook_widget .qbg_options_customizer_forms input[type="text"],
.rs-room__sticky #qbook_widget .qbg_options_customizer_forms input[type="number"] {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: var(--rs-ink) !important;
    padding: 0 !important;
    font-size: clamp(1.75rem, 2.9vw, 2.5rem) !important;
    line-height: 1.1 !important;
    letter-spacing: -.005em !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    text-align: left !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.rs-room__sticky #qbook_widget input:focus {
    outline: 0 !important;
    color: var(--rs-brand) !important;
}
.rs-room__sticky #qbook_widget input::placeholder {
    color: var(--rs-ink-mute) !important;
    opacity: .55 !important;
    font-style: italic !important;
}

/* Kill chevron icons and dropdown decorations the widget injects */
.rs-room__sticky #qbook_widget img,
.rs-room__sticky #qbook_widget svg,
.rs-room__sticky #qbook_widget .ui-icon,
.rs-room__sticky #qbook_widget [class*="chevron"],
.rs-room__sticky #qbook_widget [class*="arrow"],
.rs-room__sticky #qbook_widget i.fa,
.rs-room__sticky #qbook_widget i[class*="icon"] {
    display: none !important;
}

/* Submit cell — sits in column 3, spans both rows full height, flush to bar edge */
.rs-room__sticky #qbook_widget td:has(input[type="submit"]),
.rs-room__sticky #qbook_widget td:has(button[type="submit"]) {
    grid-column: 3 !important;
    grid-row: 1 / -1 !important;
    align-self: stretch !important;
    justify-self: stretch !important;
    padding: 0 !important;
    background: var(--rs-brand) !important;
    border: 0 !important;
    align-items: stretch !important;
    justify-content: stretch !important;
}
.rs-room__sticky #qbook_widget input[type="submit"],
.rs-room__sticky #qbook_widget .qbg_booking_section input[type="submit"],
.rs-room__sticky #qbook_widget button[type="submit"] {
    background: var(--rs-brand) !important;
    color: #ffffff !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 0.6875rem !important;
    letter-spacing: .32em !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    padding: 0 clamp(18px, 2vw, 28px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    cursor: pointer !important;
    transition: background .25s ease, color .25s ease !important;
    box-shadow: none !important;
    height: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    text-indent: .32em !important;
    text-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
.rs-room__sticky #qbook_widget td:has(input[type="submit"]):hover,
.rs-room__sticky #qbook_widget td:has(button[type="submit"]):hover,
.rs-room__sticky #qbook_widget input[type="submit"]:hover,
.rs-room__sticky #qbook_widget button[type="submit"]:hover {
    background: #5e3344 !important;
}

/* Defensive: hide any extra trailing cells QBook might render after position 5 (promo/info/legal) */
.rs-room__sticky #qbook_widget td:nth-of-type(n+6):not(:has(input[type="submit"])):not(:has(button[type="submit"])) {
    display: none !important;
}

/* Widget loader spinner */
.rs-room__sticky #qbook_widget .qbookLoader {
    min-height: 86px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--rs-ink-mute) !important;
    font-size: 0.6875rem !important;
    letter-spacing: .3em !important;
    text-transform: uppercase !important;
}

/* Mobile — drop the grid, stack each field full-width */
@media (max-width: 820px) {
    .rs-room__sticky__qbook { padding-right: 0 !important; }
    .rs-room__sticky #qbook_widget tr {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: none !important;
    }
    .rs-room__sticky #qbook_widget td {
        width: 100% !important;
        flex: 0 0 auto !important;
        border-left: 0 !important;
        border-bottom: 1px solid rgba(196, 160, 82, .35) !important;
        padding: 14px clamp(18px, 4vw, 28px) !important;
        align-items: flex-start !important;
        flex-direction: column !important;
    }
    .rs-room__sticky #qbook_widget td:nth-of-type(odd):not(:has(input[type="submit"])),
    .rs-room__sticky #qbook_widget td:nth-of-type(even):not(:has(input[type="submit"])) {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
        align-items: flex-start !important;
    }
    .rs-room__sticky #qbook_widget input,
    .rs-room__sticky #qbook_widget input[type="text"] {
        font-size: clamp(1.625rem, 7vw, 2.25rem) !important;
    }
    .rs-room__sticky #qbook_widget td:has(input[type="submit"]) {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        border-bottom: 0 !important;
    }
    .rs-room__sticky #qbook_widget input[type="submit"],
    .rs-room__sticky #qbook_widget button[type="submit"] {
        min-height: 58px !important;
    }
}

/* Date picker popout — renders to <body>, NOT inside the sticky bar.
   Selectors deliberately unscoped so they hit the popout. */
#ui-datepicker-div-qbg.ui-datepicker {
    background: var(--rs-paper, #fdf9f3) !important;
    border: 1px solid #d8cfbd !important;
    border-radius: 6px !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .14) !important;
    padding: 6px !important;
    font-family: 'Jost', sans-serif !important;
    width: 320px !important;
}
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-header-qbg,
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-header {
    background: #f6ede1 !important;
    border-radius: 4px !important;
    padding: 12px 10px !important;
}
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-title,
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-title * {
    color: #1c1812 !important;
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 1.0625rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-prev,
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-next {
    background: transparent !important;
    top: 16px !important;
}
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-prev span,
#ui-datepicker-div-qbg.ui-datepicker .ui-datepicker-next span {
    color: #784356 !important;
    font-family: 'Jost', sans-serif !important;
    letter-spacing: .25em !important;
    font-size: 0.625rem !important;
}
#ui-datepicker-div-qbg.ui-datepicker th {
    color: #6b6358 !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 0.625rem !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
    padding: 8px 0 !important;
}
#ui-datepicker-div-qbg.ui-datepicker td a,
#ui-datepicker-div-qbg.ui-datepicker td span {
    color: #1c1812 !important;
    background: transparent !important;
    border: 0 !important;
    font-family: 'Jost', sans-serif !important;
    font-size: 0.875rem !important;
    text-align: center !important;
    padding: 8px !important;
    border-radius: 4px !important;
    transition: background .15s ease, color .15s ease !important;
}
#ui-datepicker-div-qbg.ui-datepicker td a:hover {
    background: #f6ede1 !important;
    color: #784356 !important;
}
#ui-datepicker-div-qbg.ui-datepicker .ui-state-active,
#ui-datepicker-div-qbg.ui-datepicker .ui-state-highlight {
    background: #784356 !important;
    color: #ffffff !important;
}
#ui-datepicker-div-qbg.ui-datepicker .ui-state-disabled {
    opacity: .3 !important;
}

/* === BOOKING PICKER (Livewire) === */
.rs-bp {
    display: flex; flex-direction: column; align-items: stretch;
    gap: 8px; flex: 1 1 auto; min-width: 0;
    position: relative;
    padding-left: clamp(14px, 1.6vw, 22px);
    border-left: 1px solid rgba(196, 160, 82, .45);
}
.rs-bp__row {
    display: flex; align-items: center;
    gap: clamp(18px, 2vw, 28px);
}
.rs-bp__field {
    background: transparent; border: 0;
    padding: 8px 16px;
    color: var(--rs-ink); cursor: pointer; text-align: left;
    display: flex; flex-direction: column; align-items: flex-start; gap: 5px;
    border-radius: 8px;
    transition: background .2s ease;
}
.rs-bp__field:hover, .rs-bp__field.is-active { background: rgba(196, 160, 82, .12); }
.rs-bp__field__label {
    font-family: 'Jost', sans-serif;
    font-size: 0.625rem; letter-spacing: .42em;
    text-transform: uppercase; color: var(--rs-ink-mute);
    font-weight: 500; text-indent: .42em;
    white-space: nowrap;
}
.rs-bp__field__value {
    font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
    font-size: clamp(1.625rem, 2.4vw, 2.125rem);
    color: var(--rs-ink);
    line-height: 1; font-weight: 400;
    white-space: nowrap;
    letter-spacing: -.005em;
}
.rs-bp__field__value.is-placeholder { color: var(--rs-ink-mute); opacity: .55; font-style: italic; }
.rs-bp__divider {
    width: 1px; align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(196, 160, 82, .5) 20%, rgba(196, 160, 82, .5) 80%, transparent);
    margin: 6px 0;
}

.rs-bp__cta {
    flex: 0 0 auto;
    background: var(--rs-brand);
    color: white !important; text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 14px 26px;
    border: 1px solid var(--rs-brand);
    border-radius: 999px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
    display: inline-flex; align-items: center;
    text-indent: .3em;
    box-shadow: 0 8px 24px rgba(120, 67, 86, .28);
    white-space: nowrap;
}
.rs-bp__cta:hover {
    background: #5e3344; color: white !important;
    box-shadow: 0 12px 32px rgba(120, 67, 86, .38);
    transform: translateY(-1px);
}
.rs-bp__cta--ghost {
    background: transparent; color: var(--rs-brand) !important;
    border: 1px solid var(--rs-brand);
    box-shadow: none;
}
.rs-bp__cta--ghost:hover { background: var(--rs-brand); color: white !important; }
.rs-bp__cta__arrow {
    transform: translateY(-1px);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1.125rem;
}

.rs-bp__summary {
    display: flex; flex-direction: column;
    align-items: flex-start; justify-content: center;
    gap: 3px;
    padding: 6px 16px;
}
.rs-bp__summary__nights {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    color: var(--rs-ink);
    line-height: 1.05;
    letter-spacing: -.005em;
    white-space: nowrap;
}
.rs-bp__summary__from {
    font-family: 'Jost', sans-serif;
    font-size: 0.625rem; letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--rs-ink-mute);
    font-weight: 500;
    text-indent: .42em;
    line-height: 1;
    white-space: nowrap;
}
.rs-bp__summary__total {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
    color: var(--rs-brand);
    line-height: 1;
    letter-spacing: -.005em;
    white-space: nowrap;
}
@media (max-width: 820px) {
    .rs-bp__summary { display: none; }
}

/* === CALENDAR POPOVER === */
.rs-bp__cal {
    position: absolute; right: 0; top: calc(100% + 14px);
    background: var(--rs-paper);
    border: 0;
    border-radius: 14px;
    box-shadow:
        0 1px 0 rgba(196, 160, 82, .35) inset,
        0 28px 72px rgba(28, 24, 18, .18),
        0 4px 14px rgba(28, 24, 18, .06);
    width: clamp(360px, 32vw, 440px);
    padding: 22px 22px 18px;
    z-index: 1000;
}
.rs-bp__cal::before {
    /* Top gold hairline accent — subtle property mark */
    content: '';
    position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 1px; background: var(--rs-gold);
    opacity: .6;
}

.rs-bp__cal--floating {
    position: fixed !important;
    top: 50%; left: 50%;
    z-index: 9999;
}

.rs-bp__cal__head {
    display: flex; align-items: center; justify-content: space-between;
    margin: 14px 0 18px;
    gap: 10px;
}
.rs-bp__cal__nav {
    width: 34px; height: 34px; border: 1px solid transparent;
    background: transparent; color: var(--rs-brand);
    font-size: 1.5rem; line-height: 1; font-family: 'Cormorant Garamond', serif;
    cursor: pointer; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.rs-bp__cal__nav:hover {
    background: var(--rs-paper-warm);
    border-color: rgba(196, 160, 82, .35);
    transform: scale(1.04);
}
.rs-bp__cal__nav:disabled { opacity: .2; cursor: default; transform: none; background: transparent; border-color: transparent; }
.rs-bp__cal__month {
    font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400;
    font-size: clamp(1.375rem, 1.9vw, 1.625rem); color: var(--rs-ink); margin: 0; letter-spacing: -.005em;
    text-align: center; flex: 1;
}

.rs-bp__cal__weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rs-line-soft);
}
.rs-bp__cal__weekdays span {
    text-align: center; font-size: 0.5625rem; letter-spacing: .3em; text-transform: uppercase;
    color: var(--rs-ink-mute); padding: 4px 0;
    font-family: 'Jost', sans-serif; font-weight: 500;
    text-indent: .3em;
}

.rs-bp__cal__grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: transparent;
    position: relative;
}
.rs-bp__cal__day {
    aspect-ratio: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: transparent; border: 0; color: var(--rs-ink); cursor: pointer;
    border-radius: 50%;
    padding: 4px 2px;
    gap: 3px;
    font-family: 'Jost', sans-serif;
    position: relative;
    transition: background .2s ease, color .2s ease, transform .15s ease;
    min-height: 52px;
}
.rs-bp__cal__day--blank { background: transparent; cursor: default; }
.rs-bp__cal__day__num {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.01em;
}
.rs-bp__cal__day__rate {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.0625rem; line-height: 1;
    color: var(--rs-gold);
    font-weight: 500;
    letter-spacing: .01em;
}
.rs-bp__cal__day:hover:not(:disabled):not(.is-checkin):not(.is-checkout):not(.is-range) {
    background: var(--rs-paper-warm);
    color: var(--rs-brand);
    transform: scale(1.04);
}
.rs-bp__cal__day:hover .rs-bp__cal__day__rate { color: var(--rs-brand); }

.rs-bp__cal__day.is-past,
.rs-bp__cal__day.is-unavailable { opacity: .22; cursor: default; }
.rs-bp__cal__day.is-past .rs-bp__cal__day__rate,
.rs-bp__cal__day.is-unavailable .rs-bp__cal__day__rate { display: none; }

/* Blocked: the night itself is bookable but stay would span an unavailable night
   between checkIn and here. Faint diagonal stripe + cursor for context. */
.rs-bp__cal__day.is-blocked {
    cursor: not-allowed;
    color: var(--rs-ink-mute);
    opacity: .35;
    background-image: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 4px,
        rgba(120, 67, 86, .12) 4px,
        rgba(120, 67, 86, .12) 5px
    );
}
.rs-bp__cal__day.is-blocked .rs-bp__cal__day__rate { color: var(--rs-ink-mute); opacity: .5; }

.rs-bp__cal__day.is-checkin, .rs-bp__cal__day.is-checkout {
    background: var(--rs-brand);
    color: white;
    box-shadow: 0 4px 12px rgba(120, 67, 86, .35);
    z-index: 2;
}
.rs-bp__cal__day.is-checkin .rs-bp__cal__day__rate,
.rs-bp__cal__day.is-checkout .rs-bp__cal__day__rate {
    color: rgba(255, 255, 255, .85);
}

/* Range fill — pale paper-warm pill, sits behind the row */
.rs-bp__cal__day.is-range {
    background: rgba(196, 160, 82, .14);
    color: var(--rs-brand);
    border-radius: 0;
}
.rs-bp__cal__day.is-range .rs-bp__cal__day__rate {
    color: var(--rs-brand);
    opacity: .75;
}
.rs-bp__cal__day.is-checkin { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.rs-bp__cal__day.is-checkout { border-top-left-radius: 0; border-bottom-left-radius: 0; }

.rs-bp__cal__hint {
    margin-top: 16px; text-align: center;
    font-size: 0.625rem; letter-spacing: .32em;
    text-transform: uppercase; color: var(--rs-ink-mute);
    padding: 12px 0 2px;
    border-top: 1px solid var(--rs-line-soft);
    font-family: 'Jost', sans-serif;
    text-indent: .32em;
}

/* === MOBILE BOTTOM-SHEET DATE PICKER ===
   On phones/tablets the popover is the wrong pattern. Swap to a full-bleed
   bottom sheet with bigger touch targets, a drag handle, and a darkened backdrop. */
@media (max-width: 820px) {
    .rs-bp__cal--floating {
        position: fixed !important;
        top: auto !important;
        left: 0 !important;
        right: 0;
        bottom: 0;
        width: 100% !important;
        max-width: 100%;
        max-height: 88vh;
        border-radius: 24px 24px 0 0;
        padding: 30px 18px 20px;
        overflow-y: auto;
        animation: rs-bp__sheet .42s cubic-bezier(.32, .72, 0, 1);
        /* Backdrop done with a giant solid shadow — no extra DOM needed */
        box-shadow:
            0 -12px 40px rgba(0, 0, 0, .18),
            0 0 0 100vmax rgba(20, 14, 10, .55);
        clip-path: none;
        z-index: 9999;
    }
    @keyframes rs-bp__sheet {
        from { transform: translateY(100%); }
        to   { transform: translateY(0); }
    }
    /* Drag handle pill — visual cue this is a sheet */
    .rs-bp__cal--floating::before {
        content: '';
        position: absolute;
        top: 10px; left: 50%; transform: translateX(-50%);
        width: 42px; height: 4px; border-radius: 2px;
        background: rgba(120, 67, 86, .22);
    }
    .rs-bp__cal__head { margin: 6px 0 18px; padding: 0 4px; }
    .rs-bp__cal__nav { width: 44px; height: 44px; font-size: 1.75rem; }
    .rs-bp__cal__month { font-size: 1.5rem; }
    .rs-bp__cal__weekdays { margin-bottom: 6px; padding-bottom: 8px; }
    .rs-bp__cal__weekdays span { font-size: 0.625rem; }
    .rs-bp__cal__grid { gap: 2px; }
    /* Bigger day cells — Apple HIG 44px min, we give 56 */
    .rs-bp__cal__day {
        min-height: 58px;
        padding: 6px 2px;
        aspect-ratio: auto;
    }
    .rs-bp__cal__day__num { font-size: 1.0625rem; font-weight: 500; }
    .rs-bp__cal__day__rate { font-size: 0.9375rem; }
    .rs-bp__cal__hint {
        margin-top: 18px; padding: 14px 0 6px;
        font-size: 0.6875rem; letter-spacing: .3em;
    }
}

/* ====================================================================
   MOBILE BOOKING FLOW — purpose-built picker for phones/tablets ≤820px
   ==================================================================== */

/* === LAUNCHER — fixed bottom of viewport, always visible on mobile ===
   Two states: empty (no dates) and has-dates (price + Book Direct CTA).
   Hidden on desktop. */
/* Desktop sticky bar — uses native CSS `position: sticky` for jank-free scroll.
   The wrap is pulled UP by its own height with a negative margin-top so it visually
   sits flush against the bottom of the hero, then sticks under the menu when scroll
   reaches it. No per-frame JS = no scroll lag = no bouncing. */
/* Desktop reserve bar — absolute-positioned at the bottom edge of the hero.
   Because the hero is position:relative + overflow:hidden, the bar's slide-up
   animation is clipped: hidden state (translateY 100%) sits the bar below the
   hero edge where it's invisible. is-visible brings it back to translateY(0)
   so it sits at the hero's bottom edge. As the hero scrolls past, the bar
   scrolls away with it — not visible in the section below. */
@media (min-width: 821px) {
    .rs-room__sticky-wrap {
        position: absolute;
        left: 0; right: 0; bottom: 0;
        z-index: 5;
        display: flex;
        justify-content: center;
        pointer-events: none;
    }
    .rs-room__sticky-wrap > * { pointer-events: auto; }

    .rs-room__sticky {
        opacity: 0;
        transform: translateY(100%);
        transition: opacity .45s ease, transform .45s cubic-bezier(.65, 0, .25, 1);
        will-change: opacity, transform;
    }
    .rs-room__sticky-wrap.is-visible .rs-room__sticky {
        opacity: 1;
        transform: translateY(0);
    }

    /* PIN STATE — once the hero has scrolled up far enough that the bar
       would otherwise leave the viewport, detach the wrap from the hero
       and pin it (position:fixed) just under the top menu. JS toggles
       is-pinned at the moment the absolute-position bar reaches the menu
       line so the transition is visually seamless. The corner-flip CSS
       (border-radius, border-bottom) sits in the .is-pinned block higher
       up the file — that takes care of the visual "hanging from menu" look. */
    .rs-room__sticky-wrap.is-pinned {
        position: fixed;
        top: var(--rs-pin-top, 64px);
        bottom: auto;
        left: 0; right: 0;
        /* Below the main menu (z-400) and overlay nav (z-300), above all
           page content (which tops out around 150 for the mobile CTA strip). */
        z-index: 350;
    }
}

.rs-bp__launcher-wrap {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 150;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}
.rs-bp__launcher-wrap.is-visible {
    transform: translateY(0);
}
.rs-bp__launcher-wrap > * { pointer-events: auto; }
.rs-bp__launcher-wrap > * { pointer-events: auto; }

.rs-bp__launcher {
    display: flex;
    align-items: stretch;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: var(--rs-paper-warm);
    box-shadow: 0 -8px 24px rgba(28, 24, 18, .14);
    overflow: hidden;
    font-family: 'Jost', sans-serif;
    text-align: left;
    text-decoration: none;
    color: var(--rs-ink);
    -webkit-tap-highlight-color: transparent;
}

/* Empty state — pixel-match #stickyBookCta: light blue, 48px tall, two spans */
.rs-bp__launcher--empty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 12px 20px;
    box-sizing: border-box;
    background: #87B7CF;
    color: #fff;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    box-shadow: none;
}
.rs-bp__launcher--empty span { display: inline-flex; align-items: center; }

/* Has-dates state — split: summary + Book Direct CTA */
.rs-bp__launcher--has-dates .rs-bp__launcher__details {
    flex: 1 1 58%;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 12px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    min-height: 64px;
    color: var(--rs-ink);
}
.rs-bp__launcher__row {
    display: flex; align-items: baseline; gap: 8px;
}
.rs-bp__launcher__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic; font-weight: 400;
    font-size: 1.625rem; line-height: 1;
    color: var(--rs-brand);
}
.rs-bp__launcher__sub {
    font-size: 0.625rem; letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--rs-ink-mute);
    text-indent: .3em;
}
.rs-bp__launcher__edit {
    font-size: 0.59375rem; letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--rs-gold);
    margin-top: 6px;
    text-indent: .34em;
    font-weight: 500;
}
.rs-bp__launcher__book {
    flex: 0 0 42%;
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--rs-brand);
    color: white !important;
    text-decoration: none;
    font-size: 0.6875rem; letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    border: 0;
    text-indent: .28em;
}
.rs-bp__launcher__book:active { background: #5e3344; }

/* === MOBILE SHEET CHROME — header, tabs, footer.
       All hidden on desktop where the calendar is a popover, not a sheet. */
.rs-bp__sheet-head,
.rs-bp__sheet-tabs,
.rs-bp__sheet-foot { display: none; }

@media (max-width: 820px) {
    .rs-bp__launcher-wrap { display: block; }

    /* Sheet head — X close + title row, below the drag handle */
    .rs-bp__sheet-head {
        display: flex; align-items: center; justify-content: space-between;
        margin: 4px 0 12px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--rs-line-soft);
    }
    .rs-bp__sheet-close {
        width: 38px; height: 38px;
        display: flex; align-items: center; justify-content: center;
        background: var(--rs-paper-warm);
        border: 1px solid transparent;
        border-radius: 50%;
        color: var(--rs-ink);
        cursor: pointer;
        transition: background .18s ease;
    }
    .rs-bp__sheet-close:active { background: rgba(120, 67, 86, .15); }
    .rs-bp__sheet-title {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-style: italic; font-weight: 400;
        font-size: 1.25rem; color: var(--rs-ink);
        letter-spacing: -.005em;
    }
    .rs-bp__sheet-spacer { width: 38px; }

    /* Sheet tabs — Check-In / Check-Out as segmented control */
    .rs-bp__sheet-tabs {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 16px;
    }
    .rs-bp__sheet-tab {
        display: flex; flex-direction: column; align-items: flex-start;
        gap: 6px;
        padding: 12px 14px;
        background: var(--rs-paper-warm);
        border: 1.5px solid transparent;
        border-radius: 12px;
        cursor: pointer;
        text-align: left;
        transition: border-color .2s ease, background .2s ease;
    }
    .rs-bp__sheet-tab.is-active {
        border-color: var(--rs-brand);
        background: rgba(120, 67, 86, .04);
    }
    .rs-bp__sheet-tab__label {
        font-family: 'Jost', sans-serif;
        font-size: 0.625rem; letter-spacing: .32em;
        text-transform: uppercase;
        color: var(--rs-ink-mute);
        text-indent: .32em;
    }
    .rs-bp__sheet-tab__value {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-style: italic; font-weight: 400;
        font-size: 1.375rem; line-height: 1;
        color: var(--rs-ink);
    }
    .rs-bp__sheet-tab__value.is-placeholder { color: var(--rs-ink-mute); opacity: .55; }

    /* Sheet foot — sticky bottom action area inside the scrolling sheet */
    .rs-bp__sheet-foot {
        display: flex; align-items: center; justify-content: space-between;
        gap: 12px;
        position: sticky;
        bottom: 0;
        margin: 16px -18px 0;
        padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
        background: var(--rs-paper);
        border-top: 1px solid var(--rs-line-soft);
    }
    .rs-bp__sheet-foot__summary {
        display: flex; flex-direction: column; align-items: flex-start;
        gap: 2px;
    }
    .rs-bp__sheet-foot__total {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-style: italic; font-weight: 400;
        font-size: 1.5rem; line-height: 1;
        color: var(--rs-brand);
    }
    .rs-bp__sheet-foot__nights {
        font-size: 0.59375rem; letter-spacing: .3em;
        text-transform: uppercase;
        color: var(--rs-ink-mute);
        text-indent: .3em;
    }
    .rs-bp__sheet-foot__cta {
        flex: 0 0 auto;
        padding: 14px 22px;
        background: var(--rs-brand);
        color: white !important;
        text-decoration: none;
        font-family: 'Jost', sans-serif;
        font-size: 0.6875rem; letter-spacing: .28em;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 10px;
        text-indent: .28em;
    }
    .rs-bp__sheet-foot__hint {
        flex: 1;
        text-align: center;
        font-family: 'Jost', sans-serif;
        font-size: 0.6875rem; letter-spacing: .3em;
        text-transform: uppercase;
        color: var(--rs-ink-mute);
        text-indent: .3em;
    }
    /* Inline hint replaces the calendar's standalone hint when the sheet foot is showing */
    .rs-bp__cal__hint { display: none; }
}

/* Scroll reveal */
.rs-reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.rs-reveal.rs-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .rs-reveal { opacity: 1; transform: none; transition: none; }
}
