/* Tour page overrides (kept intentionally minimal). */

.hero-slide--tour {
  position: relative;
  min-height: clamp(720px, 96vh, 1040px);
  background: #0b0b0b;
  overflow: hidden;
}

.tour-hero__edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
  max-width: none;
  display: block;
  z-index: 2;
  pointer-events: none;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.tour-after-hero {
  position: relative;
  background: #ffffff;
  margin-top: -8px;
  overflow-x: hidden;
  overflow-x: clip;
}

.tour-after-hero__brush {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: clamp(20px, 3vw, 36px);
  background: #ffffff url("../img/transitup.png") center top / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 1;
}

.tour-after-hero > .container {
  position: relative;
  z-index: 2;
}

.hero-slide--tour .hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide--tour .hero-slide__slider,
.hero-slide--tour .hero-slide__slider .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.hero-slide--tour .hero-slide__bg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b0b0b;
}

.hero-slide--tour .hero-slide__asset {
  position: absolute;
  inset: -4%;
  width: calc(100% + 8%);
  height: calc(100% + 8%);
  transform:
    translate3d(
      var(--tour-hero-pointer-x, 0px),
      calc(var(--tour-hero-media-shift, 0px) + var(--tour-hero-pointer-y, 0px)),
      0
    )
    scale(var(--tour-hero-media-scale, 1.06));
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.2s linear;
}

.hero-slide--tour .hero-slide__asset--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide--tour .hero-slide__asset--video {
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.2s linear;
}

.hero-slide--tour .hero-slide__poster {
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.2s linear;
}

.hero-slide--tour .hero-slide__bg--video-ready .hero-slide__asset--video {
  opacity: 1;
}

.hero-slide--tour .hero-slide__bg--video-ready .hero-slide__poster {
  opacity: 0;
}

.hero-slide--tour .hero-slide__content {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100% - 120px));
  gap: 28px;
  text-align: center;
}

.hero-slide--tour .hero-slide__titles > *,
.hero-slide--tour .hero-slide__lead,
.hero-slide--tour .hero-slide__stats .hero-slide__stat,
.hero-slide--tour .hero-slide__stats .hero-slide__divider {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  will-change: transform, opacity;
}

