/*
 * CXE Airways frontend stylesheet source.
 *
 * This is intentionally the single canonical Less source. Legacy partials and
 * late override files were merged here in v1.5.0 to prevent the same page from
 * being styled in several competing files. Plain CSS is valid Less, so the
 * build remains predictable and produces assets/css/style.css.
 *
 * SECTION GUIDE
 * 01. Design tokens and document foundation
 * 02. Shared header and navigation
 * 03. Shared components: heroes, forms, routes, testimonials and calls to action
 * 04. Shared footer and social links
 * 05. Reusable page structures and policy layouts
 * 06. Responsive rules and utilities
 * 07. Homepage
 * 08. WordPress-generated content
 * 09. Approved reference-page refinements
 * 10. Contact Form 7 integration
 */
@font-face {
  font-family: "Maldives";
  src: url("../fonts/malvides.woff2") format("woff2"), url("../fonts/malvides.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  --navy: #0d3454;
  --navy-2: #082943;
  --blue: #8eb2dc;
  --blue-soft: #dfeaf6;
  --red: #D61F2D;
  --ink: #183149;
  --text: #4a5865;
  --muted: #72808d;
  --line: #d9dee3;
  --paper: #ffffff;
  --surface: #f3f4f5;
  --shadow: 0 18px 48px rgba(13, 52, 84, 0.14);
  --radius: 4px;
  --container: 1440px;
  --header-height: 112px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-script: "Maldives", "Caveat", "Segoe Print", "Bradley Hand", cursive;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
select {
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.12;
}
p:last-child {
  margin-bottom: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.container--narrow {
  width: min(calc(100% - 40px), 920px);
  margin-inline: auto;
}
.section {
  padding: 92px 0;
}
.section--compact {
  padding: 58px 0;
}
.section--surface {
  background: var(--surface);
}
.section--navy {
  color: #fff;
  background: var(--navy);
}
.section--blue {
  color: #fff;
  background: var(--blue);
}
.section-kicker {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}
.section-title--script,
.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.section-title--script {
  color: var(--navy);
}
.lead {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.5;
}
.eyebrow {
  margin-bottom: 14px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 180ms ease,
        background 180ms ease,
        color 180ms ease;
}
.btn:hover,
.btn:focus-visible {
  background: #c91828;
  transform: translateY(-1px);
}
.btn--outline {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}
.btn--outline:hover,
.btn--outline:focus-visible {
  color: #fff;
  background: var(--navy);
}
.btn--light {
  color: var(--navy);
  background: #fff;
}
.btn--light:hover,
.btn--light:focus-visible {
  color: #fff;
  background: var(--navy-2);
}
.text-link {
  color: var(--red);
  font-weight: 600;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Shared header */
.site-header {
  z-index: 30;
  width: 100%;
  color: var(--navy);
  background: #fff;
}
.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  color: #fff;
  background: transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 300px;
  height: auto;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .btn {
  min-width: 130px;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 1px;
  font-size: 14px;
  font-weight: 400;
}
.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  color: currentColor;
  background: transparent;
}
.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 31px;
  height: 2px;
  background: currentColor;
  content: "";
}
.menu-toggle__lines {
  position: relative;
}
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
}
.menu-toggle__lines::before {
  top: -9px;
}
.menu-toggle__lines::after {
  top: 9px;
}
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  color: #fff;
  background: #0D2F4F;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease,
        visibility 220ms ease;
}
.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
}
.menu-panel__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100dvh;
  padding: 28px 0 44px;
}
.menu-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.menu-close {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 2.6rem;
  font-weight: 200;
  line-height: 1;
}
.menu-panel__content {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) 1fr;
  align-items: center;
  gap: 64px;
  padding: 54px 0;
}
.menu-nav {
  display: grid;
  gap: 11px;
}
.menu-nav li {
  margin-bottom: 16px;
}
.menu-nav a {
  display: inline-flex;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.08;
}
.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--blue);
}
.menu-panel__graphic {
  height: 100%;
  background: url(../images/bg_menu.png);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.menu-panel__meta {
  display: flex;
  display: none;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}
/* Mobile menu — matched to the 320px responsive Figma layout. */
@media (max-width: 680px) {
  .menu-panel .container {
    width: 100%;
    margin-inline: 0;
  }
  .menu-panel__inner {
    position: relative;
    display: block;
    min-height: 100dvh;
    padding: 40px 24px 0;
  }
  .menu-panel__top,
  .menu-panel__top .site-header__actions {
    position: static;
    display: block;
  }
  .menu-panel__top .brand {
    display: block;
    width: 159px;
    height: 26px;
  }
  .menu-panel__top .brand img {
    width: 159px;
    height: 26px;
    object-fit: contain;
    object-position: left center;
  }
  .menu-panel__top .btn {
    position: absolute;
    top: 126px;
    left: 24px;
    min-width: 93px;
    min-height: 36px;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 300;
  }
  .menu-close {
    position: absolute;
    top: 40px;
    right: -20px;
    width: 26px;
    height: 26px;
    padding: 0;
    font-size: 2rem;
    font-weight: 200;
  }
  .menu-panel__content {
    display: block;
    padding: 152px 0 0;
  }
  .menu-nav {
    gap: 12px;
  }
  .menu-nav li {
    margin-bottom: 0;
  }
  .menu-nav a {
    font-size: 24px;
    font-weight: 300;
    line-height: 29px;
  }
  .menu-panel__graphic {
    display: none;
  }
}
/* Hero */
.hero {
  display: grid;
  min-height: 620px;
  color: #fff;
  background-color: var(--navy);
  background-position: center;
  background-size: cover;
}
.hero::before {
  grid-area: 1 / 1;
  background: linear-gradient(180deg, rgba(4, 24, 40, 0.14) 18%, rgba(3, 27, 45, 0.76) 100%);
  content: "";
}
.hero__content {
  grid-area: 1 / 1;
  align-self: end;
  padding: 180px 0 120px;
}
.hero__content--center {
  align-self: center;
  padding-block: 145px 80px;
}
.hero__title {
  max-width: 850px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.hero__title strong {
  display: block;
  font-weight: 700;
}
.hero__script {
  max-width: 560px;
  margin-bottom: 28px;
  color: #fff;
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.35;
}
.hero--short {
  min-height: 510px;
}
.hero--short .hero__content {
  padding-bottom: 74px;
}
.hero--short .hero__title {
  font-size: clamp(2.6rem, 5vw, 5rem);
}
.hero--plain {
  min-height: 330px;
  color: var(--ink);
  background: #fff;
}
.hero--plain::before {
  display: none;
}
.hero--plain .hero__content {
  padding: 150px 0 74px;
}
.hero--plain .hero__title {
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 650;
}
/* Forms */
.booking-shell {
  position: relative;
  z-index: 4;
  margin-top: -92px;
}
.booking-panel {
  padding: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.booking-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(230px, 0.75fr) minmax(230px, 0.75fr);
  gap: 34px;
}
.booking-panel h2,
.booking-panel h3 {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.form-grid--single {
  grid-template-columns: 1fr;
}
.form-field {
  display: grid;
  gap: 6px;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field label {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
}
.input,
.select,
.textarea {
  width: 100%;
  min-height: 42px;
  padding: 0.64rem 0.75rem;
  border: 1px solid #cdd4da;
  border-radius: 2px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.textarea {
  min-height: 136px;
  resize: vertical;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(142, 178, 220, 0.24);
}
.trip-tabs,
.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.tab-button {
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 0.78rem;
}
.tab-button.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.form-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
}
/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}
.intro-grid__image {
  min-height: 500px;
  object-fit: cover;
}
.copy-block h2 {
  margin-bottom: 26px;
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
}
.copy-block p {
  margin-bottom: 18px;
}
/* Routes */
.routes-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}
.routes-head__description {
  color: var(--muted);
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.route-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.route-card:hover {
  transform: translateY(-4px);
}
.route-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2.15 / 1;
  background: var(--navy);
  border-radius: 5px;
}
.route-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  border-radius: 4px 4px 0 0;
}
.route-card:hover .route-card__media img {
  transform: scale(1.04);
}
.route-card__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 70%;
  background: linear-gradient(180deg, transparent, rgba(5, 34, 55, 0.88));
  content: "";
}
.route-card__name,
.route-card__code {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  color: #fff;
}
.route-card__name {
  left: 14px;
  font-family: var(--font-script);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
}
.route-card__code {
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
}
.route-card__body {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid #999999;
  min-height: 230px !important;
  margin-bottom: 20px;
  border-radius: 0 0 5px 5px;
}
.route-label {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
}
.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--ink);
}
.route-line__bar {
  height: 1px;
  background: #8d99a5;
}
.route-line__plane {
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1;
}
.route-card__duration {
  margin: -10px 0 14px;
  text-align: center;
  color: var(--muted);
  font-size: 0.66rem;
}
.route-card h3 {
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}
.route-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}
.route-card .btn {
  align-self: flex-start;
  margin-top: auto;
}
.route-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.route-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
/* Testimonials */
.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  align-items: center;
  gap: 52px;
}
.testimonial-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}
.testimonial-card {
  min-height: 290px;
  padding: 34px 28px;
  color: var(--text);
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 43, 70, 0.12);
  transition: transform 220ms ease,
        opacity 220ms ease;
}
.testimonial-card:nth-child(2) {
  z-index: 2;
  min-height: 330px;
  transform: scale(1.04);
}
.testimonial-card p {
  margin-bottom: 28px;
  font-size: 0.9rem;
}
.testimonial-card strong {
  color: var(--ink);
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 400;
}
.testimonial-controls {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  background: transparent;
}
/* CTA */
.cta-banner {
  display: grid;
  min-height: 490px;
  color: #fff;
  background-position: center;
  background-size: cover;
}
.cta-banner::before {
  grid-area: 1 / 1;
  background: linear-gradient(180deg, rgba(7, 38, 60, 0.04), rgba(5, 35, 57, 0.88));
  content: "";
}
.cta-banner__inner {
  grid-area: 1 / 1;
  align-self: end;
  padding: 80px 0;
}
.cta-banner h2 {
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--font-script);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 400;
}
.cta-banner p {
  max-width: 420px;
  margin-bottom: 24px;
  font-size: 1.15rem;
  text-transform: uppercase;
}
/* Shared footer */
.site-footer {
  min-height: 555px;
  padding: 92px 0 36px;
  color: var(--text);
  background: #fff;
}
.site-footer > .container > .brand img {
  width: 230px;
}
.site-footer__col_separate {
  display: flex;
  justify-content: space-between;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.82fr 0.68fr;
  gap: 50px;
  margin-top: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  width: 65%;
}
.footer-column h3 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
}
.footer-column p,
.footer-column a,
.footer-column li {
  color: #414042;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}
.footer-column a:hover {
  color: var(--red);
}
.footer-column .mt-32 {
  margin-top: 18px;
}
.footer-column--newsletter {
  width: 25%;
  margin-top: 30px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.footer-column--newsletter h3 {
  margin-bottom: 10px;
  font-family: var(--font-script);
  font-size: 40px;
  font-weight: 400;
}
.newsletter-form {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.newsletter-form .input {
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 300;
}
.newsletter-form .btn {
  justify-self: start;
  min-height: 29px;
  padding: 5px 14px;
  border-radius: 0;
  font-size: 11px;
}
.newsletter-form--cf7 .wpcf7-form {
  display: grid;
  gap: 20px;
  margin: 0;
}
.newsletter-form--cf7 .wpcf7-form > p,
.newsletter-form--cf7 .newsletter-form__field,
.newsletter-form--cf7 .newsletter-form__actions {
  margin: 0;
}
.newsletter-form--cf7 .wpcf7-response-output,
.newsletter-form__notice {
  margin: 12px 0 0;
  font-size: 13px;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  color: #99a2aa;
  font-size: 14px;
  font-weight: 300;
}
.social-list {
  display: flex;
  gap: 7px;
  margin-top: 10px;
}
.social-list a {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 700;
}
/* Route detail */
.schedule-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}
.schedule-form {
  display: grid;
  gap: 10px;
}
.schedule-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.schedule-day {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.schedule-day.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}
.schedule-day time {
  display: block;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.18;
}
.schedule-day p {
  font-size: 12px;
  font-weight: 300;
}
.story-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 64px;
  margin-top: 64px;
}
.story-mosaic__image {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
}
.story-mosaic__copy {
  display: grid;
  align-content: start;
  gap: 28px;
}
.story-mosaic__copy h2 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
}
.story-mosaic__copy p,
.story-mosaic__below p {
  font-size: 0.9rem;
}
.story-mosaic__below {
  max-width: 520px;
  margin-top: 28px;
}
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
}
.image-strip img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}
/* Island guide */
.guide-hero-image {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}
.guide-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  padding: 62px 0 88px;
}
.guide-intro__lead {
  color: #fff;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.35;
}
.guide-intro__copy {
  columns: 2;
  column-gap: 40px;
}
.guide-intro__copy p {
  break-inside: avoid;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}
.guide-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 0;
  padding-bottom: 84px;
}
.guide-mosaic img:first-child {
  width: 100%;
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
}
.guide-mosaic img:last-child {
  width: 115%;
  margin-left: -15%;
  transform: translateY(20%);
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}
.guide-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
}
.guide-overview__copy {
  columns: 2;
  column-gap: 40px;
}
.guide-overview__gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  margin-top: 60px;
}
.guide-overview__slider {
  position: relative;
}
.guide-overview__gallery-controls {
  display: none;
}
.guide-overview__gallery img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.guide-detail {
  display: grid;
  grid-template-columns: 180px minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 50px;
  align-items: start;
}
.guide-side-nav {
  display: grid;
  gap: 7px;
  color: #a3abb2;
  font-size: 0.72rem;
}
.guide-side-nav button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.guide-side-nav .is-active {
  color: var(--ink);
  font-weight: 700;
}
.guide-side-nav button:hover {
  color: var(--ink);
}
.guide-side-nav button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.guide-detail__copy h2 {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
}
.guide-detail__copy p {
  font-size: 0.84rem;
}
.guide-detail__images {
  display: grid;
  gap: 24px;
}
.guide-detail__images figure {
  margin: 0;
}
.guide-detail__images img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}
.guide-detail__images figcaption {
  margin-top: 6px;
  color: #a4acb4;
  font-size: 0.65rem;
  text-align: right;
}
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.guide-card {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.guide-card img,
.guide-card::after,
.guide-card__copy {
  grid-area: 1 / 1;
}
.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(5, 34, 55, 0.9));
  content: "";
}
.guide-card__copy {
  z-index: 1;
  align-self: end;
  padding: 24px;
}
.guide-card h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: 400;
}
/* About and fleet */
.timeline {
  display: grid;
  gap: 76px;
}
.timeline-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 72px;
}
.timeline-row:nth-child(even) .timeline-row__media {
  order: 2;
}
.timeline-row__media img {
  width: 100%;
  max-height: 570px;
  object-fit: cover;
}
.timeline-row__copy h2,
.aircraft-copy h2 {
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}
.quote-band {
  padding: 70px 0;
  color: #fff;
  background: var(--blue);
}
.quote-band blockquote {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.3;
}
.aircraft-list {
  display: grid;
  gap: 90px;
}
.aircraft-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 70px;
}
.aircraft-row:nth-child(even) .aircraft-row__image {
  order: 2;
}
.aircraft-row__image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}
.aircraft-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.aircraft-stat {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.aircraft-stat strong {
  display: block;
  color: var(--ink);
}
/* Booking page */
.booking-page-hero {
  min-height: 290px;
  padding-top: var(--header-height);
  background: var(--navy);
}
.booking-page-panel {
  margin-top: -115px;
}
.booking-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: center;
}
.booking-feature img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.stat-card {
  padding: 30px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}
/* Route map */
.route-map-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 50px;
}
.route-map-controls {
  display: grid;
  align-content: start;
  gap: 14px;
}
.route-map-frame {
  min-height: 560px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
.route-map-frame svg {
  width: 100%;
  height: auto;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
}
.map-legend span::before {
  display: inline-block;
  width: 24px;
  height: 3px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--red);
  content: "";
}
.map-legend span:last-child::before {
  background: var(--blue);
}
/* Baggage */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 70px;
}
.policy-item {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.policy-item h3 {
  font-size: 1rem;
}
.policy-item p {
  font-size: 0.86rem;
}
.fee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.fee-card {
  min-height: 210px;
  padding: 24px;
  color: #fff;
  background: var(--navy);
}
.fee-card:nth-child(even) {
  background: var(--blue);
}
.fee-card strong {
  display: block;
  margin: 22px 0 8px;
  font-size: 2rem;
}
/* Contact */
.contact-hero {
  padding: 150px 0 80px;
  color: #fff;
  background: var(--blue);
}
.contact-hero h1 {
  font-size: 50;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 120px;
}
.contact-hero h1,
.contact-hero h2 {
  color: #fff;
}
.contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 70px;
}
.contact-hero__copy h2 {
  max-width: 690px;
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 400;
}
.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 46px;
  font-size: 0.82rem;
}
.contact-hero__image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
.contact-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 80px;
}
.department-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.department-grid h3 {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.department-grid p {
  font-size: 0.8rem;
}
.team-image {
  width: 100%;
  margin-top: 70px;
}
/* International guide */
.destination-hero {
  display: grid;
  min-height: 590px;
  color: #fff;
  background: var(--navy);
}
.destination-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 590px;
}
.destination-hero__image {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}
.destination-hero__copy {
  display: grid;
  align-content: center;
  padding: 130px clamp(32px, 7vw, 100px) 70px;
}
.destination-hero__copy h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 500;
}
.destination-hero__copy h2 {
  color: #fff;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 400;
}
.destination-hero__copy p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.82);
}
.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.travel-card {
  padding: 30px;
  border: 1px solid var(--line);
}
.travel-card h3 {
  margin-bottom: 18px;
}
.travel-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0;
  font-size: 2rem;
  color: var(--navy);
}
.travel-route__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.attraction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.attraction-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
.attraction-card h3 {
  margin-top: 14px;
  font-size: 1rem;
}
.cuisine-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: center;
}
.cuisine-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}
.cuisine-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.cuisine-gallery img:first-child {
  grid-row: span 2;
  height: 534px;
}
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #fff;
  background: var(--blue);
}
.info-strip__item {
  padding: 34px;
  text-align: center;
}
.info-strip__item + .info-strip__item {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.info-strip strong {
  display: block;
  font-size: 1.2rem;
}
/* Policy pages */
.policy-page {
  padding: 80px 0 100px;
}
.policy-page__intro {
  max-width: 860px;
  margin-bottom: 54px;
  font-size: 1.12rem;
}
.policy-columns {
  columns: 2;
  column-gap: 70px;
}
.policy-section {
  break-inside: avoid;
  margin-bottom: 34px;
}
.policy-section h2 {
  font-size: 1.1rem;
}
.policy-section p,
.policy-section li {
  font-size: 0.87rem;
}
.policy-section ul {
  list-style: disc;
  padding-left: 20px;
}
.article-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 40px;
  margin-bottom: 56px;
  padding: 30px;
  border: 1px solid var(--line);
}
.article-index a {
  color: var(--navy);
  font-size: 0.82rem;
}
.danger-icons {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.danger-icon {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.35rem;
  text-align: center;
}
body:not(.page-home) {
  --page-container: 1440px;
  --page-gutter: 32px;
  --font-script: "Maldives", "Caveat", "Segoe Print", "Bradley Hand", cursive;
  color: #52606c;
  font-size: 15px;
}
body:not(.page-home) .container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--page-container));
}
body:not(.page-home) .section-kicker {
  margin-bottom: 80px;
  color: #0E2F4F;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
}
body:not(.page-home) .btn {
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
}
body:not(.page-home) .input,
body:not(.page-home) .select,
body:not(.page-home) .textarea {
  border-radius: 4px;
}
.page-title {
  padding: 145px 0 120px;
  background: #fff;
}
.page-title h1 {
  margin: 0;
  color: #0E2F4F;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.page-about .about-story {
  padding: 0 0 330px;
}
.page-about .about-story__hero {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 4px;
}
.page-about .about-story__row {
  display: grid;
  grid-template-columns: 570px 1fr;
  align-items: start;
  gap: 240px;
  margin-top: 120px;
}
.page-about .about-story__portrait {
  width: 570px;
  height: 610px;
  object-fit: cover;
  border-radius: 4px;
}
.page-about .about-story__copy {
  max-width: 620px;
  padding-top: 10px;
}
.page-about .about-story__copy h2,
.page-about .about-mission h2,
.page-about .journey-panel h2,
.page-about .about-cta h2 {
  color: #8CAEDC;
  font-family: var(--font-script);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
}
.page-about .about-story__copy p,
.page-about .about-mission__copy p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}
.page-about .about-mission {
  display: grid;
  grid-template-columns: 570px 1fr;
  align-items: center;
  gap: 110px;
  margin-top: 130px;
}
.page-about .about-mission__copy {
  padding-top: 50px;
}
.page-about .about-mission__copy .section-kicker {
  margin-bottom: 72px;
  font-size: 24px;
  font-weight: 300;
}
.page-about .about-mission img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 4px;
  object-position: center 45%;
}
.page-about .about-journey {
  margin-top: 130px;
}
.page-about .about-journey > .section-kicker {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 300;
}
.page-about .journey-tabs {
  display: flex;
  align-items: end;
  height: 34px;
  overflow-x: auto;
  color: #9ba5ad;
  font-size: 13px;
  scrollbar-width: thin;
}
.page-about .journey-tabs button {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  padding-inline: 16px;
  border: 0;
  background: #d9d9d9;
  border-radius: 4px 4px 0 0;
  margin-right: -4px;
  z-index: 1;
  color: inherit;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.page-about .journey-tabs button.is-active {
  padding-inline: 16px;
  color: #fff;
  background: #8eb2dc;
}
.page-about .journey-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 470px;
  align-items: center;
  min-height: 390px;
  padding: 60px 48px;
  color: #fff;
  background: #8eb2dc;
  z-index: 2;
}
.page-about .journey-panel h2 {
  align-self: start;
  margin: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
}
.page-about .journey-panel p {
  align-self: end;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.45;
}
.page-about .journey-controls {
  position: absolute;
  left: 38px;
  bottom: 30px;
  display: flex;
  gap: 10px;
}
.page-about .journey-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}
.page-about .about-cta {
  display: grid;
  min-height: 780px;
  color: #fff;
  background-position: center 40%;
  background-size: cover;
}
.page-about .about-cta::before {
  grid-area: 1/1;
  content: "";
  background: linear-gradient(180deg, rgba(5, 31, 49, 0.03), rgba(7, 45, 72, 0.9));
}
.page-about .about-cta__inner {
  grid-area: 1/1;
  align-self: end;
  padding-bottom: 115px;
}
.page-about .about-cta h2 {
  margin-bottom: 34px;
  color: #fff;
  font-size: 64px;
}
.page-about .about-cta p {
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
}
.page-fleet .fleet-page {
  padding: 0 0 130px;
}
.page-fleet .fleet-banner {
  position: relative;
  margin: 0;
}
.page-fleet .fleet-banner img {
  width: 100%;
  height: 615px;
  object-fit: cover;
}
.page-fleet .fleet-banner figcaption {
  position: absolute;
  left: 46px;
  bottom: 90px;
  color: #fff;
  font-family: var(--font-script);
  font-size: 48px;
  line-height: 1.12;
}
.page-fleet .fleet-banner__curves,
.page-fleet .fleet-banner__aircraft,
.page-fleet .fleet-banner__mobile-caption {
  display: none;
}
.page-fleet .fleet-intro {
  display: grid;
  grid-template-columns: 740px 1fr;
  gap: 270px;
  align-items: start;
  margin-top: 120px;
}
.page-fleet .fleet-intro img {
  width: 740px;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}
