.rh-home-experience {
  --rh-experience-cream: #f7f0df;
  --rh-experience-gold: #d5a84a;
  --rh-experience-orange: #d66a2c;
  --rh-experience-green: #123d31;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 7vw, 104px) 0;
  color: var(--rh-experience-cream);
  background: var(--rh-experience-green) url("../images/royal_horizon_safari_landcruiser.jpg") center center / cover no-repeat;
}

.rh-home-experience__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 39, 31, 0.91) 0%, rgba(10, 50, 39, 0.79) 45%, rgba(8, 38, 31, 0.65) 100%), linear-gradient(180deg, rgba(10, 43, 34, 0.32), rgba(5, 29, 24, 0.62));
}

.rh-home-experience__inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

.rh-home-experience__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.rh-home-experience__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--rh-experience-gold);
  font: 700 0.76rem/1.2 "Montserrat", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rh-home-experience__heading h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font: 600 clamp(2.5rem, 4.6vw, 4.75rem)/0.96 "Cormorant Garamond", serif;
  letter-spacing: -0.025em;
}

.rh-home-experience__heading p {
  max-width: 470px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.86);
  font: 500 0.98rem/1.75 "Montserrat", sans-serif;
}

.rh-home-experience__carousel { position: relative; }

.rh-home-experience__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0 0 18px;
}

.rh-home-experience__arrow {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #fff;
  background: rgba(14, 60, 47, 0.74);
  box-shadow: 0 10px 26px rgba(1, 18, 14, 0.24);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.rh-home-experience__arrow span {
  font: 400 1.45rem/1 Arial, sans-serif;
  transform: translateY(-1px);
}

.rh-home-experience__arrow:hover,
.rh-home-experience__arrow:focus-visible {
  border-color: var(--rh-experience-gold);
  color: #102f27;
  background: var(--rh-experience-gold);
  outline: none;
  transform: translateY(-2px);
}

.rh-home-experience__arrow:focus-visible { box-shadow: 0 0 0 4px rgba(247, 240, 223, 0.28); }

.rh-home-experience__arrow[disabled] {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
}

.rh-home-experience__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 350px);
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 24px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  cursor: grab;
}

.rh-home-experience__track::-webkit-scrollbar { display: none; }

.rh-home-experience__track:focus-visible {
  outline: 2px solid var(--rh-experience-gold);
  outline-offset: 8px;
}

