html,
body {
  overflow-x: hidden;
}

body.hotel-lightbox-open {
  overflow: hidden;
}

.hotel-profile-wrap {
  width: min(1160px, 92vw);
  padding-bottom: 2rem;
}

.hotel-profile-header {
  margin-top: 1.05rem;
}

.hotel-profile-main {
  margin-top: 1rem;
  width: 100%;
  margin-inline: 0;
  max-width: none;
}

.hotel-profile-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  background:
    linear-gradient(155deg, rgba(255, 246, 214, 0.02), transparent 44%),
    rgba(14, 23, 43, 0.11);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.hotel-profile-card > * {
  min-width: 0;
}

.hotel-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 1rem;
}

.hotel-profile-hero-image-wrap {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 0;
  height: clamp(250px, 24vw, 320px);
  background: rgba(12, 20, 37, 0.4);
  min-width: 0;
}

.hotel-profile-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-profile-hero-copy {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 1.8vw, 1.35rem);
  background:
    linear-gradient(150deg, rgba(255, 246, 214, 0.02), transparent 42%),
    rgba(14, 23, 43, 0.1);
  display: grid;
  align-content: start;
  gap: 0.65rem;
  min-width: 0;
  overflow: hidden;
}

.hotel-profile-hero-copy h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.05vw, 1.95rem);
  color: var(--white);
  line-height: 1.12;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: wrap;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hotel-meta {
  margin: 0;
  color: rgba(249, 247, 215, 0.86);
  font-size: 0.96rem;
}

.hotel-summary {
  margin: 0.28rem 0 0;
  color: rgba(249, 247, 215, 0.88);
  font-size: 0.93rem;
  line-height: 1.6;
  max-width: 42ch;
  overflow-wrap: break-word;
  word-break: normal;
}

.hotel-profile-section {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background:
    linear-gradient(155deg, rgba(255, 246, 214, 0.02), transparent 54%),
    rgba(14, 23, 43, 0.09);
}

.hotel-profile-section h2 {
  margin: 0 0 0.65rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
}

.hotel-carousel {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.hotel-carousel-viewport {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(12, 20, 37, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 220, 0.08),
    0 16px 26px rgba(0, 0, 0, 0.34);
}

.hotel-carousel-track {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  transform: translateX(0);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  padding: 0.28rem 0;
}

.hotel-carousel-slide {
  flex: 0 0 auto;
  width: 480px;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 246, 214, 0.1);
  background: rgba(8, 14, 28, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 220, 0.08);
}

.hotel-carousel-slide img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  margin-inline: auto;
}

.hotel-carousel-slide.is-active {
  border-color: rgba(255, 233, 168, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 220, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.hotel-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 14, 28, 0.76);
  color: var(--gold-100);
  cursor: pointer;
  font-size: 1.05rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hotel-carousel-prev {
  left: 0.7rem;
}

.hotel-carousel-next {
  right: 0.7rem;
}

.hotel-carousel-nav:hover,
.hotel-carousel-nav:focus-visible {
  border-color: var(--line-strong);
  background: rgba(26, 40, 72, 0.88);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.34);
}

.hotel-carousel-nav:focus-visible {
  outline: 1px solid var(--gold-200);
  outline-offset: 2px;
}

.hotel-carousel-dots {
  margin-top: 0.62rem;
  display: flex;
  justify-content: center;
  gap: 0.42rem;
  width: 100%;
  margin-inline: auto;
}

.hotel-carousel-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 203, 0.42);
  background: rgba(255, 244, 203, 0.26);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hotel-carousel-dot:hover,
.hotel-carousel-dot:focus-visible,
.hotel-carousel-dot.is-active {
  background: rgba(255, 238, 186, 0.9);
  border-color: rgba(255, 244, 203, 0.92);
  transform: scale(1.16);
}

.hotel-carousel-dot:focus-visible {
  outline: 1px solid var(--gold-200);
  outline-offset: 2px;
}

.hotel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3, 8, 19, 0.88);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.hotel-lightbox.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hotel-lightbox-image-wrap {
  width: min(1200px, 96vw);
  max-height: 88vh;
  border: 1px solid rgba(255, 246, 214, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(5, 11, 24, 0.92);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 248, 220, 0.08);
}

.hotel-lightbox-image-wrap img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88vh;
  margin: 0 auto;
}

.hotel-lightbox-close {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 14, 28, 0.86);
  color: var(--gold-100);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.hotel-lightbox-close:hover,
.hotel-lightbox-close:focus-visible {
  border-color: var(--line-strong);
  background: rgba(26, 40, 72, 0.9);
}

.hotel-lightbox-close:focus-visible {
  outline: 1px solid var(--gold-200);
  outline-offset: 2px;
}

.hotel-description {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  margin-inline: auto;
}

.hotel-description p {
  margin: 0;
  color: rgba(249, 247, 215, 0.95);
  line-height: 1.72;
}

.hotel-info-list {
  display: grid;
  gap: 0.62rem;
  width: 100%;
  margin-inline: auto;
}

.hotel-info-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.68rem 0.78rem;
  background:
    linear-gradient(155deg, rgba(255, 246, 214, 0.02), transparent 58%),
    rgba(14, 23, 43, 0.1);
}

.hotel-info-label {
  margin: 0 0 0.36rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.98rem;
}

.hotel-info-value {
  margin: 0;
  color: rgba(249, 247, 215, 0.9);
  line-height: 1.55;
}

.hotel-info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.hotel-info-links a,
.hotel-info-links span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.56rem;
  font-size: 0.82rem;
}

.hotel-info-links a {
  color: var(--gold-100);
  text-decoration: none;
}

.hotel-info-links a:hover,
.hotel-info-links a:focus-visible {
  border-color: var(--line-strong);
  text-decoration: underline;
}

.hotel-info-links span {
  color: rgba(249, 247, 215, 0.86);
  border-color: var(--glass-border);
}

.hotel-map-wrap {
  display: grid;
  gap: 0.5rem;
}

.hotel-map-frame {
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: rgba(8, 14, 28, 0.45);
}

.hotel-map-open-link {
  color: var(--gold-100);
  text-decoration: none;
  font-size: 0.84rem;
}

.hotel-map-open-link:hover,
.hotel-map-open-link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .hotel-profile-hero {
    grid-template-columns: 1fr;
  }

  .hotel-profile-hero-image-wrap {
    min-height: 260px;
  }

  .hotel-carousel,
  .hotel-carousel-dots,
  .hotel-description,
  .hotel-info-list {
    width: 100%;
  }

  .hotel-carousel-slide {
    height: 280px;
  }
}

@media (max-width: 720px) {
  .hotel-profile-card,
  .hotel-profile-hero-copy,
  .hotel-profile-section {
    padding: 0.9rem;
  }

  .hotel-carousel-track {
    gap: 0.36rem;
  }

  .hotel-carousel {
    width: 100%;
  }

  .hotel-carousel-slide {
    height: 150px;
  }

  .hotel-carousel-nav {
    width: 2.05rem;
    height: 2.05rem;
    font-size: 0.9rem;
  }

  .hotel-carousel-prev {
    left: 0.45rem;
  }

  .hotel-carousel-next {
    right: 0.45rem;
  }

  .hotel-carousel-dots {
    margin-top: 0.56rem;
    gap: 0.34rem;
  }

  .hotel-carousel-dot {
    width: 0.52rem;
    height: 0.52rem;
  }

  .hotel-lightbox {
    padding: 0.7rem;
  }

  .hotel-lightbox-close {
    top: 0.62rem;
    right: 0.62rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.08rem;
  }
}