.page-fleet .fleet-intro p {
  max-width: 520px;
  padding-top: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.page-fleet .fleet-kicker {
  margin-top: 125px;
  margin-bottom: 80px;
}
.page-fleet .fleet-list {
  display: grid;
  gap: 80px;
}
.page-fleet .fleet-aircraft {
  display: grid;
  grid-template-columns: 870px 1fr;
  gap: 70px;
  align-items: start;
}
.page-fleet .fleet-aircraft img {
  width: 870px;
  height: 550px;
  object-fit: cover;
  border-radius: 4px;
}
.page-fleet .fleet-aircraft h2,
.page-fleet .fleet-coming h2 {
  margin: 0 0 45px;
  color: #173e5f;
  font-family: var(--font-script);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
}
.page-fleet .fleet-aircraft p,
.page-fleet .fleet-coming p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.48;
}
.page-fleet .fleet-coming {
  display: grid;
  grid-template-columns: 630px 1fr;
  gap: 70px;
  padding: 25px;
  border: 1px solid #7d858c;
}
.page-fleet .fleet-coming__image {
  position: relative;
}
.page-fleet .fleet-coming__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) opacity(0.8);
}
.page-fleet .fleet-coming__image span {
  position: absolute;
  inset: auto 20px 20px;
  display: grid;
  min-height: 58px;
  place-items: center;
  color: #5e676e;
  background: #fff;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
.page-fleet .fleet-coming > div:last-child {
  padding: 8px 20px 8px 0;
}
.page-fleet .fleet-coming h2 {
  color: #8a9298;
}
.booking-promo {
  padding: 45px 0 55px;
  background: #fff;
}
.booking-promo__panel {
  display: grid;
  grid-template-columns: 760px 1fr;
  align-items: center;
  min-height: 500px;
  padding: 46px;
  background: #8eb2dc;
}
.booking-promo__panel > img {
  width: 760px;
  height: 390px;
  object-fit: cover;
}
.booking-promo__copy {
  padding: 30px 55px;
  color: #fff;
}
.booking-promo__copy h1,
.booking-promo__copy h2 {
  margin-bottom: 70px;
  color: #fff;
  font-family: var(--font-script);
  font-size: 60px;
  font-weight: 500;
  line-height: 1.04;
}
.booking-promo__copy p {
  max-width: 520px;
  margin-left: auto;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}
.booking-promo__copy .btn {
  margin: 24px 0 0 auto;
}
.page-booking .site-header {
  color: #fff;
  background: transparent;
}
.page-booking .booking-page-hero {
  min-height: 600px;
  padding: 0;
  background: #0d3454;
}
.page-booking .booking-page-panel {
  margin-top: -270px;
}
.page-booking .booking-panel--standalone {
  min-height: 500px;
  padding: 62px 165px 50px;
  box-shadow: 0 8px 18px rgba(20, 40, 55, 0.16);
}
.page-booking .booking-panel__grid {
  grid-template-columns: 560px 265px 265px;
  justify-content: space-between;
  gap: 20px;
}
.page-booking .booking-panel h2 {
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 400;
}
.page-booking .booking-panel .form-grid {
  gap: 11px 18px;
}
.page-booking .booking-panel .input,
.page-booking .booking-panel .select {
  min-height: 31px;
  padding: 4px 10px;
  font-size: 13px;
}
.page-booking .booking-panel .trip-tabs {
  gap: 18px;
  margin: 0;
}
.page-booking .booking-panel .tab-button {
  min-height: 28px;
  padding: 4px 13px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
}
.page-booking .booking-panel .tab-button--link {
  padding-inline: 0;
  color: #4ea3ca;
  border: 0;
  background: transparent;
  text-decoration: underline;
}
.page-booking .booking-panel .btn {
  min-height: 30px;
  padding: 5px 14px;
  font-size: 12px;
}
.page-booking .booking-side {
  display: grid;
  align-content: start;
  gap: 12px;
}
.page-booking .booking-side > .btn {
  justify-self: start;
}
.page-booking .booking-side__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.page-booking .booking-side__actions .text-link {
  font-size: 12px;
  font-weight: 400;
  text-decoration: underline;
}
.page-booking .booking-caption {
  max-width: 1050px;
  margin: 24px 0 0;
  color: #a0a7ad;
  font-size: 12px;
}
.page-booking .booking-promo {
  padding-top: 75px;
}
.page-route-map .route-map-page {
  padding: 20px 0 90px;
}
.page-route-map .route-map-search {
  display: grid;
  grid-template-columns: 560px 46px 560px;
  gap: 20px;
  align-items: center;
}
.page-route-map .route-map-search .select {
  min-height: 34px;
  font-size: 13px;
}
.page-route-map .route-swap {
  width: 46px;
  height: 34px;
  border: 0;
  color: #fff;
  background: #d7dade;
}
.page-route-map .route-map-art {
  width: 1250px;
  max-width: 100%;
  margin: 90px auto 0;
}
.page-route-map .route-map-art svg {
  width: 100%;
  height: 870px;
}
.page-route-map .route-map-art svg rect {
  fill: #fff;
}
.page-route-map .map-legend {
  display: grid;
  gap: 8px;
  width: 220px;
  margin: -120px 0 60px;
  font-size: 13px;
}
.page-route-map .map-legend span::before {
  width: 55px;
  height: 5px;
}
.page-route-map .map-legend span:nth-child(1)::before {
  background: #0d3454;
}
.page-route-map .map-legend span:nth-child(2)::before {
  background: #a5adb4;
}
.page-route-map .map-legend span:nth-child(3)::before {
  background: #e51f31;
}
.page-route-map .booking-promo--map {
  padding-top: 30px;
}
.page-baggage .baggage-page {
  padding: 15px 0 120px;
}
.page-baggage .baggage-section-title {
  margin: 0 0 80px;
  color: #2d526e;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
.page-baggage .baggage-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #aeb5bb;
}
.page-baggage .baggage-policy-grid article {
  min-height: 170px;
  padding: 26px 0 30px;
  border-bottom: 1px solid #c8cdd1;
}
.page-baggage .baggage-policy-grid article:nth-child(odd) {
  padding-right: 80px;
}
.page-baggage .baggage-policy-grid article:nth-child(even) {
  padding-left: 80px;
}
.page-baggage .baggage-policy-grid h3,
.page-baggage .pet-grid h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
.page-baggage .baggage-policy-grid p,
.page-baggage .pet-grid p,
.page-baggage .pet-grid li,
.page-baggage .breed-grid p,
.page-baggage .breed-grid li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}
.page-baggage .baggage-thanks {
  margin: 20px 0 85px;
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
}
.page-baggage .allowance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 230px;
}
.page-baggage .allowance-card {
  min-height: 520px;
  border: 1px solid #0d3454;
  position: relative;
}
.page-baggage .allowance-card h3 {
  min-height: 90px;
  margin: 0;
  padding: 20px;
  color: #fff;
  background: #0d3454;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.page-baggage .allowance-card > *:not(h3) {
  margin-inline: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}
