:root {
  --ink: #08151f;
  --muted: #5e6b73;
  --line: #d9e3e6;
  --paper: #f7fbfa;
  --white: #ffffff;
  --blue: #064d78;
  --deep: #062436;
  --aqua: #09a3a3;
  --coral: #ef6c45;
  --gold: #dca94d;
  --shadow: 0 18px 50px rgba(8, 21, 31, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-header.is-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(8, 21, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 180ms ease;
}

.site-header.is-solid .brand-logo {
  filter: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.93rem;
}

.nav a,
.nav-cta,
.text-link,
.service-card a {
  text-decoration: none;
}

.nav a {
  opacity: 0.88;
}

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

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-solid .language-switcher button.is-active {
  color: var(--white);
  background: var(--ink);
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

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

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

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

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 96px 24px 28px;
  background: var(--deep);
  color: var(--white);
  pointer-events: none;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1), opacity 260ms ease, visibility 260ms;
}

.mobile-nav.is-open {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-nav-cta {
  margin-top: 16px;
  padding: 14px !important;
  border: none !important;
  border-radius: 999px;
  background: var(--coral);
  text-align: center;
}

.mobile-nav-lang {
  align-self: center;
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.32);
}

.mobile-nav-lang button {
  min-width: 52px;
  min-height: 40px;
}

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

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

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 17, 27, 0.86), rgba(4, 17, 27, 0.42) 52%, rgba(4, 17, 27, 0.62)),
    linear-gradient(0deg, rgba(4, 17, 27, 0.84), rgba(4, 17, 27, 0) 48%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  width: min(1240px, calc(100% - 36px));
  height: 100%;
  margin: 0 auto;
  align-items: start;
  align-content: center;
  padding: 138px 0 118px;
}

.hero-title-col,
.hero-copy-col {
  align-self: start;
  min-width: 0;
}

.hero-copy-col {
  max-width: 640px;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

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

h1 {
  margin-bottom: 0;
  font-size: 4.4rem;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
  color: #ffffff;
  mix-blend-mode: difference;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 1.26rem;
  color: rgba(255, 255, 255, 0.88);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease, background 220ms ease;
}

.btn.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(239, 108, 69, 0.28);
}

.btn.primary:hover {
  background: #f0764f;
  box-shadow: 0 14px 32px rgba(239, 108, 69, 0.4);
  transform: translateY(-2px);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.section,
.split-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-title {
  align-self: start;
}

.sticky-title {
  position: sticky;
  top: 104px;
}

.section-title h2,
.sailing-content h2,
.final-cta h2 {
  margin-bottom: 18px;
  font-size: 3.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p,
.sailing-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link,
.service-card a {
  color: var(--blue);
  font-weight: 800;
}

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

.service-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.84fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

.service-card:hover {
  box-shadow: 0 26px 60px rgba(8, 21, 31, 0.18);
  transform: translateY(-4px);
}

.service-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card div {
  align-self: center;
  padding: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 1.05;
}

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

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

.schedule-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease;
}

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

.schedule-card .tag {
  margin-bottom: 20px;
}

.schedule-times {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}

.schedule-times div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule-times span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.schedule-times strong {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1;
}

.schedule-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.dark-band {
  width: 100%;
  max-width: none;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--deep);
}

.dark-band.split-section {
  width: 100%;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.dark-band > * {
  max-width: 560px;
}

.dark-band .section-title {
  justify-self: end;
}

.dark-band .departure-list {
  justify-self: start;
  width: min(620px, 100%);
}

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

.departure-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 4px 18px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), background 280ms ease, border-color 280ms ease;
}

.departure-list article:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(220, 169, 77, 0.5);
  transform: translateY(-3px);
}

.departure-list span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
}

.departure-list h3 {
  margin-bottom: 4px;
}

.departure-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.route-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.route-grid article:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.route-grid h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.route-grid p,
.faq p {
  color: var(--muted);
}

.sailing {
  width: 100%;
  max-width: none;
  align-items: stretch;
  padding: 0;
  color: var(--white);
  background: var(--deep);
}

.sailing-media {
  position: relative;
  min-height: 720px;
}

