/* ============================================================
   Zen Modernist — лендинг путешествия / ретрита
   Подключать ПОСЛЕ zen.css. Используется altay2026.html
   и travel-template.html (шаблон для остальных поездок).
   ============================================================ */

/* ---------- hero: тёмный, фото места на подложке ----------
   Фото задаётся на секции инлайн-переменной:
   <section class="travel-hero" style="--hero-img: url('...')"> */
.travel-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: min(88vh, 900px);
  background: var(--hero-img, linear-gradient(180deg, #fdfaf1, #f7f1e2)) center 62% / cover no-repeat;
  color: var(--ink);
}

/* фото чистое; светлое пятно — только под текстовым блоком */
.hero-plate {
  display: inline-block;
  max-width: 640px;
  background: rgba(253, 250, 241, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 48px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
}

.travel-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(110px, 15vw, 170px) var(--gutter) clamp(70px, 10vw, 120px);
}

.travel-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.travel-hero h1 {
  margin: 18px 0 0;
  max-width: 640px;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}

.travel-sub {
  max-width: 46ch;
  margin-top: 18px;
  color: var(--ink-70);
  font-size: 1.08rem;
}

.travel-dates {
  display: inline-block;
  margin-top: 26px;
  background: var(--gold);
  color: var(--white);
  border-radius: 9999px;
  padding: 10px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.travel-deadline {
  display: block;
  width: fit-content;
  max-width: min(100%, 620px);
  margin-top: 12px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
}

.travel-deadline.is-closed { color: var(--ink-70); }
.deadline-mobile { display: none; }

.travel-hero .actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.travel-hero .button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}
.travel-hero .button.secondary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* телефон в шапке лендинга */
.header-cta .button.secondary[href^="tel:"] { border-color: var(--sand); color: var(--ink); }
.header-cta .button.secondary[href^="tel:"]:hover { background: var(--canvas); color: var(--ink); }

/* ---------- секции ---------- */

.travel-section { padding-block: clamp(48px, 7vw, 90px); }
.travel-section.tinted { background: var(--canvas); border-block: 1px solid var(--sand); }
.travel-section .inner { max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }

#gallery {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding-top: clamp(58px, 6vw, 96px);
}

/* фото-брейк: полноширинное фото между секциями */
.breather {
  height: clamp(260px, 46vh, 480px);
  background: var(--img) center / cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 900px) { .breather { background-attachment: scroll; height: 220px; } }

/* ---------- что вас ждет: роза ветров ---------- */

.what-light { background: var(--white) !important; border: none !important; position: relative; overflow: hidden; }

.what-compass {
  display: block;
  margin: 0 auto clamp(22px, 3.4vw, 40px);
  width: clamp(120px, 13vw, 180px);
  height: auto;
  animation: compassSpin 80s linear infinite;
  pointer-events: none;
}

@keyframes compassSpin { to { transform: rotate(360deg); } }

.what-light .inner { position: relative; }
.what-light .two-col { position: relative; z-index: 1; }
.what-light .two-col::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--sand) 12%, var(--sand) 88%, transparent);
}
@media (max-width: 900px) {
  .what-light .two-col::before { display: none; }
  .what-compass { width: 96px; }
}

/* ---------- маршрут: светлая секция с карточками дней (как на живом) ---------- */

.route-light {
  position: relative;
  overflow: hidden;
  background: #f6f6f4;
  border-block: 1px solid #ececea;
}

.route-light .inner { position: relative; z-index: 1; }

.route-light h2 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* тонкий арт-тропа слева — как в оригинале (.marsh_gim-wrapper:before) */
.route-light::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 319px;
  background: url('/static/platform_core/archive/altay2026/images/altai/trail.webp') center top / contain no-repeat;
  pointer-events: none;
}

/* горы справа за карточками — как в оригинале (.marsh_gim-wrapper:after) */
.route-light::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -100px;
  top: 15%;
  width: 100%;
  max-width: 810px;
  height: 100%;
  max-height: 524px;
  background: url('/static/platform_core/archive/altay2026/images/altai/mountains-right.webp') center / cover no-repeat;
  pointer-events: none;
}

