:root {
  --ink: #071f33;
  --muted: #5f7280;
  --blue: #123f63;
  --blue-deep: #061f35;
  --blue-soft: #edf5fa;
  --blue-pale: #f8fbfd;
  --gold: #d6aa3f;
  --gold-soft: #fff1c7;
  --white: #ffffff;
  --line: rgba(6, 31, 53, 0.14);
  --shadow: 0 24px 70px rgba(6, 31, 53, 0.16);
  --radius: 8px;
  font-family: "Manrope", "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-optical-sizing: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.is-intro-running {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

.payment-result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 170, 63, 0.2), transparent 28%),
    linear-gradient(135deg, var(--blue-pale), var(--blue-soft));
}

.payment-result {
  width: min(560px, 100%);
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.payment-result img {
  width: 92px;
  border-radius: 999px;
}

.payment-result h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 62px);
  line-height: 0.95;
}

.payment-result p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.ticket-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 170, 63, 0.18), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(18, 63, 99, 0.2), transparent 28%),
    linear-gradient(145deg, var(--blue-deep), var(--blue) 44%, #f7fbfd 44.2%, var(--blue-soft));
}

.ticket-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
}

.ticket-card {
  width: min(620px, 100%);
  display: grid;
  gap: 18px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(214, 170, 63, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--gold), #fff, var(--gold)) border-box;
  box-shadow: 0 34px 90px rgba(2, 18, 30, 0.34);
}

.ticket-card::before,
.ticket-card::after {
  height: 5px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--blue-deep), var(--gold));
}

.ticket-brand {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.ticket-brand img {
  width: 78px;
  height: 78px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(6, 31, 53, 0.16);
}

.ticket-brand h1,
.ticket-summary h2 {
  margin: 0;
  color: var(--blue-deep);
  line-height: 1;
}

.ticket-brand h1 {
  font-size: clamp(28px, 6vw, 44px);
}

.ticket-brand > span {
  align-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--gold-soft);
  font-size: 11px;
  font-weight: 950;
}

.ticket-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(214, 170, 63, 0.34);
  border-radius: 12px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(255, 241, 199, 0.74), rgba(248, 251, 253, 0.92));
  font-weight: 900;
  line-height: 1.45;
}

.ticket-status[data-status="paid"] {
  border-color: rgba(22, 132, 96, 0.34);
  color: #0b5f43;
  background: linear-gradient(135deg, rgba(222, 250, 238, 0.9), rgba(248, 251, 253, 0.94));
}

.ticket-summary {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(6, 31, 53, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, var(--blue-pale));
}

.ticket-summary > img {
  width: 100%;
  height: 178px;
  border-radius: 10px;
  object-fit: cover;
}

.ticket-summary h2 {
  font-size: clamp(24px, 5vw, 34px);
}

.ticket-summary p {
  margin: 6px 0 14px;
  color: var(--muted);
  font-weight: 800;
}

.ticket-summary ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.ticket-summary li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(6, 31, 53, 0.1);
  color: var(--muted);
  font-size: 14px;
}

.ticket-summary strong {
  color: var(--blue-deep);
}

.ticket-summary span {
  text-align: right;
  font-weight: 900;
}

.ticket-qr-panel[hidden] {
  display: none;
}

.ticket-qr-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(16px, 4vw, 24px);
  border: 1px solid rgba(6, 31, 53, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(214, 170, 63, 0.12) 12px 15px);
}

.ticket-qr-panel img {
  width: min(360px, 82vw);
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(6, 31, 53, 0.14);
  border-radius: 12px;
  background: #fff;
}

.ticket-qr-panel p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-weight: 850;
  line-height: 1.45;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ticket-actions .button {
  flex: 1 1 190px;
}

@media (max-width: 620px) {
  .ticket-brand {
    grid-template-columns: 68px 1fr;
  }

  .ticket-brand img {
    width: 68px;
    height: 68px;
  }

  .ticket-brand > span {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .ticket-summary {
    grid-template-columns: 1fr;
  }

  .ticket-summary > img {
    height: 210px;
  }
}

@media print {
  body {
    background: #fff !important;
  }

  .ticket-shell {
    min-height: auto;
    padding: 0;
  }

  .ticket-card {
    width: 100%;
    box-shadow: none;
  }

  .ticket-actions {
    display: none;
  }
}

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

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

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: #fff;
  background: transparent;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 44px rgba(6, 31, 53, 0.06);
  backdrop-filter: blur(18px) saturate(1.25);
}

.site-header.is-open {
  color: #fff;
  background: rgba(6, 31, 53, 0.1);
  box-shadow: 0 14px 44px rgba(3, 19, 31, 0.08);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  line-height: 1.05;
}

.brand-logo {
  width: 78px;
  height: 78px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #1a315a;
  box-shadow:
    0 0 0 2px rgba(214, 170, 63, 0.74),
    0 0 0 5px rgba(6, 31, 53, 0.18),
    0 16px 34px rgba(6, 31, 53, 0.32);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(6, 31, 53, 0.24);
  box-shadow: 0 14px 38px rgba(6, 31, 53, 0.14);
  backdrop-filter: blur(14px) saturate(1.22);
  font-size: 13px;
  font-weight: 800;
}

.site-header.is-scrolled .nav {
  border-color: rgba(6, 31, 53, 0.16);
  background: rgba(6, 31, 53, 0.08);
}

.site-header.is-open .brand {
  background: transparent;
}

.nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-open .nav a:hover,
.site-header.is-scrolled .nav a.is-active,
.site-header.is-open .nav a.is-active {
  color: #fff;
  background: var(--blue-deep);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
}

.site-header.is-scrolled .lang-toggle {
  color: var(--blue-deep);
  border-color: rgba(6, 31, 53, 0.18);
  background: rgba(255, 255, 255, 0.8);
}

.header-cta {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 900;
}

.site-header.is-scrolled .header-cta {
  color: #fff;
  border-color: rgba(6, 31, 53, 0.12);
  background: var(--blue-deep);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: inherit;
  background: rgba(6, 31, 53, 0.14);
  backdrop-filter: blur(10px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.subpage-main {
  background: #fff;
}

.subpage-hero {
  position: relative;
  min-height: min(720px, 78svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 clamp(56px, 8vw, 90px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3, 19, 31, 0.12), rgba(3, 19, 31, 0.76)),
    linear-gradient(90deg, rgba(6, 31, 53, 0.84), rgba(6, 31, 53, 0.2)),
    var(--blue-deep);
}

.subpage-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: center / cover no-repeat;
  transform: scale(1.04);
  animation: heroDrift 12s ease-in-out infinite alternate;
}

.subpage-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(3, 19, 31, 0.72));
}

.gallery-page-hero::before {
  background-image: url("assets/gallery/sirena-bow-mermaid.jpeg");
}

.about-page-hero::before {
  background-image: url("assets/gallery/deck-red-carpet.jpeg");
}

.subpage-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: start;
}

.subpage-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.9;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.intro-loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
  transition: opacity 720ms ease, visibility 720ms ease, transform 720ms ease;
}

.intro-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  pointer-events: none;
}

.intro-canvas,
.intro-vignette {
  position: absolute;
  inset: 0;
}

