:root {
  --ink: #071321;
  --ink-2: #112338;
  --muted: #5f6f82;
  --line: rgba(7, 19, 33, 0.12);
  --white: #ffffff;
  --soft: #f5f8fb;
  --soft-2: #eef4f8;
  --navy: #081827;
  --blue: #12314d;
  --gold: #d8b46a;
  --gold-2: #f2cf83;
  --danger: #b64a4a;
  --shadow: 0 22px 70px rgba(7, 19, 33, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1280px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(4, 12, 22, .92);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--gold), #fff1bd);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(216, 180, 106, .28);
}

.brand span:last-child {
  font-size: 1.02rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 11px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
  font-size: .92rem;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, .10);
  outline: none;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(216, 180, 106, .14);
  border: 1px solid rgba(216, 180, 106, .35);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #071321;
  box-shadow: 0 16px 42px rgba(216, 180, 106, .32);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 16px 42px rgba(8, 24, 39, .22);
}

.btn-light {
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
}

.btn-ghost {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
}

.btn-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: .9rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

/* Сама картинка */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/img-1.webp");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

/* Затемнение поверх картинки */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(4, 12, 22, 0.88) 0%,
      rgba(4, 12, 22, 0.62) 48%,
      rgba(4, 12, 22, 0.26) 100%);
}

.hero-grid {
  min-height: 100%;
  display: grid;
  align-items: center;
  padding-top: calc(var(--header-height, 80px) + 40px);
  padding-bottom: 80px;
}

.hero h1 {
  max-width: 780px;
}

.hero-lead {
  max-width: 640px;
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero::before {
    background-position: center bottom;
  }

  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(4, 12, 22, 0.72) 0%,
        rgba(4, 12, 22, 0.64) 48%,
        rgba(4, 12, 22, 0.84) 100%);
  }

  .hero-grid {
    padding-top: calc(var(--header-height, 72px) + 36px);
    padding-bottom: 56px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero::before {
    background-position: center bottom;
    background-size: cover;
  }

  .hero-grid {
    padding-top: calc(var(--header-height, 68px) + 28px);
    padding-bottom: 44px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--gold-2);
  font-weight: 900;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.eyebrow.dark {
  background: rgba(8, 24, 39, .07);
  border-color: rgba(8, 24, 39, .10);
  color: #856322;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: clamp(2.6rem, 7vw, 6.5rem);
  letter-spacing: -.065em;
}

.hero-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-badges span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-weight: 800;
  font-size: .9rem;
}

.booking-card {
  border-radius: var(--radius-xl);
  padding: 26px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .55);
}

.booking-card h2 {
  font-size: 1.35rem;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0 18px;
}

.price-line strong {
  font-size: 2.35rem;
  letter-spacing: -.05em;
}

.price-line span {
  color: var(--muted);
  font-weight: 750;
  padding-bottom: 7px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-2);
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(216, 180, 106, .20);
  color: #80601f;
  font-weight: 950;
  font-size: .78rem;
}

.mini-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.section {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
}

.section-bg {
  background-size: cover;
  background-position: center;
}

.section-soft {
  background-color: var(--soft);
}

.section-dark {
  background-color: var(--navy);
  color: #fff;
}

.section-title {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  letter-spacing: -.045em;
}

.section-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, .72);
}

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

.benefit-card,
.content-card,
.faq-card,
.form-card,
.contact-card {
  border: 1px solid rgba(7, 19, 33, .10);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 54px rgba(7, 19, 33, .08);
}

.benefit-card {
  padding: 24px;
  min-height: 210px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(216, 180, 106, .20);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.benefit-card h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

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

.tour-feature {
  min-height: 460px;
  display: flex;
  align-items: end;
  padding: 34px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-image: linear-gradient(0deg, rgba(4, 12, 22, .86), rgba(4, 12, 22, .15)), url('../img/img-5.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.tour-feature h3 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  letter-spacing: -.045em;
}

.tour-feature p {
  max-width: 680px;
  color: rgba(255, 255, 255, .80);
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.tour-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .14);
  font-weight: 850;
  font-size: .88rem;
}

.tour-side {
  display: grid;
  gap: 18px;
}

.mini-tour {
  min-height: 220px;
  display: flex;
  align-items: end;
  border-radius: var(--radius-lg);
  padding: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  box-shadow: 0 18px 50px rgba(7, 19, 33, .12);
}

.mini-tour:nth-child(1) {
  background-image: linear-gradient(0deg, rgba(4, 12, 22, .82), rgba(4, 12, 22, .10)), url('../img/img-18.webp');
}

.mini-tour:nth-child(2) {
  background-image: linear-gradient(0deg, rgba(4, 12, 22, .82), rgba(4, 12, 22, .10)), url('../img/img-19.webp');
}

.mini-tour h3 {
  font-size: 1.25rem;
}

.mini-tour p {
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, .78);
  font-size: .94rem;
}

