/* ============================================================
   Меридиан, travel landing. Light theme locked. One accent.
   ============================================================ */

:root {
  --bg: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f3ede4;
  --text: #1f2933;
  --muted: #5b6672;
  --ink: #16233a;
  --border: #eae3d9;

  --accent: #cf4a26; /* terracotta coral, the single accent. white text on it clears WCAG AA at 4.5:1 */
  --accent-hover: #b23f1d;
  --accent-ink: #ffffff;
  --accent-soft: #fbe9e2;

  --radius-card: 16px;
  --radius-input: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(22, 35, 58, 0.05), 0 2px 8px rgba(22, 35, 58, 0.04);
  --shadow-md: 0 8px 24px rgba(22, 35, 58, 0.08), 0 2px 6px rgba(22, 35, 58, 0.05);
  --shadow-lg: 0 24px 60px rgba(22, 35, 58, 0.16);

  --container: 1240px;
  --gutter: 24px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- focus ---------- */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: 15px 26px;
  cursor: pointer;
  transition: transform 0.12s var(--ease), background 0.18s var(--ease),
    box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  will-change: transform;
}

.btn--sm {
  padding: 11px 20px;
  font-size: 15px;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 20px rgba(207, 74, 38, 0.28);
}
.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 10px 26px rgba(207, 74, 38, 0.34);
}
.btn--primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 4px 12px rgba(207, 74, 38, 0.3);
}

.btn--ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost:active {
  transform: translateY(1px) scale(0.99);
}

/* ============================================================
   NAV
   ============================================================ */
#nav-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  pointer-events: none;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.28s var(--ease), box-shadow 0.28s var(--ease),
    border-color 0.28s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
}
.brand__mark {
  color: var(--accent);
  display: inline-flex;
}
.brand__word {
  color: #ffffff;
  transition: color 0.28s var(--ease);
}

.nav__links {
  display: flex;
  gap: 30px;
  margin-inline: auto;
}
.nav__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 16px;
  padding: 6px 2px;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.24s var(--ease);
}
.nav__links a:hover::after {
  width: 100%;
}

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

/* solid state after hero top */
.nav[data-solid="true"] {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.nav[data-solid="true"] .brand__word {
  color: var(--ink);
}
.nav[data-solid="true"] .nav__links a {
  color: var(--text);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-input);
  cursor: pointer;
}
.nav__burger span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.24s var(--ease), opacity 0.2s var(--ease);
}
.nav[data-solid="true"] .nav__burger {
  background: var(--surface-2);
  border-color: var(--border);
}
.nav[data-solid="true"] .nav__burger span {
  background: var(--ink);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 56px;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      104deg,
      rgba(15, 24, 40, 0.72) 0%,
      rgba(15, 24, 40, 0.5) 42%,
      rgba(15, 24, 40, 0.18) 100%
    ),
    linear-gradient(to top, rgba(15, 24, 40, 0.55), rgba(15, 24, 40, 0) 45%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.hero__copy {
  max-width: 880px;
}
.hero__title {
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  text-shadow: 0 2px 24px rgba(10, 16, 28, 0.35);
}
.hero__sub {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-top: 18px;
  max-width: 30ch;
  text-shadow: 0 1px 12px rgba(10, 16, 28, 0.4);
}

/* search widget */
.search {
  width: 100%;
  max-width: 940px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr auto;
  gap: 14px;
  align-items: end;
}
.search__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.search__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.search__field input,
.search__field select {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  appearance: none;
}
.search__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6672' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}
.search__field input:focus,
.search__field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207, 74, 38, 0.18);
}
.search__submit {
  height: 48px;
  padding-inline: 34px;
}
.search__note {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: var(--accent-hover);
  font-weight: 600;
  font-size: 14.5px;
}
.search__note:empty {
  display: none;
}

