/* ===========================================================
   KUDAVAM — design tokens & global
   =========================================================== */
:root {
  /* Brand */
  --lime:        #a8c83a;
  --lime-deep:   #8fb521;
  --lime-soft:   #e6f0c6;
  --lime-tint:   #f3f7e3;
  --lime-deepest:#5e7414;

  /* Warm canvas (вдохновлено референсом) */
  --cream:       #f4eddf;
  --cream-2:     #ebe2cf;
  --cream-soft:  #f9f3e7;
  --paper:       #ffffff;

  /* Ink */
  --ink:         #16180f;
  --ink-2:       #2d2f24;
  --muted:       #7a7c6b;
  --line:        #d8d1bd;

  /* Утилитарный акцент (только для скидочных флагов) */
  --hot:         #d8463a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ===========================================================
   Top promo bar
   =========================================================== */
.promo-bar {
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 24px;
}
.promo-bar a { text-decoration: underline; text-underline-offset: 4px; }

/* ===========================================================
   Sticky nav (pill style)
   =========================================================== */
.nav {
  position: sticky; top: 12px; z-index: 50;
  padding: 0 24px;
  margin-top: 12px;
}
.nav-pill {
  max-width: 1320px;
  margin: 0 auto;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 28px;
  box-shadow: 0 12px 30px -20px rgba(50,40,10,.18);
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.logo-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--lime);
  border-radius: 12px;
  color: var(--ink);
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-word {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--ink-2);
}
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 14px;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--cream-2); color: var(--ink); }
.nav-link .chev {
  width: 12px; height: 12px; opacity: .55;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .15s ease;
}
.nav-cta:hover { background: #000; }
.nav-cta .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lime);
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-left { padding-top: 24px; }
.laurels {
  display: flex; align-items: center; gap: 48px;
  margin-bottom: 56px;
}
.laurel {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--ink-2);
}
.laurel svg { width: 56px; height: 56px; flex: none; color: var(--muted); opacity: .8; }
.laurel .num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.laurel .lbl {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(64px, 9vw, 138px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.hero-sub {
  margin-top: 18px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.hero-slogan {
  margin-top: 80px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-slogan .accent { color: var(--lime-deep); }
.hero-cta-row {
  display: flex; align-items: center; gap: 28px;
  margin-top: 56px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 22px 44px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 12px 30px -14px rgba(120,150,30,.55);
}
.btn-primary:hover { background: var(--lime-deep); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary .arrow { font-size: 18px; }

/* circular link badges */
.circle-link {
  width: 100px; height: 100px;
  position: relative;
  display: grid; place-items: center;
}
.circle-link .icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--lime);
  border-radius: 50%;
  z-index: 1;
}
.circle-link .icon svg { width: 22px; height: 22px; }
.circle-link svg.ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 16s linear infinite; }
.circle-link svg.ring text {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  fill: var(--ink-2);
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .circle-link svg.ring { animation: none; }
}

/* HERO right — 4 blob images */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 12px;
}
.blob {
  aspect-ratio: 1 / 1;
  background-size: cover; background-position: center;
  background-color: var(--cream-2);
  position: relative;
  box-shadow: 0 20px 40px -24px rgba(40,30,10,.35);
}
.blob.a { border-radius: 62% 38% 47% 53% / 52% 51% 49% 48%; }
.blob.b { border-radius: 46% 54% 67% 33% / 52% 38% 62% 48%; }
.blob.c { border-radius: 38% 62% 31% 69% / 58% 44% 56% 42%; transform: translateY(28px); }
.blob.d { border-radius: 64% 36% 56% 44% / 38% 62% 38% 62%; transform: translateY(28px); }

/* placeholder pattern (если картинку не подгрузили) */
.blob.placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.6), transparent 40%),
    linear-gradient(135deg, var(--lime-soft), var(--cream-2));
}
.blob .badge {
  position: absolute; left: 16px; top: 16px;
  background: rgba(0,0,0,.55); color: #fff;
  border-radius: 999px; padding: 6px 12px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* ===========================================================
   SEARCH BAND
   =========================================================== */
.search-band {
  position: relative;
  margin: 48px 0 0;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, transparent 0, rgba(0,0,0,.12) 40%, rgba(0,0,0,.35) 100%),
              url('/img/search-bg.jpg?v=8') center/cover;
  isolation: isolate;
}
.search-band::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,16,8,.18);
  z-index: -1;
}

