@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --red: #cf1f2e;
    --red-dark: #a81824;

    --blue: #1f4f8b;
    --blue-dark: #102a43;
    --blue-deep: #071d30;

    --white: #ffffff;
    --offwhite: #f6f8fb;

    --text: #17212f;
    --muted: #667085;

    --border: #dbe4ef;

    --shadow:
        0 16px 40px
        rgba(15, 42, 68, 0.14);

    --shadow-soft:
        0 8px 24px
        rgba(15, 42, 68, 0.08);

    --content-width: 1180px;

}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--offwhite);

    color: var(--text);

    line-height: 1.5;

}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}


/* =========================================================
   GENERAL
========================================================= */

.content-width {

    width: min(
        calc(100% - 48px),
        var(--content-width)
    );

    margin: 0 auto;

}

.eyebrow {

    margin-bottom: 14px;

    color: var(--red);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

}

.sr-only {

    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;

}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-shrink: 0;

    color: #fff;

}

.brand img,
.brand-aircraft {

    display: block;

    width: 98px;
    height: auto;

    filter:
        drop-shadow(
            0 4px 8px
            rgba(0, 0, 0, 0.28)
        );

}

.brand-copy {

    display: flex;

    flex-direction: column;

    gap: 4px;

}

.brand-text {

    font-family:
        'Orbitron',
        sans-serif;

    font-size: 19px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 3px;

    color: #fff;

    text-transform: uppercase;

    white-space: nowrap;

}

.brand-text span {
    color: #ff4b5c;
}

.brand-tagline {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    color: #fff;

}

.header-inner {

    width: min(
        calc(100% - 48px),
        var(--content-width)
    );

    margin: 0 auto;

    padding: 22px 0;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    gap: 52px;

}

.nav {

    display: flex;

    align-items: center;

    gap: 28px;

}

.nav a {

    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    font-size: 14px;

    font-weight: 700;

}

.nav a:hover {
    color: #fff;
}


/* =========================================================
   HOMEPAGE HERO
========================================================= */

.hero {

    position: relative;

    min-height: 620px;

    overflow: hidden;

    background: var(--blue-dark);

    color: #fff;

}

.hero-background {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 48%;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(6, 24, 40, 0.84) 0%,
            rgba(6, 24, 40, 0.58) 36%,
            rgba(6, 24, 40, 0.20) 68%,
            rgba(6, 24, 40, 0.06) 100%
        ),

        linear-gradient(
            180deg,
            rgba(8, 27, 45, 0.25) 0%,
            rgba(8, 27, 45, 0.02) 55%,
            rgba(8, 27, 45, 0.18) 100%
        );

}


/* =========================================================
   HOMEPAGE HEADER
========================================================= */

.hero .site-header {

    position: relative;

    z-index: 10;

    background: transparent;

}

.hero .header-inner {

    padding: 22px 0;

    gap: 52px;

}


/* =========================================================
   HOMEPAGE HERO COPY
========================================================= */

.hero-inner {

    position: relative;

    z-index: 3;

    width: min(
        calc(100% - 48px),
        var(--content-width)
    );

    min-height: 505px;

    margin: 0 auto;

    padding: 70px 0 50px;

    display: flex;

    align-items: center;

}

.hero-copy {
    max-width: 690px;
}

.hero-eyebrow {

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

}

.hero h1 {

    margin: 0 0 18px;

    font-size:
        clamp(
            52px,
            5.8vw,
            76px
        );

    line-height: 0.98;

    letter-spacing: -2.5px;

    color: #fff;

}

.hero-description {

    margin: 0 0 18px;

    max-width: 560px;

    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    font-size: 21px;

    line-height: 1.55;

}

.hero-details {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px;

    color:
        rgba(
            255,
            255,
            255,
            0.80
        );

    font-size: 13px;

    font-weight: 600;

}

.detail-dot {
    opacity: 0.55;
}


/* =========================================================
   HOMEPAGE BOOKING CARD
========================================================= */

.booking-card {

    position: absolute;

    z-index: 7;

    top: 28px;
    right: 42px;

    width: 285px;

    padding: 19px;

    background:
        rgba(
            255,
            255,
            255,
            0.97
        );

    border-radius: 16px;

    box-shadow:
        0 18px 45px
        rgba(
            0,
            0,
            0,
            0.22
        );

    backdrop-filter: blur(12px);

}

.booking-card h2 {

    margin: 0 0 12px;

    color: var(--blue-dark);

    font-size: 19px;

    line-height: 1.2;

}

.booking-card form {

    display: flex;

    flex-direction: column;

    gap: 10px;

}

