:root {
  --ink: #17372e;
  --deep: #142b24;
  --cream: #f7f0e4;
  --paper: #fffaf2;
  --gold: #d9a84f;
  --gold-light: #f4cb76;
  --muted: #765f49;
  --line: rgba(83, 61, 38, .35);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: 600px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 12px; }
body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: #f2eee6;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.contact-open::before {
  content: '';
  position: fixed;
  z-index: 80;
  inset: 0;
  background: rgba(10, 20, 17, .38);
  backdrop-filter: blur(2px);
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; font: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p { margin: 0; }
[hidden] { display: none !important; }

main {
  width: min(100%, var(--shell));
  margin-inline: auto;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 0 54px rgba(48, 37, 22, .14);
}
.page-width { width: calc(100% - 28px); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 200;
  left: 12px;
  top: 12px;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
}
.skip-link:focus { visibility: visible; opacity: 1; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #251c13;
}
.hero-media,
.hero-media::after { position: absolute; inset: 0; }
.hero-media { z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-media::after {
  content: '';
  background:
    linear-gradient(90deg, rgba(21, 22, 16, .75) 0%, rgba(21, 22, 16, .36) 38%, rgba(21, 22, 16, .04) 72%),
    linear-gradient(180deg, rgba(12, 17, 14, .2) 0%, rgba(17, 18, 12, .02) 34%, rgba(31, 25, 15, .55) 62%, rgba(30, 24, 14, .97) 100%);
}
.hero-header {
  position: absolute;
  z-index: 15;
  left: 50%;
  top: max(16px, env(safe-area-inset-top));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transform: translateX(-50%);
}
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; color: #fff; }
.logo-name {
  font: 400 clamp(28px, 8.4vw, 38px)/.95 var(--serif);
  letter-spacing: .07em;
  text-shadow: 0 3px 12px rgba(10, 13, 10, .55);
}
.logo-caption {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .16em;
  white-space: nowrap;
}
.logo-caption i { width: 34px; height: 1px; background: currentColor; }
.logo-tagline {
  width: 145px;
  margin: 16px 0 0 6px;
  color: var(--gold-light);
  font: italic 18px/1.08 'Segoe Script', 'Brush Script MT', cursive;
  letter-spacing: .015em;
  text-wrap: balance;
  transform: rotate(-6deg);
  transform-origin: left center;
}
.logo-tagline::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin: 7px 0 0 12px;
  border-radius: 2px;
  background: var(--gold-light);
  transform: rotate(-8deg);
}
.menu-toggle {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-content: center;
  gap: 5px;
  color: #fff;
  background: rgba(154, 145, 121, .92);
  cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; border-radius: 2px; background: currentColor; transition: transform .22s, opacity .22s; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-panel {
  position: fixed;
  z-index: 12;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 96px 24px 34px;
  opacity: 0;
  color: #fff;
  background: rgba(20, 43, 36, .98);
  transition: opacity .22s, visibility .22s;
}
.menu-panel a { display: flex; min-height: 52px; align-items: center; font: 30px/1 var(--serif); }
.menu-open .menu-panel { visibility: visible; opacity: 1; }

.hero-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 210px 0 max(12px, env(safe-area-inset-bottom));
}
.hero-copy { width: 100%; }
.kicker { font-size: 10px; font-weight: 700; line-height: 1.3; letter-spacing: .23em; }
.hero h1 {
  margin-top: 5px;
  font: 400 clamp(45px, 12.5vw, 58px)/.88 var(--serif);
  letter-spacing: -.045em;
}
.hero-title-line { display: inline-block; white-space: nowrap; }
.hero-lead { margin-top: 9px; font-size: 16px; line-height: 1.2; letter-spacing: -.02em; }
.primary-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 13px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  color: var(--deep);
  background: #fffdf8;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(19, 14, 8, .2);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.primary-button span { font-size: 26px; font-weight: 400; line-height: .6; }