.kuda-hint {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  padding: 10px 22px 10px 14px;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 18px 36px -20px rgba(0,0,0,.45);
}
.kuda-hint .q {
  display: inline-grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 16px;
}
.kuda-hint .arrow { color: var(--ink); margin-left: 4px; }

.search-card {
  background: var(--lime);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.35);
}
.search-tabs {
  display: flex; align-items: center; gap: 36px;
  padding: 10px 14px 18px;
  color: var(--ink);
  font-size: 15px; font-weight: 700;
}
.search-tab {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
  opacity: .75;
}
.search-tab[aria-selected="true"] { opacity: 1; }
.search-tab .radio {
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; position: relative;
  border: 1px solid rgba(0,0,0,.1);
}
.search-tab[aria-selected="true"] .radio::after {
  content: ''; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--ink);
}
.search-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.25fr 0.85fr 1.1fr 84px;
  gap: 10px;
}
.search-cell {
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px 14px;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 70px;
  cursor: pointer;
  transition: box-shadow .15s ease;
}
.search-cell:hover { box-shadow: 0 0 0 2px rgba(0,0,0,.06) inset; }
.search-cell .label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #8a8f80;
}
.search-cell .value {
  font-size: 16px; font-weight: 700; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.search-go {
  background: var(--ink); color: var(--lime);
  border-radius: 14px;
  display: grid; place-items: center;
  transition: transform .12s ease;
}
.search-go:hover { transform: scale(1.02); }
.search-go svg { width: 28px; height: 28px; }

.filter-row {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1fr 1.1fr;
  gap: 10px;
  padding: 0 4px;
}
.filter-cell {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  cursor: pointer;
}
.filter-cell .stars { display: inline-flex; gap: 2px; }
.filter-cell .stars span { color: #d3d6c4; font-size: 14px; }
.filter-cell .stars span.on { color: #f0a830; }
.chev { width: 12px; height: 12px; color: #9ea399; flex: none; }

/* ===========================================================
   Reusable section header
   =========================================================== */
.section {
  padding: 110px 0;
}
.section.tight { padding: 80px 0; }
.section.alt { background: var(--cream-soft); }
.section-head {
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.section-title .accent { color: var(--lime-deep); }
.section-title.center { text-align: center; }
.section-sub {
  margin-top: 16px;
  max-width: 56ch;
  font-size: 16px;
  color: var(--ink-2);
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===========================================================
   Category cards (Отдых для всех)
   =========================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 620px;
}
.cat-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  min-height: 260px;
  isolation: isolate;
}
.cat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
  z-index: -1;
}
.cat-card.tall {
  grid-row: 1 / span 2;
  min-height: 100%;
}
.cat-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.cat-card.tall .cat-name { font-size: 30px; }
.cat-pill {
  align-self: flex-start;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: background .15s ease;
}
.cat-pill:hover { background: var(--lime-deep); }

/* ===========================================================
   Featured deal (banner)
   =========================================================== */
.feature-deal {
  margin-top: 40px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, rgba(0,0,0,0) 100%),
              url('/img/deal-abkhazia.jpg') center/cover;
  display: flex; align-items: center;
}
.deal-content {
  padding: 56px;
  color: #fff;
  max-width: 560px;
}
.deal-stars {
  color: #ffb02b; font-size: 18px; letter-spacing: 4px;
  margin-bottom: 10px;
}
.deal-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}
.deal-price {
  margin-top: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.02em;
}
.deal-price small {
  font-size: 16px; font-weight: 600; opacity: .8; letter-spacing: 0.06em; text-transform: uppercase;
  margin-left: 8px;
}
.deal-meta {
  font-size: 15px; font-weight: 500; opacity: .9; margin-top: 4px;
}
.deal-row {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
}
.deal-flag {
  background: var(--hot); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em;
}
.deal-cta {
  background: #fff; color: var(--ink);
  padding: 13px 28px; border-radius: 999px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background .15s ease;
}
.deal-cta:hover { background: var(--lime); }

/* ===========================================================
   Special offers grid (hotel cards)
   =========================================================== */
.offers-filter {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.offer-card {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(40,30,10,.4);
}
.offer-img {
  aspect-ratio: 4 / 3;
  background-color: var(--cream-2);
  background-size: cover; background-position: center;
  position: relative;
}
.offer-flag {
  position: absolute; top: 12px; left: 0;
  background: var(--hot); color: #fff;
  font-weight: 800; font-size: 14px;
  padding: 6px 12px 6px 14px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
  letter-spacing: 0.02em;
}
.offer-body {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.offer-stars {
  color: #f0a830;
  font-size: 13px; letter-spacing: 2px;
}
.offer-name {
  font-size: 14px; font-weight: 700; color: var(--ink);
  line-height: 1.25;
  min-height: 2.4em;
}
.offer-meta {
  font-size: 12px; color: var(--muted);
}
.offer-price {
  margin-top: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.offer-price small {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.04em; margin-left: 4px;
}

/* ===========================================================
   Stats section (KUDAVAM сегодня)
   =========================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: 220px;
  overflow: hidden;
}
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--lime-deep);
}
.stat-lbl {
  margin-top: 16px;
  font-size: 16px; color: var(--ink-2);
  max-width: 22ch;
}
.stat-img {
  aspect-ratio: 1.4 / 1;
  background-color: var(--cream-2);
  background-size: cover; background-position: center;
  border-radius: 18px;
  width: 100%; height: 100%;
  min-height: 160px;
}

/* ===========================================================
   Reviews
   =========================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.reviews-aside .section-title { font-size: clamp(40px, 4vw, 56px); line-height: 0.95; }
.reviews-aside .btns {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-start;
}
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px;
  border-radius: 16px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-weight: 800; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
}
.btn-line:hover { background: var(--ink); color: var(--lime); }
.review-card {
  background: var(--cream-soft);
  border-radius: 20px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 240px;
}
.review-quote {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
.review-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.review-author {
  font-size: 14px; font-weight: 700; color: var(--ink);
}
.review-tag {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ===========================================================
   Quiz CTA
   =========================================================== */
.quiz {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.quiz-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 480px;
}
.quiz-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.quiz-title .accent { color: var(--lime-deep); }
.quiz-sub {
  margin-top: 20px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.quiz-image {
  aspect-ratio: 1.2 / 1;
  background-color: var(--cream-2);
  background-size: cover; background-position: center;
  border-radius: 50% 50% 50% 50% / 56% 56% 44% 44%;
}

/* decorative arcs */
.quiz::before, .quiz::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.quiz::before {
  width: 720px; height: 720px;
  left: -260px; bottom: -360px;
  background: radial-gradient(circle at center, transparent 58%, rgba(0,0,0,.04) 59%, transparent 61%);
}
.quiz::after {
  width: 520px; height: 520px;
  right: -160px; top: -200px;
  background: radial-gradient(circle at center, transparent 58%, rgba(0,0,0,.05) 59%, transparent 61%);
}

/* ===========================================================
   Directions grid
   =========================================================== */
.dirs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dir-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 18px 18px 22px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.dir-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(40,30,10,.4);
}
.dir-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 14px;
}
.dir-img {
  aspect-ratio: 16 / 11;
  background-color: var(--cream-2);
  background-size: cover; background-position: center;
  border-radius: 14px;
}
.dirs-bottom {
  margin-top: 36px;
  text-align: center;
}

/* ===========================================================
   Big CTA (Maldives)
   =========================================================== */
.big-cta {
  position: relative;
  min-height: 540px;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.45) 100%),
              url('/img/big-cta.jpg') center/cover;
  display: grid; place-items: center;
  color: #fff;
}
.big-cta-card {
  background: rgba(0,0,0,.08);
  backdrop-filter: blur(2px);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 28px;
  padding: 56px 80px;
  text-align: center;
  max-width: 560px;
}
.big-cta-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}
.big-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.big-cta-btn .play {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--lime);
  border-radius: 50%;
  font-size: 11px;
}
.big-cta-foot {
  margin-top: 22px;
  font-size: 14px; opacity: .9;
}

