:root {
  --dest-blue: #0b3048;
  --dest-blue-light: #2371b6;
  --dest-orange: #d96f0d;
  --dest-cream: #f6f1e7;
  --dest-ink: #17333f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dest-ink);
  background: var(--dest-cream);
  font-family: "Nunito Sans", sans-serif;
}

.destination-hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 76px;
  overflow: hidden;
  isolation: isolate;
  background: #0b3048;
}

.destination-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.destination-hero::before {
  content: none;
}

.destination-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 22, 33, .9) 0%, rgba(4, 22, 33, .56) 52%, rgba(4, 22, 33, .16) 100%);
}

.destination-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}

.destination-kicker,
.destination-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8dcef6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.destination-hero h1 {
  margin: 18px 0;
  font-family: "Marcellus", serif;
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -3px;
}

.destination-hero h1 span {
  display: block;
  color: #e87916;
}

.destination-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.8;
}

.destination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.destination-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  color: #fff;
  background: var(--dest-orange);
  border: 1px solid var(--dest-orange);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}

.destination-btn:hover {
  color: #fff;
  background: #b95b08;
  transform: translateY(-2px);
}

.destination-btn.secondary {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .35);
  backdrop-filter: blur(10px);
}

.destination-btn.secondary:hover {
  background: #fff;
  color: var(--dest-ink);
}

.booking-page-header {
  padding: 142px 0 62px;
  color: #fff;
  background: linear-gradient(120deg, #092c42 0%, #154f68 58%, #2371b6 150%);
}

.booking-page-header .destination-label {
  color: #a8defa;
}

.booking-page-header h1 {
  max-width: 720px;
  margin: 18px 0;
  font-family: "Marcellus", serif;
  font-size: clamp(46px, 6.2vw, 82px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -2px;
}

.booking-page-header h1 span {
  color: #f29a45;
}

.booking-page-header p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.75;
}

.booking-page-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
}

.booking-page-assurance span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 700;
}

.booking-page-assurance i {
  color: #f29a45;
}

.destination-summary {
  position: relative;
  z-index: 2;
  margin: 0 auto 105px;
}

.destination-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 65px rgba(20, 42, 52, .14);
}

.destination-stat {
  padding: 25px 28px;
  border-right: 1px solid #ece6db;
}

.destination-stat:last-child {
  border-right: 0;
}

.destination-stat i {
  color: var(--dest-orange);
  font-size: 19px;
}

.destination-stat span {
  display: block;
  margin-top: 9px;
  color: #829096;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.destination-stat strong {
  display: block;
  margin-top: 3px;
  font-family: "Marcellus", serif;
  font-size: 18px;
  font-weight: 400;
}

.room-booking-section {
  padding: 82px 0 90px;
  background: #f3efe8;
}

.room-booking-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto 38px;
}

.room-booking-heading h2 {
  margin: 12px 0 0;
  font-family: "Marcellus", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}

.room-booking-heading h2 span {
  color: var(--dest-orange);
}

.room-booking-heading p {
  max-width: 470px;
  margin: 0 0 8px;
  color: #435962;
  font-size: 16px;
  line-height: 1.75;
}

.shared-access-banner {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
  gap: 36px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto 36px;
  padding: 28px 34px;
  color: #fff;
  background: #10364a;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 54, 74, .14);
}

.shared-access-label {
  display: block;
  color: #eeb16d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.shared-access-banner h3 {
  margin: 7px 0 0;
  font-family: "Marcellus", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.shared-access-banner h3 span {
  color: #eeb16d;
}

.shared-access-banner p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.78;
}

.room-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  max-width: none;
  margin: 0 auto;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(470px, .98fr) minmax(0, 1.02fr);
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2d9cb;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(20, 42, 52, .09);
  transition: transform .3s ease, box-shadow .3s ease;
}

.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 58px rgba(20, 42, 52, .15);
}

.room-gallery {
  min-height: 100%;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 0;
  background: #10364a;
}

