* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.nolink {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

:root {
  --micro-duration: 0.2s;
  --micro-ease: ease;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background: transparent;
  z-index: 1000;
}

.topbar-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #ffe5cc;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.logo {
  font-size: 16px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
  max-width: 130px;
}

a.logo {
  text-decoration: none;
  color: #111;
}

a.logo:hover {
  text-decoration: none;
  color: #111;
  opacity: 0.9;
}

a.logo:focus {
  outline: none;
}

a.logo:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.22);
  border-radius: 8px;
}

.menu {
  display: none;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.topbar .menu a {
  font-size: 13px;
}

.topbar-trailing {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.topbar-burger {
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ff7a00;
  font-family: inherit;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--micro-duration) var(--micro-ease), color var(--micro-duration) var(--micro-ease);
}

.topbar-burger:active {
  transform: scale(0.98);
}

.topbar-burger-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
}

.topbar-burger-lines {
  display: block;
  color: #ff7a00;
}

.topbar-burger-x {
  display: none;
  position: absolute;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: #ff7a00;
}

.topbar-content.is-menu-open .topbar-burger-lines {
  display: none;
}

.topbar-content.is-menu-open .topbar-burger-x {
  display: block;
}

.topbar-burger:focus,
.topbar-burger:focus-visible {
  outline: none;
  box-shadow: none;
}

.topbar-burger:focus-visible {
  color: #e56f00;
}

.top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-left: 0;
  background: #ff7a00;
  color: #fff;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.25);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    filter var(--micro-duration) var(--micro-ease);
  -webkit-tap-highlight-color: transparent;
}

.top-btn:hover {
  filter: brightness(0.94);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.32);
}

.top-btn:active {
  transform: scale(0.98);
  filter: none;
}

.top-btn:focus {
  outline: none;
}

.top-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.24), 0 2px 8px rgba(255, 122, 0, 0.25);
}

.topbar-all-tours {
  display: none;
}

.topbar-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1650;
  background: rgba(20, 22, 28, 0.24);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.topbar-menu-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.is-mobile-menu-open,
body.is-mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-mobile-menu-open {
  touch-action: none;
}

@media (max-width: 768px) {
  .topbar {
    padding: 8px 0;
  }

  .topbar-content {
    flex-wrap: nowrap;
    align-items: center;
    overflow: visible;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .logo {
    max-width: 122px;
    font-size: 15px;
  }

  .topbar-burger {
    display: inline-flex;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  .topbar-burger-graphic {
    width: 26px;
    height: 20px;
  }

  .topbar-burger-lines {
    width: 26px;
    height: 18px;
  }

  .topbar-burger-x {
    font-size: 28px;
  }

  .topbar .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    margin: 0;
    padding: 14px 14px 12px;
    background: #fffdf9;
    border: 1px solid rgba(255, 140, 40, 0.18);
    border-radius: 22px;
    box-shadow:
      0 4px 14px rgba(0, 0, 0, 0.05),
      0 16px 36px rgba(25, 25, 25, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    width: 100%;
    max-height: min(calc(100dvh - 108px), 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .topbar-content.is-menu-open > .menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .topbar .menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .topbar .menu.menu--home {
    padding: 12px 14px 14px;
  }

  .topbar .menu-nav__link,
  .topbar .menu > a,
  .topbar .menu a.menu-link--primary,
  .topbar .menu a.menu-link--secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
    min-height: 0;
    padding: 10px 2px;
    font-size: 24px;
    line-height: 1.25;
    white-space: normal;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 140, 40, 0.14);
    color: #222;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color var(--micro-duration) var(--micro-ease);
  }

  .topbar .menu-nav__link:last-child,
  .topbar .menu > a:last-child {
    border-bottom: none;
  }

  .topbar .menu-nav__link {
    font-weight: 400;
  }

  .topbar .menu-nav__label {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 700;
    transition: color var(--micro-duration) var(--micro-ease);
  }

  /* Nav labels — match .scenario-card h3 («Что вам больше хочется…») */
  .topbar .menu.menu--home .menu-nav__link {
    padding: 7px 2px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
  }

  .topbar .menu.menu--home .menu-nav__arrow {
    font-size: 18px;
  }

  .topbar .menu > a:not(.menu-nav__link) {
    font-weight: 700;
  }

  .topbar .menu-nav__arrow {
    flex: 0 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: rgba(255, 122, 0, 0.58);
    transform: translateX(0);
    transition:
      transform var(--micro-duration) var(--micro-ease),
      color var(--micro-duration) var(--micro-ease);
  }

  .topbar .menu-nav__link:hover,
  .topbar .menu-nav__link:active,
  .topbar .menu > a:hover,
  .topbar .menu > a:active {
    color: #1a1d22;
    background: transparent;
  }

  .topbar .menu-nav__link:hover .menu-nav__label,
  .topbar .menu-nav__link:active .menu-nav__label {
    color: #1a1d22;
  }

  .topbar .menu-nav__link:hover .menu-nav__arrow,
  .topbar .menu-nav__link:active .menu-nav__arrow {
    color: #ff7a00;
    transform: translateX(3px);
  }

  .topbar .menu-cta {
    margin-top: 12px;
    margin-bottom: 0;
    padding: 10px 12px 10px;
    background: #fffaf5;
    border: 1px solid rgba(255, 140, 40, 0.2);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.06);
  }

  .topbar .menu-cta__title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #1e2430;
  }

  .topbar .menu-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 13px;
  }

  /* Typography & layout match .contact-sheet-btn in «Связаться с нами» */
  .topbar .menu-cta .menu-cta__btn {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition:
      border-color var(--micro-duration) var(--micro-ease),
      background-color var(--micro-duration) var(--micro-ease),
      transform var(--micro-duration) var(--micro-ease),
      box-shadow var(--micro-duration) var(--micro-ease),
      filter var(--micro-duration) var(--micro-ease);
    -webkit-tap-highlight-color: transparent;
  }

  .topbar .menu-cta__btn--primary {
    border: none;
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.24);
  }

  .topbar .menu-cta__btn--primary:hover {
    filter: brightness(0.96);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 122, 0, 0.3);
  }

  .topbar .menu-cta__btn--primary:active {
    transform: scale(0.98);
    filter: none;
  }

  .topbar .menu-cta__btn--secondary {
    border: 1px solid #ffcf9f;
    background: #fff8ef;
    color: #cc690c;
    box-shadow: none;
  }

  .topbar .menu-cta__btn--secondary:hover {
    border-color: #ffb778;
    background: #fff2e3;
    transform: translateY(-1px);
  }

  .topbar .menu-cta__btn--secondary:active {
    transform: scale(0.98);
  }

  .topbar .menu-cta__btn:focus {
    outline: none;
  }

  .topbar .menu-cta__btn--primary:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.32), 0 8px 20px rgba(255, 122, 0, 0.24);
  }

  .topbar .menu-cta__btn--secondary:focus-visible {
    border-color: #ff9f42;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
  }

  .topbar-content.is-menu-open .topbar-burger {
    padding: 0;
    min-width: 44px;
    min-height: 44px;
  }

  .topbar-content.is-menu-open .topbar-burger-graphic {
    width: 44px;
    height: 44px;
  }

  .topbar-content.is-menu-open .topbar-burger-x {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
  }

  .topbar:has(.topbar-content.is-menu-open) {
    z-index: 1700;
  }

  .top-btn {
    padding: 8px 11px;
    font-size: 13px;
  }
}

.hero {
  margin-top: 68px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.46) 30%,
      rgba(0, 0, 0, 0.43) 62%,
      rgba(0, 0, 0, 0.41) 100%
    ),
    url("images/ritsa.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 84px 0 76px;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  text-shadow: 0 0.06em 0.28em rgba(0, 0, 0, 0.35);
}

.hero-subline {
  display: block;
  font-size: 0.9em;
  font-weight: 600;
  opacity: 1;
}

.subtitle {
  font-size: 17px;
  max-width: 700px;
  margin: 0 auto 24px;
}

.hero .subtitle {
  text-shadow: 0 0.05em 0.22em rgba(0, 0, 0, 0.3);
}

.hero .subtitle .hero-subtitle-line {
  display: block;
}

.hero .subtitle .hero-subtitle-line:first-child {
  margin-bottom: 0.35em;
}

.hero-trust-line {
  margin: 14px 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.35;
  text-shadow: 0 0.05em 0.2em rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 12px 25px rgba(255, 122, 0, 0.28);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    filter var(--micro-duration) var(--micro-ease);
  -webkit-tap-highlight-color: transparent;
}

.btn:hover {
  filter: brightness(0.96);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.34);
}

.btn:active {
  transform: scale(0.98);
  filter: none;
}

.btn:focus {
  outline: none;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.55), 0 12px 25px rgba(255, 122, 0, 0.28);
}

.btn:hover:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.55), 0 18px 32px rgba(255, 122, 0, 0.35);
}

.hero-benefits {
  background: #ffffff;
  padding: 38px 0 24px;
}

.hero-benefits-checklist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 520px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-benefits-checklist__item {
  margin: 0;
  padding: 14px 20px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: 0;
  color: #434955;
  text-align: center;
  background: #fffdf9;
  border: 1px solid rgba(255, 140, 40, 0.24);
  border-radius: 24px;
  box-shadow: 0 6px 18px rgba(30, 30, 30, 0.03);
  transition: transform 0.15s ease;
}

.hero-benefits-checklist__item:hover {
  transform: translateY(-1px);
}

.tours,
.advantages,
.trust {
  padding: 52px 0;
}

.quick-scenarios {
  padding: 30px 0 10px;
}

.scenario-cards {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 12px;
}

.scenario-wrapper {
  background: rgba(255, 250, 245, 0.55);
  border: 1px solid rgba(255, 140, 40, 0.10);
  border-radius: 22px;
  padding: 22px 16px 18px;
  box-shadow: none;
}

.scenario-wrapper h2 {
  margin-bottom: 16px;
}

.scenario-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  text-decoration: none;
  color: #222;
  background: #ffffff;
  border: 1px solid rgba(255, 140, 40, 0.16);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease);
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.scenario-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.32);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.scenario-card:active {
  transform: scale(0.99);
  border-color: rgba(255, 122, 0, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.scenario-card:focus {
  outline: none;
}

.scenario-card:focus-visible {
  outline: 2px solid rgba(255, 122, 0, 0.42);
  outline-offset: 2px;
}

.scenario-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  transition: color 0.24s ease;
}

.scenario-icon {
  font-size: 15px;
  line-height: 1;
  flex: 0 0 auto;
}

.scenario-card p {
  flex: 1 1 auto;
  margin: 0;
  min-height: 0;
  color: #4a4f58;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-wrap: anywhere;
  transition: color 0.24s ease;
}

.scenario-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding: 10px 0 0;
  border: 0;
  background: transparent;
  color: #ff7a00;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.scenario-cta__label {
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.scenario-cta__arrow {
  display: inline-block;
  font-size: 0.92em;
  font-weight: 400;
  line-height: 1;
  color: #ff7a00;
  transform: translateX(0);
  transition: transform 0.2s ease, color 0.2s ease;
}

.scenario-card:hover .scenario-cta,
.scenario-card:active .scenario-cta,
.scenario-card:focus-visible .scenario-cta {
  color: #e56f00;
}

.scenario-card:hover .scenario-cta__label,
.scenario-card:active .scenario-cta__label,
.scenario-card:focus-visible .scenario-cta__label {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 122, 0, 0.45);
}

.scenario-card:hover .scenario-cta__arrow,
.scenario-card:active .scenario-cta__arrow,
.scenario-card:focus-visible .scenario-cta__arrow {
  color: #e56f00;
  transform: translateX(2px);
}

.scenario-card:hover h3,
.scenario-card:active h3,
.scenario-card:focus-visible h3 {
  color: #1f2328;
}

.scenario-card:hover p,
.scenario-card:active p,
.scenario-card:focus-visible p {
  color: #333333;
}

.scenario-card--max {
  background: #ffffff;
}

.scenario-card--relax {
  background: #ffffff;
}

.scenario-card--drive {
  background: #ffffff;
}

.booking-process {
  padding: 28px 0 32px;
}

.booking-card {
  background: #fffaf5;
  border: 1px solid #f3c7a3;
  border-radius: 16px;
  padding: 20px 18px;
}

.booking-card h2,
.payment-card h2,
.trust-who-helps__card h2 {
  margin-bottom: 12px;
  text-align: center;
}

.booking-card p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.booking-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ffe9d2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.booking-steps__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ff7a00;
  background: #fff7ed;
  border: 1px solid #ffe4c4;
  border-radius: 50%;
}

.booking-steps__body {
  min-width: 0;
  flex: 1;
}

.booking-steps__title,
.payment-features .feature strong,
.trust-who-helps__item-title,
.transport-info__card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1d2128;
}

.booking-steps__title {
  display: block;
  margin: 0 0 4px;
}

.booking-card .booking-steps__text,
.payment-features .feature > div,
.trust-who-helps__item p,
.transport-info__card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.43;
  color: #6b7179;
  overflow-wrap: anywhere;
}

.booking-card p.booking-card__outro {
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  color: #454c58;
}

.booking-trust-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.booking-trust-list__item {
  position: relative;
  margin: 0;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.4;
  color: #3f4753;
}

.booking-trust-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ecf9f0;
  border: 1px solid #b9e6c8;
  color: #2f8f4e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.booking-card__cta {
  width: 100%;
  margin-top: 28px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 44px;
}

@media (min-width: 640px) {
  .booking-card {
    padding: 22px 24px;
  }

  .trust-who-helps__card {
    padding: 17px 19px;
  }

  .booking-card__cta {
    width: auto;
    min-width: 220px;
    display: inline-flex;
    align-self: center;
    justify-content: center;
    margin-top: 28px;
  }
}

@media (max-width: 639px) {
  .booking-process {
    padding: 18px 0 22px;
  }

  .booking-card {
    padding: 14px 12px;
  }

  .booking-steps {
    gap: 8px;
  }

  .booking-steps__item {
    gap: 10px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .booking-steps__num {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .booking-trust-list {
    margin-top: 10px;
    gap: 7px;
  }

  .booking-trust-list__item {
    font-size: 13px;
    padding-left: 24px;
  }

  .booking-trust-list__item::before {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .booking-card__cta {
    margin-top: 24px;
  }

  .booking-card p.booking-card__outro {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }

  .trip-documents__card {
    padding: 14px 12px;
  }

  .trip-documents__item {
    padding: 9px 10px;
    border-radius: 12px;
  }

  .trip-documents__note {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
  }
}

.booking-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 16px 0;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  background: rgba(255, 138, 61, 0.07);
  border-radius: 10px;
}

.feature .icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 20px;
  line-height: 1;
}

.mandarin-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.payment-block {
  padding: 28px 0 32px;
}

.payment-card {
  background: #fffaf5;
  border: 1px solid #f3c7a3;
  border-radius: 16px;
  padding: 20px 18px;
}

.payment-card p {
  margin-bottom: 12px;
  line-height: 1.5;
}

.payment-card p.payment-lead {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f4753;
}

.payment-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0 12px;
}

