/* ===== Base tokens ===== */
:root{
  --brand:#c5a05f;
  --ink:#0c1124;
  --band:#3b3f48;
}
.roomdetail{
  font-family:'DejaVu Serif',serif;
  color:#2b2e34;
  padding:24px 0 48px;
}
.rd-wrap{ max-width:1100px; margin:0 auto; padding:0 16px; }

/* Title */
.rd-title{
  margin:0 0 10px; text-align:center; color:#7a808b;
  font-size:clamp(16px,2.4vw,18px); letter-spacing:.04em;
}

/* Banner */
.rd-figure{ margin:0 auto 14px; max-width:880px; }
.rd-figure img{ width:100%; display:block; border-radius:4px; }

/* Price strip */
.rd-prices{
  margin:14px auto 18px;
  background:var(--band);
  padding:16px 14px;
  border-radius:6px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.rd-price{ text-align:center; color:#fff; }
.rd-price__label{
  font-weight:800; font-size:12px; letter-spacing:.05em; opacity:.95;
}
.rd-price__value{
  display:inline-block; margin-top:6px;
  padding:.35rem .6rem; background:var(--brand);
  color:#241a0e; font-weight:800; border-radius:6px; min-width:96px;
}
@media (max-width:760px){
  .rd-prices{ grid-template-columns:repeat(2,1fr); }
}

/* Section head with gold line */
.rd-head{
  --w: 220px;
  margin:14px auto 8px; text-align:center; color:#6f7480;
  font-size:clamp(14px,2vw,15px); letter-spacing:.04em; text-transform:uppercase;
  position:relative; width:max-content;
}
.rd-head::after{
  content:""; display:block; height:3px; border-radius:2px;
  width:var(--w); margin:6px auto 0; background:var(--brand);
}

/* Amenities list */
.rd-amenities{
  max-width:780px; margin:0 auto 18px; padding:0 0 0 18px;
  line-height:1.7; color:#3a3e46;
}

/* Cards Check-in */
.rd-cards{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:18px;
}
@media (max-width:900px){ .rd-cards{ grid-template-columns:1fr; } }

.rd-card{
  border:2px solid var(--brand); border-radius:6px; background:#fff;
  padding:14px; text-align:center;
}
.rd-card__title{
  display:inline-block; padding:.4rem .9rem; border-radius:6px;
  border:2px solid var(--brand); margin-bottom:8px; font-weight:800; color:#6a5a39;
}
.rd-card__desc{ margin:0; color:#8a8e98; font-size:13px; }

/* Notes */
.rd-notes{
  max-width:820px; margin:0 auto; padding:0 0 0 18px; color:#666a73; line-height:1.7;
}
