:root {
  color-scheme: light;
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-2: #eef7fb;
  --text: #152238;
  --muted: #5d6b80;
  --blue: #1769aa;
  --blue-dark: #114b7a;
  --teal: #0e8f87;
  --orange: #d9480f;
  --orange-dark: #c2410c;
  --green: #12805c;
  --line: #d8e2ef;
  --shadow: 0 16px 36px rgba(21, 34, 56, .10);
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
button, input, select, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; overflow-wrap: anywhere; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 48px 0; }
.section--white { background: var(--surface); }
.section--soft { background: linear-gradient(180deg, #edf7ff 0%, #f9fbff 100%); }
.section__head { margin-bottom: 20px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: var(--teal);
}
h1 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.03;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}
p { color: var(--muted); }
.lead {
  max-width: 720px;
  font-size: clamp(14px, 1.35vw, 16px);
  color: #33445e;
  line-height: 1.42;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(216,226,239,.8);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
  color: var(--text);
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 900;
}
.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: #33445e;
  font-size: 14px;
  font-weight: 700;
}
.header-actions { display: none; align-items: center; gap: 10px; }
.phone-link { font-weight: 900; color: var(--blue-dark); }
.contact-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 9px;
  overflow: hidden;
  line-height: 1;
}
.contact-icon img {
  display: block;
  width: 18px;
  height: 18px;
}
.contact-icon--max img,
.contact-icon--vk img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.contact-icon--tg {
  background: #229ed9;
  box-shadow: 0 8px 18px rgba(34,158,217,.18);
}
.contact-icon--wa {
  background: #20b85a;
  box-shadow: 0 8px 18px rgba(32,184,90,.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(23,105,170,.20);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { color: #fff; background: var(--blue-dark); transform: translateY(-1px); }
.btn--orange { background: var(--blue); }
.btn--orange:hover { background: var(--blue-dark); }
.btn--ghost {
  background: #fff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { color: var(--blue-dark); background: #eef5ff; }
.btn--wide { width: 100%; }
.btn--pulse {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(217,72,15,.34), 0 10px 20px rgba(217,72,15,.22);
  animation: ctaPulse 1.9s ease-in-out infinite;
}
.btn--pulse:hover {
  color: #fff;
  background: var(--orange-dark);
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 rgba(217,72,15,.34), 0 10px 20px rgba(217,72,15,.22); }
  70% { box-shadow: 0 0 0 10px rgba(217,72,15,0), 0 10px 20px rgba(217,72,15,.22); }
  100% { box-shadow: 0 0 0 0 rgba(217,72,15,0), 0 10px 20px rgba(217,72,15,.22); }
}

.mobile-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}
.mobile-nav a {
  padding: 10px 8px;
  background: #fff;
  color: #33445e;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 22px 0 26px;
  background:
    radial-gradient(circle at 12% 12%, rgba(14,143,135,.12), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(23,105,170,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #edf6fb 100%);
}
.hero-grid {
  display: grid;
  gap: 18px;
  align-items: start;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(216,226,239,.96);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #31415a;
  font-size: 13px;
  font-weight: 800;
}

.price-board {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(23,105,170,.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,248,255,.94)),
    radial-gradient(circle at 8% 4%, rgba(14,143,135,.12), transparent 28%);
  box-shadow: 0 12px 26px rgba(22,32,51,.09);
}
.price-board__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.price-board__head h2 {
  margin: 0;
  font-size: 17px;
}
.badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff1e8;
  color: #a33b08;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.price-card {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 170px;
  padding: 90px 10px 10px;
  border: 1px solid rgba(23,105,170,.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(22,32,51,.07);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 84px;
  background:
    radial-gradient(circle at 84% 28%, rgba(255,122,26,.52), transparent 22%),
    linear-gradient(135deg, #d8f4f6 0%, #9adbd6 40%, #1769aa 100%);
  background-position: center;
  background-size: cover;
}
.price-card--minimal::before {
  background-image: url("/assets/img/price-minimal.jpg");
}
.price-card--optimal::before {
  background-image: url("/assets/img/price-optimal.jpg");
}
.price-card--comfort::before {
  background-image: url("/assets/img/price-comfort.jpg");
}
.price-card--weekend::before {
  background-image: url("/assets/img/price-weekend.jpg");
  background-position: center 56%;
}
.price-card strong {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-size: 14px;
  line-height: 1.16;
}
.price-card .price {
  position: relative;
  z-index: 1;
  color: var(--orange-dark);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.08;
}
.price-card small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.26;
}
.price-card__updated {
  position: relative;
  z-index: 1;
  align-self: end;
  color: #66758a;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}
.price-board__note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hotel-check-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(23,105,170,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(22,32,51,.06);
}
.hotel-check-mini h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}
.hotel-check-mini p {
  margin: 0;
  color: #43546a;
  font-size: 13px;
  line-height: 1.38;
}
.hotel-check-mini .btn {
  justify-self: end;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
  white-space: nowrap;
}
.search-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  max-width: 720px;
  margin-top: 10px;
  padding: 14px;
  border-color: rgba(255,122,26,.22);
  background: rgba(255,251,246,.94);
  box-shadow: 0 8px 18px rgba(22,32,51,.06);
}
.search-mini h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}
.search-mini p {
  margin: 0;
  color: #43546a;
  font-size: 13px;
  line-height: 1.38;
}
.search-mini .btn {
  justify-self: end;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
  white-space: nowrap;
}
.search-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  max-width: 720px;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(23,105,170,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  color: #31425d;
  font-size: 13px;
  font-weight: 800;
}
.search-inline a {
  color: var(--blue);
  font-weight: 950;
}

.trust-strip {
  padding: 10px 0 8px;
  border-top: 1px solid rgba(216,226,239,.86);
  border-bottom: 1px solid rgba(216,226,239,.86);
  background: rgba(255,255,255,.94);
}
.trust-points {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.trust-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(216,226,239,.96);
  border-radius: 8px;
  background: #fff;
  color: #31415a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
}

.seo-price-copy {
  padding: 22px 0;
  background: #fff;
}
.seo-price-copy__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.seo-price-copy p {
  margin: 0;
  color: #3f5068;
  font-size: 14px;
  line-height: 1.55;
}

.package-note {
  padding: 24px 0;
  border-top: 1px solid rgba(216,226,239,.82);
  border-bottom: 1px solid rgba(216,226,239,.82);
  background:
    linear-gradient(135deg, #f9fcff 0%, #eff8f8 100%);
}
.package-note__inner {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}
.package-note h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.14;
}
.package-note__copy {
  display: grid;
  gap: 12px;
}
.package-note__copy p {
  margin: 0;
  color: #33445e;
  font-size: 14px;
  line-height: 1.55;
}
.package-note__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.package-note__items li {
  padding: 7px 10px;
  border: 1px solid rgba(23,105,170,.18);
  border-radius: 8px;
  background: #fff;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.about-hosts-section {
  padding: 38px 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(14,143,135,.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f4f9ff 100%);
}
.about-stack {
  display: grid;
  gap: 18px;
}
.about-hosts {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(216,226,239,.95);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(21,34,56,.05);
}
.about-hosts__copy h2 {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
}
.about-hosts__copy p {
  max-width: 720px;
  margin-bottom: 10px;
  color: #33445e;
  font-size: 14px;
  line-height: 1.48;
}
.about-hosts__copy .lead {
  font-size: 15px;
  line-height: 1.46;
}
.about-founder-row {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(216,226,239,.98);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 24px rgba(21,34,56,.06);
}
.about-founder {
  padding: 2px 0 2px 14px;
  border-left: 4px solid var(--teal);
}
.about-founder span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.about-founder h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.16;
}
.about-founder p {
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.48;
}
.about-founder blockquote {
  margin: 10px 0 0;
  padding: 11px 13px;
  border-radius: 8px;
  background: #eef8f6;
  color: #0b5f58;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}
.about-photo {
  position: relative;
  align-self: start;
  width: min(100%, 420px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216,226,239,.96);
  border-radius: 8px;
  background: #dbe9ef;
  box-shadow: var(--shadow);
  justify-self: center;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(10,22,35,.72));
}
.about-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 1px 10px rgba(0,0,0,.42);
}
.about-photo--family {
  align-self: center;
  justify-self: end;
  width: min(100%, 280px);
  height: clamp(280px, 27vw, 340px);
  min-height: 0;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo--family img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #eef7fb;
}
.about-photo--founder {
  width: min(100%, 250px);
  aspect-ratio: 4 / 5;
}
.about-photo--founder img {
  object-position: center top;
}

