:root {
    --navy: #0e2344;
    --navy-deep: #071423;
    --navy-soft: #183457;
    --gold: #c8a04d;
    --gold-dark: #b78d37;
    --ivory: #fafaf8;
    --mist: #f3f5f7;
    --ink: #2c2c2c;
    --muted: #6d737b;
    --line: rgba(14, 35, 68, 0.13);
    --white-line: rgba(255, 255, 255, 0.17);
    --serif: "Playfair Display", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --shadow: 0 24px 70px rgba(7, 20, 35, 0.11);
    --radius-lg: 28px;
    --radius-md: 18px;
    --header-height: 92px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
ul,
ol,
dl,
dd {
    margin-top: 0;
}

h1,
h2 {
    color: var(--navy);
    font-family: var(--serif);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.03;
}

h1 em,
h2 em {
    font-weight: 500;
}

h1 {
    font-size: clamp(3.4rem, 6.4vw, 7.4rem);
}

h2 {
    font-size: clamp(2.55rem, 4.6vw, 5rem);
}

h3 {
    color: var(--navy);
    font-size: 1.15rem;
    line-height: 1.35;
}

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

.shell {
    width: min(100% - 64px, 1360px);
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(100px, 10vw, 168px);
}

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

.section--navy {
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
}

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: white;
    color: var(--navy);
    transform: translateY(-150%);
    transition: transform 0.2s;
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gold-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

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

.hero-kicker {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-kicker i {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-kicker--dark {
    color: var(--navy);
}

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 15px 25px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.085em;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease), transform 0.25s var(--ease), box-shadow 0.35s var(--ease);
}

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

.button:active {
    transform: scale(0.98);
}

.button--gold {
    background: var(--gold);
    box-shadow: 0 14px 30px rgba(200, 160, 77, 0.2);
    color: var(--navy-deep);
}

.button--gold:hover {
    background: var(--gold-dark);
    box-shadow: 0 17px 36px rgba(200, 160, 77, 0.29);
}

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

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

.button--ghost-light {
    border-color: rgba(255, 255, 255, 0.46);
    color: white;
}

.button--ghost-light:hover {
    border-color: var(--gold);
    background: rgba(200, 160, 77, 0.14);
}

.button--small {
    min-height: 44px;
    padding: 12px 17px;
    font-size: 0.65rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(14, 35, 68, 0.35);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: color 0.25s, border-color 0.25s, gap 0.25s;
}

.text-link:hover {
    gap: 25px;
    border-color: var(--gold);
    color: var(--gold-dark);
}

.text-link--light {
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

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

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

.section-heading h2 em {
    color: var(--gold-dark);
}

.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
    max-width: 520px;
    color: var(--muted);
}

.section-heading--row,
.section-heading--wide {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 7vw;
}

.section-heading--row > div:last-child p {
    margin-bottom: 26px;
}

.section-heading--light h2 {
    color: white;
}

.section-heading--light h2 em {
    color: var(--gold);
}

.section-heading--light p {
    color: rgba(255, 255, 255, 0.62);
}

.reveal,
.reveal-image {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-image {
    transform: translateY(26px) scale(0.98);
}

.reveal.is-visible,
.reveal-image.is-visible {
    opacity: 1;
    transform: none;
}

.site-loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 18px;
    background: var(--navy-deep);
    color: white;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__brand {
    font-size: clamp(1rem, 2vw, 1.35rem);
    letter-spacing: 0.38em;
}

.site-loader__brand span {
    color: var(--gold);
}

.site-loader__line {
    width: 260px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

.site-loader__line i {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: translateX(-100%);
    animation: loader-line 0.45s var(--ease) forwards;
}

@keyframes loader-line {
    to { transform: translateX(0); }
}

.page-transition {
    position: fixed;
    z-index: 8999;
    inset: 0;
    background: var(--navy-deep);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s;
}

body.is-leaving .page-transition {
    opacity: 1;
    visibility: visible;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(250, 250, 248, 0.96);
    transition: height 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.has-hero .site-header:not(.is-scrolled) {
    background: linear-gradient(to bottom, rgba(7, 20, 35, 0.62), transparent);
}

.site-header.is-scrolled {
    height: 76px;
    border-bottom-color: var(--line);
    background: rgba(250, 250, 248, 0.91);
    box-shadow: 0 8px 35px rgba(7, 20, 35, 0.06);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

.brand__mark {
    display: grid;
    width: 56px;
    height: 56px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(14, 35, 68, 0.15);
    border-radius: 50%;
    background: white;
    transition: width 0.35s, height 0.35s;
}

.site-header.is-scrolled .brand__mark {
    width: 46px;
    height: 46px;
}

.brand__mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand__name {
    color: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.23em;
    line-height: 1.05;
}

.brand__name small {
    display: block;
    margin-top: 7px;
    color: var(--gold-dark);
    font-size: 0.47rem;
    letter-spacing: 0.24em;
}

.has-hero .site-header:not(.is-scrolled) .brand__name {
    color: white;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.45vw, 26px);
}

.desktop-nav a {
    position: relative;
    padding-block: 14px;
    color: var(--navy);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.045em;
    white-space: nowrap;
}

.has-hero .site-header:not(.is-scrolled) .desktop-nav a {
    color: rgba(255, 255, 255, 0.86);
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

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

.header-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 15px;
}

.language-switcher {
    position: relative;
    flex: 0 0 auto;
}

.language-switcher > summary {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    list-style: none;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.language-switcher > summary::-webkit-details-marker {
    display: none;
}

.language-switcher > summary i {
    font-size: 0.7rem;
    font-style: normal;
    transition: transform 0.25s;
}

.language-switcher[open] > summary i {
    transform: rotate(180deg);
}

.has-hero .site-header:not(.is-scrolled) .language-switcher > summary {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(7, 20, 35, 0.14);
    color: white;
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    min-width: 190px;
    padding: 9px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 24px 60px rgba(7, 20, 35, 0.16);
}

.language-switcher__menu a {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 8px;
    padding: 10px 11px;
    color: var(--navy);
    font-size: 0.72rem;
    transition: background 0.2s, color 0.2s;
}

.language-switcher__menu a:hover,
.language-switcher__menu a.is-active {
    background: var(--mist);
    color: var(--gold-dark);
}

.language-switcher__menu a > span {
    color: var(--gold-dark);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 0.61rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.header-phone span {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 1px solid rgba(14, 35, 68, 0.22);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 0.5rem;
}

.has-hero .site-header:not(.is-scrolled) .header-phone {
    color: white;
}

.has-hero .site-header:not(.is-scrolled) .header-phone span {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: white;
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    margin: 5px auto;
    background: var(--navy);
    transition: transform 0.3s, margin 0.3s;
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
    margin-top: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    z-index: 999;
    inset: 0;
    padding: calc(var(--header-height) + 35px) 32px 32px;
    background: var(--navy-deep);
    color: white;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s var(--ease);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.mobile-menu__inner {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu__inner > a {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 9px 0;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--serif);
    font-size: clamp(1.6rem, 6vw, 2.6rem);
}

.mobile-menu__contact {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 28px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.mobile-language-switcher {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--white-line);
}

.mobile-language-switcher > p {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mobile-language-switcher > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-language-switcher a {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.68rem;
}

.mobile-language-switcher a.is-active {
    border-color: var(--gold);
    background: rgba(200, 160, 77, 0.12);
    color: white;
}

html[dir="rtl"] body {
    font-family: "Noto Sans Arabic", var(--sans);
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .mobile-menu__inner > a {
    font-family: "Noto Sans Arabic", var(--sans);
    letter-spacing: 0;
    line-height: 1.3;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .brand__name,
html[dir="rtl"] .site-loader__brand,
html[dir="rtl"] .header-phone,
html[dir="rtl"] .footer-contact__phone,
html[dir="rtl"] input[type="tel"] {
    direction: ltr;
    unicode-bidi: isolate;
}

html[dir="rtl"] .language-switcher__menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .button,
html[dir="rtl"] .text-link,
html[dir="rtl"] .desktop-nav a {
    letter-spacing: 0;
}

html[dir="rtl"] .aircraft-card__meta {
    padding-right: 18px;
    padding-left: 0;
    border-right: 1px solid var(--line);
    border-left: 0;
}

/* Home hero */
.home-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--navy-deep);
    color: white;
}

.home-hero__media,
.home-hero__overlay,
.home-hero__grain {
    position: absolute;
    inset: 0;
}

.home-hero__media {
    top: -5%;
    height: 110%;
}

.home-hero__media img,
.home-hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__media img {
    object-position: center;
    transform-origin: 60% 56%;
}

@media (prefers-reduced-motion: no-preference) {
    .home-hero__media img {
        animation: hero-flight-motion 6s cubic-bezier(0.22, 0.61, 0.36, 1) both;
    }
}

@keyframes hero-flight-motion {
    from { transform: translate3d(-0.25%, 0.12%, 0) scale(1.015); }
    to { transform: translate3d(0.35%, -0.15%, 0) scale(1.045); }
}

.home-hero__overlay {
    background: linear-gradient(90deg, rgba(5, 16, 30, 0.79) 0%, rgba(5, 16, 30, 0.4) 43%, rgba(5, 16, 30, 0.08) 70%), linear-gradient(0deg, rgba(5, 16, 30, 0.69) 0%, transparent 46%);
}

.home-hero__grain {
    opacity: 0.12;
    background-image: radial-gradient(rgba(255, 255, 255, 0.6) 0.55px, transparent 0.55px);
    background-size: 5px 5px;
    mix-blend-mode: soft-light;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 132px;
}

.home-hero__copy {
    width: min(760px, 63vw);
    padding-top: 3vh;
}

.home-hero h1 {
    margin-bottom: 30px;
    color: white;
    font-size: clamp(3.7rem, 6.4vw, 7.3rem);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.home-hero h1 em {
    color: #e4c685;
}

.home-hero__lead {
    max-width: 650px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.79);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.8;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-signature {
    position: absolute;
    right: 0;
    bottom: 163px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.57rem;
    letter-spacing: 0.16em;
}

.hero-signature i {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.scroll-cue {
    position: absolute;
    bottom: 139px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.57rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    width: 1px;
    height: 43px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--gold);
    content: "";
    transform: translateY(-100%);
    animation: scroll-line 2s ease-in-out infinite;
}

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

.home-hero__trust {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 104px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(4, 15, 28, 0.63);
    backdrop-filter: blur(13px);
}

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

.trust-row > div {
    display: flex;
    min-height: 104px;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-row > div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-row p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.66rem;
    line-height: 1.5;
    text-transform: uppercase;
}

.trust-row strong {
    display: block;
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
}

/* Forms and quick quote */
.section--overlap {
    z-index: 10;
    margin-top: -1px;
    padding-top: 0;
    padding-bottom: 0;
}

.quick-quote__panel {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    padding: 48px 52px 27px;
    border: 1px solid rgba(14, 35, 68, 0.09);
    background: white;
    box-shadow: var(--shadow);
}

.quick-quote__intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 37px;
}

.quick-quote__intro .eyebrow {
    margin-bottom: 7px;
}

.quick-quote__intro h2 {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    text-align: right;
}

.quick-form {
    display: grid;
    grid-template-columns: 1fr 30px 1fr 0.88fr 0.6fr auto;
    align-items: end;
    gap: 15px;
}

.field {
    display: block;
}

.field > span,
.field > label > span {
    display: block;
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field > span small {
    color: var(--muted);
    font-size: 0.56rem;
    font-weight: 500;
    text-transform: none;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(14, 35, 68, 0.17);
    border-radius: 0;
    outline: 0;
    background: white;
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.field input,
.field select {
    height: 55px;
    padding: 0 16px;
}

.field textarea {
    min-height: 130px;
    padding: 15px 16px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 160, 77, 0.12);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a0a5aa;
}

.route-arrow {
    display: grid;
    height: 55px;
    place-items: center;
    color: var(--gold-dark);
}

.quick-form__submit {
    min-width: 160px;
}

.quick-quote__note {
    margin: 18px 0 0;
    color: #8b9096;
    font-size: 0.67rem;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

.form-feedback {
    margin-bottom: 24px;
    padding: 14px 17px;
    border-left: 3px solid #ba5e53;
    background: #fff1ef;
    color: #763d37;
    font-size: 0.84rem;
}

.form-feedback--success {
    border-left-color: #4d8468;
    background: #edf8f1;
    color: #315d47;
}

/* Home content */
.why-section {
    padding-top: clamp(110px, 12vw, 190px);
}

.why-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.72fr 0.72fr;
    gap: 18px;
}

.why-card {
    position: relative;
    display: flex;
    min-height: 410px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px;
    border: 1px solid var(--line);
    background: white;
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.why-card:hover {
    z-index: 2;
    border-color: rgba(200, 160, 77, 0.55);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.why-card--featured {
    grid-row: span 2;
    min-height: 838px;
    padding: 0;
}

.why-card--featured .why-card__visual {
    position: absolute;
    inset: 0;
}

.why-card--featured .why-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.jet-exterior-image {
    object-position: 50% 58%;
}

.why-card--featured:hover .why-card__visual img {
    transform: scale(1.035);
}

.why-card--featured .why-card__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 35, 0.88), transparent 68%);
    content: "";
}

.why-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 30px;
    margin-top: auto;
    padding: 34px;
    color: white;
}

.why-card__content h3 {
    color: white;
    font-family: var(--serif);
    font-size: 1.85rem;
    font-weight: 500;
}

.why-card__content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.why-card > div:last-of-type h3 {
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
}

.why-card > div:last-of-type p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.why-card__symbol {
    color: rgba(14, 35, 68, 0.09);
    font-family: var(--serif);
    font-size: clamp(4rem, 7vw, 7.4rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.why-card__line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.why-card:hover .why-card__line {
    transform: scaleX(1);
}

.why-card--navy {
    background: var(--navy);
    color: white;
}

.why-card--navy h3,
.why-card--navy > div:last-of-type h3 {
    color: white;
}

.why-card--navy > div:last-of-type p {
    color: rgba(255, 255, 255, 0.68);
}

.privacy-orbit {
    position: relative;
    width: 110px;
    height: 110px;
    align-self: center;
    margin: 12px 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.privacy-orbit::before,
.privacy-orbit::after {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.privacy-orbit::after {
    inset: 37px;
    border: 0;
    background: var(--gold);
}

.privacy-orbit i {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: white;
}

.privacy-orbit i:nth-child(1) { top: 9px; left: 53px; }
.privacy-orbit i:nth-child(2) { right: 6px; bottom: 29px; }
.privacy-orbit i:nth-child(3) { bottom: 10px; left: 23px; }

.fleet-preview__rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.aircraft-card {
    min-width: 0;
}

.aircraft-card__image {
    position: relative;
    display: block;
    height: clamp(280px, 31vw, 440px);
    overflow: hidden;
    background: #d9dce0;
}

.aircraft-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 35, 0.38), transparent 60%);
    content: "";
}

.aircraft-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s var(--ease);
}

.aircraft-card:nth-child(2) .aircraft-card__image img {
    object-position: 64% center;
}

.aircraft-card:hover .aircraft-card__image img {
    transform: scale(1.045);
}

.aircraft-card__action {
    position: absolute;
    z-index: 2;
    color: white;
}

.aircraft-card__action {
    right: 20px;
    bottom: 19px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s, transform 0.35s;
}

.aircraft-card:hover .aircraft-card__action {
    opacity: 1;
    transform: none;
}

.aircraft-card__body {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px 0;
}

.aircraft-card__body > div:first-child span {
    color: var(--gold-dark);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aircraft-card__body h3 {
    margin: 4px 0 0;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.aircraft-card__meta {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.aircraft-card__meta span {
    display: block;
    color: var(--muted);
    font-size: 0.66rem;
    white-space: nowrap;
}

.aircraft-card__meta span + span {
    margin-top: 6px;
}

.availability-note {
    max-width: 760px;
    margin: 42px 0 0;
    color: #858b92;
    font-size: 0.7rem;
}

.services-preview__layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(60px, 9vw, 145px);
}

.services-preview__intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.services-preview__intro h2 {
    margin-bottom: 30px;
}

.services-preview__intro h2 em {
    color: var(--gold-dark);
}

.services-preview__intro > p:not(.eyebrow) {
    max-width: 430px;
    margin-bottom: 35px;
    color: var(--muted);
}

.service-list {
    border-top: 1px solid var(--line);
}

.service-row {
    display: grid;
    grid-template-columns: 0.7fr 1.1fr 32px;
    align-items: center;
    gap: 20px;
    min-height: 128px;
    border-bottom: 1px solid var(--line);
    transition: padding 0.35s var(--ease), background 0.35s;
}

.service-row:hover {
    padding-inline: 17px;
    background: rgba(243, 245, 247, 0.72);
}

.service-row h3,
.service-row p {
    margin-bottom: 0;
}

.service-row h3 {
    font-family: var(--serif);
    font-size: 1.42rem;
    font-weight: 500;
}

.service-row p {
    color: var(--muted);
    font-size: 0.78rem;
}

.service-row > i {
    color: var(--navy);
    font-style: normal;
    transition: color 0.25s, transform 0.25s;
}

.service-row:hover > i {
    color: var(--gold-dark);
    transform: translate(3px, -3px);
}

.routes-preview {
    overflow: hidden;
}

.routes-preview::before {
    position: absolute;
    top: -290px;
    left: 10%;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.route-cards {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 0.92fr);
    gap: 13px;
}

.route-card {
    position: relative;
    height: clamp(370px, 39vw, 555px);
    overflow: hidden;
    background: var(--navy);
}

.route-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.8s;
}

.route-card--bjv img,
.destination-card--bjv img {
    object-position: left center;
}

.route-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.045);
}

.route-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 13, 25, 0.86), transparent 62%);
}

.route-card__code {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    color: white;
    font-size: 0.55rem;
    letter-spacing: 0.14em;
}

.route-card__copy {
    position: absolute;
    bottom: 27px;
    left: 25px;
    color: white;
}

.route-card__copy small {
    display: block;
    margin-bottom: 7px;
    color: var(--gold);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.route-card__copy strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2vw, 2.1rem);
    font-weight: 500;
}

.route-card > i {
    position: absolute;
    right: 22px;
    bottom: 27px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: white;
    font-style: normal;
    transition: background 0.3s, color 0.3s;
}

.route-card:hover > i {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--navy-deep);
}

.cabin-experience__grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    align-items: center;
    gap: clamp(60px, 9vw, 145px);
}