.route-wrap {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 34px;
  align-items: start;
}

.route-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .22);
}

.route-panel p {
  color: rgba(255, 255, 255, .74);
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.route-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
}

.route-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--gold-2);
}

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

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .35);
}

.timeline li::before {
  content: attr(data-step);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 950;
}

.timeline h3 {
  font-size: 1.03rem;
  margin-bottom: 4px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

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

.content-card {
  padding: 26px;
}

.content-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

.section-dark .content-card {
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.content-card.is-warning {
  border-color: rgba(182, 74, 74, .22);
  background: rgba(255, 255, 255, .94);
}

.content-card ul {
  padding-left: 20px;
  margin: 10px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  padding: 0;
  cursor: pointer;
  background: #dfe8ef;
  box-shadow: 0 16px 48px rgba(7, 19, 33, .10);
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06);
}

.gallery-item span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(4, 12, 22, .70);
  color: #fff;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  gap: 24px;
}

.info-list {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(7, 19, 33, .08);
}

.info-row strong {
  display: block;
}

.info-row span {
  color: var(--muted);
}

.map-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-image: url("../img/img-20.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(7, 19, 33, 0.10);
  box-shadow: var(--shadow);
}



.map-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 15px 50px rgba(7, 19, 33, .12);
}

.map-label strong {
  display: block;
}

.map-label span {
  color: var(--muted);
}

.faq-wrap {
  max-width: 900px;
  margin-inline: auto;
}

.faq-card {
  overflow: hidden;
  background: rgba(255, 255, 255, .94);
}

.faq-item+.faq-item {
  border-top: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--muted);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  padding: 80px 0;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 12, 22, .86), rgba(4, 12, 22, .56)), url('../img/img-6.webp');
  background-size: cover;
  background-position: center;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.045em;
}

.cta-inner p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
}

.site-footer {
  background: #050b13;
  color: rgba(255, 255, 255, .76);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .65fr);
  gap: 32px;
}

.footer-title {
  color: #fff;
  font-weight: 950;
  margin-bottom: 14px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-meta {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .9rem;
}

.page-hero {
  min-height: 420px;
  display: grid;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 12, 22, .86), rgba(4, 12, 22, .46)), url('../img/img-18.webp');
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  padding: 80px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, .70);
  font-size: .92rem;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: #fff;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .80);
  font-size: 1.08rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: .74fr 1fr;
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 24px;
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-line {
  padding: 17px;
  border-radius: 18px;
  background: var(--soft);
}

.contact-line small {
  display: block;
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-line strong,
.contact-line a {
  display: block;
  margin-top: 4px;
  font-weight: 900;
}

.form-card {
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7, 19, 33, .16);
  border-radius: 15px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 135px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(216, 180, 106, .80);
  box-shadow: 0 0 0 4px rgba(216, 180, 106, .18);
}

.consent {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(216, 180, 106, .16);
  color: #624914;
  font-weight: 850;
}

.form-status.is-visible {
  display: block;
}

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

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 850;
  color: var(--muted);
}

.legal-nav a:hover {
  background: #fff;
  color: var(--ink);
}

.legal-content {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 60px rgba(7, 19, 33, .07);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.65rem;
  letter-spacing: -.02em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: #0b5394;
  font-weight: 850;
}

.legal-note {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft);
  border-left: 5px solid var(--gold);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  display: none;
  max-width: 980px;
  margin-inline: auto;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border: 1px solid rgba(7, 19, 33, .12);
  box-shadow: 0 28px 100px rgba(0, 0, 0, .22);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-inner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .84);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-height: 82vh;
  border-radius: 24px;
  box-shadow: 0 20px 90px rgba(0, 0, 0, .5);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(4, 12, 22, .76);
  backdrop-filter: blur(12px);
}

.processing-overlay.is-visible {
  display: grid;
}