.payment-features .feature {
  align-items: flex-start;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ffe9d2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.payment-features .feature strong {
  display: block;
  margin-bottom: 4px;
}

.payment-features .feature > div {
  min-width: 0;
  flex: 1;
}

.payment-features .feature br {
  display: none;
}

.payment-trust-list {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .payment-block {
    padding: 18px 0 22px;
  }

  .payment-card {
    padding: 14px 12px;
  }

  .payment-card p.payment-lead {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .payment-features {
    gap: 8px;
    margin: 10px 0 12px;
  }

  .payment-features .feature {
    padding: 9px 10px;
    border-radius: 12px;
  }

  .payment-trust-list {
    margin-top: 10px;
  }

  .trust-who-helps {
    padding: 18px 0 22px;
  }

  .trust-who-helps__card {
    padding: 10px 10px;
  }

  .trust-who-helps__intro {
    margin-bottom: 12px;
  }

  .trust-who-helps__intro p {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.5;
    color: #3f4753;
  }

  .trust-who-helps__intro p:last-child {
    margin-bottom: 0;
  }

  .trust-who-helps__grid {
    gap: 8px;
    margin-bottom: 0;
  }

  .trust-who-helps__item {
    padding: 9px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  }

  #advantages .trust-items {
    gap: 12px;
    margin-top: 22px;
  }

  #advantages .trust-item {
    padding: 14px 15px;
  }

  #advantages .trust-item strong {
    margin-bottom: 8px;
  }
}

.trust-who-helps {
  padding: 28px 0 32px;
}

.trust-who-helps__card {
  background: #fffaf5;
  border: 1px solid #f3c7a3;
  border-radius: 16px;
  padding: 15px 14px;
}

.trust-who-helps__intro {
  max-width: 52em;
  margin: 0 auto 12px;
  text-align: left;
}

.trust-who-helps__intro p {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f4753;
}

.trust-who-helps__intro p:last-child {
  margin-bottom: 0;
}

.trust-who-helps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.trust-who-helps__item {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ffe9d2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trust-who-helps__item-title {
  margin: 0 0 4px;
}

.card[id] {
  scroll-margin-top: 88px;
}

#tours,
#trust-who-helps,
#how-booking,
#how-trip,
#trip-documents,
#advantages,
#faq,
#reviews,
#how-tours,
#contacts {
  scroll-margin-top: 88px;
}

.card:target {
  animation: target-highlight 2s ease-out;
}

@keyframes target-highlight {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  28% {
    transform: translateY(-2px) scale(1.005);
    box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.55), 0 0 0 7px rgba(255, 122, 0, 0.14), 0 20px 36px rgba(255, 122, 0, 0.16);
  }
  56% {
    transform: translateY(-1px) scale(1.003);
    box-shadow: 0 0 0 1px rgba(255, 122, 0, 0.35), 0 0 0 4px rgba(255, 122, 0, 0.09), 0 16px 30px rgba(255, 122, 0, 0.11);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
}

h2 {
  text-align: center;
  margin-bottom: 28px;
  font-size: 28px;
  line-height: 1.2;
}

.tours-lead {
  text-align: center;
  margin: 16px auto 18px;
  max-width: 36em;
  padding: 0 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4a5159;
}

.tours h2 {
  margin-top: 0;
}

.transport-info {
  padding: 16px 0 20px;
  background: transparent;
}

.transport-info__inner {
  margin-left: auto;
  margin-right: auto;
}

.transport-info .transport-info__title {
  margin-top: 0;
  margin-bottom: 10px;
}

.transport-info__lead {
  margin: 0 auto 14px;
  max-width: 36em;
  padding: 0 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4a5159;
}

.transport-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.transport-info__card {
  margin: 0;
  padding: 14px;
  background: #fffdf9;
  border: 1px solid rgba(255, 140, 40, 0.13);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(25, 25, 25, 0.025);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease);
}

.transport-info__card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 140, 40, 0.22);
  box-shadow: 0 8px 20px rgba(25, 25, 25, 0.06);
}

.transport-info__card:active {
  transform: scale(0.99);
}

.transport-info__card--media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.transport-info__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: #f3f0eb;
}

.transport-info__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.transport-info__media--sprinter-exterior {
  background: #f5f5f5;
}

.transport-info__media--sprinter-exterior img {
  object-fit: contain;
  object-position: center;
}

.transport-info__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.transport-info__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 10px;
  padding: 0;
  align-items: center;
}

.transport-info__submedia {
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.transport-info__caption {
  margin: 0;
  padding: 0 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #98a0ad;
  text-align: center;
  font-weight: 400;
}

.transport-info__card-title {
  margin: 0 0 4px;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .transport-info {
    padding: 18px 0 28px;
  }

  .transport-info__lead {
    margin: 0 auto 16px;
  }

  .transport-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
  }

  .transport-info__card {
    padding: 16px;
  }

  .transport-info__card--media {
    gap: 10px;
  }
}

.trust-how-work {
  padding: 44px 0 48px;
  border-top: 1px solid #f0e8de;
  background: #fffdfa;
}

.trust-how-work h2 {
  margin-bottom: 12px;
}

.trust-how-work__lead {
  text-align: center;
  margin: 0 auto 24px;
  max-width: 40em;
  padding: 0 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #4a5159;
}

.trust-how-work__grid + .trust-how-work__lead {
  margin-top: 24px;
}

.trust-how-work__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-how-work__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0;
  padding: 16px 16px;
  background: #fff;
  border: 1px solid #ffe9d2;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.trust-how-work__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  background: #fff7ed;
  border: 1px solid #ffe4c4;
}

.trust-how-work__body {
  min-width: 0;
}

.trust-how-work__body strong {
  display: block;
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1d2128;
}

.trust-how-work__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5f636d;
}

.trust-how-work__footer {
  text-align: center;
  margin: 24px auto 0;
  max-width: 44em;
  padding: 14px 14px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #6b7280;
}

.trust-safety-block {
  padding: 44px 0 48px;
  background: #f6f9fc;
}

.trust-safety-block__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 22px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 155, 80, 0.12),
    0 12px 36px rgba(30, 50, 80, 0.08);
}

.trust-safety-block__card h2 {
  margin: 0 0 18px;
  text-align: left;
  font-size: 23px;
  line-height: 1.28;
  color: #1a2430;
}

.trust-safety-block__content {
  font-size: 15px;
  line-height: 1.6;
  color: #454c58;
}

.trust-safety-block__content p {
  margin: 0 0 14px;
}

.trust-safety-block__content p:last-child {
  margin-bottom: 0;
}

.trust-safety-block__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.trust-safety-block__list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 1.35em;
  line-height: 1.5;
}

.trust-safety-block__list li:last-child {
  margin-bottom: 0;
}

.trust-safety-block__list--checks li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #238d4a;
}

.trust-safety-block__tagline {
  margin: 20px 0 0;
  padding: 16px 16px;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf5 0%, #fff9f3 100%);
  border: 1px solid #ffe9d2;
  box-shadow: 0 8px 20px rgba(255, 140, 55, 0.06);
  font-size: 16px;
  line-height: 1.52;
  color: #29303a;
  text-align: left;
}

.trust-safety-block__tagline strong {
  font-weight: 700;
}

.trip-flow-lead {
  font-size: 15px;
  line-height: 1.5;
  color: #3f4753;
}


.trip-documents {
  padding: 28px 0 32px;
  background: #fffdfa;
  border-top: 1px solid #f0e8de;
}

.trip-documents__card {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 18px;
  background: #fffaf5;
  border: 1px solid #f3c7a3;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(255, 140, 80, 0.07);
}

.trip-documents__card h2 {
  margin-bottom: 12px;
  text-align: center;
}

.trip-documents__lead {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f4753;
}

.trip-documents__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
}

.trip-documents__item {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #ffe9d2;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.trip-documents__item-title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1d2128;
}

.trip-documents__item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.43;
  color: #6b7179;
}

.trip-documents__note {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #454c58;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease);
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.card:active {
  transform: scale(0.99);
}

.card-section--highlights {
  margin-top: 10px;
  padding-top: 0;
}

.card-section--booking {
  margin-top: 12px;
  padding-top: 0;
}

.card .card-section--lead > p:last-of-type {
  margin-bottom: 0;
}

.card .card-section--highlights .card-trust-mini {
  margin-top: 0;
  margin-bottom: 8px;
}

.card .card-section--highlights .card-tags {
  margin: 0;
}

.card h3 {
  margin-bottom: 8px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.card-image-link {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.card .card-meta-line,
.card .card-price-lead {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  color: #5c6570;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.card .card-meta-line {
  margin-top: 10px;
}

.card .card-price-lead {
  margin-bottom: 6px;
}

.card-title-link,
.card-title-link:link,
.card-title-link:visited,
.card-title-link:hover,
.card-title-link:active {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card .card-section--lead p {
  margin-bottom: 5px;
  overflow-wrap: anywhere;
}

.card .card-trust-mini {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #6b7380;
}

.card .card-trust-mini.card-trust-mini--stars {
  font-weight: 400;
  color: #8b91a0;
}

.card a {
  color: #ff7a00;
  text-decoration: none;
  font-weight: bold;
}

.card-book-btn {
  display: block;
  width: 100%;
  margin-top: 11px;
  margin-bottom: 0;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #fff !important;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.25);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    filter var(--micro-duration) var(--micro-ease);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.card-book-btn:hover {
  filter: brightness(0.96);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 122, 0, 0.32);
}

.card-book-btn:active {
  transform: scale(0.98);
  filter: none;
}

.card-book-btn,
.card-book-btn:hover,
.card-book-btn:focus,
.card-book-btn:focus-visible,
.card-book-btn:active,
.card-book-btn:visited {
  text-decoration: none;
}

.card-book-btn:focus {
  outline: none;
}

.card-book-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 10px 22px rgba(255, 122, 0, 0.25);
}

.card-book-btn:hover:focus-visible,
.card-book-btn:focus-visible:hover {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 14px 26px rgba(255, 122, 0, 0.32);
}

.card-program-link {
  display: inline-block;
  color: #ff7a00 !important;
  font-size: 15px;
  font-weight: 700 !important;
  line-height: 1.35;
  padding: 6px 0;
  opacity: 0.95;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.card-program-link:hover {
  color: #d96a00 !important;
  opacity: 1;
}

.card-program-link:focus,
.card-program-link:active {
  color: #d96a00 !important;
  opacity: 1;
}

.card .card-section--booking .card-program-link {
  margin-top: 14px;
}

.back-to-tours-strip {
  text-align: center;
  padding: 10px 0 8px;
}

.back-to-tours-link {
  margin: 0;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(17, 19, 23, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 2000;
}

.popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-popup {
  width: min(100%, 520px);
  background: #fff;
  border: 1px solid #ffe2c4;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  padding: 22px 18px 18px;
  position: relative;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.popup-overlay.is-open .booking-popup {
  transform: translateY(0) scale(1);
}

.booking-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ffd8af;
  background: #fff8ef;
  color: #7b4612;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.booking-popup-close:focus {
  outline: none;
}

.booking-popup-close:focus-visible {
  outline: none;
  border-color: #ff9f42;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.22);
}

.booking-popup h3 {
  font-size: 22px;
  line-height: 1.35;
  margin: 0 38px 12px 0;
}

.booking-selected-tour {
  margin: 0 0 14px;
  color: #5b616d;
}

.booking-form-subtitle {
  margin: -4px 0 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #6b6f7a;
}

.booking-selected-tour strong {
  color: #1d2128;
}

.booking-intro {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #5a616c;
}

.booking-form-state.is-hidden {
  display: none;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-form label {
  font-size: 14px;
  color: #2f333c;
  font-weight: 600;
}

.booking-form input {
  width: 100%;
  border: 1px solid #ffd8af;
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 15px;
  color: #20242b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus {
  border-color: #ff9f42;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.16);
}

#booking-contact::placeholder {
  color: #9ca3af;
  opacity: 1;
}

#booking-contact::-webkit-input-placeholder {
  color: #9ca3af;
}

#booking-contact::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
}

.booking-submit-btn {
  margin-top: 6px;
  border: none;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.booking-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.34);
}

.booking-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.2);
}

.booking-submit-btn:focus {
  outline: none;
}

.booking-submit-btn:focus-visible:not(:disabled) {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 12px 24px rgba(255, 122, 0, 0.28);
}

.booking-submit-btn:hover:focus-visible:not(:disabled),
.booking-submit-btn:focus-visible:hover:not(:disabled) {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 16px 30px rgba(255, 122, 0, 0.34);
}

.booking-submit-note {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: #9ca3af;
  text-align: center;
}

.privacy-note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 10px;
}

.tour-page--golden-ring .booking-error-message {
  min-height: 0;
  margin: 0;
}

.tour-page--golden-ring .booking-submit-btn {
  margin-top: 6px;
}

.booking-error-message {
  min-height: 18px;
  margin: 2px 0 0;
  font-size: 13px;
  color: #cc3a1e;
}

.booking-success-state {
  display: none;
  text-align: center;
  padding: 8px 2px 2px;
}

.booking-success-state.is-visible {
  display: block;
}

.booking-success-icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, rgba(0, 214, 143, 0.07) 0%, transparent 68%);
  border: none;
  border-radius: 0;
}

.booking-success-icon__svg {
  display: block;
  width: 104px;
  height: 104px;
  flex-shrink: 0;
}

.booking-success-state h4 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #1e2430;
}

.booking-success-lead {
  margin: 0 0 18px;
  color: #606674;
  font-size: 16px;
  line-height: 1.45;
}

.tour-page--golden-ring .booking-success-lead {
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .tour-page--golden-ring .booking-success-lead {
    font-size: 15px;
    line-height: 1.4;
  }
}

.booking-success-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.28);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.booking-success-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.34);
}

.booking-success-btn:focus {
  outline: none;
}

.booking-success-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 12px 24px rgba(255, 122, 0, 0.28);
}

.booking-success-btn:focus-visible:hover,
.booking-success-btn:hover:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 16px 30px rgba(255, 122, 0, 0.34);
}

.booking-success-secondary-btn {
  width: 100%;
  margin-top: 14px;
  border: 1px solid #ffc891;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #d36b10;
  background: #fffaf2;
  cursor: pointer;
  transition: border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
  text-decoration: none;
}

.booking-success-secondary-btn:hover {
  border-color: #ffac59;
  background: #fff3e4;
  transform: translateY(-1px);
  text-decoration: none;
}

.booking-success-secondary-btn:focus {
  outline: none;
}

.booking-success-secondary-btn:focus-visible {
  border-color: #ff9f42;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.22);
  text-decoration: none;
}

.booking-success-secondary-btn:active {
  border-color: #ff9f42;
  background: #fff1de;
  box-shadow: 0 1px 3px rgba(179, 88, 0, 0.14) inset;
  transform: translateY(0);
  text-decoration: none;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  gap: 10px;
  margin: 12px 0 0;
}

.card-tags span,
.transport-info__badge {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: fit-content;
  max-width: none;
  min-width: min-content;
  white-space: nowrap;
  box-sizing: border-box;
  background: #fff4e8;
  color: #ff7a00;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0.01em;
}

.card-tags span.card-tag--nowrap {
  flex: 0 0 auto;
  max-width: none;
  min-width: min-content;
  white-space: nowrap;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.35em;
  row-gap: 0.12em;
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  color: #ff7a00;
}