.rh-home-experience__track.is-dragging,
.rh-home-experience__track.is-animating {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.rh-home-experience__track.is-dragging {
  user-select: none;
}

.rh-home-experience-card {
  position: relative;
  min-width: 0;
  height: clamp(470px, 39vw, 510px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background: #173d33;
  box-shadow: 0 24px 55px rgba(3, 23, 18, 0.32);
  scroll-snap-align: start;
  transform: translateY(0);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.rh-home-experience-card__image,
.rh-home-experience-card__overlay,
.rh-home-experience-card__content {
  position: absolute;
  inset: 0;
}

.rh-home-experience-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-home-experience-card__overlay {
  background: linear-gradient(180deg, rgba(5, 27, 23, 0.55) 0%, rgba(5, 27, 23, 0.08) 42%, rgba(3, 22, 18, 0.91) 100%), linear-gradient(90deg, rgba(8, 43, 34, 0.18), transparent 70%);
}

.rh-home-experience-card__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #fff;
}

.rh-home-experience-card__intro span {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--rh-experience-gold);
  font: 700 0.7rem/1.2 "Montserrat", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rh-home-experience-card__intro p {
  max-width: 285px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font: 500 0.89rem/1.55 "Montserrat", sans-serif;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.rh-home-experience-card__footer h3 {
  margin: 0 0 18px;
  color: #fff;
  font: 600 clamp(2rem, 2.4vw, 2.7rem)/1 "Cormorant Garamond", serif;
}

.rh-home-experience-card__footer a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 38, 31, 0.28);
  font: 700 0.75rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.rh-home-experience-card__footer a:hover,
.rh-home-experience-card__footer a:focus-visible {
  border-color: var(--rh-experience-orange);
  color: #fff;
  background: var(--rh-experience-orange);
  outline: none;
}

.rh-home-experience-card:hover,
.rh-home-experience-card:focus-within {
  border-color: rgba(213, 168, 74, 0.72);
  box-shadow: 0 30px 66px rgba(2, 20, 15, 0.43);
  transform: translateY(-5px);
}

.rh-home-experience-card:hover .rh-home-experience-card__image,
.rh-home-experience-card:focus-within .rh-home-experience-card__image { transform: scale(1.045); }

.rh-ready-journeys__carousel {
  --rh-experience-cream: #f7f0df;
  --rh-experience-gold: #d5a84a;
  --rh-experience-orange: #d66a2c;
  --rh-experience-green: #123d31;
}

.rh-ready-journeys__track {
  padding-top: 8px;
}

.rh-ready-journeys-card .rh-home-experience-card__overlay {
  background: linear-gradient(180deg, rgba(5, 27, 23, 0.64) 0%, rgba(5, 27, 23, 0.12) 38%, rgba(3, 22, 18, 0.94) 100%), linear-gradient(90deg, rgba(8, 43, 34, 0.2), transparent 72%);
}

.rh-ready-journeys-card .rh-home-experience-card__footer h3 {
  font-size: clamp(1.75rem, 2.1vw, 2.35rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.rh-ready-journeys-card__meta {
  margin-bottom: 10px !important;
  color: var(--rh-experience-gold) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.rh-ready-journeys__empty {
  max-width: 680px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 55px rgba(3, 23, 18, 0.22);
}

.rh-ready-journeys__empty p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font: 500 1rem/1.75 "Montserrat", sans-serif;
}

.rh-home-stories {
  --rh-story-cream: #f7f0df;
  --rh-story-gold: #d5a84a;
  --rh-story-orange: #d66a2c;
  --rh-story-green: #123d31;
  overflow: clip;
}

.rh-home-stories .rhp-section-head {
  margin-bottom: 24px;
}

.rh-home-stories__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.rh-home-stories__filter {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(18, 61, 49, 0.2);
  border-radius: 999px;
  color: var(--rh-story-green);
  background: rgba(247, 240, 223, 0.68);
  box-shadow: 0 10px 24px rgba(18, 61, 49, 0.06);
  cursor: pointer;
  font: 800 0.72rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.rh-home-stories__filter:hover,
.rh-home-stories__filter:focus-visible,
.rh-home-stories__filter.is-active {
  border-color: var(--rh-story-orange);
  color: #fff;
  background: var(--rh-story-orange);
  box-shadow: 0 14px 30px rgba(214, 106, 44, 0.22);
  outline: none;
  transform: translateY(-1px);
}

.rh-home-stories__carousel {
  position: relative;
  max-width: 100%;
}

.rh-home-stories__controls {
  margin-bottom: 16px;
}

.rh-home-stories__arrow {
  border-color: rgba(18, 61, 49, 0.26);
  color: var(--rh-story-green);
  background: rgba(247, 240, 223, 0.92);
  box-shadow: 0 12px 28px rgba(18, 61, 49, 0.13);
}

.rh-home-stories__arrow:hover,
.rh-home-stories__arrow:focus-visible {
  border-color: var(--rh-story-gold);
  color: #102f27;
  background: var(--rh-story-gold);
}

.rh-home-stories__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 370px);
  gap: 24px;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 7px 2px 28px;
  cursor: grab;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  will-change: scroll-position;
}

.rh-home-stories__track::-webkit-scrollbar { display: none; }

.rh-home-stories__track:focus-visible {
  outline: 2px solid var(--rh-story-gold);
  outline-offset: 8px;
}

.rh-home-stories__track.is-dragging,
.rh-home-stories__track.is-animating {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.rh-home-stories__track.is-dragging {
  user-select: none;
}

.rh-story-flip-card {
  position: relative;
  min-width: 0;
  height: clamp(500px, 40vw, 570px);
  border-radius: 21px;
  perspective: 1400px;
  scroll-snap-align: start;
  transition: opacity 280ms ease, transform 280ms ease;
}

.rh-story-flip-card[hidden] {
  display: none;
}

.rh-story-flip-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-story-flip-card.is-flipped .rh-story-flip-card__inner {
  transform: rotateY(180deg);
}

.rh-story-flip-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 168, 74, 0.42);
  border-radius: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 24px 55px rgba(18, 61, 49, 0.2);
}

.rh-story-flip-card__front {
  color: #fff;
  background: var(--rh-story-green);
}

.rh-story-flip-card__back {
  color: var(--rh-story-cream);
  background:
    linear-gradient(135deg, rgba(213, 168, 74, 0.12), rgba(18, 61, 49, 0) 42%),
    radial-gradient(circle at top right, rgba(214, 106, 44, 0.18), transparent 34%),
    #0d3329;
  transform: rotateY(180deg);
}

.rh-story-flip-card__back::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: url("../images/royal-horizon-cultural-border.png") center / 460px auto repeat;
  pointer-events: none;
}

.rh-story-flip-card__image,
.rh-story-flip-card__overlay,
.rh-story-flip-card__content,
.rh-story-flip-card__back-content {
  position: absolute;
  inset: 0;
}

.rh-story-flip-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.rh-story-flip-card__overlay {
  background:
    linear-gradient(180deg, rgba(5, 27, 23, 0.68) 0%, rgba(5, 27, 23, 0.12) 37%, rgba(3, 22, 18, 0.95) 100%),
    linear-gradient(90deg, rgba(8, 43, 34, 0.26), transparent 74%);
}

.rh-story-flip-card__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.rh-story-flip-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: var(--rh-story-gold);
  font: 800 0.68rem/1.45 "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rh-story-flip-card__topline time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
}