.processing-box {
  width: min(100%, 420px);
  padding: 30px;
  border-radius: 28px;
  background: #fff;
  text-align: center;
  box-shadow: 0 28px 100px rgba(0, 0, 0, .34);
}

.spinner {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 6px solid rgba(8, 24, 39, .12);
  border-top-color: var(--gold);
  animation: spin .9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .header-phone {
    display: none;
  }

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

  .hero-grid,
  .tour-layout,
  .route-wrap,
  .info-grid,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .route-panel,
  .legal-nav {
    position: static;
  }

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

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

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

  .cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-content: start;
    padding: 18px 14px;
    background: rgba(4, 12, 22, .98);
    overflow-y: auto;
  }

  .menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    padding: 15px 16px;
    border-radius: 16px;
    font-size: 1.05rem;
  }

  .hero-grid {
    padding-block: 62px;
    gap: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions .btn,
  .booking-card .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .benefit-grid,
  .included-grid,
  .gallery-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-item:first-child {
    grid-row: span 1;
  }

  .tour-feature {
    min-height: 410px;
    padding: 24px;
  }

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

  .timeline li {
    grid-template-columns: 40px 1fr;
    padding: 15px;
  }

  .timeline li::before {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .cookie-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .legal-content {
    padding: 22px;
  }

  .page-hero .container {
    padding: 56px 0;
  }

  .footer-meta {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}

.form-grid>.full {
  grid-column: 1 / -1;
}

/*  */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-logo {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: inline-block;
  color: inherit;
}

.brand--footer .brand-logo {
  width: 64px;
  height: 64px;
}

/* Если логотип светлый/цветной и футер тёмный */
.site-footer .brand {
  color: #ffffff;
}

/* Mobile */
@media (max-width: 640px) {
  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-logo {
    width: 32px;
    height: 32px;
  }

  .brand--footer .brand-logo {
    width: 36px;
    height: 36px;
  }
}

/*  */
.benefit-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .benefit-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    border-radius: 16px;
  }

  .benefit-icon img {
    width: 30px;
    height: 30px;
  }
}

/*  */
.route-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.route-panel {
  position: sticky;
  top: calc(var(--header-height, 80px) + 24px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.route-title {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  color: #ffffff;
}

.route-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.route-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.route-stat {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.route-stat strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: #f1c982;
}

.route-stat span {
  display: block;
  margin-top: 7px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
}

.route-summary {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.route-summary h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.05rem;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: routeStep;
}

.timeline li {
  position: relative;
  padding: 20px 20px 20px 82px;
  min-height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: #12223d;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.16);
}

.timeline li::before {
  content: attr(data-step);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f1c982;
  color: #10213e;
  font-weight: 900;
  font-size: 0.9rem;
}

.timeline li::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 68px;
  bottom: -24px;
  width: 2px;
  background: rgba(241, 201, 130, 0.72);
}

.timeline li:last-child::after {
  display: none;
}

.timeline span {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a06a18;
}

.timeline h3 {
  margin: 0;
  color: #10213e;
  font-size: 1.08rem;
}

.timeline p {
  margin: 7px 0 0;
  color: #536070;
  font-size: 0.95rem;
}

/* Route map */

.route-map-block {
  grid-column: 1 / -1;
  margin-top: clamp(32px, 5vw, 58px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 30px;
  background: #ffffff;
  color: #10213e;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.route-map-head {
  max-width: 850px;
  margin-bottom: 22px;
}

.route-map-head h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
  color: #10213e;
}

.route-map-head p {
  margin: 0;
  color: #536070;
}

.route-map-scroll {
  overflow-x: auto;
  border-radius: 24px;
  background: #eaf3f7;
}

.route-map {
  position: relative;
  width: 100%;
  min-width: 920px;
  aspect-ratio: 1726 / 911;
  overflow: hidden;
  border-radius: 24px;
  background: #dfeaf0;
}

.route-map img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.route-pin {
  position: absolute;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: #14233d;
  box-shadow: 0 12px 26px rgba(10, 25, 45, 0.3);
  cursor: pointer;
  transform: translate(-50%, -70%) rotate(-45deg);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.route-pin::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: #ffffff;
}

.route-pin:hover,
.route-pin.is-active {
  background: #d94b36;
  transform: translate(-50%, -70%) rotate(-45deg) scale(1.14);
  box-shadow: 0 16px 34px rgba(217, 75, 54, 0.36);
}

/* Marker positions for your screenshot-style map */
.route-pin--01 {
  left: 7%;
  top: 86%;
}

.route-pin--02 {
  left: 32%;
  top: 70%;
}

.route-pin--03 {
  left: 45%;
  top: 35%;
}

.route-pin--04 {
  left: 49%;
  top: 28%;
}

.route-pin--05 {
  left: 53%;
  top: 22%;
}

.route-pin--06 {
  left: 65%;
  top: 17%;
}

.route-pin--07 {
  left: 73%;
  top: 27%;
}

.route-pin--08 {
  left: 77%;
  top: 21%;
}

.route-pin--09 {
  left: 81%;
  top: 16%;
}

.route-pin--10 {
  left: 82.5%;
  top: 23%;
}

.route-map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f4f7fb;
  border: 1px solid rgba(16, 33, 62, 0.08);
}

