:root {
    --sps-navy: #0b1f43;
    --sps-navy-2: #143968;
    --sps-navy-3: #1d4a82;
    --sps-gold: #b98b45;
    --sps-gold-light: #d5ae68;
    --sps-gold-pale: #efe1c5;
    --sps-ink: #111827;
    --sps-muted: #667085;
    --sps-border: #e4e8ee;
    --sps-surface: #f5f7fa;
    --sps-ivory: #fbfaf7;
    --sps-white: #ffffff;
    --sps-danger: #b42318;
    --sps-success: #087443;
    --shadow-sm: 0 10px 30px rgba(11, 31, 67, 0.08);
    --shadow-md: 0 24px 70px rgba(11, 31, 67, 0.14);
    --shadow-lg: 0 32px 90px rgba(5, 19, 43, 0.2);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --transition: 260ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--sps-white);
    color: var(--sps-ink);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

a:hover {
    color: inherit;
}

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

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--sps-navy);
    color: white;
    transform: translateY(-180%);
    transition: transform var(--transition);
}

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

.container-xxl {
    max-width: 1440px;
    padding-left: clamp(20px, 3vw, 40px);
    padding-right: clamp(20px, 3vw, 40px);
}

.section-padding {
    padding: clamp(82px, 9vw, 132px) 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.min-vh-65 {
    min-height: 65vh;
}

.max-w-700 {
    max-width: 700px;
}

.max-w-500 {
    max-width: 500px;
}

.text-gold {
    color: var(--sps-gold-light) !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--sps-navy-2);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
}

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

.section-title {
    margin: 0 0 24px;
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 4.25rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.section-copy {
    margin: 0;
    color: var(--sps-muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.9;
}

.lead-copy {
    color: #344054;
    font-size: clamp(1.15rem, 1.7vw, 1.42rem);
}

.section-heading-center {
    max-width: 820px;
}

.section-heading-center .section-copy {
    max-width: 680px;
    margin-right: auto;
    margin-left: auto;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 11px 23px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-lg {
    min-height: 56px;
    padding: 14px 30px;
    font-size: 0.95rem;
}

.btn-brand {
    border: 1px solid var(--sps-gold);
    background: linear-gradient(135deg, #d3aa65 0%, #ad7937 100%);
    box-shadow: 0 12px 30px rgba(185, 139, 69, 0.25);
    color: var(--sps-navy);
}

.btn-brand:hover,
.btn-brand:focus {
    border-color: var(--sps-gold-light);
    background: linear-gradient(135deg, #dfbb7c 0%, #bb8640 100%);
    box-shadow: 0 18px 38px rgba(185, 139, 69, 0.32);
    color: var(--sps-navy);
}

.btn-outline-brand {
    border: 1px solid rgba(11, 31, 67, 0.25);
    background: transparent;
    color: var(--sps-navy);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    border-color: var(--sps-navy);
    background: var(--sps-navy);
    color: white;
}

.btn-hero-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: white;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
    border-color: white;
    background: white;
    color: var(--sps-navy);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    border-bottom: 1px solid rgba(185, 139, 69, 0.45);
    padding-bottom: 5px;
    color: var(--sps-navy);
    font-weight: 800;
    transition: gap var(--transition), border-color var(--transition), color var(--transition);
}

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

/* Utility and navigation */
.utility-bar {
    position: relative;
    z-index: 1031;
    padding: 8px 0;
    background: var(--sps-navy);
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.73rem;
}

.utility-bar p {
    letter-spacing: 0.04em;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.utility-links a,
.utility-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.73rem;
    transition: color var(--transition);
}

.utility-links a:hover,
.utility-button:hover {
    color: var(--sps-gold-light);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(11, 31, 67, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 5px 25px rgba(11, 31, 67, 0.04);
    backdrop-filter: blur(18px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 14px 40px rgba(11, 31, 67, 0.1);
}

.site-header .navbar {
    min-height: 92px;
    padding: 7px 0;
}

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

.navbar-brand img {
    width: 100%;
    height: auto;
}

.navbar-nav {
    gap: 5px;
}

.navbar .nav-link {
    position: relative;
    padding: 18px 15px !important;
    color: #344054;
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0.01em;
}

.navbar .nav-link::after {
    position: absolute;
    right: 15px;
    bottom: 10px;
    left: 15px;
    height: 2px;
    background: linear-gradient(90deg, var(--sps-gold), var(--sps-gold-light));
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--sps-navy);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-toggler {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(11, 31, 67, 0.12);
    border-radius: 50%;
    padding: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--sps-navy);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    background: var(--sps-navy);
    color: white;
}

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

.hero-media img {
    object-fit: cover;
    object-position: center 55%;
    animation: heroScale 18s ease-in-out infinite alternate;
}

@keyframes heroScale {
    from { transform: scale(1.01); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(4, 15, 35, 0.94) 0%, rgba(6, 22, 49, 0.82) 42%, rgba(6, 22, 49, 0.32) 74%, rgba(6, 22, 49, 0.22) 100%),
        linear-gradient(0deg, rgba(6, 20, 44, 0.58) 0%, transparent 48%);
}

.hero-overlay::after {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(to right, black, transparent 75%);
}

.hero-route-line {
    position: absolute;
    top: 14%;
    right: -13%;
    width: 62%;
    height: 70%;
    border-top: 2px solid rgba(213, 174, 104, 0.42);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.hero-route-line::after {
    position: absolute;
    top: -6px;
    left: 42%;
    width: 11px;
    height: 11px;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: var(--sps-gold);
    box-shadow: 0 0 0 8px rgba(185,139,69,.14);
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--sps-gold-light);
    box-shadow: 0 0 0 6px rgba(213, 174, 104, 0.12);
}

.display-title {
    max-width: 900px;
    margin: 0;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.2rem, 6vw, 6.55rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.96;
}

.display-title span {
    display: block;
    color: var(--sps-gold-light);
}

.hero-copy {
    max-width: 660px;
    margin: 30px 0 34px;
    color: rgba(255, 255, 255, 0.74);
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
    line-height: 1.8;
}

.hero-meta {
    position: absolute;
    right: 4vw;
    bottom: 38px;
    z-index: 3;
    align-items: center;
    gap: 34px;
}

.hero-meta > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.78);
    font-size: .75rem;
}

.hero-meta span {
    color: var(--sps-gold-light);
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
}

.hero-meta strong {
    font-weight: 700;
}

/* Booking */
.booking-shell {
    position: relative;
    z-index: 5;
    margin-top: -58px;
    padding-bottom: 36px;
}

.booking-card {
    overflow: hidden;
    border: 1px solid rgba(11, 31, 67, 0.08);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-lg);
}

.booking-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--sps-border);
    background: #f8f9fb;
}