.intro-canvas {
  width: 100%;
  height: 100%;
}

.intro-vignette {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 38%, transparent 0 36%, rgba(6, 31, 53, 0.16) 58%, rgba(2, 24, 31, 0.52) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(3, 33, 42, 0.28));
  pointer-events: none;
}

.intro-brand-reveal {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 9vh;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
  animation: introBrandCinematic 2600ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.intro-brand-reveal img {
  width: clamp(80px, 11vw, 126px);
  height: clamp(80px, 11vw, 126px);
  border-radius: 50%;
  box-shadow:
    0 0 0 2px rgba(214, 170, 63, 0.86),
    0 26px 68px rgba(3, 19, 31, 0.28);
}

.intro-brand-reveal span {
  font-size: clamp(1rem, 2.2vw, 1.65rem);
  font-weight: 950;
  text-shadow: 0 10px 32px rgba(3, 19, 31, 0.42);
  white-space: nowrap;
}

.intro-brand-reveal em {
  color: rgba(255, 243, 203, 0.92);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-video,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video,
.hero-image {
  object-fit: cover;
  object-position: center 42%;
}

.hero-video {
  z-index: 2;
  filter: saturate(1.05) brightness(1.02) contrast(1.08);
  transform: translateZ(0) scale(1.01);
  backface-visibility: hidden;
}

.hero-image {
  z-index: 1;
  filter: saturate(1.12) brightness(1.05);
}

.hero-shade {
  z-index: 3;
  background:
    radial-gradient(circle at 50% 72%, rgba(3, 19, 31, 0.62), transparent 38%),
    linear-gradient(180deg, rgba(3, 19, 31, 0.22) 0%, rgba(3, 19, 31, 0.02) 38%, rgba(3, 19, 31, 0.74) 100%),
    linear-gradient(90deg, rgba(6, 31, 53, 0.28) 0%, rgba(18, 63, 99, 0.08) 48%, rgba(255, 255, 255, 0.02) 100%);
}

.hero-inner {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  min-height: 100svh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 920px);
  align-items: end;
  justify-content: center;
  padding: 118px 0 40px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(34px, 4.9vw, 64px);
  line-height: 1;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.12;
  font-weight: 900;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
}

.hero-actions,
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.hero-book-button {
  min-height: 54px;
  padding: 15px 32px;
  font-size: clamp(15px, 1.45vw, 18px);
  box-shadow: 0 22px 58px rgba(214, 170, 63, 0.36);
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), #fff 46%, var(--gold));
  box-shadow: 0 18px 44px rgba(214, 170, 63, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button.ghost {
  color: var(--blue-deep);
  border-color: rgba(6, 31, 53, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.price-card span,
.site-footer span {
  display: block;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section,
.experience-band {
  padding: clamp(54px, 7vw, 88px) 0;
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

main > section[id] {
  scroll-margin-top: 156px;
}

.experience-band {
  background: var(--white);
}

.fleet {
  background: var(--white);
}

.fleet-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.fleet-head p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.ship-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-pale);
  box-shadow: var(--shadow);
}

.ship-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ship-card div {
  padding: clamp(22px, 3vw, 32px);
}

.ship-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ship-card h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.92;
}

.ship-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.ship-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-deep);
  font-weight: 950;
}

.pirate-card {
  background: linear-gradient(135deg, #ffffff, var(--gold-soft));
}

.why-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.destination-card span,
.why-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.destination-card h3,
.why-grid h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.destination-showcase {
  background: linear-gradient(180deg, #fff, var(--blue-soft));
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  grid-auto-flow: dense;
}

.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.destination-card.featured {
  grid-column: span 2;
  min-height: 430px;
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.destination-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(2, 29, 44, 0.03), rgba(2, 29, 44, 0.78));
}

.destination-card div {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px;
  color: #fff;
}

.destination-card span {
  color: var(--gold-soft);
}

.destination-card p {
  max-width: 410px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.experience-grid article {
  min-height: 280px;
  padding: clamp(24px, 4vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.experience-grid span,
.route-stops span,
.gallery-group-head span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--gold);
  font-weight: 950;
}

.experience-grid h2 {
  font-size: clamp(28px, 3.5vw, 46px);
}

.experience-grid p,
.destination-card p,
.route-intro p,
.route-stops p,
.pricing p,
.vessel p,
.details li,
.booking p,
.why-grid p,
.videos p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.destination-card p {
  color: rgba(255, 255, 255, 0.82);
}

.route {
  background: var(--blue-soft);
}

.route-layout,
.vessel-layout,
.details-layout,
.booking-layout,
.video-layout {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
}

.route-layout {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
}

.route-intro {
  position: sticky;
  top: 96px;
}

.route-intro img {
  width: 100%;
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.route-stops {
  display: grid;
  gap: 14px;
}

.route-stops article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.route-stops span {
  margin-bottom: 0;
}

.pricing {
  background: var(--white);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: end;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.price-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-pale);
}

.price-card strong {
  display: block;
  margin: 34px 0 8px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.9;
  font-weight: 950;
}

.primary-price {
  background: linear-gradient(135deg, var(--gold-soft), var(--white), var(--blue-soft));
}

.vessel {
  background: var(--blue-soft);
}

.vessel-layout {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
}

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

.spec-list span {
  padding: 14px;
  border-left: 4px solid var(--gold);
  background: #fff;
  font-weight: 850;
}

.vessel-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.vessel-collage img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vessel-collage .wide {
  grid-row: span 2;
}

.gallery {
  background: var(--white);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.gallery-groups {
  display: grid;
  gap: 38px;
}

.gallery-group {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.gallery-group-head {
  position: sticky;
  top: 96px;
  align-self: start;
}

.gallery-group-head h3 {
  font-size: 28px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

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

.media-card {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
}

.media-card.large {
  grid-column: span 2;
  min-height: 440px;
}

.media-card.flyer {
  min-height: 500px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card.flyer img {
  object-fit: contain;
  background: #101820;
}

.media-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 31, 53, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.videos {
  color: #fff;
  background: var(--blue-deep);
}

.videos .eyebrow {
  color: var(--gold);
}

.videos p {
  color: rgba(255, 255, 255, 0.74);
}

.video-layout {
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  align-items: start;
}

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

.video-grid video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  background: #000;
}

.details {
  background: var(--blue-pale);
}

.details-layout {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
}

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

.detail-columns article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.booking {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 170, 63, 0.18), transparent 26%),
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #061f35 0%, #0b2d49 56%, #03131f 100%);
}

.booking::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 86%, transparent);
}

.why-us {
  background: linear-gradient(180deg, #fff, var(--blue-soft));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.why-grid article {
  min-height: 290px;
  background: #fff;
}

.booking-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.booking-copy h2 {
  color: #fff;
}

.booking-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.booking-premium-panel {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(6, 31, 53, 0.45);
  box-shadow: 0 30px 80px rgba(3, 19, 31, 0.22);
  backdrop-filter: blur(16px) saturate(1.14);
}

.booking-premium-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-premium-panel strong {
  max-width: 420px;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
}

.booking-premium-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-strip {
  margin-top: 28px;
}

.contact-strip a {
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.social-strip a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(20px, 3.4vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.94));
  box-shadow:
    0 34px 100px rgba(3, 19, 31, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.booking-form-head,
.booking-progress,
.booking-step-panel,
.booking-step-title,
.booking-form fieldset,
.booking-form .payment-summary,
.booking-form .payment-status,
.booking-form .form-button,
.booking-form > label:has(textarea) {
  grid-column: 1 / -1;
}

.booking-form-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(6, 31, 53, 0.12);
}

.booking-form-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form-head strong {
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 8px 0 4px;
}

.booking-progress span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 31, 53, 0.1);
  border-radius: 999px;
  color: rgba(7, 31, 51, 0.42);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 950;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.booking-progress span.is-active {
  color: var(--ink);
  border-color: rgba(214, 170, 63, 0.56);
  background: linear-gradient(135deg, var(--gold-soft), #fff, var(--gold));
  box-shadow: 0 12px 28px rgba(214, 170, 63, 0.2);
  transform: translateY(-1px);
}

.booking-progress span.is-complete {
  color: #fff;
  border-color: rgba(6, 31, 53, 0.22);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.booking-step-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  animation: bookingStepIn 320ms ease both;
}

.booking-step-panel[hidden] {
  display: none;
}

.booking-step-panel > .booking-step-title,
.booking-step-panel > fieldset,
.booking-step-panel > .payment-summary,
.booking-step-panel > .payment-status,
.booking-step-panel > label:has(textarea),
.booking-step-actions {
  grid-column: 1 / -1;
}

.booking-step-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.booking-step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 6px;
}

.booking-step-actions .button {
  min-width: min(220px, 100%);
}

.booking-step-actions .button:only-child {
  margin-left: auto;
}

@keyframes bookingStepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.booking-step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  padding: 14px 0 4px;
  color: var(--ink);
}

.booking-form-head + .booking-step-title {
  margin-top: 0;
}

.booking-step-title span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), #fff, var(--gold));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(214, 170, 63, 0.2);
}