.page-baggage .allowance-table {
  width: calc(100% - 48px);
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  font-weight: 300;
}
.page-baggage .allowance-table th,
.page-baggage .allowance-table td {
  padding: 0 8px 14px 0;
  text-align: left;
  vertical-align: top;
}
.page-baggage .allowance-table th {
  padding-bottom: 18px;
  font-weight: 700;
}
.page-baggage .allowance-table th:nth-child(1),
.page-baggage .allowance-table td:nth-child(1) {
  width: 42%;
}
.page-baggage .allowance-table th:nth-child(2),
.page-baggage .allowance-table td:nth-child(2) {
  width: 35%;
}
.page-baggage .allowance-table th:nth-child(3),
.page-baggage .allowance-table td:nth-child(3) {
  width: 23%;
}
.page-baggage .allowance-card small {
  display: block;
  margin-top: 80px;
  color: #6d777e;
  font-size: 11px;
  line-height: 1.35;
  position: absolute;
  bottom: 30px;
}
.page-baggage .allowance-card small .warning {
  color: #e51f31;
  display: block;
  margin-top: 4px;
}
.page-baggage .pet-grid,
.page-baggage .breed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 90px;
  padding: 20px 0 155px;
  border-top: 1px solid #b7bec3;
}
.page-baggage .pet-grid ul,
.page-baggage .breed-grid ul {
  list-style: disc;
  padding-left: 18px;
}
.page-baggage .breed-grid {
  align-items: end;
}
.page-baggage .checkin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.page-baggage .checkin-grid article {
  min-height: 400px;
  padding: 38px;
  border-radius: 4px;
  color: #fff;
  background: #8eb2dc;
}
.page-baggage .checkin-grid h3 {
  color: #fff;
  font-family: var(--font-script);
  font-size: 36px;
  font-weight: 400;
}
.page-baggage .checkin-grid p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
.page-contact .contact-hero {
  min-height: 1090px;
  padding: 260px 0 55px;
  background: #8eb2dc;
  overflow: hidden;
}
.page-contact .contact-hero__grid {
  grid-template-columns: 1fr 620px;
  align-items: end;
  gap: 90px;
}
.page-contact .contact-hero__copy > h1 {
  margin-bottom: 125px;
  font-size: 50px;
  text-transform: uppercase;
}
.page-contact .contact-hero__copy .eyebrow {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 300;
}
.page-contact .contact-hero__copy h2 {
  max-width: 840px;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
}
.page-contact .contact-meta {
  grid-template-columns: 400px 250px;
  margin-top: 85px;
  font-size: 16px;
  font-weight: 300;
}
.page-contact .contact-meta strong {
  font-weight: 700;
}
.page-contact .contact-hero__image {
  width: 600px;
  height: 520px;
  object-fit: cover;
}
.page-contact .contact-body {
  grid-template-columns: 1fr 560px;
  gap: 120px;
  padding-top: 80px;
}
.page-contact .department-grid {
  gap: 50px 90px;
}
.page-contact .department-grid h3 {
  font-size: 15px;
}
.page-contact .department-grid p {
  font-size: 14px;
}
.page-contact .contact-body .form-grid {
  gap: 14px;
}
.page-contact .contact-body .input {
  min-height: 34px;
}
.page-contact .contact-body .textarea {
  min-height: 160px;
}
.page-contact .team-image {
  margin-top: 80px;
  height: 520px;
  object-fit: cover;
}
.page-title--destination {
  padding-bottom: 120px;
}
.destination-banner {
  background: #fff;
}
.destination-banner img {
  width: 100%;
  height: 600px;
  border-radius: 4px;
  object-fit: cover;
}
.destinations-page {
  padding: 120px 0 135px;
}
.destinations-page > .container > h2 {
  max-width: 1200px;
  margin: 0 0 80px;
  color: #0E2F4F;
  font-family: var(--font-script);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.16;
}
.destination-tabs {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}
.destination-tabs a {
  min-width: 80px;
  padding: 6px 15px;
  border: 1px solid #414042;
  color: #414042;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  border-radius: 4px;
}
.destination-tabs .is-active {
  color: #fff;
  border-color: #8eb2dc;
  background: #8eb2dc;
}
.destination-subhead {
  display: grid;
  grid-template-columns: 330px 460px 1fr;
  align-items: start;
  gap: 40px;
  margin-bottom: 80px;
}
.destination-subhead h3 {
  font-size: 16px;
  font-weight: 700;
}
.destination-subhead p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
.destination-subhead .btn {
  justify-self: end;
}
.destination-local-grid,
.destination-charter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}
.destination-local-grid .route-card:nth-child(5) {
  grid-column: 1;
  margin-top: 42px;
}
.destination-subhead--international {
  margin-top: 120px;
}
.destination-international-grid {
  display: grid;
  grid-template-columns: repeat(3, 340px);
  gap: 22px;
}
.destination-charter-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.page-destinations .route-card,
.page-charter-destinations .route-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}
.page-destinations .route-card:hover,
.page-charter-destinations .route-card:hover {
  box-shadow: none;
}
.page-destinations .route-card__media,
.page-charter-destinations .route-card__media {
  aspect-ratio: 1.5/1;
  border: 1px solid #b6bdc3;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}
.page-destinations .route-card__name,
.page-charter-destinations .route-card__name {
  font-size: 34px;
}
.page-destinations .route-card__body,
.page-charter-destinations .route-card__body {
  min-height: 400px;
  padding: 18px;
}
.page-destinations .route-card__body .btn,
.page-charter-destinations .route-card__body .btn {
  margin-top: 18px;
  margin-left: -18px;
  transform: translateY(58px);
  color: #fff;
  background: #d7d9db;
}
.page-destinations .route-card p,
.page-charter-destinations .route-card p {
  font-size: 12px;
}
.page-charter-destinations .destinations-page {
  padding-bottom: 115px;
}
.page-charter-destinations .destination-charter-grid .route-card__body {
  min-height: 360px;
}
.page-international-guide .intl-title {
  padding: 150px 0 28px;
}
.page-international-guide .intl-title h1 {
  margin: 0 0 65px;
  color: #123a5a;
  font-size: 48px;
  text-transform: uppercase;
}
.page-international-guide .intl-title p {
  color: #9ba4aa;
  font-size: 12px;
}
.page-international-guide .intl-hero {
  position: relative;
  height: 1030px;
  overflow: hidden;
}
.page-international-guide .intl-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-international-guide .intl-hero p {
  position: absolute;
  right: calc((100% - 1440px) / 2 + 120px);
  bottom: 105px;
  color: #fff;
  font-family: var(--font-script);
  font-size: 44px;
  line-height: 1.05;
}
.page-international-guide .intl-intro {
  min-height: 1110px;
  padding: 45px 0 100px;
  color: #fff;
  background: #0d3454;
}
.page-international-guide .intl-intro__top {
  display: grid;
  grid-template-columns: 560px 560px;
  justify-content: space-between;
  gap: 80px;
}
.page-international-guide .intl-intro__top p {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}
.page-international-guide .intl-mosaic {
  display: grid;
  grid-template-columns: 760px 520px;
  align-items: end;
  margin-top: 90px;
}
.page-international-guide .intl-mosaic img:first-child {
  width: 760px;
  height: 560px;
  object-fit: cover;
}
.page-international-guide .intl-mosaic img:last-child {
  width: 520px;
  height: 340px;
  margin-left: -120px;
  transform: translateY(100px);
  object-fit: cover;
}
.page-international-guide .intl-content {
  padding: 115px 0 710px;
}
.page-international-guide .getting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.page-international-guide .getting-grid article {
  min-height: 175px;
  padding: 22px;
  border: 1px solid #aeb6bc;
}
.page-international-guide .getting-grid b {
  color: #243d52;
  font-size: 13px;
}
.page-international-guide .getting-grid p {
  font-size: 11px;
}
.page-international-guide .getting-route {
  display: grid;
  grid-template-columns: 100px 1fr 35px 1fr 140px;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: #183e5d;
  font-size: 26px;
}
.page-international-guide .getting-route span {
  display: grid;
}
.page-international-guide .getting-route small {
  color: #79848c;
  font-size: 10px;
}
.page-international-guide .getting-line {
  height: 1px;
  background: #9aa4ac;
}
.page-international-guide .schedule-summary {
  display: grid;
  grid-template-columns: 35px 130px 90px 35px 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
}
.page-international-guide .schedule-summary strong {
  color: #173e5f;
  font-size: 18px;
}
.page-international-guide .schedule-summary small {
  font-size: 10px;
}
.page-international-guide .intl-section-kicker {
  margin-top: 105px;
}
.page-international-guide .intl-attractions {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.page-international-guide .intl-attractions figure {
  margin: 0;
}
.page-international-guide .intl-attractions img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.page-international-guide .intl-attractions figcaption {
  color: #a3abb1;
  font-size: 11px;
}
.page-international-guide .intl-cuisine {
  width: 1120px;
}
.page-international-guide .intl-cuisine__main {
  position: relative;
  width: 760px;
}
.page-international-guide .intl-cuisine__main img {
  width: 760px;
  height: 530px;
  object-fit: cover;
}
.page-international-guide .intl-cuisine__main p {
  position: absolute;
  left: 620px;
  top: 30px;
  width: 470px;
  color: #8eb2dc;
  font-family: var(--font-script);
  font-size: 36px;
  line-height: 1.1;
}
.page-international-guide .intl-cuisine__small {
  display: grid;
  grid-template-columns: repeat(2, 290px);
  gap: 18px;
  margin: -75px 0 0 610px;
}
.page-international-guide .intl-cuisine__small img {
  width: 290px;
  height: 220px;
  object-fit: cover;
}
.page-international-guide .essential-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  color: #fff;
  background: #8eb2dc;
}
.page-international-guide .essential-service div {
  display: grid;
  min-height: 160px;
  place-items: center;
  align-content: center;
  gap: 12px;
  font-size: 36px;
}
.page-international-guide .essential-service span {
  font-size: 13px;
}
.page-international-guide .intl-info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 110px;
}
.page-international-guide .intl-info-head .section-kicker {
  margin: 0;
}
.page-international-guide .intl-info {
  display: grid;
  grid-template-columns: repeat(3, 340px);
  gap: 20px;
  margin-top: 45px;
}
.page-international-guide .intl-info article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 135px;
  padding: 20px;
  border: 1px solid #aeb6bc;
}
.page-international-guide .intl-info b {
  grid-column: 1/-1;
  font-size: 12px;
}
.page-international-guide .intl-info strong {
  color: #173e5f;
  font-size: 25px;
}
.page-international-guide .intl-info span {
  font-size: 11px;
}
.page-refund-policy .page-title--refund-policy {
  padding-top: 225px;
  padding-bottom: 120px;
}
.page-refund-policy .refund-policy-page {
  padding: 0 0 55px;
}
.page-refund-policy .refund-policy-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(0, 590px);
  align-items: start;
  justify-content: space-between;
  gap: 140px;
}
.page-refund-policy .refund-policy-page__content {
  min-width: 0;
}
.page-refund-policy .refund-policy-item + .refund-policy-item {
  margin-top: 115px;
}
.page-refund-policy .refund-policy-item h2 {
  margin: 0 0 78px;
  color: #173e5f;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
}
.page-refund-policy .refund-policy-item p {
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid #bcc2c7;
  color: #666;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.25;
}
.page-refund-policy .refund-policy-page__image {
  margin: 0;
}
.page-refund-policy .refund-policy-page__image img {
  width: 590px;
  height: 465px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center center;
}
.simple-policy {
  min-height: 600px;
  padding-top: 35px;
}
.simple-policy__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 130px;
  padding-top: 40px;
  border-top: 1px solid #bcc2c7;
}
.simple-policy h2 {
  color: #173e5f;
  font-size: 20px;
  text-transform: uppercase;
}
.simple-policy p {
  font-size: 15px;
}
.danger-page {
  min-height: 690px;
  padding-top: 20px;
}
.danger-page__grid {
  display: grid;
  grid-template-columns: 650px 1fr;
  align-items: center;
  gap: 160px;
}
.danger-page p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}
.danger-page img {
  width: 735px;
}
.danger-page__icons {
  display: none;
}
.page-privacy-policy .page-title--privacy-policy {
  padding: 220px 0 100px;
}
.page-privacy-policy .privacy-page {
  padding: 20px 0 30px;
}
.page-privacy-policy .privacy-intro {
  max-width: 580px;
  margin-bottom: 96px;
}
.page-privacy-policy .privacy-intro h2 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.page-privacy-policy .privacy-intro p {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}
.page-privacy-policy .privacy-overview {
  margin-bottom: 141px;
  border-top: 1px solid #bcc3c8;
}
.page-privacy-policy .privacy-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 250px;
  padding: 27px 0 89px;
  border-bottom: 1px solid #bcc3c8;
}
.page-privacy-policy .privacy-row--overview {
  min-height: 330px;
  padding-top: 27px;
  padding-bottom: 42px;
}
.page-privacy-policy .privacy-row--overview + .privacy-row--overview {
  min-height: 220px;
  padding-top: 33px;
  padding-bottom: 0;
  border-bottom: 0;
}
.page-privacy-policy .privacy-row--single .privacy-item {
  grid-column: 1;
}
.page-privacy-policy .privacy-item h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.page-privacy-policy .privacy-item p,
.page-privacy-policy .privacy-collection__lead,
.page-privacy-policy .privacy-types-lead {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.page-privacy-policy .privacy-major {
  margin: 0;
  padding-bottom: 66px;
  border-bottom: 1px solid #aeb7be;
  color: #294f6c;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}
.page-privacy-policy .privacy-collection__lead {
  padding: 30px 0 8px;
}
.page-privacy-policy .privacy-row--first {
  padding-bottom: 34px;
}
.page-privacy-policy .privacy-row--compact {
  padding-bottom: 89px;
}
.page-privacy-policy .privacy-types-lead {
  padding: 27px 0 17px;
}
.page-privacy-policy .privacy-row--last {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (max-width: 1100px) {
  .page-privacy-policy .page-title--privacy-policy {
    padding: 120px 0 70px;
  }
  .page-privacy-policy .privacy-overview {
    margin-bottom: 75px;
  }
  .page-privacy-policy .privacy-row--overview,
  .page-privacy-policy .privacy-row--overview + .privacy-row--overview {
    min-height: 0;
  }
  .page-privacy-policy .privacy-row {
    column-gap: 70px;
  }
  .page-privacy-policy .privacy-major {
    padding-bottom: 42px;
  }
}
@media (max-width: 680px) {
  .page-privacy-policy .page-title--privacy-policy {
    padding: 75px 0 45px;
  }
  .page-privacy-policy .privacy-page {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .page-privacy-policy .privacy-intro {
    margin-bottom: 62px;
  }
  .page-privacy-policy .privacy-overview {
    margin-bottom: 65px;
  }
  .page-privacy-policy .privacy-row {
    grid-template-columns: 1fr;
    row-gap: 30px;
    padding: 28px 0 32px;
  }
  .page-privacy-policy .privacy-row--overview {
    padding-bottom: 32px;
  }
  .page-privacy-policy .privacy-row--overview + .privacy-row--overview {
    padding-top: 28px;
  }
  .page-privacy-policy .privacy-item h3 {
    font-size: 13px;
  }
  .page-privacy-policy .privacy-item p,
  .page-privacy-policy .privacy-collection__lead,
  .page-privacy-policy .privacy-types-lead,
  .page-privacy-policy .privacy-intro p {
    font-size: 12px;
  }
  .page-privacy-policy .privacy-major {
    padding-bottom: 32px;
    font-size: 18px;
  }
}
.conditions-page {
  padding: 15px 0 120px;
}
.conditions-intro {
  margin-bottom: 90px;
}
.conditions-intro h2 {
  font-size: 16px;
}
.conditions-intro p {
  max-width: 580px;
  font-size: 16px;
  font-weight: 300;
}
.conditions-intro ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 90px;
  max-width: 1250px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}
.conditions-intro li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  font-weight: 300;
}
.conditions-intro li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0d3454;
  font-size: 11px;
}
.conditions-article {
  margin: 0 0 200px;
}
.conditions-article > h2 {
  margin: 0 0 55px;
  padding-bottom: 45px;
  border-bottom: 1px solid #b6bdc2;
  color: #294f6c;
  font-size: 24px;
  font-weight: 300;
}
.conditions-columns {
  columns: 2;
  column-gap: 90px;
}
.conditions-columns h3,
.conditions-columns p {
  break-inside: avoid;
}
.conditions-columns h3 {
  margin: 30px 0 16px;
  font-size: 16px;
  font-weight: 700;
}
.conditions-columns p {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}
.page-charters .hero {
  min-height: 1040px;
}
.page-charters .hero__content {
  padding: 300px 0 160px;
}
.page-charters .hero__title {
  max-width: 900px;
  font-size: 84px;
  line-height: 1.02;
}
.page-charters .hero__script {
  font-size: 34px;
}
.page-charters .booking-shell {
  min-height: 505px;
  margin-top: -165px;
  background: linear-gradient(to bottom, transparent 165px, var(--surface) 165px);
}
.page-charters .booking-panel {
  min-height: 505px;
  padding: 52px 145px;
}
.page-charters .booking-panel__grid {
  grid-template-columns: 560px 260px 260px;
  justify-content: space-between;
}
.page-charters .booking-panel .input,
.page-charters .booking-panel .select {
  min-height: 31px;
  font-size: 12px;
}
.page-charters main > .section--surface {
  min-height: 920px;
  padding: 160px 0 120px;
}
.page-charters main > .section--surface .intro-grid {
  grid-template-columns: 560px 830px;
  align-items: start;
  gap: 50px;
}
.page-charters main > .section--surface .section-kicker {
  margin-bottom: 80px;
}
.page-charters main > .section--surface h2 {
  font-size: 46px;
}
.page-charters main > .section--surface .intro-grid__image {
  height: 560px;
  margin-top: 95px;
}
.page-charters main > .section:not(.section--surface):not(.section--blue) {
  min-height: 1580px;
  padding: 135px 0 120px;
}
.page-charters main > .section:not(.section--surface):not(.section--blue) .section-title {
  max-width: 1050px;
  font-size: 48px;
}
.page-charters .route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.page-charters .route-card__media {
  aspect-ratio: 1.5/1;
}
.page-charters .route-card__body {
  min-height: 390px;
}
.page-charters main > .section--blue {
  min-height: 600px;
  padding: 110px 0;
}
.page-charters .cta-banner {
  min-height: 720px;
}
.page-route-detail .hero--short {
  min-height: 1030px;
}
.page-route-detail .hero--short .hero__content {
  padding: 260px 0 155px;
}
.page-route-detail .hero--short .hero__title {
  font-size: 76px;
}
.page-route-detail main > .section:first-of-type {
  padding: 125px 0 120px;
}
.page-route-detail .schedule-layout {
  grid-template-columns: 590px 1fr;
  gap: 130px;
  padding-bottom: 80px;
}
.page-route-detail .schedule-form {
  gap: 20px;
}
.page-route-detail .schedule-form .select {
  min-height: 30px;
  font-size: 13px;
}
.page-route-detail .schedule-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}
.page-route-detail .schedule-form__actions .btn,
.page-route-detail .schedule-form__swap {
  min-height: 30px;
  padding: 4px 18px;
  border: 0;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1;
}
.page-route-detail .schedule-form__swap {
  width: 44px;
  padding-inline: 0;
  color: #fff;
  background: #d8dadd;
}
.page-route-detail .schedule-days {
  gap: 22px;
}
.page-route-detail .schedule-day {
  min-height: 140px;
  padding: 22px;
  text-align: left;
}
.page-route-detail .story-mosaic {
  grid-template-columns: 830px 1fr;
  gap: 120px;
  margin-top: 80px;
}
.page-route-detail .story-mosaic__image {
  height: 625px;
  min-height: 0;
}
.page-route-detail .story-mosaic__copy {
  display: block;
  padding-top: 55px;
}
.page-route-detail .story-mosaic__copy h2 {
  position: relative;
  z-index: 1;
  width: 760px;
  max-width: none;
  margin: 0 0 145px -220px;
  font-size: 48px;
  line-height: 1.12;
}
.page-route-detail .story-mosaic__copy > p {
  width: 410px;
  max-width: 100%;
}
.page-route-detail .story-mosaic__copy p,
.page-route-detail .story-mosaic__below p {
  font-size: 13px;
}
.page-route-detail .story-mosaic__below {
  max-width: 470px;
  margin-top: 36px;
}
.page-route-detail .story-mosaic__below p {
  margin-bottom: 24px;
}
.page-route-detail main > .section--compact {
  padding: 0;
}
.page-route-detail .image-strip {
  grid-template-columns: none;
  grid-auto-columns: min(63vw, 760px);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}