.hero__reassure {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(10, 16, 28, 0.45);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust__logos {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust__logos img {
  height: 30px;
  width: auto;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.22s var(--ease), filter 0.22s var(--ease),
    transform 0.22s var(--ease);
}
.trust__logos li:hover img {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
}

/* ============================================================
   SHARED SECTION BITS
   ============================================================ */
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-title {
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 14px;
}

/* ============================================================
   DESTINATIONS (bento)
   ============================================================ */
.dest {
  padding: 88px 0;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 208px;
  gap: 16px;
}
.tile {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-2);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}
.tile--xl {
  grid-column: span 2;
  grid-row: span 2;
}
.tile--wide {
  grid-column: span 2;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.tile__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 18, 30, 0.78) 0%,
    rgba(12, 18, 30, 0.28) 42%,
    rgba(12, 18, 30, 0) 68%
  );
}
.tile__body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}
.tile__place {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: -0.01em;
}
.tile--xl .tile__place {
  font-size: 1.55rem;
}
.tile__price {
  flex: none;
  color: var(--ink);
  background: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.tile:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.tile:hover img {
  transform: scale(1.06);
}
.tile.is-picked {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
.dest__hint {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.96rem;
  text-align: center;
}

/* ============================================================
   WHY (splits + proof band)
   ============================================================ */
.why {
  padding: 40px 0 88px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
}
.split--reverse .split__media {
  order: 2;
}
.split__media img {
  width: 100%;
  aspect-ratio: 9 / 7;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
}
.split__text p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1.06rem;
}
.split__list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}
.split__list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 500;
}
.split__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--accent-soft)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23cf4a26' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}

.proof {
  margin-top: 48px;
}
.proof__grid {
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proof__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  padding-left: 22px;
}
.proof__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.15rem);
  color: #ffffff;
  letter-spacing: -0.02em;
}
.proof__cap {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ============================================================
   FEATURED TOURS (carousel)
   ============================================================ */
.tours {
  padding: 60px 0 90px;
  background: var(--surface-2);
}
.tours__head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.tours__nav {
  display: flex;
  gap: 10px;
  flex: none;
}
.round-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease), transform 0.12s var(--ease);
}
.round-btn:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}
.round-btn:active {
  transform: scale(0.94);
}
.round-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}

.tours__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px var(--gutter) 20px;
  max-width: calc(var(--container) + 2 * var(--gutter));
  margin: 0 auto;
  scrollbar-width: none;
}
.tours__track::-webkit-scrollbar {
  display: none;
}
.tour {
  flex: 0 0 auto;
  width: 340px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}
.tour:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tour__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.tour__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.tour:hover .tour__media img {
  transform: scale(1.05);
}
.tour__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.tour__body {
  padding: 20px 20px 22px;
}
.tour__name {
  font-size: 1.24rem;
  font-weight: 600;
}
.tour__meta {
  color: var(--muted);
  font-size: 0.97rem;
  margin-top: 8px;
  min-height: 2.8em;
}
.tour__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}
.tour__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews {
  padding: 90px 0;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.review--lift {
  transform: translateY(-18px);
}
.review blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.16rem;
  line-height: 1.45;
  color: var(--ink);
}
.review__who {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}
.review__who img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.review__name {
  display: block;
  font-weight: 700;
  color: var(--text);
  font-size: 0.98rem;
}
.review__ctx {
  display: block;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 40px 0 90px;
}
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq__aside {
  position: sticky;
  top: 100px;
}
.faq__list {
  display: grid;
  gap: 12px;
}
.acc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.acc[data-open="true"] {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--ink);
}
.acc__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}
.acc__icon::before,
.acc__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.26s var(--ease);
}
.acc__icon::before {
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
}
.acc__icon::after {
  top: 3px;
  left: 10px;
  width: 2px;
  height: 16px;
}
.acc[data-open="true"] .acc__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.acc__panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s var(--ease);
}
.acc__panel p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ============================================================
   CTA + NEWSLETTER
   ============================================================ */