.cabin-experience__image {
    position: relative;
    height: clamp(520px, 58vw, 750px);
}

.cabin-experience__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 14px 19px;
    background: white;
    color: var(--navy);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cabin-experience__copy h2 {
    margin-bottom: 30px;
}

.cabin-experience__copy h2 em {
    color: var(--gold-dark);
}

.cabin-experience__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.check-list {
    margin: 32px 0 34px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: 0.83rem;
}

/* FAQ */
.faq-layout {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: clamp(60px, 10vw, 150px);
}

.section-heading--sticky {
    position: sticky;
    top: 125px;
    align-self: start;
}

.section-heading--sticky h2 {
    margin-bottom: 25px;
}

.section-heading--sticky > p:not(.eyebrow) {
    margin-bottom: 28px;
    color: var(--muted);
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion__item {
    border-bottom: 1px solid var(--line);
}

.accordion__trigger {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 36px;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    border: 0;
    background: transparent;
    color: var(--navy);
    text-align: start;
}

.accordion__trigger > span:first-child {
    font-family: var(--serif);
    font-size: clamp(1.08rem, 1.5vw, 1.35rem);
}

.accordion__trigger i {
    position: relative;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.accordion__trigger i::before,
.accordion__trigger i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--navy);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 0.3s;
}

