/* =========================================================
   СЕВЕРНАЯ ТРОПА · cleaned styles
   Палитра: лайм #b3f76f на хвойном #141d12
   ========================================================= */

:root {
  --accent: #b3f76f;
  --accent-2: #adf665;
  --bg: #141d12;
  --bg-2: #1a2616;
  --bg-card: #1c2817;
  --line: rgba(179, 247, 111, .16);
  --line-soft: rgba(243, 247, 238, .10);
  --text: #f2f6ec;
  --text-dim: rgba(242, 246, 236, .66);
  --text-mut: rgba(242, 246, 236, .45);
  --radius: 22px;
  --radius-lg: 30px;
  --page-pad: clamp(16px, 3.2vw, 64px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.accent {
  color: var(--accent);
}

.section {
  position: relative;
  width: 100%;
  padding: clamp(64px, 9vw, 130px) 0;
}

.section__title {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.01em;
}

.section__title--center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  --pad-y: 14px;
  --pad-x: 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition:
    transform .25s var(--ease),
    background .25s var(--ease),
    color .25s var(--ease),
    box-shadow .25s var(--ease),
    border-color .25s var(--ease);
}

.btn--sm {
  --pad-y: 11px;
  --pad-x: 20px;
  font-size: 14px;
}

.btn--lg {
  --pad-y: 17px;
  --pad-x: 34px;
  font-size: 16px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--accent {
  background: var(--accent);
  color: #14210a;
  box-shadow: 0 10px 30px -12px rgba(179, 247, 111, .7);
}

.btn--accent:hover {
  background: #c4ff84;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(179, 247, 111, .85);
}

.btn--accent:active {
  transform: translateY(0);
}

.btn--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-2px);
}

/* =========================================================
   COOKIE
   ========================================================= */

.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(20, 29, 18, .92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: cookieUp .5s var(--ease);
}

.cookie[hidden] {
  display: none !important;
}

.cookie.is-closing {
  pointer-events: none;
  animation: cookieDown .28s var(--ease) forwards;
}

.cookie__text {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.45;
}

.cookie__btn {
  flex: none;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #14210a;
  font-weight: 700;
  font-size: 14px;
}

.cookie__btn:hover {
  background: #c4ff84;
}

@keyframes cookieUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes cookieDown {
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* =========================================================
   HEADER + MOBILE MENU
   ========================================================= */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  transition:
    background .35s var(--ease),
    padding .35s var(--ease),
    border-color .35s var(--ease);
}

.header.is-stuck {
  padding: 10px 0;
  border-bottom-color: var(--line);
  background: rgba(16, 23, 14, .82);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.logo__mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--accent);
  color: #14210a;
  box-shadow: 0 12px 24px -18px rgba(179, 247, 111, .9);
}

.logo__icon {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo__text {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.01em;
}

.nav {
  display: flex;
  gap: 6px;
  margin-left: 8px;
}

.nav__link {
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.rta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 12.5px;
  font-weight: 600;
}

.rta__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(179, 247, 111, .18),
    0 0 14px rgba(179, 247, 111, .6);
  animation: rtaBlink 1.35s ease-in-out infinite;
}

.rta__dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(179, 247, 111, .5);
  border-radius: inherit;
  animation: rtaPulse 1.35s ease-out infinite;
}

@keyframes rtaBlink {
  0%,
  100% {
    opacity: .55;
    transform: scale(.92);
  }

  45% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes rtaPulse {
  from {
    opacity: .7;
    transform: scale(.55);
  }

  to {
    opacity: 0;
    transform: scale(1.55);
  }
}

.burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 90px 28px 40px;
  background: rgba(13, 19, 11, .98);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__link {
  padding: 8px 0;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 28px;
}

.mobile-menu__link:hover {
  color: var(--accent);
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: 140px 0 70px;
  overflow: hidden;
}

.hero__strips {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
}

.hero__strip {
  position: relative;
  flex: 1;
  background-position: center;
  background-size: cover;
  filter: saturate(1.05);
  animation: stripIn 1.1s var(--ease) backwards;
}

.hero__strip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, .06);
}

.hero__strip:nth-child(1) { animation-delay: .05s; }
.hero__strip:nth-child(2) { animation-delay: .15s; }
.hero__strip:nth-child(3) { animation-delay: .25s; }
.hero__strip:nth-child(4) { animation-delay: .35s; }
.hero__strip:nth-child(5) { animation-delay: .45s; }

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 23, 14, .55) 0%, rgba(16, 23, 14, .15) 35%, rgba(16, 23, 14, .55) 70%, var(--bg) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(16, 23, 14, .85), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(54px, 13vw, 200px);
  line-height: .92;
  letter-spacing: -.03em;
  color: var(--accent);
  text-shadow: 0 10px 50px rgba(0, 0, 0, .45);
  animation: fadeUp 1s var(--ease) .2s backwards;
}

