:root {
  --yellow: #ffbd00;
  --yellow-strong: #f5aa00;
  --blue: #075ff2;
  --blue-dark: #044cc9;
  --ink: #182030;
  --muted: #6a7280;
  --line: #e7eaf0;
  --soft: #f6f8fb;
  --placeholder: #d9dde1;
  --placeholder-dark: #a9b0b6;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(19, 33, 56, 0.14);
  --radius: 8px;
  --shell: min(1638px, calc(100vw - 46px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

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

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(231, 234, 240, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.22s ease, background 0.22s ease;
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  height: 30px;
  margin: 0 auto;
  color: #616a78;
  font-size: 12px;
}

.top-strip p {
  margin: 0;
}

.top-strip strong {
  color: var(--yellow-strong);
  font-weight: 700;
}

.top-strip div {
  display: flex;
  gap: 22px;
}

.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: var(--shell);
  min-height: 86px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 32px;
  color: #151515;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #667081;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--ink);
}

.site-nav a,
.header-actions a,
.tour-card,
.rhythm-card,
.review-card,
.detail-card {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.site-nav small {
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  margin-left: 4px;
  padding: 0 5px;
  color: #8e8e8e;
  background: #ededed;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 800;
  vertical-align: middle;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: #121212;
  background: var(--yellow);
  border-radius: 999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}

.header-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #434b57;
}

.header-location span {
  width: 18px;
  height: 18px;
  border: 5px solid var(--yellow);
  border-radius: 50%;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  color: #0a521d;
  background: #e8f8ee;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  width: var(--shell);
  min-height: clamp(360px, 38.8vw, 652px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 45, 51, 0.66) 0%, rgba(91, 98, 103, 0.36) 48%, rgba(188, 193, 196, 0.3) 100%),
    linear-gradient(180deg, rgba(73, 80, 85, 0.18) 0%, rgba(73, 80, 85, 0.06) 70%, rgba(73, 80, 85, 0.24) 100%),
    var(--placeholder);
}

.hero__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: clamp(360px, 38.8vw, 652px);
  padding: clamp(42px, 4.2vw, 72px) clamp(30px, 5.3vw, 88px) clamp(36px, 4.8vw, 76px);
}

.hero__copy {
  max-width: 590px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--yellow-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 370px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 3.4vw, 57px);
  line-height: 1;
  font-weight: 800;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero__chips span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero__note {
  display: grid;
  gap: 18px;
  max-width: 330px;
  margin-top: 40px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.1;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--yellow {
  color: #1f2600;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 189, 0, 0.28);
}

.btn--dark {
  color: var(--white);
  background: #151b25;
}

.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(28px, 5.3vw, 90px);
  padding: 50px 0 74px;
}

.features article {
  min-width: 0;
}

.feature-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  background:
    linear-gradient(var(--yellow), var(--yellow)) center / 13px 3px no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) center / 3px 13px no-repeat;
  border: 2px solid var(--yellow);
  border-radius: 8px;
}

.features h2 {
  margin: 0 0 8px;
  color: var(--yellow-strong);
  font-size: 16px;
  line-height: 1.2;
}

.features p {
  margin: 0;
  color: #7c8390;
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 14px 0 86px;
}

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

.section-heading h2,
.faq__header h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  font-weight: 800;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-row button {
  min-height: 36px;
  padding: 0 18px;
  color: #626b78;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: default;
  font-size: 13px;
  font-weight: 800;
}

.filter-row .is-active {
  color: #1e2500;
  background: var(--yellow);
  border-color: var(--yellow);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 56px 22px;
  align-items: start;
}

.tour-card {
  min-width: 0;
}

.tour-card:hover {
  transform: translateY(-4px);
}

.tour-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(260px, 24.9vw, 418px);
  border-radius: 10px;
  background: var(--placeholder);
}

.placeholder-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, var(--placeholder) 0%, var(--placeholder-dark) 100%);
  transition: filter 0.28s ease, transform 0.28s ease;
}

.placeholder-media::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 13px;
}

.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.tour-card:hover .placeholder-media::before,
.rhythm-card:hover .placeholder-media::before,
.route-gallery__main:hover::before {
  filter: brightness(1.04);
  transform: scale(1.015);
}

