.booking-ensemble {
  margin: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  padding: 0;
}

.booking-ensemble__inner {
  display: grid;
  grid-template-columns: minmax(15rem, 1fr) minmax(17rem, 0.9fr) minmax(15rem, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.booking-ensemble__group,
.booking-ensemble__portrait {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  padding: clamp(0.65rem, 1.5vw, 0.9rem);
  border: 1px solid rgba(244, 231, 186, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 131, 203, 0.12), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022));
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.2),
    0 7px 16px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.booking-ensemble__group img,
.booking-ensemble__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.booking-ensemble__photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.booking-ensemble__details {
  position: relative;
  display: grid;
  justify-items: stretch;
  gap: clamp(1.35rem, 3vw, 2rem);
  width: 100%;
  min-width: 0;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(244, 231, 186, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 131, 203, 0.14), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.22),
    0 8px 18px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

.booking-ensemble__details h2 {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin: 0;
  color: #f4e7ba;
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 200;
  line-height: 1.1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.booking-ensemble__details h2::after {
  content: "";
  width: min(8rem, 55%);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(244, 231, 186, 0),
    rgba(244, 231, 186, 0.72),
    rgba(244, 231, 186, 0)
  );
}

.booking-ensemble__list {
  display: grid;
  gap: clamp(0.65rem, 1.4vw, 0.9rem);
  width: 100%;
  margin: 0;
}

.booking-ensemble__list > div {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 9px 18px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
  text-align: center;
}

.booking-ensemble__list dt {
  min-width: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.booking-ensemble__list dd {
  margin: 0;
  color: rgba(229, 234, 245, 0.76);
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.35;
}

@media (max-width: 1050px) {
  .booking-ensemble__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-ensemble__details {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 44rem);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .booking-ensemble {
    margin-top: 4rem;
  }

  .booking-ensemble__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .booking-ensemble__details {
    grid-column: auto;
    grid-row: auto;
    padding: 1.25rem;
    border-radius: 15px;
  }

  .booking-ensemble__list > div {
    padding: 0.85rem 0.8rem;
  }

  .booking-ensemble__group,
  .booking-ensemble__portrait {
    width: min(100%, 30rem);
    margin: 0 auto;
    padding: 0.65rem;
    border-radius: 15px;
  }

  .booking-ensemble__group img,
  .booking-ensemble__portrait img {
    border-radius: 9px;
  }
}