:root {
  --bg: #f4fbff;
  --card: #ffffff;
  --text: #162033;
  --muted: #687386;
  --line: #dce7ef;
  --blue: #178bd5;
  --blue-dark: #0c5f9f;
  --turquoise: #20c7bd;
  --sun: #ffc847;
  --leaf: #60b66b;
  --radius: 14px;
  --guide-radius: 12px;
  --guide-gap: 14px;
  --shadow: 0 18px 42px rgba(18, 78, 119, 0.1);
  --soft-shadow: 0 10px 24px rgba(18, 78, 119, 0.07);
  --plain-font: "Source Sans 3", "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(32, 199, 189, 0.16), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 44%, #f8fcff 100%);
  color: var(--text);
  font-family:
    Inter,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  width: calc(100% - 32px);
  max-width: 1240px;
  margin: 14px auto 32px;
}

.section-card,
.choice-card,
.product-card,
.route-card,
.review-card {
  min-width: 0;
  max-width: 100%;
  border: 1px solid rgba(151, 174, 195, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.2) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 26px rgba(4, 37, 66, 0.2);
  backdrop-filter: blur(10px);
}

[id] {
  scroll-margin-top: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  margin-right: 10px;
  min-width: 0;
  color: #13263e;
}

.brand-mark,
.avatar {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid #9dc7dc;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.82),
    0 4px 12px rgba(7, 88, 126, 0.12);
}

.brand-mark img {
  display: block;
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.brand-mark picture {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.1;
  color: #102339;
}

.brand small {
  color: #4c5f74;
  font-size: 13px;
}

.main-nav {
  display: flex;
  flex: 1 1 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: clamp(6px, 0.78vw, 10px);
  min-width: 0;
  margin-right: 0;
  overflow: hidden;
  color: #1e2a3c;
  font-size: clamp(11px, 0.86vw, 13px);
  font-weight: 700;
}

.main-nav a {
  flex: 0 1 auto;
  min-width: 0;
  padding: 6px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-nav a:hover,
.section-heading a:hover,
.text-button:hover {
  color: var(--blue-dark);
}

.header-actions,
.hero-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
}

.header-actions {
  margin-left: auto;
}

.site-header .header-call-button {
  min-height: 40px;
  padding: 10px 18px;
  border-color: rgba(7, 123, 181, 0.98);
  border-radius: 12px;
  background: linear-gradient(180deg, #1fb4e3 0%, #139fd2 100%);
  color: #ffffff;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 18px rgba(3, 66, 104, 0.24);
}

.site-header .header-call-button:hover {
  border-color: rgba(5, 101, 149, 0.98);
  background: linear-gradient(180deg, #1aa9d7 0%, #0f92c1 100%);
  color: #ffffff;
}

.site-header .header-call-button:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 5px 12px rgba(3, 66, 104, 0.22);
}

.site-header .header-call-button[href^="tel:"]::before {
  filter: brightness(0) invert(1);
}

.mobile-menu {
  display: none;
}

.hero-actions {
  margin-left: 0;
  margin-top: 18px;
  margin-bottom: 18px;
}

@media (min-width: 1121px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 12px;
    align-items: center;
  }

  .site-header .main-nav {
    justify-content: center;
  }

  .site-header .header-actions {
    margin-left: 0;
    justify-self: end;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(145, 164, 182, 0.55);
  border-radius: 11px;
  background: #ffffff;
  color: var(--text);
  font-weight: 900;
  white-space: nowrap;
  letter-spacing: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 9px 20px rgba(24, 75, 112, 0.08);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    border-color 150ms ease;
}

.site-header .button {
  font-size: 14px;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 139, 213, 0.7);
  box-shadow: 0 12px 24px rgba(24, 75, 112, 0.12);
}

.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #0f9ee4 0%, #19c7c7 100%);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 24px rgba(14, 142, 203, 0.2);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.94);
  color: #0e2743;
}

.button-ghost[href^="tel:"]::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e2743' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.08 4.18 2 2 0 0 1 4.06 2h3a2 2 0 0 1 2 1.72c.12.9.34 1.78.66 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.27a2 2 0 0 1 2.11-.45c.84.32 1.72.54 2.62.66A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hero-actions .button-primary {
  background: linear-gradient(135deg, #ffc83f 0%, #ffae18 100%);
  color: #12233a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 30px rgba(116, 76, 0, 0.18);
}

.hero-actions .button-ghost {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.94);
  color: #0a4773;
}

.button-small {
  width: 100%;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  font-size: 16px;
  line-height: 1;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.max-icon {
  color: #1685e8;
}

.max-icon svg {
  fill: currentColor;
}

.travel-icon {
  color: currentColor;
}

.travel-icon svg {
  fill: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 590px;
  margin-top: 14px;
  padding: 18px 42px 34px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.52);
  background: #0a7eb7;
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(11, 67, 106, 0.2);
}

.hero-header {
  position: relative;
  z-index: 3;
  margin-bottom: 24px;
}

@media (max-width: 1360px) {
  .hero-header .main-nav a:last-child {
    display: none;
  }
}

.hero-media-rotator,
.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media-rotator {
  z-index: 0;
  overflow: hidden;
  background: #d9eef7;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 900ms ease, transform 2400ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.travel-hero-mobile-image .hero-image-mobile {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.travel-hero-mobile-image .hero-image-mobile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 32, 58, 0.62) 0%, rgba(7, 67, 105, 0.46) 38%, rgba(255, 255, 255, 0.14) 66%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(3, 39, 70, 0.2) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(100%, 980px);
  min-width: 0;
  margin-top: 0;
  padding: 0;
  text-shadow: 0 2px 18px rgba(0, 25, 48, 0.36);
}

.hero-copy > * {
  max-width: 100%;
  min-width: 0;
}

.hero-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 14px;
  color: #ffffff;
  font-size: 14px;
}

.hero-contacts a,
.hero-contacts span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(0, 22, 44, 0.36);
  backdrop-filter: blur(6px);
}

.hero-contacts a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.hero-contacts a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.service-category-page .hero-actions.hero-actions-lowered {
  margin-top: 56px;
}

.hero > *,
.weather > *,
.routes-layout > *,
.choice-grid > *,
.popular-grid > *,
.route-cards > *,
.reviews-grid > * {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p,
.hero-lead,
.card-body p,
.metric small,
.muted,
.seo-intro p,
.seo-guide p,
.where-grid p,
.kids-section p,
.faq-section p,
.faq-grid p,
.review-card time,
.review-card p,
.footer-brand p,
.subscribe p,
.site-footer a,
.site-footer span,
.site-footer p,
.catalog-head p,
.content-split p,
.activity-body p,
.detail-list dd,
.service-list li,
.service-panel p,
.service-faq p,
.service-booking p,
.consent-modal__panel p,
.consent-check,
.consent-links,
.cookie-banner p,
.legal-document p,
.legal-document li {
  font-family: var(--plain-font);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: 44px;
  line-height: 1.07;
  overflow-wrap: break-word;
}

.hero h1 {
  overflow-wrap: anywhere;
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 1.03;
}

h2 {
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 1.18;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.image-placeholder::before,
.image-placeholder::after,
.recommendation-visual::before,
.recommendation-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.image-placeholder::before,
.recommendation-visual::before {
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.16), transparent 13rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 54%),
    linear-gradient(174deg, transparent 0 38%, rgba(255, 255, 255, 0.1) 38% 39%, transparent 39%);
  opacity: 0.72;
}

.quick-stats {
  display: grid;
  grid-template-columns: minmax(136px, 0.72fr) minmax(144px, 0.76fr) minmax(136px, 0.72fr) minmax(152px, 0.78fr);
  gap: 12px;
  margin-top: 0;
  padding-top: 8px;
}

.mini-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  align-items: center;
  min-width: 0;
  min-height: 76px;
  padding: 12px 12px 11px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.16) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 12px 26px rgba(4, 37, 66, 0.2);
  backdrop-filter: blur(10px);
}

.mini-icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.12) 52%),
    rgba(27, 130, 175, 0.36);
  color: #ffdf73;
  font-size: 18px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.24);
}