.booking-step-title strong {
  font-size: 15px;
  font-weight: 900;
}

.booking-step-title::after {
  height: 1px;
  flex: 1;
  content: "";
  background: rgba(6, 31, 53, 0.12);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  box-shadow: 0 10px 26px rgba(6, 31, 53, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(214, 170, 63, 0.8);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(214, 170, 63, 0.16),
    0 12px 28px rgba(6, 31, 53, 0.08);
}

textarea {
  resize: vertical;
}

.ticket-picker {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(6, 31, 53, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--blue-pale));
}

.ticket-picker legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.ticket-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(6, 31, 53, 0.1);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(6, 31, 53, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ticket-row:hover {
  border-color: rgba(214, 170, 63, 0.42);
  box-shadow: 0 16px 34px rgba(6, 31, 53, 0.08);
  transform: translateY(-1px);
}

.ticket-row span {
  display: grid;
  gap: 4px;
}

.ticket-row strong {
  font-size: 15px;
}

.ticket-row small,
.payment-summary small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.ticket-row input {
  padding: 12px 10px;
  text-align: center;
  font-weight: 900;
  color: var(--blue-deep);
  background: var(--gold-soft);
}

.ticket-capacity {
  margin: 2px 0 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.ticket-capacity.is-error {
  color: #b42318;
}

.payment-box {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(214, 170, 63, 0.26);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 241, 199, 0.72), rgba(255, 255, 255, 0.78));
}

.payment-box legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(6, 31, 53, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.payment-option.is-pending {
  color: rgba(7, 31, 51, 0.62);
  background: rgba(255, 255, 255, 0.62);
}

.payment-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.payment-option.is-pending input {
  cursor: not-allowed;
}

.payment-option span {
  display: grid;
  gap: 3px;
}

.payment-option strong {
  font-size: 15px;
}

.payment-option small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.payment-summary {
  display: grid;
  gap: 6px;
  padding: clamp(18px, 3vw, 24px);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, var(--gold-soft), #fff 48%, var(--gold));
  box-shadow: 0 18px 44px rgba(214, 170, 63, 0.24);
}

.payment-summary span {
  color: rgba(7, 31, 51, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-summary strong {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.payment-summary p {
  margin: 4px 0 0;
  color: rgba(7, 31, 51, 0.72);
  font-weight: 750;
}

.payment-summary small {
  color: rgba(7, 31, 51, 0.68);
}

.payment-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 850;
}

.payment-status[data-type="warning"] {
  color: #9b6a09;
}

.payment-status[data-type="error"] {
  color: #b42318;
}

.payment-status[data-type="progress"] {
  color: var(--blue-deep);
}

.form-button {
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  border: 0;
  font-size: 17px;
}

.form-button:disabled {
  cursor: wait;
  filter: saturate(0.85);
  opacity: 0.78;
}

.hero-copy-block {
  width: min(860px, 100%);
  margin: 0 auto;
  text-shadow: 0 8px 28px rgba(3, 19, 31, 0.62);
  animation: heroRise 760ms ease both;
}

.hero-video {
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.button,
.ship-feature,
.destination-strip article,
.media-tile,
.video-card,
.trip-facts article,
.route-card,
.booking-card,
.info-panels article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.button:hover,
.ship-feature:hover,
.destination-strip article:hover,
.media-tile:hover,
.video-card:hover,
.trip-facts article:hover,
.route-card:hover,
.booking-card:hover,
.info-panels article:hover {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms ease, transform 640ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trip-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 170, 63, 0.14), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--blue-pale) 62%, #fff 100%);
}

.trip-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 31, 53, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(6, 31, 53, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, transparent 76%);
}

.trip-section .section-inner {
  position: relative;
  z-index: 1;
}

.trip-section .section-head {
  max-width: none;
}

.trip-section .split-head {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.64fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  margin-bottom: clamp(28px, 5vw, 54px);
}

.trip-section .split-head h2 {
  max-width: 680px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.92;
}

.trip-section .split-head > p {
  max-width: 440px;
  margin: 74px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.42;
}

.trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 18px;
  align-items: stretch;
}

.ship-feature {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: 0 26px 72px rgba(6, 31, 53, 0.16);
  isolation: isolate;
}

.ship-feature::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 24% 78%, rgba(214, 170, 63, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(3, 19, 31, 0.04) 0%, rgba(3, 19, 31, 0.16) 42%, rgba(3, 19, 31, 0.82) 100%);
}

.ship-feature::before {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: calc(var(--radius) - 2px);
  content: "";
  pointer-events: none;
}

.ship-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 900ms ease, filter 900ms ease;
}

.ship-feature:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.pirate-feature {
  min-height: 600px;
}

.pirate-feature img {
  filter: saturate(1.08) contrast(1.04);
  object-position: center 48%;
}

.sirena-feature {
  min-height: 600px;
}

.sirena-feature img {
  object-position: 52% 50%;
}

.ship-feature-copy {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 4vw, 38px);
  color: #fff;
}

.ship-feature-copy span,
.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ship-feature-copy h3 {
  max-width: 520px;
  margin: 16px 0 10px;
  font-size: clamp(30px, 4.6vw, 64px);
  line-height: 0.95;
  text-shadow: 0 14px 36px rgba(3, 19, 31, 0.36);
}