.tour-card__media span {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  max-width: calc(100% - 32px);
  padding: 10px 16px;
  color: #20252a;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.tour-card__media i {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 22px;
  width: 47px;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
}

.tour-card__body {
  padding: 30px 1px 0;
}

.tour-card__body > p:first-child {
  margin: 0 0 8px;
  color: #9aa2af;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 500;
}

.tour-card dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 12px;
}

.tour-card dt {
  color: #9aa2af;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.tour-card dd {
  margin: 3px 0 0;
  color: #626b78;
  font-size: 13px;
  font-weight: 700;
}

.tour-card__description {
  margin: 0 0 14px;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 1.65;
}

.tour-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tour-card__links a {
  color: #1763e7;
  font-size: 12px;
  font-weight: 800;
}

.rhythm {
  padding: 58px 0 68px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading--compact {
  margin-bottom: 30px;
}

.rhythm-track {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 24px;
}

.rhythm-card {
  overflow: hidden;
  min-height: 300px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rhythm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(19, 33, 56, 0.08);
}

.rhythm-card__media {
  position: relative;
  width: 100%;
  height: 205px;
}

.rhythm-card--large .rhythm-card__media {
  height: 230px;
}

.rhythm-card div {
  padding: 18px;
}

.rhythm-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.rhythm-card p {
  margin: 0;
  color: #747d8b;
  font-size: 13px;
  line-height: 1.45;
}

.rhythm-card a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 14px;
  padding: 0 14px;
  color: #1f2600;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.review-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.review-card:hover {
  background: #fbfcff;
}

.review-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 22px;
  height: 22px;
  background: #d6dbe2;
  border-radius: 50%;
}

.review-card span {
  color: #8a93a1;
  font-size: 12px;
  font-weight: 800;
}

.review-card strong {
  display: block;
  margin: 10px 0 18px;
  color: var(--yellow-strong);
  font-size: 16px;
  letter-spacing: 0;
}

.review-card h3 {
  margin: 0 0 10px;
  color: #1763e7;
  font-size: 20px;
  line-height: 1.12;
}

.review-card p {
  margin: 0 0 18px;
  color: #747d8b;
  font-size: 13px;
  line-height: 1.5;
}

.review-card small {
  color: #606b7a;
  font-weight: 800;
}

.contact-help {
  width: var(--shell);
  margin: 0 auto 38px;
  color: var(--white);
  background: #075eff;
  border-radius: 18px;
  overflow: hidden;
}

.contact-help__inner {
  padding: 58px 50px 48px;
}

.faq__header p {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.faq__header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 2.6vw, 42px);
  line-height: 1;
  font-weight: 500;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 26px;
  margin-top: 36px;
}

.faq-item {
  overflow: hidden;
  min-width: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover,
.faq-item.is-open {
  background: rgba(255, 255, 255, 0.14);
}

.faq-item button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 61px;
  padding: 0 64px 0 20px;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.faq-item button::after {
  content: "↓";
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.22s ease, background 0.22s ease;
}

.faq-item.is-open button::after {
  content: "↑";
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0 64px 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  transition: max-height 0.32s ease, opacity 0.24s ease, padding 0.28s ease;
}

.faq-item.is-open p {
  max-height: 180px;
  opacity: 1;
  padding: 2px 64px 18px 20px;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.28fr 0.96fr 0.96fr 0.96fr;
  min-height: 230px;
  border-top: 1px dashed rgba(255, 255, 255, 0.42);
}

.contact-card {
  position: relative;
  min-width: 0;
  padding: 40px 44px 38px;
}

.contact-card + .contact-card {
  border-left: 1px dashed rgba(255, 255, 255, 0.42);
}

.contact-card:not(.contact-card--intro) {
  border-left: 1px dashed rgba(255, 255, 255, 0.42);
}

.contact-card--intro {
  padding-left: 50px;
}

.contact-card p,
.contact-card span,
.contact-card a,
.contact-card address {
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
  font-style: normal;
}

.contact-card p {
  margin: 0 0 8px;
}

.contact-card--intro p {
  margin-bottom: 10px;
}

.contact-card--intro h2 {
  max-width: 305px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(24px, 2vw, 35px);
  line-height: 0.98;
  font-weight: 600;
}

.contact-card h3 {
  margin: 22px 0 4px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.1;
  font-weight: 600;
}

.contact-card a {
  display: inline-block;
  margin-top: 34px;
  font-weight: 700;
}

.contact-card address {
  max-width: 330px;
  margin-top: 30px;
  font-weight: 600;
}

.contact-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}

