@font-face {
    font-family: "Manrope";
    src: url("/assets/fonts/manrope-latin-wght-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

.location-feedback { padding: 18px; margin: 0; font-size: 14px; color: var(--muted); }
.mega-menu-overview { display:block; margin-top:18px; padding-top:14px; border-top:1px solid var(--line); font-weight:750; text-underline-offset:4px; }

:root {
    color-scheme: light;
    --navy: #0b2b57;
    --navy-deep: #061f43;
    --navy-soft: #143b6d;
    --gold: #f8a900;
    --gold-dark: #ca7c00;
    --blue-pale: #f1f7fc;
    --sand: #f7f4ee;
    --paper: #ffffff;
    --ink: #0c2850;
    --muted: #4f6176;
    --line: #d7e0e9;
    --success: #147a53;
    --error: #a7352a;
    --shell: min(1240px, calc(100% - 48px));
    --radius: 12px;
    --shadow: 0 16px 42px rgba(11, 43, 87, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 82px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

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

[hidden] {
    display: none !important;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 12px;
    padding: 9px 14px;
    background: var(--paper);
    color: var(--navy);
    transform: translateY(-150%);
}

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

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

.utility-bar {
    min-height: 30px;
    background: var(--navy-deep);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.utility-inner {
    display: flex;
    min-height: 30px;
    align-items: center;
    gap: 22px;
}

.utility-inner a {
    text-decoration: none;
}

.utility-spacer {
    flex: 1;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: 68px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    color: var(--navy);
}

.header-inner {
    display: flex;
    min-height: 68px;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    width: 220px;
    flex: 0 0 220px;
    align-items: center;
}

.brand-logo {
    display: block;
    width: 220px;
    height: auto;
}

.primary-navigation {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.primary-navigation a,
.booking-link {
    color: var(--navy);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.primary-navigation a:hover,
.booking-link:hover {
    color: var(--gold-dark);
}

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

.menu-toggle {
    display: none;
    min-height: 44px;
    align-items: center;
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 750;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
}

.menu-toggle-lines {
    position: relative;
    margin-right: 8px;
}

.menu-toggle-lines::before {
    position: absolute;
    top: -6px;
}

.menu-toggle-lines::after {
    position: absolute;
    top: 6px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-small {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 12px;
}

.button-navy {
    background: var(--navy);
    color: #fff;
}

.button-navy:hover {
    background: var(--navy-soft);
}

.button-gold {
    background: var(--gold);
    color: var(--navy-deep);
}

.button-gold:hover {
    background: #ffb91f;
}

.button-outline {
    border-color: var(--navy);
    background: transparent;
    color: var(--navy);
}

.button-outline:hover {
    background: var(--navy);
    color: #fff;
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.75);
    color: #fff;
}

.button-outline-light:hover {
    background: #fff;
    color: var(--navy);
}

.button-wide {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.text-link:hover {
    color: var(--gold-dark);
}

h1,
h2,
h3,
p {
    overflow-wrap: break-word;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.08;
}

h1 {
    max-width: 600px;
    margin-bottom: 12px;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 780;
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--blue-pale);
}

.hero-grid {
    position: relative;
    display: grid;
    min-height: 660px;
    grid-template-columns: minmax(500px, 0.92fr) minmax(520px, 1.08fr);
    align-items: stretch;
}

.hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 34px 42px 46px 6px;
}

.hero-lead {
    max-width: 540px;
    margin: 0 0 7px;
    color: var(--navy);
    font-size: clamp(17px, 1.7vw, 21px);
    font-weight: 700;
    line-height: 1.35;
}

.hero-note {
    max-width: 540px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 13px;
}

.hero-media {
    min-width: 0;
    margin: 0 calc((100vw - min(1240px, calc(100vw - 48px))) / -2) 0 0;
    overflow: hidden;
    background: #dfe8ef;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 660px;
    object-fit: cover;
    object-position: 58% center;
}

.route-line {
    display: block;
    border-color: var(--gold);
}

.route-line-hero {
    position: absolute;
    z-index: 3;
    right: 2.5%;
    bottom: 14px;
    left: -2px;
    height: 54px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 26px 0;
    pointer-events: none;
}

.route-line-hero::before,
.route-line-hero::after,
.route-line-routes::before,
.route-line-routes::after,
.coverage-line::before,
.coverage-line::after {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    background: var(--paper);
    content: "";
}

.route-line-hero::before {
    bottom: -8px;
    left: -1px;
}

.route-line-hero::after {
    right: -8px;
    bottom: -8px;
}

.quote-card {
    width: min(560px, 100%);
    padding: 14px;
    border: 2px solid var(--gold);
    border-radius: 14px 14px 0 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.form-errors {
    margin-bottom: 10px;
    padding: 9px 12px;
    border-left: 4px solid var(--error);
    background: #fff1ef;
    color: #74261f;
    font-size: 11px;
}

.form-errors ul {
    margin: 4px 0 0;
    padding-left: 18px;
}

.trip-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 8px;
    padding: 0;
    border: 0;
}

.radio-pill {
    position: relative;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
}

.radio-pill span {
    display: grid;
    min-height: 48px;
    place-content: center;
    padding: 6px 8px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    text-align: center;
}

.radio-pill:first-of-type span {
    border-radius: 6px 0 0 6px;
}

.radio-pill:last-of-type span {
    border-radius: 0 6px 6px 0;
}

.radio-pill + .radio-pill span {
    border-left: 0;
}

.radio-pill b {
    font-size: 11px;
}

.radio-pill small {
    display: block;
    color: var(--muted);
    font-size: 8px;
    font-weight: 650;
}

.radio-pill input:checked + span {
    border-color: var(--navy);
    background: var(--navy);
    color: #fff;
}

.radio-pill input:checked + span small {
    color: rgba(255, 255, 255, 0.75);
}

.radio-pill input:focus-visible + span {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.quote-route-grid,
.quote-date-grid,
.quote-utility-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.quote-field {
    display: grid;
    min-width: 0;
    gap: 3px;
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-top: 0;
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
}

.quote-route-grid .quote-field + .quote-field,
.quote-date-grid .quote-field + .quote-field,
.quote-utility-grid .quote-field + .quote-field,
.traveler-grid .quote-field + .quote-field {
    border-left: 0;
}

.quote-field > span {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
}

.quote-field > span small {
    color: var(--muted);
    font-size: 7px;
    font-weight: 650;
}

.quote-field input,
.quote-field select,
.rate-mobile-control select {
    width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 4px 6px;
    border: 0;
    border-radius: 4px;
    background: #f8fafc;
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
}

.quote-field input:hover,
.quote-field select:hover {
    background: #f1f5f9;
}

.quote-submit {
    min-height: 44px;
    margin-top: 10px;
}

.form-note {
    margin: 7px 2px 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
}

.facts-band {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

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

.fact {
    display: grid;
    min-height: 104px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
}

.fact:first-child {
    padding-left: 0;
}

.fact:last-child {
    padding-right: 0;
    border-right: 0;
}

.round-mark {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.round-mark svg,
.steps-grid li > span svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.fact h2 {
    margin-bottom: 4px;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.fact p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.section {
    padding-block: clamp(58px, 7vw, 88px);
}

.section-heading {
    margin-bottom: 30px;
}

.compact-heading {
    max-width: 770px;
}

.section-heading > p:not(.eyebrow):not(.eyebrow-tight),
.services-intro > p,
.media-copy > p,
.guide-copy > p,
.partner-copy > p,
.coverage-panel p {
    color: var(--muted);
}

.eyebrow,
.eyebrow-tight,
.eyebrow-light {
    margin: 0 0 8px;
    color: var(--navy-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
    gap: 60px;
}

.split-heading > p {
    margin: 0 0 5px;
}

.section-routes {
    background: var(--paper);
}

.route-shell {
    position: relative;
}

.route-cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid var(--line);
    background: #fff;
}

.route-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    align-items: center;
    padding: 20px 12px 12px;
    border-right: 1px solid var(--line);
    color: var(--navy);
    text-align: center;
    text-decoration: none;
}

.route-card:last-child {
    border-right: 0;
}

.route-card:hover {
    background: var(--blue-pale);
}

.route-card-number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 10px;
    border: 1px solid var(--navy);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.route-card strong {
    font-size: 13px;
}

.route-card small {
    min-height: 34px;
    margin-top: 3px;
    color: var(--muted);
    font-size: 9px;
}

.route-card b {
    margin-top: 6px;
    color: var(--navy-soft);
    font-size: 9px;
}

.route-card-cta {
    width: 100%;
    margin-top: auto;
    padding: 7px 6px;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.route-line-routes {
    position: absolute;
    right: 0;
    bottom: -32px;
    left: 0;
    height: 26px;
    border-top: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    border-radius: 0 18px 0 0;
}

.route-line-routes::before {
    top: -8px;
    left: -1px;
}

.route-line-routes::after {
    top: -8px;
    right: -8px;
}

.source-note,
.category-note,
.ai-disclosure {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.section-rates {
    background: var(--blue-pale);
}

.rate-mobile-control {
    display: none;
}

.table-scroll {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--line);
    background: #fff;
}

.rates-table {
    width: 100%;
    min-width: 1090px;
    border-collapse: collapse;
    font-size: 10px;
}

.rates-table th,
.rates-table td {
    padding: 10px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
    vertical-align: middle;
}

.rates-table th:last-child,
.rates-table td:last-child {
    border-right: 0;
}

.rates-table tbody tr:last-child > * {
    border-bottom: 0;
}

.rates-table thead {
    background: var(--navy);
    color: #fff;
}

.rates-table thead tr:last-child {
    background: var(--navy-soft);
}

.rates-table thead small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-weight: 500;
}

.rates-table tbody th {
    position: sticky;
    z-index: 1;
    left: 0;
    width: 180px;
    background: #fbfcfd;
    color: var(--navy);
    text-align: left;
}

.rates-table td a {
    display: block;
    min-height: 38px;
    padding: 3px;
    color: var(--navy);
    text-decoration: none;
}

.rates-table td a:hover strong {
    color: var(--gold-dark);
}

.rates-table td strong,
.rates-table td span {
    display: block;
}

.rates-table td strong {
    font-size: 12px;
}

.rates-table td span {
    color: var(--muted);
    font-size: 8px;
}

.section-services {
    background: #fff;
}

.services-shell {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
}

.services-intro {
    padding-top: 8px;
}

.services-intro h2 {
    font-size: 28px;
}

.services-intro p:not(.eyebrow) {
    font-size: 12px;
}

.services-layout {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
}

.service-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.service-card-featured {
    border: 2px solid var(--navy);
    box-shadow: 0 10px 26px rgba(11, 43, 87, 0.11);
}

.service-card-featured h3::after {
    display: block;
    width: 50px;
    height: 3px;
    margin-top: 8px;
    background: var(--gold);
    content: "";
}

.service-card h3 {
    min-height: 28px;
    margin-bottom: 6px;
    text-align: center;
}

.service-vehicle {
    display: grid;
    min-height: 128px;
    place-items: center;
    overflow: hidden;
}

.service-vehicle img {
    width: 100%;
    height: 126px;
    object-fit: contain;
}

.service-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-block: 8px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-specs span {
    padding: 8px 4px;
    text-align: center;
}

.service-specs span + span {
    border-left: 1px solid var(--line);
}

.service-specs small,
.service-specs strong {
    display: block;
}

.service-specs small {
    color: var(--muted);
    font-size: 8px;
}

.service-specs strong {
    font-size: 10px;
}

.service-card > p {
    color: var(--muted);
    font-size: 10px;
}

.service-card .button {
    width: 100%;
    margin-top: auto;
}

.category-note {
    grid-column: 2;
}

.section-journey {
    background: var(--blue-pale);
}

.media-split,
.partners-grid,
.airport-guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    align-items: center;
    gap: clamp(44px, 7vw, 90px);
}

.media-frame,
.guide-media {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: #dde7ef;
}

.media-frame img,
.guide-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.media-frame-tall img {
    aspect-ratio: 5 / 4;
}

.media-copy > p {
    font-size: 16px;
}

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

.check-list li {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 13px;
    font-weight: 750;
}

.section-steps {
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--gold);
    list-style: none;
}

.steps-grid li {
    position: relative;
    min-height: 205px;
    padding: 30px 20px 20px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.steps-grid li:last-child {
    border-right: 0;
}

.steps-grid li > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.steps-grid h3 {
    font-size: 14px;
}

.steps-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 10px;
}

.section-airport-guide {
    background: var(--blue-pale);
}

.airport-guide-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
}

.guide-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.guide-items article {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 18px 18px 18px 0;
    border-bottom: 1px solid var(--line);
}

.guide-items article:nth-child(even) {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.guide-items article > span {
    color: var(--navy-soft);
    font-size: 10px;
    font-weight: 800;
}

.guide-items h3 {
    margin-bottom: 4px;
    font-size: 14px;
}

.guide-items p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.guide-media img {
    aspect-ratio: 4 / 5;
    object-position: 62% center;
}

.guide-media figcaption {
    padding: 12px 14px;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
}

.section-partners {
    background: #fff;
}

.partners-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
}

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

.partner-types > div {
    padding-top: 16px;
    border-top: 2px solid var(--gold);
}

.partner-types p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 11px;
}

.section-comparison {
    background: var(--blue-pale);
}

.comparison-scroll {
    max-width: 100%;
    overflow-x: auto;
}

.comparison-table {
    min-width: 900px;
    border: 1px solid var(--line);
    background: #fff;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
}

.comparison-row span {
    padding: 10px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
}

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

.comparison-row span:last-child {
    border-right: 0;
}

.comparison-row span:first-child {
    color: var(--navy);
    font-weight: 800;
}

.comparison-head span {
    background: #f8fafc;
    color: var(--navy);
    font-weight: 800;
    text-align: center;
}

.comparison-head span:nth-child(2) {
    background: var(--navy);
    color: #fff;
}

.section-social {
    background: #fff;
}

.social-card {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto auto;
    align-items: center;
    gap: 44px;
    padding: 42px 48px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #fff;
}

.social-card h2 {
    margin-bottom: 8px;
    font-size: 34px;
}

.social-card p:not(.eyebrow-light) {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
}

.rating-block {
    display: grid;
    min-width: 128px;
    text-align: center;
}

.rating-block strong {
    color: var(--gold);
    font-size: 46px;
    line-height: 1;
}

.rating-block span {
    font-size: 11px;
    font-weight: 800;
}

.rating-block small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 8px;
}

.section-gallery {
    background: #fff;
}

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

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-grid figcaption {
    padding: 12px 14px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 750;
}

.section-faq {
    background: var(--sand);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 8px 12px;
}

.faq-list details {
    border: 1px solid var(--line);
    background: #fff;
}

.faq-list summary {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

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

.faq-list summary span {
    color: var(--gold-dark);
    font-size: 18px;
    font-weight: 500;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: 0;
    padding: 0 14px 14px;
    color: var(--muted);
    font-size: 10px;
}

.section-coverage {
    background: #fff;
}

.coverage-panel {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    padding: 36px 40px;
    border: 1px solid var(--line);
}

.coverage-panel h2 {
    font-size: 30px;
}

.coverage-panel h3 {
    font-size: 20px;
}

.coverage-panel p {
    font-size: 12px;
}

.coverage-line {
    position: absolute;
    top: -2px;
    right: -2px;
    left: -2px;
    height: 2px;
    border-top: 2px solid var(--gold);
}

.coverage-line::before {
    top: -8px;
    left: -8px;
}

.coverage-line::after {
    top: -8px;
    right: -8px;
}

.section-final {
    padding-block: 0;
    background: #fff;
}

.final-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 28px 36px;
    background: var(--navy);
    color: #fff;
}

.round-mark-large {
    width: 58px;
    height: 58px;
    background: #fff;
    color: var(--navy);
    font-size: 15px;
}

.final-card h2 {
    margin-bottom: 2px;
    font-size: 26px;
}

.final-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    margin-top: 0;
    padding-top: 48px;
    background: var(--navy-deep);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, minmax(0, 0.8fr));
    gap: 36px;
    padding-bottom: 42px;
}

.footer-brand img {
    width: 220px;
    margin-bottom: 17px;
}

.footer-brand p,
.footer-grid > div:last-child p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
}

.footer-grid h2 {
    margin-bottom: 15px;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-grid > div > a {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-links a {
    font-size: 10px;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
}

.footer-bottom > div {
    display: flex;
    gap: 24px;
}

.footer-bottom a {
    text-decoration: none;
}

.legacy-hero,
.not-found {
    min-height: 620px;
    padding-block: 82px;
    background: var(--blue-pale);
}

.legacy-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    align-items: start;
    gap: 70px;
}

.legacy-layout > div > p,
.not-found p {
    color: var(--muted);
}

@media (max-width: 1180px) {
    .primary-navigation {
        gap: 15px;
    }

    .primary-navigation a,
    .booking-link {
        font-size: 11px;
    }

    .hero-grid {
        grid-template-columns: minmax(460px, 0.95fr) minmax(420px, 1.05fr);
    }

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

    .route-card:nth-child(3) {
        border-right: 0;
    }

    .route-card:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

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

    .services-intro {
        max-width: 760px;
    }

    .category-note {
        grid-column: 1;
    }
}

@media (max-width: 1040px) {
    :root {
        --shell: min(100% - 36px, 940px);
    }

    .site-header {
        min-height: 64px;
    }

    .header-inner {
        min-height: 64px;
    }

    .brand,
    .brand-logo {
        width: 190px;
    }

    .brand {
        flex-basis: 190px;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .primary-navigation {
        position: absolute;
        top: 64px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .primary-navigation[data-open] {
        display: flex;
    }

    .primary-navigation a {
        padding: 12px;
        border-bottom: 1px solid var(--line);
    }

    .booking-link {
        display: none;
    }

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

    .hero-copy {
        padding: 44px 0;
    }

    .hero-media {
        margin: 0;
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .hero-media img {
        min-height: 420px;
        max-height: 520px;
    }

    .route-line-hero {
        right: 0;
        bottom: -2px;
    }

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

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

    .steps-grid li:nth-child(3) {
        border-right: 0;
    }

    .steps-grid li:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .steps-grid li:nth-child(4),
    .steps-grid li:nth-child(5) {
        grid-column: span 1;
    }

    .media-split,
    .partners-grid,
    .airport-guide-grid,
    .legacy-layout {
        grid-template-columns: 1fr;
    }

    .partners-grid .media-frame {
        order: -1;
    }

    .guide-media img {
        max-height: 520px;
        aspect-ratio: 16 / 9;
    }

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

    .social-card .button {
        grid-column: 1 / -1;
    }

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

    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: min(100% - 28px, 620px);
    }

    body {
        font-size: 14px;
    }

    .utility-inner {
        gap: 12px;
    }

    .utility-inner > span:first-child,
    .utility-spacer {
        display: none;
    }

    .utility-inner a:nth-of-type(1) {
        margin-right: auto;
    }

    .header-actions .button {
        display: none;
    }

    .hero-copy {
        padding-block: 34px;
    }

    h1 {
        font-size: clamp(34px, 10vw, 46px);
    }

    h2 {
        font-size: 29px;
    }

    .quote-card {
        padding: 10px;
    }

    .quote-route-grid,
    .quote-date-grid,
    .quote-utility-grid {
        grid-template-columns: 1fr;
    }

    .quote-route-grid .quote-field + .quote-field,
    .quote-date-grid .quote-field + .quote-field,
    .quote-utility-grid .quote-field + .quote-field {
        border-left: 1px solid var(--line);
    }

    .hero-media img {
        min-height: 330px;
        object-position: 62% center;
    }

    .facts-grid,
    .route-cards,
    .services-layout,
    .gallery-grid,
    .faq-list,
    .coverage-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .fact,
    .fact:first-child,
    .fact:last-child {
        min-height: 92px;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fact:last-child {
        border-bottom: 0;
    }

    .route-card,
    .route-card:nth-child(3),
    .route-card:last-child {
        min-height: 0;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        padding: 14px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .route-card:last-child {
        border-bottom: 0;
    }

    .route-card-number {
        grid-row: 1 / 4;
        margin: 0;
    }

    .route-card strong,
    .route-card small,
    .route-card b {
        grid-column: 2;
        min-height: 0;
        margin: 0;
    }

    .route-card-cta {
        width: auto;
        grid-column: 3;
        grid-row: 1 / 4;
        margin: 0;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .rate-mobile-control {
        display: grid;
        gap: 5px;
        margin-bottom: 10px;
        color: var(--navy);
        font-size: 11px;
        font-weight: 800;
    }

    .rate-mobile-control select {
        min-height: 42px;
        border: 1px solid var(--line);
    }

    .js .rates-table {
        min-width: 520px;
    }

    .js .rates-table [data-rate-service] {
        display: none;
    }

    .js .rates-table [data-rate-service][data-active] {
        display: table-cell;
    }

    .services-layout {
        gap: 10px;
    }

    .service-card {
        display: grid;
        grid-template-columns: minmax(120px, 0.7fr) minmax(0, 1.3fr);
        column-gap: 14px;
    }

    .service-card h3,
    .service-card > p,
    .service-card .button {
        grid-column: 2;
    }

    .service-card h3 {
        align-self: end;
        text-align: left;
    }

    .service-card h3::after {
        margin-left: 0;
    }

    .service-vehicle {
        grid-row: 1 / 5;
        min-height: 150px;
    }

    .service-specs {
        grid-column: 2;
    }

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

    .steps-grid li,
    .steps-grid li:nth-child(3),
    .steps-grid li:nth-child(4),
    .steps-grid li:nth-child(5) {
        display: grid;
        min-height: 0;
        grid-template-columns: auto minmax(0, 1fr);
        grid-column: 1;
        align-items: center;
        gap: 6px 14px;
        padding: 16px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        text-align: left;
    }

    .steps-grid li > span {
        grid-row: 1 / 3;
        margin: 0;
    }

    .steps-grid h3,
    .steps-grid p {
        margin: 0;
    }

    .guide-items,
    .partner-types {
        grid-template-columns: 1fr;
    }

    .guide-items article:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .social-card {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 32px 24px;
        text-align: left;
    }

    .rating-block {
        text-align: left;
    }

    .social-card .button {
        grid-column: 1;
    }

    .coverage-panel {
        gap: 24px;
        padding: 28px 22px;
    }

    .final-card {
        grid-template-columns: auto 1fr;
        padding: 24px 18px;
    }

    .final-card .button {
        grid-column: 1 / -1;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 18px;
    }

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

@media (max-width: 460px) {
    :root {
        --shell: min(100% - 20px, 420px);
    }

    .brand,
    .brand-logo {
        width: 164px;
    }

    .brand {
        flex-basis: 164px;
    }

    .trip-options {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .radio-pill span,
    .radio-pill:first-of-type span,
    .radio-pill:last-of-type span {
        min-height: 42px;
        border: 1px solid var(--line);
        border-radius: 5px;
    }

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

    .traveler-grid .quote-field + .quote-field {
        border-left: 1px solid var(--line);
    }

    .route-card,
    .route-card:nth-child(3),
    .route-card:last-child {
        grid-template-columns: auto 1fr;
    }

    .route-card-cta {
        grid-column: 2;
        grid-row: auto;
    }

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

    .service-card h3,
    .service-card > p,
    .service-card .button,
    .service-specs {
        grid-column: 1;
    }

    .service-vehicle {
        grid-row: auto;
    }
}

/* Approved route-clear refinement */
.utility-item,
.utility-selector {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.utility-item svg {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: currentColor;
}

.utility-selector svg {
    width: 18px;
    height: 13px;
    flex: 0 0 18px;
}

.primary-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-chevron {
    width: 8px;
    height: 5px;
    fill: currentColor;
}

.hero-grid {
    width: 100%;
    max-width: none;
    min-height: 660px;
    grid-template-columns: minmax(500px, 560px) minmax(0, 1fr);
    grid-template-rows: 1fr;
    margin-inline: 0;
    padding: 0 0 42px max(24px, calc((100vw - 1240px) / 2));
}

.hero-copy {
    z-index: 6;
    display: flex;
    align-self: stretch;
    flex-direction: column;
    justify-content: center;
    padding: 44px 34px 54px 6px;
}

.hero-copy h1 {
    max-width: 570px;
}

.hero-note {
    margin-bottom: 0;
    font-weight: 650;
}

.hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    margin: 0;
}

.hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(242, 248, 252, 0.98) 0%, rgba(242, 248, 252, 0.94) 27%, rgba(242, 248, 252, 0.76) 42%, rgba(242, 248, 252, 0.16) 59%, rgba(242, 248, 252, 0) 70%);
    content: "";
    pointer-events: none;
}

.hero-media img {
    min-height: 660px;
    object-position: center;
}

.hero-booking {
    z-index: 7;
    width: min(560px, 100%);
    margin-top: 22px;
    margin-right: 0;
}

.route-line-hero {
    z-index: 5;
    bottom: 15px;
}

.quote-card {
    width: 100%;
    padding: 15px 16px 11px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 18px 46px rgba(6, 31, 67, 0.18);
}

.trip-options {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 10px;
    gap: 4px;
}

.radio-pill span,
.radio-pill:first-of-type span,
.radio-pill:last-of-type span {
    display: flex;
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
}

.radio-pill + .radio-pill span {
    border-left: 1px solid var(--line);
}

.radio-pill svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.trip-icon-departure {
    transform: rotate(180deg);
}

.radio-pill b {
    font-size: 10px;
}

.quote-fields-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    align-items: stretch;
}

.quote-fields-row:has(.return-fields:not([hidden])) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-fields-row > .quote-date:not(.return-fields) {
    grid-column: 1 / -1;
}

.quote-fields-row:has(.return-fields:not([hidden])) > .quote-date {
    grid-column: auto;
}

.quote-submit {
    grid-column: 1 / -1;
}

.quote-date {
    position: relative;
    min-width: 0;
}

.quote-control {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 62px;
    align-content: center;
    padding: 9px 10px 9px 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
}

.quote-control > svg {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 18px;
    height: 18px;
    fill: currentColor;
    transform: translateY(-50%);
}

.quote-control small {
    display: block;
    color: var(--muted);
    font-size: 8px;
    font-weight: 750;
    line-height: 1.2;
}

.quote-control strong,
.quote-control input[type="search"] {
    overflow: hidden;
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quote-control input[type="search"] {
    width: 100%;
    min-width: 0;
    padding: 2px 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.quote-control input[type="search"]::placeholder {
    color: #718198;
    opacity: 1;
}

.quote-control:focus-within,
.quote-control:hover {
    border-color: #8093aa;
    box-shadow: 0 0 0 2px rgba(11, 43, 87, 0.06);
}

.quote-control[data-invalid] {
    border-color: var(--error);
    box-shadow: 0 0 0 2px rgba(167, 53, 42, 0.12);
}

.date-control-button {
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.date-control-button:focus-visible {
    outline: 3px solid rgba(244, 169, 0, 0.4);
    outline-offset: 2px;
}

.combobox-options,
.calendar-popover {
    position: absolute;
    z-index: 30;
    top: calc(100% + 7px);
    left: 0;
    width: max(100%, 280px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(6, 31, 67, 0.22);
}

.combobox-options {
    max-height: 310px;
    overflow-y: auto;
    padding: 6px;
}

.combobox-options button {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 9px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--navy);
    text-align: left;
}

.destination-option-icon {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 8px;
    background: var(--blue-pale);
    color: var(--navy);
}

.destination-option-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.destination-option-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.combobox-options button:hover,
.combobox-options button[data-active] {
    background: var(--blue-pale);
}

.combobox-options button[aria-selected="true"] {
    box-shadow: inset 3px 0 var(--gold);
}

.combobox-options button strong {
    font-size: 11px;
}

.combobox-options button small {
    font-size: 8px;
}

.calendar-popover {
    width: 306px;
    padding: 12px;
}

.calendar-header {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    align-items: center;
    margin-bottom: 8px;
    text-align: center;
}

.calendar-period-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 6px;
    padding-inline: 6px;
}

.calendar-period-controls select {
    min-width: 0;
    height: 32px;
    padding: 0 7px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #fff;
    color: var(--navy);
    font: inherit;
    font-size: 11px;
    font-weight: 750;
    text-transform: capitalize;
}

.calendar-period-controls select:focus-visible {
    outline: 3px solid rgba(244, 169, 0, 0.35);
    outline-offset: 1px;
}

.calendar-header button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--navy);
    font-size: 20px;
}

.calendar-header button:disabled {
    color: #9eabb9;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendar-header strong {
    font-size: 11px;
    text-transform: capitalize;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-grid > span,
.calendar-grid > button {
    display: grid;
    min-width: 32px;
    min-height: 32px;
    place-items: center;
}

.calendar-weekday {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
}

.calendar-grid > button {
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--navy);
    font-size: 10px;
    font-weight: 750;
}

.calendar-grid > button:hover:not(:disabled),
.calendar-grid > button[aria-current="date"] {
    background: var(--navy);
    color: #fff;
}

.calendar-grid > button:disabled {
    color: #b9c2cd;
    cursor: not-allowed;
}

.stepper-controls {
    display: grid;
    grid-template-columns: 27px 24px 27px;
    align-items: center;
    justify-content: start;
    margin-top: 3px;
}

.stepper-controls button {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #f8fafc;
    color: var(--navy);
    font-size: 15px;
    line-height: 1;
}

.stepper-controls output {
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.quote-submit {
    min-height: 62px;
    margin: 0;
    gap: 8px;
    padding: 16px 22px;
    border-radius: 8px;
    font-size: 15px;
}

.quote-submit svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.quote-submit span {
    max-width: none;
    white-space: nowrap;
}

.quote-card .form-note {
    margin: 7px 2px 0;
    text-align: right;
}

.route-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    border: 0;
    background: transparent;
}

.route-card,
.route-card:nth-child(3),
.route-card:last-child {
    position: relative;
    display: block;
    min-height: 250px;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--navy);
    box-shadow: 0 12px 30px rgba(6, 31, 67, 0.14);
    text-align: left;
}

.route-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 320ms ease;
}

.route-card:hover > img {
    transform: scale(1.035);
}

.route-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 56px 20px 18px;
    background: linear-gradient(180deg, transparent 24%, rgba(4, 23, 49, 0.22) 50%, rgba(4, 23, 49, 0.94) 100%);
    color: #fff;
}

.route-card-overlay > b {
    align-self: flex-start;
    margin: 0 0 7px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy-deep);
    font-size: 9px;
}

.route-card-overlay > strong {
    font-size: 18px;
}

.route-card-overlay > small {
    min-height: 0;
    margin: 3px 0 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.route-card-cta {
    width: max-content;
    margin: 0;
    padding: 0 0 3px;
    border-bottom: 2px solid var(--gold);
    border-radius: 0;
    background: transparent;
    font-size: 10px;
}

.comparison-table {
    width: 100%;
    min-width: 940px;
    overflow: hidden;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(6, 31, 67, 0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 13px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table tr > *:last-child {
    border-right: 0;
}

.comparison-table tbody tr:last-child > * {
    border-bottom: 0;
}

.comparison-table thead th {
    height: 108px;
    background: #fff;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.comparison-table thead th:first-child {
    width: 190px;
    background: #f8fafc;
}

.comparison-table thead svg {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 8px;
    fill: currentColor;
}

.comparison-table thead small {
    display: block;
    margin-top: 5px;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.comparison-table tbody th {
    background: #f8fafc;
    color: var(--navy);
    text-align: left;
}

.comparison-table .comparison-featured {
    background: #0b2b57;
    color: #fff;
}

.comparison-table tbody .comparison-featured {
    background: #123762;
    font-weight: 750;
}

.social-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 46px;
}

.social-summary {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
}

.tripadvisor-mark {
    width: 58px;
    height: 58px;
    color: var(--gold);
    fill: currentColor;
}

.social-summary h2 {
    margin: 0;
}

.rating-block {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2px 10px;
    min-width: 210px;
    text-align: left;
}

.rating-block strong {
    grid-row: 1 / span 2;
    font-size: 50px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars svg {
    width: 17px;
    height: 16px;
}

.rating-block small {
    margin: 0;
    font-size: 9px;
}

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

.review-grid blockquote {
    display: grid;
    min-height: 142px;
    align-content: space-between;
    gap: 13px;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
}

.mini-stars {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 2px;
}

.review-grid blockquote p {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 720;
}

.review-grid footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
}

.review-grid footer small {
    font-size: inherit;
}

.social-source-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 2px;
}

.social-source-row p {
    max-width: 700px;
}

@media (max-width: 1180px) {
    .utility-inner {
        gap: 13px;
    }

    .utility-email {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(450px, 520px) minmax(0, 1fr);
    }

    .quote-fields-row,
    .quote-fields-row:has(.return-fields:not([hidden])) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1040px) {
    .hero-grid {
        display: grid;
        width: var(--shell);
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        margin-inline: auto;
        padding: 0 0 56px;
    }

    .hero-copy {
        grid-column: 1;
        grid-row: 1;
        padding: 46px 20px 26px;
    }

    .hero-media {
        position: relative;
        grid-column: 1;
        grid-row: 2;
        inset: auto;
        margin: 0 calc((100vw - min(1240px, calc(100vw - 48px))) / -2);
    }

    .hero-media::after {
        display: none;
    }

    .hero-media img {
        min-height: 430px;
        max-height: 520px;
    }

    .hero-booking {
        width: 100%;
        margin: 24px 0 0;
    }

    .route-line-hero {
        right: 0;
        left: 0;
    }
}

@media (max-width: 720px) {
    .utility-inner {
        gap: 12px;
    }

    .utility-inner > .utility-item:first-child,
    .utility-email,
    .utility-spacer {
        display: none;
    }

    .utility-item {
        font-size: 0;
    }

    .utility-item svg {
        width: 16px;
        height: 16px;
    }

    .hero-copy {
        padding-inline: 4px;
    }

    .hero-media img {
        min-height: 360px;
        object-position: 76% center;
    }

    .hero-booking {
        margin-inline: 0;
    }

    .trip-options {
        width: 100%;
    }

    .radio-pill {
        flex: 1;
    }

    .radio-pill span,
    .radio-pill:first-of-type span,
    .radio-pill:last-of-type span {
        min-width: 0;
        padding-inline: 7px;
    }

    .quote-fields-row,
    .quote-fields-row:has(.return-fields:not([hidden])) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quote-control-airport,
    .quote-combobox,
    .quote-submit {
        grid-column: 1 / -1;
    }

    .combobox-options,
    .calendar-popover {
        width: min(306px, calc(100vw - 42px));
    }

    .return-fields .calendar-popover {
        right: 0;
        left: auto;
    }

    .calendar-header {
        grid-template-columns: 30px minmax(0, 1fr) 30px;
    }

    .calendar-header button {
        width: 30px;
        height: 30px;
    }

    .calendar-period-controls {
        grid-template-columns: minmax(0, 1fr) 66px;
        gap: 4px;
        padding-inline: 2px;
    }

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

    .route-card,
    .route-card:nth-child(3),
    .route-card:last-child {
        min-height: 230px;
    }

    .route-card > img {
        height: 230px;
    }

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

    .social-summary {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .tripadvisor-mark {
        width: 42px;
        height: 42px;
    }

    .rating-block {
        grid-column: 1 / -1;
    }

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

    .review-grid blockquote {
        min-height: 120px;
    }

    .social-source-row {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .utility-selector svg {
        display: block;
    }

    .radio-pill b {
        font-size: 9px;
    }

    .quote-control {
        min-height: 58px;
    }

    .quote-submit {
        min-height: 54px;
    }
}

.quote-noscript-fallback {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.quote-noscript-fallback > p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.quote-noscript-fallback label {
    display: grid;
    gap: 6px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
}

.quote-noscript-fallback select,
.quote-noscript-fallback input {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--navy);
    font: inherit;
}

/* Content, navigation and comparison refinement */
body {
    font-size: 16px;
}

.primary-navigation,
.nav-menu {
    position: relative;
}

.primary-navigation a,
.nav-menu-trigger,
.booking-link {
    color: var(--navy);
    font-size: 13px;
    font-weight: 760;
}

.nav-menu-trigger {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-menu-trigger:hover,
.nav-menu-trigger[aria-expanded="true"] {
    color: var(--gold-dark);
}

.nav-menu-trigger[aria-expanded="true"] .nav-chevron {
    transform: rotate(180deg);
}

.nav-menu::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 12px;
    content: "";
}

.mega-menu {
    position: absolute;
    z-index: 120;
    top: calc(100% + 10px);
    left: 50%;
    display: grid;
    width: min(820px, calc(100vw - 48px));
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 52px rgba(6, 31, 67, 0.2);
    transform: translateX(-50%);
}

.mega-menu::before {
    position: absolute;
    top: -9px;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    background: #fff;
    content: "";
    transform: rotate(45deg);
}

.mega-menu-intro {
    padding: 5px 18px 5px 2px;
    border-right: 1px solid var(--line);
}

.mega-menu-intro strong {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 18px;
    line-height: 1.2;
}

.mega-menu-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.mega-menu-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.primary-navigation .mega-menu-links a {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    min-height: 68px;
    padding: 7px;
    border-radius: 8px;
    white-space: normal;
}

.primary-navigation .mega-menu-links a:hover {
    background: var(--blue-pale);
}

.mega-menu-image {
    display: block;
    width: 76px;
    height: 52px;
    border-radius: 6px;
    object-fit: cover;
}

.mega-menu-image-services {
    padding: 3px;
    border: 1px solid #e8edf3;
    background: #fff;
    object-fit: contain;
}

.mega-menu-link-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.mega-menu-links a strong {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.mega-menu-links a small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 550;
    line-height: 1.35;
}

.hero {
    background: #fff;
}

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

.hero-media::after {
    display: none;
}

.hero-media img {
    min-height: 700px;
}

.hero-copy {
    padding-right: 40px;
}

.hero-copy h1,
.hero-lead,
.hero-note {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-note {
    color: #354a62;
    font-size: 14px;
    line-height: 1.5;
}

.radio-pill b {
    font-size: 11px;
}

.quote-control small {
    font-size: 10px;
}

.quote-control strong,
.quote-control input[type="search"] {
    font-size: 12px;
}

.quote-card .form-note {
    font-size: 10px;
}

.combobox-options button small,
.calendar-weekday {
    font-size: 10px;
}

.calendar-grid > button {
    font-size: 12px;
}

.fact h2 {
    font-size: 16px;
}

.fact p,
.services-intro p:not(.eyebrow),
.service-card > p,
.steps-grid p,
.guide-items p,
.partner-types p,
.section-heading > p:not(.eyebrow):not(.eyebrow-tight),
.media-copy > p,
.guide-copy > p,
.partner-copy > p,
.coverage-panel p {
    font-size: 14px;
    line-height: 1.58;
}

.section-heading > p:not(.eyebrow):not(.eyebrow-tight),
.media-copy > p,
.guide-copy > p,
.partner-copy > p,
.coverage-panel p {
    font-size: 16px;
}

.eyebrow,
.eyebrow-tight,
.eyebrow-light {
    font-size: 12px;
}

.source-note,
.category-note,
.ai-disclosure {
    font-size: 12px;
    line-height: 1.55;
}

.route-card-overlay > b,
.route-card-cta {
    font-size: 11px;
}

.route-card-overlay > small {
    font-size: 13px;
}

.rates-table {
    font-size: 13px;
}

.rates-table th,
.rates-table td {
    padding: 13px 11px;
}

.rates-table thead small,
.rates-table td span {
    font-size: 10px;
}

.rates-table td strong {
    font-size: 15px;
}

.services-shell {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 30px;
}

.services-intro h2 {
    font-size: 32px;
}

.services-layout {
    gap: 14px;
}

.service-card {
    padding: 20px;
    border-radius: 14px;
}

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

.service-vehicle {
    min-height: 170px;
    height: 170px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #fff;
}

.service-vehicle img {
    width: 100%;
    height: 164px;
    object-fit: contain;
    transform-origin: center;
}

.service-card[data-vehicle="private"] .service-vehicle img {
    transform: scale(1.38);
}

.service-card[data-vehicle="taxi"] .service-vehicle img {
    transform: scale(1.55);
}

.service-card[data-vehicle="luxury"] .service-vehicle img {
    transform: scale(-1.02, 1.02);
}

.mega-menu-image[data-media-key="vehicle-luxury"] {
    transform: scaleX(-1);
}

.service-card[data-vehicle="group"] .service-vehicle img {
    transform: scale(1.38);
}

.service-specs small {
    font-size: 11px;
}

.service-specs strong {
    font-size: 13px;
}

.guide-items h3 {
    font-size: 16px;
}

.guide-items article > span {
    font-size: 12px;
}

.guide-media figcaption {
    font-size: 13px;
    line-height: 1.45;
}

.social-card p:not(.eyebrow-light),
.social-source-row p {
    font-size: 14px;
    line-height: 1.55;
}

.rating-block small,
.review-grid footer {
    font-size: 11px;
}

.footer-brand p,
.footer-grid > div:last-child p,
.footer-grid > div > a,
.social-links a,
.footer-bottom {
    font-size: 12px;
    line-height: 1.55;
}

.footer-grid h2 {
    font-size: 13px;
}

.comparison-scroll {
    padding: 3px 3px 20px;
    scrollbar-color: var(--gold) #dce4ec;
}

.comparison-table {
    min-width: 1020px;
    border: 1px solid #cbd7e3;
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(6, 31, 67, 0.12);
}

.comparison-table th,
.comparison-table td {
    padding: 17px 16px;
    color: #354a62;
    font-size: 14px;
    line-height: 1.4;
}

.comparison-table thead th {
    height: 148px;
    background: #fff;
    font-size: 15px;
}

.comparison-table thead th:first-child {
    width: 205px;
    background: #f5f8fb;
    color: var(--muted);
    text-align: left;
    vertical-align: bottom;
}

.comparison-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    place-items: center;
    border: 1px solid #b9c8d7;
    border-radius: 50%;
    background: #f5f8fb;
}

.comparison-icon img {
    width: 30px;
    height: 30px;
}

.comparison-table thead small {
    margin-top: 8px;
    font-size: 10px;
}

.comparison-table tbody th {
    position: sticky;
    z-index: 2;
    left: 0;
    width: 205px;
    background: #f5f8fb;
    font-size: 13px;
}

.comparison-table tbody tr:nth-child(even) td:not(.comparison-featured) {
    background: #fbfcfe;
}

.comparison-table tbody tr:hover td:not(.comparison-featured) {
    background: #f1f7fc;
}

.comparison-table .comparison-featured {
    background: var(--navy);
    color: #fff;
}

.comparison-table thead .comparison-featured .comparison-icon {
    border-color: var(--gold);
    background: var(--gold);
}

.comparison-table tbody .comparison-featured {
    background: #eef4fb;
    color: var(--navy);
    font-weight: 800;
    box-shadow: inset 1px 0 #b8cadc, inset -1px 0 #b8cadc;
}

.gallery-grid {
    gap: 20px;
}

.gallery-grid figure {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(6, 31, 67, 0.12);
}

.gallery-grid img {
    aspect-ratio: 4 / 3;
}

.gallery-grid figure:first-child img {
    object-position: right center;
}

.gallery-grid figcaption {
    min-height: 56px;
    padding: 15px 18px;
    border-top: 3px solid var(--gold);
    font-size: 14px;
}

.faq-list summary {
    font-size: 14px;
}

.faq-list details p {
    font-size: 14px;
    line-height: 1.58;
}

@media (max-width: 1040px) {
    .nav-menu-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px;
        border-bottom: 1px solid var(--line);
    }

    .mega-menu {
        position: static;
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
        border: 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    .mega-menu::before,
    .nav-menu::after,
    .mega-menu-intro {
        display: none;
    }

    .mega-menu-links {
        grid-template-columns: 1fr 1fr;
    }

    .primary-navigation .mega-menu-links a {
        border: 0;
        background: var(--blue-pale);
    }

    .hero-grid {
        min-height: 0;
    }

    .hero-media img {
        min-height: 430px;
    }

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

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .mega-menu-links {
        grid-template-columns: 1fr;
    }

    .primary-navigation .mega-menu-links a {
        grid-template-columns: 68px minmax(0, 1fr);
    }

    .mega-menu-image {
        width: 68px;
        height: 46px;
    }

    .hero-note {
        font-size: 14px;
    }

    .fact p,
    .services-intro p:not(.eyebrow),
    .service-card > p,
    .steps-grid p,
    .guide-items p,
    .partner-types p {
        font-size: 14px;
    }

    .service-card {
        grid-template-columns: minmax(150px, 0.85fr) minmax(0, 1.15fr);
        padding: 18px;
    }

    .service-vehicle {
        min-height: 170px;
    }

    .comparison-table {
        min-width: 920px;
    }
}

@media (max-width: 460px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-vehicle {
        height: 190px;
    }

    .service-vehicle img {
        height: 184px;
    }
}

@media (max-width: 720px) {
    .quote-noscript-fallback {
        grid-template-columns: 1fr 1fr;
    }

    .quote-noscript-fallback label:first-of-type {
        grid-column: 1 / -1;
    }
}

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