:root {
  --ink: #13202b;
  --muted: #667382;
  --paper: #f5f1e9;
  --mist: #edf4f1;
  --jade: #0d756d;
  --river: #174a7c;
  --cinnabar: #bd3b2f;
  --gold: #c89b3c;
  --white: #ffffff;
  --line: rgba(19, 32, 43, 0.12);
  --shadow: 0 22px 60px rgba(19, 32, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px clamp(20px, 5vw, 68px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(4, 32, 67, 0.94), rgba(4, 32, 67, 0.68));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(320px, 40vw);
  min-width: 218px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.58);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.mobile-menu-toggle span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

section,
#top {
  scroll-margin-top: 86px;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: var(--white);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 16, 35, 0.93), rgba(3, 24, 47, 0.68) 42%, rgba(3, 24, 47, 0.16) 72%),
    linear-gradient(180deg, rgba(4, 32, 67, 0.14), rgba(4, 20, 35, 0.58));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(940px, calc(100% - 40px));
  min-height: 94vh;
  padding: 142px 0 72px;
  margin-left: clamp(20px, 8vw, 112px);
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 14px 0 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--cinnabar);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 880px;
}

.proof-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.photo-ribbon {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1px;
  background: var(--ink);
}

.photo-ribbon figure {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
}

.photo-ribbon img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.photo-ribbon figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(3, 16, 35, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.band {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
}

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

.intro-grid,
.section-heading,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro p,
.section-heading p,
.cruise-content p,
.contact p {
  color: var(--muted);
  font-size: 17px;
}

.services {
  background: var(--paper);
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 56px);
}

.service-grid {
  display: grid;
  gap: 18px;
}

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

.core-card {
  display: flex;
  flex-direction: column;
  min-height: 670px;
  overflow: hidden;
  background: var(--white);
  border-top: 5px solid var(--jade);
  box-shadow: 0 14px 36px rgba(19, 32, 43, 0.08);
}

.core-card.featured {
  border-color: var(--river);
}

.core-card:nth-child(3) {
  border-color: var(--cinnabar);
}

.core-card > img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.core-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.service-kicker {
  margin-bottom: 10px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 850;
}

.core-card.featured .service-kicker {
  color: var(--river);
}

.core-card:nth-child(3) .service-kicker {
  color: var(--cinnabar);
}

.core-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.core-card p {
  color: var(--muted);
}

.core-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.core-card li {
  padding-left: 18px;
  background: linear-gradient(var(--gold), var(--gold)) 0 11px / 8px 2px no-repeat;
  color: var(--muted);
  font-size: 14px;
}

.cruise-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
  min-height: 640px;
  background: var(--ink);
  color: var(--white);
}

.cruise-photo {
  min-height: 460px;
  overflow: hidden;
}

.cruise-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cruise-content {
  align-self: center;
  padding: clamp(38px, 5vw, 70px);
}

.cruise-content h2 {
  max-width: 620px;
}

.cruise-content p {
  color: rgba(255, 255, 255, 0.76);
}

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

.booking-points span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.destination-grid {
  background: var(--mist);
}

.destination-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 330px;
  gap: 16px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-card:hover img {
  transform: scale(1.04);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 28, 0.06), rgba(9, 18, 28, 0.74));
}

.destination-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.destination-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.destination-card h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.14;
}

.itinerary-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(54px, 7vw, 90px) clamp(20px, 6vw, 76px);
  background:
    linear-gradient(90deg, rgba(245, 241, 233, 0.94), rgba(245, 241, 233, 0.78)),
    url("assets/gallery/skyline-wide.jpg") center / cover;
}

.itinerary-copy h2 {
  margin-bottom: 0;
}

.itinerary-list {
  display: grid;
  gap: 14px;
}

.itinerary-list p {
  margin: 0;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
  border-left: 4px solid var(--gold);
  color: var(--muted);
  box-shadow: 0 12px 34px rgba(19, 32, 43, 0.09);
}

.itinerary-list strong {
  color: var(--ink);
}

.trust {
  background:
    linear-gradient(90deg, rgba(7, 18, 30, 0.94), rgba(7, 18, 30, 0.8) 42%, rgba(7, 18, 30, 0.62)),
    url("assets/office-trust-bg.jpg") center / cover;
  color: var(--white);
}

