﻿.breadcrumbs {
  padding: 14px 0;
  background: #f7f5f2;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.2;
}

.breadcrumbs__link {
  color: #5b5b5b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: #000;
}

.breadcrumbs__separator {
  color: #9a9a9a;
}

.breadcrumbs__current {
  color: #4a4a4a;
}

.tour-head {
  padding: 70px 0 44px;
  background: #faf8f4;
  font-family: var(--font-main);
}

.tour-head .container {
  width: min(1280px, calc(100vw - 40px));
  max-width: 1280px;
  margin: 0 auto;
}

.tour-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 24px;
  align-items: start;
}

/* Gallery */

.tour-gallery {
  display: grid;
  gap: 18px;
}

.tour-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  isolation: isolate;
  touch-action: pan-y;
}

.tour-gallery__main img {
  width: 100%;
  height: 365px;
  display: block;
  object-fit: cover;
}

.tour-gallery__control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 24, 22, 0.72);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.tour-gallery__main:hover .tour-gallery__control,
.tour-gallery__main:focus-within .tour-gallery__control {
  opacity: 1;
}

.tour-gallery__control:hover,
.tour-gallery__control:focus-visible {
  background: rgba(8, 24, 22, 0.88);
}

.tour-gallery__control:focus-visible {
  outline: 2px solid rgba(246, 178, 77, 0.95);
  outline-offset: 2px;
}

.tour-gallery__control--prev {
  left: 18px;
}

.tour-gallery__control--next {
  right: 18px;
}

.tour-gallery__control svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-gallery__status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  min-width: 56px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(8, 24, 22, 0.68);
  backdrop-filter: blur(10px);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.tour-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.tour-gallery__thumb {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #ddd;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.tour-gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.tour-gallery__thumb:hover {
  transform: translateY(-2px);
}

.tour-gallery__thumb:hover::after {
  background: rgba(6, 43, 39, 0.08);
}

.tour-gallery__thumb:focus-visible {
  outline: none;
}

.tour-gallery__thumb:focus-visible::after {
  border-color: rgba(246, 178, 77, 0.95);
}

.tour-gallery__thumb--active {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.tour-gallery__thumb--active::after {
  border-color: #f6b24d;
}

.tour-gallery__thumb img {
  width: 100%;
  height: 130px;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.tour-gallery__thumb:hover img,
.tour-gallery__thumb:focus-visible img,
.tour-gallery__thumb--active img {
  transform: scale(1.04);
}

.tour-gallery__thumb:not(.tour-gallery__thumb--active) img {
  filter: saturate(0.88);
}

.tour-description {
  padding: 34px 0 18px;
  background: #faf8f4;
  font-family: var(--font-main);
}

.tour-description .container {
  width: min(1280px, calc(100vw - 40px));
  max-width: 1280px;
  margin: 0 auto;
}

.tour-description__title {
  margin: 0 0 18px;

  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #171717;
}

.tour-description__content {
  max-width: 1080px;
}

.tour-description__content p {
  margin: 0 0 16px;

  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  color: #4b4b4b;
}

.tour-description__content p:last-child {
  margin-bottom: 0;
}

.tour-description__next-title {
  margin: 38px 0 0;

  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #171717;
}

@media (max-width: 700px) {
  .tour-description {
    padding: 28px 0 14px;
  }

  .tour-description .container {
    width: min(100% - 32px, 1280px);
  }

  .tour-description__title,
  .tour-description__next-title {
    font-size: 24px;
  }

  .tour-description__content p {
    font-size: 15px;
    line-height: 1.5;
  }

  .tour-description__next-title {
    margin-top: 32px;
  }
}

.tour-program {
  padding: 18px 0 48px;
  background: #faf8f4;
  font-family: var(--font-main);
}

.tour-program .container {
  width: min(1280px, calc(100vw - 40px));
  max-width: 1280px;
  margin: 0 auto;
}

.tour-program__title {
  margin: 0 0 24px;

  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #171717;
}

.tour-program__list {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 1120px;
}

.tour-program__list::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 48px;
  bottom: 64px;
  width: 1px;
  background: #ddd5c9;
}

.tour-program__item {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
}

.tour-program__day {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 14px;

  color: #171717;
}

.tour-program__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #f6b24d;

  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-program__icon svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: #171717;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-program__day strong {
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}