.sailing-media {
  overflow: hidden;
}

.sailing-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sailing-media:hover img {
  transform: scale(1.04);
}

.sailing-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 36, 54, 0.24), rgba(6, 36, 54, 0.04)),
    linear-gradient(0deg, rgba(6, 36, 54, 0.78), rgba(6, 36, 54, 0.08) 44%);
}

.sailing-caption {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(24px, 5vw, 58px);
  z-index: 1;
  display: grid;
  gap: 6px;
}

.sailing-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sailing-caption strong {
  max-width: 520px;
  font-size: 2.6rem;
  line-height: 1;
}

.sailing-content {
  align-self: center;
  width: min(620px, calc(100% - 36px));
  padding: clamp(46px, 7vw, 92px) 0;
}

.sailing-content .section-kicker {
  color: var(--gold);
}

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

.sailing-seo-box {
  margin: 26px 0 24px;
  padding: 22px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.07);
}

.sailing-seo-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.sailing ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 850;
  transition: color 200ms ease;
}

.faq-list summary:hover {
  color: var(--blue);
}

.faq-list p {
  max-width: 820px;
  margin: 14px 0 0;
}

.final-cta {
  width: 100%;
  max-width: none;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--deep));
}

.final-cta .section-title {
  justify-self: end;
  max-width: 560px;
}

.final-cta .section-copy {
  max-width: 620px;
}

.final-cta .section-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: clamp(48px, 7vw, 76px) clamp(18px, 4vw, 56px) 28px;
  color: rgba(255, 255, 255, 0.78);
  background: #03131d;
}

.footer p {
  margin: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  max-width: 320px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.94rem;
}

.footer-heading {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-cta {
  display: grid;
  align-content: start;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.86rem;
}

.footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--white);
}

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

  .nav {
    display: none;
  }

  .header-actions > .language-switcher {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .split-section,
  .dark-band.split-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding: 112px 0 90px;
  }

  h1 {
    font-size: 3.4rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .section-title h2,
  .sailing-content h2,
  .final-cta h2 {
    font-size: 2.65rem;
  }

  .sticky-title {
    position: static;
  }

  .dark-band .section-title,
  .dark-band .departure-list,
  .final-cta .section-title {
    justify-self: stretch;
    max-width: none;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 300px;
  }

  .sailing-content {
    width: min(760px, calc(100% - 36px));
    margin: 0 auto;
  }

  .sailing-media img {
    min-height: 460px;
  }

  .sailing-media {
    min-height: 460px;
  }
}

@media (max-width: 560px) {
  html,
  body,
  main,
  .hero,
  .site-header,
  .footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .site-header {
    width: min(100%, 390px);
    max-width: 390px;
    padding: 14px 16px;
    gap: 10px;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    height: 32px;
  }

  .language-switcher button {
    min-width: 34px;
  }

  .hero-layout {
    width: min(100%, 390px);
    max-width: 390px;
    margin: 0;
    padding-left: 18px;
    padding-right: 18px;
    padding-top: 112px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.04rem;
  }

  .section-title h2,
  .sailing-content h2,
  .final-cta h2 {
    font-size: 2.08rem;
  }

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

  .btn {
    text-align: center;
  }

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

  .schedule-times {
    gap: 24px;
  }

  .schedule-times strong {
    font-size: 1.8rem;
  }

  .departure-list article {
    grid-template-columns: 38px 1fr;
    padding: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .sailing-caption strong {
    font-size: 2rem;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.service-stack [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.service-stack [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.service-stack [data-reveal]:nth-child(4) {
  transition-delay: 270ms;
}

.route-grid [data-reveal]:nth-child(2) {
  transition-delay: 70ms;
}

.route-grid [data-reveal]:nth-child(3) {
  transition-delay: 140ms;
}

.route-grid [data-reveal]:nth-child(4) {
  transition-delay: 210ms;
}

.departure-list [data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.departure-list [data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .service-card,
  .service-card img,
  .route-grid article,
  .departure-list article,
  .sailing-media img,
  .faq-list summary {
    transition: none;
  }
}