.hero__dash {
  color: var(--text);
}

.hero__lead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35em;
  margin-top: 18px;
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 3.4vw, 40px);
  line-height: 1.1;
  animation: fadeUp 1s var(--ease) .35s backwards;
}

.rotator {
  display: inline-flex;
  align-items: baseline;
  padding-bottom: 2px;
  border-bottom: 3px solid var(--accent);
}

.rotator__word {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.rotator__word.is-out {
  opacity: 0;
  transform: translateY(-12px);
}

.hero__sub {
  max-width: 540px;
  margin-top: 16px;
  color: var(--text-dim);
  font-size: clamp(15px, 1.6vw, 18px);
  animation: fadeUp 1s var(--ease) .5s backwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: fadeUp 1s var(--ease) .65s backwards;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(16, 23, 14, .4);
  color: var(--accent);
  transform: translateX(-50%);
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes stripIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(1.04);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* =========================================================
   WHY US
   ========================================================= */

.why-us {
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
  background:
    radial-gradient(80% 70% at 20% 10%, rgba(179, 247, 111, .12), transparent 60%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  color: var(--text);
}

.why-us .container {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.why-us__title {
  max-width: none;
  margin: 0 0 clamp(34px, 5vw, 70px);
  padding: 0 clamp(18px, 3vw, 54px);
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(44px, 8vw, 138px);
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.why-card {
  display: grid;
  grid-template-columns: minmax(360px, 46vw) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 70px);
  min-height: clamp(420px, 46vw, 620px);
  padding: clamp(22px, 3vw, 52px) clamp(18px, 3vw, 54px);
  border-top: 1px solid rgba(179, 247, 111, .14);
  background: rgba(20, 29, 18, .34);
}

.why-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 46vw);
}

.why-card:nth-child(even) .why-card__media {
  order: 2;
}

.why-card:nth-child(even) .why-card__content {
  order: 1;
}

.why-card__media {
  min-height: 0;
  height: 100%;
}

.why-card__media img {
  width: 100%;
  height: 100%;
  max-height: clamp(420px, 46vw, 620px);
  object-fit: cover;
  border: 1px solid rgba(179, 247, 111, .16);
  border-radius: 30px;
  box-shadow: 0 28px 70px -42px rgba(0, 0, 0, .9);
}

.why-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-height: clamp(420px, 46vw, 620px);
  overflow: hidden;
}

.why-card__heading {
  margin-bottom: clamp(18px, 2vw, 34px);
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(30px, 4.1vw, 74px);
  line-height: .9;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.why-card__text {
  max-width: 720px;
  margin-bottom: clamp(18px, 2vw, 30px);
  color: var(--text-dim);
  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.why-card__accent {
  max-width: 700px;
  color: var(--text);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.28;
  font-weight: 800;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* =========================================================
   TOUR SCHEDULE + SLIDER
   ========================================================= */

.tour-schedule {
  background:
    linear-gradient(180deg, rgba(20, 29, 18, .96), rgba(20, 29, 18, .88)),
    radial-gradient(120% 100% at 50% 0%, rgba(179, 247, 111, .08), transparent 65%);
}

.tour-schedule .container {
  max-width: 1380px;
}

.tour-schedule__head {
  max-width: 940px;
  margin: 0 auto 52px;
  text-align: center;
}

.tour-schedule__title {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.tour-schedule__sub {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--text-dim);
  font-size: 16px;
}

.tour-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.tour-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(179, 247, 111, .12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 40, 23, .98), rgba(19, 28, 16, .98));
  box-shadow: 0 26px 60px -34px rgba(0, 0, 0, .7);
}

.tour-card__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.tour-card__name {
  margin-bottom: 16px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 2.4vw, 42px);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.tour-card__desc {
  max-width: 280px;
  margin-bottom: 22px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.45;
}

.tour-card__meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
}

.tour-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-card__meta-label,
.tour-card__price-label {
  color: var(--text-mut);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tour-card__meta-value {
  color: var(--text);
  font-weight: 700;
}

.tour-card__meta-value--pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid rgba(179, 247, 111, .28);
  border-radius: 999px;
  background: rgba(179, 247, 111, .06);
  font-size: 13px;
}

.tour-card__dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.tour-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}

.tour-card__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tour-card__price {
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(26px, 2.3vw, 40px);
  line-height: 1;
}

.tour-card__btn {
  width: 100%;
  justify-content: center;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tour-card__visual {
  min-width: 0;
  overflow: hidden;
}

.tour-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: var(--bg);
}