.mini-card span:not(.mini-icon),
.metric span,
.metric small,
.muted,
.review-card time,
.site-footer span,
.site-footer p {
  color: var(--muted);
}

.mini-card span:not(.mini-icon) {
  color: rgba(240, 248, 255, 0.9);
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.mini-card strong {
  color: #ffffff;
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(4, 25, 45, 0.3);
}

.mini-card:first-child strong,
.mini-card:nth-child(2) strong {
  font-size: 34px;
  line-height: 1;
}

.mini-card:nth-child(3) strong,
.mini-card:nth-child(4) strong {
  white-space: nowrap;
  font-size: 21px;
}

.mini-card:nth-child(4) strong {
  font-size: 19px;
}

.choice-section,
.popular-section,
.routes-section,
.reviews-section,
.seo-intro,
.seo-guide,
.where-section,
.kids-section,
.faq-section {
  padding: 30px 0 0;
}

.seo-intro,
.seo-guide,
.where-section,
.kids-section,
.faq-section {
  margin-top: 30px;
  padding: 24px 26px;
}

.seo-intro {
  margin-top: 18px;
}

.seo-intro h2,
.seo-guide h2,
.where-section h2,
.kids-section h2,
.faq-section h2 {
  margin-bottom: 10px;
}

.seo-intro p,
.seo-guide p,
.where-section p,
.kids-section p,
.faq-section p {
  color: #435064;
}

.seo-intro p,
.seo-guide p,
.kids-section p {
  max-width: 980px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.68;
}

.seo-guide p:last-child,
.kids-section p:last-child,
.seo-intro p:last-child {
  margin-bottom: 0;
}

.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.seo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid rgba(151, 174, 195, 0.42);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f1f9ff);
  color: #24415f;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.where-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.where-grid article,
.faq-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(151, 174, 195, 0.34);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
}

.where-grid article:last-child {
  grid-column: auto;
}

.where-grid h3,
.faq-grid h3 {
  font-size: 16px;
}

.where-grid p,
.faq-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.choice-section > h2,
.routes-section > h2 {
  text-align: center;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.choice-card,
.product-card,
.route-card,
.review-card {
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.image-placeholder,
.recommendation-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 112px;
  overflow: hidden;
  border-bottom: 1px solid rgba(151, 174, 195, 0.42);
  background: #eff7fb;
}

.choice-card .image-placeholder {
  overflow: visible;
  z-index: 2;
}

.choice-card .card-body {
  position: relative;
  z-index: 1;
}

.image-placeholder::after,
.recommendation-visual::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 54%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.14), transparent 7rem);
}