.price-per-person {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  color: #6f7888;
  letter-spacing: 0.02em;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.trust-item {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #ffe9d2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-item:hover {
  transform: translateY(-3px);
  border-color: #ffd3a3;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.09);
}

.trust-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #111;
  overflow-wrap: anywhere;
}

.trust-item p {
  font-size: 16px;
  color: #5f636d;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
}

.advantages-outro {
  text-align: center;
  margin: 28px auto 0;
  padding: 0 6px;
  max-width: 40em;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
  color: #4a5159;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.testimonials-grid .testimonial-author {
  white-space: normal;
  overflow-wrap: anywhere;
}

.testimonials-grid .testimonial-stars {
  margin-right: 0.2em;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 1;
  color: #ff7a00;
}

.testimonials-grid .trust-item strong.testimonial-author {
  margin-bottom: 0;
}

.advantages.testimonials {
  padding: 36px 0 32px;
}

.testimonials h2 {
  margin-bottom: 12px;
  text-align: center;
}

.testimonials .reviews-subtitle {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f4753;
  text-align: center;
}

.testimonials-avito-trust {
  max-width: 520px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  background: #fff8ef;
  border: 1px solid #ffd8b8;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.avito-rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;

  font-size: 18px;
  font-weight: 700;
  color: #222;
}

.avito-rating-label {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1d2128;
}

.avito-rating-value {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1d2128;
}

.avito-star {
  font-size: 18px;
  line-height: 1;
  color: #ff7a00;
}

.avito-meta-line {
  margin-top: 6px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #1d2128;
}

.testimonials-avito-cta {
  text-align: center;
  margin: 0 0 4px;
}

.testimonials-avito-cta .btn {
  display: inline-block;
}

.testimonials-avito-caption {
  text-align: center;
  margin: 14px auto 22px;
  max-width: 28em;
  padding: 0 10px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: #8a9099;
}

.testimonials .testimonial-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonials .testimonial-head__meta {
  flex: 1 1 auto;
  min-width: 0;
}

.testimonial-avatar.avatar-circle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffd8b8;
  color: #cc690c;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  user-select: none;
}

.testimonials .testimonial-route {
  margin: 4px 0 10px;
  padding: 0;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  color: #b0b5bd;
}

.testimonials .testimonial-head__meta .testimonial-route {
  margin: 2px 0 0;
}

.testimonials .testimonials-grid {
  margin-top: 0;
  gap: 8px;
}

.testimonials .trust-item {
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.testimonials .trust-item:hover {
  transform: translateY(-2px);
  border-color: #ffe0c4;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.testimonials .trust-item:active {
  transform: scale(0.99);
}

.testimonials .trust-item strong.testimonial-author {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1d2128;
}

.testimonials .trust-item p {
  font-size: 15px;
  line-height: 1.43;
  color: #6b7179;
}

.testimonial-body {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.testimonial-body.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testimonial-toggle {
  display: none;
  margin-top: 6px;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #ff7a00;
  cursor: pointer;
}

.testimonial-toggle:hover {
  text-decoration: underline;
}

.testimonial-toggle.is-visible {
  display: inline-block;
}

.testimonials-show-more {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 8px auto 0;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  background: #fff;
  color: #e56700;
  border: 1px solid #ffb366;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    border-color var(--micro-duration) var(--micro-ease),
    background-color var(--micro-duration) var(--micro-ease);
  -webkit-tap-highlight-color: transparent;
}

.testimonials-show-more:hover {
  transform: translateY(-1px);
  border-color: #ff9a3c;
  box-shadow: 0 4px 12px rgba(255, 154, 60, 0.14);
}

.testimonials-show-more:active {
  transform: scale(0.98);
}

.testimonials-show-more:focus,
.testimonials-show-more:focus-visible {
  outline: none;
}

.testimonials-show-more:focus-visible {
  border-color: #ff9a3c;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .testimonials-grid {
    gap: 8px;
    margin-top: 22px;
  }

  .testimonials .trust-item {
    padding: 9px 10px;
    border-radius: 12px;
  }

  .testimonials .trust-item strong.testimonial-author {
    margin-bottom: 0;
    font-size: 17px;
  }

  .testimonials .testimonial-head {
    gap: 8px;
    margin-bottom: 7px;
  }

  .testimonial-avatar.avatar-circle {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .testimonials .testimonial-head__meta .testimonial-route {
    margin: 2px 0 0;
    font-size: 12px;
  }
}

.advantages.how-tours {
  padding: 36px 0 32px;
}

.advantages.how-tours h2 {
  margin-bottom: 10px;
}

.how-tours-hint {
  margin: 0 auto 16px;
  max-width: 28em;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  color: #636a77;
}

.how-tours-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}

.how-tours-grid__cell {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eceef2;
}

.how-tours-grid__cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.28s ease;
  transform-origin: center center;
}

@media (hover: hover) and (pointer: fine) {
  .how-tours-grid__cell img {
    cursor: zoom-in;
  }

  .how-tours-grid__cell:hover img {
    transform: scale(1.02);
  }
}

.how-tours-grid__cell img:active {
  transform: scale(0.98);
}

.how-tours-img--ritsa-lake {
  object-position: center 38%;
}

.advantages.faq {
  padding: 28px 0 32px;
}

.advantages.faq h2 {
  margin-bottom: 12px;
}

.faq .faq-intro {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #3f4753;
}

.faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 8px;
  border: 1px solid #ffe9d2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item[open] {
  border-color: #ffd3a3;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.faq-item[open] .faq-summary {
  border: none;
  outline: none;
  box-shadow: none;
}

.faq-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 12px;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: #1d2128;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

.faq-summary:focus {
  outline: none;
  box-shadow: none;
}

.faq-summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 122, 0, 0.45);
  border-radius: 14px;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-right: 1.5px solid #ff7a00;
  border-bottom: 1.5px solid #ff7a00;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-summary::after {
  margin-top: 10px;
  transform: rotate(-135deg);
}

.faq-answer {
  padding: 0 12px 14px;
}

.faq-answer p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.43;
  color: #6b7179;
  overflow-wrap: anywhere;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.final-cta {
  padding: 12px 0 44px;
}

.final-cta-card {
  text-align: center;
  background: #fffaf4;
  border: 1px solid #ffe3c8;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  padding: 20px 16px;
}

.final-cta-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

.final-cta-card p {
  margin: 0 auto 16px;
  max-width: 34em;
  color: #5f636d;
  font-size: 16px;
  line-height: 1.5;
}

.direct-contact {
  padding: 0 0 44px;
}

.direct-contact-card {
  text-align: center;
  background: #fffdf9;
  border: 1px solid #ffe3c8;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  padding: 18px 16px;
}

.direct-contact-card h2 {
  margin-bottom: 8px;
  font-size: 21px;
}

.direct-contact-card p {
  margin: 0 auto 14px;
  max-width: 34em;
  color: #5f636d;
  font-size: 15px;
  line-height: 1.5;
}

.direct-contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
}

.direct-contact-phone {
  margin: 0 auto 14px;
  max-width: 34em;
  font-size: 15px;
  font-weight: 600;
  color: #1e2430;
}

.direct-contact-phone a {
  color: #cc690c;
  text-decoration: none;
}

.direct-contact-phone a:hover {
  text-decoration: underline;
}

.direct-contact-actions .contact-sheet-btn {
  width: 100%;
  box-sizing: border-box;
}

.direct-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ffcb97;
  background: #fff7ed;
  color: #c86000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.direct-contact-btn:hover {
  background: #fff1e1;
  border-color: #ffb56f;
  transform: translateY(-1px);
}

.direct-contact-btn.direct-contact-btn--primary {
  border: none;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #fff;
  box-shadow: 0 12px 25px rgba(255, 122, 0, 0.28);
  min-width: 148px;
}

.direct-contact-btn.direct-contact-btn--primary:hover {
  background: linear-gradient(135deg, #ff850f, #ff9f20);
  border: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.34);
}

.direct-contact-btn.direct-contact-btn--primary:focus {
  outline: none;
}

.direct-contact-btn.direct-contact-btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35), 0 12px 25px rgba(255, 122, 0, 0.28);
}

.site-footer {
  padding: 0 0 28px;
}

.site-footer-inner {
  text-align: center;
  border-top: 1px solid #f0dfcd;
  padding-top: 16px;
}

.site-footer p {
  margin: 0;
}

.site-footer-brand {
  font-size: 15px;
  font-weight: 700;
  color: #4a4f58;
}

.site-footer-note {
  margin-top: 4px !important;
  font-size: 13px;
  color: #6f7682;
}

.site-footer-phone {
  margin-top: 8px !important;
  font-size: 14px;
  color: #6a707a;
  line-height: 1.45;
}

.site-footer-phone a {
  color: #cc690c;
  font-weight: 600;
  text-decoration: none;
}

.site-footer-phone a:hover {
  text-decoration: underline;
}

.site-footer-contacts {
  margin-top: 6px !important;
  font-size: 14px;
  color: #6a707a;
  line-height: 1.45;
}

.site-footer-contacts a {
  color: inherit;
  text-decoration: none;
}

.site-footer-contacts a:hover {
  text-decoration: underline;
}

.site-footer-contacts a.site-footer-contact-primary {
  font-weight: 700;
  color: #e36100;
}

.site-footer-contacts a.site-footer-contact-primary:hover {
  color: #c25200;
}

.site-footer-doc {
  margin-top: 8px !important;
  font-size: 13px;
}

.site-footer-doc span[aria-hidden="true"] {
  display: inline;
}

.site-footer-legal {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #f0dfcd;
  border-radius: 12px;
  background: #fffdf9;
}

.site-footer-legal p + p {
  margin-top: 4px;
}

.site-footer-legal p {
  font-size: 13px;
  line-height: 1.45;
  color: #6a707a;
}

.site-footer-legal a {
  color: #d96a00;
  text-decoration: none;
  font-weight: 600;
}

.site-footer-legal a:hover {
  text-decoration: underline;
}

.site-footer-doc a {
  color: #7a808a;
  text-decoration: none;
}

.site-footer-doc a:hover {
  text-decoration: underline;
}

.site-footer-copy {
  margin-top: 8px !important;
  font-size: 12px;
  color: #8a9099;
}

.site-footer-copyright {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  color: #9ca3af;
  text-align: center;
  pointer-events: none;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  background: rgba(17, 19, 23, 0.46);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
  z-index: 2100;
}

.contact-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-sheet {
  width: min(100%, 460px);
  background: #fff;
  border: 1px solid #ffe2c4;
  border-radius: 18px 18px 14px 14px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
  padding: 18px 16px 14px;
  position: relative;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.24s ease;
}

.contact-overlay.is-open .contact-sheet {
  transform: translateY(0) scale(1);
}

.contact-sheet-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ffd8af;
  background: #fff8ef;
  color: #7b4612;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.contact-sheet h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.3;
  color: #1e2430;
}

.contact-sheet-subtitle {
  margin: 6px 0 8px;
  font-size: 14px;
  color: #636a77;
}

.contact-sheet-blurb {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
  color: #636a77;
}

.contact-sheet-phone-line {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: #1e2430;
}

.contact-sheet-phone-line a {
  color: #cc690c;
  text-decoration: none;
}

.contact-sheet-phone-line a:hover {
  text-decoration: underline;
}

.contact-sheet-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-sheet-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid #ffcf9f;
  background: #fff8ef;
  color: #cc690c;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  transition:
    border-color var(--micro-duration) var(--micro-ease),
    background-color var(--micro-duration) var(--micro-ease),
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    filter var(--micro-duration) var(--micro-ease);
  -webkit-tap-highlight-color: transparent;
}

.contact-sheet-btn:hover {
  border-color: #ffb778;
  background: #fff2e3;
  transform: translateY(-1px);
}

.contact-sheet-btn:active {
  transform: scale(0.98);
}

.contact-sheet-btn:focus {
  outline: none;
}

.contact-sheet-btn:focus-visible {
  border-color: #ff9f42;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.2);
}

.contact-sheet-btn.contact-sheet-btn--primary {
  border: none;
  background: linear-gradient(135deg, #ff7a00, #ff9500);
  color: #fff;
  box-shadow: 0 12px 25px rgba(255, 122, 0, 0.28);
}

.contact-sheet-btn.contact-sheet-btn--primary:hover {
  background: linear-gradient(135deg, #ff850f, #ff9f20);
  border: none;
  filter: brightness(0.96);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.34);
}

.contact-sheet-btn.contact-sheet-btn--primary:active {
  transform: scale(0.98);
  filter: none;
}

.contact-sheet-btn.contact-sheet-btn--primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35), 0 12px 25px rgba(255, 122, 0, 0.28);
}