.route-map-info strong {
  color: #10213e;
  font-size: 1rem;
}

.route-map-info span {
  color: #5b6675;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .route-wrap {
    grid-template-columns: 1fr;
  }

  .route-panel {
    position: relative;
    top: auto;
  }

  .route-map {
    min-width: 780px;
  }
}

@media (max-width: 640px) {
  .route-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .route-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .route-stat {
    padding: 13px;
    border-radius: 15px;
  }

  .timeline li {
    padding: 18px 16px 18px 68px;
    border-radius: 20px;
  }

  .timeline li::before {
    left: 15px;
    top: 18px;
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .timeline li::after {
    left: 34px;
    top: 60px;
  }

  .route-map-block {
    padding: 16px;
    border-radius: 22px;
  }

  .route-map-scroll {
    border-radius: 18px;
  }

  .route-map {
    min-width: 720px;
    border-radius: 18px;
  }

  .route-pin {
    width: 31px;
    height: 31px;
  }

  .route-pin::before {
    inset: 7px;
  }

  .route-map-info {
    display: block;
  }

  .route-map-info strong,
  .route-map-info span {
    display: block;
  }

  .route-map-info span {
    margin-top: 5px;
  }
}

/*  */
/* ==============================
   Thames Route Section
============================== */

.thames-route {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) 0;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 19, 33, 0.95), rgba(7, 19, 33, 0.78)),
    url("../img/img-7.webp") center / cover no-repeat;
}

.thames-route::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(241, 201, 130, 0.16), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(60, 147, 190, 0.14), transparent 30%);
  pointer-events: none;
}

.thames-route__inner {
  position: relative;
  z-index: 1;
}

.thames-route__head {
  max-width: 920px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.thames-route__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #f1c982;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thames-route__label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.thames-route__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.thames-route__head p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.thames-route__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.thames-route__panel {
  position: sticky;
  top: calc(var(--header-height, 80px) + 24px);
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.thames-route__panel h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.thames-route__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.thames-route__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.thames-route__stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.thames-route__stats strong {
  display: block;
  color: #f1c982;
  font-size: 1.45rem;
  line-height: 1;
}

.thames-route__stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

.thames-route__note {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(241, 201, 130, 0.14);
  border: 1px solid rgba(241, 201, 130, 0.28);
}

.thames-route__note strong,
.thames-route__note span {
  display: block;
}

.thames-route__note strong {
  margin-bottom: 6px;
  color: #f1c982;
}

.thames-route__note span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

/* Steps */

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

.thames-route__step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  min-height: auto;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: #10213e;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.thames-route__num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f1c982;
  color: #10213e;
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 8px 18px rgba(241, 201, 130, 0.26);
}

.thames-route__step div {
  min-width: 0;
}

.thames-route__step small {
  display: block;
  margin-bottom: 4px;
  color: #9c6816;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.thames-route__step h3 {
  margin: 0;
  color: #10213e;
  font-size: 1.02rem;
  line-height: 1.15;
}

.thames-route__step p {
  margin: 5px 0 0;
  color: #566375;
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .thames-route__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .thames-route__step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 15px;
    border-radius: 18px;
  }

  .thames-route__num {
    width: 38px;
    height: 38px;
    font-size: 0.76rem;
  }

  .thames-route__step h3 {
    font-size: 0.98rem;
  }

  .thames-route__step p {
    font-size: 0.86rem;
    line-height: 1.4;
  }
}