.primary-button:hover { background: #fff; transform: translateY(-2px); }
.primary-button:active { transform: scale(.99); }
.trust { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(120px, 1fr); align-items: stretch; gap: 8px; margin-top: 13px; }
.trust-item {
  display: flex;
  min-width: 0;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 5px 8px;
  color: var(--gold-light);
}
.trust-yandex,
.trust-availability {
  padding: 7px 13px;
  border: 1px solid rgba(244, 203, 118, .68);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(217,168,79,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 28px rgba(11,16,13,.2);
  backdrop-filter: blur(3px);
}
.trust-yandex { justify-content: flex-start; gap: 12px; }
.trust-availability { justify-content: center; }
.good-place-mini { width: 49px; height: 69px; flex: 0 0 auto; object-fit: contain; }
.trust-yandex-copy { display: flex; min-width: 0; flex-direction: column; color: #fff; line-height: 1; }
.trust-yandex-copy strong { font: 400 17px/1 var(--serif); white-space: nowrap; }
.trust-yandex-copy > span:not(.trust-stars) { margin-top: 4px; font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.trust-stars { margin-top: 8px; color: var(--gold-light); font-size: 15px; letter-spacing: .05em; white-space: nowrap; }
.trust-availability svg { width: 42px; height: 42px; flex: 0 0 auto; }
.trust-availability > span { min-width: 0; color: #fff; }
.trust-availability strong { display: block; font-size: 13px; line-height: 1.04; }
.trust-availability small { display: block; margin-top: 6px; color: rgba(255,255,255,.78); font-size: 8px; line-height: 1.15; }
.reviews-link {
  display: flex;
  width: 160px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 5px auto 0;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  font-size: 14px;
}

/* Shared section headings */
.rest-section,
.destinations-section,
.contacts-section { position: relative; }
.rest-section,
.destinations-section { background: var(--paper); }
.reference-heading,
.journeys-heading,
.compact-subheading {
  display: grid;
  grid-template-columns: auto minmax(14px, 1fr) auto;
  align-items: center;
  gap: 9px;
}
.heading-line { width: 100%; height: 1px; background: var(--line); }
.section-aside,
.journeys-heading p,
.compact-subheading > p { color: var(--muted); font-size: 9px; line-height: 1.15; text-align: right; }

/* Formats */
.rest-section { padding: 19px 0 12px; }
.rest-heading { margin-bottom: 7px; }
.rest-heading h2 {
  color: #826749;
  font: 700 clamp(12px, 3.5vw, 15px)/1 var(--sans);
  letter-spacing: .18em;
  white-space: nowrap;
}
.rest-heading .section-aside { white-space: nowrap; }
.rest-track { display: grid; gap: 6px; }
.rest-card {
  position: relative;
  aspect-ratio: 2.43 / 1;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 14px;
  color: #fff;
  background: var(--deep);
  box-shadow: 0 9px 18px rgba(46, 35, 22, .14);
}
.rest-card::after,
.country-card::after,
.journey-card::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 13, 11, .02) 30%, rgba(8, 14, 11, .18) 52%, rgba(8, 14, 11, .84) 100%);
}
.rest-card img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.rest-card:nth-child(1) img { object-position: center 8%; }
.rest-card:nth-child(2) img { object-position: center 7%; }
.rest-card:nth-child(3) img { object-position: center 30%; }
.rest-card:hover img { transform: scale(1.025); }
.rest-card-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px 8px 11px;
}
.rest-card-caption .card-arrow { align-self: center; }
.rest-card-caption > div { min-width: 0; }
.rest-card-caption p { margin-bottom: 4px; color: #fff; font-size: 8px; font-weight: 700; line-height: 1.12; letter-spacing: .14em; }
.rest-card h3 {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-bottom: 5px;
  font: 400 clamp(22px, 6.2vw, 28px)/.92 var(--serif);
  letter-spacing: -.035em;
  white-space: nowrap;
}
.rest-card h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  border-radius: 3px;
  background: var(--gold-light);
}
.rest-card:nth-child(2) h3 { font-size: clamp(19px, 5.45vw, 25px); }
.rest-card:nth-child(3) h3 { font-size: clamp(21px, 5.8vw, 27px); }
.card-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  place-items: center;
  color: #111d19;
  background: #fff;
  font-size: 22px;
  box-shadow: 0 6px 18px rgba(10, 17, 14, .2);
  cursor: pointer;
  transition: transform .2s, background .2s;
}
.card-arrow:hover { background: #fff6df; transform: translateX(3px); }
.card-arrow:active { transform: scale(.96); }

/* Countries, journeys and reviews */
.destinations-section { padding: 5px 0 12px; }
.destinations-section .reference-heading { margin: 7px 0; }
.destinations-section h2,
.journeys-heading h3,
.compact-subheading h3 {
  color: #1c1b17;
  font: 400 clamp(22px, 6.2vw, 29px)/.96 var(--serif);
  letter-spacing: -.04em;
  white-space: nowrap;
}
.country-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 4px; }
.country-card {
  position: relative;
  height: clamp(78px, 21vw, 130px);
  min-width: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 9px;
  color: #fff;
  background: var(--deep);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 7px 13px rgba(42, 32, 20, .12);
}
.country-photo { position: absolute; z-index: -2; inset: 0; background-repeat: no-repeat; background-size: 200% auto; background-position-y: center; transition: transform .45s ease; }
.country-photo-turkey,
.country-photo-egypt { background-image: url('assets/countries-turkey-egypt.png'); }
.country-photo-uae,
.country-photo-thailand { background-image: url('assets/countries-uae-thailand.png'); }
.country-photo-vietnam,
.country-photo-china { background-image: url('assets/countries-vietnam-china.png'); }
.country-photo-turkey,
.country-photo-uae,
.country-photo-vietnam { background-position-x: left; }
.country-photo-egypt,
.country-photo-thailand,
.country-photo-china { background-position-x: right; }
.country-name {
  position: absolute;
  left: 5px;
  right: 3px;
  bottom: 6px;
  overflow: hidden;
  font: 400 clamp(11px, 3.1vw, 14px)/1 var(--serif);
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  white-space: nowrap;
}
.country-card:hover .country-photo { transform: scale(1.04); }
.journeys-subsection,
.reviews-subsection { margin-top: 11px; padding-top: 0; }
.journeys-heading,
.compact-subheading { margin-bottom: 7px; }
.journeys-heading h3,
.compact-subheading h3 { font-size: clamp(19px, 5.25vw, 25px); }
.journeys-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; }
.journey-card {
  position: relative;
  height: clamp(86px, 23vw, 134px);
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  color: #fff;
  background-image: url('assets/travel-formats.png');
  background-repeat: no-repeat;
  background-size: 300% auto;
  background-position-y: center;
  box-shadow: 0 7px 14px rgba(42, 32, 20, .12);
}
.journey-card-excursions { background-position-x: left; }
.journey-card-cruises { background-position-x: center; }
.journey-card-combined { background-position-x: right; }
.journey-card-copy { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 3px; padding: 7px; }
.journey-card h4 { width: 100%; min-width: 0; padding-right: 0; font: 400 clamp(10.5px, 3.15vw, 14px)/.92 var(--serif); letter-spacing: -.045em; }
.journey-card-excursions h4,
.journey-card-combined h4 { font-size: clamp(10px, 2.95vw, 13px); }
.journey-card .card-arrow { position: absolute; right: 5px; bottom: 5px; width: 44px; height: 44px; font-size: 18px; }

