/* Homepage — white, spacious, light motion */

.is-home{
  background:#fff;
  color:#1e293b;
}

.rh{
  --rh-ink:#0f172a;
  --rh-muted:#64748b;
  --rh-line:#e8eef5;
  --rh-soft:#f6f8fb;
  --rh-accent:#6d28d9;
  --rh-accent-2:#5b21b6;
  --rh-gold:#b45309;
  --rh-radius:1.35rem;
  --rh-ease:cubic-bezier(.22,1,.36,1);
}

.rh-wrap{
  width:min(1120px, calc(100% - 2.5rem));
  margin:0 auto;
}

.rh-section{padding:2.5rem 0}
.rh-section--soft{background:var(--rh-soft)}
@media(min-width:800px){.rh-section{padding:3.15rem 0}}

.rh-kicker{
  margin:0;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--rh-accent);
}
.rh-kicker--light{color:#ddd6fe}

.rh-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:.65rem 2rem;
  margin-bottom:1.25rem;
}
.rh-head h2,.rh-hero h1,.rh-cta h2{
  margin:.3rem 0 0;
  font-family:Fraunces,Georgia,serif;
  font-weight:600;
  letter-spacing:-.03em;
  color:var(--rh-ink);
  line-height:1.15;
}
.rh-head h2{font-size:clamp(1.7rem, 3vw, 2.15rem)}
.rh-head p{
  margin:.4rem 0 0;
  max-width:32rem;
  color:var(--rh-muted);
  line-height:1.6;
}
.rh-head .rh-kicker{max-width:none}
.rh-head--center{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.rh-head--center .rh-kicker{
  padding-left:.16em;
}
.rh-head--center p:not(.rh-kicker){
  margin-left:auto;
  margin-right:auto;
}

.rh-textlink{
  display:inline-flex;
  align-items:center;
  font-size:.9rem;
  font-weight:600;
  color:var(--rh-accent);
  background-image:linear-gradient(currentColor,currentColor);
  background-position:0 100%;
  background-repeat:no-repeat;
  background-size:0 1.5px;
  transition:background-size .3s var(--rh-ease), transform .3s var(--rh-ease);
}
.rh-textlink:hover{background-size:100% 1.5px}
.rh-textlink:active{transform:scale(.98)}

.rh-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:2.85rem;
  padding:.7rem 1.25rem;
  border-radius:999px;
  border:1px solid transparent;
  font-size:.9rem;
  font-weight:600;
  transition:transform .25s var(--rh-ease), box-shadow .25s var(--rh-ease), background .25s, border-color .25s;
}
.rh-btn:hover{transform:translateY(-2px)}
.rh-btn:active{transform:scale(.98)}
.rh-btn--primary{
  background:var(--rh-accent);
  color:#fff;
  box-shadow:0 10px 24px -12px rgba(109,40,217,.7);
}
.rh-btn--primary:hover{background:var(--rh-accent-2);box-shadow:0 14px 28px -12px rgba(109,40,217,.8)}
.rh-btn--ghost{
  border-color:#dbe3ee;
  color:var(--rh-ink);
  background:#fff;
}
.rh-btn--ghost:hover{border-color:var(--rh-accent);color:var(--rh-accent)}
.rh-btn--white{background:#fff;color:var(--rh-accent-2)}
.rh-btn--white:hover{background:#f5f3ff}
.rh-btn--ghost-light{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}
.rh-btn--ghost-light:hover{background:rgba(255,255,255,.1)}

/* Hero */
.rh-hero{padding:1.65rem 0 .85rem}
.rh-hero__grid{
  display:grid;
  gap:1rem;
  align-items:center;
}
@media(min-width:960px){
  .rh-hero{padding:2rem 0 1rem}
  .rh-hero__grid{grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);gap:1.25rem}
  .rh-hero__grid--copy-only{grid-template-columns:minmax(0,36rem)}
}
.rh-hero h1{
  font-size:clamp(2.15rem, 4.6vw, 3.4rem);
  max-width:14ch;
}
.rh-lede{
  margin:.75rem 0 0;
  max-width:34rem;
  font-size:1.05rem;
  line-height:1.7;
  color:var(--rh-muted);
}
.rh-hero__cta{margin-top:1.15rem}
.rh-hero__art{
  position:relative;
  aspect-ratio:1/1;
  max-width:540px;
  width:100%;
  margin:0 auto;
}
.rh-hero__art::before{
  content:"";
  position:absolute;
  inset:14%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(109,40,217,.28), rgba(79,70,229,.08) 46%, transparent 70%);
  filter:blur(28px);
  animation:rh-glow 6s ease-in-out infinite;
  pointer-events:none;
  z-index:0;
}
.rh-hero__art::after{
  content:"";
  position:absolute;
  inset:7%;
  border:1.5px dashed rgba(109,40,217,.2);
  border-radius:50%;
  animation:rh-spin 32s linear infinite;
  pointer-events:none;
  z-index:0;
}
.rh-hero__slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0;
  pointer-events:none;
  transition:opacity .7s ease;
  z-index:1;
}
.rh-hero__slide.is-on{
  opacity:1;
  animation:rh-float 5.5s ease-in-out infinite;
}
.rh-hero__dots{
  position:absolute;
  left:0;
  right:0;
  bottom:.15rem;
  display:flex;
  justify-content:center;
  gap:.4rem;
  z-index:2;
}
.rh-hero__dot{
  width:.45rem;
  height:.45rem;
  padding:0;
  border:0;
  border-radius:999px;
  background:#d8dee8;
  min-height:0;
  transition:width .3s ease, background .3s ease;
}
.rh-hero__dot.is-on{
  width:1.15rem;
  background:#6d28d9;
}
@keyframes rh-float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* Stats */
.rh-stats{border-top:1px solid var(--rh-line);border-bottom:1px solid var(--rh-line)}
.rh-stats__row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
}
@media(min-width:800px){.rh-stats__row{grid-template-columns:repeat(4,1fr)}}
.rh-stats__row > div{
  padding:1.05rem .75rem;
  text-align:center;
}
.rh-stats strong{
  display:block;
  font-family:Fraunces,Georgia,serif;
  font-size:1.55rem;
  color:var(--rh-ink);
  font-variant-numeric:tabular-nums;
}
.rh-stats span{font-size:.8rem;color:var(--rh-muted)}