.ship-feature-copy p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.sirena-feature .ship-feature-copy h3 {
  font-size: clamp(28px, 3vw, 42px);
}

.ship-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ship-tags small {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 243, 203, 0.34);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.destination-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.destination-strip,
.media-showcase,
.video-stage {
  scrollbar-width: none;
}

.destination-strip::-webkit-scrollbar,
.media-showcase::-webkit-scrollbar,
.video-stage::-webkit-scrollbar {
  display: none;
}

.destination-strip article {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: 0 18px 46px rgba(6, 31, 53, 0.12);
}

.destination-strip article:first-child {
  min-height: 220px;
}

.destination-strip img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease, filter 700ms ease;
}

.destination-strip article:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

.destination-strip article::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 22%, rgba(3, 19, 31, 0.72) 100%),
    linear-gradient(90deg, rgba(6, 31, 53, 0.18), transparent);
}

.destination-strip span {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  font-weight: 950;
}

.plan-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(214, 170, 63, 0.18), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(228, 248, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #061f35 0%, #0b2d49 48%, #041827 100%);
}

.plan-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.itinerary-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  min-width: 0;
}

.itinerary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(100deg, rgba(6, 31, 53, 0.92), rgba(6, 31, 53, 0.76) 52%, rgba(6, 31, 53, 0.18)),
    url("assets/gallery/sirena-coastline.jpeg") center / cover;
  box-shadow: var(--shadow);
}

.itinerary-hero h2 {
  max-width: 820px;
}

.itinerary-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.65;
}

.itinerary-hero .eyebrow {
  color: var(--gold);
}

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

.trip-facts article,
.route-card,
.booking-card,
.info-panels article,
.notice-strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 31, 53, 0.08);
}

.trip-facts article {
  padding: 20px;
}

.trip-facts span,
.price-stack span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.trip-facts strong {
  display: block;
  margin: 10px 0 4px;
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
  font-weight: 950;
}

.trip-facts p {
  margin: 0;
  color: var(--muted);
}

.itinerary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.route-card,
.booking-card {
  padding: clamp(22px, 3vw, 30px);
}

.route-album-card {
  position: relative;
  overflow: visible;
  min-width: 0;
  --route-card-width: min(1080px, 88vw);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.album-intro {
  display: block;
  text-align: center;
  max-width: none;
  margin: 0 auto clamp(26px, 3.6vw, 44px);
}

.album-intro .eyebrow {
  color: var(--gold);
}

.album-intro h2 {
  max-width: 760px;
  margin: 0;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
}

.album-intro p {
  display: none;
}

.route-album-wrap {
  position: relative;
  width: var(--route-card-width);
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.route-album-wrap::before {
  position: absolute;
  z-index: 0;
  inset: 14% 9% -4%;
  border-radius: calc(var(--radius) * 1.4);
  content: "";
  background: radial-gradient(circle at 50% 55%, rgba(3, 19, 31, 0.55), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 18px;
}

.card-head h3,
.info-panels h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.route-controls {
  display: inline-flex;
  gap: 8px;
}

.route-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 31, 53, 0.18);
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-pale);
  font: inherit;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.route-controls button:hover {
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.route-album {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: clamp(22px, 3vw, 36px);
  margin: 0;
  padding: 10px 0 34px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  scrollbar-width: none;
}

.route-album::-webkit-scrollbar {
  display: none;
}

.route-slide {
  position: relative;
  flex: 0 0 var(--route-card-width);
  height: clamp(500px, 62vh, 660px);
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 0;
  background: var(--blue-deep);
  scroll-snap-align: center;
  box-shadow:
    0 46px 120px rgba(3, 19, 31, 0.5),
    0 20px 48px rgba(3, 19, 31, 0.36),
    0 6px 16px rgba(3, 19, 31, 0.24);
  transform: translateZ(0);
}

.route-slide:nth-child(3) {
  flex-basis: var(--route-card-width);
}

.route-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(3, 19, 31, 0.03) 0%, rgba(3, 19, 31, 0.1) 38%, rgba(3, 19, 31, 0.88) 100%),
    radial-gradient(circle at 18% 82%, rgba(214, 170, 63, 0.22), transparent 35%);
}

.route-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: routeImageFloat 9s ease-in-out infinite alternate;
}

.route-slide:nth-child(even) img {
  animation-delay: -3s;
}

.route-slide .route-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
}

.route-number {
  position: absolute;
  z-index: 2;
  top: clamp(16px, 2vw, 24px);
  left: clamp(16px, 2vw, 24px);
  display: inline-flex;
  width: clamp(56px, 5vw, 70px);
  height: clamp(56px, 5vw, 70px);
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(6, 31, 53, 0.34);
  backdrop-filter: blur(16px);
  box-shadow:
    0 18px 44px rgba(3, 19, 31, 0.34),
    0 6px 14px rgba(3, 19, 31, 0.26);
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.route-slide h4 {
  max-width: 560px;
  margin: 0 0 10px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.94;
  font-weight: 950;
  text-shadow: 0 16px 42px rgba(3, 19, 31, 0.42);
}

.route-slide p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  text-shadow: 0 6px 22px rgba(3, 19, 31, 0.5);
}

.route-edge {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: clamp(44px, 4.4vw, 60px);
  height: clamp(44px, 4.4vw, 60px);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: none;
  font: inherit;
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 950;
  line-height: 1;
  translate: 0 -50%;
  cursor: pointer;
  text-shadow: 0 6px 20px rgba(3, 19, 31, 0.55);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease, opacity 220ms ease;
}

/* the chevron itself gently nudges to invite a click */
.route-edge-left,
.route-edge-right {
  animation-duration: 2.6s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.route-edge-left {
  left: clamp(-34px, -2.4vw, -18px);
  animation-name: routeNudgeLeft;
}

.route-edge-right {
  right: clamp(-34px, -2.4vw, -18px);
  animation-name: routeNudgeRight;
}

.route-edge:hover {
  color: var(--gold);
  transform: scale(1.18);
  animation-play-state: paused;
}

.route-edge:active {
  transform: scale(0.94);
}

.route-edge:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@keyframes routeNudgeLeft {
  0%, 70%, 100% { transform: translateX(0); }
  82% { transform: translateX(-5px); }
}

@keyframes routeNudgeRight {
  0%, 70%, 100% { transform: translateX(0); }
  82% { transform: translateX(5px); }
}

@keyframes routeEdgeGlow {
  0% { box-shadow: 0 0 0 0 rgba(214, 170, 63, 0.5); }
  70%, 100% { box-shadow: 0 0 0 16px rgba(214, 170, 63, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .route-edge-left,
  .route-edge-right {
    animation: none;
  }
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-timeline::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 64px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--gold), var(--blue-soft));
}

.route-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 18px;
  padding: 18px 0;
}

.route-timeline li + li {
  border-top: 1px solid rgba(196, 219, 225, 0.68);
}

.route-timeline li > span {
  position: relative;
  z-index: 1;
  align-self: start;
  min-width: 78px;
  padding: 8px 10px;
  border: 1px solid rgba(214, 170, 63, 0.32);
  border-radius: 999px;
  color: var(--blue-deep);
  background: #fff9e8;
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.route-timeline strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 18px;
}