.reviews-compact-row {
  display: grid;
  grid-template-columns: 82px 90px;
  align-items: stretch;
  justify-content: center;
  gap: 5px;
}
.review-place-panel,
.review-score-panel { min-width: 0; border-radius: 9px; background: #fff; }
.review-place-panel { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; padding: 5px 3px; text-align: center; }
.review-place-panel img { width: 45px; height: 62px; object-fit: contain; }
.review-score-panel { display: flex; flex-direction: column; justify-content: center; padding: 7px 4px; }
.review-score-panel strong { color: #181b17; font: 700 27px/.85 var(--serif); }
.review-score-panel p { margin-top: 5px; color: #eead3d; font-size: 10px; letter-spacing: -.04em; white-space: nowrap; }
.review-score-panel span { margin-top: 5px; color: #26231d; font-size: 8px; }
.review-score-panel small { margin-top: 6px; color: #26231d; font-size: 6px; line-height: 1.1; }
.review-cards { display: grid; grid-template-columns: minmax(0, 1fr); gap: 6px; margin-top: 7px; }
.review-mini-card {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  height: 124px;
  flex-direction: column;
  padding: 10px 12px;
  overflow: hidden;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 5px 12px rgba(54, 42, 27, .08);
}
.review-author { display: flex; min-width: 0; align-items: center; gap: 7px; }
.review-avatar {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #c99268, #76523b);
  font-size: 10px;
  font-weight: 700;
}
.review-avatar-second { background: linear-gradient(145deg, #658277, #29473d); }
.review-author > span:last-child { min-width: 0; }
.review-author strong,
.review-author small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review-author strong { color: #1d1b17; font-size: 10px; }
.review-author small { margin-top: 2px; color: #907957; font-size: 8px; }
.review-card-stars { margin: 5px 0 4px; color: #edae3f; font-size: 10px; letter-spacing: -.02em; white-space: nowrap; }
.review-mini-card > p:last-child {
  display: -webkit-box;
  overflow: hidden;
  color: #292720;
  font-size: 10.5px;
  line-height: 1.24;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.reviews-source { margin-top: 6px; color: #77684f; font-size: 8.5px; line-height: 1.2; text-align: right; }
.reviews-wide-button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 7px;
  border: 1px solid #8b6f4d;
  border-radius: 999px;
  color: #181b17;
  font-size: 12px;
  font-weight: 700;
  transition: color .2s, background .2s;
}
.reviews-wide-button span { font-size: 18px; }
.reviews-wide-button:hover { color: #fff; background: var(--deep); }

/* Contact finale */
.contacts-section {
  padding: 10px 0 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,249,238,.28)),
    url('assets/coast.jpg') center / cover no-repeat;
}
.contacts-reviews {
  margin-top: 0;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 250, 242, .94);
  box-shadow: 0 9px 24px rgba(31, 39, 32, .12);
}
.contacts-layout {
  padding: 15px 13px 12px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 20px;
  background: rgba(255, 250, 242, .84);
  box-shadow: 0 13px 34px rgba(31, 39, 32, .18);
  backdrop-filter: blur(4px);
}
.section-label { display: none; }
.contacts-copy h2 { color: #17251f; font: 400 clamp(25px, 7vw, 34px)/.95 var(--serif); letter-spacing: -.04em; }
.contacts-copy > p:last-child { margin-top: 7px; color: #393831; font-size: 11px; line-height: 1.25; }
.contact-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; margin-top: 11px; }
.contact-card {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(32, 56, 47, .09);
  border-radius: 9px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 5px 13px rgba(40, 33, 24, .08);
  transition: transform .2s;
}
.contact-card:hover { transform: translateY(-2px); }
.contact-card > span:nth-child(2) { min-width: 0; }
.contact-card strong,
.contact-card small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-card strong { color: #24231e; font-size: 11px; line-height: 1.05; }
.contact-card small { margin-top: 3px; color: #6e6a60; font-size: 7px; line-height: 1.05; }
.contact-arrow { display: none; }
.contact-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; place-items: center; color: #fff; background: #9c8b70; }
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.telegram-icon { background: #2aace2; }
.telegram-icon svg { fill: currentColor; stroke: none; }
.max-icon { border-radius: 10px; background: #654bdd; font-size: 7px; font-weight: 800; letter-spacing: -.04em; }
.contacts-signoff { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; margin-top: 11px; color: #7c5631; text-align: center; }
.contacts-signoff span { font: italic 12px/1.05 'Segoe Script', 'Brush Script MT', cursive; }
.contacts-signoff span:first-child::after { content: ''; display: block; width: 46px; height: 1px; margin: 5px auto 0; background: var(--gold); transform: rotate(-7deg); }
.contacts-signoff strong { color: #1c211d; font: italic 13px/1 'Segoe Script', 'Brush Script MT', cursive; white-space: nowrap; }
.office-address {
  width: calc(100% - 28px);
  margin: 9px auto 0;
  color: #fffdf7;
  font-size: 10px;
  font-style: normal;
  line-height: 1.3;
  text-align: center;
  text-shadow: 0 1px 6px rgba(16, 25, 21, .85);
}

/* Legal footer */
.legal-footer {
  color: rgba(255, 255, 255, .84);
  background: #132c25;
  border-top: 1px solid rgba(244, 203, 118, .32);
}
.legal-footer-inner { padding: 22px 0 max(22px, env(safe-area-inset-bottom)); }
.legal-footer-lead { display: grid; gap: 11px; }
.legal-footer-lead p strong,
.legal-footer-lead p span { display: block; }
.legal-footer-lead p strong { color: #fffdf8; font: 400 17px/1.15 var(--serif); }
.legal-footer-lead p span { margin-top: 5px; color: rgba(255,255,255,.68); font-size: 10px; line-height: 1.35; }
.legal-contact-links { display: flex; flex-wrap: wrap; gap: 7px 14px; }
.legal-contact-links a,
.cookie-settings-button {
  min-height: 28px;
  padding: 5px 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 203, 118, .48);
  color: #f4cb76;
  background: transparent;
  font-size: 10px;
  line-height: 1.2;
  cursor: pointer;
}
.legal-hours {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 203, 118, .24);
  border-radius: 12px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.045);
  font-size: 10px;
  line-height: 1.3;
}
.legal-hours strong { margin-bottom: 2px; color: #fffdf8; font-size: 11px; letter-spacing: .04em; }
.legal-hours span { white-space: nowrap; }
.legal-hours small { margin-top: 2px; color: #f4cb76; font-size: 8.5px; }
.legal-footer address { color: rgba(255,255,255,.72); font-size: 10px; font-style: normal; line-height: 1.35; }
.legal-details { margin-top: 14px; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.legal-details summary {
  position: relative;
  padding: 12px 28px 12px 0;
  color: #fffdf8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  list-style: none;
  cursor: pointer;
}
.legal-details summary::-webkit-details-marker { display: none; }
.legal-details summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 2px;
  color: #f4cb76;
  font-size: 19px;
  font-weight: 400;
  transform: translateY(-50%);
}
.legal-details[open] summary::after { content: '−'; }
.legal-details-grid { display: grid; gap: 10px; padding: 0 0 14px; }
.legal-details-grid p { color: rgba(255,255,255,.68); font-size: 9px; line-height: 1.45; }
.legal-details-grid strong { color: #fff; }
.legal-details-grid a { color: #f4cb76; text-decoration: underline; text-decoration-color: rgba(244,203,118,.45); text-underline-offset: 2px; }
.legal-disclaimer { margin-top: 13px; color: rgba(255,255,255,.52); font-size: 8.5px; line-height: 1.45; }

/* Consent component stays hidden until a real Yandex Metrika ID is configured. */
.cookie-consent {
  position: fixed;
  z-index: 120;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  width: auto;
  max-width: 560px;
  margin-inline: auto;
  padding: 15px;
  border: 1px solid rgba(32, 56, 47, .14);
  border-radius: 18px;
  color: var(--deep);
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(15, 29, 24, .28);
}
.cookie-consent p { font-size: 12px; line-height: 1.35; }
.cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 12px; }
.cookie-consent-actions button { min-height: 44px; padding: 8px 10px; border: 1px solid var(--deep); border-radius: 999px; background: transparent; font-size: 10px; font-weight: 700; cursor: pointer; }
.cookie-consent-actions button:first-child { color: #fff; background: var(--deep); }

/* Privacy page */
.privacy-page { min-height: 100vh; background: #f2eee6; }
.privacy-main {
  width: min(calc(100% - 24px), 760px);
  max-width: 760px;
  margin: 18px auto;
  overflow: visible;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(48, 37, 22, .13);
}
.privacy-header {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px 24px 0 0;
  color: #fff;
  background: linear-gradient(135deg, #17372e, #264b3f);
}
.privacy-brand { display: inline-flex; flex-direction: column; }
.privacy-brand span { font: 400 27px/1 var(--serif); letter-spacing: .07em; }
.privacy-brand small { margin-top: 6px; font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.privacy-back { display: inline-flex; min-height: 44px; align-items: center; padding: 8px 14px; border: 1px solid rgba(244,203,118,.62); border-radius: 999px; color: #fff; font-size: 10px; }
.privacy-article { padding: 30px 24px 34px; }
.privacy-kicker { color: #9a7541; font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.privacy-article h1 { max-width: 650px; margin-top: 8px; color: var(--deep); font: 400 clamp(32px, 7vw, 48px)/.98 var(--serif); letter-spacing: -.04em; }
.privacy-intro { max-width: 650px; margin-top: 16px; color: #5f574b; font-size: 14px; line-height: 1.55; }
.privacy-article section { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(83, 61, 38, .2); }
.privacy-article h2 { color: var(--deep); font: 400 23px/1.1 var(--serif); }
.privacy-article section p,
.privacy-article li { color: #49443b; font-size: 13px; line-height: 1.6; }
.privacy-article section p { margin-top: 11px; }
.privacy-article ul { margin: 10px 0 0; padding-left: 20px; }
.privacy-article li + li { margin-top: 5px; }
.privacy-article section a { color: #7e5d2f; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(126,93,47,.35); text-underline-offset: 3px; }
.privacy-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(83, 61, 38, .2); }
.privacy-actions a { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 10px 17px; border: 1px solid var(--deep); border-radius: 999px; color: var(--deep); font-size: 11px; font-weight: 700; }
.privacy-actions a:last-child { color: #fff; background: var(--deep); }
.privacy-footer { padding: 16px 24px; border-radius: 0 0 24px 24px; color: rgba(255,255,255,.7); background: #132c25; font-size: 9px; text-align: center; }

/* Messenger chooser */
.contact-popover {
  position: fixed;
  z-index: 100;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  width: auto;
  max-width: 390px;
  max-height: calc(100dvh - 24px);
  padding: 19px;
  overflow-y: auto;
  border: 1px solid rgba(32, 56, 47, .12);
  border-radius: 22px;
  opacity: 0;
  color: var(--deep);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(15, 29, 24, .34);
  transform: translateY(18px) scale(.98);
  transition: opacity .18s, transform .18s;
}
.contact-popover.is-open { opacity: 1; transform: translateY(0) scale(1); }
.popover-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.popover-header p { color: #8e7b5e; font-size: 9px; font-weight: 700; letter-spacing: .24em; }
.popover-header h2 { margin-top: 5px; font: 400 27px/1 var(--serif); }
.popover-close { display: grid; width: 48px; height: 48px; flex: 0 0 auto; padding: 0 0 3px; border: 1px solid rgba(32, 56, 47, .15); border-radius: 50%; place-items: center; background: transparent; font-size: 27px; cursor: pointer; }
.popover-actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; margin-top: 16px; }
.popover-actions a { display: flex; min-width: 0; min-height: 92px; align-items: center; justify-content: center; flex-direction: column; gap: 7px; padding: 8px 4px; border: 1px solid rgba(32, 56, 47, .12); border-radius: 15px; background: #fff; text-align: center; }
.popover-actions strong { font-size: 13px; }
.popover-actions .contact-icon { width: 42px; height: 42px; }

.has-js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1); }
.has-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 700px) {
  .page-width { width: calc(100% - 40px); }
  .hero-header { top: 22px; }
  .logo-name { font-size: 38px; }
  .logo-caption { font-size: 11px; }
  .logo-caption i { width: 42px; }
  .logo-tagline { width: 175px; margin-top: 20px; font-size: 22px; }
  .menu-toggle { width: 58px; height: 58px; }
  .hero-inner { padding-bottom: 20px; }
  .hero-copy { width: 68%; }
  .kicker { font-size: 11px; }
  .hero h1 { font-size: 56px; }
  .hero-lead { font-size: 19px; }
  .primary-button { width: 70%; min-height: 58px; font-size: 18px; }
  .trust { width: calc(100% - 10px); margin-top: 15px; margin-left: auto; grid-template-columns: minmax(0, 1.85fr) minmax(180px, 1fr); gap: 12px; }
  .trust-item { min-height: 105px; }
  .trust-yandex,
  .trust-availability { padding: 9px 18px; }
  .trust-yandex { gap: 16px; }
  .good-place-mini { width: 61px; height: 86px; }
  .trust-yandex-copy strong { font-size: 22px; }
  .trust-yandex-copy > span:not(.trust-stars) { font-size: 14px; }
  .trust-stars { font-size: 18px; }
  .trust-availability svg { width: 50px; height: 50px; }
  .trust-availability strong { font-size: 16px; }
  .trust-availability small { font-size: 9px; }
  .reviews-link { width: 230px; min-height: 44px; margin-top: 2px; font-size: 15px; }
  .rest-section { padding: 22px 0 14px; }
  .rest-heading { margin-bottom: 9px; }
  .rest-heading h2 { font-size: 17px; }
  .section-aside,
  .journeys-heading p,
  .compact-subheading > p { font-size: 11px; }
  .rest-track { gap: 8px; }
  .rest-card { border-radius: 18px; }
  .rest-card-caption { inset: 0; padding: 0 15px 12px 19px; }
  .rest-card-caption p { font-size: 10px; }
  .rest-card h3 { font-size: 37px; }
  .rest-card:nth-child(2) h3 { font-size: 35px; }
  .rest-card:nth-child(3) h3 { font-size: 36px; }
  .rest-card h3::after { width: 67px; height: 4px; }
  .card-arrow { width: 54px; height: 54px; font-size: 25px; }
  .destinations-section { padding-bottom: 16px; }
  .destinations-section h2 { font-size: 32px; }
  .country-grid { gap: 6px; }
  .country-card { border-radius: 12px; }
  .country-name { left: 8px; bottom: 8px; font-size: 17px; }
  .journeys-subsection,
  .reviews-subsection { margin-top: 14px; }
  .journeys-heading h3,
  .compact-subheading h3 { font-size: 27px; }
  .journeys-grid { gap: 7px; }
  .journey-card { border-radius: 13px; }
  .journey-card h4 { padding-right: 44px; font-size: 20px; }
  .journey-card .card-arrow { width: 48px; height: 48px; }
  .reviews-compact-row { grid-template-columns: 100px 108px; gap: 7px; }
  .review-place-panel,
  .review-score-panel { border-radius: 12px; }
  .review-place-panel img { width: 66px; height: 88px; }
  .review-score-panel { padding-inline: 8px; }
  .review-score-panel strong { font-size: 37px; }
  .review-score-panel p { font-size: 14px; }
  .review-score-panel span { font-size: 11px; }
  .review-score-panel small { font-size: 8px; }
  .review-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
  .review-mini-card { height: 132px; padding: 11px 12px; border-radius: 12px; }
  .review-author strong { font-size: 11px; }
  .review-author small { font-size: 8.5px; }
  .review-card-stars { font-size: 11px; }
  .review-mini-card > p:last-child { font-size: 11px; }
  .reviews-source { font-size: 9px; }
  .reviews-wide-button { min-height: 44px; font-size: 13px; }
  .contacts-section { padding: 13px 0 14px; }
  .contacts-layout { padding: 22px 22px 16px; border-radius: 22px; }
  .contacts-copy h2 { font-size: 38px; }
  .contacts-copy > p:last-child { margin-top: 8px; font-size: 13px; }
  .contact-list { gap: 7px; margin-top: 14px; }
  .contact-card { min-height: 66px; padding: 8px 10px; border-radius: 11px; }
  .contact-icon { width: 42px; height: 42px; }
  .contact-card strong { font-size: 14px; }
  .contact-card small { font-size: 9px; }
  .contacts-signoff { margin-top: 15px; }
  .contacts-signoff span { font-size: 16px; }
  .contacts-signoff strong { font-size: 18px; }
  .office-address { margin-top: 11px; font-size: 11px; }
  .legal-footer-inner { padding-top: 26px; padding-bottom: 27px; }
  .legal-footer-lead { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .legal-footer-lead p strong { font-size: 19px; }
  .legal-contact-links { justify-content: flex-end; }
  .legal-hours { width: min(100%, 250px); grid-column: 2; justify-self: end; }
  .legal-footer address { grid-column: 1 / -1; }
  .legal-details-grid { grid-template-columns: 1fr 1fr; }
  .legal-details-grid p:last-child { grid-column: 1 / -1; }
  .legal-details-grid p { font-size: 10px; }
  .legal-disclaimer { font-size: 9px; }
  .contact-popover { right: auto; bottom: auto; width: 390px; }
}

@media (max-width: 699px) {
  .trust { width: 100%; grid-template-columns: minmax(0, 1fr); gap: 7px; }
  .trust-yandex,
  .trust-availability { width: 100%; justify-content: center; }
  .review-cards { grid-template-columns: minmax(0, 1fr); }
  .journey-card-excursions h4,
  .journey-card-combined h4 {
    position: absolute;
    right: 5px;
    bottom: 42px;
    left: 7px;
    font-size: 10px;
  }
}

@media (max-width: 390px) {
  .page-width { width: calc(100% - 24px); }
  .logo-tagline { font-size: 17px; }
  .rest-heading h2 { font-size: 11.5px; letter-spacing: .14em; }
  .rest-heading { gap: 6px; }
  .section-aside { font-size: 8px; }
  .rest-card-caption { left: 0; padding-left: 9px; }
  .rest-card h3 { font-size: 21px; }
  .rest-card:nth-child(2) h3 { font-size: 18px; }
  .rest-card:nth-child(3) h3 { font-size: 20px; }
  .journeys-heading h3 { font-size: 18px; }
  .journeys-heading { grid-template-columns: auto minmax(8px, 1fr) minmax(68px, auto); }
  .journey-card h4 { padding-right: 0; font-size: 10.5px; }
  .journey-card .card-arrow { width: 44px; height: 44px; }
  .trust-yandex { gap: 8px; padding-inline: 9px; }
  .good-place-mini { width: 45px; height: 64px; }
  .trust-yandex-copy strong { font-size: 15px; }
  .trust-yandex-copy > span:not(.trust-stars) { font-size: 11px; }
  .trust-stars { margin-top: 6px; font-size: 13px; }
  .reviews-compact-row { gap: 4px; }
  .legal-contact-links { flex-direction: column; align-items: flex-start; gap: 2px; }
  .legal-contact-links a,
  .cookie-settings-button { min-height: 40px; }
  .privacy-main { width: calc(100% - 16px); margin: 8px auto; border-radius: 18px; }
  .privacy-header { min-height: 102px; align-items: flex-start; flex-direction: column; gap: 13px; padding: 20px 17px; border-radius: 18px 18px 0 0; }
  .privacy-back { min-height: 42px; }
  .privacy-article { padding: 25px 17px 29px; }
  .privacy-article h1 { font-size: 34px; }
  .privacy-intro { font-size: 13px; }
  .privacy-article section { margin-top: 24px; padding-top: 18px; }
  .privacy-article h2 { font-size: 21px; }
  .privacy-article section p,
  .privacy-article li { font-size: 12.5px; }
  .privacy-actions { flex-direction: column; }
  .privacy-actions a { width: 100%; }
  .privacy-footer { border-radius: 0 0 18px 18px; }
}

@media (max-height: 740px) {
  .logo-tagline { margin-top: 9px; font-size: 15px; }
  .logo-tagline::after { margin-top: 4px; }
  .hero h1 { font-size: 43px; }
  .hero-lead { font-size: 14px; }
  .primary-button { min-height: 50px; margin-top: 9px; }
  .trust { margin-top: 7px; }
  .trust-item { min-height: 80px; }
  .good-place-mini { width: 45px; height: 57px; }
  .reviews-link { min-height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