@media (max-width: 480px) {
  .direct-contact-actions .contact-sheet-btn {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-overlay {
    padding: 8px 8px max(16px, env(safe-area-inset-bottom, 0px));
  }

  .contact-sheet {
    width: 100%;
    border-radius: 16px 16px 12px 12px;
    padding: 16px 14px 12px;
  }

  .hero-benefits-checklist__item {
    font-size: 15px;
    line-height: 1.36;
  }
}

@media (min-width: 481px) {
  .contact-overlay {
    align-items: center;
    padding: 16px;
  }

  .contact-sheet {
    border-radius: 18px;
    padding: 20px 18px 16px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar {
    padding: 12px 0;
  }

  .topbar-content {
    padding: 13px 16px;
  }

  .hero {
    margin-top: 70px;
    padding: 92px 0 80px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 18px;
  }

  .hero-benefits-checklist__item {
    font-size: 17px;
    line-height: 1.33;
  }

  .btn {
    padding: 15px 28px;
    font-size: 17px;
  }

  .cards {
    gap: 16px;
  }

  .scenario-cards {
    gap: 14px;
  }

  .final-cta {
    padding-bottom: 52px;
  }

  .final-cta-card {
    padding: 24px 20px;
  }

  .direct-contact {
    padding-bottom: 52px;
  }

  .direct-contact-card {
    padding: 22px 20px;
  }

  .direct-contact-actions {
    gap: 10px;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .site-footer-inner {
    padding-top: 18px;
  }
}

@media (min-width: 769px) {
  .topbar {
    top: 8px;
  }

  .topbar-content {
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .logo {
    max-width: none;
  }

  .menu {
    display: flex;
    gap: 10px 12px;
    flex-wrap: wrap;
  }

  .menu-nav {
    display: contents;
  }

  .menu-cta {
    display: none;
  }

  .topbar .menu-nav__link {
    display: inline;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
    padding: 0;
    border-bottom: none;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: #333;
    background: transparent;
    transition: color var(--micro-duration) var(--micro-ease);
  }

  .topbar .menu-nav__link:hover,
  .topbar .menu-nav__link:active {
    color: #e56f00;
    background: transparent;
  }

  .topbar .menu-nav__arrow {
    display: none;
  }

  .menu .menu-link--mobile-only {
    display: none;
  }

  .top-btn {
    margin-left: 0;
  }

  .tour-page--golden-ring .topbar-all-tours,
  .tour-page--kyndyg .topbar-all-tours,
  .tour-page--gega .topbar-all-tours {
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
    color: #4a4f58;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
  }

  .tour-page--golden-ring .topbar-all-tours:hover,
  .tour-page--kyndyg .topbar-all-tours:hover,
  .tour-page--gega .topbar-all-tours:hover {
    color: #2c3038;
    text-decoration: none;
  }

  .tour-page--golden-ring .tour-back-to-all,
  .tour-page--kyndyg .tour-back-to-all,
  .tour-page--gega .tour-back-to-all {
    display: none;
  }

  .tour-page--golden-ring .hero.hero--tour,
  .tour-page--kyndyg .hero.hero--tour,
  .tour-page--gega .hero.hero--tour {
    margin-top: 84px;
  }

  .hero {
    margin-top: 76px;
    padding: 106px 0 96px;
  }

  .hero-benefits-checklist {
    max-width: 540px;
    gap: 14px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .tours,
  .advantages,
  .trust {
    padding: 64px 0;
  }

  .advantages.faq {
    padding: 28px 0 32px;
  }

  .quick-scenarios {
    padding: 52px 0 16px;
  }

  h2 {
    margin-bottom: 40px;
    font-size: 34px;
  }

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

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

  .scenario-wrapper {
    padding: 26px 22px 20px;
    border-radius: 24px;
  }

  .scenario-card {
    padding: 16px 18px;
  }

  .card {
    padding: 16px;
  }

  .card-section--highlights {
    margin-top: 10px;
    padding-top: 0;
  }

  .card-section--booking {
    margin-top: 12px;
    padding-top: 0;
  }

  .card-book-btn {
    width: auto;
    min-width: 170px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .card-image {
    height: 220px;
    margin-bottom: 14px;
  }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 40px;
  }

  .testimonials-avito-trust {
    margin-bottom: 18px;
    padding: 14px 18px;
  }

  .testimonials-avito-cta {
    margin-bottom: 4px;
  }

  .testimonials-avito-caption {
    margin-bottom: 28px;
    font-size: 14px;
    max-width: 30em;
  }

  .testimonials .testimonials-grid {
    margin-top: 0;
  }

  .how-tours-hint {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .how-tours-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
  }

  .trust-how-work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .trust-how-work__lead {
    margin-bottom: 26px;
  }

  .trust-how-work {
    padding: 52px 0 56px;
  }

  .trust-who-helps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-who-helps {
    padding: 32px 0 36px;
  }

  .trip-documents__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trip-documents__card {
    padding: 22px 24px;
  }

  .faq-summary {
    padding: 16px 14px;
  }

  .faq-answer {
    padding: 0 14px 16px;
  }

  .card[id] {
    scroll-margin-top: 80px;
  }

  #tours,
  #how-booking,
  #how-trip,
  #trip-documents,
  #advantages,
  #faq,
  #reviews,
  #how-tours,
  #contacts {
    scroll-margin-top: 80px;
  }

  .final-cta {
    padding-bottom: 62px;
  }

  .final-cta-card {
    padding: 28px 24px;
  }

  .final-cta-card h2 {
    font-size: 30px;
  }

  .final-cta-card p {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .direct-contact {
    padding-bottom: 62px;
  }

  .direct-contact-card {
    padding: 24px 24px;
  }

  .direct-contact-card h2 {
    font-size: 24px;
  }

  .direct-contact-card p {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .site-footer {
    padding-bottom: 40px;
  }

  .site-footer-brand {
    font-size: 16px;
  }

  .site-footer-note {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .popup-overlay {
    padding: 10px;
  }

  .booking-popup {
    width: 100%;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 20px 14px 14px;
    border-radius: 16px;
  }

  .booking-popup h3 {
    font-size: 20px;
  }

  .booking-submit-btn {
    width: 100%;
  }

  .booking-success-state h4 {
    font-size: 27px;
  }

  .site-footer-doc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .site-footer-doc span[aria-hidden="true"] {
    display: none;
  }
}

@media (min-width: 1025px) {
  .topbar {
    top: 10px;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar-content {
    padding: 16px 22px;
    border-radius: 20px;
  }

  .hero {
    margin-top: 80px;
    padding: 110px 0;
  }

  .tour-page--golden-ring .hero.hero--tour,
  .tour-page--kyndyg .hero.hero--tour,
  .tour-page--gega .hero.hero--tour {
    margin-top: 88px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* --- Страница экскурсии --- */
.tour-page main section[id],
.tour-page main #tour-pricing,
.tour-page main #tour-pricing-kyndyg {
  scroll-margin-top: 90px;
}

.tour-page--golden-ring a.logo,
.tour-page--golden-ring a.logo:link,
.tour-page--golden-ring a.logo:visited,
.tour-page--golden-ring a.logo:hover,
.tour-page--golden-ring a.logo:active {
  text-decoration: none;
  color: #111;
}

.tour-page--golden-ring a.logo:focus-visible {
  text-decoration: none;
  color: #111;
}

.tour-page--golden-ring .tour-back-to-all__link,
.tour-page--golden-ring .tour-back-to-all__link:link,
.tour-page--golden-ring .tour-back-to-all__link:visited,
.tour-page--golden-ring .tour-back-to-all__link:hover,
.tour-page--golden-ring .tour-back-to-all__link:active,
.tour-page--golden-ring .tour-back-to-all__link:focus,
.tour-page--golden-ring .tour-back-to-all__link:focus-visible {
  text-decoration: none;
}

.tour-page--golden-ring .tour-back-to-all__link:link,
.tour-page--golden-ring .tour-back-to-all__link:visited {
  color: #4a4f58;
}

.tour-page--golden-ring .tour-back-to-all__link:hover {
  color: #2c3038;
}

.tour-page--golden-ring .tour-back-to-all__link:link .tour-back-to-all__mark,
.tour-page--golden-ring .tour-back-to-all__link:visited .tour-back-to-all__mark {
  color: #ff7a00;
}

.tour-page--golden-ring .tour-back-to-all__link:hover .tour-back-to-all__mark,
.tour-page--golden-ring .tour-back-to-all__link:focus-visible .tour-back-to-all__mark {
  color: #e86d00;
}

.tour-back-to-all {
  text-align: left;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.tour-page--golden-ring .tour-back-to-all {
  margin-top: 68px;
  padding: 1px 0 4px;
  background: #faf9f7;
  border-bottom: 1px solid #ede6dc;
}

.tour-back-to-all__link {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #4a4f58;
  text-decoration: none;
  line-height: 1.25;
  -webkit-tap-highlight-color: rgba(255, 122, 0, 0.12);
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

.tour-back-to-all__link:hover {
  color: #2c3038;
  text-decoration: none;
}

.tour-back-to-all__link:focus {
  outline: none;
}

.tour-back-to-all__link:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 122, 0, 0.35);
  border-radius: 4px;
}

.tour-back-to-all__mark {
  color: #ff7a00;
  font-weight: 600;
}

.tour-back-to-all__link:hover .tour-back-to-all__mark {
  color: #e86d00;
}


@media (max-width: 400px) {
  .tour-back-to-all__link {
    font-size: 12px;
  }
}

@media (min-width: 481px) {
  .tour-page--golden-ring .tour-back-to-all {
    margin-top: 70px;
  }
}

@media (min-width: 769px) {
  .tour-page--golden-ring .tour-back-to-all {
    margin-top: 84px;
  }
}

@media (min-width: 1025px) {
  .tour-page--golden-ring .tour-back-to-all {
    margin-top: 88px;
  }
}

/* Тур «Термальные источники Кындыг»: hero, шапка и полоса «назад» — те же приёмы, что у «Золотого кольца» */
.tour-page--kyndyg a.logo,
.tour-page--kyndyg a.logo:link,
.tour-page--kyndyg a.logo:visited,
.tour-page--kyndyg a.logo:hover,
.tour-page--kyndyg a.logo:active {
  text-decoration: none;
  color: #111;
}

.tour-page--kyndyg a.logo:focus-visible {
  text-decoration: none;
  color: #111;
}

.tour-page--kyndyg .tour-back-to-all__link,
.tour-page--kyndyg .tour-back-to-all__link:link,
.tour-page--kyndyg .tour-back-to-all__link:visited,
.tour-page--kyndyg .tour-back-to-all__link:hover,
.tour-page--kyndyg .tour-back-to-all__link:active,
.tour-page--kyndyg .tour-back-to-all__link:focus,
.tour-page--kyndyg .tour-back-to-all__link:focus-visible {
  text-decoration: none;
}

.tour-page--kyndyg .tour-back-to-all__link:link,
.tour-page--kyndyg .tour-back-to-all__link:visited {
  color: #4a4f58;
}

.tour-page--kyndyg .tour-back-to-all__link:hover {
  color: #2c3038;
}

.tour-page--kyndyg .tour-back-to-all__link:link .tour-back-to-all__mark,
.tour-page--kyndyg .tour-back-to-all__link:visited .tour-back-to-all__mark {
  color: #ff7a00;
}

.tour-page--kyndyg .tour-back-to-all__link:hover .tour-back-to-all__mark,
.tour-page--kyndyg .tour-back-to-all__link:focus-visible .tour-back-to-all__mark {
  color: #e86d00;
}

.tour-page--kyndyg .tour-back-to-all {
  margin-top: 68px;
  padding: 1px 0 4px;
  background: #faf9f7;
  border-bottom: 1px solid #ede6dc;
}

.tour-page--kyndyg .hero.hero--tour {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.46) 30%,
      rgba(0, 0, 0, 0.43) 62%,
      rgba(0, 0, 0, 0.41) 100%
    ),
    url("images/kyndyg/kyndyg-hero.jpg");
  background-size: cover;
  background-position: center;
}

@media (min-width: 481px) {
  .tour-page--kyndyg .tour-back-to-all {
    margin-top: 70px;
  }
}

@media (min-width: 769px) {
  .tour-page--kyndyg .tour-back-to-all {
    margin-top: 84px;
  }
}

@media (min-width: 1025px) {
  .tour-page--kyndyg .tour-back-to-all {
    margin-top: 88px;
  }
}

/* Hero «Кындыг» — в тон «Золотому кольцу» (#tour-hero только) */
.tour-page--kyndyg #tour-hero h1 {
  font-size: clamp(26px, 7vw, 32px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0.06em 0.28em rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;
}

.tour-page--kyndyg #tour-hero .hero-subtitle-small {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 6px;
}

.tour-page--kyndyg #tour-hero .hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 14px;
}

.tour-page--kyndyg #tour-hero .hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
  color: #fff;
}

.tour-page--kyndyg #tour-hero .hero-price-per {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 0.75;
  position: relative;
  top: -1px;
}

.tour-page--kyndyg #tour-hero .tour-hero-actions {
  align-items: center;
  margin-bottom: 16px;
}

.tour-page--kyndyg #tour-hero .btn-primary {
  width: 100%;
  max-width: 300px;
  margin-bottom: 0;
}

.tour-page--kyndyg #tour-hero .tour-hero-tags {
  margin-top: 16px;
  gap: 7px;
}

.tour-page--kyndyg #tour-hero .tour-hero-tag {
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.tour-page--kyndyg #tour-description .tour-prose p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.tour-page--kyndyg #tour-description .tour-prose p:first-child {
  font-weight: 600;
}

.tour-page--kyndyg #tour-description {
  padding-bottom: 36px;
}

/* Тур «Джип-тур на Гегский водопад и озеро Рица»: hero, шапка и полоса «назад» */
.tour-page--gega a.logo,
.tour-page--gega a.logo:link,
.tour-page--gega a.logo:visited,
.tour-page--gega a.logo:hover,
.tour-page--gega a.logo:active {
  text-decoration: none;
  color: #111;
}

.tour-page--gega a.logo:focus-visible {
  text-decoration: none;
  color: #111;
}

.tour-page--gega .tour-back-to-all__link,
.tour-page--gega .tour-back-to-all__link:link,
.tour-page--gega .tour-back-to-all__link:visited,
.tour-page--gega .tour-back-to-all__link:hover,
.tour-page--gega .tour-back-to-all__link:active,
.tour-page--gega .tour-back-to-all__link:focus,
.tour-page--gega .tour-back-to-all__link:focus-visible {
  text-decoration: none;
}

.tour-page--gega .tour-back-to-all__link:link,
.tour-page--gega .tour-back-to-all__link:visited {
  color: #4a4f58;
}

.tour-page--gega .tour-back-to-all__link:hover {
  color: #2c3038;
}

.tour-page--gega .tour-back-to-all__link:link .tour-back-to-all__mark,
.tour-page--gega .tour-back-to-all__link:visited .tour-back-to-all__mark {
  color: #ff7a00;
}

.tour-page--gega .tour-back-to-all__link:hover .tour-back-to-all__mark,
.tour-page--gega .tour-back-to-all__link:focus-visible .tour-back-to-all__mark {
  color: #e86d00;
}

.tour-page--gega .tour-back-to-all {
  margin-top: 68px;
  padding: 1px 0 4px;
  background: #faf9f7;
  border-bottom: 1px solid #ede6dc;
}

.tour-page--gega .hero.hero--tour {
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.52)),
    url("images/gega-jeep/gega-hero.jpg");
  background-size: cover;
  background-position: center 42%;
}

@media (min-width: 481px) {
  .tour-page--gega .tour-back-to-all {
    margin-top: 70px;
  }
}

@media (min-width: 769px) {
  .tour-page--gega .tour-back-to-all {
    margin-top: 84px;
  }
}

@media (min-width: 1025px) {
  .tour-page--gega .tour-back-to-all {
    margin-top: 88px;
  }
}

.hero--tour {
  text-align: center;
}

.hero--tour h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.22;
}

.hero--tour h1 .hero--tour-h1-subline {
  display: inline-block;
  margin-top: 0.15em;
  font-weight: inherit;
}

@media (max-width: 480px) {
  .hero--tour h1 {
    font-size: 22px;
  }

  .tour-page--golden-ring #tour-hero h1,
  .tour-page--gega #tour-hero h1 {
    font-size: clamp(26px, 7vw, 32px);
  }
}

.hero--tour-note {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.tour-hero-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  text-align: center;
}