.route-timeline p,
.food-note p,
.info-panels li,
.notice-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.route-timeline p,
.food-note p {
  margin: 0;
}

.booking-card {
  position: sticky;
  top: 96px;
}

.price-stack {
  display: grid;
  gap: 10px;
}

.price-stack article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-pale);
}

.price-stack .main-price {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(214, 170, 63, 0.34), transparent 26%),
    linear-gradient(135deg, var(--blue-deep), #123f63);
}

.price-stack .main-price span,
.price-stack .main-price p {
  color: rgba(255, 255, 255, 0.78);
}

.price-stack strong {
  color: var(--blue-deep);
  font-size: clamp(24px, 4vw, 42px);
  line-height: 0.95;
  font-weight: 950;
}

.price-stack .main-price strong {
  color: #fff;
  font-size: clamp(48px, 7vw, 76px);
}

.price-stack p {
  margin: 0;
  color: var(--muted);
}

.food-note {
  margin-top: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-soft), #fff, var(--blue-pale));
}

.food-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-deep);
  font-weight: 950;
}

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

.info-panels article {
  padding: 22px;
}

.info-panels ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.info-panels li {
  position: relative;
  padding-left: 18px;
}

.info-panels li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--gold);
}

.notice-strip {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 18px 22px;
  background: #fff9e8;
}

.notice-strip strong {
  color: var(--blue-deep);
  white-space: nowrap;
}

.media-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--blue-pale) 100%);
}

.media-layout .section-head {
  margin-bottom: 22px;
}

.media-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 220px;
  gap: 12px;
  perspective: 1200px;
}

.media-tile {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue-deep);
  box-shadow: 0 16px 36px rgba(6, 31, 53, 0.11);
}

.media-tile {
  margin: 0;
}

.media-tile.hero-tile {
  grid-row: span 2;
}

.media-tile img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(6, 31, 53, 0.74));
}

.media-tile figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(6, 31, 53, 0.82);
  font-size: 13px;
  font-weight: 950;
}

.media-tile:hover img {
  filter: saturate(1.08) contrast(1.04);
}

.video-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 170, 63, 0.2), transparent 28%),
    linear-gradient(135deg, #061f35, #08243a 58%, #03131f);
}

.video-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  animation: gridFloat 16s linear infinite;
}

.video-cinema {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.video-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.video-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  perspective: 1200px;
}

.video-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.video-card-main {
  min-height: 480px;
}

.video-card video {
  display: block;
  background: #000;
}

.video-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), #fff, var(--gold));
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.packages-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(70px, 7vw, 118px);
  background:
    linear-gradient(140deg, rgba(7, 39, 63, 0.06) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 8% 4%, rgba(214, 170, 63, 0.16), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f6fbff 58%, var(--blue-pale) 100%);
  background-size: 56px 56px, auto, auto;
}

.packages-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(214, 170, 63, 0.45), transparent);
}

.packages-section .package-head {
  max-width: 760px;
  margin: 0 auto clamp(26px, 4vw, 42px);
  text-align: center;
}

.packages-section .package-head h2 {
  max-width: 680px;
  margin: 0 auto 14px;
  color: var(--blue-deep);
  font-size: clamp(32px, 4.1vw, 58px);
  line-height: 1;
}

.packages-section .package-head > p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
}

.package-suite {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.package-feature,
.package-mini {
  overflow: hidden;
  border: 1px solid rgba(6, 31, 53, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(6, 31, 53, 0.1);
}

.package-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  min-height: 420px;
}

.package-feature-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--blue-deep);
}

.package-feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(3, 19, 31, 0.66)),
    linear-gradient(90deg, rgba(3, 19, 31, 0.1), transparent 54%);
}

.package-feature img,
.package-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-feature-media img {
  position: absolute;
  inset: 0;
}

.package-price-badge {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  display: grid;
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, #fff, var(--gold-soft) 52%, var(--gold));
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.18);
}

.package-price-badge span,
.package-price-badge small {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-price-badge strong {
  font-size: 38px;
  line-height: 0.95;
}

.package-feature-copy {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: clamp(24px, 3vw, 34px);
}

.package-feature-copy .button {
  justify-self: start;
}

.package-feature-copy > span,
.package-mini span,
.why-list span::before,
.map-points span,
.review-top strong {
  color: var(--gold);
  font-weight: 950;
}

.package-feature-copy > span,
.package-mini span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-feature h3,
.package-mini h3 {
  margin: 0;
  color: var(--blue-deep);
  line-height: 0.98;
}

.package-feature h3 {
  font-size: clamp(30px, 3.5vw, 46px);
}

.package-mini h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.package-feature p,
.package-feature li,
.package-mini p,
.package-mini li,
.map-copy p,
.reviews-section p,
.about-panel p,
.faq-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.package-feature ul,
.package-mini ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

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

.package-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--blue-pale);
  border: 1px solid rgba(6, 31, 53, 0.1);
  font-size: 13px;
  font-weight: 950;
}

.package-side-list {
  display: grid;
  gap: 16px;
}

.package-mini {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 202px;
}

.package-mini img {
  min-height: 202px;
}

.package-mini div {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
}

.package-mini a {
  width: max-content;
  color: var(--blue-deep);
  font-weight: 950;
  text-decoration: none;
}

.package-mini a::after {
  content: " →";
  color: var(--gold);
}

.package-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.94fr) minmax(0, 0.94fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

.tour-package {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(6, 31, 53, 0.1);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(6, 31, 53, 0.1);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.tour-package::before {
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(214, 170, 63, 0.18);
  border-radius: 16px;
}

.tour-package:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 170, 63, 0.48);
  box-shadow: 0 30px 82px rgba(6, 31, 53, 0.16);
}

.tour-package figure {
  position: relative;
  height: clamp(220px, 24vw, 320px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--blue-deep);
}

.tour-package.is-featured figure {
  height: clamp(260px, 28vw, 380px);
}

.tour-package figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(4, 23, 38, 0.04), rgba(4, 23, 38, 0.68)),
    linear-gradient(45deg, rgba(214, 170, 63, 0.12), transparent 42%);
}

.tour-package img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 500ms ease;
}

.tour-package:hover img {
  transform: scale(1.045);
}

.tour-package figure > span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 31, 53, 0.58);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.tour-package-body {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: clamp(22px, 2.4vw, 30px);
}

.tour-package-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(6, 31, 53, 0.1);
  color: var(--blue-deep);
}

.tour-package-price span,
.tour-package-price small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-package-price strong {
  margin-left: auto;
  color: var(--blue-deep);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.9;
  letter-spacing: 0;
}

.tour-package-price.is-offer strong {
  font-size: clamp(28px, 3vw, 40px);
}

.tour-package h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(24px, 2.35vw, 35px);
  line-height: 1.04;
}

.tour-package p,
.tour-package li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.tour-package p {
  margin: 0;
}

.tour-package ul {
  display: grid;
  gap: 6px;
  min-height: 0;
  margin: 0;
  padding-left: 18px;
}

.tour-package li:nth-child(3) {
  display: none;
}

.tour-package .button {
  width: 100%;
  margin-top: 6px;
}