.form-card,
.card,
.note-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.form-card { padding: 16px; }
.form-card h2 {
  margin-bottom: 4px;
  font-size: 23px;
}
.form-card > p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.35;
}
.card-media {
  min-height: 122px;
  margin: -4px -4px 12px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255,122,26,.58), transparent 18%),
    linear-gradient(135deg, #cdeff5 0%, #8ed4d1 38%, #1769aa 100%);
  background-position: center;
  background-size: cover;
}
.card-media--abkhazia {
  background-image: url("/assets/img/search-form.jpg");
  background-position: center 55%;
}
.card-media--abkhazia::after {
  content: "";
  display: block;
  height: 100%;
  min-height: 122px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(12,25,42,.10));
}
.quick-form {
  padding: 14px;
}
.quick-form .card-media {
  min-height: 88px;
  margin-bottom: 9px;
}
.quick-form .card-media--abkhazia::after {
  min-height: 88px;
}
.quick-form h2 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}
.quick-form .form-grid {
  gap: 7px;
  margin-top: 0;
}
.quick-form .field {
  gap: 3px;
}
.quick-form .field label {
  font-size: 11px;
}
.quick-form .field input,
.quick-form .field select {
  min-height: 36px;
  padding: 7px 9px;
  font-size: 13px;
}
.quick-form .consent {
  margin-top: 2px;
}
.quick-form .btn {
  min-height: 42px;
  padding: 9px 14px;
}
.form-grid {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.field {
  display: grid;
  gap: 4px;
}
.field label {
  color: #31425d;
  font-size: 12px;
  font-weight: 800;
}
.field input {
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  border: 1px solid #cdd9e8;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 14px;
}
.field select,
.field textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid #cdd9e8;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  outline: none;
  font-size: 14px;
}
.field select {
  min-height: 40px;
}
.field textarea {
  min-height: 92px;
  resize: vertical;
}
.field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,105,170,.12);
}
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23,105,170,.12);
}
.check-grid {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #f8fbff;
}
.check-grid label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: #31425d;
  font-size: 13px;
  font-weight: 700;
}
.check-grid input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
}
.hotel-check-page {
  padding: 34px 0 56px;
}
.hotel-check-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}
.hotel-check-copy {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hotel-check-copy ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.hotel-check-copy li {
  padding: 10px 12px;
  border-radius: 8px;
  background: #eef7fb;
  color: #31425d;
  font-weight: 800;
}
.hotel-check-form {
  box-shadow: var(--shadow);
}
.tour-search-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22,32,51,.08);
}
.tour-search-form {
  display: grid;
  gap: 8px;
}
.tour-search-grid {
  display: grid;
  gap: 8px;
}
.tour-search-grid .field label {
  margin-bottom: 4px;
  font-size: 11px;
}
.tour-search-grid .field input,
.tour-search-grid .field select {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 13px;
}
.hotel-picker-field {
  min-width: 0;
}
.hotel-picker-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #cdd9e8;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.hotel-picker-button::after {
  content: "Выбрать";
  flex-shrink: 0;
  margin-left: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}