.tour-hero-price-main {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

.tour-hero-price-note {
  display: block;
  max-width: 20em;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
  letter-spacing: 0.01em;
}

@media (min-width: 481px) {
  .tour-hero-price-main {
    font-size: 22px;
  }

  .tour-hero-price-note {
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .tour-hero-price {
    margin-bottom: 22px;
    gap: 8px;
  }

  .tour-hero-price-main {
    font-size: 24px;
  }
}

.tour-hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 14px;
}

.tour-hero-actions .tour-hero-cta,
.tour-hero-actions .tour-hero-secondary {
  width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.tour-hero-actions .tour-hero-cta,
.tour-hero-actions .tour-hero-cta:link,
.tour-hero-actions .tour-hero-cta:visited,
.tour-hero-actions .tour-hero-cta:hover,
.tour-hero-actions .tour-hero-cta:active,
.tour-hero-actions .tour-hero-cta:focus,
.tour-hero-actions .tour-hero-cta:focus-visible {
  text-decoration: none;
}

.tour-hero-actions .tour-hero-cta {
  display: block;
  margin-top: 0;
}

/* Мобильная CTA: главный фокус — заявка */
@media (max-width: 599px) {
  .tour-hero-actions .tour-hero-cta {
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.35;
  }
}

/* Вторичное действие: светлая «плашка» + тёмный текст — читаемо на любом участке фото, слабее оранжевой CTA */
.tour-hero-actions .tour-hero-secondary {
  display: block;
  margin-top: 16px;
  width: 100%;
  min-height: 0;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #2a2418;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.98);
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.18);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.tour-hero-actions .tour-hero-secondary,
.tour-hero-actions .tour-hero-secondary:link,
.tour-hero-actions .tour-hero-secondary:visited {
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

@supports (backdrop-filter: blur(8px)) {
  .tour-hero-actions .tour-hero-secondary {
    background: rgba(255, 255, 255, 0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.tour-hero-actions .tour-hero-secondary:hover {
  color: #1a150f;
  background: rgba(255, 255, 255, 0.96);
  border-color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.tour-hero-actions .tour-hero-secondary:active {
  color: #0f0c09;
  background: rgba(240, 236, 230, 0.96);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset, 0 2px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .tour-hero-actions .tour-hero-secondary:hover,
  .tour-hero-actions .tour-hero-secondary:active {
    transform: none;
  }
}

.tour-hero-actions .tour-hero-secondary:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (min-width: 600px) {
  .tour-hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    max-width: none;
  }

  .tour-hero-actions .tour-hero-cta {
    min-width: 200px;
    width: auto;
    flex: 0 1 auto;
  }

  .tour-hero-actions .tour-hero-secondary {
    margin-top: 0;
    width: auto;
    min-width: 0;
    padding: 8px 14px;
    font-size: 14px;
    flex: 0 1 auto;
  }
}

.hero-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: 8px;
}

.hero-subtitle-small {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.hero-price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero--tour .hero-benefits {
  display: inline-block;
  max-width: 260px;
  margin: 18px auto;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.12);
  padding: 10px 14px;
  border-radius: 12px;
  backdrop-filter: blur(3px);
  min-height: 0;
  height: auto;
  text-align: center;
  opacity: 0.95;
}

.hero--tour .hero-benefits ul {
  padding: 0;
  margin: 0;
}

.hero--tour .hero-benefits span {
  display: inline;
}

.hero--tour .hero-benefits li,
.hero--tour .hero-benefits span {
  color: #ffffff;
  list-style: none;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
}

.hero--tour .hero-benefits div {
  margin-bottom: 4px;
  font-weight: 500;
}

.hero--tour .hero-benefits .dot {
  margin: 0 6px;
  opacity: 0.6;
}

.hero-after-btn,
.hero-subtext {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.btn-primary {
  width: 100%;
  background: #ff7a00;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.35);
  transform: scale(1);
  transition:
    transform var(--micro-duration) var(--micro-ease),
    box-shadow var(--micro-duration) var(--micro-ease),
    filter var(--micro-duration) var(--micro-ease);
}

.btn-primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.38);
}

.btn-primary:active {
  transform: scale(0.98);
  filter: none;
}

.btn-primary:focus {
  outline: none;
}

.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 8px 20px rgba(255, 122, 0, 0.35);
}

.card-book-btn.btn-primary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 10px 22px rgba(255, 122, 0, 0.25);
}

.card-book-btn.btn-primary:hover:focus-visible,
.card-book-btn.btn-primary:focus-visible:hover {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 14px 26px rgba(255, 122, 0, 0.32);
}

.btn-secondary {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  opacity: 1;
  padding: 14px;
  border-radius: 12px;
  font-weight: 500;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
}

.btn--outline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #e56700;
  border: 2px solid #fff;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn--outline:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #ff7a00;
}

.tour-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 640px;
  margin: 6px auto 0;
  padding: 0;
  list-style: none;
}

.hero-tags {
  margin-top: 6px;
}

.tour-hero-tag,
.hero-tag {
  background: rgba(255, 255, 255, 0.96);
  color: #c45a00;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Hero «Золотое кольцо», «Джип-тур» (#tour-hero) */
.tour-page--golden-ring #tour-hero h1,
.tour-page--gega #tour-hero h1 {
  font-size: clamp(26px, 7vw, 32px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0.06em 0.28em rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;
  white-space: nowrap;
  max-width: 900px;
  margin: 0 auto 16px;
}

.tour-page--golden-ring #tour-hero .hero-subtitle-small,
.tour-page--gega #tour-hero .hero-subtitle-small {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  margin: 0 0 6px;
}

.tour-page--golden-ring #tour-hero .hero-subtitle,
.tour-page--gega #tour-hero .hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 14px;
}

.tour-page--golden-ring #tour-hero .hero-price,
.tour-page--gega #tour-hero .hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 0 0 12px;
  color: #fff;
}

.tour-page--golden-ring #tour-hero .hero-price-per,
.tour-page--gega #tour-hero .hero-price-per {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  opacity: 0.75;
  position: relative;
  top: -1px;
}

.tour-page--golden-ring #tour-hero .tour-hero-actions,
.tour-page--gega #tour-hero .tour-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 16px;
  width: 100%;
  max-width: 100%;
}

.tour-page--golden-ring #tour-hero .btn-primary,
.tour-page--gega #tour-hero .btn-primary {
  width: 100%;
  max-width: 300px;
  margin-bottom: 0;
}

.tour-page--golden-ring #tour-hero .tour-hero-tags,
.tour-page--gega #tour-hero .tour-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 16px auto 0;
  max-width: 640px;
  padding: 0;
}

.tour-page--golden-ring #tour-hero .tour-hero-tag,
.tour-page--gega #tour-hero .tour-hero-tag {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

/* Hero-плашки «Джип-тур»: на мобильных — 2×2, ширина по тексту */
@media (max-width: 768px) {
  .tour-page--gega #tour-hero .tour-hero-tags::after {
    content: "";
    flex-basis: 100%;
    width: 0;
    order: 1;
  }

  .tour-page--gega #tour-hero .tour-hero-tag:nth-child(n + 3) {
    order: 2;
  }
}

.tour-page--golden-ring #tour-description .tour-prose p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.tour-page--golden-ring #tour-description .tour-prose p:first-child {
  font-weight: 600;
}

.tour-page--golden-ring #tour-description {
  padding-bottom: 36px;
}

.tour-page--gega #tour-description .tour-prose p {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
}

.tour-page--gega #tour-description .tour-prose p:first-child {
  font-weight: 600;
}

.tour-page--gega #tour-description {
  padding-bottom: 36px;
}

.tour-page--golden-ring #tour-audience,
.tour-page--kyndyg #tour-audience,
.tour-page--gega #tour-audience {
  padding-top: 28px;
}

.tour-page--golden-ring #tour-audience h2,
.tour-page--kyndyg #tour-audience h2,
.tour-page--gega #tour-audience h2 {
  font-size: 23px;
  line-height: 1.16;
}

.tour-page--golden-ring #tour-route-photos h2,
.tour-page--kyndyg #tour-route-photos h2,
.tour-page--gega #tour-route-photos h2 {
  font-size: 23px;
  line-height: 1.16;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.tour-page--golden-ring #tour-route-photos.tour-section,
.tour-page--kyndyg #tour-route-photos.tour-section,
.tour-page--gega #tour-route-photos.tour-section {
  padding-top: calc(48px - 28px);
  padding-bottom: 48px;
}

.tour-page--golden-ring #tour-tourists-gallery.tour-section,
.tour-page--kyndyg #tour-tourists-gallery.tour-section,
.tour-page--gega #tour-tourists-gallery.tour-section {
  padding-top: calc(48px - 18px);
}

@media (min-width: 769px) {
  .tour-page--golden-ring #tour-tourists-gallery.tour-section,
  .tour-page--kyndyg #tour-tourists-gallery.tour-section,
  .tour-page--gega #tour-tourists-gallery.tour-section {
    padding-top: calc(64px - 18px);
  }

  .tour-page--golden-ring #tour-audience h2,
  .tour-page--kyndyg #tour-audience h2,
  .tour-page--gega #tour-audience h2 {
    font-size: 29px;
    line-height: 1.2;
  }

  .tour-page--golden-ring #tour-route-photos h2,
  .tour-page--kyndyg #tour-route-photos h2,
  .tour-page--gega #tour-route-photos h2 {
    font-size: 29px;
    line-height: 1.2;
  }

  .tour-page--golden-ring #tour-route-photos.tour-section,
  .tour-page--kyndyg #tour-route-photos.tour-section,
  .tour-page--gega #tour-route-photos.tour-section {
    padding-top: calc(64px - 28px);
    padding-bottom: 64px;
  }
}

@media (max-width: 640px) {
  .tour-page--golden-ring #tour-program .tour-list,
  .tour-page--kyndyg #tour-program .tour-list,
  .tour-page--gega #tour-program .tour-list {
    line-height: 1.46;
  }

  .tour-page--golden-ring #tour-program .tour-list li,
  .tour-page--kyndyg #tour-program .tour-list li,
  .tour-page--gega #tour-program .tour-list li {
    margin-bottom: 4px;
  }

  .tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list,
  .tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list,
  .tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list {
    line-height: 1.55;
  }

  .tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list li,
  .tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list li,
  .tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list li {
    margin-bottom: 10px;
  }

  .tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list li:last-child,
  .tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list li:last-child,
  .tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list li:last-child {
    margin-bottom: 0;
  }
}

.tour-page--golden-ring #tour-program .tour-list,
.tour-page--kyndyg #tour-program .tour-list,
.tour-page--gega #tour-program .tour-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.54;
}

.tour-page--golden-ring #tour-program .tour-list li,
.tour-page--kyndyg #tour-program .tour-list li,
.tour-page--gega #tour-program .tour-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 5px;
}

.tour-page--golden-ring #tour-program .tour-list li::before,
.tour-page--kyndyg #tour-program .tour-list li::before,
.tour-page--gega #tour-program .tour-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.tour-page--golden-ring #tour-what-to-bring .tour-includes-card,
.tour-page--kyndyg #tour-what-to-bring .tour-includes-card,
.tour-page--gega #tour-what-to-bring .tour-includes-card {
  margin-top: 12px;
}

.tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list,
.tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list,
.tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #3a3f4a;
  line-height: 1.6;
  font-size: 16px;
}

.tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list li,
.tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list li,
.tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list li:last-child,
.tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list li:last-child,
.tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list li:last-child {
  margin-bottom: 0;
}

.tour-page--golden-ring #tour-what-to-bring .tour-includes-card .tour-list li::before,
.tour-page--kyndyg #tour-what-to-bring .tour-includes-card .tour-list li::before,
.tour-page--gega #tour-what-to-bring .tour-includes-card .tour-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

/* Документы / граница — компактная карточка («Золотое кольцо», «Кындыг», джип-тур) */
.tour-page--golden-ring #tour-border-rules .tour-border-docs-card,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card,
.tour-page--gega #tour-border-rules .tour-border-docs-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 18px 20px 20px;
  background: #fff;
  border: 1px solid #ffc891;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__title,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__title,
.tour-page--gega #tour-border-rules .tour-border-docs-card__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 4.5vw, 28px);
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  color: #1a1d22;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__lead,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__lead,
.tour-page--gega #tour-border-rules .tour-border-docs-card__lead {
  margin: 0 auto 16px;
  max-width: 36em;
  text-align: center;
  font-size: 16px;
  line-height: 1.55;
  color: #4a5058;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__list,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__list,
.tour-page--gega #tour-border-rules .tour-border-docs-card__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36em;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: #2a2f36;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__list > li,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__list > li,
.tour-page--gega #tour-border-rules .tour-border-docs-card__list > li {
  margin-bottom: 10px;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__list > li:last-child,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__list > li:last-child,
.tour-page--gega #tour-border-rules .tour-border-docs-card__list > li:last-child {
  margin-bottom: 0;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__details,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__details,
.tour-page--gega #tour-border-rules .tour-border-docs-card__details {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0e8df;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__details:focus,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__details:focus,
.tour-page--gega #tour-border-rules .tour-border-docs-card__details:focus,
.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__details:focus-visible,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__details:focus-visible,
.tour-page--gega #tour-border-rules .tour-border-docs-card__details:focus-visible {
  outline: none;
  box-shadow: none;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__summary,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__summary,
.tour-page--gega #tour-border-rules .tour-border-docs-card__summary {
  position: relative;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0 40px 0 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #2d333b;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__summary:focus,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__summary:focus,
.tour-page--gega #tour-border-rules .tour-border-docs-card__summary:focus,
.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__summary:focus-visible,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__summary:focus-visible,
.tour-page--gega #tour-border-rules .tour-border-docs-card__summary:focus-visible {
  outline: none;
  box-shadow: none;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__summary::-webkit-details-marker,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__summary::-webkit-details-marker,
.tour-page--gega #tour-border-rules .tour-border-docs-card__summary::-webkit-details-marker {
  display: none;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__summary-text,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__summary-text,
.tour-page--gega #tour-border-rules .tour-border-docs-card__summary-text {
  display: block;
  text-align: left;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__summary::after,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__summary::after,
.tour-page--gega #tour-border-rules .tour-border-docs-card__summary::after {
  content: "▼";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff7a00;
  transition: transform 0.2s ease;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__details[open] .tour-border-docs-card__summary::after,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__details[open] .tour-border-docs-card__summary::after,
.tour-page--gega #tour-border-rules .tour-border-docs-card__details[open] .tour-border-docs-card__summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__more,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__more,
.tour-page--gega #tour-border-rules .tour-border-docs-card__more {
  padding-top: 12px;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__list--more,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__list--more,
.tour-page--gega #tour-border-rules .tour-border-docs-card__list--more {
  font-size: 15px;
  line-height: 1.45;
  color: #454b55;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__list--more > li,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__list--more > li,
.tour-page--gega #tour-border-rules .tour-border-docs-card__list--more > li {
  margin-bottom: 8px;
}

.tour-page--golden-ring #tour-border-rules .tour-border-docs-card__list--more > li:last-child,
.tour-page--kyndyg #tour-border-rules .tour-border-docs-card__list--more > li:last-child,
.tour-page--gega #tour-border-rules .tour-border-docs-card__list--more > li:last-child {
  margin-bottom: 0;
}

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

.tour-section--muted {
  background: #fffaf4;
}

.tour-section .container {
  max-width: 900px;
}

.tour-section-inner h2,
.tour-section h2 {
  text-align: left;
  margin-bottom: 20px;
}

#tour-audience h2,
#tour-logistics h2,
#tour-includes h2,
.tour-section--muted h2 {
  text-align: center;
}

#tour-audience h2 {
  margin-bottom: 18px;
}

#tour-description h2,
#tour-route-photos h2,
#tour-program h2,
#tour-pricing h2,
#tour-pricing-kyndyg h2,
#tour-what-to-bring h2 {
  text-align: center;
}

/* Карусель маршрута — «Золотое кольцо», «Кындыг», джип-тур (общие правила через #tour-route-photos) */
.tour-page--golden-ring #tour-route-photos .tour-route-carousel__subtitle,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__subtitle,
#tour-route-photos .tour-route-carousel__subtitle {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #5b636d;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__frame,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__frame,
#tour-route-photos .tour-route-carousel__frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffe4c8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__track,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__track,
#tour-route-photos .tour-route-carousel__track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scrollbar-width: thin;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__track:focus-visible,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__track:focus-visible,
#tour-route-photos .tour-route-carousel__track:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 122, 0, 0.28);
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__slide,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__slide,
#tour-route-photos .tour-route-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  margin: 0;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__img-wrap,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__img-wrap,
#tour-route-photos .tour-route-carousel__img-wrap {
  position: relative;
  width: 100%;
  height: clamp(200px, 48vw, 300px);
  max-height: 300px;
  overflow: hidden;
  background: #e8edf2;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__img,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__img,