@media (max-width: 720px) {
  .thames-route__steps {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .thames-route__step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 17px;
  }

  .thames-route__num {
    width: 36px;
    height: 36px;
    font-size: 0.74rem;
  }

  .thames-route__step small {
    margin-bottom: 3px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .thames-route__step h3 {
    font-size: 0.96rem;
    line-height: 1.15;
  }

  .thames-route__step p {
    margin-top: 4px;
    font-size: 0.84rem;
    line-height: 1.38;
  }
}

@media (max-width: 480px) {
  .thames-route__step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 12px;
    border-radius: 16px;
  }

  .thames-route__num {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .thames-route__step small {
    font-size: 0.6rem;
  }

  .thames-route__step h3 {
    font-size: 0.92rem;
  }

  .thames-route__step p {
    font-size: 0.82rem;
  }
}

/* Map */

.thames-map-card {
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 32px;
  background: #ffffff;
  color: #10213e;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.thames-map-card__head {
  max-width: 900px;
  margin-bottom: 22px;
}

.thames-map-card__head h2 {
  margin: 0;
  color: #10213e;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.thames-map-card__head p {
  max-width: 780px;
  margin: 12px 0 0;
  color: #536070;
  line-height: 1.65;
}

.thames-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1726 / 911;
  min-height: 380px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(135deg, #dbeaf1, #eef6fa);
}

.thames-map__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.thames-map__fallback {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: #10213e;
  background:
    radial-gradient(circle at 20% 70%, rgba(76, 184, 224, 0.35), transparent 24%),
    radial-gradient(circle at 70% 30%, rgba(76, 184, 224, 0.32), transparent 28%),
    linear-gradient(135deg, #dbeaf1, #eef6fa);
}

.thames-map.is-empty .thames-map__fallback {
  display: grid;
}

.thames-map__fallback strong,
.thames-map__fallback span {
  display: block;
}

.thames-map__fallback strong {
  font-size: 1.25rem;
}

.thames-map__fallback span {
  margin-top: 8px;
  color: #617084;
}

/* Pins */

.thames-map__pin {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 4px solid #ffffff;
  border-radius: 50% 50% 50% 0;
  background: #14233d;
  box-shadow: 0 12px 28px rgba(10, 25, 45, 0.34);
  cursor: pointer;
  transform: translate(-50%, -70%) rotate(-45deg);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.thames-map__pin::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #ffffff;
}

.thames-map__pin:hover,
.thames-map__pin:focus-visible,
.thames-map__pin.is-active {
  background: #d94b36;
  transform: translate(-50%, -70%) rotate(-45deg) scale(1.14);
  box-shadow: 0 18px 36px rgba(217, 75, 54, 0.42);
}

.thames-map__pin:focus-visible {
  outline: 3px solid rgba(241, 201, 130, 0.8);
  outline-offset: 5px;
}

/* Marker positions */
.thames-map__pin--01 {
  left: 7%;
  top: 84%;
}

.thames-map__pin--02 {
  left: 34%;
  top: 72%;
}

.thames-map__pin--03 {
  left: 46%;
  top: 45%;
}

.thames-map__pin--04 {
  left: 50%;
  top: 38%;
}

.thames-map__pin--05 {
  left: 54%;
  top: 33%;
}

.thames-map__pin--06 {
  left: 65%;
  top: 27%;
}

.thames-map__pin--07 {
  left: 73%;
  top: 35%;
}

.thames-map__pin--08 {
  left: 77%;
  top: 30%;
}

.thames-map__pin--09 {
  left: 82%;
  top: 25%;
}

.thames-map__pin--10 {
  left: 85%;
  top: 30%;
}

.thames-map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f4f7fb;
  border: 1px solid rgba(16, 33, 62, 0.08);
}

.thames-map-info strong {
  color: #10213e;
  font-size: 1rem;
}

.thames-map-info span {
  color: #5b6675;
  font-size: 0.95rem;
}

/* Responsive */

@media (max-width: 980px) {
  .thames-route__grid {
    grid-template-columns: 1fr;
  }

  .thames-route__panel {
    position: relative;
    top: auto;
  }

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

  .thames-route__step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .thames-route__num {
    width: 44px;
    height: 44px;
    font-size: 0.82rem;
  }

  .thames-map {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .thames-route {
    padding: 64px 0;
  }

  .thames-route__head {
    text-align: left;
  }

  .thames-route__head p {
    margin-left: 0;
    margin-right: 0;
  }

  .thames-route__steps {
    grid-template-columns: 1fr;
  }

  .thames-route__step {
    padding: 18px;
    border-radius: 20px;
  }

  .thames-map-card {
    padding: 16px;
    border-radius: 24px;
  }

  .thames-map {
    aspect-ratio: 1 / 1.02;
    min-height: 360px;
    border-radius: 20px;
  }

  .thames-map__image {
    object-fit: cover;
    object-position: center;
  }

  .thames-map__pin {
    width: 30px;
    height: 30px;
    border-width: 3px;
  }

  .thames-map__pin::before {
    inset: 7px;
  }

  .thames-map-info {
    display: block;
  }

  .thames-map-info strong,
  .thames-map-info span {
    display: block;
  }

  .thames-map-info span {
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .thames-route__stats {
    grid-template-columns: 1fr 1fr;
  }

  .thames-route__stats div {
    padding: 13px;
  }

  .thames-route__step {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .thames-route__num {
    width: 38px;
    height: 38px;
    font-size: 0.76rem;
  }

  .thames-map {
    min-height: 330px;
  }
}

/* ==============================
   Thames Google Map
============================== */

.thames-google-map-card {
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 32px;
  background: #ffffff;
  color: #10213e;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.thames-google-map-card__head {
  max-width: 920px;
  margin-bottom: 24px;
}

.thames-google-map-card__head h2 {
  margin: 0;
  color: #10213e;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.thames-google-map-card__head p {
  max-width: 780px;
  margin: 12px 0 0;
  color: #536070;
  line-height: 1.65;
}

.thames-google-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: stretch;
}

.thames-google-map {
  width: 100%;
  min-height: 560px;
  border-radius: 26px;
  overflow: hidden;
  background: #dbeaf1;
  box-shadow: inset 0 0 0 1px rgba(16, 33, 62, 0.08);
}

.thames-google-map-info {
  padding: 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 201, 130, 0.16), transparent 32%),
    #f4f7fb;
  border: 1px solid rgba(16, 33, 62, 0.08);
}

.thames-google-map-info h3 {
  margin: 0;
  color: #10213e;
  font-size: 1.45rem;
  line-height: 1.16;
}

.thames-google-map-info p {
  margin: 10px 0 0;
  color: #5b6675;
  line-height: 1.6;
}

.thames-google-map-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.thames-google-map-list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 14px;
  background: #ffffff;
  color: #10213e;
  font-size: 0.93rem;
  border: 1px solid rgba(16, 33, 62, 0.07);
}