.tour-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 19, 11, .28), transparent 24%, transparent 76%, rgba(13, 19, 11, .28)),
    linear-gradient(180deg, transparent 52%, rgba(13, 19, 11, .24));
}

.tour-slider__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.tour-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .45s var(--ease);
  will-change: transform;
}

.tour-slider__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-position: center;
  background-size: cover;
}

.tour-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 10px 12px;
  border: 1px solid rgba(179, 247, 111, .28);
  border-radius: 12px;
  background: rgba(20, 29, 18, .92);
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.tour-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(179, 247, 111, .28);
  border-radius: 999px;
  background: rgba(20, 29, 18, .78);
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    background .25s var(--ease),
    color .25s var(--ease);
}

.tour-slider__arrow:hover {
  background: var(--accent);
  color: #14210a;
}

.tour-slider__arrow--prev {
  left: 16px;
}

.tour-slider__arrow--next {
  right: 16px;
}

.tour-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 6;
  display: flex;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(179, 247, 111, .18);
  border-radius: 999px;
  background: rgba(20, 29, 18, .68);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.tour-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(242, 246, 236, .42);
  transition: width .25s var(--ease), background .25s var(--ease);
}

.tour-slider__dot.is-active {
  width: 24px;
  background: var(--accent);
}

/* =========================================================
   CENTERED FORM + TICKER
   ========================================================= */

.process--centered {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 9vw, 150px) 0 0;
  background:
    linear-gradient(180deg, rgba(13, 19, 11, .72), rgba(13, 19, 11, .66) 48%, rgba(13, 19, 11, .92) 100%),
    url("../img/image09.jpg") center / cover no-repeat;
}

.process--centered::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(70% 55% at 50% 20%, rgba(179, 247, 111, .18), transparent 65%),
    linear-gradient(90deg, rgba(13, 19, 11, .75), transparent 35%, transparent 65%, rgba(13, 19, 11, .78));
}

.process__bg-title {
  position: absolute;
  left: 50%;
  top: clamp(22px, 3.6vw, 58px);
  z-index: -1;
  width: min(1380px, 92vw);
  color: var(--accent);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.1vw, 126px);
  line-height: .93;
  letter-spacing: -.065em;
  text-align: center;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  pointer-events: none;
  transform: translateX(-50%);
}

.process__stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: clamp(170px, 15vw, 255px);
}

.process__stage .lead-form--travel-card {
  width: min(100%, 1060px);
  max-width: 1060px;
  margin: 0 auto;
}

.process__stage .travel-card-form__main {
  padding-right: clamp(28px, 4vw, 54px);
}

.process__stage .travel-card-form__title {
  max-width: 650px;
}

.process__stage .travel-card-form__grid,
.process__stage .travel-card-form__consent,
.process__stage .travel-card-form__submit {
  width: min(100%, 530px);
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.lead-form__title {
  margin-bottom: 22px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.field {
  margin-bottom: 14px;
}

.field__input {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.field__input::placeholder {
  color: var(--text-mut);
}

.field__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(179, 247, 111, .15);
}

.field__select {
  padding-right: 44px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23b3f76f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 18px;
  color: var(--text-mut);
  font-size: 12.5px;
  line-height: 1.4;
  cursor: pointer;
}

.consent input {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.lead-form__success,
.contact-form__success {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(179, 247, 111, .14);
  color: var(--accent);
  font-weight: 600;
  font-size: 14.5px;
  text-align: center;
}

.lead-form--travel-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, .42fr) minmax(430px, 1fr);
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #1b3016;
  box-shadow: 0 34px 90px -36px rgba(0, 0, 0, .86);
}

.travel-card-form__aside {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  padding: 30px 28px 22px;
  border-right: 1px dashed rgba(179, 247, 111, .72);
}

.travel-card-form__stamps {
  position: relative;
  height: 78px;
}

.travel-stamp {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 62px;
  border: 2px solid rgba(232, 255, 214, .9);
  outline: 1px dashed rgba(232, 255, 214, .9);
  outline-offset: -6px;
  background:
    linear-gradient(135deg, rgba(179, 247, 111, .36), rgba(179, 247, 111, .07)),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, .24), transparent 34%),
    #456e3b;
  box-shadow: 0 8px 18px -12px rgba(0, 0, 0, .9);
  color: #d8ffd0;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 12px;
  line-height: 1;
  transform: rotate(-8deg);
}

.travel-stamp--land {
  top: 0;
  left: 0;
}

.travel-stamp--road {
  top: 8px;
  left: 44px;
  width: 48px;
  height: 56px;
  background:
    linear-gradient(135deg, rgba(179, 247, 111, .2), rgba(179, 247, 111, .06)),
    #6f8c52;
  font-size: 20px;
  transform: rotate(8deg);
}