.hero-slide--tour.hero-slide--ready .hero-slide__titles > *,
.hero-slide--tour.hero-slide--ready .hero-slide__lead,
.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__stat,
.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__divider {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slide--tour.hero-slide--ready .hero-slide__titles > *:nth-child(1) {
  transition-delay: 0.08s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__titles > *:nth-child(2) {
  transition-delay: 0.18s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__lead {
  transition-delay: 0.3s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__stat:nth-of-type(1) {
  transition-delay: 0.42s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__divider:nth-of-type(1) {
  transition-delay: 0.5s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__stat:nth-of-type(2) {
  transition-delay: 0.58s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__divider:nth-of-type(2) {
  transition-delay: 0.66s;
}

.hero-slide--tour.hero-slide--ready .hero-slide__stats .hero-slide__stat:nth-of-type(3) {
  transition-delay: 0.74s;
}

.hero-slide--tour .hero-slide__titles {
  gap: 10px;
}

.hero-slide--tour .hero-slide__title {
  margin: 0;
  font-family: var(--default-font, "Montserrat", sans-serif);
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #ffd046;
  text-shadow:
    0 12px 26px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-slide--tour .hero-slide__title--big {
  font-size: clamp(34px, 5.8vw, 74px);
}

.hero-slide__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.hero-slide--tour .hero-slide__subtitle {
  max-width: 900px;
  margin: 0;
  font-family: var(--default-font, "Montserrat", sans-serif);
  font-weight: 500;
  font-size: clamp(15px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
  text-shadow:
    0 10px 22px rgba(0, 0, 0, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-slide--tour .hero-slide__lead {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-slide--tour .hero-slide__lead-cta-wrap {
  width: auto;
  max-width: 100%;
}

.hero-slide--tour .hero-slide__lead-cta {
  width: min(420px, 78vw);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #f39504 0%, #ffb627 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 30px rgba(243, 149, 4, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-slide--tour .hero-slide__lead-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(243, 149, 4, 0.4);
  filter: brightness(1.03);
}

.hero-slide--tour .hero-slide__lead-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}

.hero-slide__lead-arrow {
  font-size: 18px;
  line-height: 1;
}

.hero-slide--tour .hero-slide__lead-form {
  width: min(880px, 92vw);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 10px;
  border-radius: 12px;
}

.hero-slide--tour .hero-slide__lead-row {
  grid-template-columns: minmax(170px, 1fr) minmax(170px, 1fr) minmax(170px, 1fr) auto;
  gap: 6px;
}

.hero-slide--tour .hero-slide__lead-field {
  background: #f6efe6;
  padding: 8px 12px;
  gap: 2px;
}

.hero-slide--tour .hero-slide__lead-submit {
  white-space: nowrap;
  box-shadow: 0 18px 30px rgba(229, 57, 47, 0.4);
  padding: 9px 14px;
  font-size: 14px;
  line-height: 1.2;
}

.hero-slide--tour .hero-slide__lead-submit:hover {
  box-shadow: 0 20px 36px rgba(229, 57, 47, 0.45);
}

.hero-slide--tour .hero-slide__lead-note {
  margin-top: 12px;
}

.hero-slide__lead-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-slide__lead-label {
  display: none;
}

.hero-slide__lead-field input {
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 4px 0;
  outline: none;
  min-height: 44px;
}

.hero-slide__lead-field select {
  border: none;
  background: transparent;
  font-size: 15px;
  padding: 4px 0;
  outline: none;
  min-height: 44px;
}

.hero-slide__lead-field input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.hero-slide__lead-field select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 18px;
  background: transparent url("../img/chevron-down.svg") no-repeat right center;
  background-size: 12px;
}

.hero-slide__lead-field select option {
  color: #111827;
}

.hero-slide--tour .hero-slide__lead-privacy {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.25);
  max-width: 620px;
  padding: 0 12px;
  align-self: center;
}

.hero-slide__lead-privacy--desktop {
  margin-top: 14px;
}

.hero-slide__privacy-link {
  display: inline;
  padding: 0;
  margin-left: 0;
  border-radius: 0;
  border: 0;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.15s ease;
}

.hero-slide__privacy-link:hover {
  opacity: 0.82;
}

.hero-slide--tour .hero-slide__overlay--bottom {
  height: 55%;
}

.hero-slide--tour .hero-slide__stats {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: clamp(32px, 5vh, 80px);
  width: min(1180px, 92vw);
  gap: clamp(18px, 2vw, 32px);
  color: #ffffff;
}

.hero-slide--tour .hero-slide__stat-value {
  color: #ffd046;
  text-shadow:
    0 12px 26px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.35);
  font-weight: 800;
}

.hero-slide--tour .hero-slide__stat-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-slide--tour .hero-slide__divider {
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 1199.98px) {
  .hero-slide--tour .hero-slide__content {
    width: min(94vw, 980px);
  }

  .hero-slide--tour .hero-slide__stats {
    width: calc(100% - 60px);
    bottom: clamp(28px, 6vh, 70px);
  }
}

@media (max-width: 991.98px) {
  .hero-slide--tour {
    min-height: 84vh;
  }

  .hero-slide--tour .hero-slide__content {
    top: 52%;
    width: min(96vw, 900px);
  }

  .hero-slide--tour .hero-slide__lead-cta-wrap {
    width: min(520px, 92vw);
  }

  .hero-slide--tour .hero-slide__lead-form {
    padding: 8px 10px;
  }

  .hero-slide--tour .hero-slide__lead-row {
    grid-template-columns: 1fr;
  }

  .hero-slide--tour .hero-slide__lead-submit {
    width: 100%;
    justify-content: center;
  }

  .hero-slide--tour .hero-slide__stats {
    width: calc(100% - 44px);
    bottom: clamp(24px, 6vh, 60px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide--tour .hero-slide__asset {
    transform: none !important;
    transition: none !important;
  }

  .hero-slide--tour .hero-slide__titles > *,
  .hero-slide--tour .hero-slide__lead,
  .hero-slide--tour .hero-slide__stats .hero-slide__stat,
  .hero-slide--tour .hero-slide__stats .hero-slide__divider {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 767.98px) {
  .tour-after-hero {
    margin-top: -6px;
  }

  .tour-after-hero__brush {
    display: none;
  }

  .tour-hero__edge {
    bottom: -1px;
    min-height: 0;
  }

  .hero-slide--tour {
    min-height: 700px;
    padding-bottom: 44px;
  }

  .hero-slide--tour .hero-slide__content {
    gap: 18px;
    top: 67%;
    padding: 0 6px;
    width: 100%;
    align-items: center;
  }

  .hero-slide--tour .hero-slide__titles {
    gap: 4px;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .hero-slide--tour .hero-slide__title {
    font-size: clamp(24px, 7.8vw, 38px);
    line-height: 1.05;
    text-align: center;
  }

  .hero-slide--tour .hero-slide__subtitle {
    font-size: 15px;
    line-height: 1.4;
    padding: 0 10px;
    max-width: 520px;
    text-align: center;
  }

  .hero-slide__eyebrow {
    letter-spacing: 0.14em;
  }

  .hero-slide--tour .hero-slide__lead-form {
    width: calc(100% - 20px);
    max-width: 340px;
    margin: 0 auto;
    padding: 8px 10px;
    border-radius: 10px;
    box-sizing: border-box;
  }

  .hero-slide--tour .hero-slide__lead-cta-wrap {
    width: auto;
    max-width: calc(100% - 20px);
    margin: 0 auto;
    box-sizing: border-box;
  }

  .hero-slide--tour .hero-slide__lead-row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .hero-slide--tour .hero-slide__lead-field {
    padding: 8px 10px;
  }

  .hero-slide__lead-label {
    display: none;
  }

  .hero-slide__lead-field input {
    width: 100%;
    font-size: 14px;
  }

  .hero-slide--tour .hero-slide__lead-submit {
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.2;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-slide--tour .hero-slide__lead-cta {
    width: min(340px, calc(100vw - 28px));
    min-height: 52px;
    padding: 12px 18px;
    font-size: 16px;
    line-height: 1.2;
    box-sizing: border-box;
  }

  .hero-slide--tour .hero-slide__lead-privacy {
    font-size: 12px;
    padding: 0 10px;
    line-height: 1.4;
    max-width: 340px;
    margin: 8px auto 0;
  }

  .hero-slide--tour .hero-slide__lead {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-slide__lead-privacy--desktop {
    max-width: 420px;
  }

  .hero-slide--tour .hero-slide__stats {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    bottom: auto;
    width: calc(100% - 24px);
    max-width: 420px;
    margin: 58px auto 0;
    padding: 10px 12px;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    text-align: center;
  }

  .hero-slide--tour .hero-slide__stat-value {
    font-size: 20px;
  }

  .hero-slide--tour .hero-slide__stat-text {
    font-size: 12.5px;
  }

  .hero-slide--tour .hero-slide__divider {
    display: none;
  }

  .tour-dates__body--calendar {
    padding: 22px 18px;
  }

  .tour-dates__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tour-dates__heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .tour-dates__list {
    gap: 16px;
  }

  .tour-dates__month-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .tour-dates__form-card {
    width: 100%;
  }

  .promo-ticket {
    padding: 16px 0 10px;
  }
}

.hero-slide--tour {
  /* keep default positioning on larger screens */
}

@media (max-width: 575.98px) {
  .hero-slide--tour {
    min-height: 900px;
  }

  .hero-slide--tour .hero-slide__content {
    position: relative;
    left: auto;
    top: 34px;
    transform: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 192px 16px 56px;
    gap: 14px;
    align-items: center;
  }

  .hero-slide--tour .hero-slide__titles {
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-slide--tour .hero-slide__title {
    font-size: clamp(22px, 7.6vw, 34px);
    text-align: center;
  }

  .hero-slide--tour .hero-slide__subtitle {
    max-width: 480px;
  }

  .hero-slide--tour .hero-slide__lead-form {
    max-width: 340px;
    width: calc(100% - 24px);
    box-sizing: border-box;
  }

  .hero-slide--tour .hero-slide__lead-cta-wrap {
    max-width: calc(100% - 24px);
    width: auto;
    box-sizing: border-box;
  }

  .hero-slide--tour .hero-slide__lead-privacy {
    max-width: 340px;
    width: calc(100% - 24px);
    text-align: center;
  }

  .hero-slide__labels-rail {
    padding: 14px 12px;
    margin: 12px auto 0;
  }

  .hero-slide__labels {
    gap: 12px;
  }

  .hero-slide__label {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    padding: 16px 18px;
  }

  .hero-slide__label-meta {
    align-items: center;
  }

  .hero-slide__label-subtext {
    text-align: center;
  }

  .hero-slide--tour .hero-slide__lead-field,
  .hero-slide--tour .hero-slide__lead-submit {
    width: 93%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide--tour .hero-slide__lead-cta {
    width: min(300px, calc(100vw - 32px));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .hero-slide__labels-rail {
    margin: 16px auto 0;
    padding: 8px 12px 0;
  }

  .hero-slide--tour .hero-slide__stats {
    max-width: 340px;
    padding: 12px;
    gap: 10px;
    margin-top: 52px;
  }

  .hero-slide--tour .hero-slide__stat-value {
    font-size: 21px;
  }

  .hero-slide--tour .hero-slide__stat-text {
    font-size: 14px;
    line-height: 1.3;
  }
}

.tour-hero {
  position: relative;
  min-height: clamp(260px, 42vh, 460px);
  color: #ffffff;
  background: #0b0b0b;
  overflow: hidden;
  box-sizing: border-box;
}

.tour-hero__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.tour-hero__slider .swiper-wrapper,
.tour-hero__slide {
  height: 100%;
}

.tour-hero__slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 9, 16, 0.25) 0%,
    rgba(6, 9, 16, 0.55) 45%,
    rgba(6, 9, 16, 0.85) 100%
  );
}

.tour-hero__content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: clamp(36px, 7vh, 60px) 0 clamp(18px, 6vh, 46px);
  box-sizing: border-box;
}

.tour-hero__inner {
  width: min(920px, 100%);
}

.tour-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.85);
}

.tour-hero__title {
  margin: 16px 0 12px;
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  word-break: break-word;
  hyphens: auto;
  color: #ffd046;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.tour-hero__subtitle {
  margin: 0 0 24px;
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 500;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
}

.tour-price-badge {
  align-self: flex-end;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  margin: 6px 0 12px;
  max-width: 320px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.94));
  border: 1px solid rgba(255, 122, 27, 0.4);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.tour-price-badge__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d65f00;
}

.tour-price-badge__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tour-price-badge__old {
  font-size: 15px;
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 700;
}

.tour-price-badge__current-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.tour-price-badge__current {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}

.tour-price-badge__per {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-slide__labels-rail,
.tour-labels-rail {
  position: relative;
  margin: -72px auto -2px;
  padding: 0 16px 6px;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  max-width: 1220px;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-slide__labels {
  justify-content: center;
  margin-bottom: 0;
  gap: 16px;
}

.hero-slide__label {
  min-width: 260px;
  min-height: 110px;
  flex: 1 1 320px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: #ffffff;
  color: #0f172a;
  border: 2px solid rgba(15, 23, 42, 0.2);
  border-radius: 16px;
  box-shadow: none !important;
}

.hero-slide__label-icon {
  color: #f39504;
}

.hero-slide__label-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1.3;
}

.hero-slide__label-text {
  white-space: normal;
  color: #0f172a;
}

.hero-slide__label-subtext {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0.01em;
}

.tour-hero__labels-swiper,
.hero-slide__labels-swiper {
  width: 100%;
  flex: 1 1 100%;
}

.hero-labels-swiper {
  width: 100%;
  padding: 4px 4px 20px;
}

.hero-labels-swiper .swiper-wrapper {
  align-items: stretch;
}

.hero-labels-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.hero-labels-swiper .hero-slide__label {
  width: 100%;
}

.hero-labels-swiper .swiper-button-prev,
.hero-labels-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  top: 50%;
  transform: translateY(-50%);
}

.hero-labels-swiper .swiper-button-prev::after,
.hero-labels-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

.hero-labels-swiper .swiper-button-prev {
  left: -8px;
}

.hero-labels-swiper .swiper-button-next {
  right: -8px;
}

.hero-labels-swiper .swiper-button-disabled {
  opacity: 0.4;
  box-shadow: none;
}

.tour-reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.tour-reviews-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.tour-reviews-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.tour-reviews-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  max-height: 90vh;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
}

.tour-reviews-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  box-shadow: none;
}

.tour-reviews-modal__head {
  padding: 26px 28px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.tour-reviews-modal__eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #f39504;
  font-weight: 800;
}

.tour-reviews-modal__title {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
}

.tour-reviews-modal__body {
  padding: 20px 28px 26px;
  overflow-y: auto;
  display: grid;
  gap: 18px;
}

.tour-reviews-modal__card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 18px;
  background: #fffdfa;
}

.tour-reviews-modal__head-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tour-reviews-modal__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffaf3f, #ff7a1b);
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tour-reviews-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-review-card__head-link,
.tour-reviews-modal__head-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.tour-review-card__head-link:hover .tour-review-card__name,
.tour-reviews-modal__head-link:hover .tour-reviews-modal__name {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .tour-review-card__head-link,
  .tour-reviews-modal__head-link {
    align-items: flex-start;
  }
}
.tour-reviews-modal__name {
  font-weight: 800;
  color: #0f172a;
}

.tour-reviews-modal__meta {
  color: #6b7280;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-reviews-modal__rating {
  color: #f39504;
  font-weight: 800;
}

.tour-reviews-modal__text {
  margin: 0 0 12px;
  color: #374151;
  line-height: 1.6;
}

.tour-review-card__text-content,
.tour-reviews-modal__text-content {
  display: inline;
}

.tour-reviews-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.tour-reviews-modal__thumb {
  display: block;
  width: 100%;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.tour-reviews-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-reviews-modal-open {
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .tour-reviews-modal__panel {
    max-height: 88vh;
  }

  .tour-reviews-modal__body {
    padding: 16px;
  }
}

.tour-hero__labels--below {
  justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .tour-hero__labels--below {
    position: relative;
    top: 2.5rem;
  }
}

.tour-hero__form {
  margin-top: 10px;
  max-width: 920px;
}

.tour-hero__form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
  background: rgba(10, 12, 18, 0.6);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.tour-hero__field {
  flex: 1 1 230px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 0 16px;
  min-height: 56px;
  color: #1f2937;
}

.tour-hero__field input {
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
  width: 100%;
  font-weight: 600;
  color: inherit;
}

.tour-hero__field input::placeholder {
  color: #6b7280;
  font-weight: 500;
}

.tour-hero__field-icon {
  font-size: 18px;
  color: #ff7a1b;
}

.tour-hero__submit {
  flex: 0 0 auto;
  border: 0;
  border-radius: 14px;
  padding: 0 26px;
  min-height: 56px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #ff5a1f, #ff7a1b);
  box-shadow: 0 18px 32px rgba(255, 108, 25, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-hero__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(255, 108, 25, 0.45);
}

.tour-hero__consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.tour-hero__consent input {
  accent-color: #ff7a1b;
}

.tour-hero__form .form-results {
  margin-top: 10px;
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .tour-hero__content {
    padding: 110px 0 70px;
  }
  .tour-hero__title {
    font-size: clamp(32px, 8vw, 78px);
    line-height: 1.06;
  }
  .hero-labels-swiper .swiper-button-prev,
  .hero-labels-swiper .swiper-button-next {
    display: none;
  }
  .tour-dates--inline {
    padding: 32px 22px;
    border-radius: 22px;
  }
  .tour-dates__layout {
    grid-template-columns: 1fr;
  }
  .tour-dates__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tour-dates__toggle {
    width: 100%;
    justify-content: center;
  }
}

.day-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 12px;
}

.tour-days__title {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.3px;
  text-align: center;
  margin-bottom: 20px;
}

.tour-dates {
  position: relative;
  padding: 40px 0 60px;
  overflow: hidden;
  background: #fff7ec;
}

.tour-dates__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 140% at 20% 20%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(120% 120% at 80% 0%, rgba(240, 90, 36, 0.08), transparent);
  opacity: 0.95;
  pointer-events: none;
}

.tour-dates--inline {
  background: #f0f4f8;
  padding: 0;
  margin: 10px auto 26px;
  border: none;
  box-shadow: none;
}

.tour-dates--inline .tour-dates__bg {
  opacity: 0.6;
  background: radial-gradient(130% 130% at 15% 20%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(110% 110% at 85% 0%, rgba(0, 74, 173, 0.06), transparent);
}

.tour-dates__content {
  position: relative;
  z-index: 1;
  max-width: 1260px;
  margin: 6px auto 0;
  padding: 0 24px;
  display: block;
}

.tour-dates__body--calendar {
  background: #ffffff;
  border-radius: 30px;
  padding: 38px 36px 30px;
  box-shadow: 0 20px 40px rgba(240, 90, 36, 0.08);
  border: 2px solid rgba(240, 90, 36, 0.18);
}

.tour-dates__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 360px;
  gap: 28px;
  align-items: start;
}

.tour-dates__heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.tour-dates__title-main {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900;
  color: #111827;
  line-height: 1.1;
}

.tour-dates__year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f05a24;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(240, 90, 36, 0.25);
}

.tour-dates__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px 36px;
}

.tour-dates__month-block {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.tour-dates__month-title {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 18px;
  color: #f05a24;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.tour-dates__month-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #f39504, #f05a24);
  border-radius: 999px;
}

.tour-dates__month-columns {
  display: block;
}

.tour-dates__dates-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row;
  gap: 10px 12px;
}

@media (max-width: 1199.98px) {
  .tour-dates__dates-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tour-dates__dates-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-dates__date-btn {
    padding: 12px 16px;
    font-size: 16px;
    min-height: 48px;
  }
}

@media (max-width: 479.98px) {
  .tour-dates__dates-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.tour-dates__date-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #ffffff;
  padding: 10px 16px;
  margin: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  border-radius: 12px;
  min-height: 44px;
  width: 100%;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.tour-dates__date-btn sup {
  font-size: 11px;
  vertical-align: super;
  margin-left: 2px;
}

.tour-dates__date-btn:hover {
  background: #fff7ec;
  border-color: rgba(243, 149, 4, 0.3);
  box-shadow: 0 4px 12px rgba(243, 149, 4, 0.1);
  text-decoration: none;
}

.tour-dates__date-btn:active {
  transform: scale(0.98);
}

.tour-dates__empty {
  margin-top: 6px;
  color: #4b5563;
  font-weight: 600;
}

.tour-dates__footnote {
  margin-top: 10px;
  font-size: 12px;
  color: #4b5563;
  text-align: left;
}

.tour-dates__form-card {
  background: #fff7ec;
  border-radius: 18px;
  padding: 18px 20px 22px;
  border: 1px solid rgba(240, 90, 36, 0.15);
  box-shadow: 0 18px 38px rgba(240, 90, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tour-dates__form-kicker {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0f172a;
  text-transform: uppercase;
}

.tour-dates__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-dates__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px 8px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(17, 23, 42, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tour-dates__field-placeholder {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6b7280;
}

.tour-dates__field input {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}

.tour-dates__field[hidden] {
  display: none !important;
}

.tour-dates__contact-preference {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px 8px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(17, 23, 42, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.tour-dates__contact-hint {
  font-size: 12px;
  line-height: 1.4;
  color: #6b7280;
}

.tour-dates__select {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 0 0;
  border: none;
  background: transparent;
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  cursor: pointer;
}

.tour-dates__dropdown {
  position: relative;
}

.tour-dates__dropdown-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  padding: 6px;
  list-style: none;
  margin: 0;
  z-index: 20;
}

.tour-dates__dropdown-month {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #ffffff;
  padding: 10px 12px 6px;
  font-weight: 800;
  color: #0f172a;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.tour-dates__dropdown-option {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
}

.tour-dates__dropdown-option:hover,
.tour-dates__dropdown-option:focus-visible {
  background: rgba(243, 149, 4, 0.1);
  outline: none;
}

.tour-dates__select-icon {
  color: #6b7280;
  font-size: 14px;
}

.tour-dates__submit {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 14px 16px;
  background: #f05a24;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 22px rgba(240, 90, 36, 0.25);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tour-dates__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(240, 90, 36, 0.32);
}

.tour-dates__note {
  margin: 0;
  font-size: 14px;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-dates__note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffe7d6;
  color: #9a4b12;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.promo-ticket {
  position: relative;
  padding: 24px 0 10px;
  margin: 10px 0 30px;
  background: transparent;
}

.promo-ticket__bg {
  display: none;
}

.promo-ticket .container {
  position: relative;
  z-index: 1;
}

.promo-ticket__inner {
  position: relative;
  z-index: 1;
}

.promo-ticket__headline {
  margin: 0 0 22px;
  text-align: center;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.promo-ticket__card {
  background: #fffaf4;
  border-radius: 24px;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  box-shadow: 0 26px 60px rgba(240, 90, 36, 0.18);
  border: 3px solid #f05a24;
  position: relative;
  overflow: hidden;
}

.promo-ticket__card::before,
.promo-ticket__card::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #fff7ec;
  border-radius: 50%;
  border: 3px solid #f05a24;
  z-index: 2;
}

.promo-ticket__card::before {
  left: -12px;
}

.promo-ticket__card::after {
  right: -12px;
}

.promo-ticket__stub {
  padding: 26px 28px;
  background: #fff7ec;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-ticket__stub--left {
  background: #fff7ec;
  color: #0f172a;
  border-right: 1px dashed rgba(240, 90, 36, 0.3);
}

.promo-ticket__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f2937;
}

.promo-ticket__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: #0f172a;
}

.promo-ticket__price-block {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.promo-ticket__price {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 900;
  color: #f05a24;
}

.promo-ticket__price-old {
  font-size: 18px;
  font-weight: 700;
  color: #ef4444;
  text-decoration: line-through;
}

.promo-ticket__discount {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.promo-ticket__stub--right {
  gap: 16px;
}

.promo-ticket__list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.promo-ticket__list small {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.promo-ticket__cta {
  border: none;
  align-self: flex-start;
  padding: 12px 22px;
  border-radius: 12px;
  background: #ffffff;
  color: #f05a24;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(240, 90, 36, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.promo-ticket__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(240, 90, 36, 0.3);
}

.promo-ticket__note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991.98px) {
  .promo-ticket__card {
    grid-template-columns: 1fr;
  }
  .promo-ticket__card::before,
  .promo-ticket__card::after {
    display: none;
  }
  .promo-ticket__stub--left {
    border-right: none;
    border-bottom: 1px dashed rgba(13, 40, 90, 0.15);
  }
  .promo-ticket__stub {
    padding: 22px 22px;
  }
}

@media (max-width: 575.98px) {
  .promo-ticket__headline {
    font-size: 24px;
  }
  .promo-ticket__stub {
    gap: 10px;
  }
  .promo-ticket__price-block {
    flex-wrap: wrap;
  }
  .promo-ticket__price {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .tour-dates__body--calendar {
    padding: 20px 18px;
  }
  .tour-dates__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .tour-dates__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tour-dates__form-card {
    order: -1;
  }
}

@media (max-width: 575.98px) {
  .tour-dates__body--calendar {
    padding: 18px 14px;
  }
  .tour-dates__title-main {
    font-size: 32px;
  }
  .tour-dates__year {
    font-size: 14px;
  }
  .tour-dates__month-columns {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .tour-dates__date-btn {
    font-size: 15px;
  }
}

.tour-dates__body {
  transition: max-height 0.3s ease, opacity 0.25s ease;
  overflow: hidden;
  max-height: 9999px;
}

.tour-dates--inline.is-collapsed .tour-dates__body {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.tour-dates--inline.is-collapsed .tour-dates__toggle i {
  transform: rotate(180deg);
}
.tour-dates .container {
  position: relative;
  z-index: 1;
}

.tour-dates__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 30px;
}
.tour-dates__modal .tour-dates__head {
  margin-bottom: 20px;
}

.tour-dates__modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tour-dates__modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.tour-dates__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.tour-dates__modal-panel {
  position: relative;
  width: min(1100px, 96vw);
  max-height: 92vh;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}

.tour-dates__modal-body {
  position: relative;
  padding: 32px;
  max-height: 92vh;
  overflow: auto;
  background: transparent;
}

.tour-dates__close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: rgba(16, 33, 51, 0.12);
  color: #0f172a;
  font-weight: 800;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.tour-dates__close:hover {
  background: rgba(16, 33, 51, 0.18);
}

.tour-dates__eyebrow {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.tour-dates__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.tour-dates__hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.tour-dates__arrow {
  font-size: 22px;
  transform: translateY(-1px);
}

.tour-dates__open {
  border: 2px solid #ff7a1b;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  color: #d65f00;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 20px rgba(255, 122, 27, 0.18);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease, background 0.15s ease;
  text-transform: uppercase;
}

.tour-dates__open:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(255, 122, 27, 0.26);
  background: #ff7a1b;
  color: #ffffff;
}

.tour-dates-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 237, 0.96));
  border: 2px solid rgba(255, 122, 27, 0.45);
  box-shadow: 0 18px 36px rgba(255, 122, 27, 0.18);
  margin: 48px 0 36px;
  position: relative;
  overflow: hidden;
}

.tour-dates-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(140% 120% at 100% 0%, rgba(255, 122, 27, 0.08), transparent);
  pointer-events: none;
}

.tour-dates__title,
.tour-dates__eyebrow {
  color: #0f172a;
}

.tour-dates__months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 4px 0 18px;
}

.tour-dates__month {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ff8f3d, #ff7a1b);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 12px 30px rgba(255, 122, 27, 0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  row-gap: 4px;
  column-gap: 10px;
  text-align: left;
}

.tour-dates__month:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 122, 27, 0.28);
}

.tour-dates__month.is-active {
  background: linear-gradient(90deg, #ffb36a, #ff7a1b);
  box-shadow: 0 18px 40px rgba(255, 122, 27, 0.32);
}

.tour-dates__month-label {
  font-size: 15px;
}

.tour-dates__month-meta {
  font-size: 13px;
  opacity: 0.9;
  text-transform: none;
  letter-spacing: 0.02em;
  justify-self: end;
  background: rgba(0, 0, 0, 0.14);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.tour-dates__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
  padding-bottom: 12px;
}

.tour-dates__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tour-dates__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 122, 27, 0.35);
}

.tour-dates__card--hot {
  border-color: rgba(255, 122, 27, 0.6);
  box-shadow: 0 24px 48px rgba(255, 122, 27, 0.2);
}

.tour-dates__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tour-dates__line {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02));
  margin: 8px 0;
}

.tour-dates__dates {
  font-weight: 800;
  font-size: 20px;
  color: #102133;
  letter-spacing: -0.2px;
}

.tour-dates__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.tour-dates__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #edf2ff;
  color: #1d3f72;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tour-dates__tag--hot {
  background: linear-gradient(135deg, #ff8f3d, #ff7a1b);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 122, 27, 0.3);
}

.tour-dates__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Галочки из WYSIWYG */
.check-item {
  position: relative;
  padding-left: 26px;
}

.check-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.tour-dates__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f3f4f6;
  color: #111827;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.04);
}

