@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@700;800&display=swap");

:root {
  --travel-pine: #022b1b;
  --travel-green: #00d37f;
  --travel-white: #f8f7f3;
  --ink: #153225;
  --muted: #68766f;
  --line: rgba(2, 43, 27, 0.12);
  --surface: #ffffff;
  --soft: #eef2ed;
  --soft-green: #e4ebe6;
  --shadow: 0 18px 45px rgba(2, 43, 27, 0.12);
  --shadow-soft: 0 10px 28px rgba(2, 43, 27, 0.09);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: min(1760px, calc(100% - 64px));
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(248, 247, 243, 0.98) 0%, rgba(245, 247, 244, 1) 42%, rgba(248, 247, 243, 1) 100%),
    var(--travel-white);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.top-anchor {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

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

[hidden] {
  display: none !important;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(0, 211, 127, 0.86);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.spam-check {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

::selection {
  background: rgba(0, 211, 127, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  padding: 16px 0 8px;
  background: linear-gradient(180deg, rgba(248, 247, 243, 0.92), rgba(248, 247, 243, 0.64) 66%, transparent);
  color: #f5fff9;
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  min-height: 70px;
  margin: 0 auto;
  padding: 0 clamp(18px, 2.2vw, 28px);
  display: grid;
  grid-template-columns: minmax(168px, auto) minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(2, 43, 27, 0.93);
  box-shadow: 0 22px 56px rgba(2, 43, 27, 0.2);
  backdrop-filter: blur(18px);
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  justify-content: center;
}

.desktop-nav a {
  min-height: 40px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  border-radius: 999px;
  color: rgba(245, 255, 249, 0.84);
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: var(--travel-green);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-1px);
}

.desktop-nav a:hover::before,
.desktop-nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.nav-icon {
  display: none;
  position: relative;
  width: 17px;
  height: 17px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  opacity: 0.82;
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.nav-pin::before {
  inset: 4px;
  border-radius: 999px;
}

.nav-pin::after {
  left: 7px;
  bottom: -4px;
  width: 2px;
  height: 5px;
  border-radius: 2px;
}

.nav-route {
  border-radius: 5px;
}

.nav-route::before {
  left: 3px;
  top: 7px;
  width: 10px;
  height: 2px;
  transform: rotate(-24deg);
}

.nav-compass::before {
  left: 7px;
  top: 2px;
  width: 2px;
  height: 11px;
  transform: rotate(38deg);
}

.nav-leaf {
  border-radius: 70% 0 70% 70%;
  transform: rotate(-45deg);
}

.nav-star {
  border-radius: 5px;
  transform: rotate(45deg);
}

.nav-star::before {
  left: 7px;
  top: -3px;
  width: 2px;
  height: 21px;
  border-radius: 2px;
  transform: rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  min-height: 44px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: clamp(168px, 14vw, 226px);
  height: auto;
  filter: none;
}

.brand span {
  font-size: 14px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  justify-content: center;
  text-align: center;
  min-width: 142px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
  border-radius: 999px;
  letter-spacing: 0;
  white-space: nowrap;
  will-change: transform, background-color, border-color;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease,
    color 420ms ease;
}

.header-cta:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  justify-content: flex-end;
  gap: 10px;
}

.header-divider {
  display: none;
}

.header-icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(245, 255, 249, 0.9);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.header-icon-button svg {
  width: 24px;
  height: 24px;
}

.header-icon-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon-button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 1180px) and (min-width: 1021px) {
  .header-inner {
    grid-template-columns: minmax(150px, auto) minmax(260px, 1fr) auto;
    gap: 14px;
    padding-inline: 20px;
  }

  .brand img {
    width: 168px;
  }

  .desktop-nav {
    gap: 12px;
    font-size: 13px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta {
    min-width: 130px;
    padding-inline: 15px;
    font-size: 13px;
  }
}

.mobile-nav {
  width: var(--container);
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(1, 31, 20, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.mobile-nav a {
  display: block;
  min-height: 44px;
  padding: 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

main {
  overflow: clip;
}

body.calendar-open main {
  overflow: visible;
}

body.calendar-open .search-section {
  z-index: 80;
}

body.calendar-open .search-panel {
  transform: none;
}

main#top {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

main section[id] {
  scroll-margin-top: 128px;
}

.search-section {
  width: min(860px, calc(100% - 132px));
  position: relative;
  z-index: 2;
  margin: 14px auto 24px;
  padding: 0;
}

.search-panel {
  position: relative;
  width: 100%;
  min-height: 56px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(210px, 0.95fr) minmax(126px, auto);
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(217, 237, 249, 0.88), rgba(241, 250, 244, 0.94)),
    #ffffff;
  padding: 5px;
  opacity: 1;
  box-shadow: 0 18px 42px rgba(2, 43, 27, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(20px);
  animation: none;
  transition: box-shadow 260ms ease, transform 260ms ease, border-color 260ms ease;
}

.search-panel:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 211, 127, 0.34);
  box-shadow: 0 22px 48px rgba(2, 43, 27, 0.15), inset 0 0 0 2px rgba(255, 255, 255, 0.68);
}

.search-field {
  min-width: 0;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(12px, 1.4vw, 16px);
  border: 1px solid rgba(2, 43, 27, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--travel-pine);
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.search-field:focus-within {
  border-color: rgba(0, 211, 127, 0.38);
  background: #ffffff;
  color: var(--travel-pine);
  box-shadow: 0 12px 24px rgba(2, 43, 27, 0.08);
}

.search-field-date {
  justify-content: flex-start;
  gap: clamp(8px, 1.2vw, 14px);
}

.date-display {
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.date-display:focus-visible {
  outline: 2px solid rgba(0, 211, 127, 0.52);
  outline-offset: 4px;
  border-radius: 8px;
}

.search-field-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: #2b5947;
}

.search-field-icon svg,
.search-submit svg {
  width: 100%;
  height: 100%;
}

.search-field-icon path,
.search-submit path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-field-date label {
  min-width: 0;
  flex: 0 1 auto;
}

.search-field-date input {
  width: auto;
  max-width: 160px;
  min-width: 0;
}

.date-divider {
  flex: 0 0 auto;
  color: #7f8a85;
  font-size: 16px;
  font-weight: 800;
}

.newsletter-form label span {
  color: var(--travel-pine);
  font-size: 12px;
  font-weight: 800;
}

.search-field input,
.newsletter-form input {
  min-width: 0;
  width: 100%;
  min-height: 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 800;
}

.search-field input::placeholder {
  color: #65756d;
  opacity: 1;
}

.search-field input:focus,
.newsletter-form input:focus {
  outline: 0;
}

.newsletter-form input {
  font-size: 14px;
  font-weight: 400;
}

.search-submit {
  min-height: 44px;
  padding: 0 clamp(17px, 1.8vw, 22px);
  gap: 10px;
  font-size: clamp(18px, 1.3vw, 20px);
  box-shadow: 0 14px 26px rgba(0, 211, 127, 0.26);
}

.search-submit svg {
  width: 24px;
  height: 24px;
}

.search-popover {
  position: absolute;
  top: calc(100% + 14px);
  z-index: 20;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(2, 43, 27, 0.2);
  color: var(--travel-pine);
  transform-origin: top center;
  animation: popover-in 180ms ease both;
}

.search-popover[hidden] {
  display: none;
}

.destination-popover {
  left: 20px;
  width: min(460px, calc(100vw - 48px));
  padding: 20px 24px 22px;
}

.destination-popover::before,
.calendar-popover::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 18px;
  height: 18px;
  background: inherit;
  border-left: 1px solid rgba(2, 43, 27, 0.08);
  border-top: 1px solid rgba(2, 43, 27, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.destination-popover p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-popover button {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font-weight: 800;
  text-align: left;
}

.destination-popover button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid #405f51;
  border-radius: 50%;
  box-shadow: 6px 6px 0 -4px #405f51;
  transform: rotate(-8deg);
}

.destination-popover button:hover,
.destination-popover button:focus-visible {
  color: #007c54;
}

.calendar-popover {
  left: 50%;
  width: min(520px, calc(100vw - 32px));
  padding: 18px 20px 20px;
  transform: translateX(-50%);
  animation-name: calendar-popover-in;
}

.calendar-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.calendar-inputs label {
  display: grid;
  gap: 3px;
  padding: 12px;
  border-radius: 14px;
  background: #f3f5f3;
}

.calendar-inputs span {
  color: var(--muted);
  font-size: 12px;
}

.calendar-inputs input {
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  font-size: 16px;
  font-weight: 800;
}

.calendar-head {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-head strong {
  color: var(--travel-pine);
  font-size: 20px;
  text-align: center;
}

.calendar-nav {
  width: 40px;
  min-height: 40px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f2;
  color: var(--travel-pine);
  font-size: 26px;
  font-weight: 800;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-weekdays {
  color: var(--muted);
  font-size: 13px;
}

.calendar-day {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--travel-pine);
  font-weight: 700;
}

.calendar-day:hover,
.calendar-day:focus-visible,
.calendar-day.is-selected {
  background: rgba(0, 211, 127, 0.14);
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.12);
}

.calendar-day.is-in-range {
  background: rgba(0, 211, 127, 0.09);
}

.calendar-day.is-muted {
  color: rgba(104, 118, 111, 0.42);
}

.calendar-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
}

.calendar-actions .primary-button,
.calendar-actions .outline-button {
  min-height: 44px;
  padding-inline: 18px;
}

.primary-button,
.outline-button,
.ghost-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    color 260ms ease;
}

.primary-button {
  border: 0;
  padding: 0 20px;
  background: var(--travel-green);
  color: var(--travel-pine);
  box-shadow: 0 10px 22px rgba(0, 211, 127, 0.28);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0, 211, 127, 0.34);
}

.section-reveal.is-visible.primary-button:hover {
  transform: translateY(-3px);
}

.credit-block .primary-button:hover {
  background: #ffffff;
  color: var(--travel-pine);
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(0, 211, 127, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.credit-block .section-reveal.is-visible.primary-button:hover {
  transform: translateY(-6px);
}

.primary-button:active,
.tour-link:active {
  transform: translateY(-1px) scale(0.99);
}

.outline-button,
.ghost-link {
  border: 1px solid rgba(2, 43, 27, 0.28);
  padding: 0 18px;
  background: transparent;
  color: var(--travel-pine);
}

.ghost-link {
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.hero .ghost-link:hover,
.hero .ghost-link:focus-visible {
  border-color: rgba(0, 211, 127, 0.82);
  background: rgba(0, 211, 127, 0.16);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1px rgba(0, 211, 127, 0.18), 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero .ghost-link:active {
  transform: translateY(-1px) scale(0.99);
}

.hero {
  position: relative;
  width: var(--container);
  min-height: clamp(440px, 62vh, 660px);
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 38px);
  background: var(--travel-pine);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-slides,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides {
  z-index: 0;
}

.hero-image {
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.02);
}

.hero-slide {
  opacity: 0;
  transition: opacity 520ms ease, transform 1800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.035);
}

.hero.is-changing-copy .hero-content h1,
.hero.is-changing-copy .hero-content p {
  opacity: 0;
  transform: translateY(8px);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 43, 27, 0.84) 0%, rgba(2, 43, 27, 0.56) 42%, rgba(2, 43, 27, 0.08) 100%),
    linear-gradient(0deg, rgba(2, 43, 27, 0.7) 0%, rgba(2, 43, 27, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 40px));
  min-height: inherit;
  padding: clamp(34px, 7vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #ffffff;
  animation: hero-rise 640ms ease 120ms both;
}

.hero-content h1,
.hero-content p {
  transition: opacity 260ms ease, transform 260ms ease;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--travel-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--travel-pine);
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10.5ch;
  color: #ffffff;
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 34ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-arrow {
  position: absolute;
  top: auto;
  bottom: clamp(34px, 4vw, 52px);
  z-index: 3;
  width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #40564b;
  box-shadow: 0 12px 26px rgba(2, 43, 27, 0.16);
  font-size: 34px;
  font-weight: 900;
  transform: none;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background-color 260ms ease, box-shadow 260ms ease, opacity 180ms ease, visibility 180ms ease;
}

.hero-arrow:hover {
  background: var(--travel-green);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 42px rgba(0, 211, 127, 0.22);
}

.hero-arrow-left {
  left: auto;
  right: clamp(94px, 7vw, 126px);
}

.hero-arrow-right {
  right: clamp(28px, 3vw, 44px);
}

.hero-dots {
  position: absolute;
  top: clamp(18px, 3vw, 32px);
  right: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: none;
}

.hero-dots button {
  width: 30px;
  min-height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transition: width 180ms ease, background-color 180ms ease;
}

.hero-dots button.is-active {
  width: 48px;
  background: var(--travel-green);
}

.stats {
  width: var(--container);
  position: relative;
  margin: 14px auto 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 124, 84, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 211, 127, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 242, 0.94)),
    #ffffff;
  box-shadow: 0 22px 54px rgba(2, 43, 27, 0.07);
}

.stats article {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  min-height: 112px;
  padding: 18px clamp(14px, 1.8vw, 22px);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 248, 246, 0.86)),
    #ffffff;
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.055), 0 10px 24px rgba(2, 43, 27, 0.035);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.stats article + article {
  border-left: 0;
}