.trust .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.text-link {
  justify-self: end;
  align-self: start;
  color: var(--gold);
  font-weight: 850;
}

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

.trust-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(29, 44, 57, 0.86);
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.trust-grid strong {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.trust-grid h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 22px;
  line-height: 1.18;
}

.trust-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

.contact {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 76px);
  background: var(--mist);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods div {
  padding: 18px;
  background: var(--white);
  border-left: 4px solid var(--jade);
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-guidance {
  border-left: 4px solid var(--jade);
  padding: 14px 16px;
  background: #f2f8f6;
  color: var(--ink);
}

.form-guidance strong,
.form-guidance span {
  display: block;
}

.form-guidance span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.label-title {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.required {
  color: var(--cinnabar);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d4dbde;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfc;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(200, 155, 60, 0.18);
  outline-offset: 0;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note[data-type="success"] {
  color: var(--jade);
  font-weight: 800;
}

.form-note[data-type="error"] {
  color: var(--cinnabar);
  font-weight: 800;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 76px) 92px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

footer p {
  margin: 0;
}

.footer-company,
.footer-records {
  display: grid;
  gap: 6px;
}

.footer-company p:first-child {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.footer-company p:not(:first-child) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.footer-records {
  justify-items: end;
  color: rgba(200, 155, 60, 0.78);
  font-size: 12px;
  font-weight: 700;
}

footer a {
  color: rgba(200, 155, 60, 0.78);
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(19, 32, 43, 0.22);
  backdrop-filter: blur(12px);
}

.floating-cta a,
.floating-cta button {
  min-height: 42px;
  border: 0;
  padding: 10px 13px;
  color: var(--white);
  background: var(--jade);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.floating-cta button {
  background: var(--river);
}

.floating-cta .floating-quote {
  order: 3;
  background: var(--cinnabar);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 40;
  padding: 12px 14px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.subpage-hero {
  position: relative;
  min-height: min(720px, 82vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.subpage-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 28, 0.9), rgba(4, 16, 28, 0.62) 48%, rgba(4, 16, 28, 0.28)),
    linear-gradient(0deg, rgba(4, 16, 28, 0.82), rgba(4, 16, 28, 0.1) 58%);
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  padding: 150px 0 76px;
  margin-left: clamp(20px, 6vw, 76px);
}

.subpage-hero-content h1 {
  max-width: 860px;
  margin: 16px 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.92;
}

.subpage-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.subpage-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.subpage-proof span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.split-intro h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.98;
}

.split-intro p,
.route-card p,
.ship-card p,
.china-route-card p {
  color: var(--muted);
}

.service-points {
  display: grid;
  gap: 14px;
}

.service-point {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(19, 32, 43, 0.08);
}

.service-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

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

.ship-card,
.route-card,
.china-route-card {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(19, 32, 43, 0.08);
}

.ship-card {
  display: grid;
  align-content: end;
  border-top: 4px solid var(--river);
}

.ship-card h3,
.route-card h3,
.china-route-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 23px;
}

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

.route-card {
  border-top: 4px solid var(--gold);
}

.route-card strong {
  color: var(--cinnabar);
  font-size: 13px;
  text-transform: uppercase;
}

.subpage-band {
  background: var(--ink);
  color: var(--white);
}

.subpage-band .section-heading p,
.subpage-band .route-card p,
.subpage-band .china-route-card p {
  color: rgba(255, 255, 255, 0.72);
}

.subpage-band .route-card,
.subpage-band .china-route-card {
  background: rgba(255, 255, 255, 0.08);
}

.subpage-band .route-card h3,
.subpage-band .china-route-card h3 {
  color: var(--white);
}

.page-nav-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 12px;
  }

  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: relative;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .language-switch {
    margin-left: auto;
    padding: 8px 10px;
  }

  .site-header.is-menu-open nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    max-height: min(72vh, 520px);
    overflow-y: auto;
    padding: 8px;
    background: rgba(7, 18, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  }

  .site-header.is-menu-open nav a {
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 15px;
  }

  .site-header.is-menu-open nav a:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .section-heading,
  .contact,
  .cruise-showcase,
  .itinerary-band,
  .split-intro {
    grid-template-columns: 1fr;
  }

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

  .core-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    min-height: 0;
  }

  .core-card > img {
    height: 100%;
    min-height: 360px;
  }

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

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

  .text-link {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand {
    width: min(238px, 68vw);
    min-width: 0;
  }

  .nav-cta {
    display: none;
  }

  .language-switch {
    min-width: 44px;
    font-size: 12px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 112px;
  }

  .subpage-hero {
    min-height: 680px;
  }

  .subpage-hero-content {
    width: calc(100% - 32px);
    padding: 132px 0 48px;
    margin: 0 auto;
  }

  h1 {
    font-size: 43px;
  }

  .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .photo-ribbon figure,
  .photo-ribbon img {
    min-height: 150px;
  }

  .core-card {
    display: flex;
  }

  .core-card > img {
    height: 250px;
    min-height: 0;
  }

  .cruise-showcase {
    min-height: 0;
  }

  .cruise-photo {
    min-height: 290px;
  }

  .booking-points,
  .destination-cards,
  .trust-grid,
  .ship-grid,
  .route-grid,
    .china-route-grid {
    grid-template-columns: 1fr;
  }

  .destination-cards {
    grid-auto-rows: 290px;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .floating-cta a,
  .floating-cta button {
    flex: 1;
    padding-inline: 8px;
    font-size: 13px;
    white-space: nowrap;
  }

  .footer-records {
    justify-items: start;
  }
}

.custom-hero .subpage-hero-content h1 {
  max-width: 940px;
  font-size: clamp(42px, 7vw, 86px);
}

.custom-hero .subpage-hero-content p {
  max-width: 760px;
}

.custom-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(1180px, calc(100% - clamp(36px, 10vw, 128px)));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) 0;
}

