:root {
  --ink: #071b31;
  --ink-soft: #0b2742;
  --ivory: #f3f7fb;
  --warm-white: #ffffff;
  --sand: #dce8f2;
  --taupe: #5c6f82;
  --gold: #c69b4b;
  --gold-light: #e5c978;
  --line-dark: rgba(229, 201, 120, 0.22);
  --line-light: rgba(7, 27, 49, 0.16);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-height: 82px;
  --shell: min(1240px, calc(100% - 80px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}






*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: #fff;
  background: linear-gradient(to bottom, rgba(6, 22, 41, 0.88), transparent);
  border-bottom: 1px solid transparent;
  transition: height 350ms var(--ease), background-color 350ms ease, border-color 350ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  height: 70px;
  background: rgba(7, 27, 49, 0.97);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1420px, calc(100% - 56px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(3, 20, 36, 0.24);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 41.25% center;
  image-rendering: auto;
}

.brand-name {
  color: #ffffff;
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name em {
  color: var(--gold-light);
  font-weight: 400;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 1.55vw, 28px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding-block: 10px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 180ms ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a.active {
  color: #fff;
}

.primary-nav .language-link {
  color: var(--gold-light);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 250ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #071b31;
}

.hero-media,
.ships-visual,
.portrait-media,
.voyage-media {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #0b2742;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: block;
  transform: scale(1.025);
  animation: hero-settle 1.8s var(--ease) both;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.hero-media::before,
.hero-media::after {
  content: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 37, 0.94) 0%, rgba(6, 30, 51, 0.63) 46%, rgba(7, 39, 65, 0.1) 78%),
    linear-gradient(0deg, rgba(5, 22, 40, 0.68) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: calc(var(--header-height) + 70px) 120px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  color: #9f792e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

h1 {
  max-width: 880px;
  margin-bottom: 30px;
  font-size: clamp(56px, 6.55vw, 102px);
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(46px, 5.2vw, 76px);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.79);
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.hero-response {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.hero-response span {
  color: var(--gold-light);
  font-weight: 700;
}

.button-row,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 14px 25px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

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

.button-gold {
  color: #071b31;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button-gold:hover {
  background: #f2d787;
  border-color: #f2d787;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.36);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.button-outline-dark {
  color: var(--ink);
  border-color: var(--line-light);
}

.button-outline-dark:hover {
  border-color: var(--ink);
}

.hero-services {
  position: absolute;
  bottom: 35px;
  left: 0;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  list-style: none;
  text-transform: uppercase;
}

.hero-services li + li::before {
  content: "•";
  padding-inline: 10px;
  color: var(--gold);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: bottom right;
}

.scroll-cue i {
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gold-light);
  animation: scroll-line 2s ease-in-out infinite;
}

.trust-strip {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid #d8e3ec;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip p {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 5px;
  margin: 0;
  padding: 24px clamp(20px, 3vw, 42px);
  border-right: 1px solid #d8e3ec;
}

.trust-strip p:first-child {
  border-left: 1px solid #d8e3ec;
}

.trust-strip strong {
  color: #9b7224;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.trust-strip span {
  color: #526b80;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section {
  padding-block: clamp(100px, 11vw, 170px);
}

.section-ivory {
  background: var(--ivory);
}

.section-warm {
  background: var(--warm-white);
}

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

.process-section {
  padding-block: clamp(75px, 8vw, 115px);
  color: var(--ink);
  background: #fff;
  border-top: 1px solid #d8e3ec;
  border-bottom: 1px solid #d8e3ec;
}

.process-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.process-heading .eyebrow,
.process-heading h2 {
  margin-bottom: 0;
}

.process-heading h2 {
  font-size: clamp(38px, 4vw, 60px);
}

.process-heading h2 em {
  color: #a77c28;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  list-style: none;
}

.process-step {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.process-step > span {
  display: block;
  margin-bottom: 42px;
  color: #9b7224;
  font-family: var(--serif);
  font-size: 14px;
}

.process-step h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: #5c6f82;
  font-size: 13px;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.portrait-wrap {
  position: relative;
}

.portrait-media {
  margin: 0;
  min-height: 0;
  aspect-ratio: 1212 / 1538;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  background: #0b2742;
}

.portrait-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}

.portrait-media::after {
  content: none;
}

.portrait-media span,
.portrait-media strong {
  position: relative;
  z-index: 1;
}

.portrait-media span {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portrait-media strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.experience-note {
  position: absolute;
  right: -52px;
  bottom: -42px;
  width: 218px;
  min-height: 162px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: var(--gold-light);
}

.experience-note strong {
  font-family: var(--serif);
  font-size: 47px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.experience-note span {
  padding-left: 16px;
  border-left: 1px solid rgba(7, 27, 49, 0.3);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.65;
  text-transform: uppercase;
}

.about-copy h2 em,
.section-warm h2 em,
.section-ivory h2 em {
  color: #a77c28;
}

.about-copy .lead {
  max-width: 530px;
  margin-bottom: 25px;
  color: #173650;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.55;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  max-width: 610px;
  color: #5c6f82;
}

.signature-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
}

.signature-line span {
  width: 52px;
  height: 1px;
  background: var(--gold);
}

.signature-line p {
  margin: 0;
  color: #63788c;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}

.section-heading {
  margin-bottom: clamp(54px, 7vw, 95px);
}

.heading-split {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  align-items: end;
  gap: 80px;
}

.heading-split h2 {
  margin-bottom: 0;
}

.heading-split > p {
  max-width: 470px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.55);
}

.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

.centered > p:last-child {
  max-width: 630px;
  margin-inline: auto;
  color: #5c6f82;
}

.services-experience {
  position: relative;
  padding-block: clamp(90px, 10vw, 140px);
  overflow: clip;
}

.services-heading {
  margin-bottom: clamp(34px, 5vw, 64px);
}

.services-storyboard {
  display: grid;
  gap: 32px;
}

.service-chapter {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  min-height: 430px;
  overflow: hidden;
  background: #09223a;
  border: 1px solid var(--line-dark);
}

.service-visual {
  position: relative;
  min-width: 0;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #06192d;
}

.service-visual picture,
.service-visual img {
  width: 100%;
  height: 100%;
  display: block;
}

.service-visual img {
  object-fit: cover;
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 62%, rgba(7, 27, 49, 0.2));
}

.service-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 62px);
}

.service-number,
.service-support-card > div > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.service-copy h3,
.service-support-card h3 {
  margin-bottom: 20px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.08;
}

.service-copy p,
.service-support-card p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.7;
}

.service-card-visual,
.support-card-image {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 28%, rgba(184, 147, 76, 0.18), transparent 42%),
    linear-gradient(145deg, #06172a, #0b2d4b);
}

.service-card-visual img,
.support-card-image img {
  width: min(100%, 246px);
  height: auto;
  object-fit: contain;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.services-rail,
.services-progress {
  display: none;
}

.services-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: clamp(52px, 7vw, 90px);
}

.service-support-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(0, 1.18fr);
  min-height: 310px;
  overflow: hidden;
  background: #09223a;
  border: 1px solid var(--line-dark);
}

.service-support-card picture,
.service-support-card picture img {
  width: 100%;
  height: 100%;
  display: block;
}

.service-support-card picture img {
  object-fit: cover;
}

.service-support-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 44px);
}

