.hotel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
}
.rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-dots {
  display: flex;
  gap: 5px;
}
.rating-dots i {
  width: 17px;
  height: 17px;
  background: var(--wine);
  border-radius: 50%;
  display: block;
}
.rating-dots .half {
  background: linear-gradient(90deg, var(--wine) 50%, transparent 50%);
  border: 1px solid var(--wine);
}
.booking-bar {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.2fr auto;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 0;
}
.booking-field {
  padding: 20px 28px;
  text-decoration: none;
  border-right: 1px dashed #777;
}
.booking-field span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}
.booking-field strong {
  display: block;
  margin-top: 6px;
}
.booking-btn {
  margin: 0 20px;
}
.hero {
  background: #fff;
}
.hero-slider {
  position: relative;
  height: min(66vh, 620px);
  min-height: 380px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.5s;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #d8c2a8, #f1e4d2 40%, #b6c5a9);
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
}
.image-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block; /* optionnel : bandes noires autour */
}
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.55);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
}
.slider-controls button {
  background: transparent;
  color: #fff;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}
.slider-dots button.active {
  background: #fff;
}
.gallery-pill {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  text-decoration: none;
  font-weight: 800;
}
@media (max-width: 760px) {
  .hotel-head {
    display: block;
  }
  .booking-bar {
    display: block;
    background: transparent;
    box-shadow: none;
  }
  .booking-field {
    display: none;
  }
  .booking-btn {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    margin: 0;
  }
  .hero-slider {
    height: 58vh;
    min-height: 440px;
  }
  .image-placeholder {
    font-size: 2.8rem;
  }
}