.booking-tab {
    position: relative;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-right: 1px solid var(--sps-border);
    background: transparent;
    color: var(--sps-muted);
    font-size: .85rem;
    font-weight: 800;
    transition: background var(--transition), color var(--transition);
}

.booking-tab:last-child {
    border-right: 0;
}

.booking-tab::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sps-gold), var(--sps-gold-light));
    content: "";
    transform: scaleX(0);
    transition: transform var(--transition);
}

.booking-tab:hover,
.booking-tab.active {
    background: white;
    color: var(--sps-navy);
}

.booking-tab.active::after {
    transform: scaleX(1);
}

.booking-panel {
    display: none;
    padding: clamp(25px, 3vw, 42px);
}

.booking-panel.active {
    display: block;
    animation: panelFade .35s ease;
}

@keyframes panelFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-title {
    margin: 0;
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    line-height: 1.12;
}

.trip-type {
    display: inline-flex;
    gap: 4px;
    border-radius: 999px;
    padding: 4px;
    background: var(--sps-surface);
}

.trip-type label {
    cursor: pointer;
}

.trip-type input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.trip-type span {
    display: block;
    border-radius: 999px;
    padding: 8px 16px;
    color: var(--sps-muted);
    font-size: .75rem;
    font-weight: 800;
}

.trip-type input:checked + span {
    background: var(--sps-navy);
    box-shadow: 0 6px 15px rgba(11,31,67,.18);
    color: white;
}

.form-label {
    margin-bottom: 8px;
    color: #475467;
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.form-control,
.form-select {
    min-height: 54px;
    border: 1px solid #dce1e8;
    border-radius: 12px;
    padding: 12px 15px;
    background-color: white;
    color: var(--sps-ink);
    font-size: .9rem;
    font-weight: 600;
    box-shadow: none !important;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--sps-gold);
    box-shadow: 0 0 0 4px rgba(185,139,69,.12) !important;
}

textarea.form-control {
    resize: vertical;
}

.input-icon-wrap {
    position: relative;
}

.input-icon-wrap > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    color: var(--sps-gold);
    transform: translateY(-50%);
    pointer-events: none;
}

.input-icon-wrap .form-control,
.input-icon-wrap .form-select {
    padding-left: 42px;
}

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

.booking-extras {
    padding-top: 7px;
}

.check-pill,
.passenger-select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sps-muted);
    font-size: .8rem;
    font-weight: 700;
}

.check-pill input {
    width: 16px;
    height: 16px;
    accent-color: var(--sps-navy);
}

.passenger-select select {
    border: 0;
    background: transparent;
    color: var(--sps-navy);
    font-weight: 800;
    outline: none;
}

.compact-panel-copy {
    margin-bottom: 26px;
}

.compact-panel-copy p {
    max-width: 700px;
    margin: 12px 0 0;
    color: var(--sps-muted);
}

/* Home intro */
.intro-section {
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    position: absolute;
    top: 8%;
    right: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(185,139,69,.15);
    border-radius: 50%;
    content: "";
}

.section-media {
    position: relative;
}

.composition-media {
    min-height: 590px;
}

.composition-media .main-image {
    width: 88%;
    height: 590px;
    border-radius: 6px 95px 6px 6px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.floating-stat {
    position: absolute;
    right: 0;
    bottom: 45px;
    display: grid;
    width: min(330px, 58%);
    grid-template-columns: auto 1fr;
    gap: 4px 13px;
    border: 1px solid rgba(255,255,255,.68);
    border-radius: 18px;
    padding: 24px;
    background: rgba(255,255,255,.9);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(15px);
}

.stat-icon {
    display: grid;
    width: 44px;
    height: 44px;
    grid-row: span 2;
    place-items: center;
    border-radius: 50%;
    background: var(--sps-navy);
    color: var(--sps-gold-light);
    font-size: 1.1rem;
}

.floating-stat strong {
    color: var(--sps-navy);
    font-size: .92rem;
}

.floating-stat small {
    color: var(--sps-muted);
    line-height: 1.5;
}

.gold-corner {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 130px;
    height: 130px;
    border-top: 3px solid var(--sps-gold);
    border-left: 3px solid var(--sps-gold);
    opacity: .65;
}

.feature-list {
    display: grid;
    gap: 20px;
    margin-top: 34px;
}

.feature-list-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
}

.feature-list-item > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(185,139,69,.3);
    border-radius: 50%;
    background: var(--sps-gold-pale);
    color: var(--sps-navy);
}

.feature-list-item h3 {
    margin: 0 0 4px;
    color: var(--sps-navy);
    font-size: 1rem;
    font-weight: 800;
}

.feature-list-item p {
    margin: 0;
    color: var(--sps-muted);
    font-size: .9rem;
}

/* Destinations */
.destinations-section {
    background: var(--sps-ivory);
}

.destination-card {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--sps-navy);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}

