/* ── chales-casal.css ── */

.intro-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 6rem; align-items: center; }
.intro-visual { position: relative; }
.intro-main-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.intro-accent { position: absolute; bottom: -2.5rem; right: -2.5rem; width: 52%; aspect-ratio: 1; object-fit: cover; border: 4px solid var(--ivory); }

/* ROOMS */
.rooms-sec { background: var(--charcoal); }
.rooms-inner { max-width: 1200px; margin: 0 auto; }
.rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1rem; }
.room-block { margin-bottom: 5rem; }
.room-block:last-child { margin-bottom: 0; }
.room-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.room-layout.reverse { direction: rtl; }
.room-layout.reverse > * { direction: ltr; }
.room-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.room-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.room-gallery img:first-child { grid-column: 1/-1; aspect-ratio: 16/9; }
.room-nr { font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.room-name { font-family: var(--serif); font-size: clamp(2rem,3vw,2.8rem); font-weight: 900; color: var(--cream); line-height: 1; margin-bottom: 1rem; }
.room-name em { font-style: italic; font-weight: 400; color: var(--gold-lt); }
.room-desc { font-size: .88rem; color: rgba(247,243,236,.55); font-weight: 300; line-height: 1.9; margin-bottom: 1.8rem; }
.room-features { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; margin-bottom: 2rem; }
.feat-item { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: rgba(247,243,236,.5); padding: .35rem 0; border-bottom: 1px solid rgba(247,243,236,.06); }
.feat-item::before { content: '—'; color: var(--gold); font-size: .65rem; flex-shrink: 0; }
.room-divider { height: 1px; background: rgba(201,165,90,.12); margin: 4rem 0; }

@media (max-width: 960px) {
  .intro-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .intro-accent { display: none; }
  .room-layout, .room-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .room-features { grid-template-columns: 1fr; }
}
