:root {
  --navy-950: #061a2c;
  --navy-900: #0a2945;
  --navy-850: #0d3354;
  --navy-800: #123d61;
  --cream: #f3e8d6;
  --cream-light: #fbf5ea;
  --gold: #d8b77b;
  --gold-light: #f0d7a8;
  --ink: #10263a;
  --muted: #607181;
  --white: #fff;
  --shadow: 0 20px 60px rgba(4, 23, 39, 0.18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy-900);
  font-family: "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--cream-light);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(6, 26, 44, 0.94);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-light);
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.brand-text {
  display: grid;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-text strong {
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transition: inset 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-contact {
  display: grid;
  gap: 2px;
  text-align: right;
}

.header-contact a {
  color: var(--cream-light);
  font-size: 14px;
  font-weight: 700;
}

.header-contact span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  color: var(--white);
  background-color: var(--navy-900);
  background-image: url("assets/hero.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, var(--navy-900));
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 40, 0.9) 0%, rgba(5, 24, 40, 0.67) 38%, rgba(5, 24, 40, 0.13) 72%),
    linear-gradient(180deg, rgba(3, 18, 31, 0.42) 0%, rgba(3, 18, 31, 0) 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-top: 86px;
}

.hero-copy {
  width: min(620px, 60%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #9b6e30;
}

.hero h1,
.section-heading h2,
.contact-card h2,
.ship-banner h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.92;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #3d89cd, #2365a7);
  box-shadow: 0 12px 34px rgba(33, 103, 166, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 16px 38px rgba(33, 103, 166, 0.44);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-outline {
  color: var(--cream-light);
  border-color: rgba(240, 215, 168, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.button.compact {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 11px;
  font-size: 13px;
}

.button.full {
  width: 100%;
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.text-link svg {
  width: 20px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.7;
}

.benefits-wrap {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 44px;
  left: 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 16px;
  border: 1px solid rgba(240, 215, 168, 0.55);
  border-radius: 24px;
  background: linear-gradient(110deg, rgba(14, 50, 80, 0.86), rgba(10, 36, 60, 0.72));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.benefits article {
  position: relative;
  min-height: 125px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 24px;
  text-align: center;
}

.benefits article:not(:last-child)::after {
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 90%;
  background: rgba(255, 255, 255, 0.15);
  content: "";
}

.benefits svg {
  width: 34px;
  height: 34px;
  margin-bottom: 11px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.benefits h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  position: relative;
  padding: 96px 0;
}

.light-section {
  background:
    radial-gradient(circle at 0 0, rgba(227, 196, 142, 0.18), transparent 30%),
    var(--cream);
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  color: var(--ink);
  font-size: clamp(38px, 4vw, 54px);
}
.section-heading h2 + p {
  color: rgba(255, 255, 255, 0.65);
}

.section-heading p:last-child {
  max-width: 630px;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-heading.light h2 {
  color: var(--cream-light);
}

.section-heading.light p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.cruise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cruise-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 38, 58, 0.08);
  border-radius: 22px;
  background: var(--cream-light);
  box-shadow: 0 15px 42px rgba(42, 45, 43, 0.11);
}

.card-photo {
  position: relative;
  min-height: 220px;
  background-position: center;
  background-size: cover;
}

.hero-photo {
  background-image:
    linear-gradient(to bottom, transparent 65%, rgba(7, 27, 45, 0.55)),
    url("assets/hero.webp");
}

.route-photo {
  background-image: url("assets/fleet-grid.webp");
  background-size: 300% 300%;
}

.route-photo-1 {
  background-position: 50% 0;
}

.route-photo-5 {
  background-position: 100% 50%;
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  color: var(--navy-950);
  border-radius: 100px;
  background: rgba(247, 236, 216, 0.92);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
}

.cruise-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.cruise-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.cruise-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 17px;
}

.cruise-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  color: #536474;
  border-radius: 8px;
  background: #eee4d5;
  font-size: 11px;
  font-weight: 400;
}

.cruise-meta svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.cruise-card-body > p {
  margin: 0 0 15px;
  color: #576979;
  font-size: 13px;
  line-height: 1.58;
}

.cruise-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.cruise-card li {
  position: relative;
  padding-left: 18px;
  color: #374c5d;
  font-size: 12px;
}

.cruise-card li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #a97f43;
  border-radius: 50%;
  content: "";
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 38, 58, 0.09);
}

.price {
  display: grid;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.price small {
  color: #75818b;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cruise-card-accent {
  background: #ede3d3;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0 23px;
  padding: 13px;
  color: #456074;
  border: 1px solid rgba(48, 110, 169, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.secure-note svg {
  flex: 0 0 auto;
  width: 24px;
  fill: none;
  stroke: #2c72b4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.price-note {
  margin: 22px 0 0;
  color: #7a6d5e;
  font-size: 11px;
  text-align: center;
}

.dark-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(58, 119, 171, 0.22), transparent 32%),
    radial-gradient(circle at 0 80%, rgba(216, 183, 123, 0.09), transparent 28%),
    var(--navy-900);
}

.dark-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.sights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sight-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(240, 215, 168, 0.44);
  border-radius: 17px;
  background: var(--navy-950);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  isolation: isolate;
}

.sight-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sight-card:hover .sight-photo {
  transform: scale(1.06);
  filter: saturate(1.08) brightness(1.04);
}

.sight-card::after {
  position: absolute;
  z-index: 1;
  inset: 28% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(4, 20, 34, 0.94));
  content: "";
  pointer-events: none;
}

.ship-banner {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  margin-top: 22px;
  border: 1px solid rgba(240, 215, 168, 0.5);
  border-radius: 23px;
  background: linear-gradient(120deg, rgba(17, 57, 89, 0.92), rgba(6, 26, 44, 0.92));
}

.ship-banner-photo {
  min-height: 330px;
  background-image:
    linear-gradient(90deg, transparent 70%, rgba(10, 41, 69, 0.95)),
    url("assets/hero.webp");
  background-position: center;
  background-size: cover;
}

.ship-banner-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 44px;
}

.ship-banner h3 {
  color: var(--cream-light);
  font-size: 35px;
  line-height: 1.08;
}

.ship-banner-content > p:not(.eyebrow) {
  margin: 17px 0 26px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.65;
}

.menu-section {
  background:
    radial-gradient(circle at 100% 0, rgba(216, 183, 123, 0.15), transparent 28%),
    radial-gradient(circle at 0 100%, rgba(63, 137, 205, 0.08), transparent 30%),
    var(--cream);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: -4px 0 22px;
  padding: 7px;
  border: 1px solid rgba(16, 38, 58, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 30px rgba(38, 42, 41, 0.06);
}

.menu-tab {
  min-height: 42px;
  flex: 1 1 auto;
  padding: 10px 17px;
  color: #566a7c;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  color: var(--navy-900);
  border-color: rgba(16, 38, 58, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.menu-tab.is-active {
  color: var(--cream-light);
  border-color: rgba(240, 215, 168, 0.42);
  background: linear-gradient(135deg, var(--navy-850), var(--navy-900));
  box-shadow: 0 9px 22px rgba(6, 26, 44, 0.16);
}

.restaurant-menu {
  overflow: hidden;
  border: 1px solid rgba(16, 38, 58, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(rgba(251, 245, 234, 0.97), rgba(251, 245, 234, 0.97)),
    url("assets/menu/menu-2026.webp") center / cover;
  box-shadow: var(--shadow);
}

.menu-panel {
  padding: 34px 38px 38px;
}

.menu-panel[hidden] {
  display: none;
}

.menu-panel-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 27px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(16, 38, 58, 0.11);
}

.menu-panel-heading > span {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  border: 1px solid rgba(169, 127, 67, 0.35);
  border-radius: 50%;
  background: #eadcc5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
}

.menu-panel-heading .eyebrow {
  margin-bottom: 4px;
  font-size: 10px;
}

.menu-panel-heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 500;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 46px;
  row-gap: 0;
}

.menu-list-single {
  grid-template-columns: 1fr;
}

.menu-item {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px dotted rgba(16, 38, 58, 0.24);
}

.menu-item h4 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.menu-item p {
  margin: 5px 0 0;
  color: #6d7b87;
  font-size: 11px;
  line-height: 1.45;
}

.menu-item > strong {
  padding-top: 1px;
  color: #9a672c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item-featured {
  padding: 22px;
  border: 1px solid rgba(169, 127, 67, 0.2);
  border-radius: 16px;
  background: rgba(234, 220, 197, 0.38);
}

.menu-list-drinks .menu-item h4 {
  font-size: 13px;
}

.menu-list-drinks .menu-item > strong {
  font-size: 15px;
}

.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 24px 27px;
  color: var(--white);
  border: 1px solid rgba(240, 215, 168, 0.42);
  border-radius: 18px;
  background: linear-gradient(115deg, var(--navy-850), var(--navy-900));
  box-shadow: 0 14px 38px rgba(6, 26, 44, 0.14);
}

.menu-bottom strong {
  display: block;
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 500;
}

.menu-bottom p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.menu-sheet-button {
  flex: 0 0 auto;
  color: var(--navy-950);
  border-color: rgba(240, 215, 168, 0.62);
  background: var(--gold-light);
}

.menu-sheet-button:hover,
.menu-sheet-button:focus-visible {
  background: #f7e2ba;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.menu-note {
  max-width: 920px;
  margin: 18px auto 0;
  color: #736b61;
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.reviews-section {
  background:
    linear-gradient(rgba(8, 31, 52, 0.93), rgba(8, 31, 52, 0.96)),
    url("assets/hero.webp") center / cover fixed;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  margin: 0;
  padding: 27px;
  color: var(--white);
  border: 1px solid rgba(240, 215, 168, 0.46);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.review-head div {
  display: grid;
  gap: 3px;
}

.review-head strong {
  font-size: 14px;
}

.review-head small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.review-card > p {
  min-height: 104px;
  margin: 19px 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.6;
}

.stars {
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.18em;
}

.section-link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px auto 0;
  font-size: 13px;
}

.light-link {
  color: rgba(255, 255, 255, 0.7);
}

.section-link span {
  color: var(--gold-light);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.section-link:hover span {
  transform: translateX(5px);
}

.contact-section {
  background: #123e64;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.map-card,
.contact-card {
  overflow: hidden;
  min-height: 450px;
  border: 1px solid rgba(240, 215, 168, 0.5);
  border-radius: 22px;
  background: var(--navy-900);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
  border: 0;
  filter: sepia(0.15) saturate(0.8);
}

.contact-card {
  padding: 38px;
  color: var(--white);
}

.contact-card h2 {
  color: var(--cream-light);
  font-size: 43px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.contact-list svg {
  flex: 0 0 auto;
  width: 23px;
  margin-top: 2px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-list span {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.contact-list strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  padding: 22px;
  color: var(--white);
  border: 1px solid rgba(240, 215, 168, 0.44);
  border-radius: 19px;
  background: rgba(5, 27, 46, 0.32);
}

.trust-strip article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
}

.trust-strip article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip > article > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(240, 215, 168, 0.42);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.trust-strip strong {
  display: block;
  font-size: 12px;
}

.trust-strip p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.35;
}

.site-footer {
  padding: 62px 0 28px;
  color: var(--white);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr 1fr;
  gap: 50px;
}

.footer-brand > p,
.footer-column > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 19px;
}

.socials a {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding-inline: 8px;
  color: var(--gold-light);
  border: 1px solid rgba(240, 215, 168, 0.34);
  border-radius: 50px;
  font-size: 9px;
  font-weight: 800;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--navy-950);
  background: var(--gold-light);
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
}

.footer-column > a {
  color: rgba(255, 255, 255, 0.61);
  font-size: 12px;
}

.footer-column > a:hover,
.footer-column > a:focus-visible {
  color: var(--white);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.payment-badges span {
  min-width: 43px;
  padding: 7px 8px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 43px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.33);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.footer-legal {
  margin-top: 38px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  line-height: 1.6;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p + p {
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 18px;
}

.footer-bottom-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  text-decoration-color: rgba(240, 215, 168, 0.35);
  text-underline-offset: 3px;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--cream-light);
}

.mobile-ticket {
  display: none;
  margin: 0;
  font: inherit;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .sights-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-contact {
    display: none;
  }

  .hero-copy {
    width: 68%;
  }

  .cruise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cruise-card-accent {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-aside {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
  }

  .menu-aside h3,
  .menu-aside p {
    margin: 0;
  }

  .menu-aside p {
    padding: 0 0 0 22px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .menu-aside ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .menu-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-text {
    font-size: 10px;
  }

  .brand-text strong {
    font-size: 11px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle span {
    width: 19px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 68px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(6, 26, 44, 0.98);
    opacity: 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
    backdrop-filter: blur(14px);
  }

  .mobile-nav.open {
    max-height: 500px;
    padding-block: 16px 24px;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 14px 4px;
    color: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 16px;
  }

  .mobile-nav .mobile-phone {
    color: var(--gold-light);
    border-bottom: 0;
    font-weight: 700;
  }

  .hero {
    min-height: 900px;
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 24, 40, 0.88), rgba(5, 24, 40, 0.3)),
      linear-gradient(180deg, rgba(3, 18, 31, 0.25) 0%, rgba(4, 21, 36, 0.9) 72%, var(--navy-900));
  }

  .hero-content {
    min-height: 570px;
    align-items: flex-start;
    padding-top: 150px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .hero-lead {
    max-width: 440px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .benefits-wrap {
    bottom: 26px;
  }

  .benefits {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
  }

  .benefits article {
    min-height: 130px;
    justify-content: center;
    padding: 16px 12px;
  }

  .benefits article:nth-child(2)::after {
    display: none;
  }

  .benefits article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .benefits h2 {
    font-size: 15px;
  }

  .benefits p {
    font-size: 10px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading p:last-child {
    font-size: 14px;
  }

  .cruise-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cruise-card-accent {
    grid-column: auto;
    display: flex;
  }

  .card-photo {
    min-height: 210px;
  }

  .sights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .sight-card {
    min-height: 155px;
  }

  .sight-card .sight-title {
    font-size: 14px;
  }

  .ship-banner {
    grid-template-columns: 1fr;
  }

  .ship-banner-photo {
    min-height: 245px;
    background-image:
      linear-gradient(to bottom, transparent 65%, rgba(10, 41, 69, 0.98)),
      url("assets/hero.webp");
  }

  .ship-banner-content {
    padding: 30px 24px 33px;
  }

  .ship-banner h3 {
    font-size: 30px;
  }

  .menu-aside {
    display: block;
  }

  .menu-aside h3 {
    margin-bottom: 20px;
  }

  .menu-aside ul {
    grid-template-columns: 1fr;
  }

  .menu-aside p {
    margin-top: 22px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-photo {
    height: 145px;
  }

  .reviews-section {
    background-attachment: scroll;
  }

  .review-card > p {
    min-height: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-card,
  .map-card iframe {
    min-height: 330px;
  }

  .contact-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .contact-card h2 {
    font-size: 37px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 12px;
  }

  .trust-strip article {
    padding: 15px 10px;
  }

  .trust-strip article:nth-child(2) {
    border-right: 0;
  }

  .trust-strip article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 64px;
  }

  .mobile-ticket {
    position: fixed;
    z-index: 90;
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: linear-gradient(135deg, #448fd0, #2466a8);
    box-shadow: 0 12px 32px rgba(4, 22, 38, 0.35);
    font-size: 14px;
    font-weight: 800;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 950px;
  }

  .hero-content {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .benefits {
    border-radius: 20px;
  }

  .benefits svg {
    width: 29px;
    height: 29px;
  }

  .cruise-card-body {
    padding: 21px;
  }

  .card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button.compact {
    width: 100%;
  }

  .sights-grid {
    grid-template-columns: 1fr;
  }

  .sight-card {
    min-height: 190px;
  }

  .menu-cards {
    grid-template-columns: 1fr;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .menu-photo {
    height: 100%;
    min-height: 150px;
  }

  .menu-card h3 {
    min-height: 0;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip article,
  .trust-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip article:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    margin-right: -14px;
    margin-left: -14px;
    padding: 7px 14px 9px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab {
    min-width: max-content;
    flex: 0 0 auto;
  }

  .menu-panel {
    padding: 27px 23px 30px;
  }

  .menu-panel-heading {
    margin-bottom: 19px;
    padding-bottom: 18px;
  }

  .menu-panel-heading > span {
    width: 43px;
    height: 43px;
    font-size: 15px;
  }

  .menu-panel-heading h3 {
    font-size: 23px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .menu-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .menu-sheet-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .menu-panel {
    padding: 23px 18px 25px;
  }

  .menu-item {
    gap: 10px;
  }

  .menu-item h4,
  .menu-list-drinks .menu-item h4 {
    font-size: 12px;
  }

  .menu-item p {
    font-size: 10px;
  }

  .menu-item > strong,
  .menu-list-drinks .menu-item > strong {
    font-size: 14px;
  }

  .menu-bottom {
    padding: 21px 18px;
  }
}



/* Локальный резервный lightbox. Используется только если GLightbox CDN недоступен. */
.fallback-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px 74px 54px;
  background: rgba(3, 16, 28, 0.96);
  backdrop-filter: blur(8px);
}

.fallback-lightbox[hidden] {
  display: none;
}

.fallback-lightbox-figure {
  max-width: min(1200px, 100%);
  max-height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  gap: 12px;
}

.fallback-lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border: 1px solid rgba(240, 215, 168, 0.3);
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.fallback-lightbox-caption {
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  text-align: center;
}

.fallback-lightbox-close,
.fallback-lightbox-prev,
.fallback-lightbox-next {
  position: absolute;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--cream-light);
  border: 1px solid rgba(240, 215, 168, 0.45);
  border-radius: 50%;
  background: rgba(6, 26, 44, 0.8);
  cursor: pointer;
  font: inherit;
  font-size: 25px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.fallback-lightbox-close:hover,
.fallback-lightbox-prev:hover,
.fallback-lightbox-next:hover,
.fallback-lightbox-close:focus-visible,
.fallback-lightbox-prev:focus-visible,
.fallback-lightbox-next:focus-visible {
  color: var(--navy-950);
  background: var(--gold-light);
}

.fallback-lightbox-close {
  top: 20px;
  right: 20px;
}

.fallback-lightbox-prev {
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}

.fallback-lightbox-next {
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.privacy-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--cream);
}

.privacy-header {
  padding: 22px 0;
  color: var(--white);
  background: var(--navy-950);
}

.privacy-header .header-inner {
  height: auto;
}

.privacy-main {
  padding: 70px 0 90px;
}

.privacy-content {
  width: min(820px, 100%);
}

.privacy-content h1,
.privacy-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.privacy-content h1 {
  margin: 0 0 28px;
  font-size: clamp(36px, 5vw, 54px);
}

.privacy-content h2 {
  margin: 36px 0 12px;
  font-size: 25px;
}

.privacy-content p,
.privacy-content li {
  color: #44596a;
  font-size: 15px;
  line-height: 1.75;
}

.privacy-content a {
  color: #2267a8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-content ul {
  padding-left: 22px;
}

.privacy-note {
  margin: 30px 0;
  padding: 18px 20px;
  border: 1px solid rgba(16, 38, 58, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}



@media (max-width: 760px) {
  .footer-bottom-links {
    justify-content: flex-start;
  }

  .fallback-lightbox {
    padding: 62px 14px 70px;
  }

  .fallback-lightbox-image {
    max-height: calc(100vh - 160px);
    border-radius: 9px;
  }

  .fallback-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .fallback-lightbox-prev,
  .fallback-lightbox-next {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .fallback-lightbox-prev {
    left: calc(50% - 58px);
  }

  .fallback-lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* Интерактивная фотогалерея GLightbox */
.sight-card {
  display: block;
  cursor: zoom-in;
}

.sight-card:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 5px;
}

.sight-card .sight-title {
  position: absolute;
  z-index: 3;
  right: 54px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.sight-zoom {
  position: absolute;
  z-index: 4;
  right: 14px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--cream-light);
  border: 1px solid rgba(240, 215, 168, 0.6);
  border-radius: 50%;
  background: rgba(6, 26, 44, 0.72);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(7px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.sight-zoom svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sight-card:hover .sight-zoom,
.sight-card:focus-visible .sight-zoom {
  color: var(--navy-950);
  background: var(--gold-light);
  transform: scale(1.08);
}

.gallery-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
}

.gallery-hint::before {
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  content: "";
}

.glightbox-container {
  font-family: "Segoe UI", Arial, sans-serif;
}

.glightbox-container .goverlay {
  background: rgba(3, 16, 28, 0.95);
  backdrop-filter: blur(8px);
}

.glightbox-container .gslide-image img {
  max-height: calc(100vh - 120px);
  border: 1px solid rgba(240, 215, 168, 0.3);
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.glightbox-clean .gslide-description {
  background: transparent;
}

.glightbox-clean .gslide-title {
  margin: 10px 0 0;
  color: var(--cream-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
  text-align: center;
}

.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  color: var(--cream-light);
  border: 1px solid rgba(240, 215, 168, 0.45);
  border-radius: 50%;
  background-color: rgba(6, 26, 44, 0.78);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.glightbox-clean .gclose:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  color: var(--navy-950);
  background-color: var(--gold-light);
}

.glightbox-clean .gclose {
  top: 20px;
  right: 20px;
}

.glightbox-clean .gnext {
  right: 22px;
}

.glightbox-clean .gprev {
  left: 22px;
}

@media (max-width: 760px) {
  .sight-card .sight-title {
    right: 50px;
    font-size: 14px;
  }

  .sight-zoom {
    width: 31px;
    height: 31px;
  }

  .glightbox-container .gslide-image img {
    max-height: calc(100vh - 150px);
    border-radius: 9px;
  }

  .glightbox-clean .gclose {
    top: 12px;
    right: 12px;
  }
}

