/* Rooms page — editorial B&B layout
   Scoped under .rooms-page so Bootstrap/global CSS is not affected.
   Fonts are loaded via <link> in template.html <head> for parallel fetch. */

/* ============================================================
   Editorial navbar (.kc-nav) — loaded here so it's in <head>
   rather than inline in <body>. Used by template_navi.html.
   ============================================================ */
.kc-nav, .kc-nav * { box-sizing: border-box; }
.kc-nav {
  position: sticky; top: 0; z-index: 1040;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 0;
  padding: 16px 32px;
  background: #F3EEE5;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  font-family: "Noto Sans TC", -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: #1A1A1A;
  margin: 0;
}
.kc-nav a { color: #1A1A1A; text-decoration: none; }
.kc-nav__brand { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; color: #1A1A1A; min-width: 0; margin-right: auto; }
.kc-nav__brand:hover { color: #1A1A1A; text-decoration: none; }
.kc-nav__brand svg, .kc-nav__brand img { display: block; }
.kc-nav__logo {
  width: 36px; height: 36px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  background: #1A1A1A;
}
.kc-nav__mark {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.1;
  min-width: 0;
}
.kc-nav__mark .zh {
  font-family: "Noto Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kc-nav__mark .kc-nav__tag {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.01em;
  opacity: 0.6;
  white-space: nowrap;
}
.kc-nav__links {
  display: flex; align-items: center; gap: 28px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  list-style: none; padding: 0; margin: 0;
}
.kc-nav__links a { position: relative; padding: 4px 0; color: #1A1A1A; }
.kc-nav__links a:hover { opacity: 0.6; color: #1A1A1A; text-decoration: none; }
.kc-nav__links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: #1A1A1A;
}
.kc-nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 22px; height: 42px; border-radius: 999px;
  background: #c0392b; color: #fff !important;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s ease;
  text-decoration: none !important;
}
.kc-nav__cta:hover { background: #962d22; color: #fff !important; }
.kc-nav__cta .arr { font-family: Georgia, serif; font-style: normal; }

/* Desktop LINE pill — sits left of the booking CTA */
.kc-nav__line-cta {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 999px;
  background: #06C755; color: #fff !important;
  text-decoration: none !important;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0.3rem;
  transition: background .15s ease, transform .15s ease;
}
.kc-nav__line-cta:hover { background: #05a948; color: #fff !important; transform: translateY(-1px); }
.kc-nav__line-cta i,
.kc-nav__line-cta i::before { color: #fff !important; font-size: 22px; line-height: 1; }

/* Mobile-only icon button (booking shortcut) — sits left of MENU */
.kc-nav__icon-cta {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #c0392b;
  color: #fff !important;
  border: 1px solid #c0392b;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.kc-nav__icon-cta:hover {
  background: #962d22;
  border-color: #962d22;
  color: #fff !important;
}
.kc-nav__icon-cta svg { display: block; }
/* Tight pairing: MENU sits closer to the booking icon than to the brand */
.kc-nav__icon-cta + .kc-nav__menubtn { margin-left: -2px; }

.kc-nav__toggle { display: none; position: absolute; }
.kc-nav__menubtn {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: #1A1A1A; color: #F3EEE5;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
}
.kc-nav__menubtn .ico-close { display: none; }
.kc-nav__toggle:checked ~ .kc-nav .kc-nav__menubtn .ico-open { display: none; }
.kc-nav__toggle:checked ~ .kc-nav .kc-nav__menubtn .ico-close { display: inline-flex; }

/* Hide legacy chrome on editorial pages */
.topmenu { display: none !important; }
footer#footer.footer { display: none !important; }

/* Booking step 5 (success) and /booking/finish/ both hide the step-bar
   via JS, removing the navbar-height spacer divs that sit above the
   wizard. Both end up at #step-5.active — give the main wrapper
   2em of breathing room top + bottom so it doesn't butt up against
   the sticky kc-nav or the universal footer. */
body:has(#step-5.active) main.content-wrapper,
body:has(#myorder-page.active) main.content-wrapper {
  padding-top: 2em;
  padding-bottom: 2em;
}
body:has(#step-3.active) main.content-wrapper {
  padding-bottom: 2em;
}

/* Price info is not shown on the public site — handled off-site via LINE. */
.rp-room__price { display: none !important; }
.rp-priceband__stats { display: none !important; }

/* ============================================================
   Universal editorial footer (.kc-footer)
   Listed in template.html — appears at the bottom of every
   page that uses template.html (homepage / room / map / agree).
   ============================================================ */
.kc-footer {
  background: #F3EEE5;
  color: #1A1A1A;
  border-top: 1px solid rgba(26,26,26,0.12);
  padding: 72px 56px 24px;
  font-family: "Noto Sans TC", -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
}
.kc-footer a {
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity .15s;
}
.kc-footer a:hover { opacity: 0.6; }
.kc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1.2fr;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto 56px;
}
.kc-footer__heading {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26,26,26,0.2);
}
.kc-footer ul { list-style: none; padding: 0; margin: 0; }
.kc-footer li { padding: 10px 0; border-bottom: 1px solid rgba(26,26,26,0.08); }
.kc-footer li:last-child { border-bottom: none; }

/* About column */
.kc-footer__about { display: flex; flex-direction: column; gap: 14px; }
.kc-footer__about img {
  width: 44px; height: 44px; border-radius: 999px;
  background: #1A1A1A; object-fit: cover;
}
.kc-footer__about h5 {
  font-family: "Cormorant Garamond", "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
  font-style: italic;
}
.kc-footer__about p {
  font-family: "Noto Serif TC", serif;
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  max-width: 280px;
  opacity: 0.8;
}

/* Villas list */
.kc-footer__hosts li a { display: block; padding: 4px 0; }
.kc-footer__hosts .zh {
  font-family: "Noto Serif TC", serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 4px;
}
.kc-footer__hosts .addr {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  opacity: 0.55;
  display: block;
}

/* Legal / Contact link lists */
.kc-footer__legal li,
.kc-footer__contact li {
  font-family: "Noto Serif TC", serif;
  font-size: 15px;
}
/* sub-item under a footer link — indented + arrow（與父項同組、無分隔線） */
.kc-footer__legal li.kc-footer__sub {
  font-size: 13.5px;
  opacity: 0.78;
  padding-top: 6px;
  line-height: 1.4;
}
.kc-footer__legal li.kc-footer__sub .arr {
  display: inline-block;
  margin-right: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.05em;
  opacity: 0.55;
}
/* 父項（後面緊跟 sub）取消下緣分隔線，但保留呼吸空間 */
.kc-footer__legal li:has(+ .kc-footer__sub) {
  border-bottom: none;
  padding-bottom: 6px;
}
.kc-footer__contact .mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.14em; opacity: 0.55;
  text-transform: uppercase;
  margin-right: 8px;
}

/* Bottom bar */
.kc-footer__bar {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,26,0.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .kc-footer { padding: 48px 20px 24px; }
  .kc-footer__grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .kc-footer__bar { flex-direction: column; gap: 6px; align-items: flex-start; }
}

@media (max-width: 900px) {
  /* Tight gap between booking icon and MENU; brand stays pushed left via auto margin */
  .kc-nav { padding: 14px 18px; gap: 0.5rem; }
  .kc-nav__brand { margin-right: auto; }
  .kc-nav__menubtn { display: inline-flex; }
  .kc-nav__icon-cta { display: inline-flex; }
  .kc-nav__links,
  .kc-nav__cta,
  .kc-nav__line-cta { display: none; }
  .kc-nav__logo { width: 32px; height: 32px; }
  .kc-nav__mark .zh { font-size: 1.2rem; }
  .kc-nav__mark .kc-nav__tag { display: none; }
  .kc-nav__toggle:checked ~ .kc-nav__drawer { display: flex; }
  .kc-nav__drawer {
    display: none;
    position: fixed; inset: 68px 0 0 0;
    background: #F3EEE5;
    flex-direction: column;
    padding: 24px 24px 40px;
    gap: 0;
    border-top: 1px solid rgba(26,26,26,0.12);
    z-index: 1039;
    overflow-y: auto;
  }
  .kc-nav__drawer a {
    font-family: "Noto Serif TC", serif;
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 0.01em;
    padding: 16px 0;
    border-bottom: 1px solid rgba(26,26,26,0.12);
    color: #1A1A1A;
    text-decoration: none;
  }
  .kc-nav__drawer a:last-child { border: none; }
  .kc-nav__drawer .kc-nav__cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
    height: 52px;
    color: #F3EEE5 !important;
  }
}
@media (min-width: 901px) {
  .kc-nav__drawer { display: none !important; }
}

.rooms-page {
  --rp-bg:          #F3EEE5;
  --rp-ink:         #1A1A1A;
  --rp-line:        rgba(26,26,26,0.12);
  --rp-line-strong: rgba(26,26,26,0.20);
  --rp-line-dark:   rgba(243,238,229,0.20);
  --rp-muted:       rgba(26,26,26,0.60);

  --rp-cn-display: "Noto Serif TC", "PingFang TC", "Microsoft JhengHei", serif;
  --rp-display:    "Cormorant Garamond", "Noto Serif TC", serif;
  --rp-serif:      "Noto Serif TC", Georgia, serif;
  --rp-ui:         "Noto Sans TC", -apple-system, "PingFang TC", "Microsoft JhengHei", sans-serif;
  --rp-mono:       "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  background: var(--rp-bg);
  color: var(--rp-ink);
  font-family: var(--rp-ui);
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.rooms-page *,
.rooms-page *::before,
.rooms-page *::after { box-sizing: border-box; }

.rooms-page a { color: inherit; text-decoration: none; }
.rooms-page img { display: block; max-width: 100%; }
.rooms-page h1, .rooms-page h2, .rooms-page h3 { margin: 0; font-weight: 400; }
.rooms-page p  { margin: 0; }
.rooms-page ul { margin: 0; padding: 0; list-style: none; }

.rooms-page em,
.rooms-page .rp-italic { font-family: var(--rp-display); font-style: italic; font-weight: 400; }

.rooms-page .rp-eyebrow {
  font-family: var(--rp-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

.rooms-page .rp-mono {
  font-family: var(--rp-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Pill buttons */
.rooms-page .rp-pill,
.rooms-page .rp-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 44px;
  border-radius: 999px;
  font-family: var(--rp-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
  border: 1px solid var(--rp-ink);
  text-decoration: none;
}
.rooms-page .rp-pill {
  background: var(--rp-ink);
  color: var(--rp-bg);
}
.rooms-page .rp-pill:hover { background: #000; }
.rooms-page .rp-pill-outline {
  background: transparent;
  color: var(--rp-ink);
}
.rooms-page .rp-pill-outline:hover {
  background: var(--rp-ink);
  color: var(--rp-bg);
}

/* ─────────── HERO ─────────── */
.rp-hero {
  padding: 72px 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.rp-hero__eyebrow { margin-bottom: 28px; }
.rp-hero__title {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: 0.01em;
}
.rp-hero__title em {
  font-family: var(--rp-display);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: 0.72em;
  opacity: 0.9;
  display: block;
  margin-top: 6px;
}
.rp-hero__lead {
  font-family: var(--rp-serif);
  font-size: 18px;
  line-height: 1.75;
  max-width: 520px;
}
.rp-hero__ctas {
  margin-top: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rp-hero__ctas a { padding: 11px 20px; font-size: 10.5px; height: auto; }

/* ─────────── HERO IMAGE (homepage) ─────────── */
.rp-herohero {
  padding: 0 56px 40px;
}
.rp-herohero__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #E8E1D3;
}
.rp-herohero__frame img,
.rp-herohero__frame iframe {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
/* Keep map interactive: overlay doesn't steal clicks over the iframe. */
.rp-herohero--map .rp-herohero__overlay { pointer-events: none; }
.rp-herohero--map .rp-herohero__frame { border: 1px solid rgba(26,26,26,0.12); }

/* Room pages: hide the big hero image on every viewport.
   The first room section's photo grid is the visual anchor
   on both desktop and mobile. */
.rp-herohero--room { display: none !important; }
.rp-herohero__overlay {
  display: none;
}
.rp-herohero__title {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: clamp(44px, 10vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: #F3EEE5;
  margin-top: 14px;
}
.rp-herohero__title em {
  font-family: var(--rp-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.72em;
  letter-spacing: -0.02em;
  opacity: 0.9;
  display: block;
  margin-top: 6px;
}

/* ─────────── ROOM INDEX STRIP ─────────── */
.rp-index {
  padding: 28px 56px;
  border-top: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rp-index__links { display: flex; gap: 36px; flex-wrap: wrap; }
.rp-index__links a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  transition: opacity .2s;
}
.rp-index__links a .n {
  font-family: var(--rp-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.6;
}
.rp-index__links a .t {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: 18px;
}
.rp-index__links:hover a:not(:hover) { opacity: 0.4; }

/* ─────────── ROOM SECTION ─────────── */
.rp-room {
  padding: 96px 56px;
  border-bottom: 1px solid var(--rp-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.rp-room__info { display: flex; flex-direction: column; justify-content: flex-start; padding: 8px 32px 8px 0; }
.rp-room__media { display: flex; flex-direction: column; gap: 10px; }
.rp-room--flip .rp-room__info { order: 2; padding: 8px 0 8px 32px; }
.rp-room--flip .rp-room__media { order: 1; }

.rp-room__tag { margin-bottom: 20px; }
.rp-room__title {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--rp-ink);
  margin-bottom: 32px !important;
}
.rp-room__title em {
  font-family: var(--rp-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  letter-spacing: -0.02em;
  opacity: 0.8;
  display: block;
  margin-top: 4px;
}
.rp-room__blurb {
  font-family: var(--rp-serif);
  font-size: 16.5px;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 520px;
  color: var(--rp-ink);
}
.rp-room__specs {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rp-line-strong);
}
.rp-room__specs ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 24px;
}
.rp-room__specs li {
  padding: 8px 0;
  font-family: var(--rp-serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--rp-ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0.92;
}
.rp-room__specs li i { flex-shrink: 0; opacity: 0.7; }

.rp-room__price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rp-line);
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: baseline;
}
.rp-room__price .label {
  font-family: var(--rp-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-right: 10px;
}
.rp-room__price .num {
  font-family: var(--rp-display);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.rp-room__price .unit {
  font-family: var(--rp-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.6;
  margin-left: 6px;
}

.rp-room__cta {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Room photo block (hero + 4 thumbs) */
.rp-photos { display: flex; flex-direction: column; gap: 10px; }
.rp-photos__hero {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #E8E1D3;
  cursor: zoom-in;
  border: none;
  padding: 0;
  width: 100%;
}
.rp-photos__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.rp-photos__hero:hover img { transform: scale(1.03); }
.rp-photos__hero .plus {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--rp-bg);
  color: var(--rp-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}
.rp-photos__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.rp-photos__thumbs button {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #E8E1D3;
  cursor: zoom-in;
  border: none;
  padding: 0;
}
.rp-photos__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, opacity .15s ease;
}
.rp-photos__thumbs button:hover img { transform: scale(1.04); }

/* ─────────── ONE PRICE BAND ─────────── */
.rp-priceband {
  padding: 96px 56px;
  background: var(--rp-ink);
  color: var(--rp-bg);
}
.rp-priceband__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.rp-priceband h2,
.rp-priceband h2 em {
  color: var(--rp-bg);  /* 對抗 Bootstrap reboot 的 --bs-heading-color，強制 ivory 不被吃掉 */
}
.rp-priceband h2 {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
}
.rp-priceband h2 em {
  display: block;
  font-family: var(--rp-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  opacity: 0.9;
  margin-top: 6px;
}
.rp-priceband p {
  font-family: var(--rp-serif);
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 560px;
}
.rp-priceband__stats {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rp-line-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.rp-priceband__stats .n {
  font-family: var(--rp-display);
  font-size: 40px;
  letter-spacing: -0.02em;
}
.rp-priceband__stats .l {
  font-family: var(--rp-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 6px;
}

/* ─────────── INCLUDED GRID ─────────── */
.rp-included { padding: 96px 56px; background: var(--rp-bg); }
.rp-included__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}
.rp-included h2 {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
}
.rp-included h2 em {
  display: block;
  font-family: var(--rp-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  opacity: 0.85;
  margin-top: 6px;
}
.rp-included__intro {
  font-family: var(--rp-serif);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 560px;
  padding-top: 8px;
}
.rp-included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rp-line-strong);
}
.rp-included__cell {
  padding: 26px 24px 30px;
  border-right: 1px solid var(--rp-line);
  border-bottom: 1px solid var(--rp-line);
}
.rp-included__cell:nth-child(4n) { border-right: none; }
.rp-included__cell:nth-child(n+5) { border-bottom: none; }
.rp-included__cell .n {
  font-family: var(--rp-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.55;
  margin-bottom: 14px;
}
.rp-included__cell .k {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
}
.rp-included__cell .v {
  font-family: var(--rp-serif);
  font-size: 14.5px;
  line-height: 1.55;
  opacity: 0.8;
}

/* ─────────── BOOKING BAND + FOOTER META ─────────── */
.rp-bookband {
  padding: 64px 56px 56px;
  border-top: 1px solid var(--rp-line-strong);
}
.rp-bookband__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--rp-ink);
  border-radius: 999px;
  padding: 10px 10px 10px 28px;
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--rp-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.rp-bookband__row .rp-pill { height: 48px; padding: 0 28px; }
.rp-bookband__fields {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}
.rp-bookband__field {
  padding: 10px 20px;
  border-left: 1px solid var(--rp-line-strong);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rp-bookband__field .l { font-size: 9.5px; letter-spacing: 0.18em; opacity: 0.55; }
.rp-bookband__field .v { font-size: 12px; letter-spacing: 0.06em; text-transform: none; }

.rp-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rp-line);
  font-family: var(--rp-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─────────── LIGHTBOX ─────────── */
.rp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(26,26,26,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.rp-lightbox.open { display: flex; }
.rp-lightbox__panel {
  width: 100%;
  max-width: 1100px;
  height: 100%;
  max-height: 900px;
  background: var(--rp-bg);
  border: 1px solid var(--rp-ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
}
.rp-lightbox__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 40px 0;
  gap: 20px;
}
.rp-lightbox__title {
  font-family: var(--rp-cn-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.05;
}
.rp-lightbox__title em {
  display: block;
  font-family: var(--rp-display);
  font-style: italic;
  font-size: 0.65em;
  margin-top: 4px;
  opacity: 0.85;
}
.rp-lightbox__meta {
  font-family: var(--rp-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.8;
  margin-top: 10px;
  text-transform: uppercase;
}
.rp-lightbox__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  min-height: 0;
}
.rp-lightbox__frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #E8E1D3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rp-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.rp-lightbox__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 40px 10px;
}
.rp-lightbox__counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--rp-ink);
  font-family: var(--rp-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  min-width: 130px;
  justify-content: center;
}
.rp-lightbox__counter .slash { opacity: 0.4; }
.rp-lightbox__counter .total { opacity: 0.6; }
.rp-iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--rp-ink);
  background: var(--rp-bg);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rp-ink);
  padding: 0;
  font-size: 16px;
  line-height: 1;
  transition: background .12s;
}
.rp-iconbtn:hover { background: #E8E1D3; }
.rp-lightbox__thumbs {
  display: flex;
  gap: 8px;
  padding: 8px 40px 32px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.rp-lightbox__thumbs button {
  flex: 0 0 114px;
  height: 86px;
  border: 1px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #E8E1D3;
  overflow: hidden;
  opacity: 0.7;
  transition: opacity .15s, border-color .15s;
}
.rp-lightbox__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.rp-lightbox__thumbs button.active {
  border-color: var(--rp-ink);
  border-width: 1.5px;
  opacity: 1;
}

/* ─────────── RESPONSIVE (< 900px) ─────────── */
@media (max-width: 900px) {
  /* Mobile: flip order so hero image renders first, text below */
  .rooms-page { display: flex; flex-direction: column; }
  .rp-hero {
    grid-template-columns: 1fr;
    padding: 24px 20px 18px;
    gap: 18px;
    order: -1;
  }
  /* Mobile hero image: full-bleed, fills viewport, title overlaid */
  .rp-herohero {
    padding: 0;
    order: -2;
    margin-top: -1px; /* nose under navbar border */
  }
  .rp-herohero__frame {
    aspect-ratio: auto;
    width: 100vw;
    height: calc(100svh - 64px);
    min-height: 520px;
  }
  .rp-herohero__overlay {
    display: block;
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 22px 34px;
    background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.35) 60%, rgba(26,26,26,0) 100%);
  }
  .rp-herohero__title {
    font-size: 44px;
    color: #F3EEE5;
    margin-top: 10px;
    text-shadow: 0 1px 20px rgba(0,0,0,0.4);
  }
  /* On mobile, the big title lives on the image overlay — hide the
     duplicate in .rp-hero so the text block below the image is just
     the eyebrow + lead + CTAs. */
  .rp-hero .rp-hero__eyebrow { display: none; }
  .rp-hero__title { display: none; }

  .rp-index {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .rp-index__links { gap: 14px 28px; }
  .rp-index__links a .t { font-size: 16px; }

  .rp-room {
    padding: 56px 20px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .rp-room__info { padding: 0 !important; }
  .rp-room--flip .rp-room__info { order: 2; }
  .rp-room--flip .rp-room__media { order: 1; }
  .rp-room__specs ul { grid-template-columns: 1fr; }

  .rp-priceband, .rp-included { padding: 56px 20px; }
  .rp-priceband__grid,
  .rp-included__head { grid-template-columns: 1fr; gap: 24px; }
  .rp-priceband__stats { grid-template-columns: 1fr 1fr; }
  .rp-included__grid { grid-template-columns: 1fr 1fr; }
  .rp-included__cell:nth-child(4n) { border-right: 1px solid var(--rp-line); }
  .rp-included__cell:nth-child(2n) { border-right: none; }
  /* Override desktop's :nth-child(n+5) — in 2-col layout, only the LAST row should have no bottom border */
  .rp-included__cell:nth-child(n+5) { border-bottom: 1px solid var(--rp-line); }
  .rp-included__cell:nth-last-child(-n+2) { border-bottom: none; }
  .rp-included__cell { padding: 22px 18px 26px; }

  .rp-bookband { padding: 40px 20px; }
  .rp-bookband__row {
    flex-direction: column;
    border-radius: 18px;
    padding: 18px;
  }
  .rp-bookband__fields { flex-direction: column; width: 100%; }
  .rp-bookband__field { border-left: none; border-top: 1px solid var(--rp-line); padding: 10px 4px; width: 100%; }
  .rp-bookband__row .rp-pill { width: 100%; justify-content: center; }
  .rp-meta { flex-direction: column; gap: 8px; }

  .rp-lightbox { padding: 0; }
  .rp-lightbox__panel { max-height: none; border: none; }
  .rp-lightbox__top,
  .rp-lightbox__stage,
  .rp-lightbox__thumbs,
  .rp-lightbox__nav { padding-left: 18px; padding-right: 18px; }
}

/* Collapse FA icon classes used in legacy li content gracefully. */
.rooms-page .rp-room__specs li .fa-regular,
.rooms-page .rp-room__specs li .fa-solid,
.rooms-page .rp-room__specs li .fa-light,
.rooms-page .rp-room__specs li .fa-brands {
  font-size: 13px;
  width: 18px;
  text-align: center;
}
