/* HiTrip hotel catalogue and hotel profile experience.
 * This stylesheet intentionally uses an isolated class namespace so the
 * previous hotel presentation cannot leak into the rebuilt screens.
 */

.hotel-experience-page,
.hotel-experience-detail {
  --hotel-ink: #17242f;
  --hotel-muted: #68747c;
  --hotel-green: #0b7f76;
  --hotel-green-dark: #075b55;
  --hotel-green-soft: #e9f4f1;
  --hotel-gold: #d9aa55;
  --hotel-gold-soft: #f8f1e5;
  --hotel-line: #e3e8e5;
  --hotel-surface: #ffffff;
  --hotel-canvas: #f5f7f4;
  --hotel-shadow: 0 18px 50px rgba(23, 36, 47, 0.08);
  --hotel-shadow-hover: 0 24px 60px rgba(23, 36, 47, 0.14);
  background: var(--hotel-canvas);
  color: var(--hotel-ink);
  position: relative;
}

.hotel-experience-page {
  padding: 32px 0 112px;
}

.hotel-experience-detail {
  padding: 118px 0 112px;
}

.hotel-experience-page *,
.hotel-experience-detail * {
  box-sizing: border-box;
}

.hotel-experience-page > .container,
.hotel-experience-detail > .container {
  position: relative;
  z-index: 1;
}

.hotel-experience-page .hitrip-service-tabs,
.hotel-experience-detail .hitrip-service-tabs {
  margin: 0 0 18px;
  max-width: 430px;
  overflow: visible;
  width: 100%;
}

.hotel-catalog-intro-copy .hitrip-service-tabs {
  margin: 20px 0 0;
}

.hotel-experience-page .hitrip-service-tabs-track,
.hotel-experience-detail .hitrip-service-tabs-track {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  padding: 0;
}

.hotel-experience-page .hitrip-service-tab,
.hotel-experience-detail .hitrip-service-tab {
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(60, 84, 69, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(21, 36, 28, 0.08);
  color: #2d4938;
  display: inline-flex;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  gap: 7px;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  min-width: 0;
  padding: 8px 10px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: normal;
  width: 100%;
}

.hotel-experience-page .hitrip-service-tab:hover,
.hotel-experience-detail .hitrip-service-tab:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(60, 84, 69, 0.22);
  box-shadow: 0 16px 34px rgba(21, 36, 28, 0.12);
  color: #172336;
  transform: translateY(-1px);
}

.hotel-experience-page .hitrip-service-tab.is-active,
.hotel-experience-page .hitrip-service-tab.is-active:hover,
.hotel-experience-detail .hitrip-service-tab.is-active,
.hotel-experience-detail .hitrip-service-tab.is-active:hover {
  background: #ffffff;
  border-color: rgba(60, 84, 69, 0.22);
  box-shadow: 0 16px 34px rgba(21, 36, 28, 0.12);
  color: #172336;
  pointer-events: none;
  transform: none;
}

.hotel-experience-page .hitrip-service-tab-icon,
.hotel-experience-detail .hitrip-service-tab-icon {
  color: inherit;
  flex: 0 0 auto;
  font-size: 13px;
  line-height: 1;
}

.hotel-experience-page h1,
.hotel-experience-page h2,
.hotel-experience-page h3,
.hotel-experience-detail h1,
.hotel-experience-detail h2,
.hotel-experience-detail h3 {
  color: var(--hotel-ink);
  font-family: "Rubik", sans-serif;
  letter-spacing: -0.035em;
  margin-top: 0;
}

.hotel-experience-page p,
.hotel-experience-detail p {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
}

/* Catalogue hero */
.hotel-experience-hero {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  height: 600px;
  margin-bottom: 92px;
}

.hotel-experience-hero-copy {
  align-items: flex-start;
  background: var(--hotel-surface);
  border: 1px solid var(--hotel-line);
  border-radius: 32px;
  box-shadow: var(--hotel-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 3.4vw, 48px);
}