.destination-card img,
.destination-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.destination-card img {
    object-fit: cover;
    transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

.destination-overlay {
    z-index: 1;
    background: linear-gradient(0deg, rgba(5,18,40,.94) 0%, rgba(5,18,40,.4) 52%, rgba(5,18,40,.06) 100%);
}

.destination-code {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(5,18,40,.28);
    color: white;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .15em;
    backdrop-filter: blur(10px);
}

.destination-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 32px;
    color: white;
}

.destination-content > span {
    color: var(--sps-gold-light);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.destination-content h3 {
    margin: 4px 0 8px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.1rem, 3vw, 3rem);
}

.destination-content p {
    max-width: 420px;
    margin: 0 0 18px;
    color: rgba(255,255,255,.72);
    font-size: .9rem;
}

.destination-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: .82rem;
    font-weight: 800;
}

.destination-content a:hover {
    color: var(--sps-gold-light);
}

/* Experience band */
.experience-band {
    position: relative;
    overflow: hidden;
    background: var(--sps-navy);
}

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

.experience-band-media img {
    object-fit: cover;
    object-position: center;
}

.experience-band-overlay {
    background: linear-gradient(90deg, rgba(5,18,40,.18), rgba(5,18,40,.38) 45%, rgba(5,18,40,.9) 72%, rgba(5,18,40,.97));
}

.experience-glass-card {
    margin: 70px 0;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius-md);
    padding: clamp(30px, 4vw, 52px);
    background: rgba(7,23,50,.74);
    box-shadow: 0 28px 80px rgba(0,0,0,.3);
    color: white;
    backdrop-filter: blur(22px);
}

.experience-glass-card h2 {
    margin: 0 0 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.04;
}

.experience-glass-card > p {
    color: rgba(255,255,255,.68);
}

.mini-metrics {
    display: grid;
    gap: 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,.12);
}

.mini-metrics > div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 15px 0;
}

.mini-metrics strong {
    color: var(--sps-gold-light);
}

.mini-metrics span {
    color: rgba(255,255,255,.72);
    font-size: .88rem;
}

/* Values */
.values-section {
    background-image: linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)), url('../images/section-pattern.webp');
    background-size: cover;
}

.value-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    overflow: hidden;
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    padding: 34px;
    background: white;
    box-shadow: 0 14px 40px rgba(11,31,67,.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.value-card:hover {
    border-color: rgba(185,139,69,.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.value-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    background: var(--sps-navy);
    color: var(--sps-gold-light);
    font-size: 1.35rem;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(11,31,67,.08);
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.value-card h3 {
    margin: 30px 0 12px;
    color: var(--sps-navy);
    font-size: 1.18rem;
    font-weight: 800;
}

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

/* App section */
.app-section {
    padding: 0 0 clamp(82px, 9vw, 132px);
}

.app-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    padding: clamp(42px, 6vw, 84px);
    background: radial-gradient(circle at 85% 0%, #25558e 0%, transparent 33%), linear-gradient(135deg, #081a39 0%, #102f5f 100%);
    box-shadow: var(--shadow-lg);
}

.app-glow {
    position: absolute;
    top: -280px;
    right: -180px;
    width: 670px;
    height: 670px;
    border: 1px solid rgba(213,174,104,.3);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(213,174,104,.03), 0 0 0 160px rgba(213,174,104,.02);
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 24px;
    margin: 30px 0;
}

.app-features span {
    color: rgba(255,255,255,.78);
    font-size: .86rem;
}

.app-features i {
    margin-right: 6px;
    color: var(--sps-gold-light);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    display: inline-flex;
    min-width: 165px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;
    padding: 10px 16px;
    background: rgba(255,255,255,.07);
    color: white;
    backdrop-filter: blur(8px);
    transition: background var(--transition), transform var(--transition);
}

.store-button:hover {
    background: rgba(255,255,255,.14);
    color: white;
    transform: translateY(-2px);
}

.store-button > i {
    font-size: 1.65rem;
}

.store-button span {
    display: flex;
    flex-direction: column;
    font-size: .96rem;
    font-weight: 800;
    line-height: 1.15;
}

.store-button small {
    font-size: .57rem;
    font-weight: 500;
}

.phone-stage {
    position: relative;
    min-height: 500px;
}

.phone {
    position: absolute;
    width: 248px;
    height: 500px;
    border: 7px solid #0b1323;
    border-radius: 38px;
    padding: 8px;
    background: #0b1323;
    box-shadow: 0 40px 80px rgba(0,0,0,.35);
}

.phone::before {
    position: absolute;
    top: 13px;
    left: 50%;
    z-index: 3;
    width: 78px;
    height: 20px;
    border-radius: 999px;
    background: #0a111f;
    content: "";
    transform: translateX(-50%);
}

.phone-back {
    top: 30px;
    left: 45px;
    transform: rotate(-9deg);
}

.phone-front {
    top: 0;
    right: 40px;
    transform: rotate(6deg);
}

.phone-screen {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 27px;
    padding: 58px 20px 20px;
    background: linear-gradient(160deg, var(--sps-navy), #214b81);
    color: white;
}

.phone-screen::after {
    position: absolute;
    right: -95px;
    bottom: 35px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(213,174,104,.28);
    border-radius: 50%;
    content: "";
}

.phone-screen.light {
    background: #f5f7fa;
    color: var(--sps-navy);
}

.phone-time {
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: .63rem;
    font-weight: 700;
}

.phone-plane {
    width: 90px;
    margin: 35px auto 48px;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.phone-screen > p,
.app-greeting {
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: .65rem;
}

.phone-screen > h3 {
    margin: 5px 0 22px;
    font-size: 1.05rem;
}

.boarding-pass-mini {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 10px;
    border-radius: 18px;
    padding: 18px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
}

.boarding-pass-mini span,
.boarding-pass-mini small {
    color: rgba(255,255,255,.68);
    font-size: .66rem;
}

.boarding-pass-mini strong {
    color: var(--sps-gold-light);
}

.boarding-pass-mini small {
    grid-column: 1 / -1;
}

.app-logo-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 36px;
    font-weight: 800;
}

.app-logo-mini img {
    width: 31px;
}

.phone-screen.light .app-greeting {
    color: #98a2b3;
}

.phone-screen.light h3 {
    font-size: 1.25rem;
}

.app-search-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    border-radius: 20px;
    padding: 21px 16px;
    background: white;
    box-shadow: 0 12px 30px rgba(11,31,67,.1);
    text-align: center;
    font-weight: 800;
}

.app-search-box i {
    color: var(--sps-gold);
}

.app-action-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 22px;
}

.app-action-row span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    border-radius: 13px;
    padding: 12px 4px;
    background: #e9edf3;
    font-size: .58rem;
    font-weight: 700;
}

.app-action-row i {
    color: var(--sps-gold);
    font-size: 1.05rem;
}

/* Final CTA */
.final-cta-section {
    background: white;
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(185,139,69,.25);
    border-radius: var(--radius-lg);
    padding: clamp(55px, 8vw, 100px) 30px;
    background: linear-gradient(135deg, rgba(248,245,238,.95), rgba(255,255,255,.98));
}

.final-cta-card .section-copy {
    max-width: 650px;
    margin-bottom: 30px;
}

.final-cta-plane {
    position: absolute;
    top: -70px;
    right: -20px;
    width: 330px;
    opacity: .045;
    transform: rotate(-12deg);
}

/* Inner page hero */
.inner-hero {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--sps-navy);
    color: white;
}

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

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