.tour-dates__chip--accent {
  background: rgba(255, 122, 27, 0.12);
  color: #d65f00;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 27, 0.3);
}

.tour-dates__note {
  font-size: 14px;
  color: #5c6470;
}

.tour-dates__cta {
  border: none;
  border-radius: 14px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff8f3d, #ff7a1b);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 122, 27, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tour-dates__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255, 122, 27, 0.34);
}

.tour-dates__badge {
  padding: 8px 12px;
  background: rgba(15, 175, 30, 0.12);
  color: #12802b;
  font-weight: 700;
  border-radius: 999px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tour-dates__badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1eb13a;
}

.tour-dates__empty {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(16, 33, 51, 0.08);
  color: #102133;
  font-weight: 600;
}

.tour-dates-modal-open {
  overflow: hidden;
}

.section-divider {
  --section-divider-line-width: 92px;
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-divider::before {
  content: "";
  width: var(--section-divider-line-width);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f39504 0%, rgba(243, 149, 4, 0.18) 100%);
  transform-origin: center;
  transform: scaleX(0.2);
  opacity: 0;
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

.section-divider--left {
  justify-items: start;
}

.section-divider--left::before {
  transform-origin: left center;
}

.section-divider--route-center {
  justify-items: center;
  text-align: center;
}

.section-divider--route-center::before {
  transform-origin: center center;
}

.section-divider--split {
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: start;
  gap: 14px 18px;
}

.section-divider--split::before {
  grid-column: 1 / -1;
}

.section-divider__eyebrow,
.section-divider__title,
.section-divider__text {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-divider__title {
  transition-delay: 0.08s;
}

.section-divider__text {
  transition-delay: 0.16s;
}

.section-divider.section-divider--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-divider.section-divider--visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.section-divider.section-divider--visible .section-divider__eyebrow,
.section-divider.section-divider--visible .section-divider__title,
.section-divider.section-divider--visible .section-divider__text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.tour-advantages {
  padding: 8px 0 34px;
  background: #ffffff;
  color: #0f172a;
  scroll-margin-top: 110px;
}

.tour-advantages__head {
  text-align: center;
  margin-bottom: 28px;
}

.tour-advantages__eyebrow {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f39504;
}

.tour-advantages__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: #111827;
}

.tour-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(22px, 3vw, 32px);
}

