.hotels-page {
  background: var(--bg-page, #fbf7f1);
  padding-block: clamp(28px, 5vw, 56px) clamp(48px, 7vw, 88px);
}

.hotels-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--ct-muted, #5b6664);
  margin-bottom: clamp(18px, 3vw, 28px);
}
.hotels-breadcrumb a {
  color: var(--ct-muted, #5b6664);
  text-decoration: none;
}
.hotels-breadcrumb a:hover { color: var(--accent, #d9662b); }
.hotels-breadcrumb [aria-current="page"] { color: var(--ct-ink, #1d2b2b); font-weight: 600; }

.hotels-head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 44px); }
.hotels-head h1 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--ct-ink, #1d2b2b);
}
.hotels-head .ct-lead {
  margin-top: 14px;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.65;
  color: var(--ct-muted, #5b6664);
}

.hotels-empty {
  padding: 28px;
  border: 1px dashed var(--ct-line, #e8e0d3);
  border-radius: var(--radius, 14px);
  background: var(--bg-card, #fff);
  color: var(--ct-muted, #5b6664);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card, #fff);
  border: 1px solid var(--ct-line, #e8e0d3);
  border-radius: var(--radius, 14px);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.hotel-card:hover {
  border-color: var(--accent, #d9662b);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pop, 0 12px 30px rgba(0, 0, 0, .12));
}

.hotel-card__media {
  position: relative;
  display: block;
  height: 200px;
  background: var(--accent-soft, #f5efe3);
}
.hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotel-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  color: var(--disabled, #8a8377);
  font-size: .82rem;
}
.hotel-card__placeholder svg { width: 32px; height: 32px; }

.hotel-card__status {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
}
.hotel-card__status.is-live { background: var(--accent, #d9662b); }
.hotel-card__status.is-soon { background: #8a8377; }

.hotel-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 22px 22px;
  flex: 1 1 auto;
}
.hotel-card__name {
  font-family: var(--font-display, Lora, Georgia, serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.hotel-card__name a { color: var(--ct-ink, #1d2b2b); text-decoration: none; }
.hotel-card__name a:hover { color: var(--accent, #d9662b); }

.hotel-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--ct-muted, #5b6664);
}
.hotel-card__stars { color: var(--accent, #d9662b); letter-spacing: .08em; }

.hotel-card__text {
  font-size: .93rem;
  line-height: 1.6;
  color: var(--ct-muted, #5b6664);
}

.hotel-card__cta {
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--accent, #d9662b);
  text-decoration: none;
}
.hotel-card__cta:hover { color: var(--accent-hover, #b85420); }
.hotel-card__cta .arrow { transition: transform .2s; }
.hotel-card__cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 520px) {
  .hotel-card__media { height: 180px; }
}