.hotel-experience-kicker,
.hotel-experience-detail-section-head > span,
.hotel-experience-section-head > div > span,
.hotel-experience-group-head > div > span,
.hotel-experience-cta > div:first-child > span {
  align-items: center;
  color: var(--hotel-green);
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.14em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hotel-experience-kicker i {
  align-items: center;
  background: var(--hotel-green-soft);
  border-radius: 50%;
  display: inline-flex;
  font-size: 16px;
  height: 36px;
  justify-content: center;
  letter-spacing: normal;
  width: 36px;
}

.hotel-experience-hero-copy h1 {
  font-size: clamp(42px, 3.9vw, 58px);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 760px;
}

.hotel-experience-hero-copy > p {
  font-size: 18px;
  line-height: 1.72;
  margin: 0;
  max-width: 620px;
}

.hotel-experience-hero-actions,
.hotel-experience-detail-actions,
.hotel-experience-cta > div:last-child {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hotel-experience-hero-actions {
  margin-top: 32px;
}

.hotel-experience-hero-actions .primary-btn2,
.hotel-experience-detail-actions a,
.hotel-experience-cta a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hotel-experience-hero-actions .primary-btn2,
.hotel-experience-detail-actions .is-primary,
.hotel-experience-cta .is-primary {
  background: var(--hotel-green);
  color: #ffffff;
}

.hotel-experience-hero-actions .primary-btn2:hover,
.hotel-experience-detail-actions .is-primary:hover,
.hotel-experience-cta .is-primary:hover {
  background: var(--hotel-green-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.hotel-experience-text-link {
  border-bottom: 1px solid rgba(11, 127, 118, 0.35);
  color: var(--hotel-green-dark);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 2px 6px;
  text-decoration: none;
}

.hotel-experience-text-link:hover {
  border-color: var(--hotel-green);
  color: var(--hotel-green);
}

.hotel-experience-hero-gallery {
  border-radius: 32px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 2fr) minmax(150px, 0.82fr);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.hotel-experience-hero-gallery figure {
  background: #dfe5e1;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.hotel-experience-hero-gallery figure.is-main {
  grid-column: 1 / -1;
  grid-row: 1;
}

.hotel-experience-hero-gallery figure.is-side:nth-of-type(2):last-of-type {
  grid-column: 1 / -1;
  grid-row: 2;
}

.hotel-experience-hero-gallery figure:only-of-type {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.hotel-experience-hero-gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.hotel-experience-hero-gallery:hover img {
  transform: scale(1.025);
}

.hotel-experience-gallery-label {
  backdrop-filter: blur(12px);
  background: rgba(14, 29, 35, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  bottom: auto;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  left: 22px;
  max-width: calc(100% - 44px);
  padding: 14px 18px;
  position: absolute;
  top: 22px;
}

.hotel-experience-gallery-label span {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.76;
  text-transform: uppercase;
}

.hotel-experience-gallery-label strong {
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 500;
  margin-top: 2px;
}

/* Compact catalogue opening, aligned with the transfer landing page. */
.hotel-catalog-intro {
  background: #dce5df;
  border: 1px solid rgba(23, 36, 47, 0.08);
  border-radius: 24px;
  margin-bottom: 50px;
  min-height: 390px;
  overflow: hidden;
  position: relative;
}

.hotel-catalog-intro::after {
  background: linear-gradient(90deg, rgba(232, 240, 234, 0.97) 0%, rgba(224, 235, 227, 0.92) 42%, rgba(215, 228, 218, 0.68) 68%, rgba(255, 255, 255, 0.16) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hotel-catalog-intro-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 54%;
  position: absolute;
  width: 100%;
}

.hotel-catalog-intro-layout {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  min-height: 390px;
  padding: 34px 38px;
  position: relative;
  z-index: 1;
}

.hotel-catalog-intro-copy {
  max-width: 470px;
}

.hotel-catalog-intro-copy > span {
  align-items: center;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(60, 84, 69, 0.14);
  border-radius: 999px;
  color: #3d6350;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.13em;
  margin-bottom: 12px;
  min-height: 28px;
  padding: 5px 11px;
  text-transform: uppercase;
}

.hotel-catalog-intro-copy h1 {
  color: #172336;
  font-size: clamp(31px, 2.75vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 12px;
}

.hotel-catalog-intro-copy > p {
  color: #3f4b5b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
  max-width: 450px;
}

.hotel-catalog-intro-copy > small {
  align-items: center;
  color: #3d6350;
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  gap: 7px;
  margin-top: 17px;
}

.hotel-catalog-search {
  align-items: end;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(60, 84, 69, 0.14);
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(21, 36, 28, 0.15);
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: end;
  max-width: 540px;
  padding: 16px;
  width: 100%;
}

.hotel-catalog-search label,
.hotel-catalog-search-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
}

.hotel-catalog-search-field.is-search,
.hotel-catalog-search-action {
  grid-column: 1 / -1;
}

.hotel-catalog-search label > span,
.hotel-catalog-search-field > label {
  color: #445261;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding-left: 2px;
}

.hotel-catalog-search label > div,
.hotel-catalog-search-control {
  position: relative;
}

.hotel-catalog-search label > div > i,
.hotel-catalog-search-control > i {
  color: var(--hotel-green);
  font-size: 15px;
  left: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hotel-catalog-search input,
.hotel-catalog-search select {
  appearance: auto;
  background: #ffffff;
  border: 1px solid rgba(24, 33, 47, 0.1);
  border-radius: 12px;
  color: #18212f;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  height: 40px;
  min-height: 40px;
  outline: none;
  padding: 7px 10px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

.hotel-catalog-search input {
  padding-left: 38px;
}

.hotel-catalog-search input:focus,
.hotel-catalog-search select:focus {
  border-color: rgba(60, 84, 69, 0.34);
  box-shadow: 0 0 0 4px rgba(60, 84, 69, 0.08);
}

.hotel-catalog-search select {
  cursor: pointer;
}

.hotel-catalog-suggestions {
  background: #ffffff;
  border: 1px solid rgba(24, 33, 47, 0.12);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(21, 36, 28, 0.2);
  left: 0;
  max-height: 330px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 7px);
  z-index: 80;
}

.hotel-catalog-suggestions[hidden] {
  display: none;
}

.hotel-catalog-suggestion {
  align-items: flex-start;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--hotel-ink);
  display: flex;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  gap: 2px;
  padding: 10px 12px;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease;
  width: 100%;
}

.hotel-catalog-suggestion:hover,
.hotel-catalog-suggestion:focus-visible,
.hotel-catalog-suggestion.is-active {
  background: var(--hotel-green-soft);
  color: var(--hotel-green-dark);
  outline: none;
}

.hotel-catalog-suggestion strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.hotel-catalog-suggestion span {
  color: var(--hotel-muted);
  font-size: 11px;
  line-height: 1.35;
}

.hotel-catalog-suggestions-empty {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  padding: 11px 12px;
}

.hotel-catalog-search-action {
  align-items: center;
  display: flex;
  gap: 10px;
}

.hotel-catalog-search-action button {
  align-items: center;
  background: var(--hotel-green);
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  display: inline-flex;
  flex: 1;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  height: 44px;
  justify-content: center;
  padding: 0 18px;
}

.hotel-catalog-search-action button:hover {
  background: var(--hotel-green-dark);
}

.hotel-catalog-search-action > a {
  color: var(--hotel-muted);
  flex: 0 0 auto;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px;
}

/* Catalogue directory */
.hotel-experience-directory,
.hotel-experience-alternatives {
  scroll-margin-top: 120px;
}

.hotel-experience-section-head,
.hotel-experience-group-head {
  align-items: end;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
}

.hotel-experience-section-head {
  margin-bottom: 24px;
}

.hotel-experience-section-head h2,
.hotel-experience-group-head h2 {
  font-size: clamp(29px, 2.6vw, 36px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 0;
}

.hotel-experience-section-head > p,
.hotel-experience-group-head > p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 610px;
}

.hotel-experience-category-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}

.hotel-experience-category-pills a {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 12px;
  color: var(--hotel-ink);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
  min-height: 44px;
  padding: 10px 15px;
  text-decoration: none;
  transition: 180ms ease;
}

.hotel-experience-category-pills a small {
  align-items: center;
  background: var(--hotel-canvas);
  border-radius: 8px;
  color: var(--hotel-muted);
  display: inline-flex;
  font-size: 11px;
  height: 24px;
  justify-content: center;
  min-width: 24px;
  padding: 0 6px;
}

.hotel-experience-category-pills a:hover,
.hotel-experience-category-pills a.is-active {
  background: var(--hotel-green-dark);
  border-color: var(--hotel-green-dark);
  color: #ffffff;
}

.hotel-experience-category-pills a.is-active small,
.hotel-experience-category-pills a:hover small {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hotel-experience-filter {
  align-items: end;
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 22px;
  box-shadow: 0 12px 34px rgba(23, 36, 47, 0.05);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(280px, 1.5fr) minmax(160px, 0.65fr) minmax(170px, 0.7fr) auto;
  padding: 20px;
}

.hotel-experience-filter label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.hotel-experience-filter label > span {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 3px;
  text-transform: uppercase;
}

.hotel-experience-filter label > div {
  position: relative;
}

.hotel-experience-filter label > div i {
  color: var(--hotel-green);
  font-size: 17px;
  left: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hotel-experience-filter input,
.hotel-experience-filter select {
  appearance: auto;
  background: var(--hotel-canvas);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--hotel-ink);
  font-family: "Jost", sans-serif;
  font-size: 15px;
  height: 50px;
  outline: none;
  padding: 0 14px;
  transition: border-color 180ms ease, background-color 180ms ease;
  width: 100%;
}

.hotel-experience-filter input {
  padding-left: 44px;
}

.hotel-experience-filter input:focus,
.hotel-experience-filter select:focus {
  background: #ffffff;
  border-color: var(--hotel-green);
}

.hotel-experience-filter-action {
  align-items: center;
  display: flex;
  gap: 10px;
}

.hotel-experience-filter-action button {
  align-items: center;
  background: var(--hotel-green);
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  gap: 9px;
  height: 50px;
  justify-content: center;
  padding: 0 20px;
  white-space: nowrap;
}

.hotel-experience-filter-action button:hover {
  background: var(--hotel-green-dark);
}

.hotel-experience-filter-action > a {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.hotel-experience-result-count {
  align-items: center;
  color: var(--hotel-green-dark);
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  gap: 8px;
  margin: 16px 4px 34px;
}

.hotel-experience-result-count i {
  font-size: 17px;
}

.hotel-experience-empty {
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 24px;
  padding: 72px 26px;
  text-align: center;
}

.hotel-experience-empty > i {
  align-items: center;
  background: var(--hotel-green-soft);
  border-radius: 50%;
  color: var(--hotel-green);
  display: inline-flex;
  font-size: 24px;
  height: 62px;
  justify-content: center;
  margin-bottom: 20px;
  width: 62px;
}

.hotel-experience-empty h2 {
  font-size: 25px;
  margin-bottom: 8px;
}

.hotel-experience-empty p {
  font-size: 16px;
  margin: 0;
}

.hotel-experience-card[hidden],
.hotel-experience-group[hidden],
.hotel-experience-empty[hidden],
.hotel-experience-load-more[hidden],
.hotel-catalog-search-action > a[hidden] {
  display: none !important;
}

.hotel-experience-group + .hotel-experience-group {
  border-top: 1px solid var(--hotel-line);
  margin-top: 76px;
  padding-top: 76px;
}

.hotel-experience-group-head {
  margin-bottom: 28px;
}

.hotel-experience-group-head h2 {
  font-size: clamp(26px, 2.15vw, 32px);
}

.hotel-experience-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hotel-experience-load-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.hotel-experience-load-more button {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(11, 127, 118, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(23, 36, 47, 0.07);
  color: var(--hotel-green-dark);
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  font-family: "Jost", sans-serif;
  gap: 3px;
  justify-content: center;
  min-height: 62px;
  min-width: 230px;
  padding: 10px 24px;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hotel-experience-load-more button > span {
  align-items: center;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}

.hotel-experience-load-more button > small {
  color: var(--hotel-muted);
  font-size: 11px;
  font-weight: 500;
}

.hotel-experience-load-more button:hover {
  background: var(--hotel-green-dark);
  border-color: var(--hotel-green-dark);
  box-shadow: 0 16px 34px rgba(7, 91, 85, 0.18);
  color: #ffffff;
  transform: translateY(-2px);
}

.hotel-experience-load-more button:hover > small {
  color: rgba(255, 255, 255, 0.78);
}

.hotel-experience-load-more button:focus-visible,
.hotel-experience-category-pills a:focus-visible,
.hotel-catalog-search-action button:focus-visible,
.hotel-catalog-search-action > a:focus-visible {
  outline: 3px solid rgba(11, 127, 118, 0.26);
  outline-offset: 3px;
}

.hotel-experience-card {
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(23, 36, 47, 0.045);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 12px;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.hotel-experience-card:hover {
  border-color: rgba(11, 127, 118, 0.25);
  box-shadow: var(--hotel-shadow-hover);
  transform: translateY(-6px);
}

.hotel-experience-card-media {
  aspect-ratio: 4 / 3;
  background: #e8ece9;
  border-radius: 19px;
  overflow: hidden;
  position: relative;
}

.hotel-experience-card-media > a,
.hotel-experience-card-media img {
  display: block;
  height: 100%;
  width: 100%;
}

.hotel-experience-card-media img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hotel-experience-placeholder {
  --placeholder-base: #0b514a;
  align-items: flex-start;
  background-color: var(--placeholder-base);
  background-image: radial-gradient(circle at 82% 18%, rgba(217, 170, 85, 0.3), transparent 27%), linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 48%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  position: absolute;
  text-align: left;
}

.hotel-experience-placeholder::before {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
  height: 210px;
  position: absolute;
  right: -88px;
  top: -94px;
  width: 210px;
}

.hotel-experience-placeholder::after {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 30px);
  bottom: 0;
  content: "";
  height: 42%;
  left: 0;
  mask-image: linear-gradient(to top, #000, transparent);
  position: absolute;
  width: 100%;
}

.hotel-experience-placeholder > span,
.hotel-experience-placeholder > strong,
.hotel-experience-placeholder > small,
.hotel-experience-placeholder > i {
  position: relative;
  z-index: 1;
}

.hotel-experience-placeholder > span {
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.14em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.hotel-experience-placeholder > span i {
  color: var(--hotel-gold);
  font-size: 15px;
}

.hotel-experience-placeholder > strong {
  color: #ffffff;
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hotel-experience-placeholder > small {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  line-height: 1.35;
  margin-top: 6px;
}

.hotel-experience-card:nth-child(4n + 2) .hotel-experience-placeholder {
  --placeholder-base: #173f4d;
}

.hotel-experience-card:nth-child(4n + 3) .hotel-experience-placeholder {
  --placeholder-base: #3f4947;
}

.hotel-experience-card:nth-child(4n + 4) .hotel-experience-placeholder {
  --placeholder-base: #315144;
}

.hotel-experience-card:hover .hotel-experience-card-media img {
  transform: scale(1.045);
}

.hotel-experience-card-media > span {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  color: var(--hotel-ink);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  left: 12px;
  padding: 7px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
}

.hotel-experience-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 8px 7px;
}

.hotel-experience-card-meta {
  align-items: center;
  display: flex;
  gap: 8px 14px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hotel-experience-card-meta span {
  align-items: center;
  color: var(--hotel-muted);
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  gap: 5px;
  min-width: 0;
}

.hotel-experience-card-meta span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-experience-card-meta i {
  color: var(--hotel-green);
}

.hotel-experience-card-meta span:last-child i {
  color: var(--hotel-gold);
}

.hotel-experience-card-meta small {
  color: #8a949a;
  font-size: 10px;
}

.hotel-experience-card h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 10px;
}

.hotel-experience-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hotel-experience-card h3 a:hover {
  color: var(--hotel-green);
}

.hotel-experience-card-content > p {
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 20px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hotel-experience-card-bottom {
  align-items: center;
  border-top: 1px solid var(--hotel-line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
}

.hotel-experience-card-bottom > span {
  align-items: center;
  color: var(--hotel-muted);
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  gap: 6px;
  line-height: 1.2;
}

.hotel-experience-card-bottom > span i {
  color: var(--hotel-green);
  font-size: 14px;
}

.hotel-experience-card-bottom > a {
  align-items: center;
  color: var(--hotel-green-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  font-weight: 700;
  gap: 6px;
  text-decoration: none;
}

/* Hotel detail hero */
.hotel-experience-detail-hero {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  height: auto;
  margin-bottom: 28px;
}

.hotel-experience-detail-gallery {
  border-radius: 30px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(0, 2fr) minmax(150px, 0.9fr);
  height: clamp(480px, 36vw, 520px);
  max-height: 520px;
  min-height: 480px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hotel-experience-detail-gallery > a {
  background: #e4e9e6;
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.hotel-experience-detail-gallery > a.is-main {
  grid-column: 1 / -1;
  grid-row: 1;
}

.hotel-experience-detail-gallery > a.is-side:nth-of-type(2):last-of-type {
  grid-column: 1 / -1;
  grid-row: 2;
}

.hotel-experience-detail-gallery > a:only-of-type {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
}

.hotel-experience-detail-gallery img {
  display: block;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.hotel-experience-detail-gallery > a:hover img {
  transform: scale(1.035);
}

.hotel-experience-detail-gallery > .hotel-experience-placeholder.is-detail {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  inset: auto;
  justify-content: center;
  padding: clamp(34px, 6vw, 76px);
  position: relative;
}

.hotel-experience-placeholder.is-detail > span {
  font-size: 12px;
  margin-bottom: 18px;
}

.hotel-experience-placeholder.is-detail > strong {
  font-size: clamp(36px, 5vw, 68px);
  max-width: 760px;
}

.hotel-experience-placeholder.is-detail > small {
  font-size: 14px;
  margin-top: 12px;
}

.hotel-experience-detail-gallery > a.is-main > span {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(17, 31, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  bottom: 18px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  gap: 8px;
  left: 18px;
  padding: 10px 13px;
  position: absolute;
}

.hotel-experience-hidden-gallery {
  display: none;
}

.hotel-experience-detail-summary {
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 30px;
  box-shadow: var(--hotel-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(480px, 36vw, 520px);
  padding: clamp(30px, 2.6vw, 38px);
}

.hotel-experience-detail-kicker {
  align-items: center;
  color: var(--hotel-green);
  display: flex;
  flex-wrap: wrap;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.09em;
  margin-bottom: 19px;
  text-transform: uppercase;
}

.hotel-experience-detail-kicker > span {
  background: #cfd7d3;
  border-radius: 50%;
  display: block;
  height: 4px;
  width: 4px;
}

.hotel-experience-detail-summary h1 {
  font-size: clamp(38px, 3.2vw, 50px);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 17px;
}

.hotel-experience-detail-rating {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.hotel-experience-detail-rating strong {
  align-items: center;
  background: var(--hotel-gold-soft);
  border-radius: 10px;
  color: #8b671e;
  display: inline-flex;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  gap: 6px;
  padding: 8px 10px;
}

.hotel-experience-detail-rating span {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
  font-size: 14px;
}

.hotel-experience-detail-summary > p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 20px;
  overflow: hidden;
}

.hotel-experience-detail-facts {
  border-bottom: 1px solid var(--hotel-line);
  border-top: 1px solid var(--hotel-line);
  display: grid;
  gap: 14px;
  padding: 18px 0;
}

.hotel-experience-detail-facts > div {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 38px minmax(0, 1fr);
}

.hotel-experience-detail-facts > div > i {
  align-items: center;
  background: var(--hotel-green-soft);
  border-radius: 11px;
  color: var(--hotel-green);
  display: inline-flex;
  font-size: 16px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.hotel-experience-detail-facts span {
  display: flex;
  flex-direction: column;
}

.hotel-experience-detail-facts small {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.hotel-experience-detail-facts strong {
  color: var(--hotel-ink);
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.hotel-experience-detail-actions {
  margin-top: 22px;
}

.hotel-experience-detail-actions a {
  flex: 1 1 180px;
}

.hotel-experience-detail-actions .is-secondary,
.hotel-experience-cta .is-secondary {
  background: #ffffff;
  border-color: var(--hotel-line);
  color: var(--hotel-ink);
}

.hotel-experience-detail-actions .is-secondary:hover,
.hotel-experience-cta .is-secondary:hover {
  border-color: var(--hotel-green);
  color: var(--hotel-green);
  transform: translateY(-2px);
}

.hotel-experience-detail-nav {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 16px;
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  overflow-x: auto;
  padding: 7px;
  scrollbar-width: none;
}

.hotel-experience-detail-nav::-webkit-scrollbar {
  display: none;
}

.hotel-experience-detail-nav a {
  border-radius: 10px;
  color: var(--hotel-muted);
  flex: 0 0 auto;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 16px;
  text-decoration: none;
}

.hotel-experience-detail-nav a:first-child,
.hotel-experience-detail-nav a:hover {
  background: var(--hotel-green-soft);
  color: var(--hotel-green-dark);
}

/* Hotel detail content */
.hotel-experience-detail-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.hotel-experience-detail-main {
  display: grid;
  gap: 24px;
}

.hotel-experience-detail-section {
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 26px;
  padding: clamp(28px, 3.2vw, 48px);
  scroll-margin-top: 120px;
}

.hotel-experience-detail-section-head {
  margin-bottom: 24px;
}

.hotel-experience-detail-section-head h2 {
  font-size: clamp(29px, 2.4vw, 38px);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 0;
}

.hotel-experience-detail-section-head > p {
  font-size: 15px;
  line-height: 1.7;
  margin: 13px 0 0;
  max-width: 760px;
}

.hotel-experience-detail-copy,
.hotel-experience-detail-copy p,
.hotel-experience-detail-copy li {
  color: var(--hotel-muted);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.82;
}

.hotel-experience-detail-copy p:last-child {
  margin-bottom: 0;
}

.hotel-experience-detail-copy h2,
.hotel-experience-detail-copy h3,
.hotel-experience-detail-copy h4 {
  color: var(--hotel-ink);
  font-family: "Rubik", sans-serif;
  letter-spacing: -0.025em;
  margin: 28px 0 12px;
}

.hotel-experience-room-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hotel-experience-room-card {
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 20px;
  box-shadow: 0 9px 26px rgba(23, 36, 47, 0.04);
  min-width: 0;
  overflow: hidden;
  padding: 9px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hotel-experience-room-card:hover {
  border-color: rgba(11, 127, 118, 0.24);
  box-shadow: 0 16px 36px rgba(23, 36, 47, 0.09);
  transform: translateY(-2px);
}

.hotel-experience-room-media {
  aspect-ratio: 16 / 10;
  background: var(--hotel-canvas);
  border-radius: 14px;
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hotel-experience-room-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.hotel-experience-room-card:hover .hotel-experience-room-media img {
  transform: scale(1.035);
}

.hotel-experience-room-media > span {
  align-items: center;
  backdrop-filter: blur(9px);
  background: rgba(17, 31, 38, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  bottom: 10px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
  left: 10px;
  padding: 7px 9px;
  position: absolute;
}

.hotel-experience-room-media.is-placeholder {
  align-items: center;
  background: var(--hotel-green-soft);
  color: var(--hotel-green);
  display: flex;
  font-size: 30px;
  justify-content: center;
}

.hotel-experience-room-body {
  padding: 15px 11px 11px;
}

.hotel-experience-room-heading > span {
  color: var(--hotel-green);
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.hotel-experience-room-heading h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.hotel-experience-room-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  margin: 11px 0 0;
  padding: 0;
}

.hotel-experience-room-card li {
  align-items: center;
  color: var(--hotel-muted);
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  gap: 6px;
}

.hotel-experience-room-card li i {
  color: var(--hotel-green);
}

.hotel-experience-room-empty {
  align-items: center;
  background: var(--hotel-canvas);
  border-radius: 18px;
  color: var(--hotel-muted);
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  gap: 14px;
  padding: 22px;
}

.hotel-experience-room-empty i {
  color: var(--hotel-green);
  font-size: 22px;
}

.hotel-experience-amenities {
  display: grid;
  gap: 10px 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.hotel-experience-amenities li {
  align-items: center;
  background: var(--hotel-canvas);
  border-radius: 12px;
  color: var(--hotel-ink);
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  gap: 9px;
  min-height: 48px;
  padding: 10px 13px;
}

.hotel-experience-amenities li i {
  align-items: center;
  background: var(--hotel-green-soft);
  border-radius: 50%;
  color: var(--hotel-green);
  display: inline-flex;
  flex: 0 0 auto;
  height: 25px;
  justify-content: center;
  width: 25px;
}

.hotel-experience-detail-aside {
  position: sticky;
  top: 110px;
}

.hotel-experience-process-card {
  background: var(--hotel-green-dark);
  border-radius: 24px;
  color: #ffffff;
  overflow: hidden;
  padding: 32px;
  position: relative;
}

.hotel-experience-process-card::after {
  border: 28px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  height: 150px;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 150px;
}

.hotel-experience-process-card > span {
  color: #b9d9d4;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hotel-experience-process-card h2 {
  color: #ffffff;
  font-size: 31px;
  font-weight: 500;
  margin: 8px 0 10px;
}

.hotel-experience-process-card > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.hotel-experience-process-card ul {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 24px 0;
  padding: 22px 0;
}

.hotel-experience-process-card li {
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.86);
  display: grid;
  font-family: "Jost", sans-serif;
  font-size: 13px;
  gap: 9px;
  grid-template-columns: 20px minmax(0, 1fr);
  line-height: 1.4;
}

.hotel-experience-process-card li i {
  align-items: center;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  display: flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.hotel-experience-process-card > a {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  text-decoration: none;
}

/* Alternatives and final CTA */
.hotel-experience-alternatives {
  border-top: 1px solid var(--hotel-line);
  margin-top: 82px;
  padding-top: 82px;
}

.hotel-experience-alternative-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hotel-experience-alternative-card {
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 22px;
  color: var(--hotel-ink);
  display: grid;
  gap: 15px;
  grid-template-columns: 128px minmax(0, 1fr);
  padding: 10px;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hotel-experience-alternative-card:hover {
  border-color: rgba(11, 127, 118, 0.25);
  box-shadow: var(--hotel-shadow);
  color: var(--hotel-ink);
  transform: translateY(-4px);
}

.hotel-experience-alternative-media {
  border-radius: 15px;
  display: block;
  height: 118px;
  overflow: hidden;
  position: relative;
}

.hotel-experience-alternative-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hotel-experience-placeholder.is-compact {
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.hotel-experience-placeholder.is-compact > i {
  color: var(--hotel-gold);
  font-size: 24px;
  margin-bottom: 7px;
}

.hotel-experience-placeholder.is-compact > strong {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.2;
}

.hotel-experience-alternative-content {
  align-self: center;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding-right: 8px;
}

.hotel-experience-alternative-content small {
  align-items: center;
  color: var(--hotel-green);
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  gap: 5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.hotel-experience-alternative-content strong {
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 9px;
}

.hotel-experience-alternative-content em {
  align-items: center;
  color: var(--hotel-muted);
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-style: normal;
  justify-content: space-between;
}

.hotel-experience-alternative-content em i {
  color: var(--hotel-green);
  font-size: 16px;
}

.hotel-experience-cta {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--hotel-line);
  border-radius: 28px;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 64px;
  overflow: hidden;
  padding: clamp(32px, 4vw, 58px);
  position: relative;
}

.hotel-experience-cta::before {
  background: var(--hotel-gold);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 5px;
}

.hotel-experience-cta h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
  max-width: 720px;
}

.hotel-experience-cta p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 1199px) {
  .hotel-experience-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  }

  .hotel-experience-hero-copy {
    padding: 42px;
  }

  .hotel-experience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hotel-experience-filter {
    grid-template-columns: minmax(260px, 1.4fr) minmax(155px, 0.7fr) minmax(165px, 0.8fr);
  }

  .hotel-experience-filter-action {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .hotel-experience-detail-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .hotel-experience-detail-gallery {
    min-height: 0;
  }

  .hotel-experience-detail-summary {
    padding: 32px;
  }

  .hotel-experience-detail-summary h1 {
    font-size: 40px;
  }

  .hotel-experience-alternative-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .hotel-experience-alternative-media {
    height: 108px;
  }
}

@media (max-width: 1099px) {
  .hotel-experience-hero,
  .hotel-experience-detail-hero {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hotel-experience-hero {
    gap: 20px;
  }

  .hotel-experience-hero-gallery {
    height: 500px;
    order: -1;
  }

  .hotel-experience-hero-copy {
    padding: 44px;
  }

  .hotel-experience-detail-gallery {
    height: 460px;
    min-height: 0;
  }

  .hotel-experience-detail-summary {
    min-height: 0;
    padding: 42px;
  }

  .hotel-experience-detail-layout {
    grid-template-columns: 1fr;
  }

  .hotel-experience-detail-aside {
    position: static;
  }
}

@media (max-width: 991px) {
  .hotel-experience-page,
  .hotel-experience-detail {
    padding: 96px 0 90px;
  }

  .hotel-experience-hero,
  .hotel-experience-detail-hero {
    grid-template-columns: 1fr;
  }

  .hotel-experience-hero {
    margin-bottom: 72px;
  }

  .hotel-experience-hero-gallery {
    height: 460px;
    min-height: 460px;
    order: -1;
  }

  .hotel-experience-hero-copy {
    padding: 44px;
  }

  .hotel-catalog-intro,
  .hotel-catalog-intro-layout {
    min-height: 0;
  }

  .hotel-catalog-intro::after {
    background: linear-gradient(180deg, rgba(232, 240, 234, 0.96) 0%, rgba(224, 235, 227, 0.9) 58%, rgba(215, 228, 218, 0.72) 100%);
  }

  .hotel-catalog-intro-layout {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .hotel-catalog-intro-copy {
    max-width: 650px;
  }

  .hotel-catalog-search {
    justify-self: stretch;
    max-width: 650px;
  }

  .hotel-experience-section-head,
  .hotel-experience-group-head {
    align-items: start;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .hotel-experience-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-experience-filter label.is-search {
    grid-column: 1 / -1;
  }

  .hotel-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hotel-experience-detail-gallery {
    height: 460px;
    min-height: 0;
  }

  .hotel-experience-detail-summary {
    padding: 42px;
  }

  .hotel-experience-detail-layout {
    grid-template-columns: 1fr;
  }

  .hotel-experience-detail-aside {
    position: static;
  }

  .hotel-experience-process-card {
    padding: 34px;
  }

  .hotel-experience-alternative-grid {
    grid-template-columns: 1fr;
  }

  .hotel-experience-alternative-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .hotel-experience-alternative-media {
    height: 120px;
  }

  .hotel-experience-cta {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .hotel-experience-page {
    padding: 18px 0 72px;
  }

  .hotel-experience-detail {
    padding: 78px 0 72px;
  }

  .hotel-experience-page .hitrip-service-tabs,
  .hotel-experience-detail .hitrip-service-tabs {
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hotel-catalog-intro-copy .hitrip-service-tabs {
    margin-top: 16px;
  }

  .hotel-experience-page .hitrip-service-tabs-track,
  .hotel-experience-detail .hitrip-service-tabs-track {
    gap: 6px;
    overflow: visible;
    padding: 0;
  }

  .hotel-experience-page .hitrip-service-tab,
  .hotel-experience-detail .hitrip-service-tab {
    font-size: 12px;
    gap: 5px;
    min-height: 42px;
    padding: 8px 6px;
  }

  .hotel-experience-page .hitrip-service-tab-icon,
  .hotel-experience-detail .hitrip-service-tab-icon {
    font-size: 13px;
  }

  .hotel-catalog-intro {
    border-radius: 20px;
    margin-bottom: 36px;
  }

  .hotel-catalog-intro-layout {
    gap: 18px;
    padding: 24px 20px;
  }

  .hotel-catalog-intro-copy > span {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .hotel-catalog-intro-copy h1 {
    font-size: 29px;
    margin-bottom: 10px;
  }

  .hotel-catalog-intro-copy > p {
    font-size: 13px;
    line-height: 1.48;
  }

  .hotel-catalog-intro-copy > small {
    font-size: 11px;
    margin-top: 12px;
  }

  .hotel-catalog-search {
    border-radius: 18px;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hotel-catalog-search-field.is-search,
  .hotel-catalog-search-action {
    grid-column: auto;
  }

  .hotel-catalog-search-action {
    align-items: stretch;
    flex-direction: column;
  }

  .hotel-catalog-search-action > a {
    text-align: center;
  }

  .hotel-experience-hero {
    gap: 16px;
    margin-bottom: 56px;
    min-height: 0;
  }

  .hotel-experience-hero-gallery {
    border-radius: 22px;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 2fr) minmax(100px, 0.72fr);
    height: 340px;
    min-height: 340px;
  }

  .hotel-experience-gallery-label {
    bottom: auto;
    left: 12px;
    max-width: calc(100% - 24px);
    padding: 11px 13px;
    top: 12px;
  }

  .hotel-experience-gallery-label strong {
    font-size: 14px;
  }

  .hotel-experience-hero-copy {
    border-radius: 22px;
    padding: 30px 24px;
  }

  .hotel-experience-hero-copy h1 {
    font-size: 36px;
    margin-bottom: 17px;
  }

  .hotel-experience-hero-copy > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hotel-experience-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 25px;
  }

  .hotel-experience-hero-actions .primary-btn2 {
    width: 100%;
  }

  .hotel-experience-section-head h2,
  .hotel-experience-group-head h2 {
    font-size: 31px;
  }

  .hotel-experience-category-pills {
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hotel-experience-filter {
    border-radius: 18px;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .hotel-experience-filter label.is-search,
  .hotel-experience-filter-action {
    grid-column: auto;
  }

  .hotel-experience-filter-action {
    align-items: stretch;
    flex-direction: column;
  }

  .hotel-experience-filter-action button {
    width: 100%;
  }

  .hotel-experience-filter-action > a {
    padding: 4px;
    text-align: center;
  }

  .hotel-experience-result-count {
    margin-bottom: 34px;
  }

  .hotel-experience-grid {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .hotel-experience-load-more {
    margin-top: 22px;
  }

  .hotel-experience-load-more button {
    min-width: 0;
    width: 100%;
  }

  .hotel-experience-card {
    border-radius: 22px;
  }

  .hotel-experience-card-media {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .hotel-experience-card-content {
    padding: 18px 7px 6px;
  }

  .hotel-experience-card-content > p {
    -webkit-line-clamp: 2;
  }

  .hotel-experience-group + .hotel-experience-group {
    margin-top: 54px;
    padding-top: 54px;
  }

  .hotel-experience-detail-hero {
    gap: 16px;
  }

  .hotel-experience-detail-gallery {
    border-radius: 22px;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: minmax(0, 2fr) minmax(100px, 0.75fr);
    height: 345px;
    min-height: 0;
  }

  .hotel-experience-detail-summary {
    border-radius: 22px;
    padding: 29px 23px;
  }

  .hotel-experience-detail-summary h1 {
    font-size: 36px;
  }

  .hotel-experience-detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hotel-experience-detail-actions a {
    flex: 0 0 auto;
    width: 100%;
  }

  .hotel-experience-detail-nav {
    margin-left: -1px;
    margin-right: -1px;
  }

  .hotel-experience-detail-section {
    border-radius: 21px;
    padding: 27px 22px;
  }

  .hotel-experience-detail-section-head h2 {
    font-size: 29px;
  }

  .hotel-experience-room-grid,
  .hotel-experience-amenities {
    grid-template-columns: 1fr;
  }

  .hotel-experience-process-card {
    border-radius: 21px;
    padding: 28px 24px;
  }

  .hotel-experience-alternatives {
    margin-top: 58px;
    padding-top: 58px;
  }

  .hotel-experience-alternative-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .hotel-experience-alternative-media {
    height: 105px;
  }

  .hotel-experience-cta {
    border-radius: 22px;
    margin-top: 48px;
    padding: 31px 23px 31px 27px;
  }

  .hotel-experience-cta > div:last-child {
    align-items: stretch;
    flex-direction: column;
  }

  .hotel-experience-cta a {
    width: 100%;
  }
}

@media (min-width: 1100px) {
  .hotel-experience-detail-summary {
    padding: 28px 30px;
  }

  .hotel-experience-detail-kicker {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hotel-experience-detail-summary h1 {
    font-size: clamp(36px, 2.8vw, 44px);
    margin-bottom: 12px;
  }

  .hotel-experience-detail-rating {
    margin-bottom: 14px;
  }

  .hotel-experience-detail-rating strong {
    padding: 7px 9px;
  }

  .hotel-experience-detail-summary > p {
    -webkit-line-clamp: 2;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .hotel-experience-detail-facts {
    gap: 8px;
    padding: 13px 0;
  }

  .hotel-experience-detail-facts > div {
    gap: 10px;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .hotel-experience-detail-facts > div > i {
    font-size: 14px;
    height: 34px;
    width: 34px;
  }

  .hotel-experience-detail-facts small {
    font-size: 10px;
  }

  .hotel-experience-detail-facts strong {
    font-size: 13px;
  }

  .hotel-experience-detail-actions {
    gap: 8px;
    margin-top: 14px;
  }

  .hotel-experience-detail-actions a {
    font-size: 14px;
    min-height: 44px;
    padding: 10px 14px;
  }
}

@media (max-width: 420px) {
  .hotel-experience-hero-gallery,
  .hotel-experience-detail-gallery {
    display: block;
    height: 285px;
    min-height: 0;
  }

  .hotel-experience-hero-gallery figure.is-side,
  .hotel-experience-detail-gallery > a.is-side {
    display: none;
  }

  .hotel-experience-hero-gallery figure.is-main,
  .hotel-experience-detail-gallery > a.is-main {
    height: 100%;
  }

  .hotel-experience-card-bottom {
    align-items: flex-start;
  }

  .hotel-experience-card-bottom > span {
    max-width: 55%;
  }

  .hotel-experience-detail-kicker {
    font-size: 10px;
  }

  .hotel-experience-detail-summary h1 {
    font-size: 32px;
  }

  .hotel-experience-alternative-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .hotel-experience-alternative-media {
    height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotel-experience-page *,
  .hotel-experience-detail * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