.stats article:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 124, 84, 0.08), 0 16px 32px rgba(2, 43, 27, 0.08);
}

.stats article::before {
  content: none;
}

.stats {
  counter-reset: stats-counter;
}

.stat-icon {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #e4f8ee;
  color: #0b6d50;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats strong {
  color: var(--travel-pine);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1;
}

.stats span {
  max-width: 20ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-head .eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(0, 211, 127, 0.12);
  color: #007c54;
}

#tours .section-head .eyebrow {
  min-height: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

.section-head h2,
.credit-block h2,
.difference h2,
.newsletter h2,
.review-score h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.section-note {
  max-width: 58ch;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.tour-context-copy {
  max-width: 46ch;
  margin-top: 12px;
  line-height: 1.45;
}

.section-copy {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(2, 43, 27, 0.16);
  background:
    linear-gradient(180deg, rgba(225, 239, 231, 0.98), rgba(203, 224, 214, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62), 0 16px 34px rgba(2, 43, 27, 0.12);
}

.tabs button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.tabs button.is-active {
  background: var(--travel-pine);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 43, 27, 0.18);
}

.tabs button:hover,
.tabs button:focus-visible {
  background: rgba(255, 255, 255, 0.64);
  color: var(--travel-pine);
  transform: translateY(-1px);
}

.tabs button.is-active:hover,
.tabs button.is-active:focus-visible {
  background: var(--travel-pine);
  color: #ffffff;
}

.rail-shell {
  position: relative;
  margin-inline: calc(-1 * clamp(8px, 1.6vw, 18px));
  padding-inline: clamp(8px, 1.6vw, 18px);
}

.rail-shell::before,
.rail-shell::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 30px;
  z-index: 1;
  width: clamp(28px, 5vw, 70px);
  pointer-events: none;
}

.rail-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--travel-white), rgba(249, 248, 246, 0));
}

.rail-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--travel-white), rgba(249, 248, 246, 0));
}

.destination-shell {
  overflow: hidden;
  border-radius: 26px;
}

.destination-shell::before,
.destination-shell::after {
  content: none;
}

.card-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(300px, 31vw, 378px);
  gap: clamp(18px, 2.1vw, 28px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: clamp(12px, 2vw, 24px);
  padding: 24px clamp(12px, 2vw, 24px) 46px;
  border-radius: 0;
  background: transparent;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.card-rail::-webkit-scrollbar {
  display: none;
}

.carousel-button,
.compact-controls button {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #40564b;
  box-shadow: 0 12px 26px rgba(2, 43, 27, 0.14);
  font-size: 34px;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, visibility 180ms ease;
}

.carousel-button:hover,
.compact-controls button:hover {
  background: var(--travel-green);
  color: var(--travel-pine);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 211, 127, 0.24);
}

.carousel-button {
  position: absolute;
  top: 45%;
  z-index: 2;
  line-height: 1;
}

.carousel-button.is-hidden-control,
.hero-arrow.is-hidden-control {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.carousel-button:disabled,
.hero-arrow:disabled {
  cursor: default;
}

.carousel-button-left {
  left: -14px;
}

.carousel-button-right {
  right: -14px;
}

.tour-card,
.destination-card {
  scroll-snap-align: start;
}

.tour-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(2, 43, 27, 0.06);
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 340ms ease,
    border-color 260ms ease;
  will-change: transform;
}

.tour-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 211, 127, 0.08), transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(0, 124, 84, 0.16);
  transition: opacity 280ms ease;
}

.tour-card:hover {
  transform: translateY(-4px) scale(1.003);
  border-color: rgba(0, 124, 84, 0.18);
  box-shadow: 0 22px 44px rgba(2, 43, 27, 0.105);
}

.tour-card:hover::after {
  opacity: 1;
}

.tour-card.is-selected {
  border-color: rgba(0, 211, 127, 0.68);
  box-shadow: 0 0 0 2px rgba(0, 211, 127, 0.34), 0 24px 50px rgba(2, 43, 27, 0.14);
}

.tour-card-link {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  color: inherit;
}

.tour-card-main {
  min-height: 100%;
  grid-template-rows: auto 1fr;
}

.tour-media {
  position: relative;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
}

.tour-media img,
.destination-card img,
.adventure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-media img {
  transition: transform 420ms ease;
}

.tour-card:hover .tour-media img {
  transform: scale(1.045);
}

.tour-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 43, 27, 0.02), rgba(2, 43, 27, 0.54)),
    linear-gradient(90deg, rgba(2, 43, 27, 0.3), transparent 58%);
  pointer-events: none;
}

.badge {
  position: absolute;
  top: 12px;
  z-index: 1;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--travel-pine);
  box-shadow: 0 8px 18px rgba(2, 43, 27, 0.12);
}

.badge {
  left: 12px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
}

.tour-media-meta {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(249, 248, 246, 0.9);
  color: var(--travel-pine);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px);
}

.tour-media-meta .ui-icon {
  width: 16px;
  height: 16px;
  color: #007c54;
}

.tour-content {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  padding: 18px;
  min-height: 330px;
}

.tour-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-facts span,
.tour-price,
.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-facts span {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tour-facts span:nth-child(1) {
  background: rgba(0, 211, 127, 0.14);
  color: #007c54;
}

.tour-facts span:nth-child(2) {
  background: rgba(2, 43, 27, 0.08);
  color: #405f51;
}

.tour-facts span:nth-child(3) {
  background: rgba(2, 43, 27, 0.045);
  color: #315747;
}

.ui-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.tour-content h3 {
  min-height: 0;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.18;
}

.tour-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.tour-highlights {
  align-self: start;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.tour-highlights li {
  min-width: 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: #4f665d;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.28;
}

.tour-highlights .ui-icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #00885c;
}

.tour-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.tour-price {
  width: 100%;
  min-height: 58px;
  padding: 11px 13px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 43, 27, 0.035), rgba(0, 211, 127, 0.055));
  color: var(--travel-pine);
  font-weight: 800;
  min-width: 0;
  font-size: 14px;
  line-height: 1.1;
  white-space: normal;
}

.tour-price-label {
  display: grid;
  gap: 2px;
}

.tour-price-label small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.tour-price-label strong {
  color: var(--travel-pine);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1;
}

.tour-price-label em {
  color: #6a7b73;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.1;
}

.tour-card-cue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 2px;
  color: #315747;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.tour-card-cue .ui-icon {
  width: 15px;
  height: 15px;
}

.tour-card:hover .tour-card-cue,
.tour-card:focus-within .tour-card-cue {
  color: #007c54;
  transform: translateX(2px);
}

.tour-link {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 14px;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  background: var(--travel-green);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 211, 127, 0.22);
  cursor: pointer;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    box-shadow 320ms ease,
    color 260ms ease;
}

.tour-link .ui-icon {
  width: 15px;
  height: 15px;
  margin-left: auto;
}

.tour-card:hover .tour-link,
.tour-link:hover,
.tour-link:focus-visible {
  background: #2de296;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 211, 127, 0.3);
}

.below-rail-action {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.below-rail-action .outline-button {
  min-height: 54px;
  padding-inline: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(2, 43, 27, 0.08);
}

.below-rail-action .outline-button:hover {
  border-color: rgba(0, 211, 127, 0.5);
  background: var(--travel-green);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 211, 127, 0.22);
}

.all-tours-hero {
  width: var(--container);
  min-height: clamp(320px, 38vw, 520px);
  margin: 0 auto;
  padding: clamp(70px, 11vw, 150px) clamp(24px, 7vw, 110px);
  display: grid;
  align-content: end;
  border-radius: clamp(24px, 3vw, 42px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(2, 43, 27, 0.86), rgba(2, 43, 27, 0.34)),
    url("assets/images/hero-samarkand-1400.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.all-tours-hero h1 {
  max-width: 13ch;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
}

.all-tours-hero p:not(.eyebrow) {
  max-width: 58ch;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--travel-green);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.6vw, 21px);
}

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

.all-tours-grid .tour-card {
  min-height: 100%;
}

.credit-block,
.difference,
.reviews,
.newsletter {
  width: var(--container);
  margin: 42px auto;
  border-radius: var(--radius-lg);
  background: var(--soft-green);
}