.travel-card-form__aside-bottom {
  margin-top: auto;
}

.travel-card-form__note {
  max-width: 260px;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(14px, 1vw, 15.5px);
  line-height: 1.04;
  letter-spacing: -.02em;
}

.travel-card-form__messengers {
  display: grid;
  grid-template-columns: repeat(2, minmax(62px, 78px));
  width: max-content;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 9px;
  background: rgba(179, 247, 111, .08);
}

.travel-contact {
  display: grid;
  place-items: center;
  height: 44px;
  background: rgba(179, 247, 111, .09);
  color: var(--accent);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.travel-contact + .travel-contact {
  border-left: 1px dashed rgba(179, 247, 111, .25);
}

.travel-contact:hover {
  background: var(--accent);
  color: #14210a;
}

.travel-card-form__main {
  position: relative;
  z-index: 1;
  padding: 30px 34px 28px 26px;
}

.travel-card-form__title {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(21px, 2.3vw, 29px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.travel-card-form__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 12px;
  width: min(100%, 500px);
}

.lead-form--travel-card .field {
  margin: 0;
}

.lead-form--travel-card .field__input {
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(179, 247, 111, .07);
  border-radius: 999px;
  background-color: #0e1b0d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.lead-form--travel-card .field__input::placeholder {
  color: rgba(179, 247, 111, .47);
  opacity: 1;
}

.lead-form--travel-card .field__input:focus {
  border-color: rgba(179, 247, 111, .72);
  box-shadow: 0 0 0 3px rgba(179, 247, 111, .14);
}

.lead-form--travel-card .field__select {
  padding-right: 42px;
  background-color: #0e1b0d;
  background-position: right 16px center;
  color: var(--accent);
  color-scheme: dark;
}

.lead-form--travel-card .field__select option {
  background: #0e1b0d;
  color: var(--accent);
  font-weight: 700;
}

.travel-card-form__consent {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  margin: 13px 0 12px;
  color: rgba(179, 247, 111, .48);
  font-size: 12px;
  line-height: 1.15;
}

.travel-card-form__consent a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.travel-card-form__consent input {
  width: 19px;
  height: 19px;
  margin-top: 0;
  border-radius: 0;
}

.travel-card-form__submit {
  position: relative;
  z-index: 2;
  width: min(100%, 500px);
  min-height: 48px;
  border-radius: 8px;
  box-shadow: none;
  font-weight: 500;
  font-size: 17px;
}

.travel-card-form__submit:hover {
  transform: none;
}

.travel-card-form__path {
  position: absolute;
  top: 42px;
  right: 56px;
  width: 164px;
  height: 164px;
  border: 1px dashed rgba(179, 247, 111, .55);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  opacity: .78;
  pointer-events: none;
  transform: rotate(36deg);
}

.travel-card-form__path::after {
  content: "";
  position: absolute;
  top: 64px;
  right: -6px;
  width: 86px;
  height: 54px;
  border: 1px dashed rgba(179, 247, 111, .55);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.travel-card-form__stamp-corner {
  position: absolute;
  right: 48px;
  bottom: 32px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 74px;
  border: 3px solid rgba(232, 255, 214, .95);
  outline: 1px dashed rgba(232, 255, 214, .95);
  outline-offset: -7px;
  background:
    linear-gradient(135deg, rgba(179, 247, 111, .28), rgba(179, 247, 111, .04)),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, .22), transparent 33%),
    #5d7d54;
  box-shadow: 0 10px 22px -16px rgba(0, 0, 0, .95);
  color: #d8ffd0;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 10px;
  opacity: .95;
  transform: rotate(12deg);
}

.tour-ticker {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: clamp(54px, 6vw, 86px);
  padding: 0 0 clamp(34px, 4vw, 56px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.tour-ticker__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: tourTickerMove 34s linear infinite;
  will-change: transform;
}

.tour-ticker__group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.tour-pill {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(170px, 13vw, 235px);
  align-items: center;
  column-gap: clamp(16px, 1.6vw, 26px);
  width: clamp(560px, 42vw, 760px);
  height: clamp(118px, 8vw, 146px);
  padding: 12px clamp(12px, 1vw, 16px) 12px clamp(86px, 6.4vw, 118px);
  overflow: hidden;
  border: 1px solid rgba(179, 247, 111, .08);
  border-radius: 999px;
  background: #1b3016;
  box-shadow: 0 22px 54px -38px rgba(0, 0, 0, .85);
}

.tour-pill__num {
  position: absolute;
  left: clamp(18px, 1.5vw, 28px);
  top: 50%;
  color: rgba(179, 247, 111, .18);
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 5vw, 102px);
  line-height: 1;
  letter-spacing: -.18em;
  transform: translateY(-50%) scaleX(.64);
  transform-origin: left center;
}

.tour-pill__text {
  position: relative;
  z-index: 2;
  grid-column: 1;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(17px, 1.22vw, 24px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.tour-pill__photo {
  position: relative;
  grid-column: 2;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 7px solid #14260f;
  border-radius: 999px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(179, 247, 111, .16);
}

@keyframes tourTickerMove {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background: var(--bg-2);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(36px, 4.5vw, 80px);
}

.about__media img {
  width: 100%;
  height: clamp(420px, 32vw, 620px);
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 17px;
}

.feature__ic {
  flex: none;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(179, 247, 111, .16);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.quote {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 36px;
  margin-top: 60px;
  padding: 40px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.quote__photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
}

.quote__text {
  color: var(--text);
  font-size: clamp(16px, 1.8vw, 20px);
  font-style: italic;
  line-height: 1.6;
}

.quote__author {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
}

.quote__name {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.quote__role {
  color: var(--text-dim);
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 13px;
  transition:
    transform .25s var(--ease),
    background .25s var(--ease),
    color .25s var(--ease),
    border-color .25s var(--ease);
}

.social:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #14210a;
  transform: translateY(-3px);
}

/* =========================================================
   FAQ
   ========================================================= */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1180px;
  margin: 50px auto 0;
}

.acc {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: var(--bg-card);
  transition: border-color .3s var(--ease);
}

.acc[open] {
  border-color: var(--line);
}

.acc__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  list-style: none;
  cursor: pointer;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 19px);
}

.acc__q::-webkit-details-marker {
  display: none;
}

.acc__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}