/* дни: дата слева, белая карточка с золотой рамкой и флажком */
.route-light .timeline::before { display: none; }
.route-light .tl-day::before { display: none; }

.route-light .tl-day {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 0 0 26px 0;
}

.route-light .tl-date {
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  text-align: right;
}

.tl-card {
  background: var(--white);
  border: 1px solid #e7d9ab;
  border-radius: 5px;
  padding: 22px 28px 24px;
}

.tl-flag { display: block; width: 27px; height: 27px; margin-bottom: 8px; }

.route-light .tl-day h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  font-weight: 600;
}

.route-light .tl-day p { color: var(--ink-70); max-width: none; }

.tl-day.peak .tl-card { border-color: var(--gold); border-width: 2px; }
.peak-badge {
  display: inline-block;
  margin: 2px 0 10px;
  padding: 5px 16px;
  border-radius: 4px;
  background: #F0D584;
  color: #3d3524;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .route-light::before,
  .route-light::after { display: none; }
}

@media (max-width: 640px) {
  .route-light .tl-day { grid-template-columns: 1fr; gap: 8px; }
  .route-light .tl-date { text-align: left; }
}

/* ---------- панорама гор ПОД ОБРЕЗ внизу секции ----------
   как в оригинале (.two_vstp .lt-block-wrapper:before): фон на всю
   ширину, прижат к низу секции, секция дает место паддингом */
.has-panorama {
  position: relative;
  padding-bottom: clamp(300px, 34vw, 520px) !important;
  margin-bottom: 0;
  overflow: hidden;
}

.has-panorama::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 0;
  height: clamp(300px, 34vw, 520px);
  background: url('/static/platform_core/archive/altay2026/images/altai/panorama.webp') center bottom / 100% auto no-repeat;
  pointer-events: none;
}

/* гора из исходника — фоном под низ манифеста и списка вещей */
.has-peak {
  position: relative;
  padding-bottom: clamp(260px, 28vw, 440px) !important;
}
.has-peak::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(clamp(560px, 64vw, 1080px) + 1600px);
  /* верх горы высветлен, чтобы текст манифеста читался; к низу гора проявляется */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 26%, rgba(255, 255, 255, 0.5) 48%, rgba(255, 255, 255, 0.1) 68%, transparent 82%),
    url('/static/platform_core/archive/altay2026/images/altai/peak-final.webp') center 74% / cover no-repeat;
  pointer-events: none;
}

@media (max-width: 900px) {
  .has-peak::after {
    height: clamp(460px, 95vw, 760px);
    background-position: center 78%;
  }
}
.has-peak .inner { position: relative; z-index: 1; }

/* ---------- плоская золотая кнопка (как «СПИСОК ВЕЩЕЙ» на живом) ---------- */

.button.flat {
  background: #F0D584;
  border-color: #F0D584;
  color: #3d3524;
  border-radius: 6px;
  box-shadow: none;
}

.button.flat:hover {
  background: #e6c76a;
  border-color: #e6c76a;
  color: #2c2415;
  transform: none;
  box-shadow: none;
}

/* ---------- факты: на фото гор ---------- */