/* ===========================================================
   Footer
   =========================================================== */
.footer {
  background: var(--lime);
  color: var(--ink);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.footer .logo-mark { background: var(--ink); color: var(--lime); }
.footer-credo {
  margin-top: 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 22ch;
}
.footer h5 {
  margin: 0 0 16px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime-deepest);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { font-size: 15px; font-weight: 600; color: var(--ink); }
.footer ul a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 13px; color: var(--ink-2);
}
.footer-bar .legal { display: flex; gap: 20px; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { grid-template-columns: 1fr 1fr; max-width: 720px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .quiz-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; min-height: auto; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: auto; }
  .cat-card.tall { grid-row: auto; }
  .stats-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
  .offers-filter { grid-template-columns: repeat(3, 1fr); }
  .dirs-grid { grid-template-columns: repeat(3, 1fr); }
  .search-row { grid-template-columns: 1fr 1fr 1fr; }
  .search-row .search-go { grid-column: span 3; min-height: 60px; }
  .filter-row { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .container { padding: 0 18px; }
  .promo-bar { font-size: 11px; padding: 12px 18px; }
  .nav { padding: 0 12px; }
  .nav-pill { padding: 10px 12px 10px 16px; border-radius: 18px; }
  .nav-cta { padding: 12px 18px; font-size: 12px; }
  .logo-word { font-size: 17px; }
  .hero { padding: 32px 0 16px; }
  .laurels { gap: 24px; margin-bottom: 36px; flex-direction: column; align-items: flex-start; }
  .hero-slogan { margin-top: 48px; }
  .hero-cta-row { flex-wrap: wrap; gap: 18px; }
  .hero-right { grid-template-columns: 1fr 1fr; gap: 14px; }
  .section { padding: 70px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .offers-filter { grid-template-columns: 1fr 1fr; }
  .dirs-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-row { grid-template-columns: 1fr; }
  .search-row .search-go { grid-column: auto; }
  .filter-row { grid-template-columns: 1fr; }
  .stat-card { grid-template-columns: 1fr; }
  .deal-content { padding: 32px 28px; }
  .deal-name { font-size: 32px; }
  .deal-price { font-size: 40px; }
  .big-cta-card { padding: 40px 28px; }
  .big-cta-title { font-size: 32px; }
}

/* ===========================================================
   Hover-анимации на блоках с картинками + правки иконок
   =========================================================== */
.blob { transition: transform .45s ease, box-shadow .45s ease; }
.blob.c, .blob.d { transform: none; margin-top: 28px; }
.blob:hover { transform: scale(1.04); box-shadow: 0 28px 52px -22px rgba(40,30,10,.5); }

.cat-card { transition: transform .25s ease, box-shadow .3s ease; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 26px 46px -26px rgba(40,30,10,.55); }

.feature-deal { transition: transform .35s ease, box-shadow .35s ease; }
.feature-deal:hover { transform: scale(1.006); box-shadow: 0 30px 60px -28px rgba(40,30,10,.5); }

.offer-img, .dir-img, .stat-img, .quiz-image { transition: transform .5s ease; }
.dir-card { overflow: hidden; }
.offer-card:hover .offer-img { transform: scale(1.06); }
.dir-card:hover .dir-img { transform: scale(1.07); }
.stat-card:hover .stat-img { transform: scale(1.05); }
.quiz-image:hover { transform: scale(1.03); }

@media (prefers-reduced-motion: reduce) {
  .blob, .cat-card, .feature-deal, .offer-img, .dir-img, .stat-img, .quiz-image { transition: none; }
  .blob:hover, .cat-card:hover, .feature-deal:hover,
  .offer-card:hover .offer-img, .dir-card:hover .dir-img,
  .stat-card:hover .stat-img, .quiz-image:hover { transform: none; }
}

/* nav: иконка телефона у кнопки «Заказать звонок» */
.nav-cta .ph { width: 16px; height: 16px; color: var(--lime); flex: none; }
/* big CTA: чистая стрелка вместо ▸ */
.big-cta-btn .play svg { width: 12px; height: 12px; }

/* Логотип: зелёная решётка # вместо иконки-зонтика */
.logo-word .hash { color: var(--lime-deepest); margin-right: 2px; font-weight: 800; }
.kuda-hint strong { font-weight: 800; }

/* === Правки: лаймовая решётка, венки-картинки, читабельность big-CTA === */
.logo-word .hash { color: var(--lime); }
.footer .logo-word .hash { color: var(--ink); }

.laurel { gap: 12px; }
.laurel-br { height: 46px; width: auto; opacity: .9; flex: none; }

.big-cta-card {
  background: rgba(12,14,9,.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,.45);
}
.big-cta { background:
  linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.5) 100%),
  url('/img/big-cta.jpg') center/cover; }