.accordion__trigger i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.is-open .accordion__trigger i {
    border-color: var(--gold);
    background: var(--gold);
}

.accordion__item.is-open .accordion__trigger i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--ease);
}

.accordion__panel > div {
    overflow: hidden;
}

.accordion__panel p {
    max-width: 710px;
    margin-block: 0 30px;
    margin-inline: 0 56px;
    color: var(--muted);
}

.accordion__item.is-open .accordion__panel {
    grid-template-rows: 1fr;
}

/* Footer */
.footer-cta {
    position: relative;
    overflow: hidden;
    padding-block: clamp(95px, 10vw, 150px);
    background: var(--navy);
    color: white;
}

.footer-cta::before,
.footer-cta::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    content: "";
}

.footer-cta::before {
    top: -270px;
    right: -60px;
    width: 650px;
    height: 650px;
}

.footer-cta::after {
    right: 105px;
    bottom: -270px;
    width: 500px;
    height: 500px;
}

.footer-cta__glow {
    position: absolute;
    top: 15%;
    right: 16%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(200, 160, 77, 0.17);
    filter: blur(90px);
}

.footer-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.footer-cta h2 {
    margin-bottom: 0;
    color: white;
}

.footer-cta h2 em {
    color: var(--gold);
}

.footer-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    padding-bottom: 7px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding-top: 82px;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.64);
}