.dark-button {
  width: max-content;
  color: var(--blue-deep);
  border-color: rgba(6, 31, 53, 0.22);
  background: var(--blue-pale);
}

.why-map-section {
  background: linear-gradient(180deg, #fff, var(--blue-pale));
}

.why-map-layout,
.about-faq-layout,
.reviews-layout {
  display: grid;
  gap: 18px;
}

.why-map-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.why-panel,
.map-panel,
.review-card,
.about-panel,
.faq-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 50px rgba(6, 31, 53, 0.08);
}

.why-panel,
.review-card,
.about-panel,
.faq-panel {
  padding: clamp(22px, 4vw, 36px);
}

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

.why-list span {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--blue-deep);
  background: var(--blue-pale);
  font-weight: 900;
}

.why-list span::before {
  content: "✓";
}

.map-panel {
  overflow: hidden;
}

.map-copy {
  padding: 26px 26px 0;
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  margin-top: 18px;
  border: 0;
  background: var(--blue-soft);
}

.map-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px 22px;
}

.map-points span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: var(--gold-soft);
  font-size: 13px;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(214, 170, 63, 0.2), transparent 28%),
    radial-gradient(circle at 78% 8%, rgba(228, 248, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #061f35 0%, #0b2d49 56%, #03131f 100%);
}

.reviews-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 84%, transparent);
}

.reviews-section::after {
  position: absolute;
  right: -10%;
  bottom: -32%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(228, 248, 255, 0.18), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.reviews-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.reviews-head .eyebrow {
  color: var(--gold);
}

.reviews-head h2 {
  color: #fff;
}

.reviews-head p {
  max-width: 640px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.76);
}

.review-card {
  display: grid;
  gap: 18px;
  min-height: 250px;
  padding: clamp(20px, 2.6vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08)),
    rgba(6, 31, 53, 0.42);
  box-shadow:
    0 28px 80px rgba(3, 19, 31, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(1.18);
  animation: reviewWave 7s ease-in-out infinite;
}

.reviews-wave {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(310px, 28vw, 380px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 22px 2px 34px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-wave::-webkit-scrollbar {
  display: none;
}

.reviews-wave .review-card {
  scroll-snap-align: center;
}

.reviews-wave .review-card:nth-child(2) {
  animation-delay: -1.4s;
}

.reviews-wave .review-card:nth-child(3) {
  animation-delay: -2.8s;
}

.reviews-wave .review-card:nth-child(4) {
  animation-delay: -4.2s;
}

.reviews-wave .review-card:nth-child(5) {
  animation-delay: -5.6s;
}

.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.58;
}

.review-top {
  display: flex;
  gap: 14px;
  align-items: center;
}

.review-avatar {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 243, 203, 0.48);
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), #fff, var(--gold));
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(3, 19, 31, 0.22);
}

.review-top strong {
  display: block;
  font-size: 19px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-top small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.reviews-cta {
  justify-self: center;
}

.about-faq-section {
  background: linear-gradient(180deg, var(--blue-pale), #fff);
}

.about-faq-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.faq-panel {
  display: grid;
  gap: 10px;
}

.faq-panel details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-panel summary {
  cursor: pointer;
  padding: 15px 16px;
  color: var(--blue-deep);
  font-weight: 950;
}

.faq-panel details p {
  margin: 0;
  padding: 0 16px 16px;
}

.media-tile[data-tilt],
.video-card[data-tilt],
.ship-feature[data-tilt] {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(var(--lift, 0));
}

.media-tile[data-tilt]:hover,
.video-card[data-tilt]:hover,
.ship-feature[data-tilt]:hover {
  --lift: -4px;
}

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

.trust-row span {
  justify-content: center;
  color: var(--blue-deep);
  background: var(--blue-pale);
  border: 1px solid var(--line);
}

.booking .trust-row span {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: translateZ(0) scale(1.01) translateX(-3px);
  }
  to {
    transform: translateZ(0) scale(1.025) translateX(3px);
  }
}

@keyframes routeImageFloat {
  from {
    transform: scale(1.02) translateX(-6px);
  }
  to {
    transform: scale(1.07) translateX(6px);
  }
}

@keyframes gridFloat {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 44px 44px, 44px 44px;
  }
}

@keyframes reviewWave {
  0%,
  100% {
    transform: translateY(0) rotate(-0.45deg);
  }
  50% {
    transform: translateY(-18px) rotate(0.45deg);
  }
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.82) translateY(18px);
  }
  42% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  78% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.96) translateY(-12px);
  }
}

@keyframes shipSlide {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(26px) scale(0.82) rotate(-4deg);
  }
  13% {
    opacity: 1;
    transform: translateX(18vw) translateY(4px) scale(0.94) rotate(1deg);
  }
  42% {
    opacity: 1;
    transform: translateX(51vw) translateY(-8px) scale(1.02) rotate(-1deg);
  }
  72% {
    opacity: 1;
    transform: translateX(84vw) translateY(4px) scale(1) rotate(1deg);
  }
  100% {
    opacity: 0;
    transform: translateX(122vw) translateY(-16px) scale(0.94) rotate(2deg);
  }
}

@keyframes waterMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 190px 0;
  }
}

@keyframes wakeTrail {
  0% {
    opacity: 0;
    transform: translateX(-22vw) scaleX(0.08);
  }
  18% {
    opacity: 0.74;
  }
  58% {
    opacity: 0.9;
    transform: translateX(9vw) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translateX(28vw) scaleX(1.22);
  }
}

@keyframes sunRise {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.72);
  }
  35%,
  78% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
  100% {
    opacity: 0.22;
    transform: translateX(-50%) scale(1.12);
  }
}

@keyframes cloudSweep {
  0% {
    opacity: 0;
    transform: translateX(0) scaleX(0.75);
  }
  24%,
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(128vw) scaleX(1.08);
  }
}

@keyframes introBrandCinematic {
  0%,
  34% {
    opacity: 0;
    filter: blur(12px);
    transform: translateX(-50%) translateY(22px) scale(0.9);
  }
  55%,
  82% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(-50%) translateY(-18px) scale(1.04);
  }
}

@keyframes skyGlow {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  30%,
  82% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1.02);
  }
}