/* Обёртка реального модуля Турвизора */
.search-embed { box-shadow: 0 30px 60px -22px rgba(0,0,0,.4); border-radius: 16px; }
.search-embed .tv-search-form { width: 100%; }

/* Якорь поиска ведёт точно на модуль (с учётом залипающего меню) */
#search { scroll-margin-top: 100px; }

/* Адрес офиса в футере */
.footer-addr { margin-top: 16px; font-size: 14px; line-height: 1.5; max-width: 30ch; color: var(--ink-2); opacity: .9; }

/* Подсказка-пилюля (без flex-gap, чтобы не было лишнего пробела после тире) */
.kuda-hint { display: inline-block; }

/* Более яркий фон секции поиска */
.search-band { background:
  linear-gradient(180deg, rgba(0,0,0,.04) 0, rgba(0,0,0,.12) 100%),
  url('/img/search-bg.jpg?v=8') center/cover; }
.search-band::after { background: rgba(0,0,0,.05); }

/* Защита от выхода блоков за края (clip не ломает sticky-меню) */
html { overflow-x: clip; }

/* BIG CTA — чистый редизайн без мутной блюр-карточки */
.big-cta {
  min-height: 580px;
  background:
    linear-gradient(180deg, rgba(8,12,6,.42) 0%, rgba(8,12,6,.20) 42%, rgba(8,12,6,.64) 100%),
    url('/img/big-cta.jpg') center/cover;
  display: grid; place-items: center;
  text-align: center; color: #fff;
}
.big-cta-inner { max-width: 660px; padding: 0 24px; }
.big-cta-eyebrow {
  font-size: 13px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.big-cta-title {
  font-family: 'Manrope', sans-serif; font-weight: 800;
  font-size: clamp(46px, 6vw, 78px); line-height: .96; letter-spacing: -.025em;
  margin: 0 0 18px; text-shadow: 0 6px 30px rgba(0,0,0,.55);
}
.big-cta-sub {
  font-size: clamp(15px, 1.6vw, 18px); line-height: 1.5; margin: 0 auto 34px;
  max-width: 32ch; opacity: .96; text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.big-cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 40px; background: var(--lime); color: var(--ink);
  border-radius: 16px; font-weight: 800; font-size: 15px;
  letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,.6);
  transition: background .15s ease, transform .15s ease;
}
.big-cta-btn:hover { background: var(--lime-deep); transform: translateY(-2px); }
.big-cta-btn .arrow { font-size: 18px; }

