.experience-reviews,
.experience-motion,
.experience-partners {
  background: var(--cream);
}

.experience-reviews {
  padding: 76px 6vw 84px;
  overflow: hidden;
}

.experience-section-head {
  max-width: 1200px;
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.experience-section-head p {
  max-width: 600px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.experience-review-controls {
  display: flex;
  gap: 10px;
}

.experience-control {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(28, 58, 47, .2);
  background: transparent;
  color: var(--forest);
  font-size: 22px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.experience-control:hover {
  background: var(--forest);
  color: #fff;
}

.experience-review-track {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  padding-bottom: 12px;
}

.experience-review-card {
  flex: 0 0 calc(25% - 15px);
  min-height: 260px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(26, 21, 16, .1);
  border-top: 3px solid var(--saffron);
  scroll-snap-align: start;
}

.experience-review-stars {
  color: var(--gold-light);
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.experience-review-quote {
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.46;
}

.experience-review-meta {
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid rgba(26, 21, 16, .12);
}

.experience-review-name {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.experience-review-trip {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.experience-motion {
  padding: 84px 6vw;
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid rgba(26, 21, 16, .08);
}

.experience-motion-copy {
  max-width: 430px;
}

.experience-motion-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.experience-video {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--forest);
  box-shadow: 0 26px 65px rgba(26, 21, 16, .16);
}

.experience-video video,
.experience-video-poster {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.experience-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity .25s ease;
}

.experience-video.is-playing .experience-video-poster {
  opacity: 0;
  pointer-events: none;
}

.experience-video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 76px;
  height: 76px;
  margin: auto;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: var(--forest);
  cursor: pointer;
}

.experience-video-play::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid currentColor;
  transform: translateX(2px);
}

.experience-video.is-playing .experience-video-play {
  display: none;
}

.experience-partners {
  padding: 78px 6vw 86px;
  border-top: 1px solid rgba(26, 21, 16, .08);
}

.experience-partners .experience-section-head {
  justify-content: center;
  text-align: center;
}

.experience-partners .eyebrow {
  justify-content: center;
}

.experience-partner-window {
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.experience-partner-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: experiencePartnerScroll 26s linear infinite;
}

.experience-partner-window:hover .experience-partner-track {
  animation-play-state: paused;
}

.experience-partner-card {
  width: 172px;
  height: 112px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(26, 21, 16, .1);
}

.experience-partner-card img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

@keyframes experiencePartnerScroll {
  to { transform: translateX(calc(-50% - 9px)); }
}

@media (max-width: 980px) {
  .experience-review-card { flex-basis: calc(50% - 10px); }
  .experience-motion { grid-template-columns: 1fr; }
  .experience-motion-copy { max-width: 680px; }
}

@media (max-width: 640px) {
  .experience-reviews,
  .experience-motion,
  .experience-partners { padding: 58px 20px; }
  .experience-section-head { align-items: flex-start; flex-direction: column; }
  .experience-review-controls { align-self: flex-end; }
  .experience-review-card { flex-basis: 100%; }
  .experience-video { aspect-ratio: 4 / 3; }
  .experience-partner-card { width: 142px; height: 96px; padding: 16px; }
}