.service-support-card h3 {
  font-size: clamp(25px, 2.3vw, 34px);
}

@media (min-width: 901px) {
  .services-experience.is-enhanced {
    padding-block: 0;
  }

  .services-experience.is-enhanced .services-scroll {
    height: 460svh;
    min-height: 3300px;
  }

  .services-experience.is-enhanced .services-stage {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: clamp(82px, 11vh, 116px) 0 clamp(22px, 3vh, 36px);
    overflow: hidden;
  }

  .services-experience.is-enhanced .services-heading {
    margin-bottom: clamp(18px, 2.8vh, 32px);
  }

  .services-experience.is-enhanced .services-heading h2 {
    font-size: clamp(46px, 7vh, 72px);
  }

  .services-experience.is-enhanced .services-storyboard {
    position: relative;
    display: block;
    height: clamp(370px, 52vh, 510px);
    min-height: 0;
    overflow: hidden;
    background: #09223a;
    border: 1px solid var(--line-dark);
  }

  .services-experience.is-enhanced .service-chapter {
    position: absolute;
    z-index: 1;
    inset: 0;
    min-height: 0;
    grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.65fr);
    opacity: 0;
    pointer-events: none;
    background: transparent;
    border: 0;
    will-change: opacity;
  }

  .services-experience.is-enhanced .service-chapter.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
  }

  .services-experience.is-enhanced .service-visual {
    min-height: 0;
    will-change: opacity;
  }

  .services-experience.is-enhanced .service-visual picture,
  .services-experience.is-enhanced .service-visual > img {
    will-change: transform;
  }

  .services-experience.is-enhanced .service-copy {
    justify-content: flex-start;
    padding: clamp(34px, 4vh, 48px) clamp(34px, 3.5vw, 54px) 172px;
    will-change: transform, opacity;
  }

  .services-experience.is-enhanced .service-number {
    margin-bottom: clamp(18px, 2.2vh, 26px);
  }

  .services-experience.is-enhanced .service-copy h3 {
    font-size: clamp(31px, 4.7vh, 44px);
  }

  .services-experience.is-enhanced .services-rail {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 18px;
    width: 35.1%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-inline: clamp(24px, 3vw, 42px);
  }

  .service-rail-button {
    min-height: 42px;
    padding: 8px 8px 8px 0;
    color: rgba(255, 255, 255, 0.38);
    background: transparent;
    border: 0;
    font: inherit;
    font-size: 10px;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    transition: color 250ms ease;
  }

  .service-rail-button span {
    margin-right: 6px;
    color: rgba(184, 147, 76, 0.55);
    font-family: var(--serif);
  }

  .service-rail-button:hover,
  .service-rail-button:focus-visible,
  .service-rail-button.is-active {
    color: #fff;
  }

  .service-rail-button.is-active span {
    color: var(--gold-light);
  }

  .services-experience.is-enhanced .services-progress {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    left: 64.9%;
    height: 2px;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
  }

  .services-progress span {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
  }

  .services-experience.is-enhanced .services-support {
    padding-top: 100px;
    padding-bottom: 120px;
  }

  body.services-story-active .floating-whatsapp {
    transform: translateX(calc(-100vw + 100% + 64px));
  }

  body.services-story-active .floating-whatsapp:hover {
    transform: translateX(calc(-100vw + 100% + 64px)) translateY(-2px);
  }
}