/* Destinations */
.rh-dest-grid{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(210px, 1fr);
  gap:1.15rem;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.rh-dest-grid::-webkit-scrollbar{display:none}
@media(min-width:860px){
  .rh-dest-grid{
    grid-auto-flow:row;
    grid-template-columns:repeat(4,1fr);
    overflow:visible;
    gap:1.4rem;
  }
}
.rh-dests{padding-top:2.15rem;padding-bottom:2rem}
@media(min-width:800px){.rh-dests{padding-top:2.4rem;padding-bottom:2.15rem}}
.rh-dests .rh-head h2{
  white-space:nowrap;
  font-size:clamp(1.28rem, 4vw, 2.15rem);
}
.rh-dest{
  display:block;
  color:inherit;
  border-radius:var(--rh-radius);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--rh-line);
  scroll-snap-align:start;
  transition:transform .35s var(--rh-ease), box-shadow .35s var(--rh-ease), border-color .35s;
}
.rh-dest:hover{
  transform:translateY(-7px);
  border-color:transparent;
  box-shadow:0 22px 40px -24px rgba(15,23,42,.28);
}
.rh-dest:active{transform:translateY(-2px) scale(.99)}
.rh-dest__media{
  display:block;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--rh-soft);
}
.rh-dest__media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--rh-ease);
}
.rh-dest:hover img{transform:scale(1.07)}
.rh-dest__body{
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:space-between;
  gap:.55rem;
  padding:.85rem 1rem .95rem;
  min-width:0;
}
.rh-dest__body strong{
  flex:1 1 0;
  min-width:0;
  font-size:.95rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rh-dest__body em{
  font-style:normal;
  font-size:.72rem;
  color:var(--rh-muted);
  flex:0 0 auto;
  white-space:nowrap;
}

/* Packages */
.rh-pkg-grid{
  display:grid;
  gap:1.15rem;
}
@media(min-width:800px){.rh-pkg-grid{grid-template-columns:repeat(3,1fr)}}
.rh-pkg{
  display:flex;
  flex-direction:column;
  color:inherit;
  background:#fff;
  border:1px solid var(--rh-line);
  border-radius:var(--rh-radius);
  overflow:hidden;
  transition:transform .35s var(--rh-ease), box-shadow .35s var(--rh-ease), border-color .35s;
}
.rh-pkg:hover{
  transform:translateY(-8px);
  border-color:transparent;
  box-shadow:0 24px 44px -24px rgba(109,40,217,.28);
}
.rh-pkg:active{transform:translateY(-3px) scale(.99)}
.rh-pkg__media{
  position:relative;
  display:block;
  aspect-ratio:16/11;
  overflow:hidden;
  background:var(--rh-soft);
}
.rh-pkg__media img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .7s var(--rh-ease);
}
.rh-pkg:hover img{transform:scale(1.06)}
.rh-chip{
  position:absolute;
  top:.8rem;left:.8rem;
  padding:.28rem .65rem;
  border-radius:999px;
  background:#fff;
  color:var(--rh-gold);
  font-size:.72rem;
  font-weight:700;
}
.rh-pkg__body{display:flex;flex-direction:column;gap:.35rem;padding:.9rem 1rem 1.05rem;flex:1}
.rh-pkg__meta{font-size:.75rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--rh-accent)}
.rh-pkg__body > strong{font-size:1.08rem;line-height:1.3}
.rh-pkg__foot{margin-top:auto;padding-top:.7rem;display:flex;justify-content:space-between;align-items:flex-end;gap:.6rem}
.rh-pkg__price{font-weight:700;color:var(--rh-ink)}
.rh-pkg__price s{margin-right:.35rem;color:#94a3b8;font-weight:500}
.rh-pkg__price small{display:block;font-weight:500;color:var(--rh-muted);font-size:.72rem}
.rh-pkg__rate{font-size:.85rem;color:var(--rh-gold);font-weight:600}

/* Why */
.rh-why{
  display:grid;
  gap:1.15rem;
}
@media(min-width:800px){.rh-why{grid-template-columns:repeat(4,1fr);gap:1.4rem}}
.rh-why__item{
  padding:1.35rem 1.2rem 1.4rem;
  border:1px solid var(--rh-line);
  border-radius:var(--rh-radius);
  background:#fff;
  text-align:center;
  transition:transform .35s var(--rh-ease), box-shadow .35s var(--rh-ease), border-color .35s;
}
.rh-why__item:hover{
  transform:translateY(-6px);
  border-color:transparent;
  box-shadow:0 18px 36px -22px rgba(15,23,42,.2);
}
.rh-why__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  width:4.1rem;
  height:4.1rem;
  margin:0 auto;
  border-radius:1.05rem;
  background:
    radial-gradient(120% 100% at 30% 20%, #fff, #f4f7fb 70%);
  border:1px solid #e8eef5;
}
.rh-why__logo img{
  width:2.85rem;
  height:2.85rem;
  object-fit:contain;
  display:block;
  transition:transform .35s var(--rh-ease);
}
.rh-why__item:hover .rh-why__logo img{transform:scale(1.08) translateY(-2px)}
.rh-why h3{margin:.95rem 0 0;font-size:1.05rem;font-weight:700;color:var(--rh-ink);line-height:1.25}
.rh-why p{margin:.4rem 0 0;color:var(--rh-muted);font-size:.9rem;line-height:1.55}

.rh-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:2.7rem;height:2.7rem;
  border-radius:.85rem;
  background:#f3e8ff;
  color:var(--rh-accent);
  transition:transform .35s var(--rh-ease), background .35s;
}