.inner-hero-about .inner-hero-media img,
.inner-hero-fleet .inner-hero-media img {
    object-position: center 55%;
}

.inner-hero-experience .inner-hero-media img {
    object-position: center;
}

.inner-hero-overlay {
    background: linear-gradient(90deg, rgba(5,18,40,.94) 0%, rgba(5,18,40,.74) 48%, rgba(5,18,40,.2) 100%), linear-gradient(0deg, rgba(5,18,40,.45), transparent 50%);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 150px 0 120px;
}

.inner-hero-content h1 {
    margin: 0 0 24px;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: -.05em;
    line-height: .98;
}

.inner-hero-content p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

/* About */
.principle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.principle-card {
    min-height: 310px;
    border-top: 3px solid var(--sps-gold);
    border-radius: 0 0 18px 18px;
    padding: 34px 28px;
    background: var(--sps-surface);
}

.principle-card > span {
    color: var(--sps-gold);
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
}

.principle-card h3 {
    margin: 25px 0 12px;
    color: var(--sps-navy);
    font-size: 1.13rem;
    font-weight: 800;
}

.principle-card p {
    margin: 0;
    color: var(--sps-muted);
    font-size: .9rem;
}

.vision-panel-section {
    padding-bottom: clamp(82px, 9vw, 132px);
}

.vision-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--sps-navy);
    box-shadow: var(--shadow-lg);
}

.vision-panel-image img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.vision-panel-content {
    height: 100%;
    padding: clamp(42px, 6vw, 82px);
    color: white;
}

.vision-panel-content h2 {
    margin: 0 0 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.04;
}

.vision-panel-content > p {
    color: rgba(255,255,255,.66);
}

.elegant-list {
    display: grid;
    gap: 20px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.elegant-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    color: rgba(255,255,255,.72);
}

.elegant-list i {
    margin-top: 5px;
    color: var(--sps-gold-light);
}

.elegant-list strong {
    color: white;
}

.leadership-placeholder-section {
    background: var(--sps-ivory);
}

.leadership-abstract {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 65% 35%, #254f84, transparent 35%), var(--sps-navy);
}

.leadership-abstract > img {
    width: 42%;
    filter: brightness(0) invert(1);
    opacity: .13;
    transform: rotate(-10deg);
}

.leadership-ring {
    position: absolute;
    border: 1px solid rgba(213,174,104,.28);
    border-radius: 50%;
}

.ring-one {
    width: 430px;
    height: 430px;
}

.ring-two {
    width: 300px;
    height: 300px;
}

.leadership-quote {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    padding: 24px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    backdrop-filter: blur(12px);
}

/* Destination page */
.route-finder-section {
    position: relative;
    z-index: 4;
    margin-top: -48px;
}

.route-finder-card {
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    padding: clamp(26px, 4vw, 42px);
    background: white;
    box-shadow: var(--shadow-md);
}

.route-finder-card h2 {
    margin: 0;
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
}