.facts-photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(16, 15, 13, 0.62), rgba(16, 15, 13, 0.54)),
    var(--img) center 120px / cover no-repeat;
  color: var(--white);
}
@media (max-width: 900px) { .facts-photo { background-attachment: scroll, scroll; background-position: 0 0, center 74px; } }
.facts-photo .eyebrow { color: var(--gold-soft); }
.facts-photo h2 { color: var(--white); }
.facts-photo .fact {
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.facts-photo .fact:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35); }
.fact b::before {
  content: '\2726';
  margin-right: 8px;
  color: var(--gold);
  animation: twinkleStar 2.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes twinkleStar { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* снегопад */
.snow { position: absolute; inset: 0; pointer-events: none; }
.snow i {
  position: absolute;
  top: -12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: snowFall linear infinite;
}
@keyframes snowFall {
  to { transform: translateY(1200px); opacity: 0.15; }
}
.snow i:nth-child(1)  { left: 6%;  width: 5px; height: 5px; animation-duration: 11s; animation-delay: 0s; }
.snow i:nth-child(2)  { left: 16%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 3s; }
.snow i:nth-child(3)  { left: 26%; width: 6px; height: 6px; animation-duration: 9s;  animation-delay: 6s; }
.snow i:nth-child(4)  { left: 36%; width: 4px; height: 4px; animation-duration: 13s; animation-delay: 1.5s; }
.snow i:nth-child(5)  { left: 46%; width: 5px; height: 5px; animation-duration: 10s; animation-delay: 4.5s; }
.snow i:nth-child(6)  { left: 56%; width: 3px; height: 3px; animation-duration: 16s; animation-delay: 2s; }
.snow i:nth-child(7)  { left: 66%; width: 6px; height: 6px; animation-duration: 8.5s; animation-delay: 7s; }
.snow i:nth-child(8)  { left: 76%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 0.8s; }
.snow i:nth-child(9)  { left: 86%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: 5s; }
.snow i:nth-child(10) { left: 94%; width: 3px; height: 3px; animation-duration: 17s; animation-delay: 3.6s; }
.snow i:nth-child(11) { left: 11%; width: 4px; height: 4px; animation-duration: 12.5s; animation-delay: 8s; }
.snow i:nth-child(12) { left: 61%; width: 5px; height: 5px; animation-duration: 10.5s; animation-delay: 9s; }
@media (prefers-reduced-motion: reduce) { .snow i, .what-compass, .fact b::before { animation: none !important; } }

.eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}

.travel-section h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 400; }
.travel-section .lead { max-width: 68ch; color: var(--ink-70); font-size: 1.05rem; }
.travel-section .lead.accent { font-style: italic; }
.wide-text { max-width: 82ch; }

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--ambient);
  display: block;
}

/* ---------- маршрут: вертикальный таймлайн ---------- */

.timeline { margin-top: clamp(28px, 4vw, 44px); position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--sand);
}

.tl-day { position: relative; padding: 0 0 30px 42px; }
.tl-day:last-child { padding-bottom: 0; }

.tl-day::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--sand);
}

.tl-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}

.tl-day h3 { margin: 4px 0 6px; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1rem; }
.tl-day p { color: var(--ink-70); font-size: 0.96rem; max-width: 74ch; margin-bottom: 8px; }

/* ---------- команда ---------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 30px;
}

.team-card { display: flex; flex-direction: column; gap: 14px; }

.team-card img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 20px;
  box-shadow: var(--ambient);
}

.team-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.team-card blockquote {
  margin: 0;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
  color: var(--ink-70);
  font-style: italic;
}

/* ---------- списки со звездочкой ---------- */

.star-list { list-style: none; padding: 0; margin: 18px 0 0; }
.star-list li { position: relative; padding: 7px 0 7px 30px; color: var(--ink-70); }
.star-list li::before { content: '\2726'; position: absolute; left: 0; top: 7px; color: var(--gold); }
.star-list.compact { font-size: 0.94rem; margin-top: 8px; }

.panel-text { font-size: 0.94rem; }

/* ---------- факты ---------- */

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

.fact {
  border: 1px solid var(--sand);
  border-radius: 18px;
  background: var(--white);
  padding: 18px 22px;
}

.fact b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.fact p { margin: 0; font-size: 0.94rem; color: var(--ink-70); }

/* ---------- галерея ---------- */

.travel-gallery-shell {
  position: relative;
  margin-top: 30px;
}

