/* Hotel list page (hotel.html) — page-specific styles */

body.page-hotel { background: var(--color-black); }

/* ===== Content wrapper ===== */
.hotel-content { padding-top: 56px; padding-bottom: 100px; }

/* ===== Area sections ===== */
.hotel-area { margin-bottom: 64px; }
.hotel-area__head { text-align: center; margin-bottom: 32px; }
.hotel-area__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.1em; }
.hotel-area__rule { width: 40px; height: 1px; background: var(--color-gold); margin: 16px auto 0; }

/* ===== Grid ===== */
.hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) {
  .hotel-grid { grid-template-columns: repeat(2, 1fr); }
}

.page-hotel .card--media__photo-wrap { aspect-ratio: 16 / 9; }
.hotel-card__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.06em; color: var(--color-text-white); margin-bottom: 6px; }
.hotel-card__meta { font-size: 0.75rem; color: var(--color-text-muted); margin-bottom: 12px; }
.hotel-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.hotel-card__note { font-size: 0.75rem; color: var(--color-text-cream); font-weight: 300; line-height: 1.7; }

/* ===== Notice block ===== */
.hotel-notice { max-width: 640px; margin: 0 auto 48px; }
.hotel-notice__head { text-align: center; margin-bottom: 24px; }
.hotel-notice__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; letter-spacing: 0.1em; }
.hotel-notice__list { display: flex; flex-direction: column; gap: 12px; }
.hotel-notice__list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.78rem;
  color: var(--color-text-cream);
  font-weight: 300;
  line-height: 1.9;
}
.hotel-notice__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ===== CTA ===== */
.hotel-cta { margin-top: 32px; }