/* Journey path */
.rh-path{padding-top:1.5rem}
@media(min-width:800px){.rh-path{padding-top:1.65rem}}
.rh-path .rh-head{margin-bottom:1.05rem}
.rh-path__board{
  --art:6.6rem;
  --node:1.45rem;
  position:relative;
}
@media(min-width:700px){
  .rh-path__board{--art:9.4rem}
}
.rh-path__row{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  position:relative;
  z-index:1;
}
.rh-path__step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-width:0;
}
.rh-path__art{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  height:var(--art);
  width:100%;
  transition:transform .55s var(--rh-ease);
}
.rh-path__art img{
  height:100%;
  width:auto;
  max-width:92%;
  object-fit:contain;
  object-position:bottom center;
  transform-origin:bottom center;
}
.rh-path.is-in .rh-path__art img{animation:rh-path-bob 4.8s ease-in-out infinite}
.rh-path.is-in .rh-path__step:nth-child(2) .rh-path__art img{animation-delay:.35s}
.rh-path.is-in .rh-path__step:nth-child(3) .rh-path__art img{animation-delay:.7s}
.rh-path.is-in .rh-path__step:nth-child(4) .rh-path__art img{animation-delay:1.05s}
.rh-path__step:hover{z-index:2}
.rh-path__step:hover .rh-path__art{transform:translateY(-7px)}
.rh-path__node{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  width:var(--node);
  height:var(--node);
  margin:.35rem 0 .5rem;
  border-radius:50%;
  background:var(--rh-accent);
  color:#fff;
  font-size:.7rem;
  font-weight:700;
  box-shadow:0 0 0 3px #fff;
  transition:transform .5s var(--rh-ease), background .45s;
}
.rh-path__step:hover .rh-path__node{
  transform:scale(1.08);
  background:var(--rh-accent-2);
}
.rh-path__step strong{
  font-family:Fraunces,Georgia,serif;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:-.02em;
  color:var(--rh-ink);
  transition:color .4s ease, transform .5s var(--rh-ease);
}
@media(min-width:700px){.rh-path__step strong{font-size:1.08rem}}
.rh-path__step:hover strong{
  color:var(--rh-accent);
  transform:translateY(-1px);
}
.rh-path__road{
  position:absolute;
  left:0;right:0;
  top:calc(var(--art) + .35rem + (var(--node) / 2) - 30px);
  height:60px;
  width:100%;
  overflow:visible;
  pointer-events:none;
  z-index:0;
}
/* Offers */
.rh-offers{display:grid;gap:1.15rem}
@media(min-width:800px){.rh-offers{grid-template-columns:repeat(3,1fr)}}
.rh-offer{
  padding:1.1rem 1.15rem 1.2rem;
  border-radius:var(--rh-radius);
  background:#fff;
  border:1px solid var(--rh-line);
  transition:transform .35s var(--rh-ease), box-shadow .35s var(--rh-ease);
}
.rh-offer:hover{transform:translateY(-5px);box-shadow:0 18px 36px -22px rgba(15,23,42,.18)}
.rh-offer > span{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--rh-gold)}
.rh-offer h3{margin:.45rem 0 0;font-size:1.08rem}
.rh-offer p{margin:.4rem 0 .9rem;color:var(--rh-muted);font-size:.9rem;line-height:1.5}