.site-footer__map {
    position: absolute;
    top: 10px;
    right: -4%;
    width: 52%;
    height: 70%;
    opacity: 0.12;
    background: radial-gradient(ellipse at 30% 45%, white 0 2%, transparent 2.5%), radial-gradient(ellipse at 58% 28%, white 0 3%, transparent 3.5%), radial-gradient(ellipse at 72% 58%, white 0 4%, transparent 4.5%), radial-gradient(ellipse at 45% 73%, white 0 3%, transparent 3.5%);
    filter: blur(10px);
}

.site-footer__top {
    position: relative;
    display: grid;
    grid-template-columns: 1.55fr 0.65fr 0.65fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand__mark {
    display: grid;
    width: 52px;
    height: 52px;
    float: left;
    place-items: center;
    margin-right: 15px;
    border: 1px solid rgba(255, 255, 255, 0.27);
    border-radius: 50%;
    color: white;
    font-family: var(--serif);
    font-size: 1.75rem;
}

.footer-brand strong {
    display: block;
    padding-top: 6px;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
}

.footer-brand span {
    display: block;
    margin-top: 4px;
    color: var(--gold);
    font-size: 0.48rem;
    letter-spacing: 0.23em;
}

.footer-brand p {
    clear: both;
    padding-top: 25px;
    font-size: 0.78rem;
}

.footer-column h3,
.footer-contact .eyebrow {
    margin-bottom: 23px;
    color: white;
    font-family: var(--sans);
    font-size: 0.67rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-column a,
.footer-contact > a:not(.footer-contact__phone) {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 10px 0;
    font-size: 0.76rem;
    transition: color 0.25s;
}

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

.footer-contact__phone {
    display: block;
    margin-bottom: 7px;
    color: white;
    font-family: var(--serif);
    font-size: 1.55rem;
}

.footer-whatsapp {
    margin-top: 22px !important;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__bottom {
    position: relative;
    display: grid;
    min-height: 75px;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 0.63rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom > div {
    display: flex;
    gap: 22px;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-transform: uppercase;
}

.back-to-top span {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

/* Shared inner heroes */
.page-inner main {
    padding-top: var(--header-height);
}

.inner-hero {
    padding: clamp(70px, 8vw, 120px) 0 clamp(90px, 10vw, 150px);
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.inner-hero__copy h1 {
    margin-bottom: 30px;
    font-size: clamp(3.6rem, 6vw, 6.7rem);
}

.inner-hero__copy h1 em,
.destination-hero h1 em,
.about-hero h1 em,
.contact-hero h1 em,
.request-hero h1 em {
    color: var(--gold-dark);
}

.inner-hero__copy > p:not(.hero-kicker) {
    max-width: 540px;
    margin-bottom: 34px;
    color: var(--muted);
}

.inner-hero__visual {
    position: relative;
    height: min(68vw, 700px);
    min-height: 540px;
    overflow: hidden;
}

.inner-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 35, 0.42), transparent 40%);
    content: "";
}

.inner-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero__badge {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    padding: 18px 23px;
    background: var(--navy);
    color: white;
}

.inner-hero__badge span {
    font-size: 0.57rem;
    letter-spacing: 0.08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.inner-hero__coordinates {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 17px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

/* Fleet page */
.fleet-filter {
    display: flex;
    gap: 4px;
    margin-bottom: 35px;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--line);
}

.fleet-filter button {
    padding: 10px 17px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fleet-filter button:hover,
.fleet-filter button.is-active {
    border-color: var(--gold);
    color: var(--navy);
}

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

.fleet-card[hidden] {
    display: none;
}

.fleet-card__image {
    position: relative;
    height: clamp(330px, 40vw, 520px);
    overflow: hidden;
    background: var(--mist);
}

.fleet-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 35, 0.42), transparent 46%);
    content: "";
}

.fleet-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.fleet-card:nth-child(2) .fleet-card__image img {
    object-position: 64% center;
}

.fleet-card:hover .fleet-card__image img {
    transform: scale(1.04);
}

.fleet-card__category {
    position: absolute;
    z-index: 2;
    top: 20px;
    color: white;
    font-size: 0.59rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.fleet-card__category {
    right: 21px;
}

.fleet-card__body {
    padding: 22px 6px;
    border-bottom: 1px solid var(--line);
}

.fleet-card__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fleet-card__heading h3 {
    margin-bottom: 10px;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
    font-weight: 500;
}

.fleet-card__heading a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--navy);
    transition: background 0.3s, border-color 0.3s;
}

.fleet-card:hover .fleet-card__heading a {
    border-color: var(--gold);
    background: var(--gold);
}

.fleet-card__body > p {
    max-width: 560px;
    color: var(--muted);
}

.fleet-card dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 25px 0 0;
}

.fleet-card dl > div {
    padding-top: 13px;
    border-top: 1px solid var(--line);
}

.fleet-card dt {
    color: #979ca1;
    font-size: 0.56rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.fleet-card dd {
    margin-top: 4px;
    color: var(--navy);
    font-size: 0.78rem;
}

.fleet-comparison {
    overflow: hidden;
}

.fleet-comparison::before {
    position: absolute;
    top: 50%;
    left: -140px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

.fleet-comparison__grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: clamp(70px, 10vw, 155px);
}

.fleet-comparison__copy h2 {
    color: white;
}

.fleet-comparison__copy h2 em {
    color: var(--gold);
}

.fleet-comparison__copy > p:not(.eyebrow) {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.6);
}

.decision-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--white-line);
    list-style: none;
}

.decision-list li {
    padding: 28px 0;
    border-bottom: 1px solid var(--white-line);
}

.decision-list strong {
    display: block;
    margin-bottom: 7px;
    color: white;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.decision-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
}

.cabin-gallery__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 18px;
}

.cabin-gallery__main {
    position: relative;
    height: 720px;
    margin: 0;
}

.cabin-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cabin-gallery__main figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 15px 21px;
    background: white;
    color: var(--navy);
    font-size: 0.61rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

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

.cabin-feature-grid article {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    border: 1px solid var(--line);
    background: var(--mist);
}

.cabin-feature-grid h3 {
    margin-top: 0;
    margin-bottom: 9px;
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.cabin-feature-grid p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.77rem;
}

/* Destinations */
.destination-hero {
    overflow: hidden;
    padding: clamp(80px, 9vw, 135px) 0 clamp(95px, 11vw, 160px);
    background: linear-gradient(135deg, var(--ivory), var(--mist));
}

.destination-hero__inner {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: center;
    gap: 70px;
}

.destination-hero__copy h1 {
    margin-bottom: 28px;
    font-size: clamp(3.6rem, 5.8vw, 6.4rem);
}

.destination-hero__copy > p:not(.hero-kicker) {
    max-width: 550px;
    margin-bottom: 33px;
    color: var(--muted);
}

.route-map {
    position: relative;
    min-height: 585px;
    overflow: hidden;
    border: 1px solid rgba(14, 35, 68, 0.08);
    background: rgba(255, 255, 255, 0.5);
}

.route-map::before,
.route-map::after {
    position: absolute;
    border: 1px solid rgba(14, 35, 68, 0.06);
    border-radius: 50%;
    content: "";
}

.route-map::before {
    inset: 17% 22%;
}

.route-map::after {
    inset: 31% 34%;
}