.tour-program__card {
  min-height: 132px;
  padding: 14px 28px;
  border: 1px solid #e2dbd0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.42);
}

.tour-program__card ul {
  margin: 0;
  padding-left: 18px;
}

.tour-program__card li {
  padding-left: 8px;

  font-size: 15px;
  line-height: 1.45;
  font-weight: 400;
  color: #33312e;
}

.tour-program__card li::marker {
  color: #111;
  font-size: 13px;
}

@media (max-width: 800px) {
  .tour-program__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tour-program__list::before {
    left: 21px;
    top: 42px;
    bottom: 190px;
  }

  .tour-program__card {
    margin-left: 56px;
  }
}

@media (max-width: 560px) {
  .tour-program {
    padding: 12px 0 36px;
  }

  .tour-program .container {
    width: min(100% - 32px, 1280px);
  }

  .tour-program__title {
    font-size: 24px;
  }

  .tour-program__card {
    margin-left: 0;
    padding: 14px 18px;
  }

  .tour-program__list::before {
    display: none;
  }

  .tour-program__card li {
    font-size: 14px;
  }
}

.tour-details {
  padding: 8px 0 48px;
  background: #faf8f4;
  font-family: var(--font-main);
}

.tour-details .container {
  width: min(1280px, calc(100vw - 40px));
  max-width: 1280px;
  margin: 0 auto;
}

.tour-details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.tour-box {
  padding: 28px 28px 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.tour-box__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.tour-box__head h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 700;
  color: #121212;
}

.tour-box__head-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.tour-box--included .tour-box__head-icon {
  background: #f6bb4b;
}

.tour-box--excluded .tour-box__head-icon {
  background: #cb6f44;
}

.tour-box__head-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-box__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.45;
  color: #2f2f2f;
}

.tour-box__check,
.tour-box__cross {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-box__check svg,
.tour-box__cross svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-box__check svg {
  stroke: #f4b13d;
}

.tour-box__cross svg {
  stroke: #c56f48;
}

.tour-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tour-fact {
  min-height: 158px;
  padding: 28px 24px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.tour-fact__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.tour-fact__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: #0f201e;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-fact__content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
}

.tour-fact__content strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #2d2d2d;
}

.tour-fact__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #3f3f3f;
}

.tour-fact__content p + p {
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .tour-details__grid {
    grid-template-columns: 1fr;
  }

  .tour-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .tour-details {
    padding: 8px 0 34px;
  }

  .tour-details .container {
    width: min(100% - 32px, 1280px);
  }

  .tour-box {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .tour-box__head h2 {
    font-size: 22px;
  }

  .tour-box__list li {
    font-size: 15px;
  }

  .tour-facts {
    grid-template-columns: 1fr;
  }

  .tour-fact {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .tour-fact__content h3 {
    font-size: 18px;
  }
}

.tour-gallery-section {
  padding: 28px 0 48px;
  background: #faf8f4;
  font-family: var(--font-main);
}

.tour-gallery-section .container {
  width: min(1280px, calc(100vw - 40px));
  max-width: 1280px;
  margin: 0 auto;
}

.tour-gallery-section__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.tour-gallery-section__title {
  margin: 0;

  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: #171717;
}

.tour-gallery-section__button {
  min-height: 42px;
  padding: 0 22px;
  border: 2px solid #cfcac2;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.35);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #242424;
  text-decoration: none;

  font-size: 14px;
  line-height: 1;
  font-weight: 700;

  transition: 0.2s ease;
}

.tour-gallery-section__button:hover {
  background: #ffffff;
  border-color: #bcb4a8;
}

.tour-gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 18px;
}

.tour-gallery-section__item {
  position: relative;
  padding: 0;
  border: 0;
  overflow: hidden;
  height: 150px;
  border-radius: 14px;
  background: #dddddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tour-gallery-section__item::after {
  content: "View larger";
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8, 24, 22, 0.72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tour-gallery-section__item:hover,
.tour-gallery-section__item:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.tour-gallery-section__item:hover::after,
.tour-gallery-section__item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.tour-gallery-section__item:focus-visible {
  outline: 2px solid rgba(246, 178, 77, 0.95);
  outline-offset: 3px;
}

.tour-gallery-section__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tour-gallery-section__item:hover img {
  transform: scale(1.05);
}

.tour-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.tour-lightbox[hidden] {
  display: none;
}

.tour-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 11, 0.84);
  backdrop-filter: blur(10px);
}

