:root {
  --ink: #142235;
  --muted: #5d6b7a;
  --line: #dce5ec;
  --paper: #ffffff;
  --soft: #f3f8fa;
  --sea: #057b8f;
  --deep: #0c3554;
  --accent: #086aa8;
  --accent-dark: #055684;
  --gold: #f4b73f;
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform-origin: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(20, 34, 53, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 34px rgba(8, 28, 44, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-header nav a,
.header-cta {
  text-decoration: none;
}

.site-header nav a {
  position: relative;
  padding: 6px 0;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.primary-button,
.secondary-button,
.booking-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-cta {
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-cta,
.primary-button,
.booking-form button {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(8, 106, 168, 0.24);
}

.header-cta:hover,
.primary-button:hover,
.booking-form button:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(8, 106, 168, 0.32);
  transform: translateY(-2px);
}

.secondary-button {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

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

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

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

.hero-video,
.hero-poster,
.hero-image {
  object-fit: cover;
}

.hero-video {
  z-index: 0;
  opacity: 0;
  background: transparent;
  transition: opacity 500ms ease;
}

.hero.video-ready .hero-video {
  opacity: 1;
}

.hero.video-failed .hero-video {
  display: none;
}

.hero-poster {
  z-index: 0;
}

.hero-image {
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 26, 42, 0.86) 0%, rgba(5, 26, 42, 0.62) 44%, rgba(5, 26, 42, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 26, 42, 0.36), rgba(5, 26, 42, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  padding: 86px 0 50px clamp(18px, 5vw, 72px);
  color: #fff;
}

.js .hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 700ms ease forwards;
}

.js .hero-content > *:nth-child(2) {
  animation-delay: 100ms;
}

.js .hero-content > *:nth-child(3) {
  animation-delay: 200ms;
}

.js .hero-content > *:nth-child(4) {
  animation-delay: 300ms;
}

.js .hero-content > *:nth-child(5) {
  animation-delay: 420ms;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin: 58px 0 0;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
}

.trust-strip div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 180ms ease, transform 180ms ease;
}

.trust-strip div:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.trust-strip dt {
  font-weight: 900;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.booking-band,
.section,
.split-section,
.route-map-section,
.final-cta,
.site-footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 30px;
  align-items: end;
  padding-top: 34px;
  padding-bottom: 34px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.booking-band h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.booking-form {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-form select,
.booking-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.intent-section {
  background: #fff;
}

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

.intent-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.intent-grid article:hover {
  border-color: rgba(5, 123, 143, 0.38);
  box-shadow: 0 18px 44px rgba(8, 28, 44, 0.1);
  transform: translateY(-4px);
}

.intent-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intent-grid p {
  color: var(--muted);
}

.intent-grid a {
  font-weight: 900;
  color: var(--deep);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

.intro-copy p,
.section-heading p,
.split-copy p,
.route-map-section p,
.final-cta p {
  color: var(--muted);
}

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

.proof-grid article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.proof-grid article:hover {
  box-shadow: 0 16px 36px rgba(8, 28, 44, 0.08);
  transform: translateY(-4px);
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 2rem;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.route-list article {
  min-height: 300px;
  padding: 28px;
  border-top: 4px solid var(--sea);
  border-radius: 8px;
  background: var(--soft);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.route-list article:hover {
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 28, 44, 0.1);
  transform: translateY(-4px);
}

.route-list span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-weight: 900;
}

.route-list p {
  color: var(--muted);
}

.route-list a {
  font-weight: 900;
  color: var(--deep);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
  background: #102b3f;
  color: #fff;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.split-copy p,
.split-copy .check-list {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

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

.destination-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.destination-grid article:hover {
  box-shadow: 0 18px 44px rgba(8, 28, 44, 0.1);
  transform: translateY(-4px);
}

.destination-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 700ms ease;
}

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

.destination-grid div {
  padding: 22px;
}

.destination-grid p {
  color: var(--muted);
}

.route-map-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 74px;
  padding-bottom: 74px;
  background: var(--soft);
}

.route-map-section img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 28, 44, 0.08);
}

.offices-section {
  background: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

.office-grid article {
  padding: 28px;
  border: 1px solid rgba(8, 106, 168, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 106, 168, 0.08), rgba(5, 123, 143, 0.02)),
    #fff;
  box-shadow: 0 18px 44px rgba(8, 28, 44, 0.08);
}

.office-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.office-grid p {
  max-width: 680px;
  color: var(--muted);
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.office-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 6px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: var(--accent);
}

.office-actions a:last-child {
  color: var(--deep);
  border: 1px solid var(--line);
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-grid img:hover {
  filter: saturate(1.08);
  transform: scale(1.015);
}

.gallery-grid img:first-child {
  height: 420px;
}

.faq {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

details[open] {
  border-color: rgba(5, 123, 143, 0.32);
  box-shadow: 0 12px 28px rgba(8, 28, 44, 0.06);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding-top: 90px;
  padding-bottom: 90px;
  text-align: center;
  background: var(--deep);
  color: #fff;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #081c2c;
}

.site-footer strong {
  color: #fff;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-style: normal;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.mobile-booking-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  background: rgba(8, 28, 44, 0.92);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-booking-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-booking-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-booking-bar a:first-child {
  background: var(--accent);
}

.mobile-booking-bar a:last-child {
  background: rgba(255, 255, 255, 0.14);
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .booking-band,
  .intro,
  .split-section,
  .route-map-section {
    grid-template-columns: 1fr;
  }

  .booking-form,
  .route-list,
  .intent-grid,
  .destination-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid img,
  .gallery-grid img:first-child {
    height: 320px;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    max-width: 210px;
    font-size: 0.94rem;
    line-height: 1.1;
    white-space: normal;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    width: min(100%, calc(100vw - 36px));
    padding: 76px 18px 34px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.4vw, 2.42rem);
    line-height: 1.07;
    overflow-wrap: break-word;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
    font-size: 1rem;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .booking-band h2 {
    max-width: calc(100vw - 36px);
    font-size: 1.35rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .trust-strip {
    display: none;
  }

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

  .booking-band,
  .section,
  .split-section,
  .route-map-section,
  .final-cta,
  .site-footer {
    padding-inline: 18px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .site-footer {
    flex-direction: column;
  }

  .mobile-booking-bar {
    display: grid;
  }

  body {
    padding-bottom: 82px;
  }
}

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

  .hero-image {
    animation: none;
  }

  .js .reveal,
  .js .hero-content > * {
    opacity: 1;
    transform: none;
  }
}