.travel-gallery {
  display: flex;
  gap: 16px;
  margin-top: 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding-bottom: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.travel-gallery::-webkit-scrollbar { display: none; }

.travel-gallery-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 34px !important;
  min-width: 0 !important;
  height: 34px !important;
  min-height: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(34, 32, 28, 0.10);
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.68);
  color: rgba(26, 25, 22, 0.72);
  box-shadow: 0 8px 18px rgba(20, 20, 18, 0.10);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%) !important;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.travel-gallery-arrow:hover {
  background: rgba(255, 252, 246, 0.94);
  border-color: rgba(194, 107, 21, 0.28);
  color: var(--gold-deep);
  box-shadow: 0 10px 22px rgba(20, 20, 18, 0.14);
  transform: translateY(-50%) !important;
}

.travel-gallery-arrow.prev { left: 12px; }
.travel-gallery-arrow.next { right: 12px; }

.travel-gallery-arrow::before {
  display: block;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
}

.travel-gallery-arrow.prev::before { content: '\2039'; }
.travel-gallery-arrow.next::before { content: '\203A'; }

.travel-gallery-arrow {
  font-size: 0 !important;
}

.travel-gallery figure {
  position: relative;
  flex: 0 0 clamp(280px, 38vw, 560px);
  height: clamp(230px, 28vw, 390px);
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--canvas);
  scroll-snap-align: start;
}
.travel-gallery a { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.travel-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.travel-gallery figure:hover img { transform: scale(1.05); }
.travel-gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: linear-gradient(180deg, transparent, rgba(16, 15, 13, 0.72) 34%, rgba(16, 15, 13, 0.86));
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.25;
  pointer-events: none;
}
.travel-gallery .wide,
.travel-gallery .tall { flex-basis: clamp(280px, 38vw, 560px); }

.travel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(16, 15, 13, 0.9);
}
.travel-lightbox[hidden] { display: none; }
.travel-lightbox figure {
  margin: 0;
  display: grid;
  gap: 12px;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
}
.travel-lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.travel-lightbox figcaption {
  color: var(--white);
  text-align: center;
  font-size: 0.98rem;
}
.travel-lightbox-close,
.travel-lightbox-nav {
  position: absolute;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.travel-lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
}
.travel-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  font-size: 2rem;
}
.travel-lightbox-nav.prev { left: 20px; }
.travel-lightbox-nav.next { right: 20px; }

/* ---------- список вещей: аккордеоны ---------- */

.packing { margin-top: 34px; }

.packing details {
  border: 1px solid var(--sand);
  border-radius: 16px;
  background: var(--white);
  padding: 16px 22px;
  margin-top: 12px;
}