.tour-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  gap: 18px;
  align-items: center;
}

.tour-lightbox__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #101716;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.tour-lightbox__image {
  width: 100%;
  max-height: calc(100vh - 180px);
  display: block;
  object-fit: contain;
  background: #101716;
}

.tour-lightbox__caption {
  padding: 16px 20px 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tour-lightbox__title {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: #171717;
}

.tour-lightbox__counter {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #6a6259;
  white-space: nowrap;
}

.tour-lightbox__nav,
.tour-lightbox__close {
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.tour-lightbox__nav:hover,
.tour-lightbox__nav:focus-visible,
.tour-lightbox__close:hover,
.tour-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.tour-lightbox__nav:focus-visible,
.tour-lightbox__close:focus-visible {
  outline: 2px solid rgba(246, 178, 77, 0.95);
  outline-offset: 2px;
}

.tour-lightbox__nav {
  width: 68px;
  height: 68px;
}

.tour-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 46px;
  height: 46px;
}

.tour-lightbox__nav svg,
.tour-lightbox__close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 900px) {
  .tour-gallery-section__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-gallery-section__item {
    height: 180px;
  }

  .tour-lightbox__dialog {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tour-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
  }

  .tour-lightbox__nav--prev {
    left: 14px;
  }

  .tour-lightbox__nav--next {
    right: 14px;
  }
}

@media (max-width: 600px) {
  .tour-gallery-section {
    padding: 24px 0 36px;
  }

  .tour-gallery-section .container {
    width: min(100% - 32px, 1280px);
  }

  .tour-gallery-section__top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .tour-gallery-section__title {
    font-size: 28px;
  }

  .tour-gallery-section__button {
    width: 100%;
  }

  .tour-gallery-section__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tour-gallery-section__item {
    height: 190px;
  }

  .tour-gallery-section__item::after {
    opacity: 1;
    transform: translateY(0);
  }

  .tour-lightbox {
    padding: 14px;
  }

  .tour-lightbox__figure {
    border-radius: 18px;
  }

  .tour-lightbox__image {
    max-height: calc(100vh - 210px);
  }

  .tour-lightbox__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px 16px;
  }

  .tour-lightbox__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    background: rgba(5, 12, 11, 0.48);
  }

  .tour-lightbox__nav {
    width: 46px;
    height: 46px;
  }
}

.tour-cta {
  padding: 28px 0 56px;
  background: #faf8f4;
  font-family: var(--font-main);
}

.tour-cta .container {
  width: min(1280px, calc(100vw - 40px));
  max-width: 1280px;
  margin: 0 auto;
}