#tour-route-photos .tour-route-carousel__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  touch-action: manipulation;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__caption,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__caption,
#tour-route-photos .tour-route-carousel__caption {
  padding: 12px 14px 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1a1d22;
  background: #fffaf4;
  border-top: 1px solid #ffe9d2;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__controls,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__controls,
#tour-route-photos .tour-route-carousel__controls {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__dots,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__dots,
#tour-route-photos .tour-route-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__dot,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__dot,
#tour-route-photos .tour-route-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d8dce3;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__dot:hover,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__dot:hover,
#tour-route-photos .tour-route-carousel__dot:hover {
  background: #b8c0cc;
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__dot:focus-visible,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__dot:focus-visible,
#tour-route-photos .tour-route-carousel__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35);
}

.tour-page--golden-ring #tour-route-photos .tour-route-carousel__dot.is-active,
.tour-page--kyndyg #tour-route-photos .tour-route-carousel__dot.is-active,
#tour-route-photos .tour-route-carousel__dot.is-active {
  background: #ff7a00;
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .tour-page--golden-ring #tour-route-photos .tour-route-carousel__img-wrap,
  .tour-page--kyndyg #tour-route-photos .tour-route-carousel__img-wrap,
  #tour-route-photos .tour-route-carousel__img-wrap {
    height: clamp(240px, 36vw, 320px);
    max-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-page--golden-ring #tour-route-photos .tour-route-carousel__track,
  .tour-page--kyndyg #tour-route-photos .tour-route-carousel__track,
  #tour-route-photos .tour-route-carousel__track {
    scroll-behavior: auto;
  }
}

/* Галерея туристов — блок с живыми фото с маршрута */
.tour-tourists-gallery {
  background: #fffcf9;
}

.tour-tourists-gallery h2 {
  text-align: center;
}

.tour-tourists-gallery__subtitle {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 22px;
  font-size: 16px;
  line-height: 1.5;
  color: #5b636d;
}

.tour-tourists-gallery__slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  padding: 4px 16px 8px;
  scroll-padding-left: 16px;
  scroll-padding-right: 16px;
}

.tour-tourists-gallery__slider::-webkit-scrollbar {
  display: none;
}

.tour-tourists-gallery__slider:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 122, 0, 0.22);
  border-radius: 16px;
}

.tour-tourists-gallery__card {
  flex: 0 0 calc(100vw - 32px);
  max-width: 548px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 140, 40, 0.14);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  background: #fff;
  margin: 0;
  aspect-ratio: 4 / 5;
}

.tour-tourists-gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  touch-action: manipulation;
}

.tour-tourists-gallery__viewport {
  position: relative;
}

.tour-tourists-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  padding: 0;
  line-height: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.tour-tourists-gallery__arrow:active,
.tour-tourists-gallery__arrow:hover {
  opacity: 1;
}

.tour-tourists-gallery__arrow--prev {
  left: 6px;
}

.tour-tourists-gallery__arrow--next {
  right: 6px;
}

.tour-tourists-gallery__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.tour-tourists-gallery__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d8dce3;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.tour-tourists-gallery__dot:hover {
  background: #b8c0cc;
}

.tour-tourists-gallery__dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.35);
}

.tour-tourists-gallery__dot.is-active {
  background: #ff7a00;
  transform: scale(1.15);
}

@media (min-width: 769px) {
  .tour-tourists-gallery__slider {
    gap: 20px;
    padding: 4px 0 8px;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
  }

  .tour-tourists-gallery__card {
    flex: 0 0 380px;
    max-width: 548px;
  }

  .tour-tourists-gallery__arrow {
    display: none;
  }

  .tour-tourists-gallery__subtitle {
    margin-bottom: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tour-tourists-gallery__slider {
    scroll-behavior: auto;
  }
}

.tour-prose p {
  margin: 0 0 16px;
  color: #3a3f4a;
  font-size: 17px;
  line-height: 1.65;
}

.tour-prose p:last-child {
  margin-bottom: 0;
}

.tour-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}

/* card-book-btn в сетке: оформление карточки, не оранжевой CTA */
.tour-audience-grid .tour-audience-card.card-book-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 11px 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 122, 0, 0.12);
  color: #2a2f36 !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  background: #fff;
  background-image: none;
  border: 1px solid #ffe9d2;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tour-audience-grid .tour-audience-card.card-book-btn:hover {
  color: #1a1d22 !important;
  background: #fffcf8;
  background-image: none;
  border-color: #ffd3a3;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.tour-audience-grid .tour-audience-card.card-book-btn:focus-visible {
  outline: 2px solid #ff7a00;
  outline-offset: 3px;
}

.tour-audience-card-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: #1a1d22;
  line-height: 1.3;
}

.tour-audience-card-text {
  display: block;
  max-width: 32em;
  font-size: 14px;
  font-weight: 500;
  color: #5b636d;
  line-height: 1.45;
}

.tour-program-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0e6dc;
}

.tour-program-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tour-program-place {
  text-align: left;
  font-size: 20px;
  color: #ff7a00;
  margin: 28px 0 12px;
}

.tour-program-intro {
  margin: 0 0 28px;
}

.tour-list {
  margin: 0;
  padding: 0 0 0 1.1em;
  color: #3a3f4a;
  line-height: 1.6;
  font-size: 16px;
}

.tour-list li {
  margin-bottom: 8px;
}

.tour-list--compact li {
  margin-bottom: 6px;
}

.tour-list-extra-options {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #6b6f7a;
}

.tour-list-extra-options li {
  margin-bottom: 5px;
}

.tour-list-extra-options li::before {
  content: "— ";
}

.tour-program-footnote {
  margin-top: 20px;
  font-size: 15px;
  color: #6b7080;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.tour-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 8px;
}

.tour-info-card {
  background: #fff;
  border: 1px solid #ffe9d2;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #2f333c;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.tour-logistics-intro {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.55;
  color: #3a3f4a;
}

.tour-logistics-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.tour-logistics-step-card {
  background: #fff;
  border: 1px solid #ffe4c8;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.tour-logistics-step-card h3 {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.3;
  color: #1a1d22;
}

.tour-logistics-step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5260;
}

.tour-logistics-accordion {
  margin-top: 0;
}

.tour-logistics-accordion .tour-accordion-body p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.55;
  color: #3a3f4a;
}

.tour-logistics-accordion .tour-accordion-body p:last-child {
  margin-bottom: 0;
}

.tour-page--golden-ring #tour-logistics .tour-list,
.tour-page--kyndyg #tour-logistics .tour-list,
.tour-page--gega #tour-logistics .tour-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.tour-page--golden-ring #tour-logistics .tour-list li,
.tour-page--kyndyg #tour-logistics .tour-list li,
.tour-page--gega #tour-logistics .tour-list li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.45;
}

.tour-page--golden-ring #tour-logistics .tour-list li:last-child,
.tour-page--kyndyg #tour-logistics .tour-list li:last-child,
.tour-page--gega #tour-logistics .tour-list li:last-child {
  margin-bottom: 0;
}

.tour-page--golden-ring #tour-logistics .tour-list li::before,
.tour-page--kyndyg #tour-logistics .tour-list li::before,
.tour-page--gega #tour-logistics .tour-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

/* «Как проходит поездка» — «Золотое кольцо», «Кындыг», джип-тур */
.tour-page--golden-ring #tour-logistics h2,
.tour-page--kyndyg #tour-logistics h2,
.tour-page--gega #tour-logistics h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-intro,
.tour-page--kyndyg #tour-logistics .tour-logistics-intro,
.tour-page--gega #tour-logistics .tour-logistics-intro {
  margin-bottom: 20px;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-brief,
.tour-page--kyndyg #tour-logistics .tour-logistics-brief,
.tour-page--gega #tour-logistics .tour-logistics-brief {
  margin-top: 0;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-accordion,
.tour-page--kyndyg #tour-logistics .tour-logistics-accordion,
.tour-page--gega #tour-logistics .tour-logistics-accordion {
  margin-block: 0;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-accordion + .tour-logistics-accordion,
.tour-page--kyndyg #tour-logistics .tour-logistics-accordion + .tour-logistics-accordion,
.tour-page--gega #tour-logistics .tour-logistics-accordion + .tour-logistics-accordion {
  margin-top: 6px;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-accordion .tour-accordion-summary,
.tour-page--kyndyg #tour-logistics .tour-logistics-accordion .tour-accordion-summary,
.tour-page--gega #tour-logistics .tour-logistics-accordion .tour-accordion-summary {
  padding: 12px 40px 12px 20px;
}

@media (min-width: 769px) {
  .tour-page--golden-ring #tour-logistics h2,
  .tour-page--kyndyg #tour-logistics h2,
  .tour-page--gega #tour-logistics h2 {
    font-size: 34px;
  }
}

.tour-page--golden-ring .tour-price-cols .tour-price-list,
.tour-page--kyndyg #tour-pricing-kyndyg .tour-price-cols .tour-price-list,
.tour-page--gega .tour-price-cols .tour-price-list {
  list-style: none;
  padding-left: 0;
}

.tour-page--golden-ring .tour-price-cols .tour-price-list li,
.tour-page--kyndyg #tour-pricing-kyndyg .tour-price-cols .tour-price-list li,
.tour-page--gega .tour-price-cols .tour-price-list li {
  position: relative;
  padding-left: 15px;
}

.tour-page--golden-ring .tour-price-cols .tour-price-list li::before,
.tour-page--kyndyg #tour-pricing-kyndyg .tour-price-cols .tour-price-list li::before,
.tour-page--gega .tour-price-cols .tour-price-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.tour-page--golden-ring section.tour-section:has(#tour-pricing) h2,
.tour-page--kyndyg #tour-pricing-kyndyg h2,
.tour-page--gega section.tour-section:has(#tour-pricing) h2 {
  text-align: center;
}

.tour-page--golden-ring section.tour-section:has(#tour-pricing) h2 + p,
.tour-page--kyndyg #tour-pricing-kyndyg h2 + p,
.tour-page--gega section.tour-section:has(#tour-pricing) h2 + p {
  text-align: center;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-calc-title,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-title,
.tour-page--gega #tour-pricing .tour-pricing-calc-title {
  font-size: calc(1.25rem - 5px);
  line-height: 1.22;
  margin: 0 0 12px;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-calc-subtitle,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-subtitle,
.tour-page--gega #tour-pricing .tour-pricing-calc-subtitle {
  margin: -12px 0 18px;
}

/* Счётчики гостей в калькуляторе — «Золотое кольцо», «Кындыг» */
.tour-page--golden-ring #tour-pricing .tour-pricing-stepper,
.tour-page--kyndyg #tour-pricing .tour-pricing-stepper,
.tour-page--gega #tour-pricing .tour-pricing-stepper {
  border-radius: 10px;
  border: 1px solid #efe6df;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-step,
.tour-page--kyndyg #tour-pricing .tour-pricing-step,
.tour-page--gega #tour-pricing .tour-pricing-step {
  min-width: 40px;
  min-height: 44px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #b54f00;
  background: #fffdfb;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-step:hover,
.tour-page--kyndyg #tour-pricing .tour-pricing-step:hover,
.tour-page--gega #tour-pricing .tour-pricing-step:hover {
  background: #fff7f0;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-step:active,
.tour-page--kyndyg #tour-pricing .tour-pricing-step:active,
.tour-page--gega #tour-pricing .tour-pricing-step:active {
  background: #fff2e8;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-step-value,
.tour-page--kyndyg #tour-pricing .tour-pricing-step-value,
.tour-page--gega #tour-pricing .tour-pricing-step-value {
  min-width: 34px;
  padding: 0 7px;
  font-size: 15px;
  font-weight: 700;
  line-height: 44px;
  border-left: 1px solid #f2ebe6;
  border-right: 1px solid #f2ebe6;
}

/* «Количество участников»: плотнее строки — «Золотое кольцо», «Кындыг» */
.tour-page--golden-ring #tour-pricing > div:nth-of-type(2).tour-pricing-calc-block,
.tour-page--kyndyg #tour-pricing > div:nth-of-type(2).tour-pricing-calc-block,
.tour-page--gega #tour-pricing > div:nth-of-type(2).tour-pricing-calc-block {
  margin-bottom: 16px;
}

.tour-page--golden-ring #tour-pricing > div:nth-of-type(2) .tour-pricing-calc-label,
.tour-page--kyndyg #tour-pricing > div:nth-of-type(2) .tour-pricing-calc-label,
.tour-page--gega #tour-pricing > div:nth-of-type(2) .tour-pricing-calc-label {
  margin-bottom: 8px;
}

.tour-page--golden-ring #tour-pricing > div:nth-of-type(2) .tour-pricing-calc-row,
.tour-page--kyndyg #tour-pricing > div:nth-of-type(2) .tour-pricing-calc-row,
.tour-page--gega #tour-pricing > div:nth-of-type(2) .tour-pricing-calc-row {
  margin-bottom: 8px;
  gap: 8px 10px;
}

.tour-page--golden-ring #tour-pricing > div:nth-of-type(2) .calc-price,
.tour-page--kyndyg #tour-pricing > div:nth-of-type(2) .calc-price,
.tour-page--gega #tour-pricing > div:nth-of-type(2) .calc-price {
  margin-left: 4px;
}

/* Итоговый блок калькулятора — «Золотое кольцо», «Кындыг» */
.tour-page--golden-ring #tour-pricing .tour-pricing-calc-total,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-total,
.tour-page--gega #tour-pricing .tour-pricing-calc-total {
  padding-top: 14px;
  border-top-color: #ebe6df;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-calc-total-value,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-total-value,
.tour-page--gega #tour-pricing .tour-pricing-calc-total-value {
  margin-bottom: 8px;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-calc-total-value + .tour-pricing-calc-prepay-line,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-total-value + .tour-pricing-calc-prepay-line,
.tour-page--gega #tour-pricing .tour-pricing-calc-total-value + .tour-pricing-calc-prepay-line {
  margin-top: 2px;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-calc-prepay-line,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-prepay-line,
.tour-page--gega #tour-pricing .tour-pricing-calc-prepay-line {
  margin-top: 4px;
  font-weight: 500;
  color: #5a5f68;
}

.tour-page--golden-ring #tour-pricing .tour-pricing-calc-booking-note,
.tour-page--kyndyg #tour-pricing .tour-pricing-calc-booking-note,
.tour-page--gega #tour-pricing .tour-pricing-calc-booking-note {
  margin: 12px 0 10px;
  color: #737984;
}

.tour-logistics-brief {
  margin-top: 12px;
  background: #fff;
  border: 1px solid #ffe4c8;
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.tour-logistics-brief h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.3;
  color: #1a1d22;
}

.tour-logistics-brief-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tour-logistics-brief-list li {
  position: relative;
  margin: 0 0 7px;
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.45;
  color: #3a3f4a;
}

.tour-logistics-brief-list li:last-child {
  margin-bottom: 0;
}

.tour-logistics-brief-list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