.grid-toggle {
  min-width: 150px;
  min-height: 48px;
  display: block;
  margin: 28px auto 0;
  padding: 12px 22px;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.section-warm .grid-toggle {
  color: #8c6927;
  border-color: var(--line-light);
}

.grid-toggle[hidden] {
  display: none;
}

.voyage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 3vw, 42px);
}

.voyage-card {
  background: #fff;
  border: 1px solid #dce8f2;
  transition: transform 420ms var(--ease), box-shadow 420ms ease;
}

.voyage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(7, 27, 49, 0.13);
}

.voyage-media {
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding: 22px 25px;
  color: rgba(255, 255, 255, 0.8);
}

.voyage-media img {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.voyage-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(5, 22, 40, 0.76));
}

.voyage-media::after {
  content: none;
}

.voyage-media span {
  position: relative;
  z-index: 1;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mediterranean img { object-position: center 47%; }
.northern img { object-position: center 53%; }
.alaska img,
.antarctica img,
.galapagos img,
.world img { object-position: center; }
.asia img { object-position: center 45%; }
.resorts img { object-position: center 52%; }

.voyage-body {
  padding: 32px 34px 36px;
}

.voyage-kicker {
  margin-bottom: 10px;
  color: #9f792e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.voyage-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}

.voyage-card .voyage-body > p:not(.voyage-kicker):not(.voyage-length) {
  min-height: 54px;
  color: #5c6f82;
  font-size: 14px;
  line-height: 1.65;
}

.voyage-length {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 25px 0 22px;
  padding-block: 14px;
  color: #173650;
  border-top: 1px solid #dce8f2;
  border-bottom: 1px solid #dce8f2;
  font-family: var(--serif);
  font-size: 14px;
}

.voyage-length span {
  color: #6b8094;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 44px;
  padding: 10px 0 7px;
  color: #8c6927;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(0.38);
}

.ships-section {
  min-height: 880px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
  background: var(--ink-soft);
}

.ships-visual {
  min-height: 700px;
  display: block;
  background: #0a2a47;
}

.ships-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.ships-visual::before {
  content: none;
}

.ships-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 27, 49, 0.08), rgba(7, 27, 49, 0.24));
}

.ships-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 125px);
}

.ships-content > p:not(.eyebrow):not(.trademark-note) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.54);
}

.ship-list {
  margin: 42px 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.ship-list li {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
}

.ship-list span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.future-brands {
  padding: 18px 20px;
  border: 1px dashed rgba(229, 201, 120, 0.32);
}

.future-brands span {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.future-brands p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
}

.trademark-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr;
  gap: clamp(70px, 9vw, 140px);
}

.why-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.why-intro h2 {
  font-size: clamp(44px, 4.2vw, 66px);
}

.why-intro > p:not(.eyebrow) {
  max-width: 490px;
  margin-bottom: 30px;
  color: #5c6f82;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.benefit {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.benefit span {
  display: block;
  margin-bottom: 55px;
  color: #9f792e;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.benefit h3 {
  max-width: 240px;
  margin: 0;
  color: #173650;
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 400;
  line-height: 1.32;
}

.feedback-section {
  padding-block: clamp(96px, 10vw, 150px);
  background: var(--ivory);
}

.feedback-heading {
  max-width: 820px;
  margin: 0 auto clamp(54px, 7vw, 86px);
  text-align: center;
}

.feedback-heading .eyebrow {
  justify-content: center;
}

.feedback-heading h2 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.feedback-heading h2 em {
  color: #a97927;
  font-weight: 400;
}

.feedback-heading > p:last-child {
  max-width: 700px;
  margin: 0 auto;
  color: #5c7285;
  font-size: 15px;
  line-height: 1.8;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cfdae4;
  border-left: 1px solid #cfdae4;
}

.feedback-card {
  display: flex;
  min-height: 420px;
  padding: clamp(30px, 4vw, 48px);
  flex-direction: column;
  background: #fff;
  border-right: 1px solid #cfdae4;
  border-bottom: 1px solid #cfdae4;
}