/* CTA */
.rh-cta{padding:1rem 0 2.85rem}
.rh-cta__box{
  position:relative;
  overflow:hidden;
  display:grid;
  justify-items:center;
  gap:1.4rem 2rem;
  padding:1.7rem 1.25rem 1.85rem;
  border-radius:1.85rem;
  color:#fff;
  text-align:center;
  background:
    radial-gradient(90% 80% at 12% 110%, rgba(217,119,6,.28), transparent 42%),
    radial-gradient(70% 90% at 92% -10%, rgba(167,139,250,.45), transparent 48%),
    linear-gradient(155deg, #4c1d95 0%, #6d28d9 48%, #4338ca 100%);
  box-shadow:0 28px 56px -30px rgba(76,29,149,.75);
}
@media(min-width:860px){
  .rh-cta__box{
    grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
    align-items:center;
    text-align:left;
    padding:1.85rem 2.2rem 1.85rem 2.5rem;
    justify-items:stretch;
  }
  .rh-cta__stage{order:2}
  .rh-cta__main{order:1}
  .rh-cta__actions{justify-content:flex-start}
  .rh-cta h2,.rh-cta p{margin-left:0;margin-right:0}
}
.rh-cta__orb{
  position:absolute;
  border-radius:50%;
  pointer-events:none;
  filter:blur(2px);
}
.rh-cta__orb--a{
  width:16rem;height:16rem;
  left:-5rem;bottom:-7rem;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 68%);
  animation:rh-cta-drift 9s ease-in-out infinite;
}
.rh-cta__orb--b{
  width:12rem;height:12rem;
  right:-3.5rem;top:-5rem;
  background:radial-gradient(circle, rgba(251,191,36,.22), transparent 70%);
  animation:rh-cta-drift 11s ease-in-out infinite reverse;
}
.rh-cta__ring{
  position:absolute;
  width:22rem;height:22rem;
  right:-6rem;bottom:-8rem;
  border:1.5px dashed rgba(255,255,255,.22);
  border-radius:50%;
  pointer-events:none;
  animation:rh-spin 36s linear infinite;
}
.rh-cta__stage{
  position:relative;
  z-index:1;
  width:min(19.5rem, 86vw);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:.35rem;
}
.rh-cta__say{width:100%;text-align:center}
.rh-cta .rh-cta__chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  margin:0;
  max-width:none;
  padding:.32rem .85rem .38rem;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  color:#fff;
  font-size:.8rem;
  font-weight:600;
  line-height:1.2;
  letter-spacing:.01em;
}
.rh-cta__chip::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  width:8px;height:8px;
  background:rgba(255,255,255,.16);
  transform:translateX(-50%) rotate(45deg);
}
.rh-cta__chip span{display:none}
.rh-cta__chip span.is-on{display:inline}
.rh-cta__chip em{
  font-style:normal;
  margin-right:.45rem;
  color:#fde68a;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.06em;
}
.rh-cta__art{
  position:relative;
  width:100%;
  aspect-ratio:1;
}
.rh-cta__slides{
  position:absolute;
  inset:0;
}
.rh-cta__slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  opacity:0;
  transform:translateY(10px) scale(.96);
  filter:drop-shadow(0 18px 22px rgba(30,10,70,.35));
  transition:opacity .7s var(--rh-ease), transform .7s var(--rh-ease);
}
.rh-cta__slides img.is-on{
  opacity:1;
  transform:none;
}
.rh-cta.is-watching .rh-cta__slides img.is-on{
  animation:rh-float 4.2s ease-in-out infinite;
}
.rh-cta__plane{
  position:absolute;
  width:1.7rem;
  height:1.7rem;
  color:#fde68a;
  filter:drop-shadow(0 4px 8px rgba(0,0,0,.25));
  opacity:0;
  z-index:2;
}
.rh-cta.is-watching .rh-cta__plane{
  opacity:1;
  animation:rh-cta-fly 5.2s ease-in-out infinite;
}
.rh-cta__main{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
}
@media(min-width:860px){
  .rh-cta__main{align-items:flex-start}
}
.rh-cta__copy{
  position:relative;
  z-index:1;
  max-width:36rem;
}
.rh-cta__copy .rh-kicker{
  display:inline-block;
  padding-left:.16em;
}
.rh-cta h2{
  color:#fff;
  font-size:clamp(1.9rem, 4vw, 2.85rem);
  max-width:16ch;
  margin:.4rem auto 0;
  position:relative;
  z-index:1;
}
.rh-cta p{
  margin:.55rem auto 0;
  max-width:30rem;
  color:#ede9fe;
  line-height:1.65;
  position:relative;
  z-index:1;
}
.rh-cta__actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.75rem;
  position:relative;
  z-index:1;
}
.rh-cta__actions .rh-btn{gap:.5rem}
.rh-cta__actions .rh-btn svg{flex-shrink:0}
.rh-cta__primary{
  min-height:3.1rem;
  padding:.85rem 1.55rem;
  box-shadow:0 12px 28px -14px rgba(0,0,0,.45);
  animation:rh-cta-pulse 2.8s ease-in-out infinite;
}
.rh-cta__primary:hover{animation-play-state:paused}
.rh-cta .rh-btn--ghost-light{
  min-height:3.1rem;
  padding:.85rem 1.4rem;
  border-color:rgba(255,255,255,.45);
  backdrop-filter:blur(6px);
}