.hotel-picker-button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hotel-picker-button:disabled {
  cursor: not-allowed;
  opacity: .62;
}
.child-age-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.search-summary,
.search-empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  margin-top: 8px;
  padding: 10px;
  border: 1px solid #cfe1f3;
  border-radius: 8px;
  background: #eef7fb;
}
.price-card-search-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #bfd8ef;
  border-radius: 8px;
  background: #f8fcff;
}
.price-card-search-note strong,
.price-card-search-note p {
  display: block;
  margin: 0;
}
.price-card-search-note strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}
.price-card-search-note p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.price-card-search-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.price-card-search-note__actions .btn {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}
.search-summary span,
.search-empty {
  color: var(--muted);
  font-size: 12px;
}
.search-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.search-summary__actions .btn {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}
.search-status {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.tour-results {
  display: grid;
  gap: 8px;
}
.tour-result {
  overflow: hidden;
}
.tour-result summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
}
.tour-result summary strong,
.tour-result summary small {
  display: block;
}
.tour-result summary strong {
  font-size: 14px;
  line-height: 1.2;
}
.tour-result summary small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.tour-result__media {
  width: 52px;
  height: 42px;
  overflow: hidden;
  border-radius: 6px;
  background: #eef7fb;
}
.tour-result__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-result__price {
  display: grid;
  gap: 1px;
  justify-items: end;
  color: var(--orange-dark);
  font-weight: 900;
  white-space: nowrap;
}
.tour-result__price b {
  font-size: 16px;
}
.tour-result__price small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.tour-result__toggle {
  display: inline-flex;
  min-width: 96px;
  justify-content: center;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
}
.tour-result[open] .toggle-open,
.tour-result:not([open]) .toggle-close {
  display: none;
}
.tour-result__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  padding: 0 12px 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.tour-result__scope {
  width: 100%;
  color: #31425d;
  font-weight: 900;
}
.hotel-detail-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.tour-variants {
  display: grid;
  gap: 6px;
  padding: 0 10px 10px;
}
.tour-variant {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #f8fbff;
}
.tour-variant--muted {
  background: #f5f7fa;
  opacity: .88;
}
.tour-variant strong,
.tour-variant span,
.tour-variant small {
  display: block;
}
.tour-variant span {
  color: #31425d;
  font-size: 12px;
  font-weight: 800;
}
.tour-variant small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.flight-note {
  margin-top: 5px;
  color: #43546a;
  font-size: 11px;
  line-height: 1.35;
}
.tour-variant__side {
  display: grid;
  gap: 6px;
  align-items: center;
}
.tour-variant__side b {
  color: var(--orange-dark);
  font-size: 16px;
}
.show-more-tours {
  justify-self: center;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
}
.selected-offer {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #b9d6ee;
  border-radius: 8px;
  background: #f8fcff;
}
.selected-offer[hidden] {
  display: none;
}
.selected-offer__head {
  display: grid;
  gap: 8px;
  align-items: start;
}
.selected-offer__head .eyebrow {
  margin-bottom: 4px;
}
.selected-offer__head h3 {
  margin: 0;
  font-size: 18px;
}
.selected-offer__head p,
.selected-offer__note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.selected-offer__price {
  display: grid;
  gap: 2px;
  justify-items: start;
}
.selected-offer__price strong {
  color: var(--orange-dark);
  font-size: 22px;
  line-height: 1;
}
.selected-offer__price span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.selected-offer__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.selected-offer__facts span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef7fb;
  color: #31425d;
  font-size: 11px;
  font-weight: 900;
}
.selected-offer__room,
.selected-offer__details {
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #fff;
}
.selected-offer__room strong,
.selected-offer__details > strong {
  color: var(--text);
  font-size: 12px;
}
.selected-offer__room span,
.selected-offer__muted {
  color: #43546a;
  font-size: 12px;
}
.selected-offer__rows {
  display: grid;
  gap: 5px;
}
.selected-offer__row {
  display: grid;
  gap: 2px;
  padding: 7px;
  border-radius: 6px;
  background: #f5f9fd;
}
.selected-offer__row span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.selected-offer__row strong {
  color: var(--text);
  font-size: 13px;
}
.selected-offer__row small {
  color: var(--muted);
  font-size: 11px;
}
.selected-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.selected-offer__actions .btn {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 13px;
}
.selected-offer__warning {
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
}
.selected-offer__info {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}
.hotel-picker-modal[hidden] {
  display: none;
}
.hotel-picker-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
}
.hotel-picker-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21,34,56,.48);
}
.hotel-picker-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(880px, 100%);
  max-height: min(720px, calc(100vh - 36px));
  padding: 14px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(12,25,42,.24);
}
.hotel-picker-modal__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}
.hotel-picker-modal__head h2 {
  margin: 0 0 4px;
  font-size: 22px;
}
.hotel-picker-modal__head p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}
.hotel-picker-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.hotel-picker-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  gap: 8px;
  align-items: center;
}
.hotel-picker-tools input {
  width: 100%;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #cdd9e8;
  border-radius: 8px;
}
.hotel-picker-tools .btn {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 12px;
  white-space: nowrap;
}
.hotel-picker-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.hotel-picker-list {
  display: grid;
  gap: 6px;
  max-height: 390px;
  overflow: auto;
  padding-right: 4px;
}
.hotel-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 8px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #f8fbff;
  cursor: pointer;
}
.hotel-option input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
}
.hotel-option strong,
.hotel-option small {
  display: block;
}
.hotel-option strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
}
.hotel-option small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}
.hotel-picker-empty {
  padding: 12px;
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--muted);
  font-size: 13px;
}
.hotel-picker-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.hotel-picker-modal__actions .btn {
  min-height: 38px;
  padding: 8px 14px;
}
body.modal-open {
  overflow: hidden;
}
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.32;
}
.consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--blue);
}
.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}
.hotel-page {
  padding: 28px 0 50px;
}
.back-link {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}
.hotel-view {
  display: grid;
  gap: 16px;
}
.hotel-view__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
}
.hotel-view__gallery img,
.hotel-view__empty {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #eef7fb;
}
.hotel-view__gallery img {
  object-fit: cover;
}
.hotel-view__empty {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
}
.hotel-view__body {
  display: grid;
  gap: 10px;
  max-width: 880px;
}
.hotel-view__body h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}
.hotel-view__body h2 {
  margin: 8px 0 0;
  font-size: 18px;
}
.hotel-view__body p {
  margin: 0;
  color: #31425d;
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-line;
}