@keyframes introMark {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  26%,
  78% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.site-footer {
  padding: 58px 0 24px;
  color: #fff;
  background: var(--blue-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
}

.footer-brand {
  margin-bottom: 20px;
}

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

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  width: min(1180px, calc(100% - 36px));
  margin: 38px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.floating-call {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 14px 34px rgba(18, 140, 126, 0.34);
  font-weight: 950;
}

.floating-call::before {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  content: "";
  background: rgba(37, 211, 102, 0.22);
  animation: whatsappPulse 1800ms ease-out infinite;
}

.floating-call svg {
  position: relative;
  z-index: 1;
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.floating-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(18, 140, 126, 0.42);
}

@media (max-width: 1080px) {
  .route-layout,
  .vessel-layout,
  .details-layout,
  .booking-layout,
  .split-head,
  .video-layout,
  .video-cinema,
  .fleet-head,
  .itinerary-hero,
  .itinerary-grid,
  .why-map-layout,
  .reviews-layout,
  .about-faq-layout {
    grid-template-columns: 1fr;
  }

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

  .booking-card {
    position: static;
  }

  .route-intro,
  .gallery-group-head {
    position: static;
  }

  .experience-grid,
  .price-grid,
  .fleet-grid,
  .destination-grid,
  .why-grid,
  .trip-layout,
  .destination-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-suite,
  .package-feature {
    grid-template-columns: 1fr;
  }

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

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

  .package-mini {
    grid-template-columns: 1fr;
  }

  .package-mini img {
    min-height: 220px;
  }

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

  .video-stage {
    grid-template-columns: 1fr;
  }

  .video-card,
  .video-card-main {
    min-height: 360px;
  }

  .destination-card.featured {
    grid-column: auto;
  }

  .gallery-group {
    grid-template-columns: 1fr;
  }

  .trip-section .split-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .trip-section .split-head h2 {
    max-width: 760px;
    font-size: clamp(42px, 8vw, 72px);
  }

  .trip-section .split-head > p {
    max-width: 760px;
    margin: 0;
    font-size: 18px;
  }
}

@media (max-width: 760px) {
  .packages-section .split-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .packages-section .split-head h2 {
    max-width: 520px;
    font-size: clamp(32px, 7vw, 42px);
  }

  .packages-section .split-head > p {
    max-width: 520px;
    font-size: 15px;
  }

  .package-feature-media {
    min-height: 280px;
  }

  .package-feature h3 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .package-feature p,
  .package-feature li,
  .package-mini p,
  .package-mini li {
    font-size: 15px;
  }

  .package-feature li:nth-child(3) {
    display: none;
  }

  .package-side-list {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-package {
    border-radius: 20px;
  }

  .tour-package figure,
  .tour-package img {
    min-height: 230px;
  }

  .tour-package h3 {
    font-size: clamp(25px, 7vw, 34px);
  }

  .tour-package ul {
    min-height: 0;
  }

  .package-mini {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 190px;
  }

  .package-mini img {
    min-height: 190px;
  }

  .package-mini ul {
    display: none;
  }

  .package-mini div {
    padding: 18px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .lang-toggle {
    width: 42px;
    height: 42px;
  }

  .site-header.is-open .nav {
    position: fixed;
    inset: 88px 14px auto;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background:
      linear-gradient(135deg, rgba(6, 31, 53, 0.86), rgba(18, 63, 99, 0.72)),
      rgba(6, 31, 53, 0.78);
    box-shadow: 0 22px 70px rgba(3, 19, 31, 0.24);
    backdrop-filter: blur(20px) saturate(1.35);
  }

  .site-header.is-open .nav a {
    justify-content: space-between;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    border-bottom: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-open .nav a::after {
    content: ">";
    font-size: 18px;
    line-height: 1;
  }

  .site-header.is-open .nav a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-inner {
    min-height: 100vh;
    min-height: 100svh;
    padding: 94px 0 34px;
  }
}

@media (max-width: 760px) {
  .trip-layout {
    grid-template-columns: 1fr;
  }

  .ship-feature,
  .pirate-feature,
  .sirena-feature {
    min-height: 520px;
  }

  .ship-feature img {
    min-height: 520px;
  }

  .destination-strip {
    display: flex;
    gap: 12px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .destination-strip article,
  .destination-strip article:first-child {
    flex: 0 0 230px;
    min-height: 170px;
    scroll-snap-align: start;
  }
}

@media (max-width: 620px) {
  .section,
  .experience-band {
    padding: 46px 0;
  }

  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

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

  h1 {
    font-size: clamp(50px, 17vw, 72px);
  }

  .hero-video,
  .hero-image {
    object-position: 53% 38%;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.03;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-copy-block {
    text-shadow: 0 8px 24px rgba(3, 19, 31, 0.72);
  }

  .subpage-hero {
    min-height: 620px;
    padding: 132px 0 54px;
  }

  .subpage-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
    line-height: 0.96;
  }

  .hero-actions,
  .contact-strip,
  .experience-grid,
  .price-grid,
  .fleet-grid,
  .why-grid,
  .trip-layout,
  .info-panels,
  .why-list,
  .trust-row,
  .spec-list,
  .detail-columns,
  .footer-grid,
  .video-grid,
  .media-grid,
  .poster-gallery {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .contact-strip a {
    width: 100%;
  }

  .dark-button {
    width: 100%;
  }

  .booking-layout {
    gap: 28px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .booking-step-panel,
  .booking-step-grid {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    gap: 7px;
  }

  .booking-progress span {
    min-height: 36px;
  }

  .booking-step-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-step-actions .button {
    width: 100%;
    min-width: 0;
  }

  .booking-form > label,
  .booking-form-head,
  .booking-progress,
  .booking-step-panel,
  .booking-step-title,
  .booking-form fieldset,
  .booking-form .payment-summary,
  .booking-form .payment-status,
  .booking-form .form-button {
    grid-column: 1 / -1;
  }

  .booking-form-head {
    display: grid;
    gap: 6px;
  }

  .booking-premium-panel {
    margin-top: 22px;
  }

  .package-suite,
  .package-side-list,
  .package-feature {
    grid-template-columns: 1fr;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .package-mini {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .package-feature {
    min-height: 0;
  }

  .package-feature-media {
    min-height: 260px;
  }

  .package-feature h3 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .package-price-badge {
    right: 14px;
    bottom: 14px;
    min-width: 128px;
  }

  .package-price-badge strong {
    font-size: 36px;
  }

  .package-meta span {
    flex: 1 1 auto;
    text-align: center;
  }

  .map-panel iframe {
    min-height: 300px;
  }

  .map-copy {
    padding: 22px 18px 0;
  }

  .package-feature-copy,
  .package-mini div,
  .why-panel,
  .review-card,
  .about-panel,
  .faq-panel {
    padding: 20px;
  }

  .hero-book-button {
    min-height: 52px;
    max-width: 280px;
    margin: 0 auto;
    padding: 14px 24px;
  }

  .route-stops article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vessel-collage {
    grid-template-columns: 1fr;
  }

  .vessel-collage .wide,
  .media-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .media-card,
  .media-card.large {
    min-height: 320px;
  }

  .media-card.flyer {
    min-height: 520px;
  }

  .ship-feature,
  .ship-feature img {
    min-height: 430px;
  }

  .ship-feature-copy {
    padding: 24px 20px;
  }

  .ship-feature-copy h3 {
    font-size: clamp(28px, 10vw, 38px);
  }

  .ship-feature-copy p {
    font-size: 15px;
    line-height: 1.48;
  }

  .itinerary-hero {
    min-height: 0;
  }

  .itinerary-hero .button {
    justify-self: stretch;
  }

  .route-timeline::before {
    left: 39px;
  }

  .route-timeline li {
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .route-timeline li > span {
    min-width: 0;
    padding: 8px 7px;
    font-size: 11px;
  }

  .price-stack article {
    grid-template-columns: 1fr;
  }

  .route-album-card {
    --route-card-width: min(340px, 86vw);
    padding: 0;
  }

  .album-intro {
    margin-bottom: 22px;
  }

  .album-intro h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .album-intro p {
    display: none;
  }

  .route-album {
    gap: 16px;
    margin: 0;
    padding: 4px 0 18px;
    scroll-padding-inline: 0;
  }

  .route-slide,
  .route-slide:nth-child(3) {
    flex-basis: var(--route-card-width);
    height: 480px;
    min-height: 480px;
  }

  .route-slide .route-copy {
    padding: 24px 20px;
  }

  .route-number {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .route-slide h4 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .route-slide p {
    font-size: 15px;
  }

  .route-edge {
    top: 58%;
    width: 44px;
    height: 44px;
    font-size: 40px;
  }

  .route-edge-left {
    left: -10px;
  }

  .route-edge-right {
    right: -10px;
  }

  .reviews-wave {
    grid-auto-columns: min(326px, 84vw);
    gap: 14px;
    padding-bottom: 26px;
  }

  .review-card {
    min-height: 260px;
  }
}

  .ticket-row {
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 10px;
    padding: 11px;
  }

  .ticket-row input {
    min-height: 46px;
  }

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

  .trip-facts article,
  .route-card,
  .booking-card,
  .info-panels article {
    padding: 18px;
  }

  .notice-strip {
    display: grid;
  }

  .media-tile.hero-tile {
    grid-row: auto;
  }

  .destination-strip,
  .media-showcase,
  .video-stage {
    display: flex;
    gap: 12px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
  }

  .destination-strip article {
    min-width: 218px;
    scroll-snap-align: start;
  }

  .media-tile,
  .video-card {
    flex: 0 0 280px;
    height: 280px;
    scroll-snap-align: start;
  }

  .media-tile.hero-tile {
    flex-basis: 320px;
  }

  .video-card-main {
    flex-basis: 320px;
    height: 320px;
    min-height: 320px;
  }

  body.is-floating-visible .floating-call {
    display: grid;
    bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.gallery-page-hero::before {
  background-image: url("assets/gallery/pashaj-drone-blue-bay.jpeg");
}

.about-page-hero::before {
  background-image: url("assets/gallery/pashaj-pirate-evening.jpeg");
}

.gallery-pro-hero,
.about-pro-hero {
  min-height: min(760px, 82svh);
}

.gallery-pro-hero .subpage-hero-inner,
.about-pro-hero .subpage-hero-inner {
  max-width: 980px;
}

.gallery-pro-section {
  background:
    linear-gradient(180deg, #fff 0%, #f5f9fc 55%, #fff 100%);
}

.gallery-pro-head,
.about-values-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.36fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.gallery-pro-head span,
.gallery-video-copy span,
.about-story-copy span,
.about-values-head + .about-values-grid span,
.about-values-head span,
.faq-panel > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-pro-head h2,
.gallery-video-copy h2,
.about-story-copy h2,
.about-values-head h2 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(34px, 5.6vw, 76px);
  line-height: 0.94;
}

.gallery-pro-head p,
.gallery-video-copy p,
.about-story-copy p,
.about-values-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
}

.gallery-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
  perspective: 1200px;
}

.gallery-feature-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--blue-deep);
  box-shadow: 0 24px 70px rgba(6, 31, 53, 0.14);
}

.gallery-feature-card--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-feature-card--tall {
  grid-row: span 2;
}

.gallery-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 36%, rgba(3, 19, 31, 0.86)),
    linear-gradient(90deg, rgba(3, 19, 31, 0.22), transparent 54%);
}

.gallery-feature-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  color: #fff;
}

.gallery-feature-card figcaption span {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 12px;
  font-weight: 950;
}

.gallery-feature-card figcaption strong {
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1;
}

.gallery-feature-card figcaption small {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.gallery-feature-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}

.gallery-video-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%, rgba(214, 170, 63, 0.18), transparent 28%),
    linear-gradient(135deg, #061f35 0%, #092b45 52%, #020f19 100%);
}

.gallery-video-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.gallery-video-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.gallery-video-copy h2 {
  color: #fff;
}

.gallery-video-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.gallery-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.gallery-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #000;
}

.gallery-video-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
}

.gallery-video-card strong {
  color: #fff;
  font-weight: 950;
}

.gallery-video-card span {
  color: var(--gold);
  font-weight: 950;
}

.about-story-section {
  background: linear-gradient(180deg, #fff, var(--blue-pale));
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.about-story-copy {
  display: grid;
  gap: 18px;
}

.about-photo-stack {
  position: relative;
  min-height: 620px;
}

.about-photo-main,
.about-photo-small {
  position: absolute;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(6, 31, 53, 0.18);
}

.about-photo-main {
  inset: 0 7% 70px 0;
  width: 86%;
  height: calc(100% - 70px);
}

.about-photo-small {
  right: 0;
  bottom: 0;
  width: 54%;
  height: 250px;
  border: 8px solid #fff;
}

.about-values-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(214, 170, 63, 0.14), transparent 26%),
    linear-gradient(180deg, var(--blue-pale), #fff);
}

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

.about-values-grid article {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(6, 31, 53, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(6, 31, 53, 0.08);
}

.about-values-grid article span {
  width: max-content;
  margin-bottom: 34px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  font-size: 12px;
  font-weight: 950;
}

.about-values-grid h3 {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.05;
}

.about-values-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-faq-layout-pro {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.about-contact-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--blue-deep);
  box-shadow: 0 24px 70px rgba(6, 31, 53, 0.14);
}

.about-contact-panel img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.about-contact-panel div {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.about-contact-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.98;
}

.about-contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.about-contact-panel .button {
  justify-self: start;
}

@media (max-width: 1080px) {
  .gallery-feature-grid,
  .about-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-feature-card--wide,
  .gallery-feature-card--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-feature-card--wide {
    grid-column: span 2;
  }

  .gallery-video-layout,
  .about-story-grid,
  .about-faq-layout-pro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gallery-pro-head,
  .about-values-head,
  .gallery-video-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-feature-grid {
    display: flex;
    gap: 14px;
    margin-right: -18px;
    padding-right: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .gallery-feature-card,
  .gallery-feature-card--wide,
  .gallery-feature-card--tall {
    flex: 0 0 min(82vw, 340px);
    min-height: 420px;
    scroll-snap-align: start;
  }

  .gallery-video-card video {
    aspect-ratio: 4 / 5;
  }

  .about-photo-stack {
    min-height: 470px;
  }

  .about-photo-main {
    inset: 0 0 92px;
    width: 100%;
    height: 360px;
  }

  .about-photo-small {
    width: 64%;
    height: 180px;
    border-width: 6px;
  }

  .about-values-grid article {
    min-height: 0;
  }

  .about-contact-panel .button {
    justify-self: stretch;
  }
}

/* Footer social icons + credit */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  margin: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease, color 160ms ease;
}
.footer-social a:hover {
  background: rgba(214, 170, 63, 0.92);
  border-color: rgba(214, 170, 63, 0.92);
  color: #06283a;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
.footer-credit {
  width: min(1180px, calc(100% - 36px));
  margin: 6px auto 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.01em;
}
.footer-credit a {
  display: inline;
  margin: 0;
  color: #d6aa3f;
  font-weight: 800;
  text-decoration: none;
}
.footer-credit a:hover { text-decoration: underline; }