/* Hero entrance */
.rh-hero__in{
  opacity:0;
  transform:translateY(18px);
  animation:rh-in .85s var(--rh-ease) forwards;
}
.rh-hero__in--2{animation-delay:.12s}
.rh-hero__in--3{animation-delay:.22s}
.rh-hero__in--4{animation-delay:.34s}
.rh-hero__in--5{animation-delay:.2s}

/* Scroll reveal + stagger */
.rh-reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s var(--rh-ease), transform .8s var(--rh-ease);
}
.rh-reveal.is-in{opacity:1;transform:none}
.rh-reveal.is-in .rh-dest,
.rh-reveal.is-in .rh-pkg,
.rh-reveal.is-in .rh-why__item,
.rh-reveal.is-in .rh-path__step,
.rh-reveal.is-in .rh-offer{
  animation:rh-in .7s var(--rh-ease) both;
  animation-delay:var(--d, 0ms);
}

/* Testimonials — Google-style review cards */
.rh-voices{
  background:#fff;
  overflow:hidden;
}
.rh-voices .rh-head{margin-bottom:1.2rem}
.rh-voices__rail{
  --voice-gap:1.5rem;
  --voice-w:min(1120px, calc(100vw - 2.5rem));
  width:var(--voice-w);
  margin:0 auto;
  overflow:hidden;
}
.rh-voices__track{
  display:flex;
  gap:var(--voice-gap);
  width:max-content;
  padding:.5rem 0 2.75rem;
  animation:rh-voices-scroll calc(var(--voice-n, 6) * 8s) linear infinite;
}
.rh-voices__rail:hover .rh-voices__track,
.rh-voices__rail:focus-within .rh-voices__track{
  animation-play-state:paused;
}
.rh-voice{
  position:relative;
  flex:0 0 min(20.5rem, calc(var(--voice-w) * 0.86));
  width:min(20.5rem, calc(var(--voice-w) * 0.86));
  margin:0;
  display:flex;
  flex-direction:column;
  gap:.6rem;
  padding:1.35rem 1.25rem 1.35rem;
  border-radius:1rem;
  background:
    radial-gradient(120% 80% at 100% -10%, rgba(212,175,55,.16), transparent 42%),
    radial-gradient(90% 70% at -5% 110%, rgba(66,133,244,.08), transparent 45%),
    linear-gradient(165deg, #ffffff 0%, #fbfaf7 48%, #f7f5f0 100%);
  border:1px solid rgba(201,176,120,.35);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 10px 28px -18px rgba(60,40,10,.28);
  text-align:left;
  min-height:13.25rem;
  overflow:hidden;
  font-family:"Plus Jakarta Sans",ui-sans-serif,system-ui,sans-serif;
}
.rh-voice::before{display:none}
.rh-voice::after{
  content:"“";
  position:absolute;
  right:.55rem;
  top:.15rem;
  font-family:Fraunces,Georgia,serif;
  font-size:5.5rem;
  font-weight:600;
  line-height:1;
  color:#d4af37;
  opacity:.16;
  pointer-events:none;
  z-index:0;
  text-shadow:0 8px 20px rgba(212,175,55,.12);
}
@media (min-width:760px){
  .rh-voice{
    flex-basis:calc((var(--voice-w) - var(--voice-gap)) * 0.4);
    width:calc((var(--voice-w) - var(--voice-gap)) * 0.4);
    min-height:13.75rem;
  }
}
.rh-voice__head,
.rh-voice__stars,
.rh-voice__quote{
  position:relative;
  z-index:1;
}
.rh-voice__glogo{
  flex-shrink:0;
  width:2.5rem;
  height:2.5rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(180deg, #fff, #f8f4ea);
  border:1px solid rgba(212,175,55,.35);
  box-shadow:0 4px 10px -6px rgba(120,90,20,.35);
}
.rh-voice__glogo svg{
  width:1.55rem;
  height:1.55rem;
  display:block;
}
.rh-voice__stars span.is-on{color:#e6b422}
.rh-voice__head{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.rh-voice__who{
  min-width:0;
  flex:1;
}
.rh-voice__who strong{
  display:block;
  font-size:.95rem;
  font-weight:600;
  color:#202124;
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rh-voice__who em{
  display:block;
  margin-top:.12rem;
  font-style:normal;
  font-size:.75rem;
  color:#70757a;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.rh-voice__stars{
  margin:0;
  display:flex;
  gap:1px;
  line-height:1;
  font-size:1.05rem;
  letter-spacing:0;
}
.rh-voice__stars span{color:#dadce0}
.rh-voice__quote{
  margin:0;
  font-family:inherit;
  font-size:.9rem;
  font-weight:400;
  font-style:normal;
  line-height:1.55;
  color:#3c4043;
  display:-webkit-box;
  -webkit-line-clamp:5;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

@keyframes rh-in{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:none}
}
@keyframes rh-glow{
  0%,100%{opacity:.7;transform:scale(1)}
  50%{opacity:1;transform:scale(1.08)}
}
@keyframes rh-spin{to{transform:rotate(360deg)}}
@keyframes rh-voices-scroll{to{transform:translateX(-50%)}}
@keyframes rh-cta-drift{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(18px,-14px)}
}
@keyframes rh-cta-pulse{
  0%,100%{box-shadow:0 12px 28px -14px rgba(0,0,0,.45)}
  50%{box-shadow:0 16px 34px -10px rgba(255,255,255,.28),0 12px 28px -14px rgba(0,0,0,.4)}
}
@keyframes rh-cta-fly{
  0%{transform:translate(-1.2rem, 4.5rem) rotate(-18deg);opacity:0}
  12%{opacity:1}
  50%{transform:translate(11rem, .4rem) rotate(8deg);opacity:1}
  88%{opacity:1}
  100%{transform:translate(17rem, 7rem) rotate(22deg);opacity:0}
}
@keyframes rh-path-bob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
}

@media (hover:none){
  .rh-dest:hover,.rh-pkg:hover,.rh-why__item:hover,.rh-offer:hover{transform:none;box-shadow:none}
  .rh-dest:active,.rh-pkg:active{transform:scale(.98)}
  .rh-path__step:hover .rh-path__art{transform:none}
  .rh-path__step:hover .rh-path__node{transform:none}
  .rh-path__step:hover strong{color:var(--rh-ink);transform:none}
}

@media (prefers-reduced-motion:reduce){
  .rh *,.rh *::before,.rh *::after{transition:none !important;animation:none !important}
  .rh-hero__in,.rh-reveal,.rh-voice{
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
  }
  .rh-voices__rail{overflow-x:auto;mask-image:none;-webkit-overflow-scrolling:touch}
  .rh-voice[aria-hidden="true"]{display:none}
}