.route-map__world {
    position: absolute;
    inset: 11% 6% 15%;
    opacity: 0.17;
}

.land {
    position: absolute;
    display: block;
    background: var(--navy);
    filter: blur(0.2px);
}

.land--americas { top: 20%; left: 7%; width: 24%; height: 55%; border-radius: 55% 40% 60% 45%; transform: rotate(11deg); clip-path: polygon(22% 0, 82% 10%, 100% 38%, 60% 52%, 74% 100%, 36% 80%, 0 35%); }
.land--europe { top: 21%; left: 44%; width: 17%; height: 21%; border-radius: 60% 50% 45% 55%; transform: rotate(-8deg); }
.land--asia { top: 15%; left: 54%; width: 37%; height: 38%; border-radius: 60% 45% 60% 35%; clip-path: polygon(0 25%, 36% 0, 100% 14%, 82% 72%, 40% 100%, 18% 70%); }
.land--africa { top: 42%; left: 47%; width: 17%; height: 35%; border-radius: 55% 45% 62% 38%; clip-path: polygon(0 0, 100% 11%, 66% 100%, 29% 76%); }
.land--australia { right: 4%; bottom: 16%; width: 13%; height: 16%; border-radius: 50% 40% 55% 35%; transform: rotate(-8deg); }

.route-map__line {
    position: absolute;
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform-origin: left;
}

.route-map__line--1 { top: 42%; left: 53%; width: 25%; transform: rotate(10deg); }
.route-map__line--2 { top: 42%; left: 53%; width: 18%; transform: rotate(-26deg); }
.route-map__line--3 { top: 42%; left: 53%; width: 14%; transform: rotate(-12deg); }

.route-point {
    position: absolute;
    z-index: 2;
    color: var(--navy);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.route-point i {
    display: block;
    width: 9px;
    height: 9px;
    margin: auto;
    border: 2px solid white;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(200, 160, 77, 0.45);
    animation: route-pulse 2.4s infinite;
}

.route-point span {
    display: block;
    margin-top: 8px;
    padding: 3px 6px;
    background: rgba(250, 250, 248, 0.8);
}

@keyframes route-pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 160, 77, 0.4); }
    70%, 100% { box-shadow: 0 0 0 13px rgba(200, 160, 77, 0); }
}

.route-point--ist { top: 39%; left: 51%; }
.route-point--lon { top: 28%; left: 40%; }
.route-point--par { top: 34%; left: 43%; }
.route-point--dxb { top: 54%; left: 66%; }

.route-map__legend {
    position: absolute;
    right: 22px;
    bottom: 21px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.route-map__legend i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

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

.destination-card {
    min-height: 440px;
}

.destination-card--wide {
    grid-column: span 2;
}

.destination-card a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
}

.destination-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

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

.destination-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 35, 0.85), transparent 65%);
}

.destination-card__top,
.destination-card__bottom {
    position: absolute;
    right: 25px;
    left: 25px;
    display: flex;
    justify-content: space-between;
    color: white;
}

.destination-card__top {
    top: 23px;
    align-items: center;
}

.destination-card__top small {
    font-size: 0.57rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.destination-card__top b {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
}

.destination-card__bottom {
    bottom: 24px;
    align-items: end;
}

.destination-card__bottom strong {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 500;
}

.destination-card__bottom i {
    padding-bottom: 8px;
    color: var(--gold);
    font-size: 0.59rem;
    font-style: normal;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.route-planning__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.route-planning__visual {
    position: relative;
    height: 680px;
}

.route-planning__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
}

.route-planning__stamp {
    position: absolute;
    right: -52px;
    bottom: 55px;
    display: grid;
    width: 124px;
    height: 124px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(7, 20, 35, 0.73);
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.route-planning__stamp strong {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
}

.route-planning__stamp span {
    font-size: 0.47rem;
    letter-spacing: 0.2em;
}

.route-planning__copy h2 {
    margin-bottom: 28px;
}

.route-planning__copy h2 em {
    color: var(--gold-dark);
}

.route-planning__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.compact-steps {
    margin: 30px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.compact-steps li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.compact-steps strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 500;
}

.compact-steps p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.route-marquee {
    overflow: hidden;
    padding: 23px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: white;
}

.route-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.3rem;
    animation: marquee 28s linear infinite;
}

.route-marquee__track i {
    color: var(--gold);
    font-size: 0.75rem;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* Charter and forms */
.charter-hero,
.inner-image-hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    overflow: hidden;
    background: var(--navy-deep);
    color: white;
}

.charter-hero__media,
.inner-image-hero__media {
    position: absolute;
    inset: 0;
}

.charter-hero__media img,
.inner-image-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charter-hero__media img {
    object-position: center;
}

.charter-hero__shade,
.inner-image-hero__media > span {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 20, 35, 0.88) 0%, rgba(7, 20, 35, 0.44) 48%, rgba(7, 20, 35, 0.12)), linear-gradient(0deg, rgba(7, 20, 35, 0.44), transparent 60%);
}

.charter-hero__content,
.inner-image-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 80px;
}

.charter-hero__content h1,
.inner-image-hero__content h1 {
    max-width: 930px;
    margin-bottom: 27px;
    color: white;
    font-size: clamp(3.5rem, 6.1vw, 6.8rem);
}

.charter-hero__content h1 em,
.inner-image-hero__content h1 em {
    color: #e2c47f;
}

.charter-hero__content > p:not(.hero-kicker),
.inner-image-hero__content > p:not(.hero-kicker) {
    max-width: 590px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.73);
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-timeline::before {
    position: absolute;
    top: 5px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(200, 160, 77, 0.22));
    content: "";
}

.process-step {
    position: relative;
    padding: 0 22px;
}

.process-step:first-child {
    padding-left: 0;
}

.process-step:last-child {
    padding-right: 0;
}

.process-step__dot {
    position: relative;
    z-index: 2;
    width: 11px;
    height: 11px;
    margin-bottom: 32px;
    border: 3px solid var(--ivory);
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.process-step h3 {
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: 1.28rem;
    font-weight: 500;
}

.process-step p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.charter-benefits__grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.charter-benefits__image {
    position: relative;
    height: 690px;
}

.charter-benefits__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charter-benefits__label {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 17px 22px;
    background: white;
}

.charter-benefits__label span {
    display: block;
    color: var(--gold-dark);
    font-size: 0.54rem;
    letter-spacing: 0.13em;
}

.charter-benefits__label strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
}

.charter-benefits__copy h2 {
    margin-bottom: 30px;
}

.charter-benefits__copy h2 em {
    color: var(--gold-dark);
}

.benefit-list {
    border-top: 1px solid var(--line);
}

.benefit-list article {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.benefit-list h3 {
    margin-bottom: 5px;
    font-family: var(--serif);
    font-size: 1.18rem;
    font-weight: 500;
}

.benefit-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.form-section {
    background: var(--navy-deep);
}

.form-section__shell {
    padding: clamp(38px, 5vw, 72px);
    background: white;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.flight-form__heading {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 55px;
}

.flight-form__heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -33px;
}

.flight-form__heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.3rem, 3.6vw, 3.8rem);
}

.flight-form__heading > p:not(.eyebrow) {
    margin-bottom: 5px;
    color: var(--muted);
}