.tour-advantages__slider {
  margin-top: 24px;
}

.tour-advantages__slider .swiper-wrapper {
  align-items: stretch;
}

.tour-advantages__slider .swiper-slide {
  height: auto;
}

.tour-advantages__slider .swiper-pagination {
  margin-top: 18px;
  position: static;
}

.tour-advantages__slider .swiper-pagination-bullet {
  background: #f39504;
  opacity: 0.28;
}

.tour-advantages__slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.tour-adv-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e3e3e8;
  box-shadow: -8px 12px 30px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-adv-card:hover {
  transform: translateY(-6px);
  box-shadow: -10px 16px 36px rgba(0, 0, 0, 0.18);
}

.tour-adv-card__media {
  position: relative;
  height: 220px;
  background: linear-gradient(140deg, #514b60, #847e9a 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tour-adv-card--tone-2 .tour-adv-card__media {
  background: linear-gradient(140deg, #3f5b4d, #90ad93 60%);
}

.tour-adv-card--tone-3 .tour-adv-card__media {
  background: linear-gradient(140deg, #4d3b3b, #9f7b7b 60%);
}

.tour-adv-card--tone-4 .tour-adv-card__media {
  background: linear-gradient(140deg, #2c4155, #7b9cb5 60%);
}

.tour-adv-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  filter: saturate(1.05);
}

.tour-adv-card--with-image .tour-adv-card__bg {
  background-image: var(--tour-adv-bg);
}

.tour-adv-card--with-image .tour-adv-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.32));
}