/* ===========================================================
   Сближение с референсом gitravel (наш лайм/лого/контент):
   Unbounded-дисплей, тонкие цифры, плоский стиль, прямоугольные фото
   =========================================================== */
.hero-title, .hero-slogan, .section-title, .quiz-title, .stat-num,
.dir-name, .cat-name, .logo-word, .laurel .num,
.big-cta-title, .big-cta-eyebrow,
.btn-primary, .nav-cta, .cat-pill, .big-cta-btn {
  font-family: 'Unbounded', 'Manrope', sans-serif;
}
.hero-title { font-size: clamp(52px, 7.4vw, 112px); letter-spacing: -0.045em; }
.section-title { letter-spacing: -0.035em; }
.quiz-title { letter-spacing: -0.035em; }
.hero-slogan { letter-spacing: -0.02em; }
.btn-primary, .nav-cta, .cat-pill, .big-cta-btn { letter-spacing: 0.03em; }

/* Тонкие крупные цифры статистики (как у референса) */
.stat-num { font-weight: 300; letter-spacing: -0.03em; }

/* Фото в hero — наши органические блобы (как и у референса), плоско без тени */
.blob, .blob:hover { box-shadow: none; }

/* Плоский стиль: контраст вместо теней */
.nav-pill { box-shadow: none; }
.stat-card, .dir-card, .offer-card { box-shadow: none; }
.dir-card:hover, .offer-card:hover { box-shadow: 0 10px 22px -16px rgba(40,30,10,.32); }
.cat-card:hover { box-shadow: none; }
.search-embed { box-shadow: 0 18px 40px -24px rgba(0,0,0,.3); }