.sea-bg {
  --card-image: url("./fotoref/more-card.webp");
  --card-position: 55% 52%;
  --badge-bg: #1b97d8;
  background: linear-gradient(140deg, #cef6ff 0%, #65d9db 46%, #158bd2 100%);
}

.waterfall-bg {
  --card-image: url("./fotoref/vodopady-card.webp");
  --card-position: 52% 50%;
  --badge-bg: #7fc74f;
  background: linear-gradient(140deg, #ecfff9 0%, #83dfc4 46%, #2c94c7 100%);
}

.kids-bg {
  --card-image: url("./fotoref/s-detmi-card.webp");
  --card-position: 62% 50%;
  --badge-bg: #f2b816;
  background: linear-gradient(140deg, #fff7cf 0%, #ffd668 48%, #54c7b9 100%);
}

.family-main-bg {
  --card-image: url("./fotoref/family-main-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #fff7cf 0%, #ffd668 48%, #54c7b9 100%);
}

.sunset-bg {
  --card-image: url("./fotoref/vecher-card.webp");
  --card-position: 56% 50%;
  --badge-bg: #8f62d5;
  background: linear-gradient(140deg, #ffe8b8 0%, #ff9d6b 43%, #198dd2 100%);
}

.sunset-boat-bg {
  --card-image: url("./fotoref/zakat-na-katere-card.webp");
  --card-position: 62% 50%;
  background: linear-gradient(140deg, #ffe8b8 0%, #ff9d6b 43%, #198dd2 100%);
}

.route-bg {
  --card-image: url("./fotoref/ekskursii-card.webp");
  --card-position: 72% 50%;
  background: linear-gradient(140deg, #e6f6ff 0%, #96c7f1 42%, #59b56d 100%);
}

.popular-weather-today-bg {
  --card-image: url("./fotoref/popular-weather-today-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #e6f6ff 0%, #96c7f1 42%, #59b56d 100%);
}

.map-primorsky-bg {
  --card-image: url("./fotoref/map-primorsky-bulvar-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #e6f6ff 0%, #96c7f1 42%, #59b56d 100%);
}

.map-ezhik-bg {
  --card-image: url("./fotoref/map-gora-ezhik-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #eef8ff 0%, #7cb56e 42%, #4f6f89 100%);
}

.map-fort-bg {
  --card-image: url("./fotoref/map-mikhailovskoe-ukreplenie-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #f1f6ed 0%, #8db086 42%, #5f7080 100%);
}

.map-museum-bg {
  --card-image: url("./fotoref/map-museum-hleba-vina-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #fff4dc 0%, #d9b27a 42%, #7f6f5d 100%);
}

.map-sunset-beach-bg {
  --card-image: url("./fotoref/map-central-beach-sunset-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #ffe8b8 0%, #ff9d6b 43%, #198dd2 100%);
}

.map-vulan-bridge-bg {
  --card-image: url("./fotoref/map-vulan-bridge-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #e8f6f1 0%, #7ebba0 42%, #4c6f78 100%);
}

.jeep-bg {
  --card-image: url("./fotoref/dzhipping-card.webp");
  --card-position: 72% 50%;
  background: linear-gradient(140deg, #e6f2ea 0%, #74ba76 42%, #304b6a 100%);
}

.sup-bg {
  --card-image: url("./fotoref/sup-card.webp");
  --card-position: 52% 50%;
  background: linear-gradient(140deg, #e9fbff 0%, #55c8d6 44%, #207bbb 100%);
}

.diving-bg {
  --card-image: url("./fotoref/diving-card.webp");
  --card-position: 48% 44%;
  background: linear-gradient(140deg, #dffaff 0%, #42bdd3 42%, #0d5f93 100%);
}

.diving-ship-bg {
  --card-image: url("./fotoref/diving-ship-card.webp");
  --card-position: 52% 50%;
  background: linear-gradient(140deg, #d8f5ff 0%, #277fa2 43%, #0b355a 100%);
}

.stalactite-grotto-bg {
  --card-image: url("./fotoref/stalactite-grotto-card.webp");
  --card-position: 52% 50%;
  background: linear-gradient(140deg, #ecfff1 0%, #70c973 42%, #355342 100%);
}

.waterfall-stairs-bg {
  --card-image: url("./fotoref/waterfall-stairs-card.webp");
  --card-position: 58% 50%;
  background: linear-gradient(140deg, #f1fff0 0%, #73c86c 42%, #456b56 100%);
}

.eagle-rock-bg {
  --card-image: url("./fotoref/eagle-rock-card.webp");
  --card-position: 52% 50%;
  background: linear-gradient(140deg, #eef8ff 0%, #7cb56e 42%, #4f6f89 100%);
}

.silver-waterfalls-bg {
  --card-image: url("./fotoref/silver-waterfalls-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #ecfff7 0%, #70c88c 42%, #40717b 100%);
}

.speed-boat-bg {
  --card-image: url("./fotoref/speed-boat-card.webp");
  --card-position: 50% 52%;
  background: linear-gradient(140deg, #d8f9ff 0%, #55cbdc 42%, #1782c7 100%);
}

.speed-boat-3h-bg {
  --card-image: url("./fotoref/sea-trip-speed-3h-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #d8f9ff 0%, #55cbdc 42%, #1782c7 100%);
}

.classic-boat-bg {
  --card-image: url("./fotoref/classic-boat-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #e5fbff 0%, #73cfd3 42%, #3c91bd 100%);
}

.private-boat-bg {
  --card-image: url("./fotoref/private-boat-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #ffe7bd 0%, #ffae6e 42%, #277fb6 100%);
}

.sea-fishing-bg {
  --card-image: url("./fotoref/sea-fishing-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #e7faff 0%, #75c6d5 42%, #4a80a6 100%);
}

.jetski-bg {
  --card-image: url("./fotoref/jetski-card.webp");
  --card-position: 50% 52%;
  background: linear-gradient(140deg, #fff4ac 0%, #5bd0d4 42%, #1685c6 100%);
}

.dolmen-village-bg {
  --card-image: url("./fotoref/dolmen-village-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #eef8e8 0%, #72b86d 42%, #405947 100%);
}

.yin-yang-park-bg {
  --card-image: url("./fotoref/yin-yang-park-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #f0fff1 0%, #8bd082 42%, #537b69 100%);
}

.lavender-farm-bg {
  --card-image: url("./fotoref/lavender-farm-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #fbf0ff 0%, #ba91da 42%, #659a73 100%);
}

.lezginka-mountains-bg {
  --card-image: url("./fotoref/lezginka-mountains-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #fff0c8 0%, #e68c61 42%, #4f7691 100%);
}

.bus-tour-bg {
  --card-image: url("./fotoref/bus-tour-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #eff8ff 0%, #85bfde 42%, #6aa66a 100%);
}

.horse-ride-bg {
  --card-image: url("./fotoref/horse-ride-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #fff4dc 0%, #9fbe74 42%, #6d7d55 100%);
}

.enduro-bg {
  --card-image: url("./fotoref/enduro-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #f1f3e9 0%, #9d9e6b 42%, #4c5d62 100%);
}

.quad-bg {
  --card-image: url("./fotoref/quad-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #edf7e9 0%, #88b96d 42%, #4b6171 100%);
}

.pshada-waterfalls-bg {
  --card-image: url("./fotoref/pshada-waterfalls-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #eff9ec 0%, #6fb46f 42%, #3f5d4f 100%);
}

.kuago-waterfalls-bg {
  --card-image: url("./fotoref/kuago-waterfalls-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #e8fff5 0%, #68c9a2 42%, #3c6570 100%);
}

.enduro-pro-bg {
  --card-image: url("./fotoref/enduro-pro-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #f2f3e7 0%, #8d9a64 42%, #4f5a51 100%);
}

.quad-private-bg {
  --card-image: url("./fotoref/quad-private-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #eef9e9 0%, #83b86f 42%, #4f6879 100%);
}

.horse-2h-bg {
  --card-image: url("./fotoref/horse-2h-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #f3f8e4 0%, #87b579 42%, #566d55 100%);
}

.horse-3h-bg {
  --card-image: url("./fotoref/horse-3h-card.webp");
  --card-position: 50% 50%;
  background: linear-gradient(140deg, #eef7ee 0%, #8ab284 42%, #668293 100%);
}

.image-placeholder.card-photo {
  background-image:
    var(--card-image),
    linear-gradient(140deg, #eff7fb 0%, #d8ebf7 100%);
  background-size: cover;
  background-position: var(--card-position, center);
  background-repeat: no-repeat;
  filter: contrast(1.08) saturate(1.07) brightness(0.98);
}

.image-placeholder.card-photo.card-photo-lazy {
  background-image: linear-gradient(140deg, #eff7fb 0%, #d8ebf7 100%);
}

.seo-photo.card-photo {
  background-image:
    var(--card-image),
    linear-gradient(140deg, #eff7fb 0%, #d8ebf7 100%);
  background-size: cover;
  background-position: var(--card-position, center);
  background-repeat: no-repeat;
  filter: contrast(1.08) saturate(1.07) brightness(0.98);
}

.round-icon {
  position: absolute;
  top: auto;
  left: 10px;
  bottom: -17px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  background: var(--badge-bg, #1b97d8);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
  box-shadow:
    0 0 0 1px rgba(6, 44, 70, 0.14),
    0 8px 16px rgba(8, 54, 83, 0.24);
}

.card-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 16px 16px;
}

.choice-card .card-body {
  min-height: 136px;
  padding-top: 22px;
  padding-right: 58px;
}

.card-body p {
  margin-bottom: 14px;
  color: #4e5d70;
  font-size: 14px;
}

.arrow-link {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(151, 174, 195, 0.58);
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 20px;
}

.weather {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.4fr);
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  padding: 14px 16px;
  border-color: #b8d6eb;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(232, 244, 253, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(22, 92, 136, 0.08);
}

.weather-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid #c6dceb;
}

.metric:first-child {
  padding-left: 0;
}

.metric:last-child {
  border-right: 0;
}

.metric-icon {
  grid-row: span 3;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 2px;
  border-radius: 50%;
  background: #e8f5ff;
  color: #1685ca;
  line-height: 1.1;
}

.metric-icon svg,
.badge-icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon-sun {
  background: linear-gradient(145deg, #fff7ca, #ffd84a);
  color: #ffb400;
  box-shadow: 0 8px 18px rgba(245, 174, 0, 0.22);
}

.metric-icon-sea {
  background: linear-gradient(145deg, #dbf8ff, #69d7ff);
  color: #008bd6;
  box-shadow: 0 8px 18px rgba(0, 139, 214, 0.18);
}

.metric-icon-wind {
  background: linear-gradient(145deg, #eef8ff, #98dcff);
  color: #2f92d7;
  box-shadow: 0 8px 18px rgba(47, 146, 215, 0.16);
}

.metric-icon-sunset {
  background: linear-gradient(145deg, #ffe2cf, #ff8a5b 54%, #c8486a);
  color: #9f2147;
  box-shadow: 0 8px 18px rgba(200, 72, 106, 0.2);
}

.metric strong {
  color: #0f2c4f;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.weather.seo-weather-panel .metric strong {
  overflow-wrap: anywhere;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.weather.seo-weather-panel .metric small {
  white-space: normal;
}

.metric span,
.metric small {
  overflow-wrap: normal;
  white-space: nowrap;
  font-size: 12px;
  color: #506681;
}

.metric span {
  font-weight: 700;
}

.weather-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 10px 0 0;
  color: #5d7089;
  font-size: 12px;
}

.weather-updated {
  color: #36536f;
  font-weight: 800;
}

.recommendation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-self: stretch;
  align-items: start;
  padding: 9px 10px;
  border: 1px solid #a9cfeb;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(238, 248, 255, 0.96), rgba(213, 236, 252, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 22px;
  width: fit-content;
  padding: 4px 9px;
  border: 1px solid #b2cfe6;
  border-radius: 8px;
  background: #ebf5ff;
  color: #1f5f93;
  font-size: 11px;
  font-weight: 900;
}

.badge-icon {
  width: 14px;
  height: 14px;
  color: #1685ca;
  fill: rgba(22, 133, 202, 0.16);
}

.recommendation h3 {
  margin: 2px 0 0;
  color: #12345a;
  font-size: 12px;
  line-height: 1.25;
}

.recommendation-visual {
  min-height: 70px;
  border: 1px solid #95c6e6;
  border-radius: 10px;
  background-image:
    linear-gradient(90deg, rgba(232, 249, 255, 0.62) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(23, 139, 213, 0.14) 100%),
    url("./fotoref/more-card.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading a {
  color: #2d3f55;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card .image-placeholder {
  min-height: 104px;
}

.product-card .card-body {
  min-height: 190px;
}

.product-card .card-body strong {
  margin-top: auto;
  margin-bottom: 10px;
}

.routes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 22px;
  align-items: stretch;
}

.route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.route-card .image-placeholder {
  min-height: 122px;
}

.badge-float {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.text-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(151, 174, 195, 0.54);
  border-radius: 10px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.search-card {
  align-self: stretch;
  padding: 18px;
}

.search-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.search-title h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.search-row {
  display: grid;
  grid-template-columns: 90px 1fr 42px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
}

.search-row strong {
  text-align: right;
}

.bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e8ef;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--turquoise));
}

.muted {
  margin: 24px 0 0;
  font-size: 13px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.review-card {
  padding: 18px;
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.avatar {
  width: 48px;
  height: 48px;
}

.review-card h3 {
  margin-bottom: 2px;
}

.review-card time {
  font-size: 13px;
}

.stars {
  color: #f2b60f;
  font-size: 16px;
  white-space: nowrap;
}

.review-card p {
  margin-bottom: 0;
  color: #344256;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(3, minmax(180px, 0.95fr));
  gap: 24px;
  margin-top: 48px;
  padding: 28px;
  border-color: rgba(137, 161, 184, 0.48);
  background:
    linear-gradient(180deg, rgba(238, 246, 252, 0.88) 0%, rgba(232, 241, 249, 0.9) 100%),
    url("./fotoref/footer.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 28px rgba(18, 78, 119, 0.08);
}

.seo-footer {
  grid-template-columns: minmax(230px, 1.05fr) minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 0.95fr);
  align-items: start;
  gap: 30px;
}

.site-footer h3 {
  margin-bottom: 12px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #102741;
}

.site-footer a:hover {
  color: var(--blue-dark);
}

.site-footer p,
.site-footer .contact-legal,
.footer-brand p,
.subscribe p {
  color: #1d3854;
}

.site-footer .text-button {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.footer-brand p,
.subscribe p {
  font-size: 14px;
}

.contact-legal {
  max-width: 260px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border: 1px solid rgba(151, 174, 195, 0.54);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
}

.subscribe input {
  width: 100%;
  min-height: 42px;
  margin-bottom: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(151, 174, 195, 0.72);
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
}

.subscribe .button {
  width: 100%;
  border: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px;
    min-width: 0;
  }

  .main-nav {
    order: 3;
    flex: 1 0 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 13px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 6px 0;
  }

  .hero-header .main-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .hero-header .main-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-header .main-nav a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 560px;
    padding: 16px 22px 24px;
  }

  .hero-header {
    margin-bottom: 22px;
  }

  .hero-copy {
    width: min(100%, 620px);
  }

  h1 {
    font-size: 38px;
  }

  .quick-stats,
  .choice-grid,
  .weather-metrics,
  .popular-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weather,
  .routes-layout {
    grid-template-columns: 1fr;
  }

  .where-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .where-grid article:last-child {
    grid-column: auto;
  }

  .recommendation {
    grid-template-columns: 1fr 180px;
    align-items: center;
  }

  .metric {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .metric:first-child {
    padding-left: 14px;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-legal {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 16px;
  }

  [id] {
    scroll-margin-top: 16px;
  }

  .site-shell {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .site-header {
    position: relative;
    z-index: 120;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-width: 0;
    gap: 10px;
    padding: 12px;
  }

  .travel-hero-mobile-image .hero-video {
    display: none;
  }

  .travel-hero-mobile-image .hero-image-mobile {
    display: block;
  }

  .brand {
    margin-right: 0;
  }

  .brand strong {
    font-size: 18px;
  }

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

  .mobile-menu {
    display: block;
    position: relative;
    z-index: 140;
    margin-left: auto;
  }

  .mobile-menu[open] {
    z-index: 220;
  }

  .mobile-menu > summary {
    list-style: none;
  }

  .mobile-menu > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(150, 168, 185, 0.56);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.9);
    color: #102339;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  }

  .hero-header .mobile-menu-toggle {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(6, 53, 87, 0.3);
    color: #ffffff;
  }

  .mobile-menu-toggle-icon {
    position: relative;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .mobile-menu-toggle-icon::before,
  .mobile-menu-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .mobile-menu-toggle-icon::before {
    top: -6px;
  }

  .mobile-menu-toggle-icon::after {
    top: 6px;
  }

  .mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 10px;
    z-index: 230;
    display: grid;
    gap: 12px;
    width: min(360px, calc(100vw - 26px));
    max-height: calc(100dvh - 120px);
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(126, 151, 174, 0.44);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(4, 37, 66, 0.24);
  }

  .hero-header .mobile-menu-panel {
    background: rgba(244, 250, 255, 0.98);
  }

  .mobile-menu:not([open]) .mobile-menu-panel {
    display: none;
  }

  .mobile-menu-nav {
    display: grid;
    gap: 5px;
  }

  .mobile-menu-nav a {
    display: block;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    color: #17324b;
    background: rgba(235, 244, 252, 0.65);
  }

  .mobile-menu-actions {
    display: grid;
    gap: 8px;
  }

  .mobile-menu-actions .button {
    min-height: 42px;
    white-space: normal;
  }

  .hero-header .header-actions {
    display: none;
  }

  .header-actions,
  .hero-actions {
    display: grid;
    width: 100%;
  }

  .header-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 0;
    max-width: 420px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    text-align: center;
    white-space: normal;
  }

  .hero {
    padding: 12px 14px 16px;
    align-items: stretch;
    min-height: 0;
    min-width: 0;
    overflow: visible;
  }

  .hero-header {
    margin-bottom: 12px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(4, 38, 69, 0.22) 0%, rgba(4, 42, 74, 0.62) 48%, rgba(4, 35, 63, 0.82) 100%),
      linear-gradient(90deg, rgba(4, 35, 63, 0.5), rgba(255, 255, 255, 0.06));
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 11em;
    margin-bottom: 10px;
  }

  .hero-lead {
    max-width: 34ch;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .quick-stats,
  .choice-grid,
  .popular-grid,
  .route-cards,
  .reviews-grid,
  .where-grid,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .choice-section > h2,
  .routes-section > h2 {
    text-align: left;
  }

  .weather {
    gap: 12px;
    padding: 14px;
  }

  .weather-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    border-right: 0;
    border-bottom: 0;
    background: #ffffff;
  }

  .metric:first-child {
    padding-left: 10px;
  }

  .metric strong {
    font-size: 24px;
  }

  .metric span,
  .metric small {
    white-space: normal;
    font-size: 12px;
  }

  .weather-status {
    font-size: 13px;
    line-height: 1.35;
  }

  .recommendation {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 12px;
  }

  .recommendation h3 {
    font-size: 14px;
    line-height: 1.35;
  }

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

  .section-heading a {
    white-space: normal;
  }

  .review-top {
    grid-template-columns: auto 1fr;
  }

  .stars {
    grid-column: 2;
  }

  .site-footer {
    gap: 16px;
    margin-top: 28px;
    padding: 18px 14px;
  }

  .site-footer a,
  .site-footer span,
  .site-footer p {
    font-size: 13px;
  }

  .contact-legal {
    max-width: none;
    font-size: 13px;
    line-height: 1.45;
  }

  .consent-modal {
    align-items: end;
    padding: 10px;
  }

  .consent-modal__panel {
    width: 100%;
    max-height: calc(100vh - 20px);
    border-radius: 16px;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .seo-intro,
  .seo-guide,
  .where-section,
  .kids-section,
  .faq-section {
    padding: 20px 16px;
  }

  .service-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .activity-card-compact .activity-cover {
    min-height: 120px;
  }

  .activity-body {
    padding: 12px;
  }

  .activity-title-row h3 {
    font-size: 18px;
  }

  .activity-body p {
    margin: 8px 0 10px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .activity-facts {
    gap: 4px;
    font-size: 12px;
  }

  .activity-facts span:nth-child(3) {
    display: none;
  }

  .activity-tags {
    display: none;
  }

  .activity-actions {
    margin-top: 10px;
  }

  .button-small {
    min-height: 36px;
    font-size: 12.5px;
  }

  .seo-mini-card .card-body {
    min-height: auto;
  }

  .seo-page .faq-section {
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .seo-page .seo-links {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 18px 14px;
  }

  .seo-links h2 {
    font-size: 22px;
  }

  .seo-links-head {
    margin-bottom: 12px;
  }

  .seo-links-head p {
    font-size: 14px;
    line-height: 1.4;
  }

  .seo-cta {
    margin-top: 14px;
    padding: 18px 14px;
    gap: 12px;
  }

  .seo-cta .booking-actions {
    gap: 10px;
  }

  .seo-cta .booking-actions .button {
    min-height: 44px;
  }

  .krasnodar-note {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .scenario-card p,
  .step-card p,
  .trust-card p {
    line-height: 1.42;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 29px;
  }

  .hero h1 {
    max-width: 10.8em;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 6px 10px;
  }

  .search-row {
    grid-template-columns: 1fr 48px;
  }

  .search-row .bar {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .weather-metrics {
    grid-template-columns: 1fr;
  }
}

.catalog-section,
.content-split {
  margin-top: 24px;
  padding: 24px;
}

.catalog-head,
.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.8fr);
  gap: 18px 24px;
  align-items: start;
}

.catalog-head p,
.content-split p {
  max-width: 880px;
  margin-bottom: 0;
  color: #435064;
}

.catalog-eyebrow {
  color: #0f7fbf;
  text-shadow: none;
}

.filter-chips,
.content-tags,
.activity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.content-tags {
  align-self: start;
  justify-content: flex-start;
  padding: 12px;
  border: 1px solid rgba(151, 174, 195, 0.34);
  border-radius: var(--guide-radius);
  background: rgba(255, 255, 255, 0.68);
}

.filter-chips {
  margin: 22px 0 18px;
}

.chip,
.content-tags a,
.content-tags span,
.activity-tags span,
.format-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(151, 174, 195, 0.5);
  border-radius: 999px;
  background: #ffffff;
  color: #24415f;
  font-size: 13px;
  font-weight: 850;
}

.content-tags a {
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.content-tags a:hover {
  border-color: rgba(23, 139, 213, 0.56);
  background: linear-gradient(135deg, #e9f8ff, #e8fffb);
  color: #0b679f;
  box-shadow: 0 8px 18px rgba(24, 75, 112, 0.08);
}

.content-tags a:focus-visible {
  outline: 3px solid rgba(23, 139, 213, 0.28);
  outline-offset: 2px;
}

.seo-guide.content-split .content-tags {
  gap: 10px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 251, 255, 0.94));
}

.seo-guide.content-split .content-tags a {
  min-height: 34px;
  padding: 7px 12px;
  border-color: rgba(23, 139, 213, 0.34);
  background: #ffffff;
  color: #174060;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(24, 75, 112, 0.06);
}

.seo-guide.content-split .content-tags a:hover {
  border-color: rgba(23, 139, 213, 0.58);
  background: linear-gradient(135deg, #ebf8ff, #ebfffb);
  color: #0b669f;
  box-shadow: 0 10px 20px rgba(24, 75, 112, 0.1);
}

.chip {
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(24, 75, 112, 0.06);
}

.chip.is-active,
.chip:hover {
  border-color: rgba(23, 139, 213, 0.56);
  background: linear-gradient(135deg, #e9f8ff, #e8fffb);
  color: #0b679f;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.activity-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(151, 174, 195, 0.42);
  border-radius: 18px;
  background: #ffffff;
  color: inherit;
  box-shadow: 0 16px 34px rgba(18, 78, 119, 0.09);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.activity-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 139, 213, 0.42);
  box-shadow: 0 20px 42px rgba(18, 78, 119, 0.14);
}

.activity-card:focus-visible {
  outline: 3px solid rgba(23, 139, 213, 0.28);
  outline-offset: 3px;
}

.activity-cover {
  min-height: 150px;
  border-bottom: 1px solid rgba(151, 174, 195, 0.32);
}

.activity-card-compact .activity-cover {
  min-height: 118px;
}

.activity-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.activity-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.activity-title-row h3 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.2;
}

.format-badge {
  min-height: 26px;
  padding: 4px 8px;
  background: #eefaff;
  color: #0c6ea8;
  font-size: 11px;
  white-space: nowrap;
}

.activity-body p {
  margin: 10px 0 12px;
  color: #4e5d70;
  font-size: 14px;
}

.activity-facts {
  display: grid;
  gap: 6px;
  margin-top: auto;
  color: #15304f;
  font-size: 13px;
  font-weight: 850;
}

.activity-facts span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.activity-facts span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--turquoise));
}

.activity-tags {
  margin-top: 12px;
}

.activity-tags span {
  min-height: 24px;
  padding: 4px 8px;
  background: #f6fbff;
  color: #5a6f86;
  font-size: 11px;
}

.activity-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.activity-arrow {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(23, 139, 213, 0.26);
  border-radius: 999px;
  background: rgba(23, 139, 213, 0.08);
  color: #0f5c95;
  font-size: 14px;
  font-weight: 900;
}

.button-small {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}

[data-home-sections] {
  display: grid;
  gap: 30px;
  margin-top: 28px;
  min-height: 560px;
}

.home-section {
  min-width: 0;
  max-width: 100%;
}

.home-section__head {
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.home-section__head h2,
.home-family-copy h2 {
  margin-bottom: 0;
  color: #0d2d58;
  font-size: 28px;
  line-height: 1.16;
}

.home-section__head p {
  margin: 5px 0 0;
  color: #54677d;
  font-size: 14px;
}

.home-section__link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  color: #0b6fb4;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.home-section__link:hover {
  color: #084c82;
}

.home-choice-grid,
.home-directions-grid,
.home-scenarios-grid,
.home-map-grid,
.home-sea-grid,
.home-active-grid,
.home-faq-trust-grid {
  display: grid;
  min-width: 0;
  align-items: stretch;
}

.home-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-choice-tile,
.home-direction-card,
.home-route-card,
.home-service-card,
.home-scenario-card,
.home-active-card,
.home-family-links a,
.home-faq-item,
.home-trust-panel,
.home-contact-panel {
  min-width: 0;
  border: 1px solid rgba(123, 167, 202, 0.34);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 26px rgba(18, 78, 119, 0.07);
}

.home-choice-tile,
.home-scenario-card,
.home-family-links a {
  color: #17324e;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-choice-tile:hover,
.home-scenario-card:hover,
.home-family-links a:hover,
.home-direction-card:hover,
.home-route-card:hover,
.home-service-card:hover,
.home-active-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 139, 213, 0.5);
  box-shadow: 0 18px 36px rgba(18, 78, 119, 0.12);
}

.home-choice-tile:focus-visible,
.home-scenario-card:focus-visible,
.home-family-links a:focus-visible,
.home-direction-card:focus-visible,
.home-route-card:focus-visible,
.home-service-card:focus-visible,
.home-active-card:focus-visible,
.home-primary-button:focus-visible,
.home-section__link:focus-visible {
  outline: 3px solid rgba(23, 139, 213, 0.28);
  outline-offset: 3px;
}

.home-choice-tile {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 13px 16px;
  border-radius: 12px;
}

.home-choice-icon,
.home-scenario-icon,
.home-family-mini-icon {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 139, 213, 0.28);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff, #eaf7ff);
  color: var(--home-icon-color, #0c75b5);
  line-height: 1;
}

.home-choice-icon {
  width: 42px;
  height: 42px;
}

.home-scenario-icon {
  width: 38px;
  height: 38px;
}

.home-family-mini-icon {
  width: 40px;
  height: 40px;
}

.home-icon-svg {
  width: 70%;
  height: 70%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-choice-icon--family,
.home-scenario-icon--family {
  --home-icon-color: #168bd2;
}

.home-choice-icon--activity,
.home-scenario-icon--bike,
.home-family-mini-icon--food {
  --home-icon-color: #e17a26;
}

.home-choice-icon--mountains,
.home-family-mini-icon--park {
  --home-icon-color: #4c9221;
}

.home-choice-icon--sunset,
.home-scenario-icon--moon,
.home-scenario-icon--umbrella {
  --home-icon-color: #e98522;
}

.home-choice-icon--route,
.home-scenario-icon--bus,
.home-scenario-icon--wallet {
  --home-icon-color: #679b25;
}

.home-choice-tile strong,
.home-direction-card strong,
.home-route-card strong,
.home-service-card strong,
.home-scenario-card strong,
.home-active-card strong,
.home-family-links strong {
  display: block;
  min-width: 0;
  color: #102c52;
  font-weight: 950;
  line-height: 1.22;
}

.home-choice-tile small,
.home-direction-card small,
.home-route-card small,
.home-service-card small,
.home-scenario-card small,
.home-active-card small,
.home-family-links small {
  display: block;
  min-width: 0;
  color: #53667d;
  font-size: 13px;
  line-height: 1.35;
}

.home-directions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-direction-card,
.home-route-card,
.home-service-card,
.home-active-card {
  display: flex;
  overflow: hidden;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-direction-card,
.home-service-card,
.home-active-card {
  flex-direction: column;
}

.home-direction-photo,
.home-service-photo,
.home-active-photo,
.home-route-photo {
  min-height: 0;
  border-bottom: 1px solid rgba(151, 174, 195, 0.32);
}

.home-direction-photo {
  aspect-ratio: 16 / 8.2;
}

.home-direction-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 12px;
  align-items: end;
  padding: 14px;
}

.home-direction-body strong,
.home-direction-body small {
  grid-column: 1 / -1;
}

.home-direction-body small,
.home-active-body small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.home-direction-body small {
  min-height: 36px;
  -webkit-line-clamp: 2;
}

.home-mini-button,
.home-service-cta,
.home-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border: 1px solid rgba(23, 139, 213, 0.5);
  background: #ffffff;
  color: #0a69ac;
  font-weight: 950;
  text-align: center;
}

.home-mini-button {
  justify-self: end;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.home-advisor-panel {
  padding: 18px;
  border: 1px solid rgba(23, 139, 213, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 249, 255, 0.92)),
    #f4fbff;
  box-shadow: 0 16px 34px rgba(18, 78, 119, 0.06);
}

.home-scenarios-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
}

.home-scenario-card {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  min-height: 104px;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.home-scenario-card em {
  display: inline-flex;
  margin-top: 8px;
  color: #0b70b6;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.home-map-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.home-route-card {
  flex-direction: column;
  border-radius: 12px;
}

.home-route-photo {
  aspect-ratio: 16 / 9;
}

.home-route-body {
  display: grid;
  gap: 9px;
  padding: 11px;
}

.home-route-card strong {
  min-height: 38px;
  font-size: 14px;
}

.home-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 9px;
  color: #4f6176;
  font-size: 11px;
  font-weight: 850;
}

.home-route-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.home-route-meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #20a7ca;
}

.home-route-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  gap: 7px;
  align-items: center;
}

.home-route-action span {
  display: inline-flex;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 139, 213, 0.35);
  border-radius: 9px;
  color: #0a69ac;
  font-size: 12px;
  font-weight: 950;
}

.home-route-action i,
.home-active-body i {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(23, 139, 213, 0.35);
  border-radius: 50%;
  background: #f0f9ff;
  color: #0a69ac;
  font-style: normal;
  font-weight: 950;
}

.home-route-action i {
  width: 32px;
  height: 32px;
}

.home-sea-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.home-service-photo {
  aspect-ratio: 16 / 9.6;
}

.home-service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 13px;
}

.home-service-card strong {
  min-height: 38px;
  font-size: 16px;
}

.home-service-facts {
  display: grid;
  gap: 5px;
}

.home-service-facts small {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-service-facts b {
  color: #203a58;
}

.home-service-cta,
.home-primary-button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
}

.home-service-cta {
  margin-top: auto;
}

.home-family-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1fr) minmax(230px, 0.56fr);
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(197, 178, 128, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.96), rgba(238, 249, 255, 0.96)),
    #ffffff;
  box-shadow: 0 16px 34px rgba(113, 91, 44, 0.08);
}

.home-family-media {
  min-height: 230px;
  border: 0;
  border-radius: 12px;
}

.home-family-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.home-family-copy p {
  margin: 10px 0 12px;
  color: #42566d;
  font-size: 15px;
}

.home-family-copy ul,
.home-trust-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-family-copy li,
.home-trust-panel li {
  position: relative;
  padding-left: 23px;
  color: #263f5a;
  font-size: 14px;
  line-height: 1.35;
}

.home-family-copy li::before,
.home-trust-panel li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: #0a83c7;
  font-weight: 950;
}

.home-family-copy .home-primary-button {
  align-self: flex-start;
  margin-top: 14px;
  background: #0d7bd0;
  color: #ffffff;
}

.home-family-links {
  display: grid;
  gap: 10px;
  align-content: center;
}

.home-family-links a {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 4px;
  align-items: center;
  column-gap: 10px;
  padding: 12px;
  border-radius: 12px;
}

.home-family-link-copy {
  display: block;
  min-width: 0;
}

.home-family-arrow {
  color: #0a69ac;
  font-weight: 950;
}

.home-active-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-active-card {
  border-radius: 13px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.home-active-photo {
  aspect-ratio: 16 / 8.8;
}

.home-active-body {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 11px 44px 12px 12px;
}

.home-active-body small {
  -webkit-line-clamp: 2;
}

.home-active-body i {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 28px;
  height: 28px;
}

.home-faq-trust-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.78fr) minmax(260px, 0.86fr);
  gap: 16px;
}

.home-faq-column {
  display: grid;
  gap: 8px;
}

.home-faq-item {
  overflow: hidden;
  border-radius: 10px;
}

.home-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  color: #17324e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: "?";
  color: #0a69ac;
  font-weight: 950;
}

.home-faq-item[open] summary::after {
  content: "?";
}

.home-faq-item p {
  margin: 0;
  padding: 0 12px 12px;
  color: #53667d;
  font-size: 13px;
}

.home-trust-panel,
.home-contact-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 255, 0.96)),
    #ffffff;
}

.home-trust-panel h3,
.home-contact-panel h3 {
  margin-bottom: 12px;
  color: #102c52;
  font-size: 18px;
}

.home-contact-panel p {
  margin: 0 0 14px;
  color: #53667d;
  font-size: 14px;
}

.home-contact-phone {
  display: inline-flex;
  margin-bottom: 12px;
  color: #102c52;
  font-size: 22px;
  font-weight: 950;
  text-decoration: none;
}

.home-contact-panel .home-primary-button {
  background: #0d7bd0;
  color: #ffffff;
}

@media (max-width: 1120px) {
  .home-choice-grid,
  .home-directions-grid,
  .home-active-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-scenarios-grid,
  .home-map-grid,
  .home-sea-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-family-panel,
  .home-faq-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-family-media {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  [data-home-sections] {
    gap: 24px;
    margin-top: 22px;
    min-height: 320px;
  }

  .home-section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .home-section__head h2,
  .home-family-copy h2 {
    font-size: 24px;
  }

  .home-section__link {
    white-space: normal;
  }

  .home-choice-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 10px;
  }

  .home-directions-grid,
  .home-map-grid,
  .home-sea-grid,
  .home-active-grid,
  .home-scenarios-grid {
    grid-template-columns: 1fr;
  }

  .home-choice-tile {
    min-height: 72px;
    padding: 12px;
  }

  .home-direction-photo,
  .home-service-photo,
  .home-active-photo,
  .home-route-photo {
    aspect-ratio: 16 / 8.4;
  }

  .home-direction-body {
    grid-template-columns: minmax(0, 1fr);
    padding: 13px;
  }

  .home-mini-button {
    justify-self: start;
  }

  .home-advisor-panel,
  .home-family-panel {
    padding: 14px;
    border-radius: 14px;
  }

  .home-scenario-card {
    min-height: auto;
  }

  .home-family-media {
    min-height: 210px;
  }

  .home-family-copy .home-primary-button,
  .home-contact-panel .home-primary-button {
    width: 100%;
  }

  .home-contact-phone {
    font-size: 20px;
  }
}

@media (max-width: 420px) {
  .home-choice-grid {
    grid-template-columns: 1fr;
  }

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

  .home-route-action i {
    display: none;
  }
}

.activity-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(23, 139, 213, 0.28);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow: var(--shadow);
}

.activity-detail[hidden] {
  display: none;
}

.activity-detail-cover {
  min-height: 100%;
  border: 0;
  border-radius: 16px;
}

.activity-detail-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.detail-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(151, 174, 195, 0.5);
  border-radius: 50%;
  background: #ffffff;
  color: #23415f;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.activity-detail h3 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.detail-list div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(151, 174, 195, 0.34);
  border-radius: 12px;
  background: #ffffff;
}

.detail-list dt {
  color: #6a788a;
  font-size: 12px;
  font-weight: 850;
}

.detail-list dd {
  margin: 4px 0 0;
  color: #1d314d;
  font-size: 14px;
}

.service-header {
  margin-bottom: 22px;
  padding: 18px 22px;
}

.service-hero-page .site-shell {
  position: relative;
}

.service-hero-page .service-header {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 30;
  margin-bottom: 0;
  min-height: 62px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.56);
  background: linear-gradient(180deg, rgba(170, 191, 209, 0.34), rgba(154, 179, 200, 0.26));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 12px 26px rgba(4, 37, 66, 0.2);
  backdrop-filter: blur(10px);
}

.service-page {
  display: grid;
  gap: 30px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 32px;
  align-items: stretch;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 255, 0.95)),
    #ffffff;
}

.service-hero-cover {
  position: relative;
  isolation: isolate;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 560px;
  padding: 128px 28px 30px;
  border-color: rgba(151, 174, 195, 0.5);
  background-image:
    var(--card-image),
    linear-gradient(140deg, #0f3d64 0%, #2e84b8 60%, #36b7de 100%);
  background-size: cover;
  background-position: var(--card-position, center);
  background-repeat: no-repeat;
}

.service-hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 44, 0.64) 0%, rgba(8, 40, 67, 0.48) 44%, rgba(8, 37, 61, 0.62) 100%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.2), transparent 34%);
}

.service-hero-cover .service-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  min-height: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-hero-meta {
  margin-top: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-hero-cover .content-tags {
  display: none !important;
}

.service-hero-cover .catalog-eyebrow,
.service-hero-cover .service-hero-copy p {
  color: rgba(236, 245, 255, 0.96);
}

.service-hero-cover .service-hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 3px 20px rgba(4, 20, 36, 0.38);
}

.service-hero-cover .service-facts span {
  min-height: auto;
  padding: 10px 14px;
  border: 1px solid rgba(233, 242, 249, 0.54);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(15, 46, 74, 0.56), rgba(12, 38, 62, 0.46));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 20px rgba(2, 17, 31, 0.25);
  backdrop-filter: blur(7px);
  align-items: center;
  text-align: center;
}

.service-hero-cover .service-facts {
  margin: 0;
}

.service-hero-cover .service-facts strong {
  color: rgba(218, 232, 245, 0.88);
  text-align: center;
}

.service-hero-cover .service-facts em {
  color: #ffffff;
  text-align: center;
}

.service-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px 0 18px;
}

.service-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #082849;
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-hero-copy p {
  max-width: 760px;
  color: #435064;
}

.service-hero-media {
  min-height: 340px;
  border: 0;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 18px 34px rgba(11, 70, 112, 0.16);
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 14px;
}

.service-facts span {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 92px;
  padding: 14px 16px;
  border: 1px solid rgba(128, 170, 205, 0.38);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 249, 255, 0.94)),
    #ffffff;
  color: #1d314d;
  text-align: left;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(18, 78, 119, 0.07);
}

.service-facts strong {
  display: block;
  margin-bottom: 7px;
  color: #6a788a;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-facts em {
  display: block;
  color: #092946;
  font-style: normal;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.32fr);
  gap: 22px;
  align-items: start;
}

.service-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.service-panel {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(151, 174, 195, 0.34);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  box-shadow: 0 14px 30px rgba(18, 78, 119, 0.08);
}

.service-panel h2 {
  margin-bottom: 14px;
  color: #102a44;
  font-size: 28px;
}

.service-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: #35475d;
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--turquoise));
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-gallery .image-placeholder {
  min-height: 180px;
  border: 0;
  border-radius: 16px;
}

.service-faq {
  display: grid;
  gap: 12px;
}

.service-faq article {
  padding: 16px;
  border: 1px solid rgba(151, 174, 195, 0.3);
  border-radius: 14px;
  background: #ffffff;
}

.service-faq h3 {
  margin-bottom: 6px;
  color: #173653;
  font-size: 18px;
}

.service-aside {
  position: sticky;
  top: 18px;
}

.service-booking .button {
  width: 100%;
  margin: 0;
}

.service-booking p {
  color: #435064;
}

.booking-steps {
  display: grid;
  gap: 10px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  position: relative;
  min-width: 0;
  padding: 12px 12px 12px 38px;
  border: 1px solid rgba(23, 139, 213, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: #173653;
  font-weight: 850;
}

.booking-steps li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--turquoise));
  box-shadow: 0 0 0 5px rgba(23, 139, 213, 0.1);
}

.booking-actions {
  display: grid;
  gap: 10px;
}

.seo-page .service-hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 22px;
}

.seo-page .hero h1 {
  font-size: clamp(44px, 4.8vw, 62px);
}

.seo-page .hero-lead {
  font-size: 19px;
}

.seo-page .hero-actions {
  margin-top: 30px;
}

.seo-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.seo-mini-card {
  min-height: auto;
}

.seo-mini-card .card-body {
  min-height: 170px;
}

.scenario-section,
.steps-section,
.trust-section,
.weather-choice-section,
.krasnodar-plan {
  margin-top: 14px;
}

.scenario-head p {
  margin: 8px 0 0;
  color: #4a6078;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--guide-gap);
  align-items: stretch;
}

.scenario-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  min-height: 100%;
  padding: 14px;
  border: 1px solid rgba(23, 139, 213, 0.2);
  border-radius: var(--guide-radius);
  background: #ffffff;
}

.scenario-card h3 {
  margin: 0;
  color: #123758;
  font-size: 16px;
  line-height: 1.25;
}

.scenario-card p {
  margin: 0;
  color: #4e6076;
  font-size: 14px;
  line-height: 1.45;
}

.scenario-card .service-list {
  gap: 6px;
  margin-top: 0;
}

.scenario-card .service-list li {
  padding-left: 15px;
  font-size: 13.5px;
  line-height: 1.38;
}

.scenario-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  margin: auto 0 0;
  padding-top: 10px;
}

.scenario-actions .button {
  flex: 1 1 112px;
  min-width: 0;
  justify-content: center;
  min-height: 36px;
  padding: 7px 8px;
  border-radius: 10px;
  background: #f7fbfe;
  color: #14577f;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.15;
  white-space: normal;
  box-shadow: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.step-card {
  padding: 14px;
  border: 1px solid rgba(151, 174, 195, 0.34);
  border-radius: 14px;
  background: #ffffff;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: rgba(23, 139, 213, 0.12);
  color: #0f5c95;
  font-size: 12px;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.step-card p {
  margin: 0;
  color: #4a6078;
  font-size: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--guide-gap);
}

.trust-card {
  padding: 16px;
  border: 1px solid rgba(151, 174, 195, 0.34);
  border-radius: var(--guide-radius);
  background: #ffffff;
}

.trust-card h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.trust-card p {
  margin: 0;
  color: #4a6078;
  font-size: 14px;
}

.weather-choice-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.krasnodar-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.krasnodar-note {
  margin: 12px 0 0;
  color: #3d5671;
}

.seo-content-layout .faq-section,
.seo-content-layout .seo-links {
  padding: 24px;
}

.seo-page .faq-section {
  margin-top: 6px;
  margin-bottom: 8px;
}

.seo-page .seo-links {
  margin-top: 10px;
  margin-bottom: 12px;
  padding: 24px;
}

.seo-links h2 {
  margin-bottom: 8px;
  color: #102a44;
  font-size: 26px;
}

.seo-links-head {
  margin-bottom: 16px;
}

.seo-links-head p {
  margin: 6px 0 0;
  max-width: 720px;
  color: #4a6078;
  line-height: 1.35;
}

.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--guide-gap);
}

.seo-link-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title cta"
    "teaser cta";
  gap: 5px 12px;
  align-items: start;
  min-height: 88px;
  padding: 13px;
  border: 1px solid rgba(23, 139, 213, 0.22);
  border-radius: var(--guide-radius);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 78, 119, 0.06);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.seo-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 139, 213, 0.38);
  box-shadow: 0 14px 28px rgba(18, 78, 119, 0.12);
}

.seo-link-card:focus-visible {
  outline: 2px solid rgba(23, 139, 213, 0.5);
  outline-offset: 2px;
}

.seo-link-title {
  grid-area: title;
  color: #123758;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.seo-link-teaser {
  grid-area: teaser;
  color: #4c6580;
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.seo-link-cta {
  grid-area: cta;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(23, 139, 213, 0.26);
  border-radius: 50%;
  background: rgba(23, 139, 213, 0.08);
  color: #0f5c95;
  font-size: 14px;
  font-weight: 900;
}

.seo-weather-panel {
  align-items: stretch;
}

.seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title actions"
    "text actions";
  align-items: center;
  gap: 10px 18px;
  margin-top: 14px;
  padding: 22px 28px;
  scroll-margin-top: 18px;
}

.seo-cta h2 {
  grid-area: title;
  margin: 0;
  font-size: 22px;
}

.seo-cta p {
  grid-area: text;
  margin: 0;
  max-width: 640px;
}

.seo-cta .booking-actions {
  grid-area: actions;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
}

.seo-cta .booking-actions .button {
  min-height: 38px;
  padding: 8px 12px;
}

.seo-broad-page .seo-links,
.seo-service-page .seo-links {
  margin-top: 8px;
}

.seo-broad-page .seo-cta,
.seo-service-page .seo-cta {
  margin-bottom: 12px;
}

.service-aside .seo-cta {
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "text"
    "actions";
  padding: 20px;
}

.service-aside .seo-cta .booking-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
}

.service-aside .seo-cta .booking-actions .button {
  width: 100%;
}

@media (min-width: 1121px) {
  .seo-page,
  .seo-broad-page {
    gap: 28px;
  }

  .seo-page .service-layout.seo-content-layout,
  .seo-service-page .service-layout.seo-content-layout {
    display: block !important;
    grid-template-columns: none !important;
    gap: 0 !important;
  }

  .seo-content-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-content-layout .service-main {
    width: 100%;
    max-width: none;
  }

  .seo-content-layout .faq-section,
  .seo-content-layout .seo-links,
  .seo-content-layout .seo-cta {
    width: 100%;
  }

  .seo-page .service-main > *,
  .seo-broad-page > section {
    width: 100%;
    max-width: none;
  }

  .seo-page .service-main > .service-panel,
  .seo-page .service-main > .faq-section,
  .seo-page .service-main > .seo-links,
  .seo-page .service-main > .seo-cta,
  .seo-broad-page > .content-split,
  .seo-broad-page > .faq-section,
  .seo-broad-page > .seo-links,
  .seo-broad-page > .seo-cta {
    padding: 28px;
  }

  .seo-content-layout .seo-links {
    padding: 26px;
  }

  .seo-content-layout .seo-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }

  .seo-page .seo-links,
  .seo-broad-page .seo-links {
    padding: 28px;
  }

  .seo-page .seo-links-grid,
  .seo-broad-page .seo-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
  }

  .seo-page .seo-link-card,
  .seo-broad-page .seo-link-card {
    min-height: 102px;
    padding: 16px;
  }
}

@media (max-width: 780px) {
  .scenario-grid,
  .trust-grid,
  .weather-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-links-grid {
    grid-template-columns: 1fr;
  }

  .seo-page .seo-links {
    padding: 20px 16px;
  }

  .seo-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "text"
      "actions";
    gap: 10px;
    padding: 16px;
  }

  .seo-cta h2 {
    font-size: 22px;
  }

  .seo-cta .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .seo-cta .booking-actions .button {
    width: 100%;
  }
}

.is-hidden {
  display: none !important;
}

.legal-page {
  margin-top: 18px;
}

.legal-document {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
}

.legal-document h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #102a44;
  font-size: clamp(32px, 4vw, 48px);
}