.room-gallery-view {
  position: relative;
  flex: 1 1 auto;
  min-height: 410px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: #071f2d;
  border: 0;
  border-radius: 12px;
  cursor: zoom-in;
}

.room-gallery-view::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(5, 25, 37, .56));
  opacity: .7;
  pointer-events: none;
  transition: opacity .25s ease;
}

.room-gallery-view::after {
  position: absolute;
  z-index: 2;
  bottom: 15px;
  left: 15px;
  padding: 8px 10px;
  color: #fff;
  content: "View photos";
  background: rgba(7, 31, 45, .82);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .55px;
  text-transform: uppercase;
  pointer-events: none;
}

.room-gallery-view:hover::before {
  opacity: 1;
}

.room-gallery-view:focus-visible {
  outline: 3px solid #eeb16d;
  outline-offset: -6px;
}

.room-gallery-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .45s ease;
}

.room-gallery-view:hover .room-gallery-main {
  transform: scale(1.025);
}

.room-gallery-count {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(11, 37, 52, .9);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.room-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  padding: 7px 0 0;
}

.room-gallery-thumbs button {
  min-width: 0;
  height: 70px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

.room-gallery-thumbs button.active {
  border-color: #e69544;
}

.room-gallery-thumbs button:focus-visible {
  outline: 3px solid #2371b6;
  outline-offset: 2px;
}

.room-gallery-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.room-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 40px 44px;
  background: #fff;
}

.room-card-kicker {
  color: #bf6413;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.55px;
  text-transform: uppercase;
}

.room-card-content h3 {
  margin: 10px 0 15px;
  color: #10364a;
  font-family: "Marcellus", serif;
  font-size: clamp(36px, 3.3vw, 48px);
  font-weight: 400;
  line-height: 1.04;
}

.room-card-content>p {
  max-width: 670px;
  margin: 0;
  color: #405660;
  font-size: 16px;
  line-height: 1.75;
}

.room-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 18px;
  padding: 0;
  list-style: none;
}

.room-facts li {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  color: #183a4a;
  background: #f4f7f6;
  border: 1px solid #dfe8e4;
  border-left: 3px solid #d77a27;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.room-shared-access {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  margin-bottom: 21px;
  padding: 9px 12px;
  color: #0e536e;
  background: #e5f4f8;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.room-shared-access::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  content: "";
  background: #28a064;
  border-radius: 50%;
}

.room-details {
  margin: 0 0 25px;
  padding: 0 22px;
  color: #fff;
  background: #10364a;
  border: 0;
  border-radius: 10px;
}

.room-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.room-details summary::after {
  color: #eeb16d;
  content: "+";
  font-size: 19px;
  line-height: 1;
}

.room-details[open] summary::after {
  content: "-";
}

.room-details summary::-webkit-details-marker {
  display: none;
}

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

.room-amenities li {
  position: relative;
  padding-left: 15px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.45;
}

.room-amenities li::before {
  position: absolute;
  top: .44em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #eeb16d;
  border-radius: 50%;
}

.room-listing-note {
  margin: 0 0 20px !important;
  padding: 11px 12px;
  color: #fff0d9 !important;
  background: rgba(238, 177, 109, .13);
  border: 1px solid rgba(238, 177, 109, .28);
  border-radius: 6px;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.room-book-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 15px 18px;
  color: #fff;
  background: #c96d1b;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .45px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease;
}

.room-book-btn:hover {
  color: #fff;
  background: #10364a;
  transform: translateY(-2px);
}

.featured-room {
  border-color: #d69a59;
}

.room-photo-modal {
  width: min(1120px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #0b2b3d;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
}

.room-photo-modal::backdrop {
  background: rgba(3, 17, 25, .84);
  backdrop-filter: blur(6px);
}

.room-photo-modal-shell {
  padding: 20px;
}

.room-photo-modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 2px 16px;
}

.room-photo-modal-kicker {
  display: block;
  color: #eeb16d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.45px;
  text-transform: uppercase;
}