.custom-overview-copy h2,
.custom-advantage-panel h2 {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.custom-overview-copy p,
.custom-advantage-panel p {
  color: var(--muted);
  font-size: 18px;
}

.custom-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.custom-stat-row span {
  min-height: 112px;
  padding: 18px;
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 14px 38px rgba(19, 32, 43, 0.08);
  color: var(--muted);
  font-weight: 700;
}

.custom-stat-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--river);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.custom-photo-stack {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-auto-rows: 230px;
  gap: 14px;
}

.custom-photo-stack figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.custom-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-photo-stack figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(4, 16, 28, 0.64), rgba(4, 16, 28, 0.08));
}

.custom-photo-stack figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.custom-photo-large {
  grid-row: span 2;
}

.custom-direction-section,
.custom-audience-section,
.custom-advantage-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.custom-direction-section {
  background: #f8f5ef;
}

.custom-audience-section {
  background: var(--ink);
  color: var(--white);
}

.custom-advantage-section {
  background: var(--mist);
}

.custom-direction-section > .section-heading,
.custom-direction-section > .custom-direction-grid,
.custom-audience-section > .section-heading,
.custom-audience-section > .custom-audience-grid,
.custom-advantage-section > .custom-advantage-panel {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.custom-direction-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(19, 32, 43, 0.1);
}

.custom-direction-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.custom-direction-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.custom-direction-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.custom-direction-card h3,
.custom-audience-grid h3 {
  margin: 12px 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.08;
}

.custom-direction-card p,
.custom-direction-card li {
  color: var(--muted);
}

.custom-direction-card ul {
  display: grid;
  gap: 9px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.custom-direction-card li {
  padding-left: 18px;
  background: linear-gradient(var(--gold), var(--gold)) 0 12px / 8px 2px no-repeat;
}

.custom-audience-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.custom-audience-section .section-heading h2,
.custom-audience-grid h3 {
  color: var(--white);
}

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

.custom-audience-grid article {
  min-height: 280px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--gold);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.custom-audience-grid strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.custom-audience-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.custom-advantage-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.custom-advantage-list {
  display: grid;
  gap: 14px;
}

.custom-advantage-list article {
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--jade);
  box-shadow: 0 14px 38px rgba(19, 32, 43, 0.08);
}

.custom-advantage-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

@media (max-width: 1080px) {
  .custom-overview,
  .custom-advantage-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .custom-overview {
    width: calc(100% - 32px);
  }

  .custom-stat-row,
  .custom-photo-stack,
  .custom-direction-grid,
  .custom-audience-grid {
    grid-template-columns: 1fr;
  }

  .custom-photo-stack {
    grid-auto-rows: 220px;
  }

  .custom-photo-large {
    grid-row: auto;
  }

  .custom-direction-card img {
    height: 220px;
  }
}

