:root {
  --navy: #081d2e;
  --navy-soft: #12344a;
  --gold: #d3a84e;
  --gold-dark: #ad7c25;
  --paper: #f7f6f2;
  --white: #ffffff;
  --ink: #15212a;
  --muted: #65727c;
  --line: #dfe3e4;
  --green: #2f7567;
  --coral: #c9664f;
  --shadow: 0 18px 50px rgba(8, 29, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(20px, 4vw, 68px);
  background: rgba(7, 25, 39, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, min-height 180ms ease;
}

.site-header.scrolled {
  min-height: 68px;
  background: rgba(7, 25, 39, 0.98);
}

.brand {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.18rem;
}

.brand small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: var(--navy);
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.icon-button svg,
.text-link svg,
.tile-content svg,
.footer-message svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
}

.button-gold:hover {
  background: #e3bd6c;
}

.button-dark {
  background: var(--navy);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-soft);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(8, 29, 46, 0.18);
}

.button-ghost:hover {
  background: rgba(8, 29, 46, 0.64);
  border-color: var(--white);
}

.button-outline {
  background: transparent;
  border-color: var(--navy);
}

.button-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 92svh);
  padding: 145px clamp(20px, 7vw, 110px) 45px;
  align-items: end;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 36, 0.92) 0%, rgba(5, 22, 36, 0.62) 48%, rgba(5, 22, 36, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 22, 36, 0.72) 0%, transparent 42%);
}

.hero-content,
.hero-facts {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  margin-bottom: clamp(105px, 12vh, 145px);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f0c875;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-facts div {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 13px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts div:first-child {
  padding-left: 0;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts svg {
  width: 25px;
  height: 25px;
  color: var(--gold);
  stroke-width: 1.5;
}

.hero-facts span {
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.hero-facts strong {
  color: var(--white);
  font-size: 1rem;
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 4vw, 64px);
}

.section-inner {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
}

.intro-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 3px 0 6px;
  background: transparent;
  color: var(--navy);
  border: 0;
  border-bottom: 1px solid var(--gold-dark);
  font-weight: 800;
}

.intro-benefits {
  border-top: 1px solid var(--line);
}

.intro-benefits article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.intro-benefits span {
  color: var(--gold-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.intro-benefits h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 1.18rem;
}

.intro-benefits p {
  margin-bottom: 0;
  color: var(--muted);
}

.destination-showcase {
  background: var(--paper);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.destination-grid {
  display: grid;
  min-height: 660px;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
}

.destination-tile {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  border: 0;
  border-radius: 6px;
  text-align: left;
}

.destination-tile-large {
  grid-row: 1 / 3;
}

.destination-tile img,
.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-tile:hover img,
.hotel-card:hover .hotel-image img {
  transform: scale(1.045);
}

.tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 24, 38, 0.86) 0%, rgba(6, 24, 38, 0.08) 66%);
}

.tile-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 24px;
}