/* Визуально как карточка фото в «Что увидите на маршруте» (#tour-route-carousel__frame) */
.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-card,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-card,
.tour-page--gega #tour-logistics .tour-logistics-sprinter-card {
  margin: 14px auto 14px;
  max-width: 800px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ffe4c8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  background: #fff;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-card__img-wrap,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-card__img-wrap,
.tour-page--gega #tour-logistics .tour-logistics-sprinter-card__img-wrap {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #e8edf2;
  line-height: 0;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-card__img,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-card__img,
.tour-page--gega #tour-logistics .tour-logistics-sprinter-card__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel {
  position: relative;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel__track,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel__track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel__track::-webkit-scrollbar,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel__track::-webkit-scrollbar {
  display: none;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel__track:focus-visible,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel__track:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 3px rgba(255, 122, 0, 0.28);
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel__slide,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel__slide .tour-logistics-sprinter-card__img-wrap,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel__slide .tour-logistics-sprinter-card__img-wrap {
  aspect-ratio: 16 / 9;
  height: auto;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel__slide .tour-logistics-sprinter-card__img,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel__slide .tour-logistics-sprinter-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tour-page--golden-ring #tour-logistics .tour-logistics-sprinter-carousel .tour-tourists-gallery__arrow,
.tour-page--kyndyg #tour-logistics .tour-logistics-sprinter-carousel .tour-tourists-gallery__arrow {
  display: flex;
}

.tour-price-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 12px;
}

.tour-price-col {
  background: #fff;
  border: 1px solid #ffe4c8;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.tour-price-col-title {
  text-align: center;
  font-size: 19px;
  margin: 0 0 16px;
  color: #1a1d22;
}

.tour-price-list {
  margin: 0;
  padding: 0 0 0 1.1em;
  font-size: 16px;
  line-height: 1.55;
  color: #3a3f4a;
}

.tour-price-list li {
  margin-bottom: 10px;
}

/* Калькулятор стоимости (страница тура) */
.tour-pricing-calc {
  margin: 28px auto 0;
  max-width: 520px;
  padding: 22px 18px 20px;
  background: #fff;
  border: 1px solid #ffe4c8;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.tour-pricing-calc-title {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 20px;
  color: #1a1d22;
  font-weight: 700;
}

.tour-pricing-calc-subtitle {
  margin: -10px 0 18px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: #6b6f7a;
}

.tour-pricing-calc-block {
  margin-bottom: 20px;
}

.tour-pricing-calc-label {
  font-size: 14px;
  font-weight: 600;
  color: #3a3f4a;
  margin: 0 0 10px;
}

.tour-pricing-calc-chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tour-pricing-chip {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid #ffdfc4;
  border-radius: 12px;
  background: #fff;
  color: #5b5248;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: rgba(255, 122, 0, 0.12);
}

.tour-pricing-chip.is-active {
  border-color: #ff7a00;
  background: #fff6eb;
  color: #b54f00;
}

.tour-pricing-calc-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 12px;
}

.tour-pricing-calc-row:last-child {
  margin-bottom: 0;
}

.tour-pricing-calc-row-name {
  font-size: 15px;
  line-height: 1.35;
  color: #2a2f36;
  flex: 1 1 160px;
  min-width: 0;
}

.tour-pricing-stepper {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: stretch;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ffcca8;
  background: #fff;
}

.tour-pricing-step {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 600;
  font-family: inherit;
  color: #b54f00;
  background: #fff8f0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: rgba(255, 122, 0, 0.12);
}

.tour-pricing-step:hover {
  background: #ffecd8;
}

.tour-pricing-step:active {
  background: #ffe2c4;
}

.tour-pricing-step-value {
  min-width: 40px;
  padding: 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  color: #1a1d22;
  background: #fff;
  border-left: 1px solid #ffe0c8;
  border-right: 1px solid #ffe0c8;
}

.tour-pricing-calc .calc-price {
  font-weight: 600;
  color: #555;
  margin-left: 6px;
  white-space: nowrap;
}

.tour-page--golden-ring .tour-pricing-calc .calc-price::before,
.tour-page--kyndyg .tour-pricing-calc .calc-price::before,
.tour-page--gega .tour-pricing-calc .calc-price::before {
  content: "— ";
  font-weight: 600;
  color: #555;
}

@media (max-width: 640px) {
  .tour-page--golden-ring .tour-pricing-calc .calc-price,
  .tour-page--kyndyg .tour-pricing-calc .calc-price,
  .tour-page--gega .tour-pricing-calc .calc-price {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  .tour-page--golden-ring .tour-pricing-calc .calc-price::before,
  .tour-page--kyndyg .tour-pricing-calc .calc-price::before,
  .tour-page--gega .tour-pricing-calc .calc-price::before {
    content: none;
  }

  .tour-page--golden-ring #tour-pricing > div:nth-of-type(2) .calc-price,
  .tour-page--kyndyg #tour-pricing > div:nth-of-type(2) .calc-price,
  .tour-page--gega #tour-pricing > div:nth-of-type(2) .calc-price {
    margin-left: 0;
    margin-top: 1px;
  }
}

.tour-pricing-calc-breakdown {
  margin: 0 0 14px;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  line-height: 1.45;
  color: #3a3f4a;
  background: #fffaf6;
  border: 1px solid #ffe8d4;
  border-radius: 12px;
}

.tour-pricing-calc-breakdown > div {
  margin-bottom: 4px;
}

.tour-pricing-calc-breakdown > div:last-child {
  margin-bottom: 0;
}

.calc-empty {
  color: #999;
  font-size: 14px;
  text-align: center;
}

.calc-total-people {
  margin-top: 6px;
  font-weight: 600;
  color: #2a2f36;
}

.tour-pricing-calc-total {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid #f0e6dc;
  text-align: center;
}

.tour-pricing-calc-total-value {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1d22;
  margin: 0 0 10px;
  line-height: 1.3;
}

.tour-pricing-calc-prepay-line {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: #454b55;
}

.tour-pricing-calc-total-value + .tour-pricing-calc-prepay-line {
  margin-top: 4px;
}

.tour-pricing-calc-prepay-hint {
  margin: 6px 0 10px;
  max-width: 40em;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  color: #6b7280;
}

.tour-pricing-calc-prepay-note {
  margin: 12px auto 0;
  max-width: 28em;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  color: #7a7f8a;
  text-align: center;
}

.tour-pricing-calc-total-hint {
  font-size: 12px;
  line-height: 1.45;
  color: #6b6f7a;
  margin: 12px auto 0;
  max-width: 26em;
}

.tour-pricing-calc-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}

.tour-pricing-calc-booking-note {
  margin: 16px 0 12px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: #6b6f7a;
}

.tour-pricing-calc-booking-note + .tour-pricing-calc-cta {
  margin-top: 0;
}

.tour-pricing-calc-cta,
.tour-pricing-calc-cta:hover {
  text-decoration: none;
}

.tour-pricing-calc .card-book-btn.tour-pricing-calc-cta {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 480px) {
  .tour-pricing-calc-chips {
    flex-direction: row;
  }

  .tour-pricing-chip {
    width: auto;
    flex: 1;
  }
}

.tour-price-highlight {
  margin: 24px 0 0;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #0d6e3a;
  background: #e9f7ee;
  border: 1px solid #b9e3c7;
  border-radius: 12px;
  padding: 14px 16px;
  line-height: 1.45;
}

/* Информационная плашка под ценами — «Золотое кольцо», «Кындыг», джип-тур */
.tour-page--golden-ring .tour-price-highlight,
.tour-page--kyndyg .tour-price-highlight,
.tour-page--gega .tour-price-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #3a3f4a;
  background: #fff8f0;
  border: 1px solid rgba(255, 111, 0, 0.15);
  border-radius: 20px;
  box-shadow: none;
}

.tour-page--golden-ring .tour-price-highlight__bar,
.tour-page--kyndyg .tour-price-highlight__bar,
.tour-page--gega .tour-price-highlight__bar {
  flex-shrink: 0;
  width: 3px;
  height: 36px;
  align-self: center;
  border-radius: 3px;
  background: #ff6f00;
  transform: translateY(3px);
}

.tour-page--golden-ring .tour-price-highlight__eco,
.tour-page--kyndyg .tour-price-highlight__eco,
.tour-page--gega .tour-price-highlight__eco {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.tour-page--golden-ring .tour-price-highlight__eco-line1,
.tour-page--golden-ring .tour-price-highlight__eco-line2,
.tour-page--kyndyg .tour-price-highlight__eco-line1,
.tour-page--kyndyg .tour-price-highlight__eco-line2,
.tour-page--gega .tour-price-highlight__eco-line1,
.tour-page--gega .tour-price-highlight__eco-line2 {
  display: block;
}

.tour-page--golden-ring .tour-price-highlight__eco-line1,
.tour-page--kyndyg .tour-price-highlight__eco-line1,
.tour-page--gega .tour-price-highlight__eco-line1 {
  font-size: inherit;
  line-height: inherit;
  font-weight: 400;
}

.tour-page--golden-ring .tour-price-highlight__eco-line2,
.tour-page--kyndyg .tour-price-highlight__eco-line2,
.tour-page--gega .tour-price-highlight__eco-line2 {
  font-size: inherit;
  line-height: 1.4;
  font-weight: 700;
}

@media (max-width: 640px) {
  .tour-page--golden-ring .tour-price-highlight,
  .tour-page--kyndyg .tour-price-highlight,
  .tour-page--gega .tour-price-highlight {
    margin-top: 14px;
    padding: 15px 18px;
    gap: 9px;
    font-size: 16px;
    line-height: 1.48;
  }

  .tour-page--golden-ring .tour-price-highlight__bar,
  .tour-page--kyndyg .tour-price-highlight__bar,
  .tour-page--gega .tour-price-highlight__bar {
    height: 34px;
  }
}

.tour-includes-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 12px;
  text-align: left;
  align-items: stretch;
}

.tour-includes-card {
  background: #fff;
  border: 1px solid #ffc891;
  border-radius: 16px;
  padding: 18px 20px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tour-includes-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #1a1d22;
}

#tour-includes .tour-includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #3a3f4a;
  line-height: 1.6;
  font-size: 16px;
}

#tour-includes .tour-includes-list > li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

#tour-includes .tour-includes-list > li:last-child {
  margin-bottom: 0;
}

#tour-includes .tour-includes-list > li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

/* «Что включено» — джип-тур: те же параметры секции и карточек, что на страницах «Золотое кольцо» / «Кындыг» */
.tour-page--gega #tour-includes h2 {
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .tour-page--gega #tour-includes h2 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

@media (min-width: 769px) {
  .tour-page--gega #tour-includes h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.tour-page--gega #tour-includes .tour-includes-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 12px;
  text-align: left;
  align-items: stretch;
}

@media (min-width: 600px) {
  .tour-page--gega #tour-includes .tour-includes-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.tour-page--gega #tour-includes .tour-includes-card {
  background: #fff;
  border: 1px solid #ffc891;
  border-radius: 16px;
  padding: 18px 20px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.tour-page--gega #tour-includes .tour-includes-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
  color: #1a1d22;
}

.tour-page--gega #tour-includes .tour-includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #3a3f4a;
  line-height: 1.6;
  font-size: 16px;
}

.tour-page--gega #tour-includes .tour-includes-list > li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.tour-page--gega #tour-includes .tour-includes-list > li:last-child {
  margin-bottom: 0;
}

.tour-page--gega #tour-includes .tour-includes-list > li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a00;
}

.tour-includes-list-nested {
  list-style: none;
  margin: 8px 0 0;
  padding: 0 0 0 0;
  font-size: 14px;
  line-height: 1.48;
  color: #5b6068;
}

.tour-includes-list-nested li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: 3px;
}

.tour-includes-list-nested li:last-child {
  margin-bottom: 0;
}

.tour-includes-list-nested li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: #9a9ea6;
  font-weight: 400;
}

/* «Что включено» — второй столбец: пещера с припиской (только «Золотое кольцо») */
.tour-page--golden-ring #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-extra-with-subnote,
.tour-page--kyndyg #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-extra-with-subnote,
.tour-page--gega #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-extra-with-subnote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.tour-page--golden-ring #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-extra-with-subnote__note,
.tour-page--kyndyg #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-extra-with-subnote__note,
.tour-page--gega #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-extra-with-subnote__note {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.38;
  font-weight: 400;
  color: #8a9199;
}

@media (max-width: 599px) {
  .tour-page--golden-ring #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-list > li,
  .tour-page--kyndyg #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-list > li,
  .tour-page--gega #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-list > li {
    margin-bottom: 12px;
    line-height: 1.55;
  }

  .tour-page--golden-ring #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-list > li:last-child,
  .tour-page--kyndyg #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-list > li:last-child,
  .tour-page--gega #tour-includes .tour-includes-cols > .tour-includes-card:last-child .tour-includes-list > li:last-child {
    margin-bottom: 0;
  }
}

.tour-accordion {
  background: #fff;
  border: 1px solid #ffdfc4;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.tour-accordion-summary {
  list-style: none;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: #1d2128;
  position: relative;
  padding-right: 40px;
}

.tour-accordion-summary::-webkit-details-marker {
  display: none;
}

.tour-accordion-summary::after {
  content: "▼";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff7a00;
  transition: transform 0.2s ease;
}

.tour-accordion[open] .tour-accordion-summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.tour-page a:focus,
.tour-page button:focus,
.tour-page summary:focus {
  outline: none;
}

.tour-page a:focus-visible:not(.card-book-btn),
.tour-page button:focus-visible:not(.card-book-btn),
.tour-page summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.22);
  border-radius: 10px;
}

.tour-page .tour-accordion-summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.22);
  border-radius: 12px;
}

.tour-page .booking-submit-btn:focus-visible:not(:disabled) {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.48), 0 12px 24px rgba(255, 122, 0, 0.28);
}

.tour-page .booking-submit-btn:hover:focus-visible:not(:disabled),
.tour-page .booking-submit-btn:focus-visible:hover:not(:disabled) {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.48), 0 16px 30px rgba(255, 122, 0, 0.34);
}

.tour-page .booking-success-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.48), 0 12px 24px rgba(255, 122, 0, 0.28);
}

.tour-page .booking-success-btn:hover:focus-visible,
.tour-page .booking-success-btn:focus-visible:hover {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.48), 0 16px 30px rgba(255, 122, 0, 0.34);
}

.tour-accordion-body {
  padding: 0 20px 20px;
  border-top: 1px solid #f5ebe3;
  padding-top: 16px;
}

.tour-cta {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #fff6eb 0%, #fff 100%);
  border-top: 1px solid #ffe4c4;
}

.tour-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tour-cta-inner h2 {
  text-align: center;
  margin-bottom: 14px;
  font-size: 26px;
  line-height: 1.25;
}

.tour-cta-inner p {
  color: #5b616d;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.tour-cta .card-book-btn--inline {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.tour-cta .card-book-btn--inline,
.tour-cta .card-book-btn--inline:hover,
.tour-cta .card-book-btn--inline:focus,
.tour-cta .card-book-btn--inline:focus-visible,
.tour-cta .card-book-btn--inline:active,
.tour-cta .card-book-btn--inline:visited {
  text-decoration: none;
}

/* CTA перед футером — «Золотое кольцо», «Кындыг» */
.tour-page--golden-ring #tour-cta,
.tour-page--kyndyg #tour-cta {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #fff6eb 0%, #fff 100%);
  border-top: 1px solid #ffe4c4;
}