.cruise-hero {
  position: relative;
  min-height: min(760px, 88vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.cruise-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.cruise-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 14, 27, 0.92), rgba(4, 14, 27, 0.68) 46%, rgba(4, 14, 27, 0.28)),
    linear-gradient(0deg, rgba(4, 14, 27, 0.9), rgba(4, 14, 27, 0.08) 62%);
}

.cruise-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 5vw, 72px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 112px;
}

.cruise-hero-copy h1 {
  max-width: 860px;
  margin: 18px 0;
  font-size: clamp(46px, 7.2vw, 90px);
  line-height: 0.94;
}

.cruise-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
}

.cruise-quick-card {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 26, 42, 0.74);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.quick-card-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cruise-quick-card ul,
.cruise-route-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.cruise-quick-card li,
.cruise-route-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.cruise-quick-card li::before,
.cruise-route-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 2px;
  background: var(--gold);
}

.cruise-route-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 20, 34, 0.86);
}

.cruise-route-strip span {
  min-height: 70px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.cruise-planner {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background: #eef5f4;
}

.cruise-planner > .section-heading,
.cruise-planner > .cruise-route-grid,
.cruise-brand-section > .section-heading,
.cruise-brand-section > .cruise-brand-grid,
.cruise-facilities > .section-heading,
.cruise-facilities > .facility-layout,
.cruise-facilities > .facility-note,
.cruise-attractions > .section-heading,
.cruise-attractions > .attraction-notes,
.cruise-attractions > .attraction-grid,
.cruise-why-haixia > .section-heading,
.cruise-why-haixia > .credential-grid {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

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

.cruise-route-card {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 390px;
  padding: 28px;
  background: var(--white);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 46px rgba(19, 32, 43, 0.1);
}

.cruise-route-card.route-yichang,
.cruise-route-card.route-wuhan,
.cruise-route-card.route-shanghai {
  background-color: #06192a;
  background-image: linear-gradient(0deg, rgba(6, 25, 42, 0.86), rgba(6, 25, 42, 0.18));
  color: var(--white);
}

.cruise-route-card.route-yichang {
  background-image:
    linear-gradient(0deg, rgba(6, 25, 42, 0.86), rgba(6, 25, 42, 0.2)),
    url("assets/gallery/cruise-card.jpg");
}

.cruise-route-card.route-wuhan {
  background-image:
    linear-gradient(0deg, rgba(6, 25, 42, 0.86), rgba(6, 25, 42, 0.18)),
    url("assets/routes/president-seven-wuhan.jpg");
  background-position: center;
}

.cruise-route-card.route-shanghai {
  background-image:
    linear-gradient(0deg, rgba(6, 25, 42, 0.86), rgba(6, 25, 42, 0.16)),
    url("assets/routes/century-myth-shanghai.jpg");
  background-position: center 58%;
}

.cruise-route-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cruise-route-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1;
}

.cruise-route-card.route-yichang h3,
.cruise-route-card.route-wuhan h3,
.cruise-route-card.route-shanghai h3 {
  color: var(--white);
}

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

.cruise-route-card.route-yichang p,
.cruise-route-card.route-yichang li,
.cruise-route-card.route-wuhan p,
.cruise-route-card.route-wuhan li,
.cruise-route-card.route-shanghai p,
.cruise-route-card.route-shanghai li {
  color: rgba(255, 255, 255, 0.82);
}

.cruise-route-card:not(.route-yichang):not(.route-wuhan):not(.route-shanghai) li {
  color: var(--muted);
}

.cruise-brand-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background: #f8f5ef;
}

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

.cruise-brand-card {
  display: grid;
  grid-template-rows: 58px 190px 1fr;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 32, 43, 0.1);
}

.brand-name-strip {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  background: var(--ink);
  padding: 0 14px;
}

.brand-ship-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.brand-card-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  padding: 22px;
  min-height: 250px;
}

.brand-card-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.12;
}

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

.brand-card-body .brand-vessels {
  color: var(--river);
  font-size: 13px;
  line-height: 1.45;
  min-height: 54px;
  max-height: 54px;
  overflow: hidden;
}