.feedback-number {
  display: block;
  margin-bottom: clamp(42px, 5vw, 70px);
  color: #9f7429;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.feedback-card > p {
  margin: 0;
  color: #173650;
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.48;
}

.feedback-card footer {
  display: flex;
  margin: 0 0 28px;
  padding: 0;
  flex-direction: column;
}

.feedback-card footer h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.feedback-card footer span {
  margin-top: 3px;
  color: #6a7d8e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planning-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0b2742;
}

.planning-section::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -220px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(229, 201, 120, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(229, 201, 120, 0.025), 0 0 0 180px rgba(229, 201, 120, 0.018);
}

.planning-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.planning-intro {
  position: sticky;
  top: 120px;
}

.planning-intro h2 {
  font-size: clamp(48px, 4.5vw, 70px);
}

.planning-intro > p:not(.eyebrow) {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.56);
}

.planning-contact {
  display: grid;
  gap: 3px;
  margin-top: 45px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.planning-contact > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.planning-contact a {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 18px;
}

.form-panel {
  padding: clamp(30px, 5vw, 65px);
  color: var(--ink);
  background: var(--warm-white);
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading > span {
  font-family: var(--serif);
  font-size: 28px;
}

.form-heading p {
  margin: 0;
  color: #667b8f;
  font-size: 10px;
}

.form-heading b,
.field label span,
.consent-field label span {
  color: #9b7224;
}

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

.field {
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.field label,
.consent-field label {
  color: #3f5870;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bacbd9;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  padding: 12px 0;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #9b7224;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7f92a4;
  opacity: 1;
}

.field input.invalid,
.field select.invalid,
.field textarea.invalid {
  border-color: #a13b2d;
  background: rgba(161, 59, 45, 0.035);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  margin-top: 32px;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #9b7224;
}

.consent-field label {
  color: #5c6f82;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-transform: none;
}

.consent-field a {
  color: #7d5b1d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-field.invalid {
  padding: 10px;
  outline: 1px solid #a13b2d;
}

.form-error {
  margin: 20px 0 0;
  color: #8f3025;
  font-size: 13px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1.55;
}

.form-status-error {
  color: #8f3025;
  background: rgba(161, 59, 45, 0.05);
  border-color: rgba(161, 59, 45, 0.3);
}

.submit-button {
  width: 100%;
  margin-top: 28px;
  cursor: pointer;
}

.form-response-note {
  margin: 12px 0 0;
  color: #667b8f;
  font-size: 12px;
  text-align: center;
}

.submit-button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.request-result {
  animation: result-in 450ms var(--ease) both;
}

.result-kicker {
  margin-bottom: 8px;
  color: #9b7224;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.request-result h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
}

.request-result > p:not(.result-kicker) {
  color: #5c6f82;
  font-size: 14px;
}

.request-summary {
  max-height: 410px;
  margin-block: 28px;
  padding: 22px 24px;
  overflow: auto;
  background: var(--ivory);
  border: 1px solid #d4e1eb;
}

.summary-row {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 18px;
  padding-block: 8px;
  border-bottom: 1px solid #d6e3ed;
  font-size: 12px;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row strong {
  color: #5f7488;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-row span {
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.result-actions .button {
  flex: 1 1 210px;
}

.edit-button {
  display: block;
  margin: 25px auto 0;
  padding: 6px;
  color: #465f76;
  background: none;
  border: 0;
  border-bottom: 1px solid #6b8195;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-section {
  padding: clamp(78px, 8vw, 115px) 0 clamp(42px, 4vw, 60px);
  color: #fff;
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.75fr;
  align-items: end;
  column-gap: 70px;
  row-gap: 38px;
}

.contact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 5.1vw, 75px);
}

.contact-details {
  display: grid;
  gap: 6px;
  padding-bottom: 6px;
}

.contact-brand {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
}

.contact-positioning {
  margin: -12px 0 14px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 14px;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color 180ms ease;
}

.contact-details a:hover {
  color: #fff;
}

.social-links {
  border-top: 1px solid var(--line-dark);
}

.social-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--line-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, padding 180ms ease;
}

.social-links a:hover {
  padding-left: 6px;
  color: var(--gold-light);
}

.social-links i {
  font-style: normal;
}

.social-link-main {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.site-footer {
  padding-block: 32px 24px;
  color: rgba(255, 255, 255, 0.48);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr auto;
  gap: clamp(30px, 4vw, 64px);
  align-items: center;
}

.brand-footer .brand-name {
  color: #fff;
}

.footer-brand-block > p {
  max-width: 310px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 16px;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 12px;
}

.footer-legal {
  justify-self: end;
}

.footer-legal a {
  white-space: nowrap;
  border-bottom: 1px solid rgba(184, 147, 76, 0.45);
}

.footer-contact a,
.footer-links a {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact span {
  display: block;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.footer-bottom p,
.back-to-top {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.back-to-top {
  display: flex;
  gap: 15px;
  transition: color 180ms ease;
}

.back-to-top:hover {
  color: var(--gold-light);
}

.floating-whatsapp {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 13px 18px;
  color: #071b31;
  background: var(--gold-light);
  border: 1px solid rgba(7, 27, 49, 0.16);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgba(3, 20, 36, 0.25);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, background-color 200ms ease;
}

.floating-whatsapp:hover {
  background: #f2d787;
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

body.utility-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--ivory);
}

.utility-header {
  color: #fff;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.utility-header .nav-shell {
  min-height: 82px;
}

.utility-return {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-return:hover {
  color: var(--gold-light);
}

.utility-main {
  flex: 1;
  padding-block: clamp(75px, 9vw, 125px);
}

.privacy-card {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(32px, 6vw, 72px);
  background: #fff;
  border: 1px solid #d8e3ec;
}

.privacy-card h1,
.error-content h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.privacy-updated {
  margin-bottom: 46px;
  color: #74889a;
  font-size: 12px;
}

.privacy-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #d8e3ec;
}

.privacy-card h2 {
  margin-bottom: 12px;
  color: #173650;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.privacy-card p,
.privacy-card li {
  color: #536d82;
}

.privacy-card a {
  color: #7d5b1d;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-main {
  min-height: calc(100vh - 160px);
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(229, 201, 120, 0.12), transparent 28%),
    linear-gradient(145deg, #071b31, #0b304f);
}

.error-content {
  max-width: 760px;
  text-align: center;
}

.error-content .eyebrow {
  justify-content: center;
}

.error-content h1 {
  color: #fff;
}

.error-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 20px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.utility-footer {
  padding-block: 22px;
  color: rgba(255, 255, 255, 0.5);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  text-align: center;
}

.utility-footer p {
  margin: 0;
}

.seo-page {
  color: var(--ink);
  background: var(--ivory);
}

.seo-language-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.seo-language-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.seo-language-nav a:hover,
.seo-language-nav a:focus-visible {
  color: var(--gold-light);
}

.seo-hero {
  position: relative;
  min-height: clamp(630px, 82vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

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

.seo-hero-media img {
  object-fit: cover;
  object-position: center 56%;
}

.seo-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 19, 35, 0.94) 0%, rgba(4, 24, 43, 0.78) 46%, rgba(4, 25, 44, 0.2) 82%),
    linear-gradient(0deg, rgba(4, 18, 32, 0.74), transparent 58%);
}

.seo-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(115px, 15vh, 165px) clamp(76px, 11vh, 110px);
}

.seo-hero h1 {
  max-width: 880px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(54px, 7.4vw, 96px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.seo-hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.seo-hero-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.seo-trust {
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid #d8e3ec;
}

.seo-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.seo-trust-grid p {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  margin: 0;
  padding: 22px clamp(20px, 3vw, 44px);
  border-left: 1px solid #d8e3ec;
}

.seo-trust-grid p:last-child {
  border-right: 1px solid #d8e3ec;
}

.seo-trust-grid strong {
  color: #183b58;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.seo-trust-grid span {
  color: #647a8c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-section {
  padding-block: clamp(88px, 10vw, 145px);
}

.seo-section-light {
  background: var(--ivory);
}

.seo-section-ink {
  color: #fff;
  background: var(--ink);
}

.seo-intro-grid,
.seo-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.seo-heading-block h2,
.seo-section-heading h2,
.seo-expert-copy h2,
.seo-final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.seo-prose p,
.seo-section-heading > p:last-child,
.seo-expert-copy > p,
.seo-final-cta > .shell > p:not(.eyebrow) {
  color: #526b7f;
  font-size: 16px;
  line-height: 1.8;
}

.seo-prose p {
  margin: 0;
}

.seo-prose p + p {
  margin-top: 20px;
}

.seo-lead p:first-child {
  color: #27465f;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.65;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(62px, 8vw, 105px) auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d5e0e9;
  border-left: 1px solid #d5e0e9;
}

.seo-service-card {
  min-height: 300px;
  padding: clamp(30px, 4vw, 50px);
  background: #fff;
  border-right: 1px solid #d5e0e9;
  border-bottom: 1px solid #d5e0e9;
}

.seo-service-card > span {
  display: block;
  margin-bottom: 46px;
  color: #a4782c;
  font-family: var(--serif);
  font-size: 13px;
}

.seo-service-card h3 {
  margin: 0 0 16px;
  color: #153550;
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}

.seo-service-card p {
  margin: 0;
  color: #607789;
  font-size: 14px;
  line-height: 1.7;
}

.seo-expert-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: center;
}

.seo-expert-media {
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.seo-expert-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.seo-expert-copy h2 {
  margin-bottom: 30px;
  color: #fff;
}

.seo-expert-copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.seo-expert-copy > p + p {
  margin-top: 18px;
}

.seo-check-list {
  display: grid;
  gap: 0;
  margin: 36px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.seo-check-list li {
  position: relative;
  padding: 16px 0 16px 28px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
}

.seo-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.seo-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 6px;
  color: #805d1e;
  border-bottom: 1px solid #b8934c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-inline-link-light {
  color: var(--gold-light);
}

.seo-section-heading {
  max-width: 860px;
  text-align: center;
}

.seo-section-heading .eyebrow {
  justify-content: center;
}

.seo-section-heading > p:last-child {
  max-width: 700px;
  margin: 26px auto 0;
}

.seo-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(52px, 7vw, 88px);
  border-top: 1px solid #d5e0e9;
  border-left: 1px solid #d5e0e9;
}

.seo-destination-grid article {
  min-height: 205px;
  padding: clamp(26px, 3vw, 40px);
  border-right: 1px solid #d5e0e9;
  border-bottom: 1px solid #d5e0e9;
}

.seo-destination-grid h3 {
  margin: 0 0 14px;
  color: #173650;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.seo-destination-grid p {
  margin: 0;
  color: #62798c;
  font-size: 14px;
  line-height: 1.7;
}

.seo-centered-link {
  margin-top: 42px;
  text-align: center;
}

.seo-faq-section {
  background: #fff;
  border-top: 1px solid #d8e3ec;
}

.seo-faq-list {
  border-top: 1px solid #d8e3ec;
}

.seo-faq-list details {
  border-bottom: 1px solid #d8e3ec;
}

.seo-faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: #173650;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

.seo-faq-list summary::-webkit-details-marker {
  display: none;
}

.seo-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: #9c742d;
  font-size: 30px;
  font-family: var(--sans);
  font-weight: 300;
}

.seo-faq-list details[open] summary::after {
  content: "−";
}

.seo-faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: #5b7285;
  font-size: 15px;
  line-height: 1.75;
}

.seo-final-cta {
  padding-block: clamp(92px, 11vw, 150px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(229, 201, 120, 0.13), transparent 28%),
    linear-gradient(145deg, #071b31, #0b304f);
  text-align: center;
}

.seo-final-cta .eyebrow {
  justify-content: center;
}

.seo-final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
  color: #fff;
}

.seo-final-cta > .shell > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px auto 32px;
  color: rgba(255, 255, 255, 0.64);
}

.seo-final-cta .button-row {
  justify-content: center;
}

.seo-footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, 0.55);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.7fr;
  gap: clamp(35px, 6vw, 90px);
  align-items: start;
}