.tour-page--golden-ring #tour-cta .tour-cta-inner,
.tour-page--kyndyg #tour-cta .tour-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tour-page--golden-ring #tour-cta .tour-cta-inner h2,
.tour-page--kyndyg #tour-cta .tour-cta-inner h2 {
  text-align: center;
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1d22;
}

.tour-page--golden-ring #tour-cta .tour-cta-inner p,
.tour-page--kyndyg #tour-cta .tour-cta-inner p {
  color: #5b616d;
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.tour-page--golden-ring #tour-cta .card-book-btn--inline,
.tour-page--kyndyg #tour-cta .card-book-btn--inline {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.tour-page--golden-ring #tour-cta .card-book-btn--inline,
.tour-page--golden-ring #tour-cta .card-book-btn--inline:hover,
.tour-page--golden-ring #tour-cta .card-book-btn--inline:focus,
.tour-page--golden-ring #tour-cta .card-book-btn--inline:focus-visible,
.tour-page--golden-ring #tour-cta .card-book-btn--inline:active,
.tour-page--golden-ring #tour-cta .card-book-btn--inline:visited,
.tour-page--kyndyg #tour-cta .card-book-btn--inline,
.tour-page--kyndyg #tour-cta .card-book-btn--inline:hover,
.tour-page--kyndyg #tour-cta .card-book-btn--inline:focus,
.tour-page--kyndyg #tour-cta .card-book-btn--inline:focus-visible,
.tour-page--kyndyg #tour-cta .card-book-btn--inline:active,
.tour-page--kyndyg #tour-cta .card-book-btn--inline:visited {
  text-decoration: none;
}

@media (min-width: 769px) {
  .tour-page--golden-ring #tour-cta .tour-cta-inner h2,
  .tour-page--kyndyg #tour-cta .tour-cta-inner h2 {
    font-size: 32px;
  }
}

@media (min-width: 600px) {
  .tour-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-includes-cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .tour-logistics-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .tour-section {
    padding: 64px 0;
  }

  .tour-price-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .tour-cta-inner h2 {
    font-size: 32px;
  }
}

/* Sticky booking bar (страница экскурсии) */
body.tour-sticky-bar-visible {
  padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
}

.tour-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1500;
  background: #fffdf9;
  border-top: 1px solid #ffe4c8;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.1);
  transform: translate3d(0, 100%, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s ease, visibility 0.3s;
  padding-top: 10px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 0px));
}

.tour-sticky-bar.is-visible {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

.tour-sticky-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}

.tour-sticky-bar-price {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 0 1 auto;
  line-height: 1.2;
}

.tour-sticky-bar-price-value {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}

.tour-sticky-bar-price-hint {
  font-size: 12px;
  font-weight: 500;
  color: #6b6f78;
}

.tour-sticky-bar-actions {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.tour-sticky-bar-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #b54f00;
  text-decoration: none;
  background: #fff;
  border: 2px solid #ffcca8;
  border-radius: 10px;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.tour-sticky-bar-secondary:hover {
  color: #9a4200;
  background: #fff8f0;
  border-color: #ffb078;
  transform: translateY(-1px);
}

.tour-sticky-bar-secondary:active {
  transform: translateY(0);
  background: #fff0e0;
}

.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn {
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  flex: 0 1 auto;
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.28);
}

.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn,
.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:hover,
.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:focus,
.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:focus-visible,
.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:active,
.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:visited {
  text-decoration: none;
}

.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:hover {
  box-shadow: 0 10px 22px rgba(255, 122, 0, 0.32);
}

.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:focus {
  outline: none;
}

.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 8px 20px rgba(255, 122, 0, 0.28);
}

.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:hover:focus-visible,
.tour-sticky-bar .tour-sticky-bar-cta.card-book-btn:focus-visible:hover {
  box-shadow: 0 0 0 3px rgba(255, 143, 66, 0.52), 0 10px 22px rgba(255, 122, 0, 0.32);
}

@media (max-width: 360px) {
  .hero .subtitle {
    font-size: 16px;
  }

  .hero-benefits-checklist__item {
    font-size: 14px;
    line-height: 1.38;
  }
}

@media (max-width: 390px) {
  .card .card-meta-line,
  .card .card-price-lead {
    font-size: 13px;
    letter-spacing: 0.005em;
  }

  .card .price-per-person {
    font-size: 12px;
  }

  .card-tags {
    gap: 10px;
  }

  .card-tags span,
  .transport-info__badge {
    padding: 8px 10px;
  }
}

@media (max-width: 380px) {
  .tour-sticky-bar-price-value {
    font-size: 16px;
  }

  .tour-sticky-bar-secondary,
  .tour-sticky-bar .tour-sticky-bar-cta.card-book-btn {
    font-size: 13px;
    padding: 8px 12px;
    min-height: 38px;
  }
}

/*
 * Главная страница (≤768px): плотнее расстояния между крупными секциями.
 * Селекторы main > … не затрагивают страницы экскурсий. Внутренние отступы .card не меняются.
 */
@media (max-width: 768px) {
  .hero .subtitle .hero-subtitle-line {
    white-space: nowrap;
  }

  .hero-benefits {
    padding: 32px 0 18px;
  }

  .hero-benefits-checklist__item {
    padding: 12px 14px;
  }

  .scenario-wrapper {
    padding: 18px 10px 14px;
    border-radius: 18px;
  }

  .scenario-wrapper h2 {
    margin-bottom: 14px;
  }

  .scenario-cards {
    gap: 14px;
  }

  .scenario-card {
    padding: 16px 14px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 16px;
  }

  .scenario-card h3 {
    margin-bottom: 5px;
  }

  .scenario-card p {
    font-size: 15.5px;
    line-height: 1.35;
    max-width: none;
    white-space: normal;
  }

  main > .quick-scenarios {
    padding: 24px 0 10px;
  }

  main > .tours {
    padding: 43px 0;
  }

  main > .tours .tours-lead {
    margin-top: 14px;
    margin-bottom: 15px;
  }

  main > .transport-info {
    padding: 13px 0 17px;
  }

  main > .booking-process {
    padding: 18px 0 21px;
  }

  main > .payment-block {
    padding: 15px 0 19px;
  }

  main > .trust-who-helps {
    padding: 15px 0 19px;
  }


  main > .trip-documents {
    padding: 18px 0 21px;
  }

  main > .advantages {
    padding: 43px 0;
  }

  main > .advantages.faq {
    padding: 18px 0 21px;
  }

  main > .back-to-tours-strip {
    padding: 7px 0 6px;
  }

  main > .final-cta {
    padding: 15px 0 36px;
  }

  main > .direct-contact {
    padding-bottom: 36px;
  }

  main .advantages.faq .faq-item {
    border-radius: 12px;
  }

  main .advantages.faq .faq-summary {
    padding: 12px 10px;
  }

  main .advantages.faq .faq-answer {
    padding: 0 10px 12px;
  }

  main .advantages.testimonials {
    padding: 35px 0 21px;
  }

  main .advantages.testimonials .testimonials-avito-caption {
    margin-bottom: 17px;
  }

  main .advantages.testimonials .testimonials-grid {
    margin-top: 20px;
  }

  main .advantages.how-tours {
    padding: 35px 0 21px;
  }

  main .advantages.how-tours > .container > h2 {
    margin-bottom: 8px;
  }

  main .advantages.how-tours .how-tours-hint {
    margin-bottom: 14px;
    font-size: 13px;
  }
}

/* Кнопка «к популярным экскурсиям» (только главная) */
.tours-scroll-fab {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 1599;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 140, 40, 0.38);
  border-radius: 50%;
  background: #fffdf9;
  color: #ff7a00;
  box-shadow: 0 3px 12px rgba(255, 122, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.tours-scroll-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.tours-scroll-fab.is-visible:hover {
  border-color: rgba(255, 122, 0, 0.55);
  background: #fff8ef;
  box-shadow: 0 4px 14px rgba(255, 122, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.tours-scroll-fab.is-visible:active {
  transform: translateY(0) scale(0.98);
}

.tours-scroll-fab:focus {
  outline: none;
}

.tours-scroll-fab:focus-visible {
  box-shadow: 0 3px 12px rgba(255, 122, 0, 0.12), 0 0 0 3px rgba(255, 122, 0, 0.22);
}

.tours-scroll-fab__icon {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

#booking-overlay.is-open ~ .tours-scroll-fab,
#contact-overlay.is-open ~ .tours-scroll-fab {
  visibility: hidden;
  pointer-events: none;
}

/* Плавающая кнопка звонка (только мобильные) */
.mobile-call-fab {
  display: none;
}

@media (max-width: 768px) {
  .tours-scroll-fab {
    bottom: calc(16px + 52px + 22px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-call-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    z-index: 1600;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
      transform var(--micro-duration) var(--micro-ease),
      box-shadow var(--micro-duration) var(--micro-ease),
      filter var(--micro-duration) var(--micro-ease),
      opacity 0.25s ease;
  }

  .mobile-call-fab:hover {
    filter: brightness(0.94);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  }

  .mobile-call-fab:active {
    transform: scale(0.98);
    filter: none;
  }

  body.tour-sticky-bar-visible .mobile-call-fab {
    bottom: calc(16px + 4.75rem + env(safe-area-inset-bottom, 0px));
  }

  #booking-overlay.is-open ~ .mobile-call-fab,
  #contact-overlay.is-open ~ .mobile-call-fab {
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-call-fab:focus {
    outline: none;
  }

  .mobile-call-fab:focus-visible {
    outline: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(255, 122, 0, 0.35);
  }

  .mobile-call-fab.is-hidden-by-footer {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .mobile-call-fab__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  .mobile-call-fab__icon svg {
    display: block;
  }
}

html.is-photo-lightbox-open,
body.is-photo-lightbox-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.is-photo-lightbox-open {
  touch-action: none;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.photo-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.photo-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.82);
}

.photo-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 960px);
  max-height: min(92dvh, 900px);
  margin: 0 auto;
}

.photo-lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  max-height: min(92dvh, 900px);
  margin: 0;
}

.photo-lightbox__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.photo-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(84dvh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  background: #1a1d22;
}

.photo-lightbox__counter {
  max-width: min(100%, 640px);
  margin: 0;
  padding: 0 8px 2px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.photo-lightbox__counter[hidden] {
  display: none;
}

.photo-lightbox__caption {
  max-width: min(100%, 640px);
  margin: 0;
  padding: 0 8px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}

.photo-lightbox__close {
  position: fixed;
  top: max(12px, env(safe-area-inset-top, 0px));
  right: max(12px, env(safe-area-inset-right, 0px));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(24, 26, 30, 0.72);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.photo-lightbox__close:hover {
  background: rgba(36, 40, 46, 0.9);
  border-color: rgba(255, 255, 255, 0.28);
}

.photo-lightbox__close:focus {
  outline: none;
}

.photo-lightbox__close:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.photo-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0 0 2px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(18, 20, 24, 0.68);
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.photo-lightbox__nav[hidden] {
  display: none;
}

.photo-lightbox__nav--prev {
  left: -12px;
}

.photo-lightbox__nav--next {
  right: -12px;
}

.photo-lightbox__nav:hover:not(:disabled) {
  background: rgba(32, 35, 40, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
}

.photo-lightbox__nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.96);
}

.photo-lightbox__nav:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

.photo-lightbox__nav:focus {
  outline: none;
}

.photo-lightbox__nav:focus-visible {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28), 0 0 0 2px rgba(255, 255, 255, 0.42);
}

@media (min-width: 769px) {
  .photo-lightbox {
    padding: 24px 48px;
  }
}

@media (max-width: 768px) {
  .photo-lightbox__nav--prev {
    left: 8px;
  }

  .photo-lightbox__nav--next {
    right: 8px;
  }
}

/* Микро-анимации главной: hover только на устройствах с точным указателем */
@media (hover: hover) and (pointer: fine) {
  .scenario-card:active {
    transform: translateY(-2px) scale(0.99);
  }

  .card:active {
    transform: translateY(-2px) scale(0.99);
  }

  .transport-info__card:active {
    transform: translateY(-2px) scale(0.99);
  }

  .testimonials .trust-item:active {
    transform: translateY(-2px) scale(0.99);
  }
}

@media (hover: none) {
  .scenario-card:hover,
  .card:hover,
  .transport-info__card:hover,
  .testimonials .trust-item:hover {
    transform: none;
  }

  .scenario-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 140, 40, 0.16);
  }

  .card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .transport-info__card:hover {
    box-shadow: 0 4px 12px rgba(25, 25, 25, 0.025);
    border-color: rgba(255, 140, 40, 0.13);
  }

  .testimonials .trust-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border-color: #ffe9d2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .btn:hover,
  .btn:active,
  .top-btn,
  .top-btn:hover,
  .top-btn:active,
  .card-book-btn,
  .card-book-btn:hover,
  .card-book-btn:active,
  .btn-primary,
  .btn-primary:hover,
  .btn-primary:active,
  .contact-sheet-btn,
  .contact-sheet-btn:hover,
  .contact-sheet-btn:active,
  .contact-sheet-btn.contact-sheet-btn--primary,
  .contact-sheet-btn.contact-sheet-btn--primary:hover,
  .contact-sheet-btn.contact-sheet-btn--primary:active,
  .testimonials-show-more,
  .testimonials-show-more:hover,
  .testimonials-show-more:active,
  .card,
  .card:hover,
  .card:active,
  .scenario-card,
  .scenario-card:hover,
  .scenario-card:active,
  .transport-info__card,
  .transport-info__card:hover,
  .transport-info__card:active,
  .testimonials .trust-item,
  .testimonials .trust-item:hover,
  .testimonials .trust-item:active,
  .tours-scroll-fab,
  .tours-scroll-fab.is-visible,
  .tours-scroll-fab.is-visible:hover,
  .tours-scroll-fab.is-visible:active,
  .mobile-call-fab,
  .mobile-call-fab:hover,
  .mobile-call-fab:active,
  .scenario-card .scenario-cta__arrow,
  .scenario-card:hover .scenario-cta__arrow,
  .scenario-card:active .scenario-cta__arrow,
  .scenario-card:focus-visible .scenario-cta__arrow {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .card:target {
    animation: none;
  }

  .topbar .menu-nav__link,
  .topbar .menu-nav__label,
  .topbar .menu-nav__arrow,
  .topbar .menu-nav__link:hover .menu-nav__arrow,
  .topbar .menu-nav__link:active .menu-nav__arrow {
    transition: none !important;
    transform: none !important;
  }

  .topbar .menu-cta__btn,
  .topbar .menu-cta__btn--primary,
  .topbar .menu-cta__btn--secondary,
  .topbar .menu-cta__btn--primary:hover,
  .topbar .menu-cta__btn--primary:active,
  .topbar .menu-cta__btn--secondary:hover,
  .topbar .menu-cta__btn--secondary:active {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .topbar-burger,
  .topbar-burger:active {
    transition: none !important;
    transform: none !important;
  }

  .topbar .menu {
    transition: opacity 0.01ms linear, visibility 0.01ms linear;
  }

  .topbar-content.is-menu-open > .menu {
    transform: none;
  }

  .topbar-menu-backdrop {
    transition: opacity 0.01ms linear, visibility 0.01ms linear;
  }
}