.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  background: var(--accent);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.acc__icon::before {
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
}

.acc__icon::after {
  top: 0;
  left: 10px;
  width: 2px;
  height: 22px;
}

.acc[open] .acc__icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.acc__a {
  max-width: 760px;
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 15.5px;
}

/* =========================================================
   CONTACT CTA
   ========================================================= */

.contact-cta {
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 19, 11, .82), rgba(13, 19, 11, .92));
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  text-align: center;
}

.contact-cta__title {
  margin-bottom: 34px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.1;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form .field__input {
  flex: 1 1 220px;
}

.contact-form .btn {
  flex: none;
}

.contact-form__success {
  flex-basis: 100%;
}

.contact-cta__consent {
  margin-top: 18px;
  color: var(--text-mut);
  font-size: 12.5px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding-top: 70px;
  border-top: 1px solid var(--line);
  background: #0f160d;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) .8fr 1fr .8fr;
  gap: clamp(28px, 4vw, 72px);
  padding-bottom: 50px;
}

.logo--footer {
  margin-bottom: 20px;
}

.footer__legal {
  margin-bottom: 18px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.7;
}

.rta--footer {
  display: inline-flex;
}

.footer__title {
  margin-bottom: 18px;
  color: var(--text);
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.footer__link {
  display: block;
  padding: 6px 0;
  color: var(--text-dim);
  font-size: 14.5px;
  transition: color .2s var(--ease);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__link--big {
  margin-bottom: 4px;
  color: var(--text);
  font-family: "Unbounded", sans-serif;
  font-size: 19px;
}

.socials--footer {
  margin-top: 16px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-mut);
  font-size: 13px;
}


/* =========================================================
   REQUEST MODAL
   ========================================================= */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 7, .8);
  backdrop-filter: blur(6px);
  animation: fade .3s var(--ease);
}

.modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  padding: 36px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  box-shadow: var(--shadow);
  animation: modalIn .4s var(--ease);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-dim);
  font-size: 24px;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.modal__close:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
}

.modal__title {
  margin-bottom: 8px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 26px;
}

.modal__sub {
  margin-bottom: 24px;
  color: var(--text-dim);
  font-size: 14.5px;
}

.lead-form--modal {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

@keyframes fade {
  from {
    opacity: 0;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.97);
  }
}

/* =========================================================
   TOUR DETAILS MODAL
   ========================================================= */

.tour-details-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tour-details-modal.is-open {
  display: flex;
}

.tour-details-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 50% 20%, rgba(179, 247, 111, .14), transparent 60%),
    rgba(8, 12, 7, .84);
  backdrop-filter: blur(8px);
  animation: fade .25s var(--ease);
}

.tour-details-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  max-height: 92vh;
  padding: clamp(26px, 3vw, 42px);
  overflow-y: auto;
  border: 1px solid rgba(179, 247, 111, .18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(28, 40, 23, .98), rgba(16, 23, 14, .98));
  box-shadow: 0 34px 90px -38px rgba(0, 0, 0, .95);
  animation: modalIn .35s var(--ease);
}