.room-photo-modal h2 {
  margin: 5px 0 0;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.room-photo-modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.room-photo-modal-close:hover {
  background: #c96d1b;
  transform: rotate(90deg);
}

.room-photo-modal-close:focus-visible, .room-photo-modal-nav:focus-visible, .room-photo-modal-thumbs button:focus-visible {
  outline: 3px solid #eeb16d;
  outline-offset: 3px;
}

.room-photo-modal-stage {
  min-height: min(62vh, 620px);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #061b28;
  border-radius: 12px;
}

.room-photo-modal-stage>img {
  width: 100%;
  height: min(62vh, 620px);
  display: block;
  object-fit: contain;
}

.room-photo-modal-nav {
  width: 46px;
  height: 46px;
  position: absolute;
  z-index: 1;
  top: 50%;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(7, 31, 45, .8);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .2s ease, transform .2s ease;
}

.room-photo-modal-nav:hover {
  background: #c96d1b;
  transform: translateY(-50%) scale(1.06);
}

.room-photo-modal-nav.previous {
  left: 18px;
}

.room-photo-modal-nav.next {
  right: 18px;
}

.room-photo-modal-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.room-photo-modal-nav:disabled:hover {
  background: rgba(7, 31, 45, .8);
  transform: translateY(-50%);
}

.room-photo-modal-count {
  position: absolute;
  bottom: 15px;
  left: 50%;
  padding: 7px 10px;
  color: #fff;
  background: rgba(7, 31, 45, .82);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  transform: translateX(-50%);
}

.room-photo-modal-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.room-photo-modal-thumbs button {
  height: 72px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  opacity: .68;
  transition: opacity .2s ease, border-color .2s ease;
}

.room-photo-modal-thumbs button:hover, .room-photo-modal-thumbs button.active {
  border-color: #eeb16d;
  opacity: 1;
}

.room-photo-modal-thumbs img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.room-photo-modal-hint {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  text-align: center;
}

@media (min-width: 992px) {

  .room-gallery,
  .room-card-content {
    min-height: 0;
  }

  .room-gallery-view {
    flex: 1 1 0;
    min-height: 0;
  }

  .room-gallery-thumbs {
    flex: 0 0 auto;
  }
}

.destination-section {
  padding: 105px 0;
}

.destination-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.destination-intro h2,
.destination-heading h2 {
  margin: 12px 0 20px;
  color: var(--dest-ink);
  font-family: "Marcellus", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.04;
}

.destination-intro h2 span,
.destination-heading h2 span {
  color: var(--dest-orange);
}

.destination-intro p {
  color: #65757d;
  font-size: 16px;
  line-height: 1.85;
}

.destination-intro-media {
  position: relative;
}

.destination-intro-media img {
  width: 100%;
  height: 540px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.destination-intro-note {
  max-width: 260px;
  position: absolute;
  left: -35px;
  bottom: 28px;
  padding: 20px 22px;
  color: #fff;
  background: var(--dest-blue);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(5, 31, 47, .25);
}

.destination-intro-note strong {
  display: block;
  font-family: "Marcellus", serif;
  font-size: 22px;
  font-weight: 400;
}

.destination-intro-note span {
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
}

.destination-experiences {
  background: var(--dest-blue);
}

.destination-experiences .destination-label {
  color: #83c7f2;
}

.destination-experiences .destination-heading h2 {
  color: #fff;
}

.destination-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.experience-card {
  min-height: 230px;
  padding: 30px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 15px;
  transition: transform .3s ease, background .3s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .11);
}

.experience-card i {
  color: #f18527;
  font-size: 28px;
}

.experience-card h3 {
  margin: 24px 0 10px;
  color: #fff;
  font-family: "Marcellus", serif;
  font-size: 25px;
  font-weight: 400;
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.7;
}

.destination-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 12px;
}

.destination-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 13px;
}

.destination-visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(20, 42, 52, .1);
}

.destination-visit iframe {
  width: 100%;
  min-height: 430px;
  border: 0;
}

.destination-visit-content {
  padding: 52px;
}

.destination-visit-content h2 {
  margin: 12px 0 18px;
  font-family: "Marcellus", serif;
  font-size: 43px;
  font-weight: 400;
}