.credit-block {
  position: relative;
  width: var(--container);
  margin: 64px auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  justify-items: stretch;
  gap: clamp(26px, 4vw, 44px);
  min-height: auto;
  overflow: hidden;
  align-items: center;
  padding: clamp(42px, 6vw, 76px) clamp(24px, 5vw, 72px);
  border-radius: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(180deg, rgba(4, 72, 55, 0.72), rgba(1, 38, 25, 0.98)),
    url("assets/images/bukhara.jpg") center 42% / cover no-repeat;
  box-shadow: 0 34px 90px rgba(2, 43, 27, 0.2);
  text-align: left;
}

.credit-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 43, 27, 0.58), rgba(2, 43, 27, 0.28) 42%, rgba(2, 43, 27, 0.7)),
    linear-gradient(90deg, rgba(2, 43, 27, 0.6), rgba(2, 43, 27, 0.16), rgba(2, 43, 27, 0.62));
  pointer-events: none;
}

.credit-block::after {
  content: none;
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -180px;
  border: 58px solid rgba(0, 211, 127, 0.08);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.credit-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  display: grid;
  justify-items: start;
  text-align: left;
}

.credit-copy h2 {
  max-width: 13ch;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.02;
}

.credit-photo {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
  height: auto;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  opacity: 1;
  mask-image: none;
}

.credit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credit-copy p:not(.eyebrow),
.difference-intro p,
.newsletter p,
.review-score span {
  color: var(--muted);
}

.credit-copy p:not(.eyebrow) {
  max-width: 56ch;
  margin: 18px 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--travel-green);
  color: rgba(255, 255, 255, 0.76);
}

.credit-note {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 14px;
  margin: 0 0 26px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
}

.credit-note span {
  width: auto;
  height: auto;
  display: inline;
  border-radius: 0;
  background: transparent;
  color: var(--travel-green);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.credit-note small {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.credit-block .primary-button {
  position: relative;
  isolation: isolate;
}

.credit-block .primary-button::after {
  content: "";
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 211, 127, 0.2);
  opacity: 0;
  transform: scale(0.82);
  animation: bonus-pulse 2.9s ease-in-out infinite;
}

.credit-block .eyebrow {
  color: var(--travel-green);
}

.compact-controls {
  display: flex;
  gap: 10px;
}

.destination-rail {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: initial;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
  overflow: visible;
  overflow-y: hidden;
  scroll-snap-type: none;
  padding: 0;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: auto;
}

.destination-shell .carousel-button {
  top: 50%;
}

.destination-card {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  border-radius: 22px;
  background: var(--travel-pine);
  box-shadow: 0 14px 30px rgba(2, 43, 27, 0.08);
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, outline-color 220ms ease;
}

.destination-card::after,
.adventure-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 43, 27, 0.78), rgba(2, 43, 27, 0.1) 64%);
}

.destination-card span,
.destination-card strong,
.adventure-card strong,
.adventure-icon {
  position: absolute;
  z-index: 1;
}

.destination-card span {
  top: 14px;
  left: 14px;
  display: none;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(249, 248, 246, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.destination-card img,
.adventure-card img {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.destination-card:hover,
.adventure-card:hover {
  transform: translateY(-2px) scale(1.003);
  box-shadow: 0 17px 34px rgba(2, 43, 27, 0.1);
}

.destination-card:focus-visible,
.destination-card.is-selected {
  outline: 3px solid rgba(0, 211, 127, 0.82);
  outline-offset: 4px;
}

.destination-card.is-selected::after {
  background:
    linear-gradient(0deg, rgba(0, 211, 127, 0.24), rgba(2, 43, 27, 0.08) 58%),
    linear-gradient(0deg, rgba(2, 43, 27, 0.48), rgba(2, 43, 27, 0.04) 62%);
}

.destination-card:hover img,
.adventure-card:hover img {
  transform: scale(1.025);
}

.destination-card strong {
  left: 18px;
  right: 18px;
  bottom: 16px;
  top: auto;
  max-width: none;
  min-height: 0;
  display: block;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-size: clamp(20px, 1.6vw, 28px);
  font-weight: 900;
  text-align: left;
  white-space: normal;
  transform: none;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.38);
  box-shadow: none;
}

.tour-filter-note {
  width: fit-content;
  max-width: 100%;
  margin: -8px 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0, 211, 127, 0.12);
  color: #006b49;
  font-size: 13px;
  font-weight: 800;
}

.difference {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 6vw, 86px);
  background:
    linear-gradient(180deg, rgba(2, 43, 27, 0.94) 0%, rgba(2, 43, 27, 0.82) 52%, rgba(2, 43, 27, 0.92) 100%),
    linear-gradient(90deg, rgba(2, 43, 27, 0.82), rgba(2, 43, 27, 0.22)),
    url("assets/images/hero-samarkand-1400.jpg") center / cover no-repeat;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 34px 86px rgba(2, 43, 27, 0.18);
}

.difference::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(0, 211, 127, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(2, 43, 27, 0.04), rgba(2, 43, 27, 0.26));
  pointer-events: none;
}

.difference > * {
  position: relative;
  z-index: 1;
}

.difference-intro {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "title"
    "copy"
    "action";
  justify-items: start;
  max-width: min(520px, 100%);
  margin: 0;
  gap: 18px;
  align-items: start;
  padding: clamp(10px, 2vw, 22px) 0 clamp(10px, 2vw, 22px) clamp(18px, 2.8vw, 34px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.difference-intro p {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.difference .eyebrow {
  grid-area: eyebrow;
  margin-bottom: 4px;
  color: var(--travel-green);
}

.difference h2 {
  grid-area: title;
  max-width: 10.5ch;
  color: #ffffff;
  font-size: clamp(34px, 4.6vw, 58px);
}

.difference-intro p:not(.eyebrow) {
  grid-area: copy;
  align-self: center;
  justify-self: start;
  max-width: 32ch;
  margin-bottom: 4px;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 3px solid var(--travel-green);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.38;
  box-shadow: none;
  backdrop-filter: none;
}

.difference-intro .primary-button {
  grid-area: action;
  justify-self: start;
  margin-top: 4px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
}

.difference-grid article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(6, 51, 36, 0.62);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: transform 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.difference-grid article:hover {
  border-color: rgba(0, 211, 127, 0.32);
  background: rgba(8, 64, 45, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px) scale(1.01);
}

.trust-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.98), rgba(224, 248, 236, 0.96) 58%, rgba(188, 234, 214, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 6px rgba(0, 211, 127, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.16);
}

.trust-icon::before {
  content: none;
}

.trust-icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.difference-grid h3 {
  color: #ffffff;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.08;
}

.difference-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.adventure-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  grid-auto-rows: 168px;
  gap: 16px;
}

.adventure-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: var(--travel-pine);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(2, 43, 27, 0.11);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.adventure-card:focus-visible {
  outline: 3px solid var(--travel-green);
  outline-offset: 4px;
}

.adventure-card.is-tall {
  grid-row: span 2;
}

.adventure-card strong {
  left: 14px;
  right: 14px;
  bottom: 13px;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.adventure-icon {
  left: 14px;
  top: 14px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--travel-pine);
  border: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 14px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px) saturate(1.35);
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.adventure-card:hover .adventure-icon {
  background: var(--travel-green);
  color: var(--travel-pine);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 211, 127, 0.28);
}

.adventure-card .ui-icon {
  width: 26px;
  height: 26px;
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 82px) clamp(24px, 6vw, 72px) clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 86% 0%, rgba(0, 211, 127, 0.2), transparent 31%),
    linear-gradient(135deg, rgba(1, 31, 20, 0.98), rgba(4, 74, 57, 0.92)),
    url("assets/images/hero-samarkand-960.jpg") center 38% / cover no-repeat;
  box-shadow: 0 26px 70px rgba(2, 43, 27, 0.2);
  text-align: left;
  color: #ffffff;
}

.reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 43, 27, 0.86), rgba(2, 43, 27, 0.5) 58%, rgba(2, 43, 27, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.reviews::after {
  content: none;
  position: absolute;
  inset: auto -80px -130px auto;
  width: 360px;
  height: 360px;
  border: 72px solid rgba(0, 211, 127, 0.08);
  border-radius: 999px;
  pointer-events: none;
}

.reviews > * {
  position: relative;
  z-index: 1;
}

.reviews,
.reviews * {
  font-family: "Inter", system-ui, sans-serif !important;
}

.reviews h2,
.reviews .rating strong {
  font-family: "Manrope", "Inter", system-ui, sans-serif !important;
}

.review-score {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(270px, 420px);
  align-items: end;
  justify-items: stretch;
  justify-content: stretch;
  gap: clamp(22px, 4vw, 56px);
  margin-bottom: clamp(22px, 3.4vw, 42px);
  text-align: left;
}

.review-score h2 {
  max-width: 16ch;
  margin-inline: 0;
  color: #ffffff;
}

.rating {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-items: start;
  align-items: center;
  align-content: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
  min-height: auto;
  padding: 6px 0 6px 18px;
  border-left: 3px solid var(--travel-green);
  border-radius: 0;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
}

.rating strong {
  color: var(--travel-green);
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.88;
}

.rating span {
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.28;
}

.review-shell {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-areas:
    "prev rail next"
    ". progress .";
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.review-shell .carousel-button {
  position: relative;
  display: grid;
  place-items: center;
  top: auto;
  width: 56px;
  min-width: 56px;
  min-height: 56px;
  color: var(--travel-pine);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(249, 248, 246, 0.92);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transform: none;
  backdrop-filter: blur(12px);
}

.review-shell .carousel-button.is-hidden-control {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.review-shell .carousel-button:hover {
  background: var(--travel-green);
  color: var(--travel-pine);
  transform: translateY(-2px);
}

.review-shell .carousel-button-left {
  grid-area: prev;
  left: auto;
  justify-self: center;
}

.review-shell .carousel-button-right {
  grid-area: next;
  right: auto;
  justify-self: center;
}

.review-progress {
  grid-area: progress;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 0 auto;
}

.review-dot {
  width: 42px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    width 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.review-dot.is-active {
  width: 54px;
  background: var(--travel-green);
  box-shadow: 0 0 18px rgba(0, 211, 127, 0.28);
}

.review-dot:hover,
.review-dot:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  outline: 0;
  transform: translateY(-1px);
}

.review-dot.is-active:hover,
.review-dot.is-active:focus-visible {
  background: var(--travel-green);
}

.trustindex-slot {
  grid-area: rail;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(7, 83, 88, 0.36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 20px 46px rgba(0, 0, 0, 0.16);
  scrollbar-width: none;
}

.trustindex-slot::-webkit-scrollbar {
  display: none;
}

.trustindex-slot .ti-reviews-container {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  gap: clamp(14px, 2vw, 22px) !important;
  padding: 8px 0 28px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.trustindex-slot .ti-reviews-container::-webkit-scrollbar {
  display: none;
}

.trustindex-slot .ti-widget,
.trustindex-slot .ti-widget-container,
.trustindex-slot .ti-review-item,
.trustindex-slot .ti-inner,
.trustindex-slot [class*="review-item"] {
  max-width: 100% !important;
  box-sizing: border-box !important;
  border-color: rgba(2, 43, 27, 0.08) !important;
  color: var(--travel-pine) !important;
}

.trustindex-slot .ti-review-item,
.trustindex-slot [class*="review-item"] {
  border-radius: 28px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.trustindex-slot .ti-inner {
  overflow: hidden !important;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 211, 127, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(244, 251, 247, 0.98), rgba(222, 242, 232, 0.96)) !important;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14) !important;
}

.trustindex-slot .ti-inner > * {
  background-color: transparent !important;
}

.trustindex-slot .ti-widget {
  width: 100% !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.trustindex-slot .ti-widget-container {
  width: 100% !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
}

.trustindex-slot .ti-review-item {
  flex: 0 0 calc((100% - clamp(14px, 2vw, 22px)) / 2) !important;
  width: calc((100% - clamp(14px, 2vw, 22px)) / 2) !important;
  min-width: calc((100% - clamp(14px, 2vw, 22px)) / 2) !important;
  margin: 0 !important;
  scroll-snap-align: start;
}

.trustindex-slot .ti-inner {
  border-radius: 28px !important;
}

.trustindex-slot .ti-controls,
.trustindex-slot .ti-controls-dots,
.trustindex-slot .ti-scrollbar,
.trustindex-slot .ti-scroll-bar,
.trustindex-slot .ti-controls-line,
.trustindex-slot .ti-controls-dots-container,
.trustindex-slot .ti-footer,
.trustindex-slot [class*="scrollbar"],
.trustindex-slot [class*="scroll-bar"],
.trustindex-slot [class*="pagination"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.trustindex-slot.is-managed-carousel .ti-reviews-container,
.trustindex-slot.is-managed-carousel .fallback-reviews {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  padding: 0 !important;
  transform: none !important;
}

.trustindex-slot.is-managed-carousel .ti-review-item,
.trustindex-slot.is-managed-carousel [class*="review-item"],
.trustindex-slot.is-managed-carousel .fallback-review {
  display: none !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
  margin: 0 !important;
}

.trustindex-slot.is-managed-carousel .ti-review-item.is-active-review,
.trustindex-slot.is-managed-carousel [class*="review-item"].is-active-review,
.trustindex-slot.is-managed-carousel .fallback-review.is-active-review {
  display: grid !important;
  animation: review-card-in 260ms ease both;
}

.trustindex-slot.is-managed-carousel .ti-inner {
  min-height: 232px !important;
}

.fallback-reviews[hidden] {
  display: none !important;
}

.trustindex-slot.has-review-fallback .ti-widget,
.trustindex-slot.has-review-fallback .ti-widget-container {
  display: none !important;
}

.fallback-reviews {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, calc((100% - clamp(14px, 2vw, 22px)) / 2));
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 0 28px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.fallback-reviews::-webkit-scrollbar {
  display: none;
}

.fallback-review {
  position: relative;
  min-height: clamp(220px, 21vw, 274px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 0%, rgba(0, 211, 127, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(245, 251, 248, 0.99), rgba(215, 240, 238, 0.98));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
  color: var(--travel-pine);
  scroll-snap-align: start;
}

.fallback-review-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.fallback-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 211, 127, 0.14);
  color: #08714f;
  font-weight: 900;
}

.fallback-review-head strong,
.fallback-review-head span,
.fallback-review p,
.fallback-review a {
  display: block;
}

.fallback-review-head strong {
  color: var(--travel-pine);
  font-size: 19px;
}

.fallback-review-head span {
  margin-top: 3px;
  color: rgba(2, 43, 27, 0.62);
  font-weight: 700;
}

.fallback-stars {
  color: #00a983;
  letter-spacing: 2px;
  line-height: 1;
}

.fallback-review p {
  max-width: 68ch;
  margin: 0;
  color: #0c4637;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.5;
}

.fallback-review a {
  margin-top: auto;
  color: rgba(2, 43, 27, 0.62);
  font-weight: 900;
}

@keyframes review-card-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.answer-guide {
  width: var(--container);
  margin: 42px auto;
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 4vw, 62px);
  align-items: start;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 242, 237, 0.92)),
    #ffffff;
  box-shadow: 0 24px 64px rgba(2, 43, 27, 0.09);
}

.answer-guide-intro {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.answer-guide h2 {
  max-width: 12ch;
  margin-top: 8px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
}

.answer-guide-intro p:not(.eyebrow) {
  max-width: 42ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.22vw, 19px);
  line-height: 1.55;
}

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

.answer-grid article {
  min-height: 208px;
  padding: clamp(20px, 2.5vw, 30px);
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(2, 43, 27, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 243, 0.96));
  box-shadow: 0 14px 34px rgba(2, 43, 27, 0.06);
}

.answer-grid h3 {
  color: var(--travel-pine);
  font-size: clamp(19px, 1.55vw, 25px);
}

.answer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.newsletter {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  text-align: left;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
  min-height: clamp(360px, 30vw, 500px);
  padding: clamp(42px, 6vw, 78px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(2, 43, 27, 0.88) 0%, rgba(2, 43, 27, 0.7) 52%, rgba(2, 43, 27, 0.42) 100%),
    url("assets/images/khiva.jpg") center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 34px 86px rgba(2, 43, 27, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 12%, rgba(0, 211, 127, 0.2), transparent 28%);
  pointer-events: none;
}

.newsletter > * {
  position: relative;
  z-index: 1;
}

.newsletter .eyebrow,
.credit-block .eyebrow,
.difference .eyebrow {
  background: transparent;
  padding: 0;
}

.newsletter h2 {
  max-width: 13ch;
  margin-inline: 0;
  color: #ffffff;
}

.newsletter p {
  max-width: 44ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-copy {
  display: grid;
  justify-items: start;
  align-content: center;
}

.newsletter-panel {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  justify-items: stretch;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(24px, 3vw, 34px);
  background: rgba(2, 43, 27, 0.5);
  box-shadow: 0 24px 60px rgba(2, 43, 27, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  text-align: left;
}

.newsletter-panel .primary-button {
  grid-column: 2;
  justify-self: start;
  min-height: 58px;
  margin-top: -20px;
  padding-inline: 34px;
}

.newsletter-hint {
  display: none;
}

.newsletter-steps {
  width: min(100%, 520px);
  justify-self: stretch;
  display: grid;
  gap: 0;
  position: relative;
  padding: 2px 0;
}

.newsletter-steps::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 26px;
  bottom: 26px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 211, 127, 0.52), rgba(255, 255, 255, 0.18));
}

.newsletter-steps > span {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
  padding: 9px 0 14px;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-weight: 800;
}

.newsletter-steps > span:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-steps > span b {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), inset 0 0 0 5px rgba(255, 255, 255, 0.04);
}

.newsletter-steps .step-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
  text-align: left;
}

.newsletter-steps .step-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.newsletter-steps .step-copy strong {
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.12;
}

.newsletter-steps .step-copy em {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 28px;
  background: rgba(248, 251, 248, 0.9);
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.04), 0 24px 56px rgba(2, 43, 27, 0.18);
  backdrop-filter: blur(16px);
}

.newsletter-form[data-tour-request-form] {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.selected-tour-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(0, 211, 127, 0.12);
  color: var(--travel-pine);
  font-size: 13px;
  font-weight: 800;
}

.newsletter-form label:not(.consent) {
  min-width: 0;
  display: grid;
  gap: 0;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 22px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.newsletter-form[data-tour-request-form] label:not(.consent) {
  grid-column: span 3;
}

.newsletter-form[data-tour-request-form] label:nth-of-type(4) {
  grid-column: 1 / -1;
}

.newsletter-form[data-tour-request-form] label:nth-of-type(5),
.newsletter-form[data-tour-request-form] label:nth-of-type(6),
.newsletter-form[data-tour-request-form] label:nth-of-type(7) {
  grid-column: span 2;
}

.newsletter-form label:not(.consent):focus-within {
  border-color: rgba(0, 211, 127, 0.6);
  box-shadow: 0 0 0 4px rgba(0, 211, 127, 0.12);
  transform: translateY(-1px);
}

.newsletter-form .consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding-left: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.newsletter-form .primary-button {
  min-height: 64px;
  grid-column: 1 / -1;
}

.consent input {
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  margin: 0;
  padding: 0;
  display: block;
  border: 1.5px solid rgba(2, 43, 27, 0.34);
  border-radius: 6px;
  background: #ffffff;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.consent input:focus-visible {
  outline: 2px solid rgba(0, 211, 127, 0.86);
  outline-offset: 2px;
}

.consent input:checked {
  border-color: var(--travel-green);
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3.2 8.3 3 3 6.6-7' fill='none' stroke='%23022B1B' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 14px 14px no-repeat,
    var(--travel-green);
  transform: scale(1.03);
}

.newsletter-form.is-sent {
  animation: form-sent 520ms ease both;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(1, 24, 15, 0.58);
  backdrop-filter: blur(14px);
  animation: modal-fade 220ms ease both;
}

.modal-backdrop[hidden] {
  display: none;
}

.request-modal {
  position: relative;
  isolation: isolate;
  width: min(920px, 100%);
  max-height: min(88dvh, 820px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 6%, rgba(0, 211, 127, 0.16), transparent 34%),
    linear-gradient(135deg, #f9f8f6 0%, #eef6f0 100%);
  background-color: #f9fbf8;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
  animation: modal-rise 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
  scrollbar-width: thin;
  scrollbar-color: rgba(2, 43, 27, 0.28) transparent;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--travel-pine);
  font-size: 0;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(2, 43, 27, 0.1);
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(0, 211, 127, 0.42);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(2, 43, 27, 0.14);
  transform: translateY(-2px);
}

.tour-modal {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(90dvh, 860px);
  overflow: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 211, 127, 0.16), transparent 36%),
    linear-gradient(135deg, #f9f8f6 0%, #eef6f0 100%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  animation: modal-rise 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
  scrollbar-width: thin;
  scrollbar-color: rgba(2, 43, 27, 0.28) transparent;
}

.tour-modal-content {
  display: grid;
  gap: 18px;
}

.tour-modal-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(16px, 3vw, 28px);
  align-items: stretch;
}

.tour-modal-image {
  min-height: 360px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--travel-pine);
  box-shadow: 0 22px 46px rgba(2, 43, 27, 0.14);
}

.tour-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-modal-intro {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.tour-modal-intro h2 {
  max-width: 12ch;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.95;
}

.tour-modal-intro p:not(.eyebrow),
.tour-modal-section p,
.tour-modal-cta > span {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.tour-modal-facts,
.tour-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tour-modal-facts span,
.tour-modal-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 211, 127, 0.11);
  color: #006b49;
  font-size: 13px;
  font-weight: 850;
}