.tour-adv-card__badge {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  color: #f39504;
  font-size: 34px;
}

.tour-adv-card__badge.is-image {
  padding: 10px;
}

.tour-adv-card__badge.is-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tour-adv-card__badge.is-icon i {
  display: block;
}

.tour-adv-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.tour-adv-card__body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #1f1f21;
}

.tour-adv-card__subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #f39504;
  display: none;
}

.tour-adv-card__body p {
  margin: 0;
  color: #3b3b3f;
  line-height: 1.55;
}

@media (max-width: 991.98px) {
  .tour-advantages__grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .tour-adv-card__media {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .tour-advantages {
    padding: 6px 0 24px;
  }
  .tour-advantages__grid {
    gap: 18px;
  }
  .tour-adv-card__media {
    height: 170px;
  }
  .tour-adv-card__body {
    padding: 18px 18px 20px;
  }
  .tour-adv-card__subtitle {
    font-size: 14px;
  }
}

.tour-promo {
  position: relative;
  padding: 90px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ec 40%, #fffaf2 100%);
  overflow: hidden;
}

.tour-promo::before,
.tour-promo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 220px;
  background: url("/static/img/back3.webp") center / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.tour-promo::before {
  top: -60px;
}

.tour-promo::after {
  bottom: -120px;
  transform: scaleX(-1);
}

.tour-promo__title {
  text-align: center;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  letter-spacing: 0.04em;
  margin-bottom: 34px;
  color: #0f172a;
}

.promo-ticket {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 40px;
  padding: clamp(14px, 2vw, 24px);
  background: #ffffff;
}

.promo-ticket__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.28fr) minmax(68px, 0.32fr);
  grid-template-areas: "stub body side";
  gap: 0;
  border: 3px solid #0b4fbf;
  border-radius: 22px;
  background: #f9fbff;
  box-shadow: 0 22px 60px rgba(12, 42, 92, 0.18);
  overflow: hidden;
}

.promo-ticket__card::before,
.promo-ticket__card::after {
  content: "";
  position: absolute;
  left: 34%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0b4fbf;
  z-index: 2;
}

.promo-ticket__card::before {
  top: -16px;
}

.promo-ticket__card::after {
  bottom: -16px;
}

.promo-ticket__headline {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.promo-ticket__stub {
  grid-area: stub;
  background: #fff7ec;
  padding: clamp(22px, 2.5vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  color: #0f172a;
  border-right: 1px dashed rgba(240, 90, 36, 0.3);
}

.promo-ticket__body {
  grid-area: body;
  padding: clamp(24px, 2.6vw, 34px) clamp(22px, 2.6vw, 34px) 26px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  background: linear-gradient(135deg, #ff9b1b 0%, #f05a24 65%, #d84a1d 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.promo-ticket__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.16) 12px,
    transparent 12px,
    transparent 18px
  );
  opacity: 0.7;
}

.promo-ticket__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0b4fbf;
  font-weight: 800;
  font-size: 13px;
}

.promo-ticket__title {
  margin: 6px 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.promo-ticket__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.promo-ticket__note {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.promo-ticket__price-now {
  font-weight: 800;
  font-size: clamp(26px, 4vw, 34px);
  color: #f05a24;
}

.promo-ticket__price-old {
  color: #d12c2c;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 18px;
}

.promo-ticket__discount {
  margin: 6px 0 0;
  color: #0f172a;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.promo-ticket__text {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
}

.promo-ticket__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promo-ticket__list-item {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.promo-ticket__list-item small {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.45;
}

.promo-ticket__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.promo-ticket__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: #ffffff;
  color: #f05a24;
  font-weight: 800;
  font-size: 16px;
  border: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.promo-ticket__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.promo-ticket__side {
  grid-area: side;
  background: #fff7ec;
  color: #f05a24;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  border-left: 1px dashed rgba(240, 90, 36, 0.3);
}

.promo-ticket__side-icon {
  font-size: 20px;
}

.promo-ticket__side-text {
  letter-spacing: 0.08em;
  text-align: center;
}

.promo-ticket__foot {
  margin-top: 28px;
  text-align: center;
  color: #0f172a;
  font-size: 15px;
}

.promo-ticket__foot a {
  color: #f05a24;
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .promo-ticket {
    padding: clamp(12px, 3vw, 20px);
  }
  .promo-ticket__card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "stub body"
      "side side";
  }
  .promo-ticket__card::before,
  .promo-ticket__card::after {
    display: none;
  }
  .promo-ticket__body::before {
    display: none;
  }
  .promo-ticket__side {
    writing-mode: horizontal-tb;
    flex-direction: row;
    justify-content: flex-start;
    border-left: none;
    border-top: 1px dashed rgba(11, 79, 191, 0.25);
    padding: 14px 18px;
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .promo-ticket__card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stub"
      "body"
      "side";
    border-width: 2px;
  }
  .promo-ticket__stub {
    padding: 22px 20px;
  }
  .promo-ticket__body {
    padding: 20px 16px 18px;
    gap: 14px;
  }
  .promo-ticket__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .promo-ticket__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .promo-ticket {
    padding: 16px 12px;
  }
  .promo-ticket__title {
    font-size: 22px;
  }
  .promo-ticket__list-item {
    font-size: 15px;
  }
  .promo-ticket__side {
    font-size: 12px;
  }
}

@media (max-width: 991.98px) {
  .promo-ticket__foot {
    font-size: 15px;
    padding: 0 6px;
  }
}

.tour-promo-simple {
  margin-top: 20px;
  padding: 28px 26px;
  border-radius: 20px;
  border: 2px solid #f39504;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(243, 149, 4, 0.12);
}

.tour-promo-simple__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tour-promo-simple__eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #f05a24;
  font-size: 13px;
}

.tour-promo-simple__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 30px);
  color: #0f172a;
}

.tour-promo-simple__text {
  margin: 10px 0 0;
  color: #4b5563;
  max-width: 780px;
}

.tour-promo-simple__badge {
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff4e5;
  color: #f05a24;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid #f7c68c;
}

.tour-promo-simple__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 18px;
}

.tour-promo-simple__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tour-promo-simple__label {
  font-weight: 700;
  color: #111827;
  font-size: 14px;
}

.tour-promo-simple__field input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  color: #111827;
  background: #f9fafb;
}

.tour-promo-simple__submit {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 14px 26px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #ff9b1b, #f05a24);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(240, 90, 36, 0.28);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tour-promo-simple__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(240, 90, 36, 0.34);
}

.tour-promo-simple__consent {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 767.98px) {
  .tour-promo-simple {
    padding: 24px 20px;
  }
  .tour-promo-simple__form {
    grid-template-columns: 1fr;
  }
  .tour-promo-simple__submit {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}


.day-card {
  position: relative;
  background: #fff;
  border: 2px solid #ff7a1b;
  border-radius: 28px;
  padding: 26px 26px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease;
  will-change: transform, opacity;
}

.day-card.day-card--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: var(--day-card-delay, 0ms);
}