.booking-card input[type="date"] {

    width: 100%;

    margin: 0;

    padding: 12px 14px;

    border:
        2px solid
        #dce5ef;

    border-radius: 10px;

    background: #fff;

    color: var(--text);

    font-size: 15px;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: auto;

    min-height: 48px;

    padding: 0 24px;

    border: 0;

    border-radius: 10px;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;

}

.btn-primary {

    background:
        linear-gradient(
            135deg,
            var(--red),
            var(--red-dark)
        );

}

.btn-primary:hover {

    transform:
        translateY(-1px);

    box-shadow:
        0 10px 24px
        rgba(
            207,
            31,
            46,
            0.28
        );

}

.booking-button {

    width: 100%;

    min-height: 46px;

    margin: 0;

}


/* =========================================================
   HOMEPAGE AIRCRAFT SECTION
========================================================= */

.aircraft-section {

    padding:
        88px 0 96px;

    background: #fff;

}

.aircraft-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 70px;

    align-items: center;

}

.aircraft-images {

    position: relative;

    min-width: 0;

}

.aircraft-main-image {

    display: block;

    width: 100%;
    height: 455px;

    object-fit: cover;

    object-position: center center;

    border-radius: 18px;

    box-shadow: var(--shadow-soft);

}

.soaring-inset {

    position: absolute;

    left: -18px;
    bottom: -30px;

    width: 165px;
    height: 205px;

    overflow: hidden;

    border:
        5px solid
        #fff;

    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 12px 32px
        rgba(
            15,
            42,
            68,
            0.22
        );

}

.soaring-inset img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 45%;

}

.aircraft-copy h2 {

    margin:
        0 0 20px;

    color: var(--blue-dark);

    font-size:
        clamp(
            38px,
            4vw,
            56px
        );

    line-height: 1.06;

    letter-spacing: -1.8px;

}

.aircraft-copy p {

    max-width: 510px;

    margin:
        0 0 14px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;

}

.experience-statement {

    margin-top: 28px;

    color: var(--blue-dark);

    font-size: 23px;

    line-height: 1.35;

    font-weight: 700;

}

.experience-points {

    margin-top: 28px;

    padding-top: 22px;

    border-top:
        1px solid
        var(--border);

    display: flex;

    flex-wrap: wrap;

    color: var(--blue-dark);

    font-size: 13px;

    font-weight: 700;

}

.experience-points span {

    padding:
        0 18px;

    border-right:
        1px solid
        var(--border);

}

.experience-points span:first-child {
    padding-left: 0;
}

.experience-points span:last-child {
    border-right: 0;
}


/* =========================================================
   HOMEPAGE PILOT
========================================================= */

.pilot-section {

    padding:
        96px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc 0%,
            #ffffff 100%
        );

}

.pilot-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: center;

}

.pilot-copy {

    max-width: 480px;

}

.pilot-copy h2 {

    margin:
        0 0 20px;

    color: var(--blue-dark);

    font-size:
        clamp(
            40px,
            4.5vw,
            58px
        );

    line-height: 1.04;

    letter-spacing: -1.8px;

}

.pilot-copy p {

    margin:
        0 0 13px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.7;

}

.pilot-signoff {

    display: flex;

    align-items: end;

    gap: 20px;

    margin-top: 28px;

}

.signature {

    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    color: var(--blue-dark);

    font-size: 48px;

    line-height: 1;

    transform:
        rotate(-5deg);

}

.pilot-title {

    padding-bottom: 5px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.pilot-photo-wrap {

    width: 100%;

    height: 465px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: var(--shadow-soft);

}

.pilot-photo {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 34%;

}


/* =========================================================
   HOMEPAGE FINAL CTA
========================================================= */

.final-cta {

    position: relative;

    height: 235px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: #fff;

}

.final-cta-background {

    position: absolute;

    inset: 0;

    background:
        url('images/IMG_5034.jpg')
        center 53% / cover
        no-repeat;

}

.final-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 31, 51, 0.68),
            rgba(8, 31, 51, 0.42)
        );

}

.final-cta-content {

    position: relative;

    z-index: 2;

    padding: 30px;

}

.final-cta h2 {

    margin:
        0 0 8px;

    font-size: 42px;

}

.final-cta p {

    margin:
        0 0 18px;

    color:
        rgba(
            255,
            255,
            255,
            0.84
        );

    font-size: 16px;

}


/* =========================================================
   SLOTS PAGE HERO
========================================================= */