.thames-google-map-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d94b36;
  transform: translateY(-50%);
}

.thames-google-map-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16, 33, 62, 0.05);
  color: #5b6675;
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .thames-google-map-layout {
    grid-template-columns: 1fr;
  }

  .thames-google-map {
    min-height: 480px;
  }

  .thames-google-map-info {
    padding: 20px;
  }

  .thames-google-map-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .thames-google-map-card {
    padding: 16px;
    border-radius: 24px;
  }

  .thames-google-map {
    min-height: 420px;
    border-radius: 20px;
  }

  .thames-google-map-info {
    border-radius: 20px;
  }

  .thames-google-map-list {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   Static Route Map
============================== */

.al-route-map-card {
  grid-column: 1 / -1;
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 32px;
  background: #ffffff;
  color: #10213e;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.al-route-map-card__head {
  max-width: 920px;
  margin-bottom: 24px;
}

.al-route-map-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #c9943a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.al-route-map-card__label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.al-route-map-card__head h2 {
  margin: 0;
  color: #10213e;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.al-route-map-card__head p {
  max-width: 780px;
  margin: 12px 0 0;
  color: #536070;
  line-height: 1.65;
}

.al-route-map-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #dbeaf1;
  box-shadow:
    inset 0 0 0 1px rgba(16, 33, 62, 0.08),
    0 18px 48px rgba(16, 33, 62, 0.12);
}

.al-route-map-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.al-route-map-card__note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(16, 33, 62, 0.05);
  color: #5b6675;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .al-route-map-card {
    padding: 16px;
    border-radius: 24px;
  }

  .al-route-map-frame {
    overflow-x: auto;
    border-radius: 20px;
  }

  .al-route-map-frame img {
    width: auto;
    min-width: 760px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .al-route-map-frame img {
    min-width: 680px;
  }
}