.tour-modal-facts span:nth-child(3),
.tour-modal-facts span:nth-child(4) {
  background: rgba(2, 43, 27, 0.065);
  color: #315747;
}

.tour-modal-facts .ui-icon,
.tour-modal-tags .ui-icon {
  width: 16px;
  height: 16px;
}

.tour-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 18px;
  align-items: start;
}

.tour-modal-section,
.tour-modal-cta {
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(2, 43, 27, 0.07);
}

.tour-modal-section {
  padding: clamp(18px, 2.4vw, 26px);
}

.tour-modal-section h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
}

.tour-modal-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  display: grid;
  gap: 10px;
  padding: 10px;
}

.tour-modal-gallery img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.tour-modal-itinerary {
  grid-column: 1;
}

.tour-modal-itinerary ol,
.tour-modal-cta ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.tour-modal-itinerary li {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(2, 43, 27, 0.045);
}

.tour-modal-itinerary li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--travel-pine);
  color: #ffffff;
  font-weight: 900;
}

.tour-modal-itinerary li p {
  margin: 0;
  color: var(--travel-pine);
  font-weight: 800;
  line-height: 1.35;
}

.tour-modal-cta {
  position: sticky;
  top: 0;
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  gap: 13px;
  padding: clamp(18px, 2.4vw, 26px);
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 211, 127, 0.2), transparent 34%),
    var(--travel-pine);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(2, 43, 27, 0.2);
}

.tour-modal-cta .eyebrow {
  color: var(--travel-green);
}

.tour-modal-cta strong {
  color: #ffffff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
}

.tour-modal-cta > span {
  color: rgba(255, 255, 255, 0.72);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tour-modal-cta li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.tour-modal-cta li .ui-icon {
  width: 19px;
  height: 19px;
  color: var(--travel-green);
}

.tour-modal-cta .primary-button,
.tour-modal-cta .outline-button {
  width: 100%;
  justify-content: center;
}

.tour-modal-cta .outline-button {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.modal-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding-right: 10px;
}

.modal-copy h2 {
  max-width: 10ch;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 0.96;
}

.modal-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.5;
}

.modal-form {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-form.is-active {
  display: grid;
}

.auth-form.is-active {
  grid-template-columns: 1fr;
}

.stepped-form.is-active {
  grid-template-columns: 1fr;
}

.modal-step-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.modal-step-bar span {
  min-height: 46px;
  display: grid;
  grid-template-columns: 28px 1fr;
  place-items: center start;
  gap: 8px;
  padding: 6px 10px 6px 7px;
  border-radius: 18px;
  background: rgba(2, 43, 27, 0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.modal-step-bar b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--travel-pine);
  font-size: 13px;
}

.modal-step-bar small {
  color: currentColor;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.modal-step-bar span.is-active,
.modal-step-bar span.is-complete {
  background: var(--travel-green);
  color: var(--travel-pine);
}

.modal-step-bar span.is-active {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 211, 127, 0.22);
}

.modal-step {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal-step.is-active {
  display: grid;
}

.modal-step .full,
.modal-summary,
.modal-step-actions,
.step-consent,
.modal-status {
  grid-column: 1 / -1;
}

.modal-summary {
  padding: 18px;
  border: 1px solid rgba(0, 211, 127, 0.22);
  border-radius: 20px;
  background: rgba(0, 211, 127, 0.1);
  color: var(--travel-pine);
  font-size: 15px;
  line-height: 1.75;
}

.modal-step-actions {
  display: flex;
  gap: 10px;
}

.modal-step-actions .primary-button,
.modal-step-actions .outline-button {
  flex: 1 1 0;
  min-height: 56px;
}

.stepped-form .step-consent[hidden] {
  display: none;
}

.social-login {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid rgba(2, 43, 27, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: var(--travel-pine);
  font: inherit;
  font-weight: 800;
  padding-inline: 18px;
  box-shadow: 0 10px 24px rgba(2, 43, 27, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.social-login[data-social-login="Google"] {
  background: #ffffff;
  color: #202124;
}

.social-login[data-social-login="Apple"] {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.social-login[data-social-login="Facebook"] {
  background: #1877f2;
  color: #ffffff;
  border-color: #1877f2;
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.22);
}

.social-login:hover,
.social-login:focus-visible {
  border-color: rgba(0, 211, 127, 0.42);
  box-shadow: 0 16px 34px rgba(0, 211, 127, 0.14);
  transform: translateY(-2px);
}

.social-login[data-social-login="Google"]:hover,
.social-login[data-social-login="Google"]:focus-visible {
  background: #f8fbff;
}

.social-login[data-social-login="Apple"]:hover,
.social-login[data-social-login="Apple"]:focus-visible {
  background: #171717;
}

.social-login[data-social-login="Facebook"]:hover,
.social-login[data-social-login="Facebook"]:focus-visible {
  background: #166fe5;
  box-shadow: 0 18px 38px rgba(24, 119, 242, 0.28);
}

.social-login .ui-icon {
  width: 22px;
  height: 22px;
}

.social-login .brand-icon {
  color: currentColor;
}

.auth-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1 1 auto;
  background: rgba(2, 43, 27, 0.12);
}

.modal-form label:not(.consent) {
  min-width: 0;
  min-height: 60px;
  display: grid;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(2, 43, 27, 0.1);
  border-radius: 18px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.modal-form label:not(.consent):focus-within {
  border-color: rgba(0, 211, 127, 0.58);
  box-shadow: 0 0 0 4px rgba(0, 211, 127, 0.12);
  transform: translateY(-1px);
}

.modal-form input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.modal-form input:focus {
  outline: 0;
}

.modal-form .full,
.modal-form .consent,
.modal-form .primary-button,
.modal-status {
  grid-column: 1 / -1;
}

.modal-form .consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.modal-form .consent input {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  border: 1.5px solid rgba(2, 43, 27, 0.34);
  border-radius: 6px;
  background: #ffffff;
}

.modal-form .consent input:checked {
  border-color: var(--travel-green);
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3.2 8.3 3 3 6.6-7' fill='none' stroke='%23022B1B' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 14px 14px no-repeat,
    var(--travel-green);
}

.modal-form .primary-button {
  min-height: 58px;
}

.modal-status {
  min-height: 20px;
  margin: 0;
  color: #007c54;
  font-size: 13px;
  font-weight: 800;
}

.footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.05fr 0.7fr;
  gap: clamp(34px, 6vw, 86px);
  min-height: 500px;
  padding: 96px max(64px, calc((100% - 1760px) / 2)) 78px;
  background:
    var(--travel-pine);
  color: #e6f6ed;
}

.footer::before,
.footer::after {
  content: "";
  position: absolute;
  border: 110px solid rgba(255, 255, 255, 0.035);
  border-radius: 999px;
  pointer-events: none;
}

.footer::before {
  width: 760px;
  height: 760px;
  right: -120px;
  bottom: -310px;
}

.footer::after {
  width: 540px;
  height: 540px;
  right: 180px;
  bottom: -230px;
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer .brand {
  justify-self: start;
}

.footer nav,
.footer > div {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer h3 {
  color: rgba(255, 255, 255, 0.42);
  font-size: 20px;
  font-weight: 700;
}

.footer a,
.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.22;
}

.footer a:not(.brand):not(.socials a) {
  width: fit-content;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.footer a:not(.brand):not(.socials a):hover,
.footer a:not(.brand):not(.socials a):focus-visible {
  color: var(--travel-green);
  transform: translateX(5px);
}

.footer .brand img {
  width: clamp(210px, 18vw, 310px);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(72px, 12vw, 150px);
}

.socials a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--travel-pine);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.socials a svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.social-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: none;
}

.social-whatsapp .wa-bubble {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-whatsapp .wa-phone {
  fill: currentColor;
  stroke: none;
}

.socials a:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
}

.social-instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4);
}

.social-facebook:hover {
  background: linear-gradient(135deg, #1877f2, #0a54b8);
}

.social-telegram:hover {
  background: linear-gradient(135deg, #37aee2, #1e96c8);
}

.social-youtube:hover {
  background: linear-gradient(135deg, #ff0033, #c40022);
}

.social-whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--travel-pine);
  color: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-page main {
  padding-bottom: 72px;
}

.info-hero {
  position: relative;
  width: var(--container);
  min-height: clamp(360px, 38vw, 540px);
  margin: 38px auto 42px;
  display: grid;
  align-content: end;
  gap: 16px;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 44px);
  padding: clamp(34px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(2, 43, 27, 0.95) 0%, rgba(2, 43, 27, 0.75) 48%, rgba(2, 43, 27, 0.35) 100%),
    var(--info-image, url("assets/images/hero-samarkand-1400.jpg")) center / cover no-repeat;
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(2, 43, 27, 0.18);
  animation: fade-in-up 520ms ease both;
}

.info-hero::after {
  content: "";
  position: absolute;
  left: clamp(34px, 6vw, 76px);
  bottom: clamp(22px, 4vw, 42px);
  width: clamp(72px, 8vw, 138px);
  height: 7px;
  border-radius: 999px;
  background: var(--travel-green);
  box-shadow: 0 12px 28px rgba(0, 211, 127, 0.28);
}

.info-hero h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(48px, 7vw, 116px);
  line-height: 0.96;
  letter-spacing: 0;
}

.info-hero p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 26px);
}

.info-content {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
}

.info-copy {
  display: grid;
  gap: 18px;
}

.info-copy h2 {
  font-size: clamp(30px, 4vw, 56px);
}

.info-copy p,
.info-copy li {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
}

.info-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.info-copy li {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 13px 16px 13px 54px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(2, 43, 27, 0.05);
}

.info-copy li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 10 3 3 7-7' fill='none' stroke='%23022B1B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 15px 15px no-repeat,
    var(--travel-green);
  transform: translateY(-50%);
}

.info-aside {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 211, 127, 0.18), transparent 35%),
    var(--travel-pine);
  color: #ffffff;
  box-shadow: 0 22px 54px rgba(2, 43, 27, 0.18);
}

.info-aside::before {
  content: "";
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  background: url("assets/icons/logo-mark-white.svg") center / contain no-repeat;
  opacity: 0.9;
}

.info-aside a {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.info-aside a::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 999px;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4.5 12.5 10 7 15.5' fill='none' stroke='%23022B1B' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
      center / 15px 15px no-repeat,
    var(--travel-green);
}

.info-aside a:hover,
.info-aside a:focus-visible {
  color: #ffffff;
  transform: translateX(4px);
}

.tour-detail-hero {
  margin-bottom: 28px;
}

.tour-detail-back {
  width: var(--container);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 16px;
}