.slots-hero {

    position: relative;

    min-height: 365px;

    overflow: hidden;

    color: #fff;

    background: var(--blue-dark);

}

.slots-hero-background {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center 43%;

}

.slots-hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 29, 48, 0.90) 0%,
            rgba(7, 29, 48, 0.70) 48%,
            rgba(7, 29, 48, 0.38) 100%
        );

}

.slots-hero .site-header {

    position: relative;

    z-index: 5;

    background: transparent;

}

.slots-hero-inner {

    position: relative;

    z-index: 3;

    width: min(
        calc(100% - 48px),
        var(--content-width)
    );

    margin: 0 auto;

    padding:
        42px 0 50px;

}

.slots-back-link {

    display: inline-block;

    margin-bottom: 26px;

    color:
        rgba(
            255,
            255,
            255,
            0.70
        );

    font-size: 13px;

    font-weight: 700;

}

.slots-back-link:hover {
    color: #fff;
}

.slots-eyebrow {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

}

.slots-hero h1 {

    margin:
        0 0 10px;

    color: #fff;

    font-size:
        clamp(
            42px,
            4.8vw,
            60px
        );

    line-height: 1;

    letter-spacing: -1.8px;

}

.slots-hero p {

    max-width: 550px;

    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 18px;

    line-height: 1.6;

}

.slots-date-pill {

    display: inline-flex;

    align-items: center;

    margin-top: 22px;

    padding:
        10px 15px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.25
        );

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            0.10
        );

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    backdrop-filter: blur(8px);

}


/* =========================================================
   SLOTS MAIN CONTENT
========================================================= */

.slots-main {

    padding:
        55px 0 80px;

    background:
        var(--offwhite);

}

.slots-panel {

    padding: 40px;

    background: #fff;

    border-radius: 22px;

    box-shadow: var(--shadow-soft);

}

.slots-panel-header {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        275px;

    gap: 50px;

    align-items: end;

    padding-bottom: 30px;

    border-bottom:
        1px solid
        var(--border);

}

.slots-panel-title h2 {

    margin:
        0 0 10px;

    color:
        var(--blue-dark);

    font-size: 34px;

    letter-spacing: -0.8px;

}

.slots-panel-title p {

    max-width: 600px;

    margin: 0;

    color:
        var(--muted);

    font-size: 16px;

    line-height: 1.6;

}

.slots-date-form {

    width: 100%;

}

.slots-date-form .date-label {

    margin:
        0 0 8px;

}

.slots-date-form input {

    margin: 0;

}

.slots-results {

    margin-top: 30px;

}


/* =========================================================
   SLOT CARDS
========================================================= */

.slots-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

}

.slot-card {

    position: relative;

    display: block;

    min-height: 250px;

    padding: 28px;

    overflow: hidden;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfcff 100%
        );

    border:
        1px solid
        #dce5ef;

    border-radius: 18px;

    box-shadow:
        0 6px 18px
        rgba(
            15,
            42,
            68,
            0.05
        );

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;

}

.slot-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        var(--blue);

}

.slot-card:hover {

    transform:
        translateY(-3px);

    border-color:
        #c7d7e8;

    box-shadow:
        0 14px 30px
        rgba(
            15,
            42,
            68,
            0.12
        );

}

.slot-card.taken {

    color:
        #9ca3af;

    background:
        #f6f7f9;

    border-color:
        #e2e6ec;

    pointer-events:
        none;

    box-shadow:
        none;

}

.slot-card.taken::before {

    background:
        #c4cbd4;

}

.slot-title {

    margin:
        0 0 10px;

    color:
        var(--blue-dark);

    font-size: 24px;

    font-weight: 700;

    letter-spacing: -0.4px;

}

.slot-card.taken .slot-title {

    color:
        #8b95a4;

}

.slot-time {

    margin-bottom: 16px;

    color: var(--red);

    font-size: 18px;

    font-weight: 700;

}

.slot-meta {

    margin-bottom: 22px;

    color:
        #455468;

    font-size: 14px;

    line-height: 1.7;

}

.slot-card.taken .slot-meta {

    color:
        #98a1ae;

}

.slot-status {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 38px;

    padding:
        0 15px;

    border-radius: 9px;

    background:
        rgba(
            31,
            79,
            139,
            0.08
        );

    color:
        var(--blue-dark);

    font-size: 13px;

    font-weight: 700;

}

.slot-card:hover .slot-status {

    background:
        var(--red);

    color: #fff;

}

.slot-card.taken .slot-status {

    background:
        #e9edf2;

    color:
        #929ba8;

}


/* =========================================================
   LOADING / EMPTY STATES
========================================================= */

