/* ── ROOMS TABLE ── */
.prop-detail-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.prop-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.prop-header-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.prop-header-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prop-header-info h2.en {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.prop-header-info h2.jp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}
.prop-location {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.price-range {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.price-range span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.amenity-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
}

/* ── PROP ACTIONS ── */
.prop-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── ROOM GRID ── */
.rooms-section {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.rooms-section h3 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}
.room-item {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1rem 0.75rem;
  text-align: center;
  background: var(--bg);
}
.room-number {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.room-status {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.room-item.available { border-color: rgba(92,136,72,0.3); background: rgba(92,136,72,0.04); }
.room-item.occupied { opacity: 0.5; }
.room-item.available .room-status { color: #4a7a38; }
.room-item.occupied .room-status { color: var(--fg-muted); }

/* ── COMING SOON ── */
.coming-card {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: 2px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  gap: 1rem;
  color: var(--fg-muted);
}
.coming-card h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
}
.coming-card h2.jp { font-family: 'Noto Sans JP', sans-serif; }
.coming-card p { font-size: 0.82rem; line-height: 1.7; }

/* ── SECTION PADDING ── */
.section--pt-35 { padding-top: 3.5rem; }

@media (max-width: 768px) {
  .prop-header { grid-template-columns: 1fr; }
  .prop-header-img { height: 220px; }
}