.legal-document h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #102a44;
  font-size: clamp(22px, 2.4vw, 28px);
}

.legal-document p,
.legal-document li {
  color: #334055;
}

.legal-document a {
  color: var(--blue-dark);
  font-weight: 800;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(10, 30, 48, 0.48);
}

.consent-modal__panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(151, 174, 195, 0.52);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f6fbff);
  box-shadow: 0 28px 80px rgba(6, 45, 78, 0.28);
}

.consent-modal__panel h2 {
  margin-right: 34px;
  margin-bottom: 10px;
  color: #102a44;
  font-size: clamp(24px, 4vw, 32px);
}

.consent-modal__panel p {
  color: var(--muted);
}

.consent-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(145, 164, 182, 0.55);
  border-radius: 50%;
  background: #ffffff;
  color: #18304a;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.consent-check {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  margin: 16px 0;
  color: #22334a;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.consent-check a,
.consent-links a {
  color: var(--blue-dark);
  font-weight: 800;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 16px 0 4px;
  font-size: 14px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid rgba(151, 174, 195, 0.52);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 50px rgba(6, 45, 78, 0.2);
}

.cookie-banner p {
  margin: 0;
  color: #24354b;
}

.cookie-banner a {
  color: var(--blue-dark);
  font-weight: 800;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.service-category-section {
  margin-top: 0;
}

.service-category-page {
  gap: 0;
}

.service-category-page .seo-links {
  margin-top: 30px;
  padding: 24px;
}

.service-category-page .seo-links-head {
  margin-bottom: 18px;
}

.service-category-page .seo-links-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-category-page .seo-link-card {
  min-height: 104px;
  padding: 16px;
}

.service-category-page .seo-link-title {
  font-size: 15px;
}

.service-category-page .seo-link-teaser {
  font-size: 13px;
}

.service-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-selection {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-selection a {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(151, 174, 195, 0.38);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7fcff);
  color: #1a3352;
  font-weight: 900;
}

.mini-selection span {
  color: #65768b;
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .catalog-grid,
  .mini-selection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category-page .seo-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-head,
  .content-split,
  .activity-detail,
  .service-hero,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .activity-detail-cover {
    min-height: 220px;
  }

  .service-aside {
    position: static;
  }

  .service-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero-cover {
    min-height: 520px;
    padding-top: 124px;
  }
}

@media (max-width: 760px) {
  .catalog-section,
  .content-split {
    padding: 20px 16px;
  }

  .catalog-grid,
  .mini-selection,
  .service-category-grid,
  .detail-list,
  .service-facts,
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-hero,
  .service-panel {
    padding: 20px 16px;
  }

  .service-hero-page .site-shell {
    position: relative;
    margin-top: 4px;
    padding-top: 4px;
  }

  .service-hero-page .service-header {
    position: absolute;
    top: 14px;
    left: 6px;
    right: 12px;
    z-index: 170;
    overflow: visible;
    margin-bottom: 0;
    border-color: rgba(255, 255, 255, 0.52);
    background:
      linear-gradient(180deg, rgba(169, 190, 209, 0.34) 0%, rgba(150, 176, 199, 0.22) 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 10px 24px rgba(4, 37, 66, 0.2);
    backdrop-filter: blur(9px);
  }

  .service-hero-page .service-hero {
    position: relative;
    z-index: 1;
  }

  .service-hero-cover {
    min-height: 420px;
    padding-top: 106px;
    background-position: center;
  }

  .content-tags {
    padding: 10px;
  }

  .scenario-grid,
  .trust-grid,
  .weather-choice-grid {
    grid-template-columns: 1fr;
  }

  .scenario-actions .button {
    flex-basis: 100%;
  }

  .service-hero-copy h1 {
    font-size: 34px;
  }

  .seo-page .hero h1 {
    font-size: 32px;
  }

  .seo-page .hero-lead {
    font-size: 15.5px;
  }

  .seo-page .hero-actions {
    margin-top: 20px;
  }

  .service-hero-media {
    min-height: 240px;
  }

  .filter-chips {
    flex-wrap: nowrap;
    margin-right: -16px;
    padding-bottom: 6px;
    overflow-x: auto;
  }

  .chip {
    flex: 0 0 auto;
  }

  .activity-title-row,
  .activity-actions {
    grid-template-columns: 1fr;
  }

  .format-badge,
  .activity-actions .text-button {
    width: fit-content;
  }

  .activity-actions .activity-arrow {
    display: none;
  }

  .activity-actions {
    margin-top: 8px;
  }
}