.flight-form fieldset {
    margin: 0 0 48px;
    padding: 0;
    border: 0;
}

.flight-form legend {
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.form-grid {
    display: grid;
    gap: 22px;
}

.form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.field--textarea {
    display: block;
    margin-top: 22px;
}

.consent-field {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 11px;
    color: var(--muted);
    font-size: 0.7rem;
    line-height: 1.55;
}

.consent-field input {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: var(--gold-dark);
}

.consent-field a {
    color: var(--navy);
    text-decoration: underline;
}

.flight-form__submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 35px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.flight-form__submit-row p {
    max-width: 680px;
    margin: 0;
    color: #8b9095;
    font-size: 0.66rem;
}

.flight-form__submit-row .button {
    min-width: 200px;
}

/* Services */
.inner-image-hero__media img {
    object-position: center 55%;
}

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

.service-card {
    position: relative;
    min-height: 380px;
    padding: 28px;
    border: 1px solid var(--line);
    background: white;
    transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}

.service-card:hover {
    border-color: rgba(200, 160, 77, 0.65);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.service-card__icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 40px auto 45px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.service-card__icon::before,
.service-card__icon::after {
    position: absolute;
    content: "";
}

.service-card__icon::before {
    top: 44px;
    left: 20px;
    width: 49px;
    height: 1px;
    background: var(--gold-dark);
    transform: rotate(-18deg);
}

.service-card__icon::after {
    top: 34px;
    left: 40px;
    width: 16px;
    height: 16px;
    border-top: 1px solid var(--gold-dark);
    border-right: 1px solid var(--gold-dark);
    transform: rotate(27deg);
}

.service-card h3 {
    margin-bottom: 11px;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
}

.service-card p {
    color: var(--muted);
    font-size: 0.77rem;
}

.service-card > a {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    display: flex;
    justify-content: space-between;
    padding-top: 13px;
    border-top: 1px solid var(--line);
    color: var(--navy);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.concierge-story {
    overflow: hidden;
}

.concierge-story__grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: 80px;
}

.concierge-story__copy h2 {
    margin-bottom: 28px;
    color: white;
}

.concierge-story__copy h2 em {
    color: var(--gold);
}

.concierge-story__copy > p:not(.eyebrow) {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.6);
}

.concierge-orbit {
    position: relative;
    width: min(100%, 670px);
    aspect-ratio: 1;
    margin-left: auto;
}

.concierge-orbit__center {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 145px;
    height: 145px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    background: var(--navy);
    text-align: center;
    transform: translate(-50%, -50%);
}

.concierge-orbit__center strong {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.19em;
}

.concierge-orbit__center span {
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.47rem;
    letter-spacing: 0.13em;
}

.concierge-orbit__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.concierge-orbit__ring--1 { inset: 16%; }
.concierge-orbit__ring--2 { inset: 2%; }

.concierge-orbit__item {
    position: absolute;
    display: grid;
    min-width: 104px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.concierge-orbit__item--1 { top: 7%; left: 42%; }
.concierge-orbit__item--2 { top: 43%; right: -1%; }
.concierge-orbit__item--3 { bottom: 6%; left: 39%; }
.concierge-orbit__item--4 { top: 44%; left: -3%; }

.service-feature {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.service-feature + .service-feature {
    margin-top: clamp(110px, 12vw, 180px);
}

.service-feature--image-right {
    grid-template-columns: 0.88fr 1.12fr;
}

.service-feature__image {
    height: 650px;
}

.service-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-feature__copy h2 {
    margin-bottom: 27px;
}

.service-feature__copy h2 em {
    color: var(--gold-dark);
}

.service-feature__copy > p:not(.eyebrow) {
    color: var(--muted);
}

/* About */
.about-hero {
    padding: clamp(75px, 8vw, 125px) 0 0;
}

.about-hero__top h1 {
    margin-bottom: 65px;
    font-size: clamp(3.7rem, 6.3vw, 7rem);
}

.about-hero__media {
    position: relative;
    width: min(100% - 64px, 1540px);
    height: min(68vw, 780px);
    min-height: 560px;
    margin-inline: auto;
    overflow: hidden;
}

.about-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 20, 35, 0.45), transparent 45%);
    content: "";
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 53%;
}

.about-hero__caption {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 24px;
    color: white;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 80px;
}

.about-intro__marker {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-top: 10px;
}

.about-intro__marker > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.7rem;
}

.about-intro__marker p {
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.about-intro__copy {
    max-width: 900px;
}

.about-intro__copy h2 {
    margin-bottom: 35px;
}

.about-intro__copy h2 em {
    color: var(--gold-dark);
}

.lead-paragraph {
    color: var(--navy) !important;
    font-family: var(--serif);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.55;
}

.about-intro__copy > p:not(.eyebrow) {
    color: var(--muted);
}

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

.purpose-card {
    position: relative;
    display: flex;
    min-height: 500px;
    flex-direction: column;
    justify-content: center;
    padding: clamp(35px, 5vw, 65px);
    border: 1px solid var(--line);
    background: white;
}

.purpose-card .eyebrow {
    margin-top: 0;
}

.purpose-card h2 {
    margin-bottom: 24px;
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
}

.purpose-card > p:last-child {
    max-width: 530px;
    color: var(--muted);
}

.purpose-card--navy {
    border-color: var(--navy);
    background: var(--navy);
}

.purpose-card--navy h2 {
    color: white;
}

.purpose-card--navy > p:last-child {
    color: rgba(255, 255, 255, 0.61);
}

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

.value-card {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 27px;
    border: 1px solid var(--line);
    background: white;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

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

.value-card h3 {
    margin-top: 0;
    margin-bottom: 11px;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 500;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.77rem;
}

.value-card--accent {
    background: #eee6d5;
}

.promise-section__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.promise-section__image {
    height: 680px;
}

.promise-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promise-section__copy h2 {
    margin-bottom: 30px;
    color: white;
}

.promise-section__copy h2 em {
    color: var(--gold);
}

.promise-section__copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.6);
}

.promise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 40px 0;
}

.promise-stats > div {
    padding: 18px 15px;
    border: 1px solid var(--white-line);
}

.promise-stats strong {
    display: block;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 500;
}

.promise-stats span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.56rem;
    line-height: 1.4;
    text-transform: uppercase;
}

/* Contact and request */
.contact-hero {
    padding: clamp(80px, 9vw, 145px) 0 clamp(90px, 10vw, 150px);
}

.contact-hero__grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
    gap: 100px;
}

.contact-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(3.7rem, 6vw, 6.8rem);
}

.contact-hero__copy > p:not(.hero-kicker) {
    max-width: 540px;
    color: var(--muted);
}

.contact-hero__channels {
    border-top: 1px solid var(--line);
}

.contact-channel {
    display: grid;
    grid-template-columns: 0.55fr 1fr 28px;
    align-items: center;
    gap: 25px;
    padding: 27px 0;
    border-bottom: 1px solid var(--line);
}

.contact-channel > span {
    color: var(--gold-dark);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-channel strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    font-weight: 500;
}

.contact-channel i {
    color: var(--navy);
    font-style: normal;
    transition: color 0.25s, transform 0.25s;
}