.loading,
.empty {

    padding:
        30px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        #f8fafc;

    color:
        var(--muted);

    font-size: 15px;

    text-align: center;

}


/* =========================================================
   SHARED FORMS
========================================================= */

.date-form {

    width: 100%;

    max-width: 320px;

}

.date-label,
label {

    display: block;

    margin:
        16px 0 8px;

    color:
        var(--blue-dark);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.1px;

    text-transform: uppercase;

}

input[type="date"],
input[type="text"],
input[type="email"],
input[type="tel"] {

    width: 100%;

    padding:
        14px 15px;

    border:
        2px solid
        var(--border);

    border-radius: 11px;

    background: #fff;

    color:
        var(--text);

    font-size: 16px;

}

input[type="date"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {

    outline: none;

    border-color:
        var(--blue);

    box-shadow:
        0 0 0 4px
        rgba(
            31,
            79,
            139,
            0.10
        );

}


/* =========================================================
   OTHER BOOKING PAGE STRUCTURE
========================================================= */

.wrap {

    max-width: 1200px;

    margin:
        -36px auto 0;

    padding:
        0 20px 60px;

}

.layout {

    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 24px;

    align-items: start;

}

.card {

    padding: 26px;

    background: #fff;

    border-radius: 24px;

    box-shadow: var(--shadow);

}

.summary-card {

    position: sticky;

    top: 20px;

}

.summary-title {

    margin:
        0 0 16px;

    color: var(--blue-dark);

    font-size: 28px;

}

.card-top {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 20px;

}

.card-top h2 {

    margin:
        0 0 8px;

    color: var(--blue-dark);

    font-size: 30px;

}

.card-top p {

    margin: 0;

    color:
        var(--muted);

    line-height: 1.6;

}

.form-title {

    margin:
        0 0 8px;

    color:
        var(--blue-dark);

    font-size: 30px;

}

.form-subtitle {

    margin:
        0 0 22px;

    color:
        var(--muted);

    line-height: 1.6;

}

.check {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-top: 18px;

    padding:
        14px 16px;

    border:
        1px solid
        #e2e8f0;

    border-radius: 16px;

    background:
        #f9fbfd;

}

.check input {

    margin-top: 2px;

    transform:
        scale(1.1);

}

.check span {

    color:
        #4b5563;

    font-size: 14px;

    line-height: 1.5;

}

.row {

    display: flex;

    gap: 12px;

}

.row .col {

    flex: 1;

}

.card .btn,
.date-form .btn,
.payment-box .btn {

    width: 100%;

    margin-top: 20px;

}


/* =========================================================
   HELPERS
========================================================= */

.helper,
.note {

    margin-top: 14px;

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.6;

}


/* =========================================================
   PAYMENT
========================================================= */

.payment-options {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;

    margin-top: 20px;

}

.payment-box {

    padding: 20px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        #f9fbff;

    text-align: center;

}

.payment-box h3 {

    margin-top: 0;

    color:
        var(--blue-dark);

}

.venmo-qr img {

    display: block;

    width: 100%;

    max-width: 140px;

    height: auto;

    margin:
        10px auto 15px;

}

.venmo-text {

    margin-bottom: 15px;

    color:
        var(--muted);

    font-size: 14px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding:
        28px 0 18px;

    background:
        linear-gradient(
            135deg,
            #071d30,
            #0d3150
        );

    color: #fff;

}

.footer-main {

    min-height: 74px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        auto;

    align-items: center;

    gap: 48px;

}

.footer-brand .brand-aircraft {

    width: 72px;

}

.footer-brand .brand-text {

    font-size: 15px;

}

.footer-brand .brand-tagline {

    font-size: 6px;

    letter-spacing: 1.4px;

}

.footer-nav {

    display: flex;

    align-items: center;

    gap: 24px;

}

.footer-nav a {

    color:
        rgba(
            255,
            255,
            255,
            0.78
        );

    font-size: 13px;

    font-weight: 600;

}

.footer-nav a:hover {

    color: #fff;

}

.footer-email a {

    color:
        rgba(
            255,
            255,
            255,
            0.82
        );

    font-size: 13px;

}

.footer-email a:hover {

    color: #fff;

}

.footer-bottom {

    margin-top: 15px;

    padding-top: 14px;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.10
        );

    color:
        rgba(
            255,
            255,
            255,
            0.42
        );

    font-size: 11px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .hero {

        min-height: 600px;

    }

    .hero .header-inner,
    .header-inner {

        gap: 30px;

    }

    .nav {

        gap: 20px;

    }

    .booking-card {

        top: 24px;
        right: 24px;

        width: 270px;

    }

    .aircraft-grid,
    .pilot-grid {

        gap: 45px;

    }

    .aircraft-main-image {

        height: 410px;

    }

    .pilot-photo-wrap {

        height: 430px;

    }

    .slots-panel-header {

        grid-template-columns:
            1fr 250px;

        gap: 30px;

    }

    .footer-main {

        gap: 28px;

    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 820px) {

    .content-width,
    .header-inner,
    .hero-inner,
    .slots-hero-inner {

        width:
            min(
                calc(100% - 36px),
                var(--content-width)
            );

    }

    .nav {

        display: none;

    }

    .hero {

        min-height: auto;

        padding-bottom: 0;

    }

    .hero-inner {

        min-height: auto;

        padding:
            70px 0 42px;

        display: block;

    }

    .hero h1 {

        font-size:
            clamp(
                44px,
                11vw,
                62px
            );

    }

    .booking-card {

        position: relative;

        top: auto;
        right: auto;

        width:
            min(
                calc(100% - 36px),
                380px
            );

        margin:
            0 18px 55px;

        padding: 20px;

    }

    .aircraft-section,
    .pilot-section {

        padding:
            70px 0;

    }

    .aircraft-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }

    .aircraft-main-image {

        height: 390px;

    }

    .soaring-inset {

        left: 16px;

        width: 140px;
        height: 175px;

    }

    .pilot-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .pilot-copy {

        max-width: none;

    }

    .pilot-photo-wrap {

        height: 460px;

    }


    /* SLOTS */

    .slots-hero {

        min-height: 340px;

    }

    .slots-panel {

        padding: 30px;

    }

    .slots-panel-header {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .slots-date-form {

        max-width: 320px;

    }

    .slots-grid {

        grid-template-columns: 1fr;

    }


    /* OTHER PAGES */

    .layout {

        grid-template-columns: 1fr;

    }

    .summary-card {

        position: static;

    }


    /* FOOTER */

    .footer-main {

        grid-template-columns: 1fr;

        gap: 20px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .header-inner {

        padding:
            18px 0;

    }

    .brand img,
    .brand-aircraft {

        width: 72px;

    }

    .brand-text {

        font-size: 15px;

        letter-spacing: 2px;

    }

    .brand-tagline {

        display: none;

    }

    .hero-background {

        object-position:
            58% center;

    }

    .hero-inner {

        padding:
            48px 0 38px;

    }

    .hero h1 {

        letter-spacing:
            -1.5px;

    }

    .booking-card {

        width:
            calc(100% - 36px);

        margin:
            0 18px 45px;

    }

    .aircraft-main-image {

        height: 300px;

    }

    .soaring-inset {

        left: 12px;
        bottom: -24px;

        width: 115px;
        height: 145px;

        border-width: 4px;

    }

    .aircraft-copy h2,
    .pilot-copy h2 {

        font-size: 38px;

    }

    .experience-statement {

        font-size: 21px;

    }

    .experience-points {

        flex-direction: column;

        gap: 9px;

    }

    .experience-points span {

        padding: 0;

        border: 0;

    }

    .pilot-photo-wrap {

        height: 390px;

    }

    .signature {

        font-size: 42px;

    }

    .final-cta {

        height: 220px;

    }

    .final-cta h2 {

        font-size: 36px;

    }


    /* SLOTS MOBILE */

    .slots-hero {

        min-height: 315px;

    }

    .slots-hero-inner {

        padding:
            30px 0 40px;

    }

    .slots-back-link {

        margin-bottom: 20px;

    }

    .slots-hero h1 {

        font-size: 40px;

    }

    .slots-hero p {

        font-size: 16px;

    }

    .slots-main {

        padding:
            35px 0 55px;

    }

    .slots-panel {

        padding: 22px;

        border-radius: 16px;

    }

    .slots-panel-title h2 {

        font-size: 28px;

    }

    .slot-card {

        min-height: auto;

        padding: 22px;

    }

    .slot-title {

        font-size: 22px;

    }

    .slot-time {

        font-size: 17px;

    }


    /* FOOTER */

    .site-footer {

        padding:
            25px 0 18px;

    }

    .footer-main {

        min-height: auto;

        gap: 18px;

    }

    .footer-nav {

        flex-wrap: wrap;

        gap:
            12px 20px;

    }


    /* FORMS */

    .card {

        padding: 20px;

    }

    .row {

        flex-direction: column;

    }

    .payment-options {

        grid-template-columns: 1fr;

    }

}