.contact-icon::before,
.contact-icon::after {
  content: "";
  position: absolute;
  border: 2px solid var(--white);
}

.contact-icon--service::before {
  inset: 3px 5px 2px 3px;
  border-radius: 3px;
}

.contact-icon--service::after {
  right: 1px;
  bottom: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.contact-icon--mail::before {
  inset: 4px 1px;
  border-radius: 4px;
}

.contact-icon--mail::after {
  top: 8px;
  left: 3px;
  width: 16px;
  height: 8px;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.contact-icon--whatsapp::before {
  inset: 2px;
  border-radius: 50%;
}

.contact-icon--whatsapp::after {
  right: 2px;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-top: 0;
  border-left: 0;
  transform: rotate(20deg);
}

.contact-arrow {
  position: absolute;
  left: calc(30.76923077% - 21px);
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  color: var(--white);
  border: 1px dashed rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
}

.load-error {
  grid-column: 1 / -1;
  color: #747d8b;
  font-weight: 700;
}

.route-page {
  --shell: min(1570px, calc(100vw - 90px));
  background: var(--white);
}

.route-page .top-strip strong {
  color: var(--yellow-strong);
  font-weight: 700;
}

.route-page .brand {
  font-size: 20px;
}

.route-header-phone {
  display: grid;
  gap: 2px;
  min-height: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
}

.route-header-phone span {
  font-size: 12px;
  font-weight: 800;
}

.route-header-phone strong {
  color: #818181;
  font-size: 14px;
}

.route-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 459px;
  gap: 28px;
  padding-top: 42px;
}

.route-gallery {
  display: grid;
  grid-template-columns: 432px minmax(0, 1fr);
  gap: 24px;
  min-width: 0;
  margin-left: -242px;
}

.route-gallery__side,
.route-gallery__main,
.route-booking {
  min-height: 619px;
  border-radius: 15px;
}

.route-gallery__side,
.route-gallery__main {
  position: relative;
  overflow: hidden;
  background: var(--placeholder);
}

.route-gallery__main span {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 38px;
  width: 53px;
  height: 53px;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 50%;
}

.route-booking {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 52px 54px;
  color: var(--white);
  background: var(--yellow);
}

.route-booking__chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 24px;
  padding: 0 18px;
  border: 1.6px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.route-booking h1 {
  max-width: 335px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(34px, 2.3vw, 38px);
  line-height: 0.95;
  font-weight: 500;
}

.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin: 0 0 18px;
}

.route-meta div {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #575757;
  font-size: 14px;
  font-weight: 700;
}

.route-meta dt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.route-meta dd {
  margin: 0;
}

.route-booking > p {
  max-width: 307px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 8px;
  max-width: 306px;
}

.route-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 500;
}

.route-booking__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin-top: auto;
}

.route-booking__bottom .btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 14px;
}

.route-booking__bottom div {
  display: grid;
  gap: 4px;
  text-align: right;
}

.route-booking__bottom strong {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
}

.route-booking__bottom span {
  color: #9a7a00;
  font-size: 10px;
  font-weight: 700;
}

.route-content {
  display: grid;
  grid-template-columns: minmax(0, 961px) 452px;
  gap: 120px;
  padding: 82px 0 96px;
}

.route-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 80px;
}

.route-section-head h2,
.route-details > h2,
.route-included > h2 {
  margin: 0;
  color: #080808;
  font-size: 30px;
  line-height: 0.98;
  font-weight: 500;
}

.route-section-head h2 {
  max-width: 320px;
}

.route-section-head span {
  color: #575757;
  font-size: 18px;
}

.route-steps {
  display: grid;
  gap: 58px;
  max-width: 700px;
}

.route-step {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px;
}

.route-step > span {
  color: #828282;
  font-size: 18px;
}

.route-step h2 {
  max-width: 430px;
  margin: 0 0 16px;
  color: #080808;
  font-size: 28px;
  line-height: 0.98;
  font-weight: 500;
}

.route-step p {
  max-width: 443px;
  margin: 0;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
}

.route-included {
  margin-top: 128px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 70px;
}