/*  */
/* ==============================
   Other Cruises Carousel
============================== */

.al-cruises {
  padding: clamp(56px, 7vw, 96px) 0;
  background: #ffffff;
  color: #10213e;
  overflow: hidden;
}

.al-cruises__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.al-cruises__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #c9943a;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.al-cruises__label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}

.al-cruises h2 {
  margin: 0;
  color: #10213e;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.al-cruises__head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #536070;
  line-height: 1.65;
}

.al-cruises__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.al-cruises__arrow {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid #0b74e5;
  border-radius: 50%;
  background: #ffffff;
  color: #0b74e5;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.al-cruises__arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.al-cruises__arrow--prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.al-cruises__arrow--next::before {
  transform: translateX(-2px) rotate(45deg);
}

.al-cruises__arrow:hover {
  background: #0b74e5;
  color: #ffffff;
  transform: translateY(-2px);
}

.al-cruises__arrow:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
}

.al-cruises__arrow:disabled:hover {
  background: #ffffff;
  color: #0b74e5;
}

.al-cruises__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 2px 8px;
}

.al-cruises__viewport::-webkit-scrollbar {
  display: none;
}

.al-cruises__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  align-items: stretch;
}

.al-cruise-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 62, 0.12);
  border-radius: 18px;
  background: #ffffff;
  color: #10213e;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(16, 33, 62, 0.08);
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.al-cruise-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 116, 229, 0.35);
  box-shadow: 0 24px 54px rgba(16, 33, 62, 0.16);
}

.al-cruise-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #dbeaf1;
}

.al-cruise-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.al-cruise-card:hover .al-cruise-card__media img {
  transform: scale(1.06);
}

.al-cruise-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  max-width: calc(100% - 78px);
  padding: 8px 12px;
  border-radius: 5px;
  background: #142b4f;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
}

.al-cruise-card__heart {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #10213e;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(16, 33, 62, 0.18);
}

.al-cruise-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.al-cruise-card__body h3 {
  margin: 0;
  color: #10213e;
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.al-cruise-card__body p {
  margin: 14px 0 0;
  color: #10213e;
  font-size: 1rem;
}

.al-cruise-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-top: auto;
  padding-top: 34px;
  color: #10213e;
}

.al-cruise-card__meta span {
  white-space: nowrap;
  font-size: 1rem;
}

.al-cruise-card__meta small {
  color: #5d6a7d;
  font-size: 0.84rem;
}

.al-cruise-card__meta strong {
  white-space: nowrap;
  color: #c9264f;
  font-size: 1.45rem;
  line-height: 1;
}

@media (max-width: 1180px) {
  .al-cruises__track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}

@media (max-width: 900px) {
  .al-cruises__head {
    align-items: start;
    flex-direction: column;
  }

  .al-cruises__controls {
    align-self: flex-end;
  }

  .al-cruises__track {
    grid-auto-columns: calc((100% - 20px) / 2);
    gap: 20px;
  }

  .al-cruise-card__media {
    height: 175px;
  }
}

@media (max-width: 640px) {
  .al-cruises {
    padding: 48px 0;
  }

  .al-cruises__head {
    margin-bottom: 18px;
  }

  .al-cruises__controls {
    display: none;
  }

  .al-cruises__viewport {
    margin-right: calc(var(--container-padding, 16px) * -1);
    padding-right: var(--container-padding, 16px);
  }

  .al-cruises__track {
    grid-auto-columns: minmax(270px, 84%);
    gap: 14px;
  }

  .al-cruise-card {
    border-radius: 16px;
  }

  .al-cruise-card__media {
    height: 160px;
  }

  .al-cruise-card__badge {
    left: 10px;
    top: 10px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .al-cruise-card__heart {
    right: 10px;
    top: 10px;
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
  }

  .al-cruise-card__body {
    padding: 18px;
  }

  .al-cruise-card__body h3 {
    font-size: 1.14rem;
  }

  .al-cruise-card__meta {
    padding-top: 26px;
  }

  .al-cruise-card__meta strong {
    font-size: 1.25rem;
  }
}
.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
}

.legal-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  border: 1px solid rgba(16, 33, 62, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(16, 33, 62, 0.10);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #10213e;
  color: #ffffff;
  font-weight: 800;
}

.legal-table td {
  color: #536070;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}