.tour-cta__inner {
  position: relative;
  overflow: hidden;

  min-height: 130px;
  padding: 34px 70px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  background:
    linear-gradient(
      135deg,
      rgba(6, 36, 32, 0.94) 0%,
      rgba(16, 55, 47, 0.94) 52%,
      rgba(4, 30, 27, 0.96) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tour-cta__inner::before,
.tour-cta__inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.tour-cta__inner::before {
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;

  background:
    linear-gradient(135deg, transparent 0 42%, rgba(0, 0, 0, 0.16) 42% 56%, transparent 56%),
    linear-gradient(45deg, transparent 0 50%, rgba(0, 0, 0, 0.18) 50% 62%, transparent 62%),
    linear-gradient(155deg, transparent 0 58%, rgba(255, 255, 255, 0.04) 58% 70%, transparent 70%);
  opacity: 0.8;
}

.tour-cta__inner::after {
  right: 40px;
  bottom: -18px;

  width: 84px;
  height: 84px;
  border-radius: 50%;

  background: #f8bd5a;
  box-shadow: inset -8px -10px 0 rgba(0, 0, 0, 0.08);
}

.tour-cta__content {
  position: relative;
  z-index: 2;
}

.tour-cta__title {
  margin: 0 0 12px;

  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
}

.tour-cta__text {
  margin: 0;

  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.tour-cta__button {
  position: relative;
  z-index: 2;

  min-width: 220px;
  min-height: 50px;
  padding: 0 30px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #f6b24d;
  color: #111111;
  text-decoration: none;

  font-size: 16px;
  line-height: 1;
  font-weight: 700;

  box-shadow:
    inset 0 -2px 0 rgba(0, 0, 0, 0.14),
    0 8px 18px rgba(0, 0, 0, 0.18);

  transition: 0.2s ease;
}

.tour-cta__button:hover {
  background: #efa642;
  transform: translateY(-1px);
}

.tour-cta__sun {
  display: none;
}

@media (max-width: 800px) {
  .tour-cta__inner {
    padding: 30px 26px;
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-cta__title {
    font-size: 30px;
  }

  .tour-cta__text {
    font-size: 15px;
  }

  .tour-cta__button {
    width: 100%;
  }

  .tour-cta__inner::after {
    right: -18px;
    bottom: -24px;
  }
}

@media (max-width: 520px) {
  .tour-cta {
    padding: 22px 0 40px;
  }

  .tour-cta .container {
    width: min(100% - 32px, 1280px);
  }

  .tour-cta__inner {
    border-radius: 12px;
  }

  .tour-cta__title {
    font-size: 26px;
  }
}

/* Info card */

.tour-info {
  padding: 28px 24px 22px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.tour-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tour-info__tag {
  padding: 8px 15px;
  border-radius: 999px;
  background: #f1ebdf;
  color: #6a6258;

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.tour-info__title {
  margin: 0 0 12px;

  font-size: 32px;
  line-height: 1.08;
  font-weight: 700;
  color: #151515;
}

.tour-info__text {
  margin: 0 0 18px;

  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #3e3832;
}

.tour-info__price-block {
  margin-bottom: 18px;
  padding: 18px 0 16px;
  border-top: 1px solid #e6ded2;
  border-bottom: 1px solid #e6ded2;
}

.tour-info__price {
  margin-bottom: 4px;

  font-size: 31px;
  line-height: 1;
  font-weight: 700;
  color: #111111;
}

.tour-info__price-note {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #4e4740;
}

.tour-info__list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-info__item {
  display: flex;
  align-items: flex-start;
  gap: 11px;

  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
  color: #322e2a;
}

.tour-info__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
}

.tour-info__icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: #292929;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tour-info__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.tour-info__btn {
  min-height: 46px;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;

  transition: 0.2s ease;
}

.tour-info__btn--primary {
  background: #f6b24d;
  color: #111111;
}

.tour-info__btn--primary:hover {
  background: #eba340;
}

.tour-info__btn--secondary {
  border: 1px solid #cdb7a3;
  background: #ffffff;
  color: #1c1c1c;
}

.tour-info__btn--secondary:hover {
  background: #faf4ed;
}

.tour-info__notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 12px;

  font-size: 12px;
  line-height: 1.3;
  color: #5f5850;
}

.tour-info__icon--small {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

/* Adaptive */

@media (max-width: 1100px) {
  .tour-head__grid {
    grid-template-columns: 1fr;
  }

  .tour-info {
    max-width: 100%;
  }

  .tour-gallery__main img {
    height: 390px;
  }
}

@media (max-width: 700px) {
  .tour-head {
    padding: 22px 0 34px;
  }

  .tour-head .container {
    width: min(100% - 32px, 1280px);
  }

  .tour-gallery__main img {
    height: 290px;
  }

  .tour-gallery__control {
    width: 42px;
    height: 42px;
    opacity: 1;
  }

  .tour-gallery__control--prev {
    left: 12px;
  }

  .tour-gallery__control--next {
    right: 12px;
  }

  .tour-gallery__status {
    right: 12px;
    bottom: 12px;
  }

  .tour-gallery__thumbs {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .tour-gallery__thumb img {
    height: 170px;
  }

  .tour-info {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .tour-info__title {
    font-size: 30px;
  }

  .tour-info__text {
    font-size: 15px;
  }

  .tour-info__price {
    font-size: 28px;
  }

  .tour-info__item {
    font-size: 14px;
  }

  .tour-info__btn {
    min-height: 48px;
    font-size: 15px;
  }
}

/* ADAPTIVE */