.included-grid h3 {
  margin: 0 0 8px;
  color: #323232;
  font-size: 12px;
  font-weight: 700;
}

.included-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #323232;
  font-size: 12px;
  line-height: 1.65;
  font-weight: 500;
}

.route-details {
  padding-left: 52px;
  border-left: 1px solid var(--line);
}

.route-details > h2 {
  max-width: 230px;
  margin-bottom: 72px;
}

.detail-card {
  padding: 44px 38px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
}

.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(18, 31, 52, 0.06);
}

.detail-card + .detail-card {
  margin-top: 25px;
}

.detail-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.detail-card h3 {
  margin: 0 0 3px;
  color: #050505;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 500;
}

.detail-card p,
.detail-card__head p {
  margin: 0;
  color: #737373;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
}

.detail-card > p + p {
  margin-top: 14px;
}

.detail-card__head span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #151515;
  font-size: 19px;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  color: #343434;
  border-top: 1px solid #e8e8e8;
  font-size: 12px;
}

.price-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-list strong {
  font-weight: 500;
  white-space: nowrap;
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.payment-row span {
  width: 41px;
  height: 27px;
  background: #f4f5f7;
  border: 1px solid #e0e3e8;
  border-radius: 6px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 32px, 980px);
  }

  .header-main {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .nav-open .site-nav {
    position: absolute;
    top: 103px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    padding: 14px;
  }

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

  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: stretch;
  }

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

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

  .contact-card + .contact-card {
    border-left: 0;
  }

  .contact-card:not(.contact-card--intro) {
    border-left: 0;
  }

  .contact-card:nth-child(n + 4) {
    border-top: 1px dashed rgba(255, 255, 255, 0.42);
  }

  .contact-card:nth-child(2n + 1) {
    border-left: 1px dashed rgba(255, 255, 255, 0.42);
  }

  .contact-arrow {
    display: none;
  }

  .route-page {
    --shell: min(100% - 32px, 980px);
  }

  .route-hero,
  .route-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .route-gallery {
    grid-template-columns: 0.42fr 1fr;
    margin-left: 0;
  }

  .route-gallery__side,
  .route-gallery__main,
  .route-booking {
    min-height: 420px;
  }

  .route-details {
    padding-left: 0;
    border-left: 0;
  }

  .route-details > h2 {
    margin-bottom: 24px;
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

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

  .top-strip {
    display: none;
  }

  .header-main {
    min-height: 68px;
  }

  .nav-open .site-nav {
    top: 76px;
  }

  .brand {
    font-size: 17px;
  }

  .hero,
  .hero__content {
    min-height: 540px;
  }

  .hero__content {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero__note {
    max-width: 300px;
    margin-top: 44px;
    font-size: 21px;
  }

  .features,
  .tour-grid,
  .rhythm-track,
  .review-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .features {
    gap: 22px;
    padding-bottom: 40px;
  }

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

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .filter-row button {
    white-space: nowrap;
  }

  .tour-card__media {
    height: 330px;
  }

  .contact-help {
    width: var(--shell);
    border-radius: 14px;
  }

  .contact-help__inner {
    padding: 36px 18px 28px;
  }

  .faq-item button {
    min-height: 54px;
    padding-left: 16px;
    font-size: 12px;
  }

  .contact-card,
  .contact-card--intro {
    padding: 28px 18px;
    border-left: 0;
  }

  .contact-card:nth-child(n + 1) {
    border-top: 1px dashed rgba(255, 255, 255, 0.42);
  }

  .contact-card--intro h2 {
    max-width: 270px;
  }

  .rhythm-card,
  .review-card {
    min-height: auto;
  }

  .route-page {
    --shell: min(100% - 24px, 560px);
  }

  .route-hero {
    padding-top: 24px;
  }

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

  .route-gallery__side {
    display: none;
  }

  .route-gallery__main,
  .route-booking {
    min-height: 430px;
  }

  .route-booking {
    padding: 34px 24px;
  }

  .route-booking h1 {
    font-size: 34px;
  }

  .route-booking__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-booking__bottom div {
    text-align: left;
  }

  .route-content {
    padding-top: 46px;
  }

  .route-section-head {
    flex-direction: column;
    margin-bottom: 44px;
  }

  .route-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .route-included {
    margin-top: 70px;
    padding-top: 42px;
  }

  .detail-card {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