.destination-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.destination-feature-card {
    overflow: hidden;
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.destination-feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.destination-feature-media {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.destination-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

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

.destination-status {
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255,255,255,.9);
    color: var(--sps-navy);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.destination-feature-content {
    position: relative;
    padding: 30px;
}

.destination-feature-content > div:first-child > span {
    color: var(--sps-gold);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.destination-feature-content h2 {
    margin: 4px 0 13px;
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
}

.destination-feature-content p {
    margin: 0;
    color: var(--sps-muted);
    font-size: .92rem;
}

.destination-airport-code {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(11,31,67,.09);
    font-family: "Playfair Display", serif;
    font-size: 3.6rem;
    font-weight: 700;
}

.destination-themes-section {
    background: var(--sps-surface);
}

.theme-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border-radius: var(--radius-md);
    padding: 38px;
    background: var(--sps-navy);
    color: white;
}

.theme-card::before {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(213,174,104,.24);
    border-radius: 50%;
    content: "";
}

.theme-card > i {
    color: var(--sps-gold-light);
    font-size: 2rem;
}

.theme-card h3 {
    margin: 55px 0 12px;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.theme-card p {
    color: rgba(255,255,255,.65);
}

.theme-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sps-gold-light);
    font-size: .82rem;
    font-weight: 800;
}

.theme-card-island {
    background: linear-gradient(135deg, #0f5262, #0a283d);
}

.theme-card-business {
    background: linear-gradient(135deg, #49351f, #16233e);
}

/* Experience page */
.journey-timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
}

.journey-step {
    position: relative;
    text-align: center;
}

.journey-step > span {
    position: absolute;
    top: -12px;
    right: 18%;
    color: rgba(11,31,67,.12);
    font-family: "Playfair Display", serif;
    font-size: 2.6rem;
}

.journey-step > i {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    place-items: center;
    border: 1px solid rgba(185,139,69,.3);
    border-radius: 50%;
    background: var(--sps-gold-pale);
    color: var(--sps-navy);
    font-size: 1.65rem;
}

.journey-step h3 {
    color: var(--sps-navy);
    font-size: 1rem;
    font-weight: 800;
}

.journey-step p {
    margin: 0;
    color: var(--sps-muted);
    font-size: .82rem;
}

.journey-line {
    width: clamp(25px, 4vw, 75px);
    height: 1px;
    margin-top: 38px;
    background: linear-gradient(90deg, rgba(185,139,69,.2), rgba(185,139,69,.8), rgba(185,139,69,.2));
}

.split-feature-section {
    padding-bottom: clamp(82px, 9vw, 132px);
}

.split-feature-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--sps-navy);
    box-shadow: var(--shadow-lg);
}

.split-feature-media,
.split-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.split-feature-media img {
    object-fit: cover;
}

.split-feature-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 82px);
    color: white;
}

.split-feature-content h2 {
    margin: 0 0 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
    line-height: 1.03;
}

.split-feature-content > p {
    color: rgba(255,255,255,.67);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.feature-tags span {
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    padding: 7px 12px;
    color: rgba(255,255,255,.76);
    font-size: .72rem;
}

.experience-detail-card {
    height: 100%;
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    padding: 36px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.experience-detail-icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 17px;
    background: var(--sps-navy);
    color: var(--sps-gold-light);
    font-size: 1.4rem;
}

.experience-detail-card h3 {
    margin: 28px 0 12px;
    color: var(--sps-navy);
    font-size: 1.25rem;
    font-weight: 800;
}

.experience-detail-card p,
.experience-detail-card li {
    color: var(--sps-muted);
    font-size: .9rem;
}

.experience-detail-card ul {
    display: grid;
    gap: 7px;
    margin: 22px 0 0;
    padding-left: 18px;
}

.lounge-section {
    position: relative;
    overflow: hidden;
    background: var(--sps-navy);
}

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

.lounge-media img {
    object-fit: cover;
}

.lounge-overlay {
    background: linear-gradient(90deg, rgba(5,18,40,.95), rgba(5,18,40,.76) 44%, rgba(5,18,40,.18));
}

.lounge-copy {
    padding: 80px 0;
    color: white;
}

.lounge-copy h2 {
    margin: 0 0 22px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
}

.lounge-copy p {
    color: rgba(255,255,255,.68);
    font-size: 1.04rem;
}

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

.accessibility-grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 14px;
    border: 1px solid var(--sps-border);
    border-radius: 18px;
    padding: 24px;
    background: var(--sps-surface);
}

.accessibility-grid i {
    display: grid;
    width: 42px;
    height: 42px;
    grid-row: span 2;
    place-items: center;
    border-radius: 50%;
    background: var(--sps-navy);
    color: var(--sps-gold-light);
}

.accessibility-grid strong {
    color: var(--sps-navy);
    font-size: .9rem;
}

.accessibility-grid span {
    color: var(--sps-muted);
    font-size: .78rem;
}

/* Fleet page */
.fleet-category-list {
    display: grid;
    gap: 16px;
}

.fleet-category-card {
    display: grid;
    grid-template-columns: 80px 72px 1fr 54px;
    align-items: center;
    gap: 24px;
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    padding: 26px 30px;
    background: white;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.fleet-category-card:hover {
    border-color: rgba(185,139,69,.5);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.fleet-number {
    color: rgba(11,31,67,.13);
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 700;
}

.fleet-icon {
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border-radius: 18px;
    background: var(--sps-navy);
    color: var(--sps-gold-light);
    font-size: 1.35rem;
}

.fleet-copy > span {
    color: var(--sps-gold);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.fleet-copy h2 {
    margin: 3px 0 7px;
    color: var(--sps-navy);
    font-size: 1.3rem;
    font-weight: 800;
}

.fleet-copy p {
    margin: 0;
    color: var(--sps-muted);
    font-size: .87rem;
}

.fleet-arrow {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--sps-border);
    border-radius: 50%;
    color: var(--sps-navy);
}

.fleet-visual-section {
    padding-bottom: clamp(82px, 9vw, 132px);
}

.fleet-visual-card {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--sps-navy);
    box-shadow: var(--shadow-lg);
}

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

.fleet-visual-media img {
    object-fit: cover;
}

.fleet-visual-overlay {
    background: linear-gradient(0deg, rgba(5,18,40,.95), rgba(5,18,40,.08) 70%);
}

.fleet-visual-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: clamp(34px, 5vw, 68px);
    color: white;
}

.fleet-visual-content h2 {
    max-width: 760px;
    margin: 0 0 32px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 1;
}

.fleet-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.fleet-principles > div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 15px;
    padding: 16px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
}

.fleet-principles i {
    grid-row: span 2;
    color: var(--sps-gold-light);
}

.fleet-principles strong {
    font-size: .82rem;
}

.fleet-principles span {
    color: rgba(255,255,255,.6);
    font-size: .68rem;
}

.cabin-comparison-section {
    background: var(--sps-surface);
}