.split {
  display: grid;
  gap: 22px;
  align-items: center;
}
.route-steps {
  display: grid;
  gap: 10px;
}
.route-steps div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.route-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  font-weight: 900;
}
.route-steps small {
  color: var(--muted);
  font-weight: 800;
}

.grid {
  display: grid;
  gap: 14px;
}
.section__head p {
  max-width: 720px;
  margin: 0;
  color: #43546a;
  font-size: 15px;
  line-height: 1.45;
}
.card {
  padding: 16px;
}
.card p {
  margin-bottom: 0;
  line-height: 1.45;
}
.resort-grid {
  display: grid;
  gap: 14px;
}
.resort-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(22,32,51,.08);
}
.resort-card__media {
  min-height: 132px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.66), transparent 18%),
    linear-gradient(135deg, #a5e1df 0%, #4aa7b7 48%, #1769aa 100%);
  background-position: center;
  background-size: cover;
}
.resort-card--gagra .resort-card__media {
  background-image: url("/assets/img/resort-gagra.jpg");
}
.resort-card--pitsunda .resort-card__media {
  background-image: url("/assets/img/resort-pitsunda.jpg?v=24");
}
.resort-card--afon .resort-card__media {
  background-image: url("/assets/img/resort-novy-afon.jpg");
}
.resort-card--sukhum .resort-card__media {
  background-image: url("/assets/img/resort-sukhum.jpg");
}
.resort-card--ochamchira .resort-card__media {
  background-image: url("/assets/img/resort-ochamchira.jpg");
  background-position: center 58%;
}
.resort-card__body {
  display: grid;
  gap: 7px;
  padding: 13px;
}
.resort-card h3 {
  margin: 0;
  font-size: 18px;
}
.resort-card p {
  margin: 0;
  color: #43546a;
  font-size: 13px;
  line-height: 1.42;
}
.resort-card span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef8f6;
  color: #0b5f58;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.note-box {
  padding: 18px;
}