.page-route-detail .image-strip::-webkit-scrollbar {
  display: none;
}
.page-route-detail .image-strip img {
  height: 466px;
  aspect-ratio: auto;
  scroll-snap-align: start;
}
.page-route-detail .route-gallery__meta {
  position: relative;
  height: 113px;
  padding: 22px max(24px, calc((100% - var(--container)) / 2)) 0;
}
.page-route-detail .route-gallery__controls {
  display: flex;
  justify-content: space-between;
}
.page-route-detail .route-gallery__controls::after {
  position: absolute;
  top: 72px;
  right: max(24px, calc((100% - var(--container)) / 2));
  left: max(24px, calc((100% - var(--container)) / 2));
  height: 1px;
  background: var(--line);
  content: "";
}
.page-route-detail .route-gallery__controls button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid #c5c9cd;
  border-radius: 7px;
  color: #a0a6ac;
  background: #fff;
  font-size: 23px;
  line-height: 1;
}
.page-route-detail .route-gallery__controls button::before {
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}
.page-route-detail .route-gallery__controls [data-route-gallery-prev]::before {
  transform: rotate(-135deg);
}
.page-route-detail .route-gallery__controls [data-route-gallery-next]::before {
  transform: rotate(45deg);
}
.page-route-detail .route-gallery__controls button:hover {
  color: var(--navy);
  border-color: var(--navy);
}
.page-route-detail .route-gallery__controls button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.page-route-detail .route-gallery__social {
  position: relative;
  z-index: 1;
  gap: 20px;
  margin-top: 39px;
}
.page-route-detail .route-gallery__social a {
  width: 20px;
  height: 20px;
  color: #fff;
  background: #90969b;
}
.page-route-detail .route-gallery__social .social-icon {
  width: 11px;
  height: 11px;
}
.page-route-detail main > .section:last-of-type {
  padding: 116px 0 40px;
}
.page-route-detail main > .section:last-of-type .route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.page-route-detail main > .section:last-of-type .route-card {
  border: 0;
}
.page-route-detail main > .section:last-of-type .route-card__media {
  aspect-ratio: 1.5 / 1;
  border: 1px solid #999;
  border-bottom: 0;
}
.page-route-detail main > .section:last-of-type .route-card__name {
  font-size: 34px;
}
.page-route-detail main > .section:last-of-type .route-card__body {
  min-height: 303px !important;
  margin-bottom: 20px;
}
.page-route-detail main > .section:last-of-type .route-card > .btn {
  min-width: 110px;
  min-height: 27px;
  padding: 4px 14px;
  border-radius: 3px;
  font-size: 11px;
}
.page-island-guide .hero--plain {
  min-height: 330px;
}
.page-island-guide .hero--plain .hero__content {
  padding: 125px 0 70px;
}
.page-island-guide .hero--plain .hero__title {
  font-size: 48px;
}
.page-island-guide .guide-hero-image {
  height: 1030px;
  max-height: none;
  object-fit: cover;
}
.page-island-guide .section--navy {
  min-height: 1450px;
}
.page-island-guide .guide-intro {
  grid-template-columns: 560px 1fr;
  gap: 110px;
  padding: 80px 0 100px;
}
.page-island-guide .guide-intro__lead {
  font-size: 44px;
}
.page-island-guide .guide-intro__copy {
  column-gap: 70px;
}
.page-island-guide .guide-intro__copy p {
  font-size: 14px;
}
.page-island-guide .guide-mosaic {
  grid-template-columns: 780px 560px;
  padding-bottom: 150px;
}
.page-island-guide .guide-mosaic img:first-child {
  height: 560px;
  aspect-ratio: auto;
}
.page-island-guide .guide-mosaic img:last-child {
  width: 560px;
  height: 331px;
  margin-left: -160px;
  transform: translateY(150px);
}
.page-island-guide main > .section:not(.section--compact) {
  padding: 120px 0;
}
.page-island-guide .guide-overview {
  grid-template-columns: 660px 1fr;
  gap: 170px;
}
.page-island-guide .guide-overview .section-title {
  font-size: 45px;
}
.page-island-guide .guide-overview__copy {
  column-gap: 70px;
}
.page-island-guide .guide-overview__copy p {
  font-size: 13px;
}
.page-island-guide .guide-overview__gallery {
  margin-top: 100px;
}
.page-island-guide .guide-overview__gallery img {
  height: 580px;
}
.page-island-guide .section--compact {
  padding: 120px 0;
}
.page-island-guide .guide-detail {
  grid-template-columns: 210px 660px 440px;
  gap: 60px;
}
.page-island-guide .guide-side-nav {
  font-size: 13px;
}
.page-island-guide .guide-detail__copy h2 {
  font-size: 42px;
}
.page-island-guide .guide-detail__copy p {
  font-size: 13px;
}
.page-island-guide .guide-detail__images img {
  height: 310px;
  aspect-ratio: auto;
}
.page-island-guide .guide-cards {
  gap: 22px;
}
.page-island-guide .guide-card {
  min-height: 520px;
}
.page-island-guide .guide-card h3 {
  font-size: 38px;
}
.page-island-guide main > .section:last-of-type {
  padding-bottom: 420px;
}
@media (max-width: 1500px) {
  body:not(.page-home) {
    --page-gutter: 28px;
  }
  .page-international-guide .intl-hero p {
    right: 8vw;
  }
}
@media (max-width: 1100px) {
  .page-refund-policy .page-title--refund-policy {
    padding-top: 100px;
    padding-bottom: 65px;
  }
  .page-refund-policy .refund-policy-page {
    padding-bottom: 20px;
  }
  .page-refund-policy .refund-policy-page__grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 60px;
  }
  .page-refund-policy .refund-policy-item h2 {
    margin-bottom: 46px;
  }
  .page-refund-policy .refund-policy-item + .refund-policy-item {
    margin-top: 72px;
  }
  .page-refund-policy .refund-policy-page__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 590 / 465;
  }
  .page-title {
    padding: 100px 0 65px;
  }
  .page-title h1 {
    font-size: 38px;
  }
  .page-about .about-story__row,
  .page-about .about-mission,
  .page-fleet .fleet-intro,
  .page-fleet .fleet-aircraft,
  .page-fleet .fleet-coming,
  .danger-page__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .page-about .about-story__portrait,
  .page-fleet .fleet-intro img,
  .page-fleet .fleet-aircraft img {
    width: 100%;
  }
  .booking-promo__panel {
    grid-template-columns: 1fr;
  }
  .booking-promo__panel > img {
    width: 100%;
  }
  .page-booking .booking-panel__grid,
  .page-charters .booking-panel__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .destination-local-grid,
  .destination-charter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .destination-international-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-international-guide .intl-intro__top,
  .page-international-guide .getting-grid {
    grid-template-columns: 1fr;
  }
  .page-international-guide .intl-mosaic {
    grid-template-columns: 1fr;
  }
  .page-international-guide .intl-mosaic img:last-child {
    margin: 20px 0 0 auto;
    transform: none;
  }
  .page-island-guide .guide-detail {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  body:not(.page-home) {
    --page-gutter: 16px;
  }
  .site-header .brand img {
    width: 180px;
  }
  .page-title {
    padding: 75px 0 45px;
  }
  .page-title h1 {
    font-size: 30px;
  }
  .page-about .about-story__hero,
  .page-about .about-story__portrait,
  .page-about .about-mission img,
  .page-fleet .fleet-banner img,
  .page-fleet .fleet-intro img,
  .page-fleet .fleet-aircraft img {
    height: auto;
  }
  .page-booking .booking-panel--standalone,
  .page-charters .booking-panel {
    padding: 24px;
  }
  .page-booking .booking-panel__grid,
  .page-charters .booking-panel__grid,
  .baggage-policy-grid,
  .allowance-grid,
  .pet-grid,
  .breed-grid,
  .checkin-grid,
  .destination-local-grid,
  .destination-charter-grid,
  .destination-international-grid,
  .privacy-grid,
  .simple-policy__grid,
  .conditions-intro ol {
    grid-template-columns: 1fr;
  }
  .page-route-map .route-map-search {
    grid-template-columns: 1fr;
  }
  .page-route-map .route-map-art svg {
    height: auto;
  }
  .page-international-guide .intl-hero {
    height: 570px;
  }
  .page-international-guide .intl-cuisine,
  .page-international-guide .intl-cuisine__main,
  .page-international-guide .intl-cuisine__main img {
    width: 100%;
  }
  .page-international-guide .intl-cuisine__main p {
    position: static;
    width: auto;
    margin-top: 20px;
  }
  .page-international-guide .intl-cuisine__small {
    grid-template-columns: 1fr 1fr;
    margin: 20px 0 0;
  }
  .page-international-guide .intl-cuisine__small img {
    width: 100%;
  }
  .conditions-columns {
    columns: 1;
  }
}
@media (max-width: 680px) {
  .page-refund-policy .page-title--refund-policy {
    padding-top: 72px;
    padding-bottom: 52px;
  }
  .page-refund-policy .refund-policy-page {
    padding-bottom: 0;
  }
  .page-refund-policy .refund-policy-page__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .page-refund-policy .refund-policy-item h2 {
    margin-bottom: 34px;
    font-size: 18px;
  }
  .page-refund-policy .refund-policy-item + .refund-policy-item {
    margin-top: 56px;
  }
  .page-refund-policy .refund-policy-item p {
    padding-top: 18px;
    font-size: 14px;
    line-height: 1.4;
  }
  .page-refund-policy .refund-policy-page__image {
    order: 2;
  }
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  body:not(.page-home) {
    --page-gutter: 16px;
    font-size: 14px;
  }
  body:not(.page-home) .container,
  body:not(.page-home) .container--narrow {
    width: calc(100% - 32px);
    max-width: 100%;
  }
  .page-about .about-story {
    padding-bottom: 90px;
  }
  .page-about .about-story__row,
  .page-about .about-mission {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    margin-top: 60px;
  }
  .page-about .about-story__portrait,
  .page-about .about-story__copy,
  .page-about .about-mission img {
    width: 100%;
    max-width: 100%;
  }
  .page-about .journey-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    min-height: 480px;
    padding: 34px 24px 80px;
  }
  .page-about .about-cta {
    min-height: 560px;
  }
  .page-fleet .fleet-intro,
  .page-fleet .fleet-aircraft,
  .page-fleet .fleet-coming {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .page-fleet .fleet-intro img,
  .page-fleet .fleet-aircraft img,
  .page-fleet .fleet-coming__image,
  .page-fleet .fleet-coming__image img {
    width: 100%;
    max-width: 100%;
  }
  .page-fleet .fleet-coming > div:last-child {
    padding: 0;
  }
  .booking-promo__panel,
  .page-booking .booking-panel__grid,
  .page-charters .booking-panel__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .booking-promo__panel {
    min-height: 0;
    padding: 24px;
  }
  .booking-promo__panel > img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .booking-promo__copy {
    padding: 28px 0 0;
  }
  .booking-promo__copy h1,
  .booking-promo__copy h2 {
    margin-bottom: 28px;
    font-size: 40px;
  }
  .page-booking .booking-page-panel {
    margin-top: -170px;
  }
  .page-booking .booking-panel--standalone {
    min-height: 0;
    padding: 24px;
  }
  .page-route-map .route-map-search {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-map .route-map-art,
  .page-route-map .route-map-art svg {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-route-map .map-legend {
    width: 100%;
    margin: 20px 0 50px;
  }
  .page-baggage .baggage-policy-grid,
  .page-baggage .allowance-grid,
  .page-baggage .pet-grid,
  .page-baggage .breed-grid,
  .page-baggage .checkin-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-baggage .baggage-policy-grid article:nth-child(n) {
    padding-inline: 0;
  }
  .page-baggage .allowance-card {
    min-width: 0;
  }
  .page-baggage .allowance-table {
    font-size: 11px;
  }
  .page-contact .contact-hero {
    min-height: 0;
    padding: 150px 0 60px;
  }
  .page-contact .contact-hero__grid,
  .page-contact .contact-body,
  .page-contact .department-grid,
  .page-contact .contact-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .page-contact .contact-hero__copy > h1 {
    margin-bottom: 55px;
  }
  .page-contact .contact-hero__copy .eyebrow {
    margin-bottom: 35px;
  }
  .page-contact .contact-hero__copy h2 {
    font-size: 42px;
  }
  .page-contact .contact-hero__image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-contact .team-image {
    height: auto;
  }
  .page-destinations .destination-banner img,
  .page-charter-destinations .destination-banner img {
    height: 340px;
  }
  .page-destinations .destination-subhead,
  .page-charter-destinations .destination-subhead,
  .page-destinations .destination-local-grid,
  .page-charter-destinations .destination-local-grid,
  .page-destinations .destination-charter-grid,
  .page-charter-destinations .destination-charter-grid,
  .page-destinations .destination-international-grid,
  .page-charter-destinations .destination-international-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-destinations .destination-subhead .btn,
  .page-charter-destinations .destination-subhead .btn {
    justify-self: start;
  }
  .page-destinations .destination-local-grid .route-card:nth-child(5),
  .page-charter-destinations .destination-local-grid .route-card:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
  }
  .page-destinations .route-card__body .btn,
  .page-charter-destinations .route-card__body .btn {
    margin-left: 0;
    transform: none;
  }
  .page-destinations .route-card__body,
  .page-charter-destinations .route-card__body {
    min-height: 0;
  }
  .page-international-guide .intl-title {
    padding-top: 100px;
  }
  .page-international-guide .intl-hero {
    height: 560px;
  }
  .page-international-guide .intl-hero p {
    right: 24px;
    bottom: 50px;
    left: 24px;
    font-size: 34px;
  }
  .page-international-guide .intl-intro {
    min-height: 0;
  }
  .page-international-guide .intl-intro__top,
  .page-international-guide .intl-mosaic,
  .page-international-guide .getting-grid,
  .page-international-guide .intl-attractions,
  .page-international-guide .essential-service,
  .page-international-guide .intl-info {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-international-guide .intl-mosaic img:first-child,
  .page-international-guide .intl-mosaic img:last-child {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    transform: none;
  }
  .page-international-guide .getting-route {
    grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto;
    font-size: 18px;
  }
  .page-international-guide .schedule-summary {
    grid-template-columns: auto 1fr;
  }
  .page-international-guide .schedule-summary > * {
    min-width: 0;
  }
  .page-international-guide .intl-attractions img {
    height: 330px;
  }
  .page-international-guide .intl-cuisine,
  .page-international-guide .intl-cuisine__main,
  .page-international-guide .intl-cuisine__main img {
    width: 100%;
    max-width: 100%;
  }
  .page-international-guide .intl-cuisine__main img {
    height: 360px;
  }
  .page-international-guide .intl-cuisine__main p {
    position: static;
    width: auto;
    margin-top: 20px;
  }
  .page-international-guide .intl-cuisine__small {
    grid-template-columns: minmax(0, 1fr);
    margin: 20px 0 0;
  }
  .page-international-guide .intl-cuisine__small img {
    width: 100%;
    max-width: 100%;
  }
  .page-international-guide .intl-info {
    gap: 16px;
  }
  .page-charters .hero {
    min-height: 680px;
  }
  .page-charters .hero__content {
    padding: 190px 0 120px;
  }
  .page-charters .hero__title {
    font-size: 54px;
  }
  .page-charters .booking-shell {
    min-height: 0;
  }
  .page-charters .booking-panel {
    min-height: 0;
    padding: 24px;
  }
  .page-charters main > .section--surface .intro-grid,
  .page-charters .routes-head,
  .page-charters .route-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-charters main > .section--surface .intro-grid__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .page-route-detail .hero--short {
    min-height: 620px;
  }
  .page-route-detail .hero--short .hero__content {
    padding: 190px 0 90px;
  }
  .page-route-detail .hero--short .hero__title {
    font-size: 48px;
  }
  .page-route-detail .schedule-layout,
  .page-route-detail .schedule-days,
  .page-route-detail .story-mosaic,
  .page-route-detail main > .section:last-of-type .route-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-detail .story-mosaic {
    gap: 34px;
  }
  .page-route-detail .story-mosaic__image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .page-route-detail .image-strip {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-detail .image-strip img {
    width: 100%;
    height: auto;
  }
  .page-route-detail main > .section:last-of-type {
    padding-bottom: 120px;
  }
  .page-island-guide .guide-hero-image {
    height: 560px;
  }
  .page-island-guide .section--navy {
    min-height: 0;
  }
  .page-island-guide .guide-intro,
  .page-island-guide .guide-mosaic,
  .page-island-guide .guide-overview,
  .page-island-guide .guide-overview__gallery,
  .page-island-guide .guide-detail,
  .page-island-guide .guide-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-island-guide .guide-mosaic img:first-child,
  .page-island-guide .guide-mosaic img:last-child {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    transform: none;
  }
  .page-island-guide .guide-overview__gallery img,
  .page-island-guide .guide-detail__images img {
    width: 100%;
    height: auto;
  }
  .page-island-guide .guide-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-island-guide main > .section:last-of-type {
    padding-bottom: 120px;
  }
}
/* Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.stack {
  display: grid;
  gap: 20px;
}
.mt-0 {
  margin-top: 0;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-64 {
  margin-top: 64px;
}
.mb-0 {
  margin-bottom: 0;
}
.text-white,
.text-white h1,
.text-white h2,
.text-white h3 {
  color: #fff;
}
.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: 360px;
  padding: 14px 18px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 180ms ease,
        transform 180ms ease;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1100px) {
  .route-grid,
  .route-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .site-footer__top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-column--newsletter {
    grid-column: 1 / -1;
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .danger-icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    min-height: 560px;
  }
  .hero__content {
    padding: 150px 0 100px;
  }
  .booking-shell {
    margin-top: -64px;
  }
  .booking-panel__grid,
  .intro-grid,
  .routes-head,
  .testimonials-layout,
  .schedule-layout,
  .story-mosaic,
  .guide-intro,
  .guide-overview,
  .guide-detail,
  .timeline-row,
  .aircraft-row,
  .booking-feature,
  .route-map-layout,
  .contact-hero__grid,
  .contact-body,
  .cuisine-grid {
    grid-template-columns: 1fr;
  }
  .timeline-row:nth-child(even) .timeline-row__media,
  .aircraft-row:nth-child(even) .aircraft-row__image {
    order: initial;
  }
  .route-grid,
  .route-grid--three,
  .route-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .testimonial-card:nth-child(2) {
    min-height: 290px;
    transform: none;
  }
  .menu-panel__content {
    grid-template-columns: 1fr;
  }
  .menu-panel__graphic {
    display: none;
  }
  .guide-intro__copy,
  .guide-overview__copy,
  .policy-columns {
    columns: 1;
  }
  .guide-detail {
    gap: 32px;
  }
  .guide-side-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .destination-hero__grid {
    grid-template-columns: 1fr;
  }
  .destination-hero__image {
    min-height: 420px;
  }
  .destination-hero__copy {
    order: 2;
    padding: 60px 28px;
  }
  .stat-row,
  .fee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .container,
  .container--narrow {
    width: min(calc(100% - 28px), var(--container));
  }
  .site-header__actions {
    gap: 10px;
  }
  .site-header .btn {
    min-height: 36px;
    padding: 0.58rem 0.75rem;
    font-size: 0.72rem;
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    width: 172px;
  }
  .hero {
    min-height: 500px;
  }
  .hero__content {
    padding: 135px 0 72px;
  }
  .hero__title {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }
  .booking-panel {
    padding: 22px;
  }
  .form-grid,
  .route-grid,
  .route-grid--three,
  .route-grid--five,
  .schedule-days,
  .image-strip,
  .guide-cards,
  .guide-overview__gallery,
  .travel-grid,
  .attraction-grid,
  .policy-grid,
  .department-grid,
  .grid-2,
  .grid-3,
  .article-index,
  .info-strip {
    grid-template-columns: 1fr;
  }
  .guide-overview__gallery img {
    height: 280px;
  }
  .guide-detail__images {
    grid-template-columns: 1fr 1fr;
  }
  .guide-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .guide-mosaic {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .guide-mosaic img:last-child {
    width: 100%;
    margin: 0;
    transform: none;
  }
  .stat-row,
  .fee-grid,
  .site-footer__top,
  .contact-meta {
    grid-template-columns: 1fr;
  }
  .site-footer__bottom,
  .menu-panel__meta {
    flex-direction: column;
  }
  .cuisine-gallery {
    grid-template-columns: 1fr;
  }
  .cuisine-gallery img,
  .cuisine-gallery img:first-child {
    grid-row: auto;
    height: 280px;
  }
  .info-strip__item + .info-strip__item {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 0;
  }
  .danger-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Booking page uses the shared booking component without the homepage overlap. */
.booking-page-panel .booking-shell {
  margin-top: 0;
}
.page-home {
  --home-container: 1440px;
  --home-gutter: 32px;
  --font-sans: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-script: "Maldives", "Caveat", "Segoe Print", "Bradley Hand", cursive;
  color: #3f4e5b;
  font-family: var(--font-sans);
  font-size: 16px;
}
.page-home .container {
  width: min(calc(100% - (var(--home-gutter) * 2)), var(--home-container));
}
.page-home .site-header__inner {
  min-height: 112px;
}
.page-home .site-header .brand,
.page-home .menu-panel .brand {
  min-width: 0;
}
.page-home .site-header .brand img {
  width: 300px;
}
.page-home .site-header__actions {
  gap: 40px;
}
.page-home .site-header .btn {
  min-width: 130px;
  min-height: 40px;
  padding: 0.65rem 1rem;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 400;
}
.page-home .menu-toggle {
  width: 44px;
  height: 44px;
}
.page-home .menu-toggle__lines,
.page-home .menu-toggle__lines::before,
.page-home .menu-toggle__lines::after {
  width: 31px;
  height: 2px;
}
.page-home .hero--home {
  min-height: 1031px;
  background-position: center center;
}
.page-home .hero--home::before {
  background: linear-gradient(180deg, rgba(2, 23, 38, 0.04) 0%, rgba(3, 28, 45, 0.18) 42%, rgba(3, 26, 42, 0.68) 100%);
}
.page-home .hero--home .hero__content {
  align-self: end;
  padding: 250px 0 260px;
}
.page-home .hero--home .hero__title {
  max-width: 900px;
  margin: 0 0 38px;
  font-size: clamp(70px, 4.75vw, 92px);
  font-weight: 300;
  line-height: 0.99;
  letter-spacing: -0.025em;
}
.page-home .hero--home .hero__title span,
.page-home .hero--home .hero__title strong {
  display: block;
}
.page-home .hero--home .hero__title strong {
  margin-top: 17px;
  font-weight: 700;
}
.page-home .hero__meta {
  display: flex;
  align-items: flex-end;
  gap: 175px;
}
.page-home .hero--home .hero__script {
  min-width: 410px;
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.08;
}
.page-home .hero__controls {
  display: flex;
  gap: 12px;
  padding-bottom: 5px;
}
.page-home .hero__control {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 5px;
  color: #fff;
  background: transparent;
  font-size: 17px;
  line-height: 1;
  transition: background 160ms ease,
            color 160ms ease;
}
.page-home .hero__control:hover,
.page-home .hero__control:focus-visible {
  color: var(--navy);
  background: #fff;
}
.page-home .booking-shell--home {
  z-index: 5;
  min-height: 507px;
  margin-top: -171px;
  background: linear-gradient(to bottom, transparent 171px, var(--surface) 171px);
}
.page-home .booking-shell--home .booking-panel {
  min-height: 420px;
  padding: 48px 120px;
  padding-bottom: 0;
  border-radius: 4px;
  box-shadow: 0 7px 18px rgba(17, 42, 61, 0.15);
}
.page-home .booking-shell--home .booking-panel__grid {
  grid-template-columns: minmax(0, 560px) minmax(0, 260px) minmax(0, 260px);
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.page-home .booking-shell--home .booking-panel h2 {
  margin-bottom: 40px;
  color: #0E2F4F;
  font-size: 24px;
  font-weight: 300;
  position: relative;
}
.page-home .booking-shell--home iframe {
  display: block;
  width: 100%;
  border: 0;
}
.page-home .home-booking__column h2 {
  margin-bottom: 0;
}
.page-home .booking-shell--home .form-grid {
  gap: 20px 16px;
}
.page-home .booking-shell--home .input,
.page-home .booking-shell--home .select {
  min-height: 31px;
  padding: 5px 16px;
  border-color: #b7bec5;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.25;
}
.page-home .booking-shell--home .trip-tabs {
  gap: 18px;
  min-height: 30px;
  margin: 0;
}
.page-home .booking-shell--home .tab-button {
  min-height: 30px;
  padding: 5px 16px;
  border-color: #aeb6bd;
  border-radius: 0;
  font-size: 12px;
  font-weight: 400;
}
.page-home .booking-shell--home .tab-button.is-active {
  color: #fff;
  border-color: #92999f;
  background: #92999f;
}
.page-home .booking-shell--home .tab-button--link {
  font-size: 16px;
}
.page-home .booking-shell--home .tab-button--link,
.page-home .booking-shell--home .tab-button--link.is-active {
  padding-inline: 0;
  color: #1A8BF8;
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
}
.page-home .booking-shell--home .btn {
  min-height: 30px;
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
}
.page-home .home-booking__search .btn {
  justify-self: start;
}
.page-home .home-booking__column {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}
.page-home .home-booking__small-button {
  justify-self: start;
  min-width: 46px;
}
.page-home .home-booking__forgot {
  align-self: center;
  margin-top: -70px;
  margin-left: 72px;
  color: #1A8BF8;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  text-align: right;
}
.page-home .booking-shell--home .form-note {
  margin: 0;
  font-size: 11px;
}
.page-home .home-intro {
  min-height: 937px;
  padding: 160px 0 121px;
}
.page-home .home-intro .intro-grid {
  grid-template-columns: minmax(0, 560px) minmax(0, 832px);
  align-items: start;
  gap: 48px;
}
.page-home .home-intro .copy-block .section-kicker {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
}
.page-home .home-intro .copy-block h2 {
  margin-bottom: 40px;
  color: var(--navy);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.02;
}
.page-home .home-intro .copy-block p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.42;
}
.page-home .home-intro .copy-block .btn {
  margin-top: 7px;
  min-height: 40px;
  padding: 11px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
}
.page-home .home-intro .intro-grid__image {
  width: 100%;
  height: 556px;
  min-height: 0;
  margin-top: 98px;
  object-fit: cover;
  border-radius: 4px;
}
.page-home .home-routes {
  padding: 140px 0 117px;
}
.page-home .home-routes .section-kicker {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
}
.page-home .home-routes__intro {
  display: block;
  margin-bottom: 80px;
}
.page-home .home-routes__intro .section-title {
  max-width: 1110px;
  margin: 0;
  color: var(--navy);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
}
.page-home .home-routes__tabs {
  gap: 20px;
  margin-bottom: 48px;
}
.page-home .home-routes__tabs .tab-button {
  min-width: 86px;
  min-height: 30px;
  padding: 2px 16px;
  border-color: #91999f;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
}
.page-home .home-routes__tabs .tab-button.is-active {
  border-color: var(--blue);
  background: var(--blue);
}
.page-home .home-routes__subhead {
  grid-template-columns: 320px 440px;
  align-items: start;
  justify-content: start;
  gap: 42px;
  margin: 0 0 80px;
}
.page-home .home-routes__subhead h3 {
  margin: 0;
  color: #414042;
  font-size: 16px;
  font-weight: 600;
}
.page-home .home-routes__subhead .routes-head__description {
  max-width: 420px;
  color: #414042;
  font-size: 16px;
  line-height: 1.36;
  font-weight: 300;
}
.page-home .home-routes .route-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
}
.page-home .home-route-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.page-home .home-route-card:hover {
  box-shadow: none;
  transform: translateY(-3px);
}
.page-home .home-route-card .route-card__media {
  aspect-ratio: 1.49 / 1;
  border: 1px solid #999;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}
.page-home .home-route-card .route-card__media::after {
  height: 62%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 34, 55, 0.94) 100%);
}
.page-home .home-route-card .route-card__media img[alt="Grand Turk"] {
  object-position: center 30%;
}
.page-home .home-route-card .route-card__media img[alt="South Caicos"] {
  object-position: center 25%;
}
.page-home .home-route-card .route-card__media img[alt="Haiti"],
.page-home .home-route-card .route-card__media img[alt="Dominican Republic"] {
  object-position: center 35%;
}
.page-home .home-route-card .route-card__name {
  bottom: 18px;
  left: 22px;
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
}
.page-home .home-route-card .route-card__code {
  right: 18px;
  bottom: 17px;
  font-size: 16px;
}
.page-home .route-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  padding: 5px 16px;
  color: #354653;
  background: #fff;
  font-size: 12px;
  line-height: 1;
}
.page-home .home-route-card .route-card__body {
  height: 325px;
  padding: 24px 24px 22px;
  overflow: hidden;
  border: 1px solid #999;
  background: #fff;
}
.page-home .home-route-card .route-label {
  margin-bottom: 17px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D9D9D9;
  font-size: 16px;
  color: #414042;
}
.page-home .home-route-card .route-line {
  gap: 13px;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 300;
  color: #414042;
}
.page-home .home-route-card .route-line__plane {
  display: inline-flex;
  width: 29px;
  height: 25px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.page-home .home-route-card .route-line__plane img {
  display: block;
  width: 29px;
  height: 25px;
}
.page-home .home-route-card .route-card__duration {
  margin: -11px 0 14px;
  font-size: 12px;
}
.page-home .route-card__destination {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 1px solid #D9D9D9;
}
.page-home .home-route-card h3 {
  flex: 1;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  color: #414042;
}
.page-home .home-route-card p {
  margin: 0;
  color: #999;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.42;
}
.page-home .route-card__info {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin: 1px 0 0;
  place-items: center;
  border: 1px solid #99a4ad;
  border-radius: 50%;
  color: #788690;
  font-size: 11px;
  font-style: normal;
}
.page-home .route-card__action {
  align-self: flex-start;
  min-width: 112px;
  min-height: 30px;
  margin-top: 20px;
  padding: 5px 13px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
}
.page-home .btn--muted,
.page-home .btn--muted:hover,
.page-home .btn--muted:focus-visible {
  color: #fff;
  background: #D9D9D9;
  transform: none;
}
.page-home .home-routes [data-tab-panel="flights"] > .mt-48 {
  margin-top: 41px;
}
.page-home .home-routes .routes-head.mt-64 {
  margin-top: 120px;
  margin-bottom: 80px;
}
.page-home .home-testimonials {
  min-height: 597px;
  padding: 24px 0 70px;
  background: #8caedb;
}
.page-home .home-testimonials > .container > .eyebrow {
  margin-bottom: 84px;
  font-size: 24px;
  font-weight: 300;
  color: #0E2F4F;
  letter-spacing: 0;
}
.page-home .home-testimonials .testimonials-layout {
  grid-template-columns: minmax(0, 1000px) minmax(0, 340px);
  gap: 100px;
}
.page-home .home-testimonials .testimonial-stage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.page-home .home-testimonials .testimonial-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px 22px;
  box-shadow: 0 8px 20px rgba(30, 55, 76, 0.14);
  border-radius: 4px;
}
.page-home .home-testimonials .testimonial-card:nth-child(2) {
  min-height: 350px;
  transform: translateY(-13px) scale(1.03);
}
.page-home .home-testimonials .testimonial-card:nth-child(2) p {
  font-size: 16px;
}
.page-home .home-testimonials .testimonial-card:nth-child(2) strong {
  font-size: 32px;
}
.page-home .home-testimonials .testimonial-card p {
  margin: 0 0 30px;
  font-size: 12px;
  font-weight: 300;
  color: #414042;
  line-height: 1.45;
  text-align: center;
}
.page-home .home-testimonials .testimonial-card strong {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}
.page-home .home-testimonials .testimonials-layout > div:last-child > p {
  max-width: 335px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.42;
}
.page-home .home-testimonials .testimonial-controls {
  margin-top: 112px;
}
.page-home .home-testimonials .icon-button {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  font-size: 15px;
}
.page-home .home-cta {
  min-height: 838px;
  background-position: center center;
}
.page-home .home-cta::before {
  background: linear-gradient(180deg, rgba(4, 31, 49, 0.03) 25%, rgba(4, 34, 55, 0.88) 100%);
}
.page-home .home-cta .cta-banner__inner {
  padding: 0 0 80px;
}
.page-home .home-cta h2 {
  margin-bottom: 40px;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
}
.page-home .home-cta p {
  max-width: 470px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}