.tour-details-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 30px;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.tour-details-modal__close:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--accent);
}

.tour-details-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding-right: 44px;
}

.tour-details-modal__eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tour-details-modal__title {
  color: var(--text);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 4.6vw, 72px);
  line-height: .92;
  letter-spacing: -.055em;
}

.tour-details-modal__meta {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(179, 247, 111, .28);
  border-radius: 999px;
  background: rgba(179, 247, 111, .08);
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.tour-details-modal__lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--text-dim);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.48;
}

.tour-details-modal__content {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 18px;
}

.tour-details-modal__section {
  padding: 22px;
  border: 1px solid rgba(179, 247, 111, .12);
  border-radius: 24px;
  background: rgba(13, 19, 11, .58);
}

.tour-details-modal__section--program {
  background: linear-gradient(180deg, rgba(179, 247, 111, .08), rgba(13, 19, 11, .58));
}

.tour-details-modal__subtitle {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.tour-program,
.tour-details-list {
  display: flex;
  flex-direction: column;
}

.tour-program {
  gap: 14px;
  counter-reset: tourDay;
}

.tour-program__item {
  position: relative;
  padding-left: 42px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.45;
  counter-increment: tourDay;
}

.tour-program__item::before {
  content: counter(tourDay);
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #14210a;
  font-weight: 900;
  font-size: 13px;
}

.tour-details-list {
  gap: 11px;
}

.tour-details-list__item {
  position: relative;
  padding-left: 24px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.4;
}

.tour-details-list__item::before {
  position: absolute;
  top: 1px;
  left: 0;
  font-weight: 900;
}

.tour-details-list--included .tour-details-list__item::before {
  content: "✓";
  color: var(--accent);
}

.tour-details-list--excluded .tour-details-list__item::before {
  content: "—";
  color: rgba(242, 246, 236, .45);
}

.tour-details-modal__note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(179, 247, 111, .14);
  border-radius: 18px;
  background: rgba(179, 247, 111, .08);
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.45;
}

.tour-details-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  text-align: center;
}

.tour-details-modal__actions .btn {
  min-width: 240px;
}