.day-card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.day-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.day-card__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7a1b;
}

.day-card__title {
  margin: 4px 0 0;
  font-size: 26px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}

.day-card__day {
  font-weight: 800;
  font-size: 18px;
  color: #111;
  background: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: 2px solid #ff7a1b;
  box-shadow: 0 10px 24px rgba(255, 122, 27, 0.15);
  white-space: nowrap;
}

.day-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.day-card__section-title {
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: #161616;
  margin-bottom: 6px;
}

.day-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.day-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 122, 27, 0.1);
  border-radius: 999px;
  color: #2b2b2b;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255, 122, 27, 0.25);
}

.day-card__chip-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ff7a1b;
}

.day-card__chip-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.day-card__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.day-card__thumb {
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  min-height: 110px;
  cursor: zoom-in;
  text-decoration: none;
  display: block;
}

.day-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.day-card__activity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #fff6ef;
  color: #e65c00;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(230, 92, 0, 0.2);
  width: fit-content;
}

.day-paragraph {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px;
  line-height: 1.6;
}

.day-paragraph:last-child {
  margin-bottom: 0;
}

.day-paragraph__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1eb13a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 8px 16px rgba(30, 177, 58, 0.15);
  margin-top: 2px;
}

.day-paragraph__icon i {
  line-height: 1;
}

.day-card__toggle {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid #ff7a1b;
  background: #ff7a1b;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.day-card__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 122, 27, 0.25);
}

.day-card__toggle[aria-expanded="true"] {
  background: #fff6ef;
  color: #f05a24;
}

.day-card__toggle i {
  transition: transform 0.2s ease;
}

.day-card__details {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  margin-top: 0;
  padding-top: 0;
  color: #2a2a2a;
  line-height: 1.65;
  transition:
    max-height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    transform 0.32s ease,
    margin-top 0.32s ease,
    padding-top 0.32s ease;
}

.day-card__description p:not(.day-paragraph) {
  position: relative;
  padding-left: 22px;
  margin: 0 0 10px;
}

.day-card__description p:not(.day-paragraph)::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: #f05a24;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
}

.day-card--open .day-card__toggle i {
  transform: rotate(180deg);
}

.day-card--open .day-card__details {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  margin-top: 4px;
  padding-top: 6px;
}

@media (max-width: 767.98px) {
  .day-card {
    padding: 20px;
  }
  .day-card__header {
    align-items: flex-start;
  }
  .day-card__title {
    font-size: 22px;
  }
}

.pdf-cta-block {
  margin-top: 30px;
}

.pdf-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 22px;
  padding: 28px;
  border: 2px solid #ff7a1b;
  border-radius: 22px;
  background: #f9f4e6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.pdf-cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-cta-phone {
  width: 220px;
  height: 440px;
  border: 12px solid #0f0f0f;
  border-radius: 36px;
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12) inset;
  position: relative;
  overflow: hidden;
}

.pdf-cta-phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  border-radius: 8px;
  background: #0f0f0f;
}

.pdf-preview-swiper {
  position: absolute;
  inset: 22px 14px 18px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #fdfdfd 0%, #f2f2f2 100%);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.pdf-preview-swiper .swiper-wrapper {
  height: 100%;
}

.pdf-preview-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f7f7;
}

.pdf-preview-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdf-preview-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: block;
  overflow-y: auto;
}

.pdf-preview-swiper:not(.swiper-initialized) .swiper-slide {
  height: auto;
}

.pdf-preview-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.pdf-preview-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.28);
  opacity: 1;
}

.pdf-preview-pagination .swiper-pagination-bullet-active {
  background: #ff7a1b;
}

.pdf-preview-empty {
  position: absolute;
  inset: 22px 14px 18px;
  border-radius: 18px;
  background: repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.04) 12px,
      rgba(0, 0, 0, 0.02) 12px,
      rgba(0, 0, 0, 0.02) 24px
    ),
    #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pdf-cta-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #241a15;
}

.pdf-cta-title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #2f241d;
}

.pdf-cta-text {
  margin: 0;
  font-weight: 500;
  line-height: 1.55;
}

.pdf-cta-subtitle {
  margin: 6px 0 0;
  font-weight: 700;
}

.pdf-cta-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.pdf-cta-list li + li {
  margin-top: 6px;
}

.pdf-cta-button {
  align-self: flex-start;
  margin-top: 10px;
  border: 0;
  background: linear-gradient(135deg, #ff7a1b, #ff9b1b);
  color: #fff;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(255, 122, 27, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pdf-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(255, 122, 27, 0.36);
}

@media (max-width: 767.98px) {
  .pdf-cta-inner {
    gap: 18px;
  }
  .pdf-cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .pdf-cta-inner {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .pdf-cta-phone {
    width: 180px;
    height: 360px;
  }
}

@media (max-width: 575.98px) {
  .pdf-cta-phone {
    width: 150px;
    height: 300px;
  }
  .pdf-cta-title {
    font-size: 22px;
  }
}

/* Cost blocks */
/* ── Amenities Section (included / excluded) ── */
.amenities-section {
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(243, 149, 4, 0.06), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fcf8f3 100%);
  border: 1px solid rgba(224, 210, 193, 0.72);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.06);
  border-radius: 32px;
  padding: 52px 48px 56px;
  margin-top: 28px;
  margin-bottom: 50px;
  color: #1f2d3d;
}

.amenities-section__head {
  margin-bottom: 12px;
}
.amenities-section__head--excluded {
  margin-top: 52px;
}

.amenities-section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8c6d4a;
  margin-bottom: 8px;
}
.amenities-section__kicker::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, #f39504 0%, rgba(243, 149, 4, 0.18) 100%);
}

.amenities-section__title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  color: #1b2430;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.amenities-section__intro {
  font-size: 16px;
  line-height: 1.75;
  color: #667085;
  max-width: 760px;
  margin: 0;
}
.amenities-section__intro:empty {
  display: none;
}

.amenities-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 149, 4, 0.18), rgba(203, 213, 225, 0.55), rgba(203, 213, 225, 0));
  margin: 22px 0 36px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.amenities-grid--included .amenity-item {
  grid-column: span 4;
}

.amenity-category {
  --amenity-accent: #f39504;
  grid-column: span 6;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
  padding: 26px 24px 24px;
  border-radius: 28px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background:
    radial-gradient(120% 120% at 100% 0%, color-mix(in srgb, var(--amenity-accent) 12%, white) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.98));
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.amenity-category::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amenity-accent) 0%, color-mix(in srgb, var(--amenity-accent) 22%, white) 100%);
}

.amenity-category:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--amenity-accent) 22%, #e2e8f0);
  box-shadow: 0 26px 46px rgba(15, 23, 42, 0.08);
}

.amenity-category__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.amenity-category__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--amenity-accent);
  border: 1px solid color-mix(in srgb, var(--amenity-accent) 18%, white);
  background: linear-gradient(180deg, color-mix(in srgb, var(--amenity-accent) 14%, white), rgba(255, 255, 255, 0.96));
}

.amenity-category__icon img {
  width: 26px;
  height: 26px;
  display: block;
  object-fit: contain;
}

.amenity-category__icon i,
.amenity-category__icon svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.amenity-category__icon i::before {
  display: block;
  line-height: 1;
}

.amenity-category__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.amenity-category__eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--amenity-accent) 68%, #7c5a37);
}

.amenity-category__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #18212d;
  letter-spacing: -0.02em;
}

.amenity-category__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #667085;
}

.amenity-category__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.amenity-category__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #243141;
}

.amenity-category__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 50%;
  color: var(--amenity-accent);
  background: color-mix(in srgb, var(--amenity-accent) 14%, white);
  flex: 0 0 auto;
}

.amenity-category__item-icon svg {
  width: 14px;
  height: 14px;
}

.amenities-grid--excluded .amenity-item {
  grid-column: span 6;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 250, 251, 0.98));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  position: relative;
  overflow: hidden;
}

.amenity-item::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f39504 0%, rgba(255, 207, 138, 0.95) 100%);
  opacity: 0.92;
}

.amenity-item:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 149, 4, 0.2);
  box-shadow: 0 24px 44px rgba(15, 23, 42, 0.08);
}

.amenity-item__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.amenity-item__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a7a55;
  line-height: 1.2;
}

.amenity-item__circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(243, 149, 4, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39504;
  background: linear-gradient(180deg, rgba(255, 244, 230, 0.98), rgba(255, 250, 243, 0.96));
  flex-shrink: 0;
  margin-right: 16px;
  transition: border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.amenity-item:hover .amenity-item__circle {
  border-color: rgba(243, 149, 4, 0.28);
  transform: translateY(-1px);
}

.amenity-item__title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.55;
}