.page-home .home-cta .btn {
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
}
.page-home .home-footer {
  min-height: 609px;
  padding: 130px 0 42px;
}
.page-home .home-footer > .container > .brand img {
  width: 300px;
}
.page-home .home-footer .site-footer__top {
  grid-template-columns: 1.2fr 0.72fr 0.82fr 0.68fr;
  gap: 50px;
  margin-top: 30px;
  padding-top: 30px;
}
.page-home .home-footer .footer-column h3 {
  margin-bottom: 11px;
  font-size: 16px;
  font-weight: 700;
}
.page-home .home-footer .footer-column p,
.page-home .home-footer .footer-column a,
.page-home .home-footer .footer-column li {
  font-size: 16px;
  line-height: 1.55;
  font-weight: 300;
}
.page-home .home-footer .footer-column .mt-32 {
  margin-top: 19px;
}
.page-home .home-footer .footer-column--newsletter h3 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 400;
}
.page-home .home-footer .newsletter-form {
  gap: 20px;
  margin-top: 18px;
}
.page-home .home-footer .newsletter-form .input {
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 0;
  font-size: 16px;
}
.page-home .home-footer .newsletter-form .btn {
  justify-self: start;
  min-height: 29px;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 300;
}
.page-home .home-footer .site-footer__bottom {
  margin-top: 34px;
  font-size: 14px;
  color: #999;
}
@media (max-width: 1500px) {
  .page-home {
    --home-gutter: 28px;
  }
  .page-home .booking-shell--home .booking-panel {
    padding-inline: 70px;
  }
  .page-home .booking-shell--home .booking-panel__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
    gap: 30px;
  }
  .page-home .home-intro .intro-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
    gap: 70px;
  }
}
@media (max-width: 1100px) {
  .page-home .site-header .brand img {
    width: 224px;
  }
  .page-home .hero--home {
    min-height: 820px;
  }
  .page-home .hero--home .hero__content {
    padding-bottom: 180px;
  }
  .page-home .hero__meta {
    gap: 90px;
  }
  .page-home .booking-shell--home {
    min-height: auto;
    margin-top: -130px;
    background: linear-gradient(to bottom, transparent 130px, var(--surface) 130px);
  }
  .page-home .booking-shell--home .booking-panel {
    min-height: 0;
    padding: 42px;
  }
  .page-home .booking-shell--home .booking-panel__grid {
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(190px, 0.75fr));
    gap: 24px;
  }
  .page-home .home-intro {
    min-height: 0;
    padding: 140px 0;
  }
  .page-home .home-intro .intro-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 55px;
  }
  .page-home .home-intro .intro-grid__image {
    height: 480px;
  }
  .page-home .home-routes {
    min-height: 0;
    padding: 130px 0;
  }
  .page-home .home-route-card .route-card__name {
    font-size: 27px;
  }
  .page-home .home-testimonials {
    min-height: 0;
  }
  .page-home .home-testimonials .testimonials-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 50px;
  }
  .page-home .home-cta {
    min-height: 650px;
  }
  .page-home .home-footer {
    min-height: 0;
  }
}
@media (max-width: 900px) {
  .page-home .hero--home {
    min-height: 700px;
  }
  .page-home .hero--home .hero__content {
    padding: 180px 0 135px;
  }
  .page-home .hero--home .hero__title {
    font-size: clamp(52px, 8vw, 68px);
  }
  .page-home .hero__meta {
    align-items: center;
    gap: 45px;
  }
  .page-home .hero--home .hero__script {
    min-width: 0;
    font-size: 29px;
  }
  .page-home .booking-shell--home {
    margin-top: -88px;
    background: linear-gradient(to bottom, transparent 88px, var(--surface) 88px);
  }
  .page-home .booking-shell--home .booking-panel__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .page-home .home-booking__forgot {
    margin-top: -40px;
  }
  .page-home .home-intro .intro-grid {
    grid-template-columns: 1fr;
  }
  .page-home .home-intro .section-kicker {
    margin-bottom: 38px;
  }
  .page-home .home-intro .intro-grid__image {
    height: min(64vw, 560px);
  }
  .page-home .home-routes__intro .section-title {
    font-size: clamp(38px, 6vw, 48px);
  }
  .page-home .home-routes__subhead {
    grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
  }
  .page-home .home-routes .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 22px;
  }
  .page-home .home-route-card .route-card__body {
    height: auto;
    min-height: 305px;
    overflow: visible;
  }
  .page-home .home-routes .routes-head.mt-64 {
    margin-top: 130px;
  }
  .page-home .home-testimonials .testimonials-layout {
    grid-template-columns: 1fr;
  }
  .page-home .home-testimonials .testimonials-layout > div:last-child {
    max-width: 520px;
  }
  .page-home .home-testimonials .testimonial-controls {
    margin-top: 35px;
  }
  .page-home .home-footer .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .page-home {
    --home-gutter: 18px;
  }
  .page-home .site-header__inner {
    min-height: 78px;
  }
  .page-home .site-header .brand img {
    width: 175px;
  }
  .page-home .site-header .btn {
    min-width: auto;
  }
  .page-home .hero--home {
    min-height: 610px;
    background-position: 56% center;
  }
  .page-home .hero--home .hero__content {
    padding: 130px 0 105px;
  }
  .page-home .hero--home .hero__title {
    margin-bottom: 30px;
    font-size: clamp(43px, 13vw, 60px);
  }
  .page-home .hero--home .hero__title strong {
    margin-top: 10px;
  }
  .page-home .hero__meta {
    display: grid;
    gap: 25px;
  }
  .page-home .hero--home .hero__script {
    font-size: 26px;
  }
  .page-home .booking-shell--home .booking-panel {
    padding: 28px 20px;
  }
  .page-home .booking-shell--home .booking-panel h2 {
    margin-bottom: 18px;
  }
  .page-home .home-flight-form {
    grid-template-columns: 1fr;
  }
  .page-home .home-flight-form .form-field--full {
    grid-column: auto;
  }
  .page-home .booking-shell--home .trip-tabs {
    flex-wrap: wrap;
  }
  .page-home .home-intro {
    padding: 105px 0;
  }
  .page-home .home-intro .copy-block h2 {
    font-size: 39px;
  }
  .page-home .home-routes {
    padding: 105px 0;
  }
  .page-home .home-routes .section-kicker {
    margin-bottom: 42px;
  }
  .page-home .home-routes__intro {
    margin-bottom: 58px;
  }
  .page-home .home-routes__subhead {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 50px;
  }
  .page-home .home-routes .route-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .page-home .home-routes [data-tab-panel="flights"] > .mt-48 {
    margin-top: 54px;
  }
  .page-home .home-routes .routes-head.mt-64 {
    margin-top: 110px;
  }
  .page-home .home-route-card .route-card__name {
    font-size: 34px;
  }
  .page-home .home-testimonials {
    padding: 70px 0;
  }
  .page-home .home-testimonials .testimonial-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .page-home .home-testimonials .testimonial-card:nth-child(2) {
    transform: none;
  }
  .page-home .home-cta {
    min-height: 540px;
  }
  .page-home .home-cta .cta-banner__inner {
    padding-bottom: 75px;
  }
  .page-home .home-cta h2 {
    font-size: 48px;
  }
  .page-home .home-footer {
    padding-top: 76px;
  }
  .page-home .home-footer .site-footer__top {
    grid-template-columns: 1fr;
  }
  .page-home .home-footer .footer-column--newsletter {
    padding: 30px 0 0;
  }
}
/* Homepage mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  .page-home {
    --home-gutter: 24px;
  }
  .page-home .site-header__inner {
    min-height: 0;
    padding-top: 40px;
    align-items: center;
  }
  .page-home .site-header .brand img {
    width: 159px;
    height: 26px;
    object-fit: contain;
  }
  .page-home .site-header__actions {
    gap: 0;
  }
  .page-home .site-header .btn {
    display: none;
  }
  .page-home .menu-toggle {
    width: 40px;
    height: 18px;
  }
  .page-home .menu-toggle__lines,
  .page-home .menu-toggle__lines::before,
  .page-home .menu-toggle__lines::after {
    width: 40px;
  }
  .page-home .menu-toggle__lines::before {
    top: -8px;
  }
  .page-home .menu-toggle__lines::after {
    top: 8px;
  }
  .page-home .hero--home {
    min-height: 586px;
    background-position: center;
  }
  .page-home .hero--home .hero__content {
    align-self: start;
    padding: 300px 0 0;
    text-align: center;
  }
  .page-home .hero--home .hero__title {
    margin: 0 0 23px;
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: 0;
  }
  .page-home .hero--home .hero__title strong {
    margin-top: 0;
  }
  .page-home .hero__meta {
    display: grid;
    gap: 0;
    justify-items: center;
  }
  .page-home .hero--home .hero__script {
    min-width: 0;
    font-size: 18px;
    line-height: 19px;
  }
  .page-home .hero__controls {
    width: 100%;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0;
  }
  .page-home .hero__control {
    width: 32px;
    height: 32px;
  }
  .page-home .booking-shell--home {
    min-height: 1063px;
    margin-top: -50px;
    background: linear-gradient(to bottom, transparent 50px, var(--surface) 50px);
  }
  .page-home .booking-shell--home .booking-panel {
    min-height: 1063px;
    padding: 20px 16px;
    border-radius: 3px;
  }
  .page-home .booking-shell--home .booking-panel__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-home .booking-shell--home .booking-panel h2 {
    margin-bottom: 26px;
    font-size: 16px;
    line-height: 1.2;
  }
  .page-home .booking-shell--home .form-grid,
  .page-home .booking-shell--home .form-grid--single {
    gap: 12px;
  }
  .page-home .booking-shell--home .input,
  .page-home .booking-shell--home .select,
  .page-home .booking-shell--home .tab-button,
  .page-home .booking-shell--home .btn {
    min-height: 36px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 300;
  }
  .page-home .booking-shell--home .trip-tabs {
    display: grid;
    min-height: 0;
    gap: 12px;
  }
  .page-home .booking-shell--home .trip-tabs .tab-button {
    width: 100%;
    text-align: left;
  }
  .page-home .booking-shell--home .tab-button--link,
  .page-home .booking-shell--home .tab-button--link.is-active {
    min-height: 24px;
    margin-bottom: 11px;
    padding: 0;
    justify-content: flex-start;
    font-size: 12px;
  }
  .page-home .home-booking__search .btn,
  .page-home .home-booking__small-button {
    width: 100%;
    justify-content: center;
  }
  .page-home .home-booking__forgot {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
  }
  .page-home .home-intro {
    padding: 40px 0 64px;
    padding-bottom: 24px;
  }
  .page-home .home-intro .intro-grid {
    gap: 40px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-home .home-intro .copy-block .section-kicker {
    margin-bottom: 60px;
    font-size: 16px;
  }
  .page-home .home-intro .copy-block h2 {
    margin-bottom: 18px;
    font-size: 32px;
    line-height: 1.04;
  }
  .page-home .home-intro .copy-block p {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-home .home-intro .copy-block .btn {
    min-height: 36px;
    margin-top: 2px;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 300;
  }
  .page-home .home-intro .intro-grid__image {
    height: 363px;
    border-radius: 4px;
    margin-top: 0;
  }
  .page-home .home-routes {
    min-height: 0;
    padding: 40px 0 80px;
  }
  .page-home .home-routes .section-kicker {
    margin-bottom: 56px;
    font-size: 16px;
  }
  .page-home .home-routes__intro {
    margin-bottom: 48px;
  }
  .page-home .home-routes__intro .section-title {
    font-size: 32px;
    line-height: 1.05;
  }
  .page-home .home-routes__tabs {
    gap: 16px;
    margin-bottom: 52px;
  }
  .page-home .home-routes__tabs .tab-button {
    min-width: 80px;
    min-height: 36px;
    padding: 5px 14px;
    font-size: 12px;
    width: 50%;
  }
  .page-home .home-routes__subhead {
    gap: 12px;
    margin-bottom: 48px;
  }
  .page-home .home-routes__subhead h3,
  .page-home .home-routes__subhead .routes-head__description {
    font-size: 12px;
    line-height: 1.34;
  }
  .page-home .home-routes .route-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 244px;
    gap: 16px;
    margin-right: -24px;
    padding-inline: 24px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }
  .page-home .home-route-card {
    scroll-snap-align: start;
  }
  .page-home .home-route-card .route-card__body {
    height: 300px;
    padding: 16px;
  }
  .page-home .home-route-card .route-card__name {
    left: 16px;
    bottom: 12px;
    font-size: 32px;
  }
  .page-home .home-route-card .route-card__code {
    right: 14px;
    bottom: 13px;
    font-size: 12px;
  }
  .page-home .home-route-card .route-label,
  .page-home .home-route-card h3 {
    font-size: 12px;
  }
  .page-home .home-route-card .route-line {
    font-size: 16px;
  }
  .page-home .home-route-card .route-card__action {
    min-height: 36px;
    margin-top: 16px;
    font-size: 12px;
  }
  .page-home .home-routes [data-tab-panel="flights"] > .mt-48 {
    margin-top: 48px;
  }
  .page-home .home-routes .routes-head.mt-64 {
    margin-top: 80px;
    margin-bottom: 48px;
  }
  .page-home .home-testimonials {
    position: relative;
    min-height: 525px;
    padding: 32px 0 72px;
  }
  .page-home .home-testimonials > .container > .eyebrow {
    margin: 0 0 40px;
    font-size: 16px;
  }
  .page-home .home-testimonials .testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-home .home-testimonials .testimonials-layout > div:last-child {
    order: -1;
  }
  .page-home .home-testimonials .testimonials-layout > div:last-child > p {
    max-width: none;
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-home .home-testimonials .testimonial-stage {
    display: block;
    width: 100%;
    margin-top: 40px;
  }
  .page-home .home-testimonials .testimonial-card {
    display: none;
  }
  .page-home .home-testimonials .testimonial-card:nth-child(2) {
    display: flex;
    min-height: 230px;
    padding: 16px;
    transform: none;
  }
  .page-home .home-testimonials .testimonial-card:nth-child(2) p,
  .page-home .home-testimonials .testimonial-card p {
    font-size: 11px;
    line-height: 1.35;
  }
  .page-home .home-testimonials .testimonial-card:nth-child(2) strong,
  .page-home .home-testimonials .testimonial-card strong {
    font-size: 24px;
  }
  .page-home .home-testimonials .testimonial-controls {
    position: absolute;
    right: 24px;
    bottom: 40px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
  .page-home .home-testimonials .icon-button {
    width: 32px;
    height: 32px;
  }
  .page-home .home-cta {
    min-height: 586px;
  }
  .page-home .home-cta .cta-banner__inner {
    padding-bottom: 40px;
  }
  .page-home .home-cta h2 {
    margin-bottom: 16px;
    font-size: 32px;
  }
  .page-home .home-cta p {
    max-width: 272px;
    margin-bottom: 20px;
    font-size: 16px;
  }
  .page-home .home-cta .btn {
    min-height: 36px;
    padding: 5px 12px;
    font-size: 12px;
  }
}
/* Shared non-home header and refund-policy mobile layout. */
@media (max-width: 680px) {
  body.page-refund-policy {
    --page-gutter: 24px;
  }
  body:not(.page-home) .site-header__inner {
    min-height: 66px;
    padding-top: 40px;
    align-items: center;
  }
  body:not(.page-home) .site-header .brand img {
    width: 159px;
    height: 26px;
    object-fit: contain;
  }
  body:not(.page-home) .site-header__actions {
    gap: 0;
  }
  body:not(.page-home) .site-header .btn {
    display: none;
  }
  body:not(.page-home) .menu-toggle {
    width: 40px;
    height: 18px;
  }
  body:not(.page-home) .menu-toggle__lines,
  body:not(.page-home) .menu-toggle__lines::before,
  body:not(.page-home) .menu-toggle__lines::after {
    width: 40px;
  }
  body:not(.page-home) .menu-toggle__lines::before {
    top: -8px;
  }
  body:not(.page-home) .menu-toggle__lines::after {
    top: 8px;
  }
  .page-refund-policy .page-title--refund-policy {
    padding: 120px 0 40px;
  }
  .page-refund-policy .page-title--refund-policy h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-refund-policy .refund-policy-page {
    padding-bottom: 60px;
  }
  .page-refund-policy .refund-policy-page__grid {
    gap: 48px;
  }
  .page-refund-policy .refund-policy-item h2 {
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-refund-policy .refund-policy-item p {
    padding-top: 6px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-refund-policy .refund-policy-item + .refund-policy-item {
    margin-top: 48px;
  }
  .page-refund-policy .refund-policy-page__image img {
    width: 100%;
    height: 213px;
    aspect-ratio: auto;
    border-radius: 3px;
    object-fit: cover;
  }
}
/* Shared mobile footer for every page. */
@media (max-width: 680px) {
  .site-footer,
  .site-footer.home-footer {
    min-height: 0;
    padding: 60px 0 40px;
  }
  .site-footer > .container > .brand img,
  .site-footer.home-footer > .container > .brand img {
    width: 200px;
    height: 33px;
    object-fit: contain;
    object-position: left center;
  }
  .site-footer__col_separate,
  .site-footer.home-footer .site-footer__col_separate {
    display: block;
  }
  .site-footer__top,
  .site-footer.home-footer .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
  }
  .site-footer__top > .footer-column:first-child,
  .site-footer__top > .footer-column:last-child,
  .site-footer.home-footer .site-footer__top > .footer-column:first-child,
  .site-footer.home-footer .site-footer__top > .footer-column:last-child {
    grid-column: 1 / -1;
  }
  .site-footer .footer-column h3,
  .site-footer .footer-column p,
  .site-footer .footer-column a,
  .site-footer .footer-column li,
  .site-footer.home-footer .footer-column h3,
  .site-footer.home-footer .footer-column p,
  .site-footer.home-footer .footer-column a,
  .site-footer.home-footer .footer-column li {
    font-size: 12px;
    line-height: 1.35;
  }
  .site-footer .footer-column h3,
  .site-footer.home-footer .footer-column h3 {
    margin-bottom: 6px;
  }
  .site-footer .footer-column .mt-32,
  .site-footer.home-footer .footer-column .mt-32 {
    margin-top: 18px;
  }
  .site-footer .footer-column--newsletter,
  .site-footer.home-footer .footer-column--newsletter {
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
  }
  .site-footer .footer-column--newsletter h3,
  .site-footer.home-footer .footer-column--newsletter h3 {
    font-size: 24px;
  }
  .site-footer .newsletter-form,
  .site-footer.home-footer .newsletter-form {
    gap: 16px;
    margin-top: 18px;
  }
  .site-footer .newsletter-form .input,
  .site-footer .newsletter-form .btn,
  .site-footer.home-footer .newsletter-form .input,
  .site-footer.home-footer .newsletter-form .btn {
    min-height: 36px;
    font-size: 12px;
  }
  .site-footer__bottom,
  .site-footer.home-footer .site-footer__bottom {
    display: block;
    margin-top: 40px;
    font-size: 10px;
    line-height: 1.4;
  }
  .site-footer__bottom span,
  .site-footer.home-footer .site-footer__bottom span {
    display: block;
  }
}
/* Privacy-policy mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-privacy-policy {
    --page-gutter: 24px;
  }
  .page-privacy-policy .page-title--privacy-policy {
    padding: 120px 0 40px;
  }
  .page-privacy-policy .page-title--privacy-policy h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-privacy-policy .privacy-page {
    padding: 0 0 60px;
  }
  .page-privacy-policy .privacy-intro {
    max-width: none;
    margin-bottom: 40px;
  }
  .page-privacy-policy .privacy-intro h2,
  .page-privacy-policy .privacy-item h3 {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.34;
  }
  .page-privacy-policy .privacy-intro p,
  .page-privacy-policy .privacy-item p,
  .page-privacy-policy .privacy-collection__lead,
  .page-privacy-policy .privacy-types-lead {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-privacy-policy .privacy-intro p {
    margin-bottom: 16px;
  }
  .page-privacy-policy .privacy-overview {
    margin-bottom: 40px;
  }
  .page-privacy-policy .privacy-row,
  .page-privacy-policy .privacy-row--overview,
  .page-privacy-policy .privacy-row--overview + .privacy-row--overview,
  .page-privacy-policy .privacy-row--compact {
    min-height: 0;
    row-gap: 16px;
    padding: 16px 0;
  }
  .page-privacy-policy .privacy-row--overview + .privacy-row--overview {
    border-bottom: 1px solid #bcc3c8;
  }
  .page-privacy-policy .privacy-major {
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 1.2;
  }
  .page-privacy-policy .privacy-collection__lead {
    padding: 16px 0;
  }
  .page-privacy-policy .privacy-row--first {
    padding-bottom: 16px;
  }
  .page-privacy-policy .privacy-types-lead {
    padding: 16px 0;
  }
  .page-privacy-policy .privacy-row--last {
    padding-bottom: 0;
  }
}
/* Dangerous-goods mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-dangerous-goods {
    --page-gutter: 24px;
  }
  .page-dangerous-goods .page-title {
    padding: 120px 0 40px;
  }
  .page-dangerous-goods .page-title h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-dangerous-goods .danger-page {
    min-height: 0;
    padding: 0 0 60px;
  }
  .page-dangerous-goods .danger-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .page-dangerous-goods .danger-page p {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-dangerous-goods .danger-page__image {
    display: none;
  }
  .page-dangerous-goods .danger-page__icons {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 16px;
  }
  .page-dangerous-goods .danger-page__icons img {
    display: block;
    width: 56px;
    height: 56px;
  }
}
/* Conditions-of-carriage mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-conditions {
    --page-gutter: 24px;
  }
  .page-conditions .page-title {
    padding: 120px 0 40px;
  }
  .page-conditions .page-title h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-conditions .conditions-page {
    padding: 0 0 60px;
  }
  .page-conditions .conditions-intro {
    margin-bottom: 48px;
  }
  .page-conditions .conditions-intro h2 {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.34;
  }
  .page-conditions .conditions-intro p {
    max-width: none;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-conditions .conditions-intro ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: none;
    margin: 24px 0 0;
  }
  .page-conditions .conditions-intro li {
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-conditions .conditions-intro li span {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: -1px;
    font-size: 10px;
    line-height: 1;
  }
  .page-conditions .conditions-article {
    margin: 0 0 48px;
  }
  .page-conditions .conditions-article > h2 {
    margin: 0 0 24px;
    padding-bottom: 16px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-conditions .conditions-columns {
    columns: 1;
  }
  .page-conditions .conditions-columns h3 {
    margin: 24px 0 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.34;
  }
  .page-conditions .conditions-columns h3:first-child {
    margin-top: 0;
  }
  .page-conditions .conditions-columns p {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
}
/* About-page mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-about {
    --page-gutter: 24px;
  }
  .page-about .page-title {
    padding: 120px 0 40px;
  }
  .page-about .page-title h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-about .about-story {
    padding: 0 0 80px;
  }
  .page-about .about-story__hero {
    width: 100%;
    height: 363px;
    object-fit: cover;
    object-position: center;
  }
  .page-about .about-story__row {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
  .page-about .about-story__copy {
    order: -1;
    max-width: none;
    padding: 0;
  }
  .page-about .about-story__copy h2,
  .page-about .about-mission h2,
  .page-about .journey-panel h2,
  .page-about .about-cta h2 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1;
  }
  .page-about .about-story__copy p,
  .page-about .about-mission__copy p {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-about .about-story__copy p:last-child,
  .page-about .about-mission__copy p:last-child {
    margin-bottom: 0;
  }
  .page-about .about-story__portrait {
    order: 1;
    width: 100%;
    height: 250px;
    max-width: none;
    object-fit: cover;
    object-position: center top;
  }
  .page-about .about-mission {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
  }
  .page-about .about-mission__copy {
    padding: 0;
  }
  .page-about .about-mission__copy .section-kicker,
  .page-about .about-journey > .section-kicker {
    margin: 0 0 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-about .about-mission h2 {
    margin-bottom: 24px;
  }
  .page-about .about-mission img {
    width: 100%;
    height: 250px;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }
  .page-about .about-journey {
    margin-top: 80px;
  }
  .page-about .journey-tabs {
    height: 30px;
    overflow: hidden;
    font-size: 10px;
  }
  .page-about .journey-tabs button,
  .page-about .journey-tabs button.is-active {
    min-height: 30px;
    padding: 4px 6px;
    margin-right: -7px;
  }
  .page-about .journey-tabs button {
    flex: 1;
  }
  .page-about .journey-panel {
    display: flex;
    min-height: 225px;
    padding: 24px;
    flex-direction: column;
    gap: 24px;
  }
  .page-about .journey-panel h2 {
    margin: 0;
    font-size: 32px;
  }
  .page-about .journey-panel p {
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-about .journey-controls {
    right: 24px;
    bottom: 24px;
    left: 24px;
    justify-content: space-between;
    gap: 0;
  }
  .page-about .journey-controls button {
    width: 32px;
    height: 32px;
  }
  .page-about .about-cta {
    min-height: 586px;
    background-position: center;
  }
  .page-about .about-cta__inner {
    padding-bottom: 40px;
  }
  .page-about .about-cta h2 {
    margin-bottom: 16px;
    font-size: 32px;
    white-space: nowrap;
  }
  .page-about .about-cta__break {
    display: none;
  }
  .page-about .about-cta p {
    width: 272px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.2;
  }
  .page-about .about-cta .btn {
    min-height: 36px;
    padding: 5px 12px;
    font-size: 12px;
  }
}
/* Fleet mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-fleet {
    --page-gutter: 24px;
  }
  .page-fleet .page-title {
    padding: 120px 0 40px;
  }
  .page-fleet .page-title h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-fleet .fleet-page {
    padding: 0 0 80px;
  }
  .page-fleet .fleet-banner {
    width: 100%;
    height: 363px;
    overflow: hidden;
    border-radius: 4px;
    background: #8caedc;
  }
  .page-fleet .fleet-banner__image {
    display: none;
  }
  .page-fleet .fleet-banner img.fleet-banner__curves {
    position: absolute;
    z-index: 1;
    display: block;
    width: 743.132px;
    height: 712.596px;
    max-width: none;
    top: -224px;
    left: -262px;
  }
  .page-fleet .fleet-banner img.fleet-banner__aircraft {
    position: absolute;
    z-index: 2;
    display: block;
    width: 270px;
    height: 139px;
    max-width: none;
    top: 118px;
    left: 24px;
    object-fit: contain;
  }
  .page-fleet .fleet-banner figcaption.fleet-banner__mobile-caption {
    position: absolute;
    z-index: 3;
    display: block;
    left: 20px;
    bottom: 16px;
    margin: 0;
    color: #fff;
    font-family: var(--font-script);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
  }
  .page-fleet .fleet-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
  .page-fleet .fleet-intro p {
    order: -1;
    max-width: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-fleet .fleet-intro img {
    width: 100%;
    height: 250px;
    max-width: none;
    object-fit: cover;
    object-position: center;
  }
  .page-fleet .fleet-kicker {
    margin: 80px 0 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-fleet .fleet-list {
    gap: 40px;
  }
  .page-fleet .fleet-aircraft {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-fleet .fleet-aircraft > div {
    display: contents;
  }
  .page-fleet .fleet-aircraft h2,
  .page-fleet .fleet-coming h2 {
    order: -2;
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1;
  }
  .page-fleet .fleet-aircraft > img {
    order: -1;
    width: 100%;
    height: 250px;
    max-width: none;
    margin-bottom: 24px;
    object-fit: cover;
    object-position: center;
  }
  .page-fleet .fleet-aircraft p,
  .page-fleet .fleet-coming p {
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-fleet .fleet-aircraft p:last-child,
  .page-fleet .fleet-coming p:last-child {
    margin-bottom: 0;
  }
  .page-fleet .fleet-coming {
    display: flex;
    padding: 18px;
    flex-direction: column;
    gap: 0;
    border-color: #d9d9d9;
    border-radius: 4px;
  }
  .page-fleet .fleet-coming > div:last-child {
    display: contents;
  }
  .page-fleet .fleet-coming h2 {
    color: #999;
  }
  .page-fleet .fleet-coming__image {
    order: -1;
    width: 100%;
    height: 216px;
    margin-bottom: 24px;
  }
  .page-fleet .fleet-coming__image img {
    width: 100%;
    height: 216px;
    max-width: none;
    object-fit: cover;
  }
  .page-fleet .fleet-coming__image span {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 35px;
    font-size: 16px;
  }
}
/* WordPress-generated content and fallback templates. */
.cxe-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.cxe-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--paper);
}
.cxe-post-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
}
.cxe-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}
.cxe-post-card:hover .cxe-post-card__image img {
  transform: scale(1.035);
}
.cxe-post-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
.cxe-post-card h2 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}
.cxe-post-card .text-link {
  margin-top: auto;
}
.cxe-single-post__image {
  margin: 34px 0;
}
.cxe-single-post__image img {
  width: 100%;
  height: auto;
}
.cxe-single-post__content > * + * {
  margin-top: 1.25em;
}
.cxe-entry + .cxe-entry {
  margin-top: 54px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}