/* =========================================================
   STATES
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.menu-open,
body.modal-lock,
body.tour-details-lock {
  overflow: hidden;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .tour-card {
    grid-template-columns: 1fr;
  }

  .tour-card__desc {
    max-width: none;
  }

  .tour-slider,
  .tour-slider__slide {
    min-height: 360px;
  }
}

@media (max-width: 1080px) {
  .nav,
  .header__actions .rta,
  .header__actions .btn--accent {
    display: none;
  }

  .burger {
    display: flex;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .process__bg-title {
    width: min(1000px, 94vw);
    font-size: clamp(48px, 8.5vw, 104px);
  }

  .process__stage {
    padding-top: clamp(155px, 18vw, 220px);
  }

  .lead-form--travel-card {
    width: 100%;
    max-width: 920px;
    justify-self: center;
  }

  .tour-pill {
    width: 600px;
    height: 124px;
    grid-template-columns: minmax(0, 1fr) 180px;
    column-gap: 16px;
    padding-left: 78px;
  }

  .tour-pill__num {
    left: 16px;
    font-size: 72px;
    transform: translateY(-50%) scaleX(.62);
  }

  .tour-pill__text {
    font-size: 18px;
    line-height: 1.05;
  }

  .tour-pill__photo {
    border-width: 6px;
  }
}

@media (max-width: 980px) {
  .why-card,
  .why-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .why-card:nth-child(even) .why-card__media,
  .why-card:nth-child(even) .why-card__content {
    order: initial;
  }

  .why-card__media img {
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .why-card__content {
    justify-content: flex-start;
    height: auto;
    max-height: none;
  }

  .why-card__text,
  .why-card__accent {
    -webkit-line-clamp: unset;
  }

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

  .tour-details-modal__top {
    flex-direction: column;
    gap: 8px;
  }

  .tour-details-modal__meta {
    align-self: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    padding: 0 clamp(14px, 4vw, 24px);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about__media img {
    height: 300px;
  }

  .quote {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px;
  }

  .quote__photo {
    width: 110px;
    height: 110px;
  }

  .contact-cta {
    background-attachment: scroll;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cookie {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .tour-schedule__head {
    margin-bottom: 36px;
  }

  .tour-card {
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
  }

  .tour-card__name,
  .tour-card__price {
    font-size: 28px;
  }

  .tour-card__dates {
    font-size: 16px;
  }

  .tour-card__badge {
    top: 10px;
    right: 10px;
    min-width: 72px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .tour-slider,
  .tour-slider__slide {
    min-height: 260px;
    border-radius: 20px;
  }

  .tour-slider__arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .tour-slider__arrow--prev {
    left: 10px;
  }

  .tour-slider__arrow--next {
    right: 10px;
  }

  .tour-slider__dots {
    bottom: 12px;
  }

  .process--centered {
    padding-top: 86px;
  }

  .process__bg-title {
    top: 34px;
    width: 94vw;
    font-size: clamp(38px, 12vw, 72px);
    line-height: .96;
    letter-spacing: -.06em;
  }

  .process__stage {
    padding-top: 150px;
  }

  .process__stage .lead-form--travel-card {
    width: 100%;
  }

  .lead-form--travel-card {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .travel-card-form__aside {
    min-height: auto;
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px dashed rgba(179, 247, 111, .54);
  }

  .travel-card-form__stamps {
    height: 58px;
  }

  .travel-stamp {
    transform: scale(.78) rotate(-8deg);
    transform-origin: left top;
  }

  .travel-stamp--road {
    transform: scale(.78) rotate(8deg);
  }

  .travel-card-form__note {
    max-width: none;
  }

  .travel-card-form__main,
  .process__stage .travel-card-form__main {
    padding: 24px 20px;
  }

  .travel-card-form__grid,
  .travel-card-form__consent,
  .travel-card-form__submit,
  .process__stage .travel-card-form__grid,
  .process__stage .travel-card-form__consent,
  .process__stage .travel-card-form__submit {
    width: 100%;
  }

  .travel-card-form__path,
  .travel-card-form__stamp-corner {
    display: none;
  }

  .tour-ticker {
    margin-top: 38px;
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .tour-ticker__track,
  .tour-ticker__group {
    gap: 12px;
  }

  .tour-pill {
    width: 430px;
    height: 104px;
    grid-template-columns: minmax(0, 1fr) 126px;
    column-gap: 10px;
    padding: 9px 9px 9px 58px;
  }

  .tour-pill__num {
    left: 12px;
    font-size: 56px;
    transform: translateY(-50%) scaleX(.6);
  }

  .tour-pill__text {
    font-size: 14.5px;
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .tour-pill__photo {
    border-width: 5px;
  }

  .why-us__title {
    margin-bottom: 28px;
  }

  .why-card {
    gap: 16px;
    padding: 22px 18px 34px;
  }

  .why-card__media img {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .tour-details-modal {
    padding: 10px;
  }

  .tour-details-modal__dialog {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .tour-details-modal__top {
    padding-right: 38px;
  }

  .tour-details-modal__actions {
    flex-direction: column;
  }

  .tour-details-modal__actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .travel-card-form__grid {
    grid-template-columns: 1fr;
  }

  .lead-form--travel-card .field__input {
    min-height: 44px;
  }

  .why-us__title {
    font-size: clamp(38px, 13vw, 68px);
  }
}

@media (max-width: 460px) {
  .hero {
    padding-top: 120px;
  }

  .contact-form .field__input,
  .contact-form .btn {
    flex: 1 1 100%;
  }

  .tour-card__bottom {
    margin-top: 18px;
  }

  .process__stage {
    padding-top: 136px;
  }

  .tour-pill {
    width: 350px;
    height: 94px;
    grid-template-columns: minmax(0, 1fr) 104px;
    padding-left: 48px;
  }

  .tour-pill__num {
    left: 10px;
    font-size: 48px;
  }

  .tour-pill__text {
    font-size: 12.8px;
    line-height: 1.05;
  }

  .tour-pill__photo {
    border-width: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   FINAL UPDATES: navigation anchors, schedule spacing, icons,
   additional travel block, floating scroll button
   ========================================================= */

.why-us {
  padding-bottom: clamp(42px, 5vw, 78px);
}

.tour-schedule {
  padding-top: clamp(42px, 5vw, 78px);
}

.tour-card__name {
  max-width: 100%;
  font-size: clamp(22px, 2vw, 34px);
  line-height: .98;
  letter-spacing: -.035em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.additional-travel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 9vw, 150px) 0 clamp(72px, 7vw, 120px);
  background:
    radial-gradient(80% 70% at 50% 18%, rgba(179, 247, 111, .12), transparent 62%),
    linear-gradient(180deg, #141d12 0%, #101a0e 58%, #141d12 100%);
}

.additional-travel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 19, 11, .86), transparent 28%, transparent 72%, rgba(13, 19, 11, .86)),
    radial-gradient(70% 55% at 50% 72%, rgba(179, 247, 111, .08), transparent 70%);
}

.additional-travel__inner {
  position: relative;
  z-index: 1;
}