/* ===========================================================
   Доработки по фидбэку
   =========================================================== */

/* 1) Telegram / МАКС — крупнее + реальные лого */
.circle-link { width: 132px; height: 132px; flex: none; }
.circle-link .icon { width: 52px; height: 52px; background: transparent; border-radius: 0; overflow: visible; color: var(--muted); }
.circle-link .icon svg { width: 100%; height: 100%; display: block; }
.circle-link svg.ring text { font-size: 11px; letter-spacing: 0.26em; }
.hero-cta-row { gap: 24px; }

/* 2) Hero: заголовок не наезжает на фото, блобы крупнее и по центру */
.hero-grid { grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: center; }
.hero-title { font-size: clamp(44px, 6vw, 96px); letter-spacing: -0.05em; }
.hero-right { gap: 20px; padding-top: 0; align-self: center; }
.blob.c, .blob.d { margin-top: 0; }

/* 3) Статистика: цифры компактнее, подписи не обрезаются */
.stat-card { grid-template-columns: 1fr 0.78fr; min-height: 0; overflow: visible; align-items: center; }
.stat-num { font-size: clamp(38px, 4.2vw, 62px); }
.stat-lbl { max-width: none; }
.stat-img { min-height: 150px; }

/* 4) Отзывы: широкая читаемая сетка, без сжатия и наложений */
.reviews-head { max-width: 820px; margin-bottom: 44px; }
.reviews-head .btns { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.reviews-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.reviews-cards .review-card { min-height: 0; }
.reviews-cards .review-quote { font-size: 15px; line-height: 1.6; }
.reviews-cards .review-foot { flex-direction: column; align-items: flex-start; gap: 3px; margin-top: 18px; }

/* 5) Квиз: воздух вокруг текста, кнопки и блоба */
.quiz { padding: 96px 0; }
.quiz-grid { min-height: 0; gap: 72px; align-items: center; }
.quiz-image { max-width: 500px; justify-self: end; width: 100%; }

/* 6) Big CTA: усиленный скрим — текст читается на любом фоне */
.big-cta {
  background:
    radial-gradient(ellipse 62% 72% at 50% 48%, rgba(8,12,6,.6) 0%, rgba(8,12,6,.12) 72%),
    linear-gradient(180deg, rgba(8,12,6,.5) 0%, rgba(8,12,6,.32) 45%, rgba(8,12,6,.72) 100%),
    url('/img/big-cta.jpg') center/cover;
}
.big-cta-title { text-shadow: 0 4px 32px rgba(0,0,0,.85), 0 1px 3px rgba(0,0,0,.6); }
.big-cta-eyebrow { text-shadow: 0 2px 16px rgba(0,0,0,.9); }
.big-cta-sub { text-shadow: 0 2px 16px rgba(0,0,0,.9); opacity: 1; }

@media (max-width: 1100px) {
  .reviews-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .reviews-cards { grid-template-columns: 1fr; }
  .circle-link { width: 112px; height: 112px; }
}

/* ===========================================================
   Мобильная полировка (в конце — перебивает desktop-оверрайды выше)
   =========================================================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}
@media (max-width: 760px) {
  /* Заголовки компактнее + перенос длинных слов, чтобы не вылезали */
  .section-title { font-size: clamp(24px, 7vw, 36px); overflow-wrap: anywhere; }
  .hero-title    { font-size: clamp(40px, 14vw, 66px); }
  .hero-slogan   { font-size: clamp(23px, 6.6vw, 34px); }
  .quiz-title    { font-size: clamp(26px, 7.4vw, 40px); overflow-wrap: anywhere; }
  .big-cta-title { font-size: clamp(38px, 12vw, 56px); }
  .stat-num      { font-size: clamp(34px, 11vw, 52px); }
  .reviews-head .section-title { font-size: clamp(24px, 7vw, 34px); }

  /* Статистика — одна колонка, фото снизу на всю ширину */
  .stat-card { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
  .stat-img { min-height: 160px; }

  /* Hero: блобы аккуратным центрированным 2×2 на всю ширину */
  .hero-right { grid-template-columns: 1fr 1fr; gap: 14px; max-width: 440px; margin: 0 auto; }

  /* Турвизор не адаптивен < ~700px — не ломаем страницу, скроллим внутри карточки */
  .search-embed { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; }

  /* Меньше вертикали */
  .section { padding: 54px 0; }
  .section-head { margin-bottom: 36px; }
  .quiz { padding: 56px 0; }
  .quiz-grid { gap: 36px; }
  .quiz-image { max-width: none; justify-self: stretch; }
  .big-cta { min-height: 440px; }
  .reviews-head { margin-bottom: 32px; }

  /* CTA-кружки переносятся и не жмутся */
  .hero-cta-row { flex-wrap: wrap; gap: 18px; }
  .btn-primary { padding: 18px 30px; }
}
@media (max-width: 470px) {
  .reviews-cards { grid-template-columns: 1fr; }
  .circle-link { width: 106px; height: 106px; }
  .nav-pill { padding: 10px 12px 10px 16px; }
  .promo-bar { font-size: 10.5px; letter-spacing: 0.08em; }
}

/* Шапка на узких экранах: лого и кнопка не накладываются */
@media (max-width: 540px) {
  .nav-pill { gap: 8px; padding: 9px 10px 9px 14px; }
  .logo-word { font-size: 15px; letter-spacing: 0.04em; }
  .logo-mark { width: 30px; height: 30px; }
  .nav-cta { font-size: 10px; padding: 9px 13px; letter-spacing: 0.03em; gap: 6px; white-space: nowrap; }
  .nav-cta .ph { width: 14px; height: 14px; }
}