.section--reviews {
  background:
    radial-gradient(circle at 8% 0%, rgba(255,178,63,.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}
.review-grid {
  display: grid;
  gap: 14px;
}
.review-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(22,32,51,.08);
}
.review-card__top {
  position: relative;
  min-height: 116px;
  padding: 12px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.58), transparent 18%),
    linear-gradient(135deg, #bde8ec 0%, #61b8c2 48%, #1769aa 100%);
  background-position: center;
  background-size: cover;
}
.review-card__top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,35,.02), rgba(10,22,35,.20));
}
.review-card--sea .review-card__top {
  background-image: url("/assets/img/review-budget-bg.jpg");
}
.review-card--family .review-card__top {
  background-image: url("/assets/img/review-family-bg.jpg");
}
.review-card--guide .review-card__top {
  background-image: url("/assets/img/review-guide-bg.jpg?v=24");
}
.review-card--waterfalls .review-card__top {
  background-image: url("/assets/img/review-waterfalls-bg.jpg");
}
.review-card--springs .review-card__top {
  background-image: url("/assets/img/review-springs-bg.jpg");
}
.review-card__top span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #0b5f58;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.review-card__body {
  display: grid;
  gap: 8px;
  padding: 13px;
}
.review-card strong {
  color: var(--text);
  font-size: 15px;
  line-height: 1.22;
}
.review-card p {
  margin: 0;
  color: #43546a;
  font-size: 13px;
  line-height: 1.42;
}
.review-card small {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
summary {
  padding: 14px 16px;
  font-weight: 900;
  cursor: pointer;
}
details p {
  margin: 0;
  padding: 0 16px 14px;
}

.footer {
  padding: 34px 0;
  background: #132033;
  color: #fff;
}
.footer p,
.footer span {
  color: rgba(255,255,255,.72);
}
.footer-grid {
  display: grid;
  gap: 22px;
}
.footer .logo {
  color: #fff;
}
.footer-links {
  display: grid;
  gap: 8px;
}
.footer-links strong {
  color: #fff;
}
.footer-links a {
  color: rgba(255,255,255,.82);
}

.mobile-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.cookie-banner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  max-width: 360px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cookie-banner.is-visible { display: grid; }
.cookie-banner p {
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}
.cookie-banner .btn {
  min-height: 36px;
  padding: 8px 12px;
  white-space: nowrap;
}

@media (min-width: 760px) {
  .nav,
  .header-actions { display: flex; }
  .mobile-nav { display: none; }
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
    gap: 22px;
  }
  .about-hosts {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 280px);
  }
  .about-founder-row {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  }
  .split { grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resort-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.3fr .9fr .8fr; }
}