.contact-channel:hover i {
    color: var(--gold-dark);
    transform: translate(3px, -3px);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    gap: 22px;
}

.contact-sidebar,
.contact-form-card {
    padding: clamp(35px, 5vw, 65px);
    background: white;
}

.contact-sidebar h2 {
    margin-bottom: 25px;
}

.contact-sidebar > p:not(.eyebrow) {
    color: var(--muted);
}

.availability-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding: 18px;
    border: 1px solid var(--line);
}

.availability-card__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4e936b;
    box-shadow: 0 0 0 7px rgba(78, 147, 107, 0.12);
}

.availability-card strong {
    display: block;
    color: var(--navy);
    font-size: 0.74rem;
}

.availability-card p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 0.64rem;
}

.contact-location {
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.contact-location span {
    color: var(--gold-dark);
    font-size: 0.56rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-location strong {
    display: block;
    margin-top: 7px;
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-location p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.contact-form-card .field--textarea {
    margin-bottom: 22px;
}

.contact-form-card__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 28px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.contact-form-card__submit p {
    margin: 0;
    color: var(--muted);
    font-size: 0.66rem;
}

.request-hero {
    padding: clamp(75px, 8vw, 125px) 0;
}

.request-hero__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.request-hero__copy h1 {
    margin-bottom: 28px;
    font-size: clamp(3.6rem, 5.9vw, 6.5rem);
}

.request-hero__copy > p:not(.hero-kicker) {
    max-width: 540px;
    color: var(--muted);
}

.request-assurance {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.request-assurance span {
    color: var(--navy);
    font-size: 0.72rem;
}

.request-hero__image {
    height: 610px;
}

.request-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-section--request {
    padding-top: clamp(85px, 8vw, 125px);
}

.request-contact-strip {
    padding: 28px 0;
    background: var(--gold);
    color: var(--navy-deep);
}

.request-contact-strip .shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.request-contact-strip p {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.request-contact-strip a {
    font-family: var(--serif);
    font-size: 1.15rem;
}

.request-contact-strip i {
    width: 1px;
    height: 26px;
    background: rgba(7, 20, 35, 0.3);
}

/* Legal, thanks, 404 */
.legal-hero {
    padding: clamp(80px, 9vw, 140px) 0 75px;
    border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
    max-width: 900px;
    margin-bottom: 25px;
    font-size: clamp(3.2rem, 5.4vw, 5.8rem);
}

.legal-hero__inner > p:not(.hero-kicker) {
    max-width: 700px;
    color: var(--muted);
}

.legal-layout {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    gap: 100px;
}

.legal-nav {
    position: sticky;
    top: 110px;
    align-self: start;
    border-top: 1px solid var(--line);
}

.legal-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.72rem;
}

.legal-nav a.is-active {
    color: var(--gold-dark);
}

.legal-draft-note {
    margin-bottom: 60px;
    padding: 25px;
    border: 1px solid rgba(200, 160, 77, 0.45);
    background: #fbf6eb;
}

.legal-draft-note strong {
    color: var(--navy);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.legal-draft-note p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.legal-article > section {
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.legal-article h2 {
    margin-bottom: 13px;
    font-size: 1.7rem;
}

.legal-article p {
    color: var(--muted);
}

.thanks-page,
.not-found {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    background: var(--navy-deep);
    color: white;
}

.thanks-page__media,
.not-found__media,
.thanks-page__shade,
.not-found__shade {
    position: absolute;
    inset: 0;
}

.thanks-page__media img,
.not-found__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-page__shade,
.not-found__shade {
    background: linear-gradient(90deg, rgba(7, 20, 35, 0.9), rgba(7, 20, 35, 0.36));
}

.thanks-page__content,
.not-found__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.thanks-page__check {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    margin-bottom: 30px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
}

.thanks-page h1,
.not-found h1 {
    margin-bottom: 25px;
    color: white;
    font-size: clamp(3.4rem, 6vw, 6.6rem);
}

.thanks-page h1 em,
.not-found h1 em {
    color: var(--gold);
}

.thanks-page__content > p:not(.hero-kicker) {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.7);
}

.thanks-page__actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.not-found__content > span {
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.13);
    font-family: var(--serif);
    font-size: clamp(8rem, 20vw, 20rem);
}

/* Responsive */
@media (max-width: 1240px) {
    :root { --header-height: 82px; }
    .shell { width: min(100% - 48px, 1240px); }
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .header-phone { display: none; }
    .quick-form { grid-template-columns: 1fr 24px 1fr 1fr; }
    .quick-form .field--compact { grid-column: 1 / 2; }
    .quick-form__submit { grid-column: 4 / 5; }
    .why-grid { grid-template-columns: 1.25fr 0.75fr; }
    .why-card--featured { grid-row: span 3; }
    .route-cards { grid-template-columns: repeat(2, 1fr); }
    .site-footer__top { grid-template-columns: 1.3fr repeat(2, 0.7fr) 1fr; gap: 35px; }
}

@media (max-width: 1020px) {
    .section-heading--row,
    .section-heading--wide { grid-template-columns: 1fr; align-items: start; gap: 25px; }
    .home-hero__copy { width: min(720px, 78vw); }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .trust-row > div { min-height: 72px; }
    .home-hero__trust { min-height: 144px; }
    .home-hero__content { padding-bottom: 175px; }
    .scroll-cue, .hero-signature { bottom: 175px; }
    .quick-quote__intro { display: block; }
    .quick-quote__intro h2 { margin-top: 18px; text-align: start; }
    .quick-form { grid-template-columns: 1fr 24px 1fr; }
    .quick-form .field:nth-of-type(3) { grid-column: 1 / 2; }
    .quick-form .field--compact { grid-column: 2 / 3; }
    .quick-form__submit { grid-column: 3 / 4; }
    .fleet-preview__rail { grid-template-columns: repeat(2, 1fr); }
    .fleet-preview__rail .aircraft-card:last-child { display: none; }
    .services-preview__layout { grid-template-columns: 1fr; }
    .services-preview__intro, .section-heading--sticky { position: static; }
    .service-row { grid-template-columns: 0.8fr 1.2fr 28px; }
    .cabin-experience__grid, .faq-layout { grid-template-columns: 1fr; }
    .cabin-experience__copy { max-width: 700px; }
    .footer-cta__inner { display: block; }
    .footer-cta__actions { margin-top: 40px; }
    .site-footer__top { grid-template-columns: repeat(2, 1fr); }
    .inner-hero__grid, .destination-hero__inner, .about-intro__grid, .contact-hero__grid, .request-hero__grid { grid-template-columns: 1fr; }
    .inner-hero__copy, .destination-hero__copy, .contact-hero__copy, .request-hero__copy { max-width: 760px; }
    .inner-hero__visual { height: 670px; }
    .route-map { min-height: 560px; }
    .fleet-comparison__grid, .concierge-story__grid { grid-template-columns: 1fr; }
    .fleet-comparison__copy { max-width: 680px; }
    .cabin-gallery__grid { grid-template-columns: 1fr; }
    .cabin-feature-grid { min-height: 470px; }
    .destination-grid { grid-template-columns: repeat(2, 1fr); }
    .destination-card--wide { grid-column: span 2; }
    .route-planning__grid, .charter-benefits__grid, .promise-section__grid { grid-template-columns: 1fr; }
    .route-planning__visual, .charter-benefits__image, .promise-section__image { height: 660px; }
    .route-planning__stamp { right: 28px; }
    .process-timeline { grid-template-columns: 1fr; }
    .process-timeline::before { top: 30px; right: auto; bottom: 30px; left: 5px; width: 1px; height: auto; }
    .process-step { display: grid; grid-template-columns: 20px 1fr; gap: 14px; padding: 20px 0; }
    .process-step__dot { margin: 5px 0 0; }
    .flight-form__heading { grid-template-columns: 1fr; gap: 14px; }
    .flight-form__heading .eyebrow { grid-column: auto; margin-bottom: 10px; }
    .services-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .service-feature, .service-feature--image-right { grid-template-columns: 1fr; }
    .service-feature--image-right .service-feature__copy { order: 2; }
    .service-feature__image { height: 620px; }
    .contact-form-layout { grid-template-columns: 1fr; }
    .contact-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .contact-sidebar > .eyebrow, .contact-sidebar > h2, .contact-sidebar > p { grid-column: 1 / -1; }
    .availability-card, .contact-location { margin-top: 20px; }
    .legal-layout { grid-template-columns: 1fr; gap: 50px; }
    .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; border: 0; }
    .legal-nav a { padding: 8px 12px; border: 1px solid var(--line); }
}

@media (max-width: 740px) {
    :root { --header-height: 72px; --radius-lg: 20px; }
    .shell { width: min(100% - 32px, 680px); }
    .section { padding-block: 88px; }
    h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
    h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .site-header .button--small { display: none; }
    .brand__mark { width: 46px; height: 46px; }
    .brand__name { font-size: 0.76rem; }
    .brand__name small { font-size: 0.42rem; }
    .home-hero { min-height: 920px; }
    .home-hero__media { top: 0; height: 100%; }
    .home-hero__media img { object-position: 61% center; transform-origin: 64% 55%; }
    .home-hero__overlay { background: linear-gradient(90deg, rgba(5, 16, 30, 0.82), rgba(5, 16, 30, 0.28)), linear-gradient(0deg, rgba(5, 16, 30, 0.85), transparent 65%); }
    .home-hero__content { min-height: 920px; align-items: flex-start; padding-top: 180px; padding-bottom: 235px; }
    .home-hero__copy { width: 100%; }
    .home-hero h1 { font-size: clamp(3.1rem, 14vw, 5rem); }
    .home-hero__lead { font-size: 0.92rem; }
    .home-hero__actions { flex-direction: column; align-items: stretch; }
    .home-hero__actions .button { width: 100%; }
    .hero-signature { display: none; }
    .scroll-cue { bottom: 205px; }
    .home-hero__trust { min-height: 177px; }
    .trust-row { grid-template-columns: repeat(2, 1fr); }
    .trust-row > div { min-height: 88px; padding: 12px; }
    .quick-quote__panel { padding: 32px 22px 24px; }
    .quick-form { grid-template-columns: 1fr; }
    .quick-form > * { grid-column: 1 !important; }
    .route-arrow { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card--featured { min-height: 580px; grid-row: auto; }
    .why-card { min-height: 340px; }
    .fleet-preview__rail { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 1fr 24px; gap: 8px 16px; padding: 22px 0; }
    .service-row p { grid-column: 1; grid-row: 2; }
    .service-row > i { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
    .route-cards { grid-template-columns: 1fr; }
    .route-card { height: 470px; }
    .route-card:nth-child(n+4) { display: none; }
    .cabin-experience__image { height: 520px; }
    .accordion__trigger { grid-template-columns: 1fr 34px; gap: 10px; }
    .accordion__panel p { margin-inline: 0 44px; }
    .footer-cta__actions { align-items: stretch; }
    .site-footer__top { grid-template-columns: 1fr; gap: 45px; }
    .site-footer__bottom { grid-template-columns: 1fr; gap: 15px; padding: 25px 0; }
    .site-footer__bottom > div { flex-wrap: wrap; }
    .back-to-top { position: absolute; right: 0; top: 20px; }
    .inner-hero__visual, .about-hero__media { min-height: 480px; height: 120vw; }
    .fleet-grid, .purpose-grid, .services-grid, .values-grid { grid-template-columns: 1fr; }
    .fleet-card__image { height: 450px; }
    .cabin-gallery__main { height: 540px; }
    .cabin-feature-grid { grid-template-columns: 1fr; }
    .cabin-feature-grid article { min-height: 240px; }
    .destination-hero { padding-top: 80px; }
    .route-map { min-height: 440px; }
    .destination-grid { grid-template-columns: 1fr; }
    .destination-card--wide { grid-column: auto; }
    .destination-card { min-height: 470px; }
    .route-planning__visual, .charter-benefits__image, .promise-section__image, .service-feature__image { height: 530px; }
    .charter-hero, .inner-image-hero, .charter-hero__content, .inner-image-hero__content { min-height: 820px; }
    .charter-hero__media img { object-position: 64% center; }
    .form-section__shell { width: 100%; padding: 32px 20px; }
    .form-grid--2 { grid-template-columns: 1fr; }
    .flight-form__submit-row, .contact-form-card__submit { align-items: stretch; flex-direction: column; }
    .flight-form__submit-row .button { width: 100%; }
    .concierge-orbit { margin-top: 30px; }
    .concierge-orbit__item { min-width: 82px; font-size: 0.48rem; }
    .purpose-card { min-height: 420px; }
    .promise-stats { grid-template-columns: 1fr; }
    .about-intro__grid { gap: 45px; }
    .contact-channel { grid-template-columns: 1fr 26px; }
    .contact-channel > span { grid-column: 1 / -1; }
    .contact-channel i { grid-column: 2; grid-row: 2; }
    .contact-sidebar { display: block; }
    .contact-form-card, .contact-sidebar { padding: 30px 20px; }
    .request-hero__image { height: 500px; }
    .request-contact-strip .shell { flex-direction: column; gap: 12px; text-align: center; }
    .request-contact-strip i { width: 50px; height: 1px; }
    .thanks-page__actions { width: 100%; flex-direction: column; }
    .not-found__content > span { top: 10%; }
}

@media (max-width: 430px) {
    .shell { width: min(100% - 24px, 400px); }
    .brand__name { display: none; }
    .home-hero__content { padding-top: 145px; }
    .home-hero h1 { font-size: 3.35rem; }
    .trust-row p { font-size: 0.56rem; }
    .fleet-card__image { height: 380px; }
    .route-card, .destination-card { min-height: 420px; height: 420px; }
    .route-map { min-height: 370px; }
    .route-point span { display: none; }
    .inner-hero__visual, .about-hero__media { min-height: 420px; }
    .charter-hero__content h1, .inner-image-hero__content h1 { font-size: 3.3rem; }
    .concierge-orbit__center { width: 110px; height: 110px; }
    .contact-hero h1, .request-hero h1, .about-hero h1 { font-size: 3.3rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .home-hero__media img { animation: none; transform: none; }
    .reveal, .reveal-image { opacity: 1; transform: none; }
}