.rh-story-flip-card__excerpt {
  max-width: 300px;
  margin: auto 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font: 500 0.9rem/1.58 "Montserrat", sans-serif;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.36);
}

.rh-story-flip-card__status {
  display: inline-flex;
  width: max-content;
  margin-bottom: 10px;
  color: rgba(247, 240, 223, 0.82);
  font: 800 0.62rem/1.2 "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rh-story-flip-card__footer h3,
.rh-story-flip-card__back h3 {
  margin: 0;
  color: #fff;
  font: 600 clamp(1.72rem, 2.1vw, 2.45rem)/1.02 "Cormorant Garamond", serif;
  letter-spacing: -0.018em;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.rh-story-flip-card__footer h3 {
  margin-bottom: 18px;
}

.rh-story-flip-card__button {
  display: inline-flex;
  min-height: 46px;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 38, 31, 0.34);
  cursor: pointer;
  font: 800 0.72rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.rh-story-flip-card__button:hover,
.rh-story-flip-card__button:focus-visible {
  border-color: var(--rh-story-orange);
  color: #fff;
  background: var(--rh-story-orange);
  outline: none;
  transform: translateY(-1px);
}

.rh-story-flip-card__button:focus-visible {
  box-shadow: 0 0 0 4px rgba(247, 240, 223, 0.25);
}

.rh-story-flip-card__back-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.rh-story-flip-card__back-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rh-story-gold);
  font: 800 0.69rem/1.35 "Montserrat", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rh-story-flip-card__back h3 {
  margin-bottom: 18px;
}

.rh-story-flip-card__back-scroll {
  min-height: 0;
  max-height: 260px;
  margin: 0 0 24px;
  overflow-y: auto;
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.88);
  font: 500 0.92rem/1.68 "Montserrat", sans-serif;
  scrollbar-color: rgba(213, 168, 74, 0.75) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.rh-story-flip-card__back-scroll:focus-visible {
  outline: 2px solid rgba(213, 168, 74, 0.8);
  outline-offset: 4px;
}

.rh-story-flip-card__back-scroll p {
  margin: 0;
}

.rh-story-flip-card__button--back {
  margin-top: auto;
  border-color: rgba(213, 168, 74, 0.7);
  color: var(--rh-story-cream);
  background: rgba(247, 240, 223, 0.07);
}

.rh-story-flip-card:hover,
.rh-story-flip-card:focus-within {
  transform: translateY(-5px);
}

.rh-story-flip-card:hover .rh-story-flip-card__front,
.rh-story-flip-card:focus-within .rh-story-flip-card__front {
  box-shadow: 0 30px 66px rgba(18, 61, 49, 0.28);
}

.rh-story-flip-card:hover .rh-story-flip-card__image,
.rh-story-flip-card:focus-within .rh-story-flip-card__image {
  transform: scale(1.045);
}

.rh-home-stories__empty {
  max-width: 680px;
  padding: clamp(26px, 5vw, 40px);
  border: 1px solid rgba(18, 61, 49, 0.16);
  border-radius: 22px;
  background: rgba(247, 240, 223, 0.68);
  box-shadow: 0 22px 48px rgba(18, 61, 49, 0.1);
}

.rh-home-stories__empty[hidden] {
  display: none;
}

.rh-home-stories__empty p {
  margin: 0 0 22px;
  color: rgba(18, 61, 49, 0.84);
  font: 700 1rem/1.7 "Montserrat", sans-serif;
}

.rh-home-destinations__carousel {
  --rh-destination-cream: #f7f0df;
  --rh-destination-gold: #d5a84a;
  --rh-destination-orange: #d66a2c;
  --rh-destination-green: #123d31;
  position: relative;
  margin-top: 6px;
}

.rh-home-destinations__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.rh-home-destinations__progress {
  display: inline-flex;
  min-width: 72px;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin-right: 4px;
  color: rgba(18, 61, 49, 0.55);
  font: 700 0.73rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.08em;
}

.rh-home-destinations__progress span:first-child {
  color: var(--rh-destination-orange);
  font-size: 1rem;
}

.rh-home-destinations__arrow {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  padding: 0;
  border-color: rgba(18, 61, 49, 0.34);
  border-style: solid;
  border-width: 1px;
  border-radius: 50%;
  color: var(--rh-destination-green);
  background: rgba(247, 240, 223, 0.92);
  box-shadow: 0 12px 28px rgba(18, 61, 49, 0.14);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.rh-home-destinations__arrow span { font: 400 1.45rem/1 Arial, sans-serif; }

.rh-home-destinations__arrow:hover,
.rh-home-destinations__arrow:focus-visible {
  border-color: var(--rh-destination-gold);
  color: #102f27;
  background: var(--rh-destination-gold);
  outline: none;
  transform: translateY(-2px);
}

.rh-home-destinations__arrow:focus-visible {
  box-shadow: 0 0 0 4px rgba(18, 61, 49, 0.16);
}

.rh-home-destinations__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  outline: none;
  touch-action: pan-y;
}

.rh-home-destinations__viewport:focus-visible {
  box-shadow: 0 0 0 4px rgba(18, 61, 49, 0.15);
}

.rh-home-destinations__track {
  display: flex;
  gap: 14px;
  width: 100%;
  padding: 8px 0 24px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.rh-home-destinations__track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.rh-home-destinations-card {
  position: relative;
  flex: 0 0 calc((48% - 56px) / 4);
  height: clamp(500px, 38vw, 540px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 49, 0.16);
  border-radius: 20px;
  border-color: rgba(18, 61, 49, 0.16);
  background: #173d33;
  box-shadow: 0 22px 48px rgba(18, 61, 49, 0.18);
  cursor: pointer;
  transform-origin: left center;
  transition: flex-basis 1040ms cubic-bezier(0.2, 0.72, 0.18, 1), border-color 250ms ease, box-shadow 250ms ease;
}

.rh-home-destinations-card.is-active {
  flex-basis: 52%;
  border-color: rgba(213, 168, 74, 0.54);
  box-shadow: 0 30px 66px rgba(18, 61, 49, 0.28);
  cursor: default;
}

.rh-home-destinations-card:focus-visible {
  border-color: var(--rh-destination-orange);
  outline: 3px solid rgba(214, 106, 44, 0.32);
  outline-offset: -3px;
}

.rh-home-destinations-card__image,
.rh-home-destinations-card__overlay,
.rh-home-destinations-card__content {
  position: absolute;
  inset: 0;
}

.rh-home-destinations-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  transform: scale(1.01);
  transition: transform 1180ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.rh-home-destinations-card.is-active .rh-home-destinations-card__image,
.rh-home-destinations-card:hover .rh-home-destinations-card__image { transform: scale(1.055); }

.rh-home-destinations-card__overlay {
  background: linear-gradient(180deg, rgba(5, 27, 23, 0.72) 0%, rgba(5, 27, 23, 0.12) 42%, rgba(3, 22, 18, 0.95) 100%), linear-gradient(90deg, rgba(8, 43, 34, 0.34), transparent 76%);
}

.rh-home-destinations-card__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  color: #fff;
}

.rh-home-destinations-card.is-active .rh-home-destinations-card__content { padding: clamp(26px, 3vw, 38px); }

.rh-home-destinations-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.rh-home-destinations-card__category {
  color: #edb653;
  font: 800 0.66rem/1.45 "Montserrat", sans-serif;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.rh-home-destinations-card__number {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font: 700 0.72rem/1.2 "Montserrat", sans-serif;
  letter-spacing: 0.06em;
}

.rh-home-destinations-card:not(.is-active) .rh-home-destinations-card__number { display: none; }

.rh-home-destinations-card__footer h3 {
  margin: 0;
  color: #fff;
  font: 600 clamp(1.25rem, 1.7vw, 1.75rem)/1.02 "Cormorant Garamond", serif;
  overflow-wrap: anywhere;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
  transition: font-size 1040ms cubic-bezier(0.2, 0.72, 0.18, 1), margin 520ms ease;
}

.rh-home-destinations-card.is-active .rh-home-destinations-card__footer h3 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 4vw, 4.55rem);
  line-height: 0.92;
}