/* Excluded variant */
.amenity-item--excluded {
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(241, 245, 249, 0.98));
  border-color: rgba(203, 213, 225, 0.92);
  box-shadow: none;
}

.amenity-item--excluded::before {
  background: linear-gradient(90deg, #cbd5e1 0%, rgba(203, 213, 225, 0.12) 100%);
}

.amenity-item--excluded .amenity-item__circle {
  border-color: rgba(148, 163, 184, 0.22);
  color: #64748b;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
}
.amenity-item--excluded:hover .amenity-item__circle {
  border-color: rgba(148, 163, 184, 0.36);
}
.amenity-item--excluded .amenity-item__eyebrow {
  color: #94a3b8;
}
.amenity-item--excluded .amenity-item__title {
  color: #475569;
}

@media (max-width: 991.98px) {
  .amenities-section {
    padding: 38px 28px 42px;
    margin-top: 24px;
  }
  .amenities-grid {
    gap: 18px;
  }
  .amenity-category {
    grid-column: span 12;
  }
  .amenities-grid--included .amenity-item {
    grid-column: span 6;
  }
  .amenities-grid--excluded .amenity-item {
    grid-column: span 12;
  }
}

@media (max-width: 767.98px) {
  .amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .amenity-category {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }
  .amenity-category__title {
    font-size: 20px;
  }
  .amenities-grid--included .amenity-item,
  .amenities-grid--excluded .amenity-item {
    grid-column: auto;
  }
  .amenity-item {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }
  .amenity-item__circle {
    width: 56px;
    height: 56px;
    margin-right: 14px;
  }
  .amenity-item__circle svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 575.98px) {
  .amenities-section {
    padding: 30px 18px 34px;
    border-radius: 24px;
    margin-top: 20px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .amenity-category {
    grid-column: auto;
  }
  .amenity-category__head {
    gap: 14px;
  }
  .amenity-category__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .amenity-category__title {
    font-size: 18px;
  }
  .amenity-item__circle {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    margin-right: 12px;
  }
}

@media (max-width: 991.98px) {
  .tour-dates {
    padding: 70px 0 80px;
  }
  .tour-dates__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .tour-dates__months {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tour-dates-trigger {
    flex-direction: column;
    align-items: flex-start;
  }
  .tour-dates__open {
    width: 100%;
    text-align: center;
  }
  .tour-dates__modal {
    align-items: flex-end;
    padding: 0;
  }
  .tour-dates__modal-panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
  .tour-dates__modal-body {
    height: 100%;
    max-height: none;
    padding: 22px 18px 28px;
  }
  .tour-dates__months {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .tour-dates__close {
    top: 14px;
    right: 14px;
  }
}

@media (max-width: 575.98px) {
  .tour-dates__card {
    align-items: flex-start;
  }
  .tour-dates__cta {
    align-self: stretch;
    text-align: center;
  }
}

/* ── Base Stays Slider ── */
.base-pinned-section {
  position: relative;
  margin-bottom: 28px;
}

.base-stays-slider-wrap {
  position: relative;
}

.base-stays-swiper {
  overflow: hidden;
  padding: 8px 0 44px;
}

.base-sticky-stack:empty {
  display: none;
}

.base-sticky__slide {
  height: auto;
}

.base-sticky__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.95fr) minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
  gap: 32px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 28px;
  padding: 36px;
  color: #0f172a;
  min-height: 320px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
  overflow: hidden;
}

.base-sticky__card::before {
  content: "";
  position: absolute;
  left: 36px;
  right: 36px;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #f39504 0%, #ffcf8a 100%);
  opacity: 0.92;
}

.base-sticky__title-col {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-right: 24px;
}

.base-sticky__title-col::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0) 0%, rgba(203, 213, 225, 0.9) 18%, rgba(226, 232, 240, 0.4) 100%);
}

.base-sticky__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.06;
  color: #0f172a;
  letter-spacing: -0.02em;
  max-width: 12ch;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.base-sticky__content-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.base-sticky__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
}

.base-sticky__desc p {
  margin: 0 0 12px;
  color: inherit;
}

.base-sticky__stay-periods {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(243, 149, 4, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.base-sticky__stay-periods-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #334155;
}

.base-sticky__stay-periods-list {
  display: grid;
  gap: 10px;
}

.base-sticky__stay-period {
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.base-sticky__stay-period:first-child {
  padding-top: 0;
  border-top: none;
}

.base-sticky__stay-period-month {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #0f172a;
  text-transform: lowercase;
}

.base-sticky__stay-period-dates {
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.base-sticky__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.base-sticky__tag {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(243, 149, 4, 0.15);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  white-space: nowrap;
  background: linear-gradient(135deg, #fffbf5, #ffffff);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.base-sticky__img-col {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.base-sticky__img-wrap {
  position: relative;
  width: 100%;
  padding: 8px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.base-sticky__img-wrap::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 2;
}

.base-sticky__slider {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.base-sticky__slider .swiper-slide {
  height: auto;
}

.base-sticky__slide-link {
  display: block;
}

.base-sticky__slide-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.base-sticky__dots {
  position: absolute;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 5px;
  justify-content: center;
}

.base-sticky__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
}

.base-sticky__dots .swiper-pagination-bullet-active {
  background: #ffffff;
}

.base-sticky__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
  box-shadow: none;
}

.base-sticky__nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.base-sticky__nav--prev { left: 10px; }
.base-sticky__nav--next { right: 10px; }

.base-stays-pagination {
  position: absolute;
  left: 50% !important;
  bottom: 0 !important;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 6px;
}

.base-stays-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(148, 163, 184, 0.45);
  opacity: 1;
}

.base-stays-pagination .swiper-pagination-bullet-active {
  background: #f39504;
}

.base-stays-nav {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 18px));
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.base-stays-nav:hover {
  background: #ffffff;
  border-color: rgba(243, 149, 4, 0.28);
  transform: translateY(calc(-50% - 18px)) scale(1.04);
}

.base-stays-nav.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.base-stays-nav--prev {
  left: -18px;
}

.base-stays-nav--next {
  right: -18px;
}

@media (max-width: 1199.98px) {
  .base-sticky__card {
    grid-template-columns: minmax(250px, 0.9fr) minmax(320px, 1fr) minmax(280px, 0.88fr);
    padding: 32px 30px;
  }

  .base-stays-nav--prev {
    left: -8px;
  }

  .base-stays-nav--next {
    right: -8px;
  }
}

@media (max-width: 991.98px) {
  .base-pinned-section {
    margin-bottom: 24px;
  }

  .base-stays-swiper {
    padding-bottom: 36px;
  }

  .base-sticky__card {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 28px 24px 30px;
    min-height: auto;
    border-radius: 24px;
  }

  .base-sticky__card::before {
    left: 24px;
    right: 24px;
  }

  .base-sticky__title-col {
    padding-right: 0;
  }

  .base-sticky__title-col::after {
    display: none;
  }

  .base-sticky__title {
    max-width: 11ch;
  }

  .base-sticky__slide-link img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .base-stays-nav {
    display: none;
  }

  .base-sticky__stay-period {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 575.98px) {
  .base-sticky__card {
    padding: 22px 18px 24px;
    border-radius: 20px;
  }

  .base-sticky__card::before {
    left: 18px;
    right: 18px;
  }

  .base-sticky__title {
    font-size: 24px;
    max-width: none;
  }

  .base-sticky__slide-link img {
    height: 180px;
  }

  .base-sticky__tag {
    padding: 7px 13px;
    font-size: 12px;
  }

  .base-sticky__desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .base-sticky__stay-periods {
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .base-sticky__stay-periods-title,
  .base-sticky__stay-period-month,
  .base-sticky__stay-period-dates {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-divider,
  .section-divider::before,
  .section-divider__eyebrow,
  .section-divider__title,
  .section-divider__text,
  .day-card,
  .day-card__details,
  .day-card__toggle,
  .base-sticky__card,
  .base-sticky__title-col,
  .base-sticky__content-col,
  .base-sticky__img-wrap {
    transition: none !important;
    animation: none !important;
  }

  .section-divider,
  .section-divider__eyebrow,
  .section-divider__title,
  .section-divider__text,
  .day-card {
    opacity: 1;
    transform: none;
  }

  .section-divider::before {
    opacity: 1;
    transform: scaleX(1);
  }
}

.tour-base__description p {
  margin: 0 0 12px;
  color: #4b5563;
  line-height: 1.6;
}


/* Reviews header */
.tour-reviews-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tour-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-weight: 800;
  color: #0f172a;
  font-size: 26px;
  line-height: 1.15;
}

.tour-reviews-badge__icon {
  color: #f39504;
  font-size: 28px;
  line-height: 1;
}

.tour-reviews-badge__label {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tour-reviews-badge__value {
  letter-spacing: -0.01em;
  font-size: 26px;
}

.tour-reviews-badge__dot {
  color: #94a3b8;
  font-size: 20px;
}

.tour-reviews-badge__count {
  font-size: 22px;
  font-weight: 700;
  color: #4b5563;
}

.tour-reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fffbf5 0%, #fff7ec 100%);
  border: 1px solid rgba(243, 149, 4, 0.2);
  box-shadow: 0 12px 26px rgba(243, 149, 4, 0.1);
}

.tour-reviews-meta__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #0f172a;
  font-size: 18px;
}

.tour-reviews-meta__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f39504, #ff7a54);
  color: #ffffff;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(243, 149, 4, 0.25);
}

.tour-reviews-meta__label {
  font-size: 14px;
  color: #4b5563;
  font-weight: 700;
}

.tour-reviews-meta__value {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tour-reviews-meta__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  display: inline-block;
}

.tour-reviews-meta__count {
  font-weight: 600;
  color: #4b5563;
  font-size: 15px;
}

@media (max-width: 575.98px) {
  .tour-reviews-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .tour-reviews-badge {
    font-size: 22px;
    gap: 8px;
  }

  .tour-reviews-badge__icon {
    font-size: 24px;
  }

  .tour-reviews-badge__label {
    font-size: 22px;
  }

  .tour-reviews-badge__value {
    font-size: 22px;
  }

  .tour-reviews-badge__count {
    font-size: 20px;
  }
}

/* Reviews list */
.tour-reviews {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}

.tour-review-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tour-review-card:hover {
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1), 0 2px 6px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.tour-review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.tour-review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  color: #475569;
  display: grid;
  place-items: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  border: 2px solid #ffffff;
}

.tour-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tour-review-card__name {
  font-weight: 700;
  color: #111827;
  font-size: 16px;
}

.tour-review-card__sub {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6b7280;
  font-size: 13px;
}

.tour-review-card__rating {
  color: #f39504;
  font-weight: 700;
}

.tour-review-card__dot {
  font-weight: 700;
}

.tour-review-card__text {
  color: #1f2937;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 8px;
}

.tour-review-card__gallery,
.tour-reviews-modal__gallery .tour-review-card__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.tour-review-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f4f6;
  aspect-ratio: 4 / 3;
}

.tour-review-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-review-thumb--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.tour-review-thumb__more-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
}

.tour-review-thumb--hidden {
  display: none;
}

.tour-review-card__toggle {
  border: none;
  background: transparent;
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}

.tour-review-card__text .tour-review-card__toggle,
.tour-reviews-modal__text .tour-review-card__toggle {
  display: inline;
  margin-left: 8px;
  vertical-align: baseline;
}

.tour-review-card__toggle:hover {
  text-decoration: underline;
}

.tour-social {
  margin-top: 28px;
  padding: 32px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.tour-social__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #2563eb;
  font-size: 12px;
  margin-bottom: 6px;
}

.tour-social__title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.tour-social__desc {
  margin: 0 auto 16px;
  max-width: 540px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.5;
}

.tour-social__actions {
  display: flex;
  gap: 14px;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.tour-social-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  background: #f8fbff;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, flex 0.35s ease;
  min-height: 124px;
  flex: 1 1 0;
  min-width: 240px;
  transform-origin: center;
  width: 100%;
}

.tour-social-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.18));
  transition: opacity 0.25s ease;
}

.tour-social-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.tour-social__actions:hover .tour-social-card {
  flex: 0.8 1 0;
}

.tour-social-card:hover {
  flex: 1.6 1 0;
}

.tour-social-card:hover::after {
  opacity: 1;
}

.tour-social-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.25s ease;
}

.tour-social-card__icon svg {
  width: 32px;
  height: 32px;
}

.tour-social-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.tour-social-card__label {
  font-weight: 800;
  font-size: 16px;
  color: #0f172a;
}

.tour-social-card__hint {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #0f172a;
  opacity: 0.75;
}

.tour-social-card__desc {
  font-size: 14px;
  color: #0f172a;
  line-height: 1.45;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.tour-social-card:hover .tour-social-card__icon {
  transform: scale(1.06);
}

.tour-social-card:hover .tour-social-card__desc {
  max-height: 200px;
  opacity: 0.95;
  transform: translateY(0);
}

.tour-social-card__photo {
  grid-column: 1 / -1;
  width: 100%;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  opacity: 1;
  transform: none;
  transition: height 0.3s ease;
  background-size: cover;
  background-position: center;
}

.tour-social-card:hover .tour-social-card__photo {
  height: 140px;
}

.tour-social-card--vk {
  background: linear-gradient(135deg, #2f80ed, #1c6ed6);
  color: #ffffff;
}

.tour-social-card--tg {
  background: linear-gradient(135deg, #31c0f2, #1197da);
  color: #ffffff;
}

.tour-social-card--vk .tour-social-card__hint,
.tour-social-card--tg .tour-social-card__hint,
.tour-social-card--vk .tour-social-card__desc,
.tour-social-card--tg .tour-social-card__desc {
  color: rgba(255, 255, 255, 0.95);
}

.tour-social-card--vk .tour-social-card__label,
.tour-social-card--tg .tour-social-card__label {
  color: #ffffff;
}

.tour-social-card--vk .tour-social-card__photo {
  background-image: linear-gradient(180deg, rgba(0, 64, 145, 0.25), rgba(0, 64, 145, 0.6)), url("../img/vk.jpg");
}

.tour-social-card--tg .tour-social-card__photo {
  background-image: linear-gradient(180deg, rgba(0, 139, 204, 0.25), rgba(0, 139, 204, 0.65)), url("../img/tel.jpg");
}

@media (max-width: 768px) {
  .tour-social__actions {
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .tour-social__actions:hover .tour-social-card,
  .tour-social-card,
  .tour-social-card:hover {
    flex: 1 1 auto;
    transform: none;
    width: 100%;
  }

  .tour-social-card__photo {
    height: 120px;
  }

  .tour-social-card__desc {
    max-height: 200px;
    opacity: 0.95;
    transform: translateY(0);
  }
}


/* Circular image frames (opt-in) */
.tour-circle-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #f39504;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 6px;
}

/* High-density laptops (e.g., MacBook M3) */
@media (min-width: 1440px) {
  .hero-slide--tour {
    min-height: 94vh;
  }

  .hero-slide--tour .hero-slide__content {
    width: min(1260px, 88vw);
    gap: 32px;
  }

  .hero-slide--tour .hero-slide__lead-form {
    width: min(1040px, 82vw);
    padding: 12px 14px;
  }

  .pdf-cta-inner {
    grid-template-columns: 1.15fr 1fr;
  }

  .tariff-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }

  .tour-dates__content {
    max-width: 1340px;
  }
}

/* Small screens with safe areas (e.g., iPhone 17) */
@media (max-width: 480px) {
  .hero-slide--tour {
    min-height: 100vh;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero-slide--tour .hero-slide__content {
    padding: calc(110px + env(safe-area-inset-top)) 14px 18px;
    gap: 12px;
  }

  .hero-slide--tour .hero-slide__lead-form {
    width: calc(100% - 14px);
    max-width: 360px;
    padding: 10px 12px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  }

  .hero-slide--tour .hero-slide__lead-submit {
    font-size: 15px;
  }

  .hero-slide__labels-rail {
    padding: 10px 12px 2px;
    margin: 10px auto 0;
  }

  .tariffs-swiper-wrapper {
    margin-left: -4px;
    margin-right: -4px;
    padding-bottom: 34px;
  }

  .tour-dates__modal {
    padding: 0;
  }

  .tour-dates__modal-panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .tour-dates__modal-body {
    max-height: none;
    height: 100%;
    padding: calc(14px + env(safe-area-inset-top)) 14px calc(12px + env(safe-area-inset-bottom));
  }

  .tour-dates__close {
    top: calc(10px + env(safe-area-inset-top));
    right: 12px;
  }

  .pdf-cta-inner {
    padding: 20px 18px;
  }

  .pdf-cta-phone {
    width: 140px;
    height: 280px;
  }
}