.pk-ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(245, 164, 66, 0.14);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pk-ico svg { width: 18px; height: 18px; }
.packing summary {
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.packing summary::-webkit-details-marker { display: none; }
.packing summary::after { margin-left: auto; content: '+'; color: var(--gold); font-size: 1.2rem; font-weight: 300; }
.packing details[open] summary::after { content: '\2212'; }
.packing ul { margin: 12px 0 0; padding-left: 1.1rem; color: var(--ink-70); font-size: 0.93rem; }

/* ---------- стоимость ---------- */

/* стоимость: броская золотая секция */
.cost-gold {
  background: linear-gradient(160deg, #e89422 0%, #f5a442 48%, #cf7d15 100%);
  border: none !important;
  color: var(--white);
}
.cost-gold .eyebrow { color: #fff3d6; }
.cost-gold h2 { color: var(--white); }
.cost-gold .panel { border: none; }
.cost-gold .fine-print { color: rgba(255, 255, 255, 0.88); }
.cost-gold .fine-print a { color: #fff3d6; }

/* ценник — тёмный, с кремовой цифрой */
.price-card {
  border: none;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 22px 60px rgba(90, 55, 5, 0.45);
}
.price-card h3 { color: var(--gold-soft); }
.price-big {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1.1;
  margin: 10px 0;
}
.price-card .price-big { color: #ffe9b8; font-size: clamp(2.4rem, 4.6vw, 3.2rem); }
.price-card .price-note { color: rgba(255, 255, 255, 0.82); }
.price-card .button { background: var(--gold); border-color: var(--gold); color: var(--white); }
.price-card .button:hover { background: #fff; border-color: #fff; color: var(--ink); }

.price-note { color: var(--ink-60); font-size: 0.9rem; }

.tariffs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
  margin-top: 30px;
}

.tariff {
  border: 1px solid var(--sand);
  border-radius: 24px;
  background: var(--white);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tariff .price-big { font-size: 1.9rem; }
.tariff .button { margin-top: auto; align-self: flex-start; }

.payment-choice {
  margin-top: 30px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(90, 55, 5, 0.45);
  overflow: hidden;
}

.payment-choice summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 30px);
  padding: clamp(24px, 3vw, 36px);
}

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

.payment-choice summary b {
  display: block;
  color: var(--gold-soft);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}

.payment-choice summary small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.payment-choice summary strong {
  color: #ffe9b8;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.payment-choice summary em {
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 22px;
  white-space: nowrap;
}

.payment-choice[open] summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-choice[open] summary em {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.payment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 clamp(24px, 3vw, 36px) clamp(24px, 3vw, 36px);
}

.payment-options .button {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.payment-options .button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.payment-options .button:hover,
.payment-options .button.secondary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.travel-sales-closed {
  padding: clamp(24px, 3vw, 36px);
}

.travel-sales-closed h3 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.travel-sales-closed p {
  max-width: 62ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.travel-sales-closed .button { margin-top: 22px; }

.fine-print { margin-top: 26px; color: var(--ink-60); font-size: 0.88rem; max-width: 82ch; }
.fine-print p { margin: 0 0 8px; }

/* ---------- адаптив ---------- */

@media (max-width: 900px) {
  .two-col, .team-grid, .facts-grid, .tariffs { grid-template-columns: 1fr; }
  .travel-gallery-shell { padding-inline: 0; }
  .payment-choice summary { grid-template-columns: 1fr; }
  .payment-choice summary strong { white-space: normal; }
  .payment-choice summary em { justify-self: start; }
  .travel-gallery figure,
  .travel-gallery .wide,
  .travel-gallery .tall {
    flex-basis: min(82vw, 420px);
    height: 260px;
  }
  .header-cta .button.secondary[href^="tel:"] { display: none; }
  .travel-lightbox { padding-bottom: 92px; }
  .travel-lightbox-nav { top: auto; bottom: 22px; transform: none; }
  .travel-lightbox-nav.prev { left: calc(50% - 58px); }
  .travel-lightbox-nav.next { right: calc(50% - 58px); }
}

/* тревел-страницы: футер сразу за последней секцией */
.site-footer { margin-top: 0; }

/* ---------- форма вопроса (как на живом лендинге) ---------- */
.ask-form {
  margin-top: 20px;
  border: 1px solid var(--sand);
  border-radius: 20px;
  background: var(--canvas);
  padding: clamp(18px, 2.6vw, 26px);
  display: grid;
  gap: 12px;
}
.ask-form b {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ask-form input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--sand);
  border-radius: 10px 10px 0 0;
  background: var(--white);
  padding: 11px 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  box-sizing: border-box;
}
.ask-form input:focus { outline: none; border-bottom-color: var(--gold); }
.ask-form .button { justify-self: start; }
.ask-note { font-size: 0.85rem; color: var(--teal); }
.ask-form p { margin: 0; color: var(--ink-70); }
.ask-actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 640px) {
  .header-cta .altay-home-cta { display: none; }
  .travel-hero { min-height: min(78vh, 720px); }
  .travel-hero-inner { padding: 56px var(--gutter) 48px; }
  .hero-plate { padding: 22px; border-radius: 22px; }
  .travel-hero h1 { margin-top: 12px; }
  .travel-sub { margin-top: 14px; }
  .travel-dates { margin-top: 18px; }
  .deadline-desktop { display: none; }
  .deadline-mobile { display: inline; }
  .travel-hero .actions { margin-top: 22px; }
}