.destination-address {
  display: flex;
  gap: 12px;
  padding: 18px 0;
  color: #63737b;
  border-top: 1px solid #eee7dc;
  line-height: 1.7;
}

.destination-address i {
  color: var(--dest-orange);
  margin-top: 4px;
}

.destination-address a {
  color: var(--dest-blue);
  font-weight: 800;
  text-decoration: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.destination-address a:hover,
.destination-address a:focus-visible {
  color: var(--dest-orange);
  text-decoration: underline;
}

.destination-visit .destination-btn {
  margin-top: 8px;
}

@media (max-width: 991px) {
  .destination-hero {
    min-height: 760px;
    padding: 160px 0 70px;
  }

  .booking-page-header {
    padding-top: 125px;
  }

  .destination-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destination-stat:nth-child(2) {
    border-right: 0;
  }

  .destination-stat:nth-child(-n+2) {
    border-bottom: 1px solid #ece6db;
  }

  .destination-intro {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .destination-intro-media img {
    height: 460px;
  }

  .destination-intro-note {
    left: 22px;
  }

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

  .room-card {
    grid-template-columns: 1fr;
  }

  .room-gallery-view {
    flex: 0 0 390px;
    min-height: 0;
    height: 390px;
  }

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

  .shared-access-banner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .destination-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .destination-gallery img:first-child {
    grid-column: 1 / -1;
  }

  .destination-visit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .destination-hero {
    min-height: 700px;
    padding: 140px 0 55px;
  }

  .booking-page-header {
    padding: 112px 0 48px;
  }

  .booking-page-header h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .booking-page-header p {
    font-size: 14px;
  }

  .booking-page-assurance {
    display: grid;
    gap: 11px;
  }

  .destination-hero h1 {
    font-size: 54px;
    letter-spacing: -1.5px;
  }

  .destination-hero p {
    font-size: 14px;
  }

  .destination-actions, .destination-btn {
    width: 100%;
  }

  .destination-summary {
    margin-bottom: 72px;
  }

  .destination-summary-grid {
    grid-template-columns: 1fr;
  }

  .destination-stat {
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid #ece6db;
  }

  .destination-stat:last-child {
    border-bottom: 0;
  }

  .destination-section {
    padding: 72px 0;
  }

  .room-booking-heading {
    display: block;
  }

  .room-booking-heading p {
    margin-top: 18px;
  }

  .shared-access-banner {
    padding: 23px 21px;
  }

  .room-gallery-view {
    flex-basis: 265px;
    height: 265px;
  }

  .room-gallery-thumbs button {
    height: 46px;
  }

  .room-card-content {
    padding: 23px;
  }

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

  .room-photo-modal {
    width: calc(100vw - 20px);
    max-height: calc(100dvh - 20px);
    border-radius: 14px;
  }

  .room-photo-modal-shell {
    padding: 12px;
  }

  .room-photo-modal-bar {
    padding: 2px 2px 12px;
  }

  .room-photo-modal h2 {
    font-size: 23px;
  }

  .room-photo-modal-stage {
    min-height: 48vh;
  }

  .room-photo-modal-stage>img {
    height: 48vh;
  }

  .room-photo-modal-nav {
    width: 39px;
    height: 39px;
  }

  .room-photo-modal-nav.previous {
    left: 10px;
  }

  .room-photo-modal-nav.next {
    right: 10px;
  }

  .room-photo-modal-thumbs button {
    height: 48px;
  }

  .room-photo-modal-hint {
    font-size: 10px;
  }

  .destination-intro-media img {
    height: 350px;
  }

  .destination-intro-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .experience-grid, .destination-gallery {
    grid-template-columns: 1fr;
  }

  .destination-gallery img, .destination-gallery img:first-child {
    height: 270px;
    grid-column: auto;
  }

  .destination-visit-content {
    padding: 32px 24px;
  }

  .destination-visit-content h2 {
    font-size: 36px;
  }

  .destination-visit iframe {
    min-height: 320px;
  }
}