@media (min-width: 900px) {
  .hotel-check-layout {
    grid-template-columns: minmax(0, .72fr) minmax(420px, 1fr);
  }
}

@media (min-width: 760px) and (max-width: 1060px) {
  .nav { gap: 12px; }
  .header-actions { gap: 7px; }
  .phone-link { font-size: 14px; }
  .header-actions .btn--orange {
    min-height: 40px;
    padding: 9px 12px;
  }
}

@media (min-width: 980px) {
  .hero {
    padding: 20px 0 24px;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.34fr) minmax(320px, .66fr);
    gap: 24px;
    align-items: stretch;
  }
  h1 { font-size: 36px; }
  .hero h1 {
    max-width: none;
    font-size: 32px;
    line-height: 1.06;
  }
  .lead { font-size: 14px; }
  .hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
  }
  .hero-points { margin-top: 8px; }
  .hotel-check-mini {
    margin-top: auto;
    padding: 16px;
  }
  .hotel-check-mini h2 { font-size: 19px; }
  .search-mini {
    padding: 16px;
  }
  .search-mini h2 { font-size: 19px; }
  .search-inline {
    margin-top: 8px;
  }
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tour-search-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .tour-search-grid .field--wide {
    grid-column: span 2;
  }
  .search-summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .price-card-search-note {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .price-card-search-note__actions {
    justify-content: flex-end;
  }
  .tour-variant {
    grid-template-columns: minmax(0, 1fr) minmax(130px, auto);
  }
  .tour-variant__side {
    justify-items: end;
  }
  .selected-offer__head {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .selected-offer__price {
    justify-items: end;
    text-align: right;
  }
  .field--wide,
  .consent,
  .form-card .btn,
  .form-status {
    grid-column: 1 / -1;
  }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .resort-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .resort-card__media { min-height: 118px; }
  .review-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .review-card__top { min-height: 112px; }
  .about-photo--family {
    max-height: 340px;
  }
  .about-photo--founder {
    max-height: 312px;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 31px;
    white-space: nowrap;
  }
}

@media (max-width: 699px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  h1 {
    font-size: 28px;
    line-height: 1.08;
  }
  h2 { font-size: 24px; }
  .lead {
    font-size: 16px;
    line-height: 1.45;
  }
  .hero {
    padding: 24px 0 30px;
  }
  .about-hosts-section {
    padding: 34px 0;
  }
  .about-hosts {
    padding: 12px;
  }
  .about-photo--family {
    justify-self: center;
    width: min(100%, 300px);
    height: 330px;
  }
  .about-founder {
    padding: 0 0 0 12px;
  }
  .about-founder-row {
    padding: 12px;
  }
  .about-photo--founder {
    width: min(100%, 220px);
  }
  .price-grid { grid-template-columns: 1fr; }
  .resort-card__media { min-height: 150px; }
  .review-card__top { min-height: 138px; }
  .hotel-check-mini { grid-template-columns: 1fr; }
  .hotel-check-mini .btn { width: 100%; }
  .search-mini { grid-template-columns: 1fr; }
  .search-mini .btn { width: 100%; }
  .trust-strip {
    padding: 8px 0;
  }
  .trust-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
  .trust-points li {
    min-height: 27px;
    padding: 5px 7px;
    font-size: 11px;
  }
  .seo-price-copy {
    padding: 18px 0;
  }
  .seo-price-copy__inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .seo-price-copy p {
    font-size: 13px;
    line-height: 1.5;
  }
  .package-note {
    padding: 20px 0;
  }
  .package-note__inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .package-note h2 {
    font-size: 23px;
  }
  .package-note__copy p {
    font-size: 13px;
    line-height: 1.5;
  }
  .package-note__items {
    gap: 6px;
  }
  .package-note__items li {
    padding: 6px 8px;
    font-size: 11px;
  }
  .child-age-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-result summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .tour-result__media {
    display: none;
  }
  .tour-result__toggle {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .tour-result__price {
    font-size: 14px;
  }
  .hotel-picker-modal {
    align-items: end;
    padding: 10px;
  }
  .hotel-picker-modal__panel {
    max-height: calc(100vh - 20px);
    padding: 12px;
  }
  .hotel-picker-modal__head h2 {
    font-size: 19px;
  }
  .hotel-picker-tools {
    grid-template-columns: 1fr;
  }
  .hotel-picker-tools .btn {
    width: 100%;
  }
  .hotel-picker-list {
    max-height: 48vh;
  }
  .hotel-picker-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hotel-view__body h1 {
    font-size: 24px;
  }
  .hero-points {
    display: none;
  }
  .section {
    padding: 36px 0;
  }
  .mobile-sticky.is-visible {
    display: grid;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 70px;
    max-width: none;
  }
  body.has-mobile-sticky {
    padding-bottom: 68px;
  }
}
