.tour-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.tour-hero {
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(64, 163, 105, 0.18), transparent 30%),
    linear-gradient(180deg, #1f1f1f 0%, #0f0f0f 100%);
  color: #fff;
}

.tour-hero .tour-container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
}

.tour-hero__eyebrow,
.tour-section__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #40a369;
}

.tour-hero__title {
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 600;
}

.tour-hero__text {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
  max-width: 700px;
}

.tour-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.tour-btn--primary {
  background: #40a369;
  color: #fff;
}

.tour-btn--primary:hover {
  background: #368d59;
}

.tour-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.tour-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tour-fact {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.tour-fact span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.tour-fact strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.tour-hero__image {
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

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

.tour-section {
  padding: 90px 0;
}

.tour-section--light {
  background: #fff;
  color: #111;
}

.tour-section--dark {
  background: #111;
  color: #fff;
}

.tour-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.tour-section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tour-section__title {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 600;
}

.tour-section__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #666;
}

.tour-section--dark .tour-section__text {
  color: rgba(255, 255, 255, 0.74);
}

.tour-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.tour-feature {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
}

.tour-feature h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.tour-feature p {
  margin: 0;
  color: #666;
  line-height: 1.7;
}

.tour-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tour-timeline__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.tour-timeline__time {
  font-size: 15px;
  font-weight: 700;
  color: #40a369;
  letter-spacing: 1px;
}

.tour-timeline__content h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.tour-timeline__content p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.76);
}

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

.tour-card {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
}

.tour-card h3 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.15;
}

.tour-list {
  margin: 0;
  padding-left: 18px;
  color: #666;
  line-height: 1.8;
}

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tour-gallery__item {
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
}

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

.tour-cta {
  padding: 0 0 90px;
  background: #fff;
}

.tour-cta__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  padding: 34px;
  border-radius: 28px;
  background: #111;
  color: #fff;
}

.tour-cta__title {
  margin: 0 0 14px;
  font-size: 36px;
  line-height: 1.1;
}

.tour-cta__text {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .tour-hero .tour-container,
  .tour-features,
  .tour-grid,
  .tour-gallery {
    grid-template-columns: 1fr;
  }

  .tour-hero__facts {
    grid-template-columns: 1fr;
  }

  .tour-timeline__item {
    grid-template-columns: 1fr;
  }

  .tour-hero__image {
    min-height: 380px;
  }

  .tour-cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .tour-container {
    width: min(100% - 24px, 1180px);
  }

  .tour-hero {
    padding: 130px 0 70px;
  }

  .tour-hero__title {
    font-size: 40px;
  }

  .tour-section {
    padding: 70px 0;
  }

  .tour-section__title {
    font-size: 32px;
  }

  .tour-feature h3,
  .tour-card h3,
  .tour-timeline__content h3,
  .tour-cta__title {
    font-size: 26px;
  }
}