.cta {
  padding: 20px 0 96px;
}
.cta__card {
  background: linear-gradient(135deg, #17253d 0%, #223655 100%);
  border-radius: var(--radius-card);
  padding: 56px clamp(28px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta__title {
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
}
.cta__lead {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 14px;
  font-size: 1.06rem;
}
.news__field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.news__field label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14px;
}
.news__row {
  display: flex;
  gap: 12px;
}
.news__row input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: var(--radius-input);
  padding: 14px 16px;
  transition: box-shadow 0.18s var(--ease);
}
.news__row input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(207, 74, 38, 0.55);
}
.news__msg {
  margin-top: 12px;
  min-height: 0;
  font-weight: 600;
  font-size: 14.5px;
}
.news__msg:empty {
  display: none;
}
.news__msg[data-state="ok"] {
  color: #ffd9cb;
}
.news__msg[data-state="err"] {
  color: #ffbfa8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.brand--footer .brand__word {
  color: var(--ink);
}
.footer__tag {
  color: var(--muted);
  margin-top: 16px;
  max-width: 30ch;
  font-size: 0.98rem;
}
.footer__col h3 {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer__col a,
.footer__contacts p {
  display: block;
  color: var(--text);
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.18s var(--ease);
}
.footer__col a:hover {
  color: var(--accent);
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}
.footer__req {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  opacity: 0.85;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   Doc page (оферта и т.п.)
   ============================================================ */
.doc { padding: clamp(96px, 12vw, 128px) 0 clamp(56px, 8vw, 88px); }
.doc__inner { max-width: 840px; }
.doc__crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}
.doc__crumbs a { color: var(--accent); }
.doc__crumbs a:hover { text-decoration: underline; }
.doc__title {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.doc__meta { margin-top: 8px; font-size: 0.88rem; color: var(--muted); }
.doc__lead {
  margin-top: 26px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
}
.doc__lead p { color: var(--text); font-size: 1rem; line-height: 1.6; }
.doc__section { margin-top: clamp(30px, 4vw, 42px); }
.doc__section h2 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.doc__section p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 9px;
}
.doc__section strong { color: var(--ink); font-weight: 700; }
.doc__section--req {
  padding: 22px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}
.doc__section--req p { font-variant-numeric: tabular-nums; margin-bottom: 5px; }
.doc__back { margin-top: 40px; }
.footer__legal {
  display: flex;
  gap: 22px;
}
.footer__legal a:hover {
  color: var(--accent);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .search {
    grid-template-columns: 1fr 1fr;
  }
  .search__submit {
    grid-column: 1 / -1;
    width: 100%;
  }
  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .faq__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq__aside {
    position: static;
  }
  .cta__card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reviews__grid {
    grid-template-columns: 1fr;
  }
  .review--lift {
    transform: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .nav__links {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    gap: 0;
    margin: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 8px var(--gutter) 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.26s var(--ease), opacity 0.26s var(--ease);
  }
  .nav__links.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    color: var(--text);
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .nav__links a:last-child {
    border-bottom: none;
  }
  .nav__links a::after {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__actions .btn--primary {
    display: none;
  }

  .hero {
    padding-top: 104px;
  }
  .search {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .split,
  .split--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 0;
  }
  .split--reverse .split__media {
    order: 0;
  }

  .dest,
  .reviews {
    padding: 64px 0;
  }
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 168px;
    gap: 12px;
  }
  .tile--xl {
    grid-column: span 2;
    grid-row: span 2;
  }
  .tile--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .proof__grid {
    grid-template-columns: 1fr;
    padding: 32px 26px;
  }
  .proof__item {
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.14);
    border-bottom: none;
    padding-left: 0;
    padding-top: 18px;
  }

  .tours__nav {
    display: none;
  }
  .tour {
    width: 78vw;
    max-width: 320px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  :root {
    --gutter: 18px;
  }
  .hero__title {
    font-size: 2.4rem;
  }
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .tile--xl,
  .tile--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .tile--xl .tile__place {
    font-size: 1.24rem;
  }
  .news__row {
    flex-direction: column;
  }
  .news__row .btn {
    width: 100%;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