.brand-card-body .brand-vessels strong {
  display: block;
  margin-bottom: 4px;
  color: var(--river);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-card-body span {
  color: var(--river);
  font-size: 13px;
  font-weight: 800;
}

.cruise-facilities {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background: #f8f5ef;
}

.facility-layout {
  display: grid;
  gap: 18px;
}

.facility-feature,
.facility-card {
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 32, 43, 0.1);
}

.facility-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 0.88fr);
  background: var(--ink);
  color: var(--white);
}

.facility-feature img,
.facility-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.facility-feature img {
  height: clamp(440px, 48vw, 620px);
  min-height: 440px;
}

.facility-feature-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(28px, 5vw, 56px);
}

.facility-feature-copy span,
.facility-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.facility-feature-copy h3,
.facility-card h3 {
  margin: 0;
  color: inherit;
  line-height: 1.12;
}

.facility-feature-copy h3 {
  font-size: clamp(26px, 2.8vw, 38px);
}

.facility-feature-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
}

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

.facility-card {
  display: grid;
  grid-template-rows: 190px 1fr;
}

.facility-card img {
  height: 190px;
}

.facility-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.facility-card h3 {
  color: var(--ink);
  font-size: 21px;
}

.facility-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.facility-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.cruise-attractions {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background: #eef5f4;
}

.attraction-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: -18px 0 28px;
}

.attraction-notes p {
  margin: 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

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

.attraction-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 32, 43, 0.1);
}

.attraction-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.attraction-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.attraction-card span {
  width: fit-content;
  padding: 5px 8px;
  background: rgba(211, 153, 46, 0.13);
  color: #a8730c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.attraction-card.is-long-route span {
  background: rgba(9, 91, 127, 0.12);
  color: #095b7f;
}

.attraction-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.12;
}

.attraction-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.cruise-support-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(7, 18, 30, 0.94), rgba(7, 18, 30, 0.78)),
    url("assets/gallery/cruise-wide.jpg") center / cover;
  color: var(--white);
}

.cruise-support-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.98;
}

.cruise-support-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.cruise-support-grid {
  display: grid;
  gap: 14px;
}

.cruise-support-grid article {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.cruise-support-grid strong {
  color: var(--gold);
  font-size: 13px;
}

.cruise-support-grid h3 {
  margin: 8px 0;
  color: var(--white);
  font-size: 24px;
}

.cruise-support-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cruise-why-haixia {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background: #f3f7f6;
}

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

.credential-card {
  display: grid;
  grid-template-rows: 380px 1fr;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(19, 32, 43, 0.1);
}

.credential-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
  height: 380px;
  box-sizing: border-box;
  background:
    linear-gradient(135deg, rgba(10, 68, 107, 0.08), rgba(200, 155, 60, 0.1)),
    #f8faf8;
  overflow: hidden;
}

.credential-image {
  width: 100%;
  height: 100%;
  display: block;
}

.credential-image-document {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.credential-image-authorization {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 88%;
}

.credential-image-office {
  object-fit: cover;
  object-position: center center;
}

.credential-copy {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.credential-copy span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.credential-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.08;
}

.credential-copy p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .cruise-hero-content,
  .cruise-support-band,
  .facility-layout {
    grid-template-columns: 1fr;
  }

  .cruise-route-grid,
  .cruise-brand-grid,
  .attraction-grid,
  .facility-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cruise-route-card {
    min-height: 360px;
  }

  .facility-feature {
    grid-template-columns: 1fr;
  }

  .facility-feature img {
    height: 420px;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .cruise-hero {
    min-height: 740px;
  }

  .cruise-hero-content {
    width: calc(100% - 32px);
    padding: 132px 0 72px;
  }

  .cruise-quick-card {
    padding: 20px;
  }

  .cruise-route-grid,
  .cruise-brand-grid,
  .attraction-grid,
  .facility-grid,
  .credential-grid,
  .cruise-route-strip {
    grid-template-columns: 1fr;
  }

  .attraction-notes {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .attraction-card {
    grid-template-rows: 220px 1fr;
  }

  .facility-feature {
    grid-template-columns: 1fr;
  }

  .facility-feature img {
    height: 360px;
    min-height: 360px;
  }

  .facility-card {
    grid-template-rows: 210px 1fr;
  }

  .facility-card img {
    height: 210px;
  }

  .cruise-route-card {
    min-height: 330px;
  }

  .credential-card {
    grid-template-rows: 340px 1fr;
  }

  .credential-card figure {
    height: 340px;
  }
}