.rh-home-destinations-card__footer p {
  display: -webkit-box;
  max-width: 560px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font: 500 0.9rem/1.62 "Montserrat", sans-serif;
  opacity: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  transform: translateY(12px);
  transition: max-height 620ms ease, margin 620ms ease, opacity 460ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.rh-home-destinations-card.is-active .rh-home-destinations-card__footer p {
  max-height: 5em;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 150ms;
}

.rh-home-destinations-card__footer a {
  display: inline-flex;
  width: max-content;
  min-height: 46px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 38, 31, 0.38);
  font: 700 0.73rem/1 "Montserrat", sans-serif;
  letter-spacing: 0.035em;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 460ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.18, 1);
}

.rh-home-destinations-card.is-active .rh-home-destinations-card__footer a {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 210ms;
}

.rh-home-destinations-card__footer a:hover,
.rh-home-destinations-card__footer a:focus-visible {
  border-color: var(--rh-destination-orange);
  background: var(--rh-destination-orange);
  outline: none;
}

.rh-home-destinations__empty {
  max-width: 700px;
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(18, 61, 49, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 48px rgba(18, 61, 49, 0.1);
}

.rh-home-destinations__empty p {
  margin: 0 0 24px;
  color: rgba(18, 61, 49, 0.82);
  font: 600 1rem/1.75 "Montserrat", sans-serif;
}

@media (max-width: 1099px) {
  .rh-home-experience__inner { width: min(100% - 48px, 920px); }
  .rh-home-experience__heading { grid-template-columns: 1fr; gap: 16px; }
  .rh-home-experience__track { grid-auto-columns: min(46%, 360px); gap: 20px; }
  .rh-home-stories__track { grid-auto-columns: minmax(310px, 345px); gap: 20px; }
  .rh-story-flip-card { height: clamp(480px, 56vw, 540px); }
  .rh-story-flip-card__content,
  .rh-story-flip-card__back-content { padding: 26px; }
  .rh-home-destinations-card { flex-basis: calc((42% - 28px) / 2); height: 510px; }
  .rh-home-destinations-card.is-active { flex-basis: 58%; }
}

@media (max-width: 600px) {
  .rh-home-experience { padding: 56px 0 58px; background-position: 61% center; }
  .rh-home-experience__inner { width: calc(100% - 32px); }
  .rh-home-experience__heading { margin-bottom: 22px; }
  .rh-home-experience__heading h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .rh-home-experience__heading p { font-size: 0.9rem; line-height: 1.65; }
  .rh-home-experience__controls { margin-bottom: 14px; }
  .rh-home-experience__arrow { width: 48px; height: 48px; }
  .rh-home-experience__track { grid-auto-columns: calc(100% - 36px); gap: 16px; padding-bottom: 16px; }
  .rh-home-experience-card { height: min(470px, 125vw); min-height: 430px; border-radius: 18px; }
  .rh-home-experience-card__content { padding: 24px; }
  .rh-home-stories .rhp-section-head { margin-bottom: 18px; }
  .rh-home-stories__filters {
    gap: 8px;
    margin-bottom: 22px;
  }
  .rh-home-stories__filter {
    min-height: 39px;
    padding: 9px 14px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }
  .rh-home-stories__controls {
    margin-bottom: 12px;
  }
  .rh-home-stories__track {
    grid-auto-columns: calc(100% - 36px);
    gap: 16px;
    padding: 6px 2px 18px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x proximity;
  }
  .rh-story-flip-card {
    height: clamp(500px, 132vw, 560px);
    border-radius: 18px;
  }
  .rh-story-flip-card__content,
  .rh-story-flip-card__back-content {
    padding: 24px;
  }
  .rh-story-flip-card__topline {
    gap: 10px;
    font-size: 0.61rem;
    letter-spacing: 0.09em;
  }
  .rh-story-flip-card__excerpt {
    max-width: 260px;
    margin-bottom: 20px;
    font-size: 0.84rem;
    line-height: 1.55;
  }
  .rh-story-flip-card__footer h3,
  .rh-story-flip-card__back h3 {
    font-size: clamp(1.62rem, 8vw, 2.18rem);
  }
  .rh-story-flip-card__back-scroll {
    max-height: 225px;
    font-size: 0.84rem;
    line-height: 1.62;
  }
  .rh-story-flip-card__button {
    min-height: 45px;
    padding: 11px 16px;
    font-size: 0.67rem;
  }
  .rh-home-destinations__controls { margin-bottom: 12px; }
  .rh-home-destinations__progress { min-width: 62px; margin-right: auto; justify-content: flex-start; }
  .rh-home-destinations__arrow { width: 50px; height: 50px; }
  .rh-home-destinations__viewport { border-radius: 18px; }
  .rh-home-destinations__track { gap: 12px; padding: 6px 0 18px; }
  .rh-home-destinations-card,
  .rh-home-destinations-card.is-active { height: clamp(500px, 145vw, 570px); border-radius: 18px; }
  .rh-home-destinations-card { flex-basis: 74px; }
  .rh-home-destinations-card.is-active { flex-basis: calc(100% - 54px); }
  .rh-home-destinations-card__content { padding: 22px 14px; }
  .rh-home-destinations-card.is-active .rh-home-destinations-card__content { padding: 26px 22px; }
  .rh-home-destinations-card__category { font-size: 0.61rem; letter-spacing: 0.08em; }
  .rh-home-destinations-card:not(.is-active) .rh-home-destinations-card__category { opacity: 0; }
  .rh-home-destinations-card__footer h3 { font-size: 1.18rem; }
  .rh-home-destinations-card:not(.is-active) .rh-home-destinations-card__footer h3 {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .rh-home-destinations-card.is-active .rh-home-destinations-card__footer h3 { font-size: clamp(2.45rem, 12vw, 3.4rem); }
  .rh-home-destinations-card__footer p { font-size: 0.82rem; line-height: 1.55; }
}

@media (prefers-reduced-motion: reduce) {
  .rh-home-experience-card,
  .rh-home-experience-card__image,
  .rh-home-experience__arrow,
  .rh-home-stories__filter,
  .rh-story-flip-card,
  .rh-story-flip-card__inner,
  .rh-story-flip-card__image,
  .rh-story-flip-card__button,
  .rh-home-destinations-card,
  .rh-home-destinations-card__image,
  .rh-home-destinations-card__footer p,
  .rh-home-destinations-card__footer a { transition-duration: 1ms; }

  .rh-story-flip-card {
    perspective: none;
  }

  .rh-story-flip-card__inner,
  .rh-story-flip-card.is-flipped .rh-story-flip-card__inner {
    transform: none;
  }

  .rh-story-flip-card__back {
    transform: none;
    opacity: 0;
    pointer-events: none;
  }

  .rh-story-flip-card.is-flipped .rh-story-flip-card__front {
    opacity: 0;
    pointer-events: none;
  }

  .rh-story-flip-card.is-flipped .rh-story-flip-card__back {
    opacity: 1;
    pointer-events: auto;
  }
}