.tour-detail-back a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(2, 43, 27, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--travel-pine);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(2, 43, 27, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tour-detail-back a:hover,
.tour-detail-back a:focus-visible {
  border-color: rgba(0, 211, 127, 0.42);
  outline: 0;
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(2, 43, 27, 0.12);
}

.tour-detail-hero::after {
  content: none;
}

.tour-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.tour-hero-facts span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.tour-hero-facts .ui-icon {
  width: 17px;
  height: 17px;
  color: var(--travel-green);
}

.tour-detail-layout {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.tour-detail-main {
  display: grid;
  gap: 18px;
}

.tour-detail-panel,
.tour-booking-card {
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(2, 43, 27, 0.07);
}

.tour-detail-panel {
  padding: clamp(22px, 3.4vw, 36px);
}

.tour-detail-panel h2 {
  max-width: 13ch;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.02;
}

.tour-detail-lead {
  max-width: 58ch;
  margin: 14px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--travel-green);
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.tour-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tour-detail-tags span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(0, 211, 127, 0.11);
  color: #006b49;
  font-size: 14px;
  font-weight: 850;
}

.tour-detail-tags .ui-icon {
  width: 16px;
  height: 16px;
}

.tour-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 14px;
  margin-top: 20px;
}

.tour-gallery-grid figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(2, 43, 27, 0.06);
  aspect-ratio: 4 / 3;
}

.tour-gallery-grid figure:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 3;
}

.tour-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.tour-route-map {
  position: relative;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.tour-route-map::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 25px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--travel-green), rgba(0, 211, 127, 0.14));
}

.tour-route-map li {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(0, 211, 127, 0.08), rgba(2, 43, 27, 0.025)),
    #ffffff;
}

.route-stop-marker {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 7px solid #e6f7ef;
  border-radius: 999px;
  background: var(--travel-pine);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(2, 43, 27, 0.14);
}

.tour-route-map h3 {
  margin: 0 0 6px;
  color: var(--travel-pine);
  font-size: clamp(18px, 1.55vw, 23px);
}

.tour-route-map p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.vacancies-page main {
  padding-bottom: 86px;
}

.vacancies-hero {
  min-height: clamp(420px, 42vw, 620px);
  background:
    linear-gradient(110deg, rgba(2, 43, 27, 0.98) 0%, rgba(2, 43, 27, 0.77) 46%, rgba(2, 43, 27, 0.26) 100%),
    var(--info-image, url("assets/images/mountain-road.jpg")) center / cover no-repeat;
}

.vacancies-hero h1 {
  max-width: 10ch;
}

.vacancies-form-link {
  width: fit-content;
  min-height: 56px;
  margin-top: 12px;
  padding-inline: 26px;
  font-size: 18px;
}

.vacancies-content {
  align-items: stretch;
}

.vacancies-aside {
  align-self: start;
}

.vacancies-aside strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
}

.vacancies-aside p {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

.tour-route-list,
.tour-detail-list {
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.tour-route-list li {
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(2, 43, 27, 0.035), rgba(0, 211, 127, 0.06)),
    #ffffff;
}

.tour-route-list li > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--travel-pine);
  color: #ffffff;
  font-weight: 900;
}

.tour-route-list p {
  margin: 0;
  color: var(--travel-pine);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 800;
  line-height: 1.35;
}

.tour-itinerary-shell {
  display: block;
  margin-top: 22px;
}

.tour-day-accordion {
  display: grid;
  gap: 10px;
}

.tour-day-accordion-item {
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 211, 127, 0.08), transparent 34%),
    #f5faf6;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.tour-day-accordion-trigger {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--travel-pine);
  padding: 14px 16px;
  cursor: pointer;
  text-align: left;
}

.tour-day-accordion-trigger:hover,
.tour-day-accordion-trigger:focus-visible {
  outline: 0;
  background: rgba(0, 211, 127, 0.08);
}

.tour-day-accordion-trigger.is-active {
  background: rgba(0, 211, 127, 0.1);
}

.tour-day-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--travel-pine);
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.tour-day-heading {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.tour-day-heading small {
  color: #007c54;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-day-heading strong {
  color: var(--travel-pine);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.12;
}

.tour-day-chevron {
  width: 14px;
  height: 14px;
  justify-self: center;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  color: #007c54;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.tour-day-accordion-trigger.is-active .tour-day-chevron {
  transform: rotate(225deg) translateY(-2px);
}

.tour-day-accordion-panel {
  padding: 0 18px 18px 80px;
  animation: popover-in 180ms ease both;
}

.tour-day-accordion-panel p {
  max-width: 68ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.tour-day-picker {
  display: grid;
  gap: 8px;
  align-content: start;
}

.tour-day-picker button {
  width: 100%;
  min-height: 70px;
  display: grid;
  gap: 4px;
  justify-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(2, 43, 27, 0.08);
  border-radius: 18px;
  background: #f5faf6;
  color: var(--travel-pine);
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tour-day-picker button:hover,
.tour-day-picker button:focus-visible {
  border-color: rgba(0, 211, 127, 0.38);
  outline: 0;
  transform: translateY(-1px);
}

.tour-day-picker button.is-active {
  border-color: rgba(0, 211, 127, 0.62);
  background: var(--travel-pine);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(2, 43, 27, 0.18);
}

.tour-day-picker span {
  color: var(--travel-green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-day-picker strong {
  font-size: 15px;
  line-height: 1.2;
}

.tour-day-detail {
  min-height: 100%;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 211, 127, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(246, 252, 248, 0.98), rgba(222, 244, 237, 0.92));
  box-shadow: inset 0 0 0 1px rgba(2, 43, 27, 0.06);
}

.tour-day-kicker {
  color: #007c54;
  font-size: 13px;
  font-weight: 950;
}

.tour-day-detail h3 {
  margin: 10px 0 12px;
  color: var(--travel-pine);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.tour-day-detail p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.55;
}

.tour-day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tour-day-meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 211, 127, 0.12);
  color: #006b49;
  font-size: 13px;
  font-weight: 850;
}

.tour-day-meta .ui-icon {
  width: 15px;
  height: 15px;
}

.tour-conditions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.tour-conditions section {
  min-width: 0;
}

.tour-conditions h3 {
  margin: 0 0 12px;
  color: var(--travel-pine);
  font-size: 21px;
}

.tour-conditions .tour-detail-list {
  grid-template-columns: 1fr;
}

.tour-detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-detail-list li {
  min-width: 0;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 66px;
  padding: 16px;
  border-radius: 18px;
  background: #f5faf6;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.tour-detail-list .ui-icon {
  width: 22px;
  height: 22px;
  color: #007c54;
}

.tour-detail-list.is-excluded li {
  background: rgba(2, 43, 27, 0.035);
}

.tour-detail-list.is-excluded .ui-icon {
  color: rgba(2, 43, 27, 0.46);
}

.tour-booking-card {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 211, 127, 0.18), transparent 34%),
    var(--travel-pine);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(2, 43, 27, 0.2);
}

.tour-booking-card .eyebrow {
  margin: 0;
  color: var(--travel-green);
}