.seo-footer-grid > div:first-child > p {
  max-width: 330px;
  margin: 15px 0 0;
  font-family: var(--serif);
}

.seo-footer-contact,
.seo-footer-links {
  display: grid;
  gap: 11px;
}

.seo-footer-contact a,
.seo-footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.seo-footer-contact a:hover,
.seo-footer-links a:hover {
  color: var(--gold-light);
}

.seo-footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1.025); }
}

@keyframes scroll-line {
  0%, 100% { transform: translateX(-110%); }
  50% { transform: translateX(210%); }
}

@keyframes result-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1160px) {
  :root {
    --shell: min(100% - 56px, 1080px);
  }

  .primary-nav {
    gap: 14px;
    font-size: 12px;
  }

  .brand-name {
    font-size: 16px;
  }

  .ships-content {
    padding: 80px 55px;
  }

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .social-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header.menu-open {
    backdrop-filter: none;
  }

  .nav-shell {
    width: calc(100% - 36px);
  }

  .brand,
  .nav-toggle {
    position: relative;
    z-index: 2;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    min-height: 100svh;
    padding: calc(var(--header-height) + 22px) max(24px, 8vw) 32px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    background: var(--ink);
    transition: visibility 300ms, opacity 300ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--serif);
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero-content {
    padding-bottom: 100px;
  }

  .scroll-cue {
    display: none;
  }

  .about-grid,
  .heading-split,
  .process-heading,
  .why-grid,
  .planning-shell {
    grid-template-columns: 1fr;
  }

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

  .feedback-card {
    min-height: 0;
  }

  .feedback-card > p {
    margin-bottom: 0;
  }

  .about-grid {
    gap: 100px;
  }

  .portrait-media {
    min-height: 0;
  }

  .experience-note {
    right: 28px;
  }

  .heading-split {
    gap: 25px;
  }

  .process-heading {
    gap: 18px;
  }

  .heading-split > p {
    max-width: 600px;
  }

  .services-experience {
    padding-block: 100px;
  }

  .services-storyboard {
    gap: 26px;
  }

  .service-chapter {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-visual {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-copy {
    min-height: 300px;
  }

  .services-support {
    grid-template-columns: 1fr;
  }

  .services-experience.is-enhanced {
    padding-block: 0;
  }

  .services-experience.is-enhanced .services-scroll {
    height: 600vh;
    height: 600svh;
    min-height: 3200px;
  }

  .services-experience.is-enhanced .services-stage {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 70px 0 16px;
    overflow: hidden;
  }

  .services-experience.is-enhanced .services-heading {
    gap: 8px;
    margin-bottom: 14px;
  }

  .services-experience.is-enhanced .services-heading h2 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .services-experience.is-enhanced .services-heading > p {
    max-width: none;
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
  }

  .services-experience.is-enhanced .services-storyboard {
    position: relative;
    display: block;
    height: clamp(380px, 55svh, 500px);
    min-height: 0;
    overflow: hidden;
    background: #09223a;
    border: 1px solid var(--line-dark);
  }

  .services-experience.is-enhanced .service-chapter {
    position: absolute;
    z-index: 1;
    inset: 0;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 57%) minmax(0, 43%);
    opacity: 0;
    pointer-events: none;
    background: transparent;
    border: 0;
    will-change: opacity;
  }

  .services-experience.is-enhanced .service-chapter.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
  }

  .services-experience.is-enhanced .service-visual {
    min-height: 0;
    aspect-ratio: auto;
    will-change: opacity;
  }

  .services-experience.is-enhanced .service-visual picture,
  .services-experience.is-enhanced .service-visual > img {
    will-change: transform;
  }

  .services-experience.is-enhanced .service-copy {
    min-height: 0;
    justify-content: center;
    padding: 15px 22px 23px;
    will-change: transform, opacity;
  }

  .services-experience.is-enhanced .service-number {
    margin-bottom: 8px;
  }

  .services-experience.is-enhanced .service-copy h3 {
    margin-bottom: 10px;
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .services-experience.is-enhanced .service-copy p {
    font-size: 12px;
    line-height: 1.5;
  }

  .services-experience.is-enhanced .services-progress {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
  }

  .services-experience.is-enhanced .services-progress span {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
  }

  .seo-intro-grid,
  .seo-faq-grid,
  .seo-expert-grid {
    grid-template-columns: 1fr;
  }

  .seo-intro-grid,
  .seo-faq-grid {
    gap: 42px;
  }

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

  .seo-expert-grid {
    gap: 58px;
  }

  .seo-expert-media {
    min-height: 560px;
  }

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

  .seo-footer-links {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ships-section {
    grid-template-columns: 1fr;
  }

  .ships-visual {
    min-height: 600px;
  }

  .why-intro,
  .planning-intro {
    position: static;
  }

  .planning-shell {
    gap: 65px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .site-header.scrolled,
  .site-header.menu-open {
    height: 64px;
  }

  .brand-name {
    font-size: 14px;
  }

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

  .hero-shade {
    background: linear-gradient(90deg, rgba(5, 22, 40, 0.9), rgba(7, 39, 65, 0.3)), linear-gradient(0deg, rgba(5, 22, 40, 0.8), transparent 55%);
  }

  .hero-content {
    min-height: 700px;
    justify-content: center;
    padding-block: 110px 118px;
  }

  h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .button-row .button {
    flex: 1 1 100%;
  }

  .hero-copy {
    margin-bottom: 26px;
    font-size: 17px;
  }

  .hero-response {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.5;
  }

  .hero-services {
    bottom: 22px;
    flex-wrap: wrap;
    row-gap: 3px;
    letter-spacing: 0.12em;
  }

  .hero-services li + li::before {
    padding-inline: 4px;
  }

  .section {
    padding-block: 92px;
  }

  .services-experience {
    padding-block: 92px;
  }

  .services-heading {
    margin-bottom: 38px;
  }

  .services-storyboard {
    gap: 22px;
  }

  .service-copy {
    min-height: 0;
    padding: 32px 25px 36px;
  }

  .service-number {
    margin-bottom: 20px;
  }

  .service-copy h3 {
    font-size: 32px;
  }

  .services-support {
    gap: 22px;
    padding-top: 52px;
  }

  .service-support-card {
    display: block;
    min-height: 0;
  }

  .service-support-card picture,
  .support-card-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .service-support-card > div:last-child {
    min-height: 260px;
    padding: 30px 25px 35px;
  }

  .service-support-card h3 {
    font-size: 30px;
  }

  .trust-strip-inner,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip p {
    min-height: 86px;
    padding: 18px 22px;
    border-left: 1px solid #d8e3ec;
    border-bottom: 1px solid #d8e3ec;
  }

  .trust-strip p:last-child {
    border-bottom: 0;
  }

  .process-section {
    padding-block: 72px;
  }

  .process-heading {
    margin-bottom: 32px;
  }

  .process-step {
    min-height: 0;
    padding: 25px 23px;
  }

  .process-step > span {
    margin-bottom: 20px;
  }

  .feedback-section {
    padding-block: 74px;
  }

  .feedback-heading {
    margin-bottom: 38px;
  }

  .feedback-heading h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .feedback-heading > p:last-child {
    font-size: 14px;
  }

  .feedback-card {
    padding: 30px 25px;
  }

  .feedback-number {
    margin-bottom: 30px;
  }

  .feedback-card > p {
    font-size: 21px;
  }

  .portrait-media {
    min-height: 0;
  }

  .experience-note {
    right: 18px;
    bottom: -55px;
    width: 205px;
    min-height: 140px;
    padding: 22px;
  }

  .experience-note strong {
    font-size: 40px;
  }

  .voyage-grid,
  .benefits-grid,
  .form-grid,
  .contact-grid,
  .social-links {
    grid-template-columns: 1fr;
  }

  [data-collapsible-grid].is-collapsed > :nth-child(n + 5) {
    display: none;
  }

  .voyage-media {
    height: 265px;
  }

  .voyage-body {
    padding: 28px 25px 31px;
  }

  .voyage-card .voyage-body > p:not(.voyage-kicker):not(.voyage-length) {
    min-height: 0;
  }

  .voyage-length {
    align-items: flex-end;
  }

  .ships-section {
    min-height: 0;
  }

  .ships-visual {
    min-height: 450px;
  }

  .ships-content {
    padding: 75px 25px;
  }

  .ship-list li {
    font-size: 18px;
  }

  .benefit {
    min-height: 170px;
  }

  .benefit span {
    margin-bottom: 35px;
  }

  .form-panel {
    padding: 30px 20px;
  }

  .form-heading {
    display: grid;
    margin-bottom: 30px;
  }

  .field-wide {
    grid-column: auto;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-grid {
    align-items: start;
    gap: 50px;
  }

  .social-links {
    gap: 0;
  }

  .planning-section {
    padding-block: 72px;
  }

  .planning-shell {
    gap: 42px;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-column: auto;
  }

  .footer-legal {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }

  .utility-header .nav-shell {
    width: calc(100% - 36px);
  }

  .utility-header .brand-name {
    font-size: 13px;
  }

  .seo-language-nav {
    gap: 14px;
  }

  .seo-language-nav a {
    font-size: 9px;
    letter-spacing: 0.09em;
  }

  .seo-hero {
    min-height: 700px;
  }

  .seo-hero-overlay {
    background:
      linear-gradient(90deg, rgba(4, 19, 35, 0.94), rgba(4, 25, 44, 0.46)),
      linear-gradient(0deg, rgba(4, 18, 32, 0.82), transparent 60%);
  }

  .seo-hero-content {
    padding-block: 105px 72px;
  }

  .seo-hero h1 {
    font-size: clamp(44px, 12vw, 58px);
  }

  .seo-hero-content > p:not(.eyebrow) {
    font-size: 17px;
  }

  .seo-trust-grid,
  .seo-card-grid,
  .seo-destination-grid,
  .seo-footer-grid,
  .seo-footer-links {
    grid-template-columns: 1fr;
  }

  .seo-trust-grid p,
  .seo-trust-grid p:last-child {
    min-height: 92px;
    padding: 18px 22px;
    border-right: 1px solid #d8e3ec;
    border-bottom: 1px solid #d8e3ec;
  }

  .seo-section {
    padding-block: 82px;
  }

  .seo-heading-block h2,
  .seo-section-heading h2,
  .seo-expert-copy h2,
  .seo-final-cta h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .seo-lead p:first-child {
    font-size: 20px;
  }

  .seo-card-grid {
    margin-top: 50px;
  }

  .seo-service-card {
    min-height: 0;
    padding: 32px 25px 36px;
  }

  .seo-service-card > span {
    margin-bottom: 28px;
  }

  .seo-expert-media {
    min-height: 470px;
  }

  .seo-expert-grid {
    gap: 46px;
  }

  .seo-destination-grid {
    margin-top: 48px;
  }

  .seo-destination-grid article {
    min-height: 0;
    padding: 30px 25px;
  }

  .seo-faq-list summary {
    padding-block: 22px;
    font-size: 21px;
  }

  .seo-faq-list summary::after {
    top: 17px;
  }

  .seo-footer-links {
    grid-column: auto;
  }

  .utility-return {
    font-size: 10px;
  }

  .privacy-card {
    padding: 30px 22px;
  }

  .error-actions .button {
    flex: 1 1 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .services-experience,
  .services-experience.is-enhanced {
    padding-block: clamp(90px, 10vw, 140px);
  }

  .services-experience.is-enhanced .services-scroll {
    height: auto;
    min-height: 0;
  }

  .services-experience.is-enhanced .services-stage {
    position: static;
    height: auto;
    min-height: 0;
    display: block;
    padding: 0;
    overflow: visible;
  }

  .services-experience.is-enhanced .services-storyboard {
    height: auto;
    display: grid;
    gap: 32px;
    overflow: visible;
    background: transparent;
    border: 0;
  }

  .services-experience.is-enhanced .service-chapter {
    position: static;
    min-height: 430px;
    opacity: 1;
    pointer-events: auto;
    border: 1px solid var(--line-dark);
  }

  .services-experience.is-enhanced .services-rail,
  .services-experience.is-enhanced .services-progress {
    display: none;
  }
}
