:root {
  --green: #157751;
  --dark: #001125;
  --line: #dee7f2;
  --text: #001125;
  --container: 1410px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
button, input { font: inherit; }
button { cursor: pointer; border: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.btn {
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 30px;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .56px;
  white-space: nowrap;
}
.btn.ghost {
  color: var(--green);
  background: #fff;
  border: 1px solid rgba(21,119,81,.25);
}

.hero {
  position: relative;
  height: 960px;
  color: #fff;
  background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("assets/hero-desktop.png") center bottom / cover no-repeat;
}
.header {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  height: 45px;
  margin: 0 auto;
  top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { width: 249.6px; height: 45px; }
.logo img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav {
  display: flex;
  gap: 30px;
  opacity: .7;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .56px;
}
.desktop-nav a.active { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 30px; }
.contacts-mini { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.contacts-mini a:first-child {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .8px;
}
.contacts-mini a:last-child { font-size: 12px; text-decoration: underline; }
.menu-btn { display: none; background: transparent; width: 32px; height: 32px; padding: 0; }

.hero-content {
  position: absolute;
  left: 50%;
  top: 378px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.hero-content h1 {
  margin: 0 0 20px;
  font-family: "Comfortaa", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-content p { margin: 0; white-space: nowrap; }
.hero-benefits {
  position: absolute;
  left: 50%;
  top: 807px;
  width: 860px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  color: #fff;
  text-align: center;
}
.hero-benefits div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-align: left;
}
.hero-benefits img {
  width: 40px;
  height: 40px;
}
.hero-benefits span {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .64px;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-top: 48px;
}
.section-title {
  position: relative;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.section-title img {
  position: absolute;
  width: 102px;
  height: 120px;
  opacity: .9;
  z-index: -1;
  transform: rotate(180deg);
}
.section-title h2 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.section-title p { margin: 0; font-size: 14px; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 30px;
  margin-top: 30px;
}
.image-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}
.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(24deg, #000 4%, rgba(0,0,0,.65) 42%, rgba(0,0,0,0) 83%);
}
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .64px;
}
.image-card.event-big {
  grid-row: span 2;
  min-height: 470px;
}
.image-card small {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .42px;
}

.ship-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.ship-grid .image-card { height: 350px; }
.chips {
  position: absolute;
  left: 20px;
  top: auto;
  bottom: 30px;
  z-index: 1;
  display: flex;
  gap: 16px;
}
.ship-grid .image-card span {
  bottom: 72px;
}
.chips b {
  height: 30px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.31);
  border-radius: 8px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(7.5px);
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.12px;
}
.chips img { width: 14px; height: 14px; }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}
.compare-card {
  position: relative;
  height: 290px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}
.compare-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #000 0%, #000 34%, rgba(0,0,0,.82) 58%, rgba(0,0,0,0) 100%);
}
.compare-card img { width: 100%; height: 100%; object-fit: cover; }
.compare-card div {
  position: absolute;
  z-index: 1;
  top: 29px;
  width: 46%;
}
.compare-water div { right: 76px; }
.compare-rest div { right: 133px; width: 33%; }
.compare-card h3, .service-grid h3, .text-section h3 {
  margin: 0 0 5px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.compare-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-card li {
  position: relative;
  padding-left: 22px;
}
.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  background: url("assets/check.svg") center / contain no-repeat;
}
.service-grid p { margin: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.service-grid article {
  min-height: 440px;
  padding: 0 15px 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
}
.service-icon {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.service-grid strong {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.service-grid .btn { margin-top: 24px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) {
  grid-column: span 4;
  height: 300px;
}
.gallery-grid img:nth-child(7) {
  grid-column: span 3;
  height: 220px;
}
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6) {
  grid-column: span 3;
}

.reviews-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 70px auto 40px;
}
.review-photo, .review-card {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 8px;
}
.review-photo { border-radius: 8px 0 0 8px; }
.review-card {
  height: 800px;
  border: 1px solid #d6dbe0;
  border-radius: 0 8px 8px 0;
}
.yandex-reviews-widget {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  border: 1px solid #d6dbe0;
  border-radius: 0 8px 8px 0;
  background: #fff;
}
.yandex-reviews-widget iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.yandex-reviews-widget a {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: hidden;
  color: #b3b3b3;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq { text-align: center; }
.faq-page .faq { padding-bottom: 80px; }
.faq-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; text-align: left; }
details {
  border: 0;
  background:
    linear-gradient(90deg, var(--line) 50%, transparent 0) top / 16px 1px repeat-x,
    linear-gradient(90deg, var(--line) 50%, transparent 0) bottom / 16px 1px repeat-x,
    linear-gradient(0deg, var(--line) 50%, transparent 0) left / 1px 16px repeat-y,
    linear-gradient(0deg, var(--line) 50%, transparent 0) right / 1px 16px repeat-y;
  border-radius: 8px;
  padding: 20px 22px;
}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .64px;
  cursor: pointer;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "⌄"; color: var(--dark); }
details[open] summary::after { transform: rotate(180deg); }
details p { max-width: 1148px; margin: 10px 0 0; }

.text-section {
  padding: 58px 0 80px;
}
.text-section h2 {
  margin: 0 0 10px;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.text-section p { margin: 0 0 30px; }
.text-section ul {
  margin: -20px 0 30px;
  padding-left: 21px;
}
.text-section li {
  margin-bottom: 0;
}

.footer {
  background: var(--dark);
  color: #fff;
}
.footer-main {
  width: min(var(--container), calc(100% - 40px));
  min-height: 550px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.footer-info h2 {
  margin: 0 0 10px;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.footer-info > p { margin: 0 0 48px; }
.footer-info span { display: block; margin-top: 28px; }
.footer-info a {
  display: block;
  margin-top: 5px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .64px;
}
.socials { display: flex; gap: 20px; margin: 28px 0 10px; }
.socials a {
  width: 32px;
  height: 32px;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.socials img,
.socials svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.footer-info .socials-note {
  max-width: 420px;
  margin: 0 0 28px;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255,255,255,.64);
}
.about { max-width: 690px; }
.footer-map { width: 690px; height: 399px; object-fit: cover; border-radius: 8px; }
.footer-bottom {
  min-height: 60px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  background: #000b19;
  opacity: .9;
  font-size: 10px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.footer-bottom a { text-decoration: underline; }

.mobile-menu, .modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}
.mobile-menu-panel {
  width: 100%;
  min-height: 100%;
  transform: translateX(-100%);
  transition: transform .38s ease;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
}
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-head {
  height: 62px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu-head img:first-child { width: 172px; height: 31px; object-fit: contain; filter: brightness(0) saturate(100%) invert(6%) sepia(56%) saturate(2591%) hue-rotate(194deg) brightness(91%) contrast(104%); }
.icon-btn, .modal-close { background: transparent; padding: 0; width: 32px; height: 32px; }
.mobile-menu nav {
  margin-top: 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  color: var(--dark);
  opacity: .7;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  letter-spacing: .56px;
}
.mobile-menu-contact {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.mobile-menu-contact a:first-child {
  font-family: "Comfortaa", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .8px;
}
.mobile-menu-contact a:nth-child(2) { margin-bottom: 25px; font-size: 12px; text-decoration: underline; }
.mobile-menu-contact .btn { width: 100%; }

.modal {
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 17, 37, .45);
  opacity: 0;
  transition: opacity .25s ease;
}
.modal.is-open { opacity: 1; pointer-events: auto; }
.modal-card {
  position: relative;
  width: 550px;
  min-height: 450px;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}
.modal-close { position: absolute; right: 15px; top: 15px; z-index: 2; }
.modal-close img { width: 32px; height: 32px; object-fit: contain; }
.modal-mark {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 102px;
  height: 120px;
  transform: translateX(-50%) rotate(180deg);
  opacity: .45;
  z-index: 0;
  pointer-events: none;
}
.request-view,
.thanks-view {
  position: relative;
  z-index: 1;
}
.modal-card h2 {
  margin: 52px 0 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 2.08px;
}
.modal-card p { margin: 0; opacity: .8; }
.request-form {
  width: 420px;
  margin: 45px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.request-form label {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid #f5f8fa;
  border-radius: 8px;
  background: #fefeff;
}
.request-form label img { width: 12px; height: 12px; }
.request-form input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--dark);
  background: transparent;
  font-size: 12px;
  letter-spacing: .36px;
}
.agree {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 15px;
  text-align: left;
  cursor: pointer;
}
.agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.agree span {
  width: 24px;
  min-width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #f5f8fa;
}
.agree img {
  width: 13px;
  height: 13px;
  opacity: 0;
}
.agree input:checked + span img { opacity: 1; }
.agree p { font-size: 12px; font-weight: 300; letter-spacing: .36px; }
.request-form .btn { width: 100%; margin-top: 26px; }
.thanks-view { padding-top: 1px; }
.thanks-view .btn { width: 420px; margin-top: 75px; }
.modal-card.is-thanks { min-height: 280px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 60px 90px;
  background: rgba(0, 17, 37, .88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-photo {
  display: block;
  width: min(1100px, calc(100vw - 180px));
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 8px;
  object-fit: contain;
  content: normal !important;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
}
.lightbox-close img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--dark);
  font-size: 42px;
  line-height: 1;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.catalog-header {
  width: min(var(--container), calc(100% - 40px));
  height: 105px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark);
}
.catalog-header .desktop-nav a.active { color: var(--green); }
.catalog-page { padding-top: 56px; }
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 49px;
  font-size: 12px;
  letter-spacing: .36px;
}
.breadcrumbs a,
.breadcrumbs b {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border: 2px solid #f2f8ff;
  border-radius: 16px;
  font-weight: 400;
}
.breadcrumbs a { background: #f5f8fa; }
.breadcrumbs span {
  width: 9px;
  height: 5px;
  background: url("assets/breadcrumb-arrow.svg") center / contain no-repeat;
}
.catalog-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 78px;
}
.catalog-tabs-section {
  padding-bottom: 30px;
}
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 28px;
}
.catalog-tab {
  min-width: 180px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .56px;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.catalog-tab span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f8fa;
}
.catalog-tab img {
  width: 22px;
  height: 22px;
}
.catalog-tab.is-active {
  border-color: rgba(21,119,81,.3);
  color: var(--green);
  box-shadow: 0 12px 28px rgba(0,17,37,.07);
}
.catalog-tab.is-active img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(79%) saturate(421%) hue-rotate(105deg) brightness(89%) contrast(91%);
}
.catalog-section .section-title { margin-bottom: 30px; }
.catalog-subtabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -8px auto 24px;
}
.catalog-subtab {
  min-width: 160px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  font-family: "Comfortaa", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .52px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.catalog-subtab.is-active {
  border-color: rgba(21,119,81,.3);
  color: var(--green);
  box-shadow: 0 12px 28px rgba(0,17,37,.07);
}
.catalog-empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0,17,37,.72);
}
.catalog-section .section-title h1,
.catalog-section .section-title h2 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.catalog-section .section-title p { max-width: 900px; }
.catalog-sort {
  margin: -8px 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .36px;
}
.catalog-sort-dropdown {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
}
.catalog-sort-dropdown summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.catalog-sort-dropdown summary::after {
  content: "↓";
  color: currentColor;
}
.catalog-sort-dropdown[open] summary::after {
  transform: rotate(180deg);
}
.catalog-sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border: 2px solid #f2f8ff;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 17, 37, .12);
  text-align: left;
}
.catalog-sort-dropdown[open] .catalog-sort-menu {
  display: flex;
}
.catalog-sort-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
}
.catalog-sort-menu a:hover,
.catalog-sort-menu a.active {
  background: #f2f8ff;
  color: var(--green);
}
.boat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.boat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: visible;
  border-radius: 0;
  color: var(--dark);
  text-decoration: none;
}
.boat-card::after {
  content: none;
}
.boat-card > img {
  width: 100%;
  aspect-ratio: 1.185 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.boat-card > div {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}
.boat-card h3,
.boat-card strong {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.boat-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}
.boat-card span {
  min-height: 30px;
  height: auto;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #f2f4f6;
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.12px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.boat-card span img {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%);
}
.boat-card span:nth-child(2) img { transform: rotate(90deg); }
.catalog-text { padding-top: 0; }

.product-page {
  padding-top: 30px;
}
.product-breadcrumbs {
  width: min(var(--container), calc(100% - 40px));
  justify-content: flex-start;
  margin: 0 auto 37px;
}
.product-breadcrumbs a:nth-of-type(2) {
  background: #f5f8fa;
}
.product-hero {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 930px 450px;
  gap: 30px;
  align-items: start;
}
.product-hero-photo {
  width: 930px;
  height: 634px;
  border-radius: 8px;
  object-fit: cover;
}
.product-info {
  min-height: 634px;
  display: flex;
  flex-direction: column;
  color: var(--dark);
}
.product-title {
  margin-bottom: 34px;
}
.product-title p,
.product-price p,
.product-specs span,
.pier-info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.product-title h1,
.product-price strong {
  display: block;
  margin: 10px 0 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.product-specs {
  display: flex;
  gap: 40px;
  margin-bottom: 49px;
}
.product-specs div {
  min-width: 70px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-specs strong,
.pier-info strong {
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.12px;
  white-space: normal;
  overflow-wrap: anywhere;
}
.product-description {
  min-height: 264px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.product-description p {
  margin: 0 0 21px;
}
.product-price {
  margin-top: auto;
  margin-bottom: 27px;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.pier-info {
  min-width: 0;
  max-width: 260px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.pier-info > span {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}
.pier-info img {
  width: 21px;
  height: 21px;
}
.pier-info div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.product-gallery-section {
  padding-top: 80px;
}
.product-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 30px;
}
.product-gallery img {
  width: 100%;
  height: 358px;
  object-fit: cover;
  cursor: pointer;
}
.product-gallery img:nth-child(1),
.product-gallery img:nth-child(2),
.product-gallery img:nth-child(6),
.product-gallery img:nth-child(7) {
  grid-column: span 3;
  height: 359px;
}
.product-gallery img:nth-child(3),
.product-gallery img:nth-child(4),
.product-gallery img:nth-child(5) {
  grid-column: span 2;
}
.product-faq {
  padding-top: 80px;
}
.product-faq .faq-list {
  margin-top: 30px;
  margin-bottom: 0;
  gap: 16px;
}
.product-related {
  padding-top: 90px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.related-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}
.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.71) 31.5%, rgba(0,0,0,0) 45.1%);
}
.related-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card > div {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.related-card h3 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.related-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.related-chips {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.related-chips span {
  height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.31);
  border-radius: 8px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(7.5px);
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.12px;
  white-space: nowrap;
}
.related-chips img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
}
.product-text {
  padding-top: 80px;
}

.contacts-page {
  padding-top: 30px;
}
.contacts-breadcrumbs {
  margin-bottom: 47px;
}
.contacts-section,
.contacts-help {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.contacts-section .section-title h1 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.contacts-layout {
  display: grid;
  grid-template-columns: 690px 690px;
  gap: 30px;
  margin-top: 50px;
}
.contacts-info-block {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-row > span {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}
.contact-row img {
  width: 22px;
  height: 22px;
}
.contact-row div,
.requisites > div:not(.requisites-top),
.requisites-top > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-row p,
.requisites p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.contact-row strong,
.contact-row a,
.requisites strong {
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.contact-row a {
  text-decoration: underline;
}
.contacts-map {
  width: 690px;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}
.requisites {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.requisites .requisites-top {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  gap: 30px;
}
.contacts-help {
  padding: 80px 0 80px;
}
.contacts-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.contacts-form label,
.contacts-form textarea {
  min-width: 0;
  height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 15px;
  border: 1px solid #f5f8fa;
  border-radius: 8px;
  background: #f5f8fa;
}
.contacts-form label img {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}
.contacts-form input,
.contacts-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dark);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .36px;
}
.contacts-form input::placeholder,
.contacts-form textarea::placeholder {
  color: var(--dark);
  opacity: 1;
}
.contacts-form textarea {
  grid-column: 1 / -1;
  height: 90px;
  resize: none;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px #f5f8fa;
}
.contacts-agree {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(560px, 100%);
  height: auto !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer;
}
.contacts-agree input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contacts-agree span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee7f2;
  border-radius: 4px;
  background: #fff;
}
.contacts-agree img {
  width: 13px !important;
  height: 10px !important;
  opacity: 0;
}
.contacts-agree input:checked + span img {
  opacity: 1;
}
.contacts-agree p {
  max-width: 430px;
  margin: 0;
  color: var(--dark);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: .36px;
}
.contacts-form .btn {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 160px;
}

.about-page {
  padding-top: 30px;
}
.about-breadcrumbs {
  margin-bottom: 47px;
}
.about-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 80px;
}
.about-section .section-title h1 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.about-layout {
  display: grid;
  grid-template-columns: 810px 570px;
  gap: 30px;
  margin-top: 50px;
  align-items: start;
}
.about-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.about-block h2 {
  margin: 0 0 5px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.about-block p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.about-block p + p {
  margin-top: 10px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 210px);
  gap: 30px;
}
.about-stats strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.about-stats p {
  margin: 0;
}
.about-texts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-photo {
  width: 570px;
  height: 660px;
  object-fit: cover;
  border-radius: 8px;
}
.about-clients {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  height: 2287px;
  margin: 36px auto 80px;
}
.about-client-photo {
  position: absolute;
  display: block;
  object-fit: cover;
}
.about-client-photo--1 { left: 0; top: 4px; width: 343px; height: 428px; }
.about-client-photo--2 { left: 346px; top: 0; width: 478px; height: 413px; }
.about-client-photo--3 { left: 826px; top: 0; width: 584px; height: 661px; }
.about-client-photo--4 { left: 0; top: 434px; width: 342px; height: 378px; }
.about-client-photo--5 { left: 344px; top: 416px; width: 479px; height: 722px; }
.about-client-photo--6 { left: 825px; top: 663px; width: 344px; height: 460px; }
.about-client-photo--7 { left: 1171px; top: 663px; width: 239px; height: 318px; }
.about-client-photo--8 { left: 0; top: 1140px; width: 823px; height: 618px; }
.about-client-photo--9 { left: 0; top: 814px; width: 342px; height: 324px; }
.about-client-photo--10 { left: 825px; top: 1125px; width: 343px; height: 437px; }
.about-client-photo--11 { left: 1171px; top: 983px; width: 239px; height: 318px; }
.about-client-photo--12 { left: 825px; top: 1564px; width: 584px; height: 328px; }
.about-client-photo--13 { left: 1170px; top: 1303px; width: 241px; height: 259px; }
.about-client-photo--14 { left: 0; top: 1760px; width: 210px; height: 274px; }
.about-client-photo--15 { left: 0; top: 2036px; width: 210px; height: 251px; }
.about-client-photo--16 { left: 212px; top: 1760px; width: 611px; height: 527px; }
.about-client-photo--17 { left: 825px; top: 1894px; width: 584px; height: 393px; }

.travels-page {
  padding-top: 30px;
}
.travels-breadcrumbs {
  margin-bottom: 47px;
}
.travels-section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.travels-section .section-title h1 {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.travels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.travel-card {
  position: relative;
  display: block;
  height: 380px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
}
.travel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,.71) 24%, rgba(0,0,0,0) 45%);
}
.travel-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.travel-card > div {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.travel-card h2,
.travel-card strong {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.travel-card span {
  width: fit-content;
  height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(7.5px);
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.12px;
}
.travel-card span img {
  width: 16px;
  height: 16px;
}
.travels-text {
  padding-top: 80px;
}

.travel-detail-page {
  padding-top: 30px;
}
.travel-detail-breadcrumbs {
  width: min(var(--container), calc(100% - 40px));
  justify-content: flex-start;
  margin: 0 auto 37px;
}
.travel-detail-breadcrumbs a:nth-of-type(2) {
  background: #f5f8fa;
}
.travel-detail-hero {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 690px 450px;
  gap: 30px;
  align-items: start;
}
.travel-detail-photo {
  width: 690px;
  height: 418px;
  border-radius: 8px;
  object-fit: cover;
}
.travel-detail-info {
  min-height: 418px;
  display: flex;
  flex-direction: column;
  color: var(--dark);
}
.travel-detail-title {
  margin-bottom: 36px;
}
.travel-detail-title p,
.travel-detail-price p,
.travel-detail-specs span {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.travel-detail-title h1,
.travel-detail-price strong {
  display: block;
  margin: 10px 0 0;
  font-family: "Comfortaa", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 1.04px;
}
.travel-detail-specs {
  display: flex;
  gap: 40px;
  margin-bottom: 64px;
}
.travel-detail-specs div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.travel-detail-specs strong {
  font-family: "Comfortaa", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 1.12px;
  white-space: nowrap;
}
.travel-detail-price {
  margin-bottom: 27px;
}
.travel-detail-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.travel-description-section {
  padding-top: 80px;
}
.travel-description-section .section-title,
.route-section .section-title,
.included-section .section-title,
.travel-detail-faq .section-title {
  margin-bottom: 30px;
}
.travel-description-text {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.travel-description-text p {
  margin: 0 0 21px;
}
.route-section {
  padding-top: 78px;
}
.route-timeline {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto 29px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.route-timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 15px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line) 0 16px, transparent 16px 32px);
}
.route-timeline article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.route-timeline span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .36px;
}
.route-timeline h3 {
  margin: 0 0 10px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.route-timeline p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.route-map {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  height: 380px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.route-map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.included-section {
  padding-top: 80px;
}
.included-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.included-card {
  min-height: 220px;
  padding: 27px 44px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--dark);
}
.included-card h3 {
  margin: 0 0 15px;
  font-family: "Comfortaa", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: .64px;
}
.included-card ul {
  margin: 0;
  padding-left: 21px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .42px;
}
.travel-detail-faq {
  padding-top: 80px;
}
.travel-detail-faq .faq-list {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  gap: 16px;
}
.travel-detail-text {
  padding-top: 80px;
}

@media (max-width: 900px) {
  body { font-size: 12px; letter-spacing: .36px; }
  .hero {
    height: 660px;
    background-image: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url("assets/hero-mobile.png");
  }
  .header {
    width: 100%;
    top: 0;
    height: 62px;
    padding: 15px 10px;
  }
  .logo { width: 171.94px; height: 31px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-btn { display: block; }
  .menu-btn img { display: none; }
  .menu-btn::before {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background:
      linear-gradient(#fff 0 0) 10px 8px / 12px 2px no-repeat,
      linear-gradient(#fff 0 0) 5px 15px / 22px 2px no-repeat,
      linear-gradient(#fff 0 0) 5px 22px / 12px 2px no-repeat;
    border-radius: 2px;
  }
  .hero-content {
    top: 113px;
    width: 340px;
    gap: 30px;
  }
  .hero-content h1 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.6;
    letter-spacing: 1.2px;
    white-space: normal;
  }
  .hero-content p {
    font-size: 12px;
    white-space: normal;
  }
  .hero-benefits {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 429px;
    width: auto;
    height: 181px;
    transform: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    border-radius: 16px;
    background: rgba(0,0,0,.01);
    backdrop-filter: blur(6px);
    color: #fff;
  }
  .hero-benefits div { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .hero-benefits img { width: 40px; height: 40px; }
  .hero-benefits span {
    font-family: "Comfortaa", sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .52px;
  }
  .section {
    width: 340px;
    padding-top: 40px;
  }
  .section-title {
    min-height: 100px;
    gap: 10px;
  }
  .section-title img { width: 85px; height: 100px; }
  .section-title h2 { font-size: 20px; letter-spacing: .8px; }
  .section-title p { font-size: 12px; }
  .event-grid,
  .ship-grid,
  .route-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 10px 8px;
    scrollbar-width: none;
  }
  .event-grid::-webkit-scrollbar,
  .ship-grid::-webkit-scrollbar,
  .route-grid::-webkit-scrollbar { display: none; }
  .image-card, .ship-grid .image-card, .route-card, .service-grid article {
    flex: 0 0 300px;
    min-height: 220px;
    height: 220px;
    scroll-snap-align: start;
  }
  .event-grid .image-card,
  .event-grid .image-card.event-big {
    flex-basis: 300px;
    width: 300px;
    height: 220px;
    min-height: 220px;
    grid-row: auto;
  }
  .image-card span {
    left: 20px;
    bottom: 20px;
    font-size: 13px;
    letter-spacing: .52px;
  }
  .ship-grid .image-card {
    flex-basis: 300px;
    width: 300px;
    height: 350px;
    min-height: 350px;
  }
  .ship-grid .image-card span { bottom: 80px; }
  .ship-grid .chips {
    display: flex;
    left: 20px;
    bottom: 30px;
    gap: 16px;
  }
  .compare-card div { left: 20px; right: auto; top: 28px; width: 75%; }
  .compare-card h3, .service-grid h3, .text-section h3 {
    font-size: 13px;
    letter-spacing: .52px;
  }
  .compare-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .compare-card {
    width: 340px;
    height: 290px;
    min-height: 290px;
  }
  .service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .service-grid article {
    width: 340px;
    min-height: 440px;
    height: auto;
    padding: 0 20px 20px;
    background: #fff;
  }
  .service-icon { height: 120px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(6) {
    grid-column: auto;
    height: 110px;
  }
  .gallery-grid img:nth-child(7) {
    grid-column: span 2;
    height: 226px;
  }
  .gallery-grid img:nth-child(1) { content: url("assets/gallery-m-1.png"); }
  .gallery-grid img:nth-child(2) { content: url("assets/gallery-m-2.png"); }
  .gallery-grid img:nth-child(3) { content: url("assets/gallery-m-3.png"); }
  .gallery-grid img:nth-child(4) { content: url("assets/gallery-m-4.png"); }
  .gallery-grid img:nth-child(5) { content: url("assets/gallery-m-5.png"); }
  .gallery-grid img:nth-child(6) { content: url("assets/gallery-m-6.png"); }
  .gallery-grid img:nth-child(7) { content: url("assets/gallery-m-7.png"); }
  .reviews-wrap { display: block; }
  .review-photo { display: none; }
  .review-card { height: 446px; object-fit: cover; object-position: left top; border-radius: 6px; }
  .yandex-reviews-widget {
    height: 560px;
    border-radius: 6px;
  }
  .lightbox { padding: 56px 16px; }
  .lightbox-photo {
    width: calc(100vw - 32px);
    max-height: calc(100vh - 140px);
  }
  .lightbox-arrow {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 44px;
    font-size: 36px;
  }
  .lightbox-prev { left: calc(50% - 56px); }
  .lightbox-next { right: calc(50% - 56px); }
  details { padding: 15px; }
  summary {
    font-size: 13px;
    letter-spacing: .52px;
  }
  details p { font-size: 12px; }
  .text-section {
    width: 340px;
    padding-bottom: 40px;
  }
  .text-section h2 {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .footer-main {
    width: 100%;
    min-height: 984px;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
  }
  .footer-info {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-info h2 { font-size: 20px; letter-spacing: .8px; }
  .footer-info > p { margin-bottom: 20px; }
  .footer-info span { margin-top: 15px; font-size: 12px; }
  .footer-info a { font-size: 13px; letter-spacing: .52px; }
  .socials { margin: 20px 0 8px; }
  .footer-info .socials-note {
    max-width: 310px;
    margin-bottom: 20px;
    text-align: center;
  }
  .about { order: 20; margin-top: 0; }
  .footer-map {
    width: 100%;
    max-width: 340px;
    height: 399px;
    object-fit: cover;
  }
  .footer-bottom {
    min-height: 215px;
    flex-direction: column;
    gap: 10px;
    padding: 20px 35px;
    white-space: normal;
    text-align: center;
  }
  .modal { padding: 10px; }
  .modal-card { width: 100%; max-width: 550px; }
  .request-form { width: calc(100% - 40px); }
  .modal-card h2 { font-size: 22px; letter-spacing: 1px; white-space: nowrap; }
  .thanks-view .btn { width: calc(100% - 40px); }
  .catalog-header {
    width: 100%;
    height: 62px;
    padding: 15px 10px;
  }
  .catalog-header .logo {
    width: 171.94px;
    height: 31px;
  }
  .catalog-header .desktop-nav,
  .catalog-header .header-actions {
    display: none;
  }
  .menu-btn.dark::before {
    background:
      linear-gradient(var(--dark) 0 0) 10px 8px / 12px 2px no-repeat,
      linear-gradient(var(--dark) 0 0) 5px 15px / 22px 2px no-repeat,
      linear-gradient(var(--dark) 0 0) 5px 22px / 12px 2px no-repeat;
  }
  .catalog-page {
    padding-top: 30px;
    overflow: hidden;
  }
  .breadcrumbs {
    margin-bottom: 56px;
  }
  .catalog-section {
    width: 340px;
    padding-bottom: 40px;
  }
  .catalog-tabs-section {
    padding-bottom: 10px;
  }
  .catalog-tabs {
    gap: 10px;
    justify-content: flex-start;
    margin: 0 -10px 28px;
    padding: 0 10px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .catalog-tabs::-webkit-scrollbar { display: none; }
  .catalog-tab {
    min-width: 150px;
    height: 52px;
    flex: 0 0 auto;
    gap: 10px;
    padding: 9px 14px;
    font-size: 13px;
    letter-spacing: .52px;
  }
  .catalog-tab span {
    width: 32px;
    height: 32px;
  }
  .catalog-section .section-title {
    min-height: 100px;
    margin-bottom: 30px;
  }
  .catalog-section .section-title h1,
  .catalog-section .section-title h2 {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .catalog-section .section-title p {
    max-width: 340px;
    font-size: 12px;
  }
  .catalog-subtabs {
    justify-content: flex-start;
    gap: 10px;
    margin: -5px -10px 24px;
    padding: 0 10px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .catalog-subtabs::-webkit-scrollbar { display: none; }
  .catalog-subtab {
    min-width: 138px;
    height: 44px;
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: .48px;
  }
  .catalog-sort {
    margin: -1px 0 30px;
    flex-wrap: nowrap;
    gap: 6px;
  }
  .catalog-sort-dropdown {
    min-width: 0;
    max-width: calc(100% - 112px);
  }
  .catalog-sort-dropdown summary {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .catalog-sort-menu {
    left: auto;
    right: 0;
    transform: none;
    width: max-content;
    min-width: 260px;
    max-width: calc(100vw - 20px);
  }
  .boat-grid,
  .boat-grid.short {
    display: flex;
    gap: 10px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 0 10px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .boat-grid::-webkit-scrollbar { display: none; }
  .boat-card {
    flex: 0 0 310px;
    width: 310px;
    height: auto;
    scroll-snap-align: start;
  }
  .boat-card > div {
    margin-top: 20px;
  }
  .boat-card p {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .catalog-text {
    padding-top: 0;
  }
  .product-page {
    padding-top: 30px;
  }
  .product-breadcrumbs {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    margin-bottom: 30px;
    white-space: nowrap;
  }
  .product-hero {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .product-hero-photo {
    width: 100%;
    height: 240px;
  }
  .product-info {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .product-title {
    order: 1;
    margin: 15px 0 22px;
  }
  .product-title p,
  .product-price p,
  .product-specs span {
    font-size: 12px;
    letter-spacing: .36px;
  }
  .product-title h1,
  .product-price strong {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .product-specs {
    order: 2;
    gap: 40px;
    margin-bottom: 27px;
  }
  .product-specs strong {
    font-size: 14px;
  }
  .product-description {
    order: 3;
    min-height: 0;
    margin-bottom: 26px;
    font-size: 12px;
    letter-spacing: .36px;
  }
  .product-description p {
    margin-bottom: 18px;
  }
  .product-price {
    order: 4;
    margin: 0 0 15px;
  }
  .product-actions {
    order: 5;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .product-actions .btn {
    width: 100%;
  }
  .pier-info {
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  .pier-info p {
    font-size: 14px;
  }
  .product-gallery-section {
    width: 100%;
    max-width: 340px;
    padding-top: 55px;
  }
  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 30px;
  }
  .product-gallery img,
  .product-gallery img:nth-child(1),
  .product-gallery img:nth-child(2),
  .product-gallery img:nth-child(3),
  .product-gallery img:nth-child(4),
  .product-gallery img:nth-child(5),
  .product-gallery img:nth-child(6),
  .product-gallery img:nth-child(7) {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .product-faq {
    display: none;
  }
  .product-related {
    width: 100%;
    max-width: 340px;
    padding-top: 40px;
  }
  .related-grid {
    display: flex;
    gap: 20px;
    margin: 30px -10px 0;
    padding: 0 10px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .related-grid::-webkit-scrollbar { display: none; }
  .related-card {
    flex: 0 0 310px;
    width: 310px;
    height: 380px;
    scroll-snap-align: start;
  }
  .related-card > div {
    left: 20px;
    right: 20px;
    bottom: 20px;
    gap: 15px;
  }
  .related-card p {
    display: none;
  }
  .related-chips {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 0;
  }
  .related-chips span {
    border: 0;
    background: rgba(255,255,255,.05);
  }
  .product-text {
    width: 100%;
    max-width: 340px;
    padding-top: 0;
  }
  .contacts-page {
    padding-top: 30px;
  }
  .contacts-breadcrumbs {
    margin-bottom: 30px;
  }
  .contacts-section,
  .contacts-help {
    width: min(340px, calc(100% - 20px));
  }
  .contacts-section .section-title h1 {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .contacts-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
  .contacts-info-block {
    min-height: 0;
    display: contents;
  }
  .contacts-list {
    gap: 30px;
    order: 1;
  }
  .contact-row {
    align-items: center;
  }
  .contact-row div {
    min-width: 0;
  }
  .contact-row p,
  .requisites p {
    font-size: 12px;
    letter-spacing: .36px;
  }
  .contact-row strong,
  .contact-row a,
  .requisites strong {
    font-size: 14px;
    letter-spacing: .56px;
    white-space: normal;
  }
  .contacts-map {
    order: 2;
    width: 100%;
    height: 600px;
  }
  .requisites {
    order: 3;
    gap: 15px;
  }
  .requisites .requisites-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .requisites-top div {
    min-width: 0;
  }
  .requisites-top strong {
    font-size: 12px;
    letter-spacing: .2px;
    white-space: nowrap;
  }
  .contacts-help {
    padding: 40px 0 30px;
  }
  .contacts-form {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }
  .contacts-form textarea,
  .contacts-agree,
  .contacts-form .btn {
    grid-column: auto;
  }
  .contacts-agree {
    justify-self: stretch;
    justify-content: flex-start;
  }
  .contacts-agree p {
    max-width: none;
    text-align: left;
  }
  .contacts-form .btn {
    width: 100%;
    justify-self: stretch;
  }
  .about-page {
    padding-top: 30px;
  }
  .about-breadcrumbs {
    margin-bottom: 30px;
  }
  .about-section {
    width: 100%;
    max-width: 340px;
    padding-bottom: 40px;
  }
  .about-section .section-title h1 {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
  .about-photo {
    order: 2;
    width: 100%;
    height: 390px;
  }
  .about-content {
    order: 1;
    gap: 30px;
  }
  .about-block h2 {
    font-size: 13px;
    letter-spacing: .52px;
  }
  .about-block p {
    font-size: 12px;
    letter-spacing: .36px;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-stats strong {
    margin-bottom: 5px;
    font-size: 20px;
    letter-spacing: .8px;
  }
  .about-stats p {
    font-size: 12px;
  }
  .about-texts {
    gap: 30px;
  }
  .about-clients {
    width: 100%;
    max-width: 340px;
    height: auto;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }
  .about-client-photo {
    position: static;
    width: 100% !important;
    height: 168px !important;
  }
  .about-client-photo:nth-child(3n) {
    grid-column: span 2;
    height: 235px !important;
  }
  .travels-page {
    padding-top: 30px;
  }
  .travels-breadcrumbs {
    margin-bottom: 30px;
  }
  .travels-section {
    width: 100%;
    max-width: 340px;
  }
  .travels-section .section-title h1 {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .travels-section .section-title p {
    font-size: 12px;
  }
  .travels-grid {
    display: flex;
    gap: 20px;
    margin: 30px -10px 0;
    padding: 0 10px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .travels-grid::-webkit-scrollbar { display: none; }
  .travel-card {
    flex: 0 0 310px;
    width: 310px;
    height: 380px;
    scroll-snap-align: start;
  }
  .travel-card > div {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .travel-card h2,
  .travel-card strong {
    font-size: 13px;
    letter-spacing: .52px;
  }
  .travels-text {
    width: 100%;
    max-width: 340px;
    padding-top: 30px;
  }
  .travel-detail-page {
    padding-top: 30px;
    overflow: hidden;
  }
  .travel-detail-breadcrumbs {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    margin-bottom: 30px;
    white-space: nowrap;
  }
  .travel-detail-breadcrumbs b {
    max-width: 141px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .travel-detail-hero {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .travel-detail-photo {
    width: 100%;
    height: 240px;
  }
  .travel-detail-info {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .travel-detail-title {
    order: 1;
    margin-bottom: 22px;
  }
  .travel-detail-title p,
  .travel-detail-price p,
  .travel-detail-specs span {
    font-size: 12px;
    letter-spacing: .36px;
  }
  .travel-detail-title h1,
  .travel-detail-price strong {
    font-size: 20px;
    letter-spacing: .8px;
  }
  .travel-detail-specs {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 27px;
  }
  .travel-detail-specs strong {
    font-size: 14px;
  }
  .travel-detail-price {
    order: 3;
    margin-bottom: 15px;
  }
  .travel-detail-actions {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .travel-detail-actions .btn {
    width: 100%;
  }
  .travel-description-section {
    width: 100%;
    max-width: 340px;
    padding-top: 55px;
  }
  .travel-description-section .section-title,
  .route-section .section-title,
  .included-section .section-title,
  .travel-detail-faq .section-title {
    min-height: 120px;
    margin-bottom: 30px;
  }
  .travel-description-text {
    width: 100%;
    max-width: 340px;
    font-size: 12px;
    letter-spacing: .36px;
  }
  .travel-description-text p {
    margin-bottom: 18px;
  }
  .route-section {
    width: 100%;
    max-width: 340px;
    padding-top: 38px;
  }
  .route-timeline {
    width: 100%;
    max-width: 340px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .route-timeline::before {
    left: 15px;
    right: auto;
    top: 30px;
    bottom: 52px;
    width: 1px;
    height: auto;
    background: repeating-linear-gradient(0deg, var(--line) 0 16px, transparent 16px 32px);
  }
  .route-timeline article {
    min-height: 90px;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
  }
  .route-timeline h3 {
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: .52px;
  }
  .route-timeline p {
    font-size: 12px;
    letter-spacing: .36px;
  }
  .route-map {
    width: 100%;
    max-width: 340px;
    height: 380px;
  }
  .route-map img {
    inset: auto;
    left: -85.29%;
    top: -39.89%;
    width: 414.71%;
    height: 179.78%;
    max-width: none;
  }
  .included-section {
    width: 100%;
    max-width: 340px;
    padding-top: 40px;
  }
  .included-grid {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .included-card {
    min-height: 190px;
    padding: 23px 20px;
  }
  .included-card h3 {
    font-size: 13px;
    letter-spacing: .52px;
  }
  .included-card ul {
    padding-left: 18px;
    font-size: 12px;
    letter-spacing: .36px;
  }
  .travel-detail-faq {
    width: 100%;
    max-width: 340px;
    display: block;
    padding-top: 40px;
  }
  .travel-detail-faq .faq-list {
    width: 100%;
    max-width: 340px;
    gap: 16px;
  }
  .travel-detail-faq details {
    padding: 20px 15px 21px;
  }
  .travel-detail-faq summary {
    align-items: center;
    font-size: 13px;
    letter-spacing: .52px;
  }
  .travel-detail-text {
    width: 100%;
    max-width: 340px;
    padding-top: 40px;
  }
}