.additional-travel__title {
  width: min(1560px, 96vw);
  margin: 0 auto;
  color: var(--accent);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7.4vw, 142px);
  line-height: .86;
  letter-spacing: -.075em;
  text-align: center;
  text-transform: uppercase;
}

.additional-travel__mobile-break {
  display: none;
}

.additional-travel__ticker {
  margin-top: clamp(-30px, -2vw, -12px);
}

.additional-travel__cta {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 46px);
}

.social,
.travel-contact {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(179, 247, 111, .22);
  border-radius: 999px;
  color: var(--accent);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .16), transparent 34%),
    rgba(179, 247, 111, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    0 14px 30px -22px rgba(179, 247, 111, .75);
  transition:
    transform .25s var(--ease),
    background .25s var(--ease),
    color .25s var(--ease),
    border-color .25s var(--ease),
    box-shadow .25s var(--ease);
}

.social svg,
.travel-contact svg {
  display: block;
  width: 20px;
  height: 20px;
}

.social--telegram svg,
.travel-contact--telegram svg {
  transform: translateX(-1.8px);
}

.social:hover,
.travel-contact:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #14210a;
  box-shadow: 0 18px 38px -18px rgba(179, 247, 111, .85);
  transform: translateY(-3px);
}

.travel-card-form__messengers {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 16px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.travel-contact + .travel-contact {
  border-left: 1px solid rgba(179, 247, 111, .22);
}

.footer__bottom {
  justify-content: flex-start;
}

.scroll-top {
  position: fixed;
  right: clamp(16px, 2vw, 30px);
  bottom: calc(26px + env(safe-area-inset-bottom));
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(179, 247, 111, .28);
  border-radius: 999px;
  color: #14210a;
  background: var(--accent);
  box-shadow:
    0 18px 42px -18px rgba(179, 247, 111, .85),
    0 18px 60px -34px rgba(0, 0, 0, .9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(.92);
  transition:
    opacity .25s var(--ease),
    visibility .25s var(--ease),
    transform .25s var(--ease),
    background .25s var(--ease),
    box-shadow .25s var(--ease);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top:hover {
  background: #c4ff84;
  box-shadow:
    0 22px 48px -16px rgba(179, 247, 111, .95),
    0 18px 60px -34px rgba(0, 0, 0, .9);
  transform: translateY(-3px) scale(1);
}

.scroll-top svg {
  display: block;
  width: 25px;
  height: 25px;
}

@media (max-width: 760px) {
  .tour-schedule {
    padding-top: 48px;
  }

  .tour-card__name {
    font-size: 25px;
  }

  .tour-card__price {
    font-size: 28px;
  }

  .additional-travel {
    padding: 78px 0 72px;
  }

  .additional-travel__title {
    width: 94vw;
    font-size: clamp(27px, 8vw, 48px);
    line-height: .95;
    letter-spacing: -.055em;
  }

  .additional-travel__desktop-space {
    display: none;
  }

  .additional-travel__mobile-break {
    display: block;
  }

  .additional-travel__ticker {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .scroll-top {
    right: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 460px) {
  .additional-travel__title {
    font-size: clamp(25px, 7.4vw, 38px);
  }
}

/* =========================================================
   UPDATE: flat tour details modal + animated hero images
   ========================================================= */

.tour-details-modal__backdrop {
  background: rgba(8, 12, 7, .86);
}

.tour-details-modal__dialog {
  background: var(--bg-2);
  border-color: rgba(179, 247, 111, .18);
  box-shadow: 0 28px 76px -42px rgba(0, 0, 0, .96);
}

.tour-details-modal__section,
.tour-details-modal__section--program {
  background: var(--bg-card);
}

.tour-details-modal__note {
  background: rgba(13, 19, 11, .54);
}

.tour-details-modal__actions .btn--accent,
.tour-details-modal__actions .btn--accent:hover {
  box-shadow: none;
}

.hero__strips {
  width: max-content;
  min-width: 100%;
  animation: heroImagesTicker 46s linear infinite;
  will-change: transform;
}

.hero__strip {
  flex: 0 0 clamp(420px, 38vw, 760px);
  width: clamp(420px, 38vw, 760px);
  animation: none;
}

.hero__strip::after {
  border-left-color: rgba(255, 255, 255, .08);
}

@keyframes heroImagesTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .hero__strips {
    display: block;
    width: 100%;
    min-width: 0;
    transform: none;
    animation: none;
  }

  .hero__strip {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: none;
    transition: opacity .8s var(--ease);
  }

  .hero__strip.is-active {
    opacity: 1;
  }

  .hero__strip--clone {
    display: none;
  }

  .hero__strip::after {
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__strips {
    transform: none !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero__strip {
    transition-duration: .001ms !important;
  }
}
