.destinations-page {
  padding-top: 0;
}

.destinations-hero {
  position: relative;
  padding: 160px 0 56px;
  overflow: hidden;
}

.destinations-hero__bg,
.destinations-hero__overlay {
  position: absolute;
  inset: 0;
}

.destinations-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destinations-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 10, 14, 0.76) 0%,
    rgba(7, 10, 14, 0.72) 34%,
    rgba(7, 10, 14, 0.9) 100%
  );
}

.destinations-hero__container {
  position: relative;
  z-index: 2;
}

.destinations-hero__heading {
  max-width: 920px;
  margin-bottom: 0;
}

.destinations-hero__heading h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.065em;
  color: #ffffff;
}

.destinations-hero__heading p {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.72);
}

.destinations-intro {
  padding-top: 30px;
  padding-bottom: 22px;
}

.destinations-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.destinations-intro__copy h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2rem, 1.4rem + 1.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.destinations-intro__copy p {
  margin: 14px 0 0;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.66);
}

.destinations-intro__note {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.destinations-intro__note strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  color: #ffffff;
}

.destinations-intro__note ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.destinations-intro__note li {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.destinations-listing {
  padding-top: 6px;
  padding-bottom: 34px;
}

.destinations-list {
  display: grid;
  gap: 22px;
}

.destination-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.destination-item__media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  text-decoration: none;
}

.destination-item__media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.destination-item:hover .destination-item__media img {
  transform: scale(1.03);
}

.destination-item__content {
  min-width: 0;
}

.destination-item__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 170, 108, 0.9);
}

.destination-item__content h3 {
  margin: 0;
  font-size: clamp(2rem, 1.4rem + 0.9vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.destination-item__content p {
  margin: 12px 0 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.66);
}

.destination-item__bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.destination-item__bottom strong {
  font-size: 15px;
  color: #ffffff;
}

.destination-item__link {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 176, 120, 0.92);
  text-decoration: none;
}

.destination-item__link:hover {
  color: #ffffff;
}

.destinations-cta {
  padding-top: 14px;
  padding-bottom: 96px;
}

.destinations-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(30, 36, 44, 0.98) 0%,
    rgba(7, 10, 14, 0.99) 100%
  );
  border: 1px solid rgba(173, 201, 229, 0.18);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.28),
    0 40px 100px rgba(0, 0, 0, 0.42);
}

.destinations-cta__copy h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 1.35rem + 1.2vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.destinations-cta__copy p {
  margin: 14px 0 0;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
}

.destinations-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .destinations-intro__grid,
  .destination-item,
  .destinations-cta__inner {
    grid-template-columns: 1fr;
  }

  .destination-item {
    align-items: start;
  }

  .destination-item__media img {
    height: 240px;
  }

  .destinations-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .destinations-hero {
    padding: 128px 0 44px;
  }

  .destinations-hero__heading h1 {
    max-width: 100%;
    font-size: 40px;
  }

  .destinations-intro {
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .destination-item {
    gap: 16px;
    padding-bottom: 18px;
  }

  .destination-item__media {
    border-radius: 14px;
  }

  .destination-item__media img {
    height: 210px;
  }

  .destination-item__content h3,
  .destinations-intro__copy h2,
  .destinations-cta__copy h2 {
    font-size: 30px;
  }

  .destinations-cta__inner {
    padding: 22px 18px;
    border-radius: 20px;
  }
}