.tour-booking-card strong {
  color: #ffffff;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.tour-booking-card > span,
.tour-booking-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.tour-booking-card > span {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tour-booking-facts {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.tour-booking-facts span {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "icon value";
  column-gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tour-booking-facts .ui-icon {
  grid-area: icon;
  width: 22px;
  height: 22px;
  color: var(--travel-green);
}

.tour-booking-facts small {
  grid-area: label;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
}

.tour-booking-facts strong {
  grid-area: value;
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.25;
}

.tour-booking-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.tour-booking-actions .primary-button,
.tour-booking-actions .ghost-link {
  width: 100%;
  justify-content: center;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.section-reveal.is-visible.tour-card:hover {
  transform: translateY(-4px) scale(1.003);
}

.section-reveal.is-visible.destination-card:hover,
.section-reveal.is-visible.adventure-card:hover {
  transform: translateY(-2px) scale(1.003);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes form-sent {
  0% {
    transform: scale(1);
  }
  38% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popover-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes calendar-popover-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes bonus-pulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.82);
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 0 18px 0 22px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .brand {
    justify-self: start;
  }

  .menu-button {
    display: block;
  }

  .search-section {
    width: min(960px, calc(100% - 56px));
  }

  .search-panel {
    min-height: 60px;
    grid-template-columns: minmax(170px, 0.68fr) minmax(320px, 1fr) minmax(132px, auto);
    border-width: 1px;
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
  }

  .search-field {
    min-height: 50px;
    gap: 10px;
    padding: 0 12px;
  }

  .search-field-date {
    border-top: 0;
    border-left: 1px solid rgba(2, 43, 27, 0.08);
  }

  .search-field input {
    font-size: 16px;
  }

  .search-submit {
    min-height: 50px;
    margin-top: 0;
    padding: 0 18px;
    gap: 9px;
    font-size: 18px;
  }

  .search-field-icon,
  .search-submit svg {
    width: 24px;
    height: 24px;
  }

  .stats,
  .difference,
  .footer {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    gap: 0;
  }

  .stats article:nth-child(odd) {
    border-left: 0;
  }

  .stats article:nth-child(n + 3) {
    border-top: 0;
  }

  .newsletter,
  .difference {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .newsletter-form .primary-button {
    grid-column: 1 / -1;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-actions {
    width: 100%;
    justify-content: space-between;
  }

  .adventure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .all-tours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-detail-layout {
    width: min(760px, calc(100% - 40px));
    grid-template-columns: 1fr;
  }

  .tour-booking-card {
    position: relative;
    top: auto;
  }

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

  .tour-gallery-grid figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .tour-itinerary-shell,
  .tour-conditions {
    grid-template-columns: 1fr;
  }

  .credit-block {
    grid-template-columns: minmax(0, 1fr);
    padding: 76px max(28px, calc((100% - 760px) / 2));
  }

  .credit-block::after {
    inset: auto -110px -170px auto;
  }

  .credit-copy {
    padding: 0;
  }

  .credit-photo {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 720px;
    justify-self: start;
    height: auto;
    aspect-ratio: 16 / 8;
    opacity: 1;
    mask-image: none;
  }

  .socials {
    margin-top: 64px;
  }

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

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

@media (max-width: 820px) {
  .search-section {
    width: min(760px, calc(100% - 32px));
    margin: 12px auto 22px;
  }

  .search-panel {
    min-height: 56px;
    grid-template-columns: minmax(132px, 0.76fr) minmax(210px, 1fr) minmax(64px, auto);
    gap: 5px;
    padding: 5px;
  }

  .search-field {
    min-height: 46px;
    gap: 8px;
    padding: 0 10px;
  }

  .search-field-date {
    justify-content: flex-start;
  }

  .search-field-date input {
    max-width: 108px;
  }

  .date-divider {
    font-size: 14px;
  }

  .search-submit {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0;
    gap: 0;
  }

  .search-submit svg {
    width: 23px;
    height: 23px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 58px 28px;
  }

  .footer .brand img {
    width: 230px;
  }

  .socials {
    margin-top: 22px;
  }

  .footer nav,
  .footer > div {
    gap: 12px;
  }

  .footer a,
  .footer p {
    font-size: 18px;
  }

  .newsletter-panel {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: start;
  }

  .newsletter-panel .primary-button {
    grid-column: 1;
    margin-top: 0;
  }

  .newsletter-copy {
    display: grid;
    justify-items: start;
  }

  .newsletter h2,
  .newsletter p {
    margin-inline: 0;
  }

  .newsletter-steps {
    width: 100%;
    justify-self: stretch;
  }

  .review-score {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .review-score h2 {
    margin-inline: 0;
  }

  .rating {
    width: min(100%, 420px);
    min-width: 0;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .search-section {
    width: var(--container);
    margin-bottom: 18px;
    padding-top: 0;
  }

  .search-panel {
    min-height: 52px;
    grid-template-columns: minmax(112px, 0.7fr) minmax(176px, 1fr) minmax(54px, auto);
    gap: 5px;
    border-width: 1px;
    border-radius: 999px;
    padding: 5px;
  }

  .search-field {
    min-height: 44px;
    gap: 8px;
    padding: 0 9px;
  }

  .search-field-icon {
    width: 20px;
    height: 20px;
  }

  .search-field-date {
    flex-wrap: nowrap;
    gap: 7px;
    padding-block: 0;
  }

  .search-field-date label {
    flex: 0 0 auto;
  }

  .search-field-date input {
    min-width: 0;
    max-width: 88px;
  }

  .date-divider {
    display: inline;
    font-size: 16px;
  }

  .search-field input {
    font-size: 14px;
  }

  .search-submit {
    width: auto;
    min-height: 44px;
    margin: 0;
    padding: 0 13px;
    font-size: 0;
    gap: 0;
  }

  .search-submit svg {
    width: 22px;
    height: 22px;
  }

  body.calendar-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(2, 43, 27, 0.16);
    pointer-events: none;
  }

  .search-panel,
  .search-panel:focus-within {
    transform: none;
    backdrop-filter: none;
  }

  .calendar-popover {
    position: fixed;
    top: clamp(162px, 29svh, 188px);
    right: max(12px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    z-index: 90;
    box-sizing: border-box;
    width: auto;
    max-width: none;
    max-height: none;
    overflow-y: auto;
    padding: 10px 10px 11px;
    border-radius: 22px;
    transform: none;
    animation-name: popover-in;
    overscroll-behavior: contain;
  }

  .calendar-popover::before {
    display: none;
  }

  .calendar-inputs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 6px;
  }

  .calendar-inputs label {
    min-width: 0;
    gap: 2px;
    padding: 7px 8px;
    border-radius: 13px;
  }

  .calendar-inputs span {
    font-size: 10px;
    line-height: 1.15;
  }

  .calendar-inputs input {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
  }

  .calendar-head {
    grid-template-columns: 32px 1fr 32px;
    margin-bottom: 4px;
  }

  .calendar-head strong {
    font-size: 18px;
  }

  .calendar-nav {
    width: 30px;
    min-height: 30px;
    font-size: 19px;
  }

  .calendar-weekdays {
    font-size: 11px;
  }

  .calendar-grid {
    gap: 2px;
  }

  .calendar-day {
    min-height: 27px;
    border-radius: 9px;
    font-size: 12px;
  }

  .calendar-actions {
    gap: 8px;
    position: static;
    margin: 8px 0 0;
    padding: 0;
    background: transparent;
  }

  .calendar-actions .primary-button,
  .calendar-actions .outline-button {
    flex: 1;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 430px;
    margin-bottom: 18px;
    border-radius: 24px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(2, 43, 27, 0.92) 0%, rgba(2, 43, 27, 0.42) 68%, rgba(2, 43, 27, 0.18) 100%),
      linear-gradient(90deg, rgba(2, 43, 27, 0.66), rgba(2, 43, 27, 0.08));
  }

  .hero-content {
    width: 100%;
    padding: 26px 22px;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(34px, 12vw, 46px);
  }

  .hero-arrow {
    top: auto;
    bottom: 18px;
    width: 38px;
    min-height: 38px;
    font-size: 22px;
    transform: none;
    background: rgba(249, 248, 246, 0.92);
  }

  .hero-arrow:hover {
    transform: translateY(-2px) scale(1.04);
  }

  .hero-arrow-left {
    left: auto;
    right: 70px;
  }

  .hero-arrow-right {
    right: 18px;
  }

  .hero-dots {
    top: 18px;
    right: 18px;
    left: auto;
    bottom: auto;
    gap: 7px;
    transform: none;
  }

  .hero-dots button {
    width: 20px;
    min-height: 7px;
    background: rgba(255, 255, 255, 0.58);
  }

  .hero-dots button.is-active {
    width: 34px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-link {
    flex: 1 1 170px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .stats article {
    min-height: 138px;
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 16px;
  }

  .stat-icon {
    grid-row: auto;
    width: 46px;
    height: 46px;
  }

  .section {
    padding: 24px 0;
  }

  .section-head h2,
  .credit-block h2,
  .difference h2,
  .newsletter h2,
  .review-score h2 {
    font-size: 28px;
  }

  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
    overflow-x: auto;
  }

  .tabs button {
    flex: 1 0 auto;
  }

  .card-rail {
    grid-auto-columns: minmax(250px, 78vw);
    gap: 16px;
    padding: 18px 14px 38px;
    scroll-padding-inline: 14px;
  }

  .tour-content {
    min-height: 304px;
  }

  .tour-bottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .tour-card-cue {
    justify-self: start;
  }

  .tour-detail-layout {
    width: var(--container);
    gap: 16px;
  }

  .tour-detail-panel,
  .tour-booking-card {
    border-radius: 22px;
  }

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

  .tour-hero-facts span {
    min-height: 36px;
    font-size: 13px;
  }

  .carousel-button {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .credit-block,
  .difference,
  .reviews,
  .newsletter {
    margin: 28px auto;
    border-radius: 24px;
  }

  .credit-block,
  .difference,
  .newsletter,
  .footer {
    grid-template-columns: 1fr;
  }

  .credit-block {
    width: var(--container);
    margin: 38px auto;
    padding: 24px;
    border-radius: 28px;
    gap: 22px;
    min-height: auto;
    background:
      radial-gradient(circle at 88% 8%, rgba(0, 211, 127, 0.18), transparent 34%),
      linear-gradient(135deg, #022b1b 0%, #033b27 52%, #011f14 100%);
  }

  .credit-block::after {
    width: 250px;
    height: 250px;
    inset: auto -110px -120px auto;
    border-width: 46px;
  }

  .credit-copy {
    padding: 0;
    justify-items: start;
    text-align: left;
  }

  .credit-photo {
    width: 100%;
    aspect-ratio: 1.25 / 0.82;
    border-radius: 22px;
  }

  .info-content {
    width: var(--container);
    grid-template-columns: 1fr;
  }

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

  .difference-grid article {
    grid-template-columns: 68px 1fr;
    min-height: auto;
    padding: 18px;
  }

  .difference-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "copy"
      "action";
    padding-left: 0;
    border-left: 0;
  }

  .difference-intro p:not(.eyebrow) {
    align-self: start;
    justify-self: start;
    max-width: none;
    margin-bottom: 0;
    padding: 0 0 0 16px;
    border: 0;
    border-left: 3px solid var(--travel-green);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .difference-grid .trust-icon {
    grid-row: span 2;
  }

  .difference-grid p {
    grid-column: 2;
  }

  .trust-icon {
    width: 62px;
    height: 62px;
  }

  .trust-icon img {
    width: 48px;
    height: 48px;
  }

  .adventure-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 132px;
    gap: 10px;
  }

  .adventure-card.is-tall {
    grid-row: span 1;
  }

  .reviews {
    scroll-margin-top: calc(var(--header-height) + 24px);
    padding: clamp(34px, 10vw, 48px) 22px 30px;
    border-radius: 34px;
    border-color: rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at 18% 0%, rgba(0, 211, 127, 0.16), transparent 34%),
      linear-gradient(180deg, rgba(1, 37, 25, 0.98), rgba(3, 73, 58, 0.94)),
      url("assets/images/hero-samarkand-960.jpg") center / cover no-repeat;
  }

  .review-score {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
  }

  .reviews .eyebrow {
    margin-bottom: 8px;
  }

  .review-score h2 {
    max-width: 11ch;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1;
  }

  .review-shell {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    grid-template-areas:
      "rail rail rail"
      "prev progress next";
    align-items: center;
    gap: 14px 12px;
    margin-top: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .review-shell .carousel-button {
    top: auto;
    bottom: auto;
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(249, 248, 246, 0.94);
    color: var(--travel-pine);
    font-size: 26px;
    transform: none;
  }

  .review-shell .carousel-button:hover {
    transform: translateY(-2px);
  }

  .review-shell .carousel-button-left {
    left: auto;
    right: auto;
  }

  .review-shell .carousel-button-right {
    right: auto;
  }

  .review-progress {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 0;
  }

  .review-dot {
    width: 34px;
    height: 5px;
  }

  .review-dot.is-active {
    width: 46px;
  }

  .trustindex-slot {
    min-height: auto;
    padding: 14px;
    overflow: hidden;
    border-radius: 28px;
  }

  .trustindex-slot .ti-reviews-container {
    align-items: stretch !important;
    padding: 0 !important;
    gap: 0 !important;
  }

  .trustindex-slot .ti-review-item {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    margin: 0 !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  .trustindex-slot .ti-inner {
    min-height: 0 !important;
    max-width: 100% !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    background:
      radial-gradient(circle at 92% 0%, rgba(0, 211, 127, 0.16), transparent 34%),
      linear-gradient(145deg, rgba(244, 251, 247, 0.98), rgba(222, 242, 232, 0.96)) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18) !important;
  }

  .fallback-reviews {
    grid-auto-columns: 100%;
    gap: 0;
    padding: 0;
  }

  .fallback-review {
    min-height: 0;
    gap: 13px;
    padding: 22px 20px;
    border-radius: 28px;
    justify-content: start;
  }

  .fallback-avatar {
    width: 46px;
    height: 46px;
  }

  .rating {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    min-width: 0;
    min-height: auto;
    width: 100%;
    max-width: 320px;
    justify-items: start;
    text-align: left;
    padding: 4px 0 4px 12px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .rating strong {
    font-size: clamp(48px, 14vw, 58px);
  }

  .rating span {
    max-width: 13ch;
    font-size: clamp(16px, 4.6vw, 18px);
    line-height: 1.22;
  }

  .tour-detail-layout {
    width: min(100%, calc(100% - 24px));
    gap: 14px;
  }

  .tour-detail-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .tour-detail-panel h2 {
    max-width: 100%;
    font-size: clamp(30px, 11vw, 42px);
  }

  .tour-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tour-gallery-grid figure,
  .tour-gallery-grid figure:first-child {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .tour-route-map::before {
    left: 22px;
  }

  .tour-route-map li {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .route-stop-marker {
    width: 46px;
    height: 46px;
    border-width: 6px;
  }

  .tour-day-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-day-picker button {
    min-height: 64px;
    padding: 12px;
  }

  .tour-day-picker strong {
    font-size: 14px;
  }

  .tour-day-detail {
    padding: 20px;
    border-radius: 20px;
  }

  .tour-day-accordion {
    gap: 9px;
  }

  .tour-day-accordion-trigger {
    min-height: 68px;
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    gap: 12px;
    padding: 12px;
  }

  .tour-day-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .tour-day-heading strong {
    font-size: 18px;
  }

  .tour-day-accordion-panel {
    padding: 0 14px 16px;
  }

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

  .tour-booking-card {
    padding: 22px;
    border-radius: 24px;
  }

  .answer-guide {
    width: min(100%, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 18px;
    border-radius: 28px;
  }

  .answer-guide-intro {
    position: static;
  }

  .answer-guide h2 {
    max-width: 100%;
    font-size: clamp(30px, 10vw, 42px);
  }

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

  .answer-grid article {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .newsletter {
    min-height: auto;
    padding: 20px;
    background:
      linear-gradient(180deg, rgba(2, 43, 27, 0.9) 0%, rgba(2, 43, 27, 0.7) 100%),
      url("assets/images/khiva.jpg") center / cover no-repeat;
  }

  .newsletter-panel {
    padding: 24px 22px;
    border-radius: 24px;
  }

  .newsletter-steps > span {
    padding: 10px 0 13px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form[data-tour-request-form] {
    grid-template-columns: 1fr;
  }

  .newsletter-form[data-tour-request-form] label:not(.consent),
  .newsletter-form[data-tour-request-form] label:nth-of-type(4),
  .newsletter-form[data-tour-request-form] label:nth-of-type(5),
  .newsletter-form[data-tour-request-form] label:nth-of-type(6),
  .newsletter-form[data-tour-request-form] label:nth-of-type(7) {
    grid-column: 1 / -1;
  }

  .request-modal {
    grid-template-columns: 1fr;
    width: min(100%, calc(100vw - 22px));
    max-height: calc(100dvh - 22px);
    gap: 16px;
    padding: 20px;
    border-radius: 26px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 46px;
    min-height: 46px;
    font-size: 0;
  }

  .modal-copy {
    gap: 8px;
    padding-right: 56px;
  }

  .modal-copy h2 {
    max-width: 9ch;
    font-size: clamp(34px, 12vw, 46px);
  }

  .modal-copy p:not(.eyebrow) {
    max-width: 32ch;
    font-size: 16px;
    line-height: 1.45;
  }

  .modal-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .modal-step-bar {
    gap: 6px;
  }

  .modal-step-bar span {
    min-height: 50px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4px;
    padding: 7px 6px;
    border-radius: 18px;
    text-align: center;
  }

  .modal-step-bar b {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .modal-step-bar small {
    font-size: 11px;
  }

  .modal-form label:not(.consent) {
    min-height: 54px;
    padding-inline: 14px;
    border-radius: 18px;
  }

  .modal-step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .modal-step-actions {
    flex-direction: column;
  }

  .footer {
    min-height: auto;
    padding: 54px 20px;
  }

  .footer h3 {
    font-size: 16px;
  }

  .footer a,
  .footer p {
    font-size: 16px;
  }

  .socials {
    margin-top: 32px;
  }

  .socials a {
    width: 46px;
    height: 46px;
  }

  .destination-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 70vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: inline mandatory;
    padding: 8px 2px 18px;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: auto;
  }

  .destination-card {
    aspect-ratio: 1.28 / 1;
  }

  .all-tours-hero {
    min-height: 360px;
    align-content: end;
    padding: 36px 28px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(2, 43, 27, 0.22), rgba(2, 43, 27, 0.9)),
      linear-gradient(90deg, rgba(2, 43, 27, 0.82), rgba(2, 43, 27, 0.16)),
      url("assets/images/hero-samarkand-1400.jpg") center / cover no-repeat;
  }

  .all-tours-hero h1 {
    max-width: 9ch;
    font-size: clamp(38px, 13vw, 54px);
  }

  .all-tours-hero p:not(.eyebrow) {
    max-width: 30ch;
    font-size: 17px;
    line-height: 1.45;
  }

  .all-tours-grid {
    grid-template-columns: 1fr;
  }

  .tour-modal-backdrop {
    padding: 12px;
  }

  .tour-modal {
    max-height: 92dvh;
    padding: 14px;
    border-radius: 26px;
  }

  .tour-modal .modal-close {
    top: 14px;
    right: 14px;
  }

  .tour-modal-hero,
  .tour-modal-grid {
    grid-template-columns: 1fr;
  }

  .tour-modal-image {
    min-height: 240px;
    border-radius: 22px;
  }

  .tour-modal-intro {
    padding: 22px;
    border-radius: 22px;
  }

  .tour-modal-intro h2 {
    max-width: 9ch;
    font-size: clamp(32px, 10vw, 44px);
  }

  .tour-modal-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tour-modal-itinerary,
  .tour-modal-cta {
    grid-column: auto;
  }

  .tour-modal-cta {
    position: static;
    grid-row: auto;
  }
}

@media (max-width: 420px) {
  .search-panel {
    grid-template-columns: minmax(0, 1fr) minmax(124px, auto);
    border-radius: 28px;
    padding: 8px;
    gap: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 244, 0.96)),
      #ffffff;
    box-shadow: 0 18px 42px rgba(2, 43, 27, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  }

  .search-field-destination {
    grid-column: 1 / -1;
  }

  .search-field {
    min-height: 48px;
    padding: 0 14px;
    background: rgba(249, 248, 246, 0.82);
  }

  .search-field-date {
    grid-column: 1;
    border-top: 0;
    border-left: 0;
    justify-content: flex-start;
  }

  .search-submit {
    grid-column: 2;
    width: 100%;
    min-height: 48px;
    margin-top: 0;
    padding-inline: 14px;
    font-size: 17px;
    gap: 7px;
  }

  .search-submit svg {
    width: 21px;
    height: 21px;
  }

  .brand span {
    font-size: 12px;
  }

  .brand img {
    width: 172px;
  }

  .tour-bottom {
    align-items: stretch;
  }

  .tour-content {
    min-height: 294px;
    padding: 16px;
  }

  .tour-content p {
    -webkit-line-clamp: 3;
  }

  .tour-link {
    width: 100%;
  }

  .destination-rail {
    grid-auto-columns: minmax(218px, 68vw);
  }
}

.crm-site-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.crm-site-chat__launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--travel-green);
  color: var(--travel-pine);
  box-shadow: 0 16px 38px rgba(0, 211, 127, 0.28);
  cursor: pointer;
  font-weight: 800;
}

.crm-site-chat__launcher-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(2, 43, 27, 0.1);
}

.crm-site-chat__panel {
  display: none;
  width: min(390px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid rgba(2, 43, 27, 0.12);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(2, 43, 27, 0.22);
}

.crm-site-chat.is-open .crm-site-chat__launcher {
  display: none;
}

.crm-site-chat.is-open .crm-site-chat__panel {
  display: block;
}

.crm-site-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  background: var(--travel-pine);
  color: #ffffff;
}

.crm-site-chat__header strong,
.crm-site-chat__header span {
  display: block;
}

.crm-site-chat__header strong {
  font-size: 15px;
  line-height: 1.2;
}

.crm-site-chat__header span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.crm-site-chat__header button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
}

.crm-site-chat__messages {
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 310px;
  overflow-y: auto;
  padding: 14px;
  background: #f5fbf7;
}

.crm-site-chat__message {
  max-width: 88%;
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 14px;
  line-height: 1.36;
}

.crm-site-chat__message--inbound {
  align-self: flex-end;
  background: var(--travel-green);
  color: var(--travel-pine);
}

.crm-site-chat__message--outbound {
  align-self: flex-start;
  border: 1px solid rgba(2, 43, 27, 0.1);
  background: #ffffff;
  color: var(--travel-pine);
}

.crm-site-chat__message time {
  display: block;
  margin-top: 4px;
  opacity: 0.62;
  font-size: 11px;
}

.crm-site-chat__welcome {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.crm-site-chat__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.crm-site-chat__quick button {
  border: 1px solid rgba(2, 43, 27, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  background: #ffffff;
  color: var(--travel-pine);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

.crm-site-chat__quick button:hover {
  border-color: var(--travel-green);
  background: #f0fff8;
}

.crm-site-chat__form {
  padding: 12px;
  border-top: 1px solid rgba(2, 43, 27, 0.1);
  background: #ffffff;
}

.crm-site-chat__visitor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.crm-site-chat__visitor input:first-child {
  grid-column: 1 / -1;
}

.crm-site-chat.has-contact .crm-site-chat__visitor,
.crm-site-chat.has-contact .crm-site-chat__required {
  display: none;
}

.crm-site-chat input,
.crm-site-chat textarea {
  width: 100%;
  border: 1px solid rgba(2, 43, 27, 0.14);
  border-radius: 10px;
  padding: 9px 10px;
  color: var(--travel-pine);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.crm-site-chat textarea {
  min-height: 70px;
  resize: vertical;
}

.crm-site-chat input:focus,
.crm-site-chat textarea:focus {
  border-color: var(--travel-green);
  box-shadow: 0 0 0 3px rgba(0, 211, 127, 0.16);
}

.crm-site-chat__required {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.crm-site-chat__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 9px;
}

.crm-site-chat__footer span {
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.crm-site-chat__footer span[data-tone="error"] {
  color: #b42318;
}

.crm-site-chat__footer span[data-tone="success"] {
  color: #067647;
}

.crm-site-chat__footer button {
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  padding: 9px 16px;
  background: var(--travel-pine);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.crm-site-chat__footer button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

@media (max-width: 767px) {
  .crm-site-chat {
    right: 12px;
    bottom: 12px;
  }

  .crm-site-chat__launcher {
    width: 56px;
    min-width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
    transition: opacity 180ms ease, transform 180ms ease, box-shadow 220ms ease;
  }

  body:not(.is-chat-launcher-ready) .crm-site-chat__launcher {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  .crm-site-chat__launcher > span:not(.crm-site-chat__launcher-icon) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .crm-site-chat__panel {
    width: calc(100vw - 24px);
  }

  .crm-site-chat__messages {
    height: 290px;
  }
}

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

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