.comments-area {
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.comment-list {
  display: grid;
  gap: 24px;
  margin: 30px 0;
}
.comment-list .comment-body {
  padding: 24px;
  border: 1px solid var(--line);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}
.nav-links .page-numbers {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid var(--line);
}
.nav-links .current {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}
@media (max-width: 900px) {
  .cxe-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .cxe-post-grid {
    grid-template-columns: 1fr;
  }
}
.page-route-map .booking-promo__panel,
.page-booking .booking-promo__panel {
  position: relative;
  grid-template-columns: 760px minmax(0, 1fr);
  min-height: 500px;
  padding: 46px;
  overflow: hidden;
}
.page-route-map .booking-promo__panel > img,
.page-booking .booking-promo__panel > img {
  width: 760px;
  height: 470px;
  object-fit: cover;
}
.page-route-map .booking-promo__copy,
.page-booking .booking-promo__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 28px 42px 24px 55px;
}
.page-route-map .booking-promo__copy h1,
.page-booking .booking-promo__copy h1,
.page-route-map .booking-promo__copy h2,
.page-booking .booking-promo__copy h2 {
  width: 720px;
  max-width: calc(100% + 245px);
  margin: 0 0 62px -245px;
  font-size: 60px;
  line-height: 1.04;
  white-space: normal;
  font-weight: 400;
}
.page-route-map .booking-promo__copy p,
.page-booking .booking-promo__copy p {
  max-width: 420px;
  margin-left: 20%;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.42;
}
.page-route-map .booking-promo__copy .btn,
.page-booking .booking-promo__copy .btn {
  display: flex;
  width: max-content;
  margin: 22px 0 0 20%;
}
.page-route-map .page-title--route-map {
  padding: 145px 0 105px;
}
.page-route-map .route-map-page {
  padding: 0 0 72px;
}
.page-route-map .route-map-search {
  display: grid;
  grid-template-columns: 470px 50px 470px;
  gap: 20px;
  align-items: center;
}
.page-route-map .route-map-search .select {
  min-height: 34px;
  padding-block: 4px;
  color: #7a8289;
  border-color: #aeb5ba;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 300;
}
.page-route-map .route-swap {
  display: grid;
  width: 50px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #d7dade;
  font-size: 16px;
  line-height: 1;
}
.page-route-map .route-map-art {
  width: 1440px;
  max-width: 100%;
  margin: 80px auto 0;
}
.page-route-map .route-map-art img {
  width: calc(100% - 75px);
  height: auto;
  margin-left: auto;
}
.page-route-map .route-map-art .map-legend {
  position: absolute;
  left: 0;
  bottom: 75px;
  display: grid;
  gap: 8px;
  width: 230px;
  margin: 0;
  color: #5f7486;
  font-size: 13px;
  font-weight: 300;
}
.page-route-map .route-map-art .map-legend span::before {
  display: inline-block;
  width: 55px;
  height: 5px;
  margin-right: 18px;
  vertical-align: middle;
  background: #0d3454;
  content: "";
}
.page-route-map .route-map-art .map-legend span:nth-child(2)::before {
  background: #a5adb4;
}
.page-route-map .route-map-art .map-legend span:nth-child(3)::before {
  background: #e51f31;
}
.page-route-map .booking-promo--map {
  padding: 30px 0 55px;
}
.page-booking {
  --page-container: 1360px;
}
.page-booking .booking-page-hero {
  min-height: 600px;
}
.page-booking .booking-page-panel {
  margin-top: -280px;
}
.page-booking .booking-panel--standalone {
  min-height: 475px;
  padding: 48px 62px 42px;
  box-shadow: 0 8px 18px rgba(20, 40, 55, 0.16);
}
.page-booking .booking-panel__grid {
  grid-template-columns: 540px 260px 260px;
  justify-content: space-between;
  gap: 24px;
}
.page-booking .booking-panel h2 {
  margin-bottom: 28px;
  color: #2d526e;
  font-size: 22px;
  font-weight: 400;
}
.page-booking .booking-panel .form-grid {
  gap: 11px 18px;
}
.page-booking .booking-panel .input,
.page-booking .booking-panel .select {
  min-height: 31px;
  padding: 4px 10px;
  border-color: #b9bec3;
  font-size: 13px;
  font-weight: 300;
}
.page-booking .booking-search .form-field:not(.form-field--full) .input,
.page-booking .booking-search .form-field:not(.form-field--full) .select {
  padding-right: 38px;
  background-image: linear-gradient(to left, #d7dade 0 31px, transparent 31px);
  background-repeat: no-repeat;
}
.page-booking .booking-panel .trip-tabs {
  gap: 18px;
  margin: 0;
}
.page-booking .booking-panel .tab-button {
  min-height: 28px;
  padding: 4px 13px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 300;
}
.page-booking .booking-panel .tab-button.is-active {
  border-color: #a6a6a6;
  background: #a6a6a6;
}
.page-booking .booking-panel .tab-button--link {
  padding-inline: 0;
  color: #4ea3ca;
  border: 0;
  background: transparent;
  text-decoration: underline;
}
.page-booking .booking-panel .btn {
  min-height: 30px;
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 300;
}
.page-booking .booking-side {
  display: grid;
  align-content: start;
  gap: 0px;
}
.page-booking .booking-side > .btn {
  justify-self: start;
}
.page-booking .booking-side__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
.page-booking .booking-side__actions .text-link {
  color: #4ea3ca;
  font-size: 12px;
  font-weight: 300;
  text-decoration: underline;
}
.page-booking .booking-caption {
  max-width: 1030px;
  margin: 24px 0 0;
  color: #a0a7ad;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}
.page-booking .booking-promo {
  padding: 86px 0 55px;
}
.page-contact .contact-hero {
  position: relative;
  min-height: 1190px;
  padding: 260px 0 72px;
  overflow: hidden;
  background: #8eb2dc;
}
.page-contact .contact-hero::after {
  position: absolute;
  z-index: 0;
  width: 1120px;
  height: 1120px;
  left: 54%;
  top: 565px;
  border: 38px solid #0d3454;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.page-contact .contact-hero > .container {
  position: relative;
  z-index: 1;
}
.page-contact .contact-hero > .container > h1 {
  margin: 0 0 120px;
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
.page-contact .contact-hero__grid {
  grid-template-columns: minmax(0, 1fr) 620px;
  align-items: end;
  gap: 90px;
}
.page-contact .contact-hero__copy .eyebrow {
  margin-bottom: 78px;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0;
}
.page-contact .contact-hero__copy h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
}
.page-contact .contact-meta {
  grid-template-columns: 400px 250px;
  gap: 30px 55px;
  margin-top: 82px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}
.page-contact .contact-meta strong {
  font-weight: 700;
}
.page-contact .contact-meta a {
  color: #fff;
}
.page-contact .contact-social > strong {
  display: block;
  margin-bottom: 7px;
}
.page-contact .contact-meta .social-list {
  margin-top: 0;
}
.page-contact .contact-meta .social-list a {
  width: 24px;
  height: 24px;
  color: #8eb2dc;
  background: #fff;
  font-size: 9px;
}
.page-contact .contact-hero__image {
  z-index: 1;
  width: 470px;
  height: 335px;
  margin: 0 0 8px auto;
  border-radius: 3px;
  object-fit: cover;
}
.page-contact main > .section {
  padding: 118px 0 105px;
}
.page-contact .contact-body {
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 150px;
  padding-top: 0;
}
.page-contact .department-grid {
  gap: 52px 90px;
}
.page-contact .department-grid h3 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}
.page-contact .department-grid p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
}
.page-contact .contact-body .form-grid {
  gap: 14px;
}
.page-contact .contact-body .input,
.page-contact .contact-body .textarea {
  border-color: #b8bdc1;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 300;
}
.page-contact .contact-body .input {
  min-height: 34px;
}
.page-contact .contact-body .textarea {
  min-height: 160px;
}
.page-contact .contact-body .btn {
  justify-self: start;
  min-height: 30px;
  padding: 5px 14px;
  font-size: 12px;
}
.page-contact .team-image {
  width: 100%;
  height: 600px;
  margin-top: 120px;
  border-radius: 3px;
  object-fit: cover;
  object-position: center 38%;
}
.page-island-guide .guide-page-title {
  min-height: 395px;
}
.page-island-guide .guide-page-title .hero__content {
  padding: 125px 0 88px;
}
.page-island-guide .guide-page-title .hero__title {
  max-width: none;
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0;
}
.page-island-guide .guide-hero-visual {
  position: relative;
  margin: 0;
}
.page-island-guide .guide-hero-image {
  width: 100%;
  height: 1030px;
  max-height: none;
  object-fit: cover;
}
.page-island-guide .guide-hero-caption {
  position: absolute;
  right: max(12.5vw, calc((100vw - 1440px) / 2));
  bottom: 135px;
  width: 570px;
  color: #fff;
  font-family: var(--font-script);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.08;
}
.page-island-guide .guide-history {
  height: 1205px;
  min-height: 1205px;
}
.page-island-guide .guide-history > .container {
  position: relative;
  height: 100%;
}
.page-island-guide .guide-history .guide-intro {
  display: block;
  padding: 0;
}
.page-island-guide .guide-history .guide-intro__column {
  position: absolute;
  z-index: 1;
}
.page-island-guide .guide-history .guide-intro__column--short {
  top: 42px;
  left: 0;
  width: 560px;
}
.page-island-guide .guide-history .guide-intro__column--long {
  top: 255px;
  right: 0;
  width: 466px;
}
.page-island-guide .guide-history .guide-intro__column p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.22;
}
.page-island-guide .guide-history .guide-intro__column p:last-child {
  margin-bottom: 0;
}
.page-island-guide .guide-history .guide-mosaic {
  position: static;
  display: block;
  padding: 0;
}
.page-island-guide .guide-history .guide-mosaic img:first-child {
  position: absolute;
  top: 255px;
  left: 0;
  width: 832px;
  height: 553px;
  aspect-ratio: auto;
  object-fit: cover;
}
.page-island-guide .guide-history .guide-mosaic img:last-child {
  position: absolute;
  top: 753px;
  left: 608px;
  width: 589px;
  height: 331px;
  margin: 0;
  transform: none;
  aspect-ratio: auto;
  object-fit: cover;
}
.page-island-guide .guide-overview-section {
  padding: 120px 0 0;
}
.page-island-guide .guide-overview-section .guide-overview {
  grid-template-columns: 660px minmax(0, 1fr);
  gap: 310px;
}
.page-island-guide .guide-overview-section .guide-overview .section-title {
  margin: 0;
  color: #8eb2dc;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.18;
}
.page-island-guide .guide-overview-section .guide-overview__copy {
  columns: 1;
}
.page-island-guide .guide-overview-section .guide-overview__copy p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.22;
}
.page-island-guide .guide-overview-section .guide-overview__copy p + p {
  margin-top: 18px;
}
.page-island-guide .guide-overview-section .guide-overview__gallery {
  grid-template-columns: 2fr 1fr;
  margin-top: 120px;
}
.page-island-guide .guide-overview-section .guide-overview__gallery img {
  height: 640px;
}
.page-island-guide .guide-local-section {
  padding: 120px 0 135px;
}
.page-island-guide .guide-local-section > .container {
  position: relative;
}
.page-island-guide .guide-local-section .section-kicker,
.page-island-guide .guide-international-section .section-kicker {
  margin-bottom: 80px;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
.page-island-guide .guide-local-section .guide-detail {
  grid-template-columns: 190px 660px 467px;
  gap: 60px;
}
.page-island-guide .guide-local-section .guide-side-nav {
  gap: 7px;
  font-size: 16px;
  font-weight: 300;
}
.page-island-guide .guide-local-section .guide-detail__copy h2 {
  margin-bottom: 42px;
  color: #8eb2dc;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
}
.page-island-guide .guide-local-section .guide-detail__copy p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.22;
}
.page-island-guide .guide-local-section .guide-detail__copy,
.page-island-guide .guide-local-section .guide-detail__images {
  transition: opacity 180ms ease;
}
.page-island-guide .guide-local-section .guide-detail[aria-busy="true"] .guide-detail__copy,
.page-island-guide .guide-local-section .guide-detail[aria-busy="true"] .guide-detail__images {
  opacity: 0.42;
}
@media (prefers-reduced-motion: reduce) {
  .page-island-guide .guide-local-section .guide-detail__copy,
  .page-island-guide .guide-local-section .guide-detail__images {
    transition: none;
  }
}
.page-island-guide .guide-local-section .guide-detail__copy .guide-detail__promo {
  margin: 32px 0 0;
  font-style: italic;
}
.page-island-guide .guide-local-section .guide-detail__copy .guide-detail__contact {
  margin-top: 18px;
  font-size: 14px;
  font-style: italic;
}
.page-island-guide .guide-local-section .guide-detail__copy .guide-detail__contact a {
  color: #414042;
  text-decoration: underline;
}
.page-island-guide .guide-local-section .guide-detail__visuals {
  display: block;
}
.page-island-guide .guide-local-section .guide-detail__map {
  position: absolute;
  top: 0;
  right: 0;
  width: 243px;
  height: auto;
}
.page-island-guide .guide-local-section .guide-detail__images {
  gap: 42px;
  margin-top: 150px;
}
.page-island-guide .guide-local-section .guide-detail__images img {
  width: 100%;
  height: 350px;
  aspect-ratio: auto;
  object-fit: cover;
}
.page-island-guide .guide-local-section .guide-detail__images figcaption {
  font-size: 14px;
  color: #999;
  font-weight: 300;
}
.page-island-guide .guide-international-section {
  padding: 0;
}
.page-island-guide .guide-international-section .guide-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.page-island-guide .guide-international-section .guide-card {
  min-height: 0;
  aspect-ratio: 4 / 5;
}
.page-island-guide .guide-international-section .guide-card h3 {
  font-size: 43px;
}
@media (max-width: 1500px) {
  .page-route-map .booking-promo__panel,
  .page-booking .booking-promo__panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
  .page-route-map .booking-promo__panel > img,
  .page-booking .booking-promo__panel > img {
    width: 100%;
  }
  .page-booking .booking-panel__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.72fr) minmax(210px, 0.72fr);
  }
  .page-island-guide .guide-history .guide-intro {
    gap: clamp(110px, 18vw, 360px);
  }
  .page-island-guide .guide-overview-section .guide-overview {
    gap: clamp(120px, 16vw, 310px);
  }
}
@media (max-width: 1450px) {
  .page-island-guide .guide-history {
    height: auto;
    min-height: 0;
    padding: 70px 0 110px;
  }
  .page-island-guide .guide-history > .container {
    height: auto;
  }
  .page-island-guide .guide-history .guide-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    padding: 0 0 70px;
  }
  .page-island-guide .guide-history .guide-intro__column {
    position: static;
    width: auto;
  }
  .page-island-guide .guide-history .guide-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
    align-items: end;
  }
  .page-island-guide .guide-history .guide-mosaic img:first-child,
  .page-island-guide .guide-history .guide-mosaic img:last-child {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    transform: none;
  }
  .page-island-guide .guide-overview-section .guide-overview {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
    gap: 80px;
  }
  .page-island-guide .guide-local-section .guide-detail {
    grid-template-columns: 180px minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .page-route-map .booking-promo__panel,
  .page-booking .booking-promo__panel {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-map .booking-promo__panel > img,
  .page-booking .booking-promo__panel > img {
    width: 100%;
    height: auto;
  }
  .page-route-map .booking-promo__copy h1,
  .page-booking .booking-promo__copy h1,
  .page-route-map .booking-promo__copy h2,
  .page-booking .booking-promo__copy h2 {
    width: auto;
    max-width: none;
    margin-left: 0;
  }
  .page-route-map .route-map-search {
    grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr);
  }
  .page-booking .booking-panel--standalone {
    padding-inline: 40px;
  }
  .page-booking .booking-panel__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(190px, 0.75fr) minmax(190px, 0.75fr);
  }
  .page-contact .contact-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
  }
  .page-contact .contact-hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 470 / 335;
  }
  .page-contact .contact-body {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
    gap: 70px;
  }
  .page-island-guide .guide-hero-caption {
    right: 28px;
  }
  .page-island-guide .guide-intro,
  .page-island-guide .guide-overview {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
  }
  .page-island-guide .guide-mosaic {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  }
  .page-island-guide .guide-mosaic img:first-child,
  .page-island-guide .guide-mosaic img:last-child {
    width: 100%;
  }
  .page-island-guide .guide-detail {
    grid-template-columns: 170px minmax(0, 1fr);
  }
  .page-island-guide .guide-detail__visuals {
    grid-column: 2;
  }
  .page-island-guide .guide-detail__images {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-island-guide .guide-detail__images img {
    width: 100%;
    height: auto;
  }
  .page-island-guide .guide-history .guide-intro,
  .page-island-guide .guide-overview-section .guide-overview {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
  }
  .page-island-guide .guide-history .guide-mosaic {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  }
  .page-island-guide .guide-local-section .guide-detail {
    grid-template-columns: 170px minmax(0, 1fr);
  }
  .page-island-guide .guide-local-section .guide-detail__visuals {
    grid-column: 2;
  }
  .page-island-guide .guide-local-section .guide-detail__images {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-island-guide .guide-local-section .guide-detail__images img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 680px) {
  .page-route-map .booking-promo__panel,
  .page-booking .booking-promo__panel {
    padding: 24px;
  }
  .page-route-map .booking-promo__copy,
  .page-booking .booking-promo__copy {
    padding: 28px 0 0;
  }
  .page-route-map .booking-promo__copy h1,
  .page-booking .booking-promo__copy h1,
  .page-route-map .booking-promo__copy h2,
  .page-booking .booking-promo__copy h2 {
    margin-bottom: 28px;
    font-size: 40px;
  }
  .page-route-map .page-title--route-map {
    padding: 75px 0 55px;
  }
  .page-route-map .route-map-search {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-map .route-swap {
    justify-self: center;
    transform: rotate(90deg);
  }
  .page-route-map .route-map-art {
    margin-top: 50px;
    overflow-x: auto;
  }
  .page-route-map .route-map-art img {
    width: 760px;
    max-width: none;
    margin-left: 0;
  }
  .page-route-map .route-map-art .map-legend {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
  .page-booking .booking-page-panel {
    margin-top: -170px;
  }
  .page-booking .booking-panel--standalone {
    min-height: 0;
    padding: 24px;
  }
  .page-booking .booking-panel__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-contact .contact-hero {
    min-height: 0;
    padding: 150px 0 70px;
  }
  .page-contact .contact-hero::after {
    display: none;
  }
  .page-contact .contact-hero > .container > h1 {
    margin-bottom: 55px;
    font-size: 38px;
  }
  .page-contact .contact-hero__grid,
  .page-contact .contact-body,
  .page-contact .department-grid,
  .page-contact .contact-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }
  .page-contact .contact-hero__copy .eyebrow {
    margin-bottom: 35px;
  }
  .page-contact .contact-hero__copy h2 {
    font-size: 42px;
  }
  .page-contact .contact-hero__image,
  .page-contact .team-image {
    width: 100%;
    height: auto;
  }
  .page-contact main > .section {
    padding: 70px 0;
  }
  .page-contact .team-image {
    margin-top: 70px;
  }
  .page-island-guide .guide-page-title {
    min-height: 300px;
  }
  .page-island-guide .guide-page-title .hero__content {
    padding-bottom: 65px;
  }
  .page-island-guide .guide-page-title .hero__title {
    font-size: 34px;
  }
  .page-island-guide .guide-hero-image {
    height: 560px;
  }
  .page-island-guide .guide-hero-caption {
    right: 20px;
    bottom: 55px;
    width: min(78%, 390px);
    font-size: 34px;
  }
  .page-island-guide .guide-history {
    min-height: 0;
  }
  .page-island-guide .guide-intro,
  .page-island-guide .guide-mosaic,
  .page-island-guide .guide-overview,
  .page-island-guide .guide-overview__gallery,
  .page-island-guide .guide-detail,
  .page-island-guide .guide-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-island-guide .guide-mosaic img:first-child,
  .page-island-guide .guide-mosaic img:last-child {
    width: 100%;
    height: auto;
    margin: 0;
    transform: none;
  }
  .page-island-guide .guide-overview__gallery img,
  .page-island-guide .guide-detail__images img {
    width: 100%;
    height: auto;
  }
  .page-island-guide .guide-detail__visuals {
    grid-column: auto;
  }
  .page-island-guide .guide-detail__images {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-island-guide .guide-detail__map {
    justify-self: start;
  }
  .page-island-guide .guide-side-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-island-guide .guide-international-section {
    padding-bottom: 120px;
  }
  .page-island-guide .guide-history .guide-intro,
  .page-island-guide .guide-history .guide-mosaic,
  .page-island-guide .guide-overview-section .guide-overview,
  .page-island-guide .guide-overview-section .guide-overview__gallery,
  .page-island-guide .guide-local-section .guide-detail,
  .page-island-guide .guide-international-section .guide-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery img,
  .page-island-guide .guide-local-section .guide-detail__images img {
    width: 100%;
    height: auto;
  }
  .page-island-guide .guide-local-section .guide-detail__visuals {
    grid-column: auto;
  }
  .page-island-guide .guide-local-section .guide-detail__map {
    position: static;
    margin-bottom: 30px;
  }
  .page-island-guide .guide-local-section .guide-detail__images {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 30px;
  }
}
/* --------------------------------------------------------------------------
 * 10. Contact Form 7 and branded social icons
 * --------------------------------------------------------------------------
 * Social logos are local SVG masks, not font characters. Contact Form 7 owns
 * submission, validation, spam protection and mail delivery; these rules only
 * make its generated markup match the approved Contact page layout.
 */
.social-icon {
  display: block;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.social-icon--facebook {
  -webkit-mask-image: url("../icons/social/facebook.svg");
  mask-image: url("../icons/social/facebook.svg");
}
.social-icon--instagram {
  -webkit-mask-image: url("../icons/social/instagram.svg");
  mask-image: url("../icons/social/instagram.svg");
}
.social-icon--tiktok {
  -webkit-mask-image: url("../icons/social/tiktok.svg");
  mask-image: url("../icons/social/tiktok.svg");
}
.social-icon--youtube {
  -webkit-mask-image: url("../icons/social/youtube.svg");
  mask-image: url("../icons/social/youtube.svg");
}
.social-list a:hover,
.social-list a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.page-contact .contact-form-shell {
  min-width: 0;
}
.page-contact .contact-form-shell .wpcf7,
.page-contact .contact-form-shell .wpcf7-form {
  width: 100%;
}
.page-contact .contact-form-shell .wpcf7-form {
  display: grid;
  gap: 20px;
  margin: 0;
}
.page-contact .contact-form-shell .wpcf7-form > p,
.page-contact .contact-form-shell .cxe-contact-form__field,
.page-contact .contact-form-shell .cxe-contact-form__actions {
  margin: 0;
}
.page-contact .contact-form-shell .wpcf7-form-control-wrap {
  display: block;
}
.page-contact .contact-form-shell .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%;
  min-height: 30px;
  padding: 0px 12px;
  color: var(--text);
  background: #fff;
  border: 1px solid #b8bdc1;
  border-radius: 3px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
}
.page-contact .contact-form-shell textarea.wpcf7-form-control {
  min-height: 160px;
  resize: vertical;
}
.page-contact .contact-form-shell .wpcf7-submit {
  display: inline-flex;
  width: auto;
  min-height: 30px;
  padding: 5px 14px;
  justify-self: start;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #fff;
  background: var(--red);
  font-family: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.page-contact .contact-form-shell .wpcf7-submit:hover,
.page-contact .contact-form-shell .wpcf7-submit:focus-visible {
  background: #c91828;
}
.page-contact .contact-form-shell .wpcf7-not-valid {
  border-color: var(--red);
}
.page-contact .contact-form-shell .wpcf7-not-valid-tip {
  margin-top: 5px;
  color: var(--red);
  font-size: 12px;
}
.page-contact .contact-form-shell .wpcf7-response-output {
  margin: 6px 0 0;
  padding: 10px 12px;
  border-width: 1px;
  font-size: 12px;
}
.page-contact .contact-form-shell .wpcf7-spinner {
  margin: 0 0 0 10px;
  vertical-align: middle;
}
.contact-form-notice {
  padding: 18px;
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 13px;
}
/* --------------------------------------------------------------------------
 * 11. Route-detail responsive refinements
 * -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .page-route-detail .hero--short {
    min-height: 720px;
  }
  .page-route-detail main > .section:first-of-type {
    padding: 80px 0 90px;
  }
  .page-route-detail .schedule-layout,
  .page-route-detail .story-mosaic {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }
  .page-route-detail .story-mosaic__image {
    width: 100%;
    height: auto;
    aspect-ratio: 830 / 625;
  }
  .page-route-detail .story-mosaic__copy {
    padding-top: 0;
  }
  .page-route-detail .story-mosaic__copy h2 {
    width: auto;
    max-width: 760px;
    margin: 0 0 50px;
  }
  .page-route-detail .story-mosaic__copy > p {
    width: auto;
    max-width: 540px;
  }
  .page-route-detail .image-strip {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: min(82vw, 620px);
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
  }
  .page-route-detail .image-strip img {
    width: 100%;
    height: min(62vw, 466px);
    scroll-snap-align: start;
  }
  .page-route-detail main > .section:last-of-type .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .page-route-detail .hero--short {
    min-height: 560px;
  }
  .page-route-detail .hero--short .hero__content {
    padding: 150px 0 70px;
  }
  .page-route-detail .hero--short .hero__title {
    font-size: 40px;
  }
  .page-route-detail main > .section:first-of-type {
    padding: 64px 0 72px;
  }
  .page-route-detail main > .section:first-of-type .section-kicker {
    margin-bottom: 42px;
  }
  .page-route-detail .schedule-layout {
    gap: 50px;
    padding-bottom: 60px;
  }
  .page-route-detail .schedule-days {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-detail .story-mosaic {
    gap: 42px;
    margin-top: 60px;
  }
  .page-route-detail .story-mosaic__copy h2 {
    margin-bottom: 38px;
    font-size: 37px;
  }
  .page-route-detail .image-strip {
    grid-template-columns: none;
    grid-auto-columns: 88vw;
  }
  .page-route-detail .image-strip img {
    height: 66vw;
  }
  .page-route-detail .route-gallery__meta {
    height: 104px;
  }
  .page-route-detail main > .section:last-of-type {
    padding: 80px 0 90px;
  }
  .page-route-detail main > .section:last-of-type .section-kicker {
    margin-bottom: 48px;
  }
  .page-route-detail main > .section:last-of-type .route-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-route-detail main > .section:last-of-type .route-card__body {
    min-height: 0 !important;
  }
}
/* Flight-booking mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-booking {
    --page-gutter: 24px;
  }
  .page-booking .booking-page-hero {
    min-height: 586px;
    padding: 0;
    background: #0e2f4f;
  }
  .page-booking .booking-page-panel {
    margin-top: -400px;
  }
  .page-booking .booking-panel--standalone {
    min-height: 1063px;
    padding: 20px 16px;
    border-radius: 3px;
    box-shadow: 6px 5px 7px -4px rgba(0, 0, 0, 0.1);
  }
  .page-booking .booking-panel__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-booking .booking-panel h2 {
    margin-bottom: 26px;
    color: #0e2f4f;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-booking .booking-panel .form-grid,
  .page-booking .booking-panel .form-grid--single {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-booking .booking-panel .form-field--full {
    grid-column: auto;
  }
  .page-booking .booking-panel .input,
  .page-booking .booking-panel .select,
  .page-booking .booking-panel .tab-button,
  .page-booking .booking-panel .btn {
    min-height: 36px;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 300;
  }
  .page-booking .booking-panel .select {
    appearance: none;
    background-image: url("../icons/booking-chevron.svg");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 16px 8px;
  }
  .page-booking .booking-search .form-field:not(.form-field--full) .input,
  .page-booking .booking-search .form-field:not(.form-field--full) .select {
    padding-right: 46px;
    background-image: linear-gradient(to left, #d9d9d9 0 36px, transparent 36px);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .page-booking .booking-search .form-field:not(.form-field--full) .select {
    background-image: url("../icons/booking-chevron.svg"), linear-gradient(to left, #d9d9d9 0 36px, transparent 36px);
    background-position: right 10px center, right center;
    background-repeat: no-repeat;
    background-size: 16px 8px, 100% 100%;
  }
  .page-booking .booking-panel .trip-tabs {
    display: grid;
    min-height: 0;
    gap: 12px;
    margin: 0;
  }
  .page-booking .booking-panel .trip-tabs .tab-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .page-booking .booking-trip-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    display: none;
  }
  .page-booking .booking-trip-icon img {
    display: block;
    max-width: none;
  }
  .page-booking .booking-trip-icon--return img {
    width: 12px;
    height: 12px;
  }
  .page-booking .booking-trip-icon--one-way img {
    width: 12px;
    height: 7px;
  }
  .page-booking .booking-panel .tab-button--link,
  .page-booking .booking-panel .tab-button--link.is-active {
    min-height: 24px;
    margin-bottom: 11px;
    padding: 0;
    justify-content: flex-start;
    color: #1a8bf8;
    font-size: 12px;
  }
  .page-booking .booking-search .btn,
  .page-booking .booking-side__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .page-booking .booking-side {
    display: block;
  }
  .page-booking .booking-side__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .page-booking .booking-side__actions .text-link {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    text-align: left;
  }
  .page-booking .booking-caption {
    max-width: none;
    margin: 24px 0 0;
    color: #999;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-booking .booking-promo {
    padding: 80px 0;
  }
  .page-booking .booking-promo__panel {
    display: flex;
    min-height: 0;
    padding: 18px;
    flex-direction: column;
    overflow: visible;
    border-radius: 4px;
    background: #8caedc;
  }
  .page-booking .booking-promo__panel > img {
    width: 100%;
    height: 167px;
    max-width: none;
    border-radius: 4px;
    object-fit: cover;
    object-position: center;
  }
  .page-booking .booking-promo__copy {
    padding: 0;
  }
  .page-booking .booking-promo__copy h1 {
    width: 222px;
    max-width: none;
    margin: -50px 0 40px;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
  }
  .page-booking .booking-promo__copy p {
    max-width: none;
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-booking .booking-promo__copy .btn {
    min-height: 36px;
    margin: 24px 0 0;
    padding: 5px 12px;
    font-size: 12px;
  }
}
/* Baggage mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-baggage {
    --page-gutter: 24px;
  }
  .page-baggage .page-title {
    padding: 120px 0 80px;
  }
  .page-baggage .page-title h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-baggage .baggage-page {
    padding: 0 0 80px;
  }
  .page-baggage .baggage-section-title {
    margin: 80px 0 40px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-baggage .baggage-page > .baggage-section-title:first-child {
    margin-top: 0;
  }
  .page-baggage .baggage-policy-grid {
    grid-template-columns: 1fr;
  }
  .page-baggage .baggage-policy-grid article,
  .page-baggage .baggage-policy-grid article:nth-child(n) {
    min-height: 0;
    padding: 24px 0;
  }
  .page-baggage .baggage-policy-grid article:nth-child(odd) {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .page-baggage .baggage-policy-grid h3,
  .page-baggage .pet-grid h3 {
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.34;
  }
  .page-baggage .baggage-policy-grid p,
  .page-baggage .pet-grid p,
  .page-baggage .pet-grid li,
  .page-baggage .breed-grid p,
  .page-baggage .breed-grid li {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.34;
  }
  .page-baggage .baggage-thanks {
    margin: 24px 0 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-baggage .allowance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px 14px 80px;
  }
  .page-baggage .allowance-card {
    min-height: 0;
    border-color: #0e2f4f;
    border-radius: 4px;
  }
  .page-baggage .allowance-card h3 {
    min-height: 0;
    padding: 18px;
    border-radius: 3px 3px 0 0;
    font-size: 12px;
    line-height: 1.5;
  }
  .page-baggage .allowance-card > *:not(h3) {
    margin-inline: 18px;
    margin-top: 18px;
  }
  .page-baggage .allowance-table {
    width: calc(100% - 36px);
    font-size: 12px;
    line-height: 1.34;
  }
  .page-baggage .allowance-table th,
  .page-baggage .allowance-table td {
    padding: 0 4px 20px 0;
  }
  .page-baggage .allowance-table th {
    padding-bottom: 20px;
  }
  .page-baggage .allowance-card small {
    position: static;
    margin: 0 18px 18px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-baggage .pet-grid,
  .page-baggage .breed-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 80px;
  }
  .page-baggage .pet-grid p,
  .page-baggage .breed-grid p {
    margin: 0 0 24px;
  }
  .page-baggage .pet-grid p + p,
  .page-baggage .breed-grid li + li {
    margin-top: 16px;
  }
  .page-baggage .pet-grid ul,
  .page-baggage .breed-grid ul {
    padding-left: 18px;
  }
  .page-baggage .breed-grid {
    align-items: start;
  }
  .page-baggage .checkin-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-baggage .checkin-grid article {
    min-height: 0;
    padding: 24px;
  }
  .page-baggage .checkin-grid h3 {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1;
  }
  .page-baggage .checkin-grid p {
    font-size: 12px;
    line-height: 1.34;
  }
}
/* Contact mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-contact {
    --page-gutter: 24px;
  }
  .page-contact .contact-hero {
    min-height: 1058px;
    padding: 120px 0 40px;
    background: #8caedc;
  }
  .page-contact .contact-hero::after {
    display: block;
    width: 555px;
    height: 414px;
    top: 738px;
    left: -14px;
    border: 0;
    border-radius: 0;
    background: url("../images/contact-hero-curves.svg") center / 100% 100% no-repeat;
    transform: rotate(-31.82deg) skewX(0.84deg);
  }
  .page-contact .contact-hero > .container > h1 {
    margin: 0 0 80px;
    font-size: 20px;
    line-height: 1.2;
  }
  .page-contact .contact-hero__grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .page-contact .contact-hero__copy {
    width: 100%;
  }
  .page-contact .contact-hero__copy .eyebrow {
    margin: 0 0 40px;
    font-size: 16px;
    line-height: 1.2;
  }
  .page-contact .contact-hero__copy h2 {
    max-width: none;
    margin: 0;
    font-size: 32px;
    line-height: 1;
  }
  .page-contact .contact-meta {
    display: flex;
    width: 169px;
    margin-top: 40px;
    flex-direction: column;
    gap: 16px;
    color: #fff;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-contact .contact-meta p {
    margin: 0;
  }
  .page-contact .contact-meta p:nth-child(1) {
    order: 0;
  }
  .page-contact .contact-meta p:nth-child(3) {
    order: 1;
  }
  .page-contact .contact-meta p:nth-child(2) {
    order: 2;
  }
  .page-contact .contact-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    order: 3;
  }
  .page-contact .contact-social > strong {
    margin: 0;
  }
  .page-contact .contact-meta .social-list {
    display: flex;
    gap: 8px;
  }
  .page-contact .contact-meta .social-list a {
    flex: 0 0 24px;
  }
  .page-contact .contact-hero__image {
    width: 262px;
    height: 185px;
    margin: 0;
    border-radius: 4px;
    object-fit: cover;
    object-position: center 30%;
  }
  .page-contact main > .section {
    padding: 80px 0;
  }
  .page-contact .contact-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .page-contact .department-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-contact .department-grid h3 {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-contact .department-grid p {
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-contact .contact-form-shell .wpcf7-form {
    gap: 16px;
  }
  .page-contact .contact-form-shell .wpcf7-form-control:not(.wpcf7-submit) {
    min-height: 36px;
    padding: 5px 10px;
    font-size: 12px;
  }
  .page-contact .contact-form-shell textarea.wpcf7-form-control {
    min-height: 169px;
  }
  .page-contact .contact-form-shell .wpcf7-submit {
    min-height: 36px;
    padding: 5px 12px;
    font-size: 12px;
  }
  .page-contact .team-image {
    width: 100%;
    height: 149px;
    margin-top: 40px;
    border-radius: 4px;
    object-position: center;
  }
}
/* Island Guides mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-island-guide {
    --page-gutter: 24px;
  }
  .page-island-guide .guide-page-title {
    min-height: 120px;
  }
  .page-island-guide .guide-page-title .hero__content {
    padding: 16px 0 24px;
  }
  .page-island-guide .guide-page-title .hero__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }
  .page-island-guide .guide-hero-image {
    height: 191px;
    object-position: center 63%;
  }
  .page-island-guide .guide-hero-caption {
    right: auto;
    bottom: 24px;
    left: 24px;
    width: 212px;
    font-size: 24px;
    line-height: 1;
  }
  .page-island-guide .guide-history {
    min-height: 0;
    height: auto;
    padding: 24px 0 40px;
  }
  .page-island-guide .guide-history > .container {
    display: flex;
    height: auto;
    flex-direction: column;
  }
  .page-island-guide .guide-history .guide-intro {
    display: contents;
  }
  .page-island-guide .guide-history .guide-intro__column {
    position: static;
    width: 100%;
  }
  .page-island-guide .guide-history .guide-intro__column--short {
    order: 0;
  }
  .page-island-guide .guide-history .guide-mosaic {
    display: grid;
    width: 100%;
    margin: 24px 0;
    order: 1;
    gap: 16px;
  }
  .page-island-guide .guide-history .guide-intro__column--long {
    order: 2;
  }
  .page-island-guide .guide-history .guide-intro__column p {
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-island-guide .guide-history .guide-mosaic img:first-child,
  .page-island-guide .guide-history .guide-mosaic img:last-child {
    position: static;
    width: 100%;
    height: auto;
    margin: 0;
    transform: none;
    object-fit: cover;
  }
  .page-island-guide .guide-history .guide-mosaic img:first-child {
    height: 181px;
  }
  .page-island-guide .guide-history .guide-mosaic img:last-child {
    height: 153px;
  }
  .page-island-guide .guide-overview-section {
    padding: 40px 0 0 !important;
  }
  .page-island-guide .guide-overview-section .guide-overview {
    display: block;
  }
  .page-island-guide .guide-overview-section .guide-overview .section-title {
    margin: 0 0 40px;
    font-size: 32px;
    line-height: 1;
  }
  .page-island-guide .guide-overview-section .guide-overview__copy p {
    font-size: 12px;
    line-height: 1.34;
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery {
    display: flex;
    width: 100%;
    margin-top: 40px;
    overflow-x: auto;
    gap: 0;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery::-webkit-scrollbar {
    display: none;
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery img {
    flex: 0 0 100%;
    width: 100%;
    height: 426px;
    border-radius: 0;
    object-fit: cover;
    scroll-snap-align: start;
  }
  .page-island-guide .guide-overview-section .guide-overview__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery-controls {
    position: absolute;
    z-index: 2;
    top: 40px;
    right: 24px;
    bottom: 0;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery-controls button {
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 7px;
    color: #fff;
    background: rgba(14, 47, 79, 0.08);
    pointer-events: auto;
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery-controls button::before {
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
  }
  .page-island-guide .guide-overview-section [data-guide-overview-prev]::before {
    transform: rotate(-135deg);
  }
  .page-island-guide .guide-overview-section [data-guide-overview-next]::before {
    transform: rotate(45deg);
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery-controls button:hover {
    background: rgba(14, 47, 79, 0.28);
  }
  .page-island-guide .guide-overview-section .guide-overview__gallery-controls button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
  .page-island-guide .guide-local-section {
    padding: 40px 0 0;
  }
  .page-island-guide .guide-local-section .section-kicker,
  .page-island-guide .guide-international-section .section-kicker {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-island-guide .guide-local-section .section-kicker {
    font-size: 16px;
  }
  .page-island-guide .guide-local-section .guide-detail {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .page-island-guide .guide-local-section .guide-detail__visuals {
    display: contents;
  }
  .page-island-guide .guide-local-section .guide-detail__map {
    position: static;
    width: 128px;
    height: auto;
    margin: 0 0 24px;
    order: 1;
  }
  .page-island-guide .guide-local-section .guide-side-nav {
    display: flex;
    width: calc(100% + 24px);
    margin: 0 -24px 40px 0;
    padding: 0 24px 5px 0;
    overflow-x: auto;
    gap: 16px;
    order: 2;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .page-island-guide .guide-local-section .guide-side-nav button {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .page-island-guide .guide-local-section .guide-side-nav::-webkit-scrollbar {
    display: none;
  }
  .page-island-guide .guide-local-section .guide-detail__copy {
    order: 3;
  }
  .page-island-guide .guide-local-section .guide-detail__copy h2 {
    margin: 0 0 40px;
    font-size: 32px;
    line-height: 1;
  }
  .page-island-guide .guide-local-section .guide-detail__copy p {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-island-guide .guide-local-section .guide-detail__copy .guide-detail__promo {
    margin-top: 24px;
    font-size: 10px;
    line-height: 1.34;
  }
  .page-island-guide .guide-local-section .guide-detail__copy .guide-detail__contact {
    margin-top: 16px;
    font-size: 10px;
    line-height: 1.34;
  }
  .page-island-guide .guide-local-section .guide-detail__images {
    display: grid;
    margin-top: 40px;
    gap: 24px;
    order: 4;
  }
  .page-island-guide .guide-local-section .guide-detail__images img {
    width: 100%;
    height: 204px;
    border-radius: 3px;
    object-fit: cover;
  }
  .page-island-guide .guide-local-section .guide-detail__images figcaption {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.2;
  }
  .page-island-guide .guide-international-section {
    padding: 0 0 80px;
  }
  .page-island-guide .guide-international-section .guide-cards {
    display: flex;
    width: calc(100% + 24px);
    margin: 0 -24px 0 0;
    padding: 0 24px 4px 0;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
  }
  .page-island-guide .guide-international-section .guide-cards::-webkit-scrollbar {
    display: none;
  }
  .page-island-guide .guide-international-section .guide-card {
    width: 216px;
    min-width: 216px;
    height: 270px;
    min-height: 270px;
    border-radius: 3px;
  }
  .page-island-guide .guide-international-section .guide-card img {
    border-radius: 3px;
  }
  .page-island-guide .guide-international-section .guide-card__copy {
    padding: 16px;
  }
  .page-island-guide .guide-international-section .guide-card h3 {
    font-size: 24px;
    line-height: 1;
  }
}
/* Route detail mobile layout — calibrated against the 320px Grand Turk reference. */
@media (max-width: 680px) {
  body.page-route-detail {
    --page-gutter: 24px;
  }
  body.page-route-detail .container {
    width: calc(100% - 48px);
    max-width: 100%;
  }
  .page-route-detail .hero--short {
    min-height: 289px;
    background-position: center;
  }
  .page-route-detail .hero--short .hero__content {
    align-items: flex-end;
    padding: 108px 0 24px;
  }
  .page-route-detail .hero--short .hero__title {
    max-width: 220px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0;
  }
  .page-route-detail .section {
    padding-top: 40px !important;
    padding-bottom: 0 !important;
  }
  .page-route-detail .section-kicker {
    margin-bottom: 40px !important;
  }
  .page-route-detail main > .section:first-of-type {
    padding: 24px 0 80px;
  }
  .page-route-detail main > .section:first-of-type .section-kicker,
  .page-route-detail main > .section:last-of-type .section-kicker {
    margin: 0 0 24px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-route-detail .schedule-layout {
    display: block;
    padding: 0 0 40px;
    border-bottom: 1px solid var(--line);
  }
  .page-route-detail .schedule-form {
    display: grid;
    gap: 12px;
  }
  .page-route-detail .schedule-form .select,
  .page-route-detail .schedule-form > .btn,
  .page-route-detail .schedule-form__actions .btn,
  .page-route-detail .schedule-form__swap {
    min-height: 36px;
    font-size: 12px;
  }
  .page-route-detail .schedule-form > .btn {
    justify-self: end;
    min-width: 134px;
    padding: 6px 14px;
  }
  .page-route-detail .schedule-form__actions {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }
  .page-route-detail .schedule-form__swap {
    width: 36px;
    padding: 0;
  }
  .page-route-detail .schedule-days {
    display: flex;
    width: calc(100% + 24px);
    margin: 40px -24px 0 0;
    padding: 0 24px 4px 0;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
  }
  .page-route-detail .schedule-days::-webkit-scrollbar {
    display: none;
  }
  .page-route-detail .schedule-day {
    width: 128px;
    min-width: 128px;
    min-height: 118px;
    padding: 12px;
  }
  .page-route-detail .schedule-day time {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .page-route-detail .schedule-day p {
    font-size: 10px;
    line-height: 1.35;
  }
  .page-route-detail .story-mosaic {
    --route-story-title-overlap: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
  }
  .page-route-detail .story-mosaic > div:first-child {
    display: contents;
  }
  .page-route-detail .story-mosaic__image {
    order: 1;
    width: 100%;
    height: 204px;
    min-height: 0;
    border-radius: 3px;
    object-fit: cover;
  }
  .page-route-detail .story-mosaic__below {
    order: 3;
    max-width: none;
    margin-top: 16px;
  }
  .page-route-detail .story-mosaic__below p {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-route-detail .story-mosaic__copy > p {
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-route-detail .story-mosaic__copy {
    position: relative;
    z-index: 1;
    display: block;
    order: 2;
    margin-top: calc(var(--route-story-title-overlap) * -1);
    padding: 0;
  }
  .page-route-detail .story-mosaic__copy h2 {
    width: 100%;
    min-height: var(--route-story-title-overlap);
    max-width: 200px;
    margin: 0 0 32px;
    color: #0e2f4f;
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
  }
  .page-route-detail main > .section--compact {
    padding: 0 0 80px;
  }
  .page-route-detail .image-strip {
    display: grid;
    grid-template-columns: none;
    grid-auto-columns: calc(100% - 48px);
    width: calc(100% - 24px);
    margin-left: 24px;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .page-route-detail .image-strip::-webkit-scrollbar {
    display: none;
  }
  .page-route-detail .image-strip img {
    width: 100%;
    height: 204px;
    scroll-snap-align: start;
  }
  .page-route-detail .route-gallery__meta {
    height: auto;
    padding: 24px 24px 0;
  }
  .page-route-detail .route-gallery__controls button {
    width: 32px;
    height: 32px;
  }
  .page-route-detail main > .section:last-of-type {
    padding: 0 0 80px;
  }
  .page-route-detail main > .section:last-of-type .route-grid {
    display: flex;
    width: calc(100% + 24px);
    margin: 0 -24px 0 0;
    padding: 0 24px 4px 0;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
  }
  .page-route-detail main > .section:last-of-type .route-grid::-webkit-scrollbar {
    display: none;
  }
  .page-route-detail main > .section:last-of-type .route-card {
    width: 244px;
    min-width: 244px;
  }
  .page-route-detail main > .section:last-of-type .route-card__media {
    aspect-ratio: 1.5 / 1;
  }
  .page-route-detail main > .section:last-of-type .route-card__name {
    font-size: 28px;
  }
  .page-route-detail main > .section:last-of-type .route-card__body {
    min-height: 202px !important;
    margin-bottom: 16px;
    padding: 16px;
  }
}
/* Routes mobile layout — calibrated against the 320px Figma reference. */
@media (max-width: 680px) {
  body.page-destinations {
    --page-gutter: 24px;
  }
  .page-destinations .container {
    width: calc(100% - 48px);
  }
  .page-destinations .page-title--destination {
    padding: 120px 0 40px;
  }
  .page-destinations .page-title--destination h1 {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-destinations .destination-banner img {
    height: 204px;
    border-radius: 3px;
    object-fit: cover;
  }
  .page-destinations .destinations-page {
    padding: 40px 0 120px;
  }
  .page-destinations .destinations-page > .container > .section-kicker {
    margin: 0 0 60px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
  }
  .page-destinations .destinations-page > .container > h2 {
    margin: 0 0 40px;
    font-size: 32px;
    line-height: 1;
  }
  .page-destinations .destination-tabs {
    gap: 16px;
    margin: 0 0 48px;
  }
  .page-destinations .destination-tabs a {
    display: inline-flex;
    width: 50%;
    min-width: 128px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1;
  }
  .page-destinations .destination-subhead {
    display: block;
    margin: 0 0 48px;
  }
  .page-destinations .destination-subhead h3 {
    margin: 0 0 24px;
    font-size: 12px;
    line-height: 1.2;
  }
  .page-destinations .destination-subhead p {
    margin: 0;
    font-size: 12px;
    line-height: 1.34;
  }
  .page-destinations .destination-local-grid,
  .page-destinations .destination-international-grid {
    display: flex;
    width: calc(100% + 24px);
    margin: 0 -24px 0 0;
    padding: 0 24px 4px 0;
    overflow-x: auto;
    gap: 16px;
    scrollbar-width: none;
  }
  .page-destinations .destination-local-grid::-webkit-scrollbar,
  .page-destinations .destination-international-grid::-webkit-scrollbar {
    display: none;
  }
  .page-destinations .destination-local-grid .route-card,
  .page-destinations .destination-international-grid .route-card {
    width: 244px;
    min-width: 244px;
    scroll-snap-align: start;
  }
  .page-destinations .destination-local-grid .route-card:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
  }
  .page-destinations .route-card__media {
    aspect-ratio: 1.5 / 1;
  }
  .page-destinations .route-card__name {
    bottom: 12px;
    left: 16px;
    font-size: 24px;
    line-height: 1;
  }
  .page-destinations .route-card__code {
    right: 16px;
    bottom: 13px;
    font-size: 11px;
  }
  .page-destinations .route-card__body {
    min-height: 216px !important;
    margin-bottom: 16px;
    padding: 16px;
  }
  .page-destinations .route-label,
  .page-destinations .route-card h3 {
    font-size: 11px;
  }
  .page-destinations .route-label {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d9d9d9;
  }
  .page-destinations .route-line {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
  }
  .page-destinations .route-line__plane {
    font-size: 16px;
  }
  .page-destinations .route-card__duration {
    margin: -7px 0 12px;
    font-size: 10px;
  }
  .page-destinations .route-card h3 {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .page-destinations .route-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.35;
  }
  .page-destinations .route-card > .btn {
    min-height: 36px;
    margin: 0;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 12px;
    background: #d9d9d9;
    transform: none;
  }
  .page-destinations .destination-subhead--international {
    margin-top: 56px;
  }
}
/*# sourceMappingURL=style.css.map */