.cabin-card {
    position: relative;
    height: 100%;
    min-height: 430px;
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    padding: 36px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.cabin-card.featured {
    border-color: rgba(185,139,69,.45);
    background: var(--sps-navy);
    box-shadow: var(--shadow-md);
    color: white;
    transform: translateY(-12px);
}

.cabin-label {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--sps-gold-pale);
    color: var(--sps-navy);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cabin-card h3 {
    margin: 35px 0 14px;
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

.cabin-card p,
.cabin-card li {
    color: var(--sps-muted);
    font-size: .9rem;
}

.cabin-card ul {
    display: grid;
    gap: 11px;
    margin-top: 28px;
    padding-left: 18px;
}

.cabin-card.featured h3 {
    color: white;
}

.cabin-card.featured p,
.cabin-card.featured li {
    color: rgba(255,255,255,.65);
}

/* Contact */
.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 40px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--sps-border);
    padding: 0 0 18px;
}

.contact-info-item > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--sps-navy);
    color: var(--sps-gold-light);
}

.contact-info-item small {
    display: block;
    color: var(--sps-muted);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
    margin: 1px 0 0;
    color: var(--sps-navy);
    font-weight: 750;
}

.contact-form-card {
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 56px);
    background: white;
    box-shadow: var(--shadow-md);
}

.contact-form-card > h2 {
    margin: 0;
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.form-note {
    max-width: 420px;
    color: var(--sps-muted);
    line-height: 1.5;
}

.premium-alert {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: start;
    border: 0;
    border-radius: 15px;
    padding: 18px;
}

.premium-alert > i {
    margin-top: 2px;
    font-size: 1.2rem;
}

.premium-alert p,
.premium-alert ul {
    margin: 2px 0 0;
    font-size: .82rem;
}

.contact-topic-card {
    display: block;
    height: 100%;
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-md);
    padding: 32px;
    background: var(--sps-surface);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.contact-topic-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.contact-topic-card > i {
    color: var(--sps-gold);
    font-size: 1.7rem;
}

.contact-topic-card h3 {
    margin: 22px 0 8px;
    color: var(--sps-navy);
    font-size: 1.13rem;
    font-weight: 800;
}

.contact-topic-card p {
    color: var(--sps-muted);
    font-size: .87rem;
}

.contact-topic-card span {
    color: var(--sps-navy);
    font-size: .78rem;
    font-weight: 800;
}

/* Booking result page */
.booking-page-hero {
    padding: 85px 0;
    background: radial-gradient(circle at 80% 20%, rgba(185,139,69,.26), transparent 28%), linear-gradient(135deg, var(--sps-navy), var(--sps-navy-2));
    color: white;
}

.booking-page-heading {
    display: grid;
    max-width: 900px;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
}

.booking-page-icon {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    color: var(--sps-gold-light);
    font-size: 2rem;
}

.booking-page-heading h1 {
    margin: 0 0 12px;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1;
}

.booking-page-heading p {
    max-width: 760px;
    margin: 0;
    color: rgba(255,255,255,.68);
}

.booking-result-card {
    border: 1px solid var(--sps-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 60px);
    background: white;
    box-shadow: var(--shadow-md);
}

.demo-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 12px;
    background: var(--sps-gold-pale);
    color: var(--sps-navy);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.route-summary {
    display: grid;
    grid-template-columns: 1fr minmax(180px, 1.6fr) 1fr;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    margin: 55px auto 35px;
    text-align: center;
}

.route-summary small,
.search-summary-grid small,
.service-summary small {
    display: block;
    color: var(--sps-muted);
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.route-summary strong {
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.route-summary-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: var(--sps-gold);
}

.route-summary-line span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sps-gold));
}

.route-summary-line span:last-child {
    background: linear-gradient(90deg, var(--sps-gold), transparent);
}

.route-summary-line i {
    padding: 0 12px;
    font-size: 1.4rem;
    transform: rotate(90deg);
}

.search-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--sps-border);
    border-radius: 16px;
    background: var(--sps-border);
}

.search-summary-grid > div {
    padding: 20px;
    background: var(--sps-surface);
}

.search-summary-grid strong,
.service-summary strong {
    color: var(--sps-navy);
    font-size: .92rem;
}

.empty-state {
    max-width: 760px;
    margin: 60px auto 0;
    text-align: center;
}

.empty-state > img {
    width: 110px;
    margin: 0 auto 20px;
    opacity: .25;
}

.empty-state h2 {
    color: var(--sps-navy);
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.empty-state p {
    margin: 0 auto 26px;
    color: var(--sps-muted);
}

.service-summary {
    display: flex;
    max-width: 720px;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin: 55px auto 0;
    border-radius: 18px;
    padding: 24px;
    background: var(--sps-surface);
}

.service-summary > i {
    color: var(--sps-gold);
    font-size: 2rem;
}

/* Footer */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 85px 0 0;
    background: #07172f;
    color: white;
}

.footer-glow {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,139,69,.16), transparent 68%);
}

.footer-logo {
    display: inline-block;
    width: 220px;
    margin-bottom: 24px;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(255,255,255,.96);
}

.footer-intro {
    max-width: 390px;
    color: rgba(255,255,255,.56);
    font-size: .92rem;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    color: rgba(255,255,255,.72);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-links a:hover {
    border-color: var(--sps-gold);
    background: var(--sps-gold);
    color: var(--sps-navy);
}

.footer-heading {
    margin: 0 0 22px;
    color: var(--sps-gold-light);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,.62);
    font-size: .85rem;
    transition: color var(--transition), padding var(--transition);
}

.footer-links a:hover {
    padding-left: 4px;
    color: white;
}

.newsletter-card {
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 28px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(14px);
}

.newsletter-card h2 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
}

.newsletter-card p {
    color: rgba(255,255,255,.55);
    font-size: .82rem;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 20px;
}

.newsletter-form .form-control {
    min-height: 48px;
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,.4);
}

.newsletter-form .btn {
    min-height: 48px;
    padding-right: 20px;
    padding-left: 20px;
}

.newsletter-card small {
    display: block;
    min-height: 20px;
    margin-top: 8px;
    color: var(--sps-gold-light);
}

.footer-bottom {
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 24px 0;
    color: rgba(255,255,255,.4);
    font-size: .72rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a:hover {
    color: white;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: var(--sps-navy);
    box-shadow: var(--shadow-md);
    color: var(--sps-gold-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity var(--transition), transform var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Reveal animation */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.7,.2,1);
}

.reveal-up { transform: translateY(26px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 190ms; }
.delay-3 { transition-delay: 280ms; }

/* Responsive */
@media (max-width: 1199.98px) {
    .site-header .navbar {
        min-height: 82px;
    }

    .navbar-brand {
        width: 150px;
    }

    .navbar-collapse {
        margin-top: 8px;
        border-top: 1px solid var(--sps-border);
        padding: 18px 0 24px;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar .nav-link {
        padding: 12px 4px !important;
    }

    .navbar .nav-link::after {
        right: auto;
        bottom: 5px;
        left: 4px;
        width: 30px;
    }

    .nav-actions {
        margin-top: 14px;
    }

    .hero-section {
        min-height: 720px;
    }

    .hero-meta {
        display: none !important;
    }

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

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

    .phone-back {
        left: 10px;
    }

    .phone-front {
        right: 10px;
    }
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 85px 0;
    }

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

    .hero-media img {
        object-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(90deg, rgba(4,15,35,.93), rgba(6,22,49,.68) 75%, rgba(6,22,49,.5)), linear-gradient(0deg, rgba(6,20,44,.58), transparent 48%);
    }

    .booking-shell {
        margin-top: -36px;
    }

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

    .booking-tab:nth-child(2) {
        border-right: 0;
    }

    .booking-tab:nth-child(-n+2) {
        border-bottom: 1px solid var(--sps-border);
    }

    .composition-media {
        max-width: 720px;
        min-height: 520px;
        margin: 0 auto 25px;
    }

    .composition-media .main-image {
        height: 520px;
    }

    .experience-band-overlay {
        background: linear-gradient(0deg, rgba(5,18,40,.95), rgba(5,18,40,.34));
    }

    .experience-glass-card {
        max-width: 680px;
        margin: 90px auto;
    }

    .phone-stage {
        max-width: 610px;
        margin: 10px auto 0;
    }

    .destination-page-grid {
        grid-template-columns: 1fr;
    }

    .journey-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .journey-line {
        display: none;
    }

    .split-feature-media,
    .split-feature-media img {
        min-height: 500px;
    }

    .lounge-overlay {
        background: linear-gradient(90deg, rgba(5,18,40,.92), rgba(5,18,40,.58));
    }

    .fleet-category-card {
        grid-template-columns: 60px 58px 1fr;
        gap: 16px;
    }

    .fleet-arrow {
        display: none;
    }

    .cabin-card.featured {
        transform: none;
    }

    .booking-page-heading {
        grid-template-columns: 1fr;
    }

    .booking-page-icon {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .container-xxl {
        padding-right: 20px;
        padding-left: 20px;
    }

    .site-header .navbar {
        min-height: 74px;
    }

    .navbar-brand {
        width: 132px;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch !important;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .hero-section {
        min-height: 660px;
    }

    .hero-content .min-vh-75 {
        min-height: 640px;
    }

    .display-title {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .hero-copy {
        margin-top: 22px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .booking-shell {
        margin-top: -22px;
    }

    .booking-tab {
        min-height: 58px;
        gap: 6px;
        font-size: .73rem;
    }

    .booking-panel {
        padding: 24px 18px;
    }

    .trip-type {
        width: 100%;
    }

    .trip-type label {
        flex: 1;
        text-align: center;
    }

    .booking-extras {
        align-items: flex-start !important;
        flex-direction: column;
    }

    .composition-media {
        min-height: 430px;
    }

    .composition-media .main-image {
        width: 95%;
        height: 430px;
        border-radius: 5px 60px 5px 5px;
    }

    .floating-stat {
        right: 0;
        bottom: 20px;
        width: 78%;
        padding: 18px;
    }

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

    .destination-content {
        padding: 26px;
    }

    .app-card {
        border-radius: 24px;
        padding: 42px 24px;
    }

    .phone-stage {
        min-height: 440px;
        transform: scale(.82);
        transform-origin: top center;
        margin-bottom: -75px;
    }

    .phone-back {
        left: 0;
    }

    .phone-front {
        right: 0;
    }

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

    .principle-card {
        min-height: auto;
    }

    .vision-panel-image img {
        min-height: 420px;
    }

    .inner-hero {
        min-height: 520px;
    }

    .inner-hero-content {
        padding: 110px 0 85px;
    }

    .inner-hero-content h1 {
        font-size: clamp(2.8rem, 13vw, 4.8rem);
    }

    .destination-feature-media {
        height: 300px;
    }

    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 38px;
    }

    .split-feature-media,
    .split-feature-media img {
        min-height: 390px;
    }

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

    .fleet-category-card {
        grid-template-columns: 50px 1fr;
        align-items: start;
        padding: 22px;
    }

    .fleet-icon {
        width: 50px;
        height: 50px;
    }

    .fleet-copy {
        grid-column: 1 / -1;
    }

    .fleet-visual-card {
        min-height: 760px;
    }

    .fleet-principles {
        grid-template-columns: 1fr;
    }

    .fleet-visual-content h2 {
        font-size: 2.7rem;
    }

    .route-summary {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .route-summary-line {
        width: 220px;
        margin: 0 auto;
        transform: rotate(90deg);
    }

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

    .service-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

@media (max-width: 479.98px) {
    .hero-badge {
        letter-spacing: .07em;
    }

    .booking-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .booking-tab {
        padding: 8px 4px;
    }

    .floating-stat {
        width: 88%;
    }

    .phone-stage {
        min-height: 405px;
        transform: scale(.73);
        margin-bottom: -125px;
    }

    .phone-back {
        left: -25px;
    }

    .phone-front {
        right: -25px;
    }

    .destination-feature-content {
        padding: 24px;
    }

    .destination-airport-code {
        font-size: 2.8rem;
    }

    .search-summary-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-up,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}

/* About page â€” Founder and Chairman profile */
.founder-profile-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(213, 174, 104, 0.12), transparent 28%),
        linear-gradient(180deg, var(--sps-ivory) 0%, #ffffff 100%);
}

.founder-profile-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(213, 174, 104, 0.24);
    border-radius: clamp(28px, 4vw, 48px);
    background:
        radial-gradient(circle at 95% 0%, rgba(185, 139, 69, 0.22), transparent 30%),
        linear-gradient(135deg, #07162f 0%, #0b2450 52%, #173d78 100%);
    box-shadow: 0 36px 90px rgba(5, 18, 40, 0.24);
}

.founder-profile-card::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
    pointer-events: none;
}

.founder-profile-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgba(213, 174, 104, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.founder-orbit-one {
    right: -180px;
    bottom: -210px;
    width: 560px;
    height: 560px;
}

.founder-orbit-two {
    right: -80px;
    bottom: -110px;
    width: 360px;
    height: 360px;
}

.founder-profile-plane {
    position: absolute;
    top: 60px;
    right: 60px;
    z-index: 0;
    width: clamp(110px, 12vw, 190px);
    filter: brightness(0) invert(1);
    opacity: 0.045;
    transform: rotate(-12deg);
    pointer-events: none;
}

.founder-portrait-wrap {
    position: relative;
    min-height: 820px;
    height: 100%;
    overflow: hidden;
    border-radius: clamp(24px, 3vw, 38px);
    margin: clamp(22px, 3vw, 38px);
    background: #d5c0a4;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.founder-portrait-wrap > img {
    width: 100%;
    height: 100%;
    min-height: 820px;
    object-fit: cover;
    object-position: center top;
    transition: transform 900ms ease;
}

.founder-profile-card:hover .founder-portrait-wrap > img {
    transform: scale(1.025);
}

.founder-portrait-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(5, 18, 40, 0.68) 100%);
    pointer-events: none;
}

.founder-portrait-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 17px 20px;
    background: rgba(5, 18, 40, 0.72);
    color: white;
    backdrop-filter: blur(14px);
}

.founder-portrait-badge span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.founder-portrait-badge strong {
    color: var(--sps-gold-light);
    font-size: 0.92rem;
}

.founder-profile-content {
    position: relative;
    z-index: 1;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: clamp(58px, 7vw, 106px) clamp(32px, 6vw, 88px) clamp(58px, 7vw, 96px) clamp(24px, 4vw, 58px);
    color: white;
}

.founder-name {
    max-width: 760px;
    margin: 0;
    color: white;
    font-family: "Playfair Display", serif;
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.founder-role {
    margin: 18px 0 28px;
    color: var(--sps-gold-light);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.founder-copy {
    max-width: 790px;
}

.founder-copy p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.96rem, 1.25vw, 1.08rem);
    line-height: 1.86;
}

.founder-copy p:last-child {
    margin-bottom: 0;
}

.founder-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.founder-detail-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 17px 19px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
}

.founder-detail-card span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder-detail-card strong {
    color: white;
    font-size: 0.92rem;
}

.founder-belief {
    position: relative;
    margin-top: 28px;
    border-left: 2px solid var(--sps-gold-light);
    padding: 4px 0 4px 20px;
}

.founder-belief span {
    display: block;
    margin-bottom: 6px;
    color: var(--sps-gold-light);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.founder-belief p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Playfair Display", serif;
    font-size: clamp(1.04rem, 1.55vw, 1.3rem);
    line-height: 1.55;
}

.leadership-vision-section {
    background: white;
}

.leadership-vision-copy {
    max-width: 800px;
}

.leadership-vision-copy .section-copy + .section-copy {
    margin-top: 20px;
}

@media (max-width: 1199.98px) {
    .founder-portrait-wrap,
    .founder-portrait-wrap > img {
        min-height: 760px;
    }

    .founder-profile-content {
        padding-right: 44px;
        padding-left: 18px;
    }
}

@media (max-width: 991.98px) {
    .founder-profile-card {
        border-radius: 30px;
    }

    .founder-portrait-wrap {
        min-height: 720px;
        margin: 24px 24px 0;
    }

    .founder-portrait-wrap > img {
        min-height: 720px;
    }

    .founder-profile-content {
        padding: 58px 42px 64px;
    }

    .founder-profile-plane {
        top: auto;
        right: 36px;
        bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .founder-profile-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .founder-profile-card {
        border-radius: 24px;
    }

    .founder-portrait-wrap {
        min-height: 560px;
        border-radius: 18px;
        margin: 16px 16px 0;
    }

    .founder-portrait-wrap > img {
        min-height: 560px;
    }

    .founder-portrait-badge {
        right: 14px;
        bottom: 14px;
        left: 14px;
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        padding: 14px 16px;
    }

    .founder-profile-content {
        padding: 46px 24px 54px;
    }

    .founder-name {
        font-size: clamp(2.75rem, 13vw, 4.4rem);
    }

    .founder-detail-grid {
        grid-template-columns: 1fr;
    }

    .founder-profile-plane,
    .founder-profile-orbit {
        display: none;
    }
}

@media (max-width: 479.98px) {
    .founder-portrait-wrap,
    .founder-portrait-wrap > img {
        min-height: 500px;
    }

    .founder-profile-content {
        padding: 40px 20px 46px;
    }

    .founder-copy p {
        font-size: 0.94rem;
        line-height: 1.75;
    }
}