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

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

.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 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.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 {
  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(44px, 7vw, 98px);
}

.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-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;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.35), 0 2px 6px rgba(0, 0, 0, 0.25);
  max-width: 520px;
  align-self: center;
}

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

.hero-slide__privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-left: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero-slide__privacy-link:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.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-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 (max-width: 767.98px) {
  .hero-slide--tour {
    min-height: 700px;
    padding-bottom: 44px;
  }

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

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

  .hero-slide--tour .hero-slide__title {
    font-size: clamp(30px, 9vw, 48px);
    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-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-privacy {
    font-size: 12px;
    padding: 0 6px;
    line-height: 1.4;
    max-width: 360px;
    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: 10px 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: 780px;
  }

  .hero-slide--tour .hero-slide__content {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 160px 16px 22px;
    gap: 14px;
    align-items: center;
  }

  .hero-slide--tour .hero-slide__title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .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-privacy {
    max-width: 340px;
    width: calc(100% - 24px);
  }

  .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__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: 8px;
  }

  .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-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: transparent;
  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: 12px 16px;
}

@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));
  }
}

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

.tour-dates__date-btn {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
}

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

.tour-dates__date-btn:hover {
  color: #0f172a;
  text-decoration: underline;
}

.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__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;
}

.tour-advantages {
  padding: 80px 0 96px;
  background: #ffffff;
  color: #0f172a;
}

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

.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: 60px 0 70px;
  }
  .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: 35px auto 45px;
  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: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  font-size: 14px;
}

.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: 14px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b4fbf;
  font-weight: 800;
  border: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

.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: 24px 20px 22px;
  }
  .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);
}

.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 i {
  transition: transform 0.2s ease;
}

.day-card__details {
  display: none;
  margin-top: 4px;
  color: #2a2a2a;
  line-height: 1.65;
}

.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 {
  display: block;
}

@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 */
.cost-section-heading {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cost-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #1f2d3d;
}

.cost-section-kicker::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.45;
}

.cost-section-intro {
  max-width: 980px;
  line-height: 1.6;
}

.cost-blocks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}

@media (min-width: 992px) {
  .cost-blocks-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
  }
}

.cost-blocks-grid--compact {
  gap: 16px;
}

.cost-card {
  position: relative;
  padding: 32px 26px 26px;
  border-radius: 28px;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    var(--accent-tint, #eef3ff) 75%
  );
  border: 3px solid var(--accent-color, #1a4ed8);
  box-shadow: 0 18px 36px rgba(17, 65, 193, 0.12);
  overflow: hidden;
  min-height: 220px;
}

.cost-card--excluded {
  box-shadow: 0 22px 42px rgba(240, 90, 36, 0.15);
}

.cost-card__icon {
  position: absolute;
  top: -8px;
  right: 18px;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: #ffffff;
  border: 3px solid var(--accent-color, #1a4ed8);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color, #1a4ed8);
  font-size: 32px;
  z-index: 2;
}

.cost-card__icon.is-image {
  padding: 14px;
}

.cost-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cost-card__content {
  position: relative;
  z-index: 1;
  padding-right: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cost-card__description {
  margin: 0;
  color: #374151;
  line-height: 1.5;
}

.cost-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cost-card__list li {
  position: relative;
  padding-left: 32px;
  line-height: 1.45;
  color: #0f172a;
}

.cost-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #1eb13a;
  box-shadow: 0 10px 20px rgba(17, 65, 193, 0.14);
}

.cost-card__list.is-excluded li {
  color: #231916;
}

.cost-card__list.is-excluded li::before {
  content: "✕";
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-color, #f05a24);
  background: #ffffff;
  border: 3px solid var(--accent-color, #f05a24);
  box-shadow: 0 10px 20px rgba(240, 90, 36, 0.12);
}

.cost-card__badge {
  position: absolute;
  top: -12px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 575.98px) {
  .cost-blocks-grid {
    grid-template-columns: 1fr;
  }
  .cost-card {
    padding: 26px 18px 22px;
  }
  .cost-card__icon {
    width: 68px;
    height: 68px;
    top: -6px;
    right: 12px;
  }
  .cost-card__content {
    padding-right: 78px;
  }
}

@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;
  }
}

.tour-base-gallery {
  position: relative;
}

.tour-base-gallery__slider .swiper-slide {
  height: auto;
}

.tour-base-gallery__item,
.tour-base-gallery__placeholder img {
  display: block;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.tour-base-gallery__item img,
.tour-base-gallery__placeholder img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 22px;
}

.tour-base-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tour-base-gallery__grid--two-rows {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 767.98px) {
  .tour-base-gallery__item img,
  .tour-base-gallery__placeholder img {
    height: 200px;
  }
}

.tour-base-gallery__pagination {
  position: static;
  margin-top: 12px;
}

.tour-base-gallery__controls {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

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

.tour-base-gallery__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tour-base-gallery__arrow:hover {
  transform: translateY(-1px);
  border-color: #f39504;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* 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: #7ac70c;
  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: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.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: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3e0;
  color: #f39504;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(34, 197, 94, 0.2);
}

.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 #e5e7eb;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

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

.tour-review-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111827;
  display: grid;
  place-items: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  overflow: hidden;
}

.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: #22c55e;
  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__toggle:hover {
  text-decoration: underline;
}

.tour-social {
  margin-top: 28px;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7f9ff, #ffffff);
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
  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: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  background-size: cover;
  background-position: center;
}

.tour-social-card:hover .tour-social-card__photo {
  height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.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;
    opacity: 1;
    transform: translateY(0);
  }

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

.tour-base-gallery__arrow:focus-visible {
  outline: 2px solid #f39504;
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .tour-base-gallery__controls {
    justify-content: center;
  }
}

/* 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;
  }
}