.tile-content small {
  color: #f3cb79;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tile-content strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.tile-content em {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.destination-tile:hover .tile-content em,
.destination-tile:focus-visible .tile-content em {
  opacity: 1;
  transform: translateY(0);
}

.stays {
  background: var(--white);
}

.stays-heading > p {
  max-width: 480px;
  color: var(--muted);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 32px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.search-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.search-field svg {
  width: 20px;
  color: var(--muted);
}

.search-field input {
  min-width: 0;
  min-height: 50px;
  background: transparent;
  color: var(--ink);
  border: 0;
  outline: 0;
}

.stay-browser {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 55px);
  align-items: start;
}

.destination-column {
  position: sticky;
  top: 96px;
  max-height: calc(100svh - 122px);
  overflow: auto;
  border-top: 3px solid var(--gold);
}

.column-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 13px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-scroll-button {
  display: none;
}

.destination-filters {
  display: grid;
}

.destination-filter {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 2px;
  background: transparent;
  color: var(--muted);
  border: 0;
  border-bottom: 1px solid #eceeef;
  font-size: 0.86rem;
  text-align: left;
}

.destination-filter:hover,
.destination-filter.active {
  color: var(--navy);
  font-weight: 700;
}

.destination-filter.active {
  border-bottom-color: var(--gold);
}

.destination-filter small {
  color: var(--gold-dark);
}

.results-topline {
  display: flex;
  min-height: 40px;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.results-topline p {
  margin-bottom: 0;
}

.results-topline strong {
  color: var(--navy);
}

.clear-filter {
  padding: 0;
  background: transparent;
  color: var(--coral);
  border: 0;
  font-weight: 700;
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hotel-card {
  display: grid;
  min-width: 0;
  grid-template-columns: 52px minmax(0, 1.6fr) minmax(170px, 0.7fr) auto;
  align-items: center;
  gap: 18px;
  padding: 17px 14px;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  transition: background 180ms ease;
}

.hotel-card:hover {
  background: var(--paper);
}

.hotel-index {
  color: var(--gold-dark);
  font-family: "Playfair Display", serif;
  font-size: 0.82rem;
}

.hotel-name {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.35;
}

.hotel-name strong {
  font-weight: 800;
}

.hotel-name span {
  font-weight: 500;
}

.hotel-destination {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hotel-destination svg {
  width: 15px;
  height: 15px;
  color: var(--gold-dark);
}

.hotel-card > button {
  justify-self: end;
  padding: 0 0 4px;
  background: transparent;
  color: var(--navy);
  border: 0;
  border-bottom: 1px solid var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.load-more {
  margin: 34px auto 0;
}

.empty-state {
  padding: 70px 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
}

.empty-state svg {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: var(--gold-dark);
}

.empty-state h3 {
  margin-bottom: 5px;
  color: var(--navy);
}

.experience-band {
  position: relative;
  display: grid;
  min-height: 650px;
  padding: clamp(80px, 10vw, 150px) clamp(20px, 7vw, 110px);
  align-content: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(5, 25, 38, 0.94) 0%, rgba(5, 25, 38, 0.72) 50%, rgba(5, 25, 38, 0.25) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=88");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.experience-content {
  max-width: 720px;
}

.experience-content h2 {
  color: var(--white);
}

.experience-content > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.experience-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.experience-stats span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.experience-stats svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke-width: 1.7;
}

.contact-section {
  background: var(--green);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.contact-grid h2 {
  color: var(--white);
}

.contact-grid > div > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-details a,
.contact-details > div {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  overflow-wrap: anywhere;
}

.contact-details svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  stroke-width: 1.7;
}

.contact-details span {
  display: grid;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
}

.contact-details small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form,
.enquiry-modal form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label,
.enquiry-modal label {
  display: grid;
  gap: 7px;
}

.contact-form label span,
.enquiry-modal label span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.enquiry-modal input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  outline: 0;
}

.contact-form input::placeholder,
.enquiry-modal input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form input:focus,
.enquiry-modal input:focus {
  border-color: var(--gold);
}

.full-width {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 72px clamp(20px, 5vw, 82px) 24px;
  background: var(--navy);
  color: var(--white);
}

.footer-top {
  display: grid;
  width: min(1380px, 100%);
  margin: 0 auto 60px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
}

.footer-brand img {
  width: min(280px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.footer-top h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-top div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-top a,
.footer-top button,
.footer-top p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.footer-top button {
  padding: 0;
  background: transparent;
  border: 0;
}

.footer-message {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}

.footer-bottom {
  display: flex;
  width: min(1380px, 100%);
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.72rem;
}

.enquiry-modal {
  width: min(620px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: clamp(28px, 5vw, 52px);
  overflow: auto;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.enquiry-modal::backdrop {
  background: rgba(2, 13, 21, 0.76);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.modal-heading {
  max-width: 470px;
  margin-bottom: 28px;
}

.modal-heading h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
}

.modal-heading p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.enquiry-modal form {
  grid-template-columns: 1fr;
}

.enquiry-modal .button {
  margin-top: 6px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-grid;
    grid-column: 4;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 24px 24px;
    background: rgba(7, 25, 39, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.open {
    display: grid;
  }

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

@media (max-width: 860px) {
  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding-top: 120px;
    background-position: 58% center;
  }

  .hero-content {
    margin-bottom: 70px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div:first-child {
    min-height: 58px;
    padding: 9px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .destination-tile-large {
    min-height: 500px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .stay-browser {
    grid-template-columns: 1fr;
  }

  .destination-column {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .destination-scroll-button {
    display: inline-grid;
    width: 36px;
    height: 36px;
  }

  .destination-filters {
    display: none;
    max-height: 300px;
    overflow: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }

  .destination-filters.open {
    display: grid;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 7px 15px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: 790px;
    padding: 108px 18px 28px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 19vw, 5.4rem);
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 68px 18px;
  }

  h2 {
    font-size: clamp(2.2rem, 13vw, 3.55rem);
  }

  .section-heading {
    display: grid;
    margin-bottom: 30px;
  }

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

  .destination-tile,
  .destination-tile-large {
    min-height: 330px;
    grid-column: auto;
  }

  .tile-content em {
    opacity: 1;
    transform: none;
  }

  .search-row {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .hotel-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .full-width {
    grid-column: auto;
  }

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

  .hotel-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 16px 4px;
  }

  .hotel-destination,
  .hotel-card > button {
    grid-column: 2;
    justify-self: start;
  }

  .experience-band {
    min-height: 680px;
    padding: 80px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-bottom {
    display: grid;
  }

}
