:root {

    --black: #060606;
    --dark: #0b0b0b;

    --cream: #f4efe5;
    --cream-dark: #e8dece;

    --gold: #c9a35e;
    --gold-light: #efd08a;
    --gold-dark: #8d6931;

    --white: #ffffff;

    --container: 1240px;

}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    min-width: 320px;

    background:
        var(--black);

    color:
        var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    overflow-x: hidden;

}


body.menu-open {
    overflow: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


button {
    font: inherit;
    cursor: pointer;
}


.container {

    width:
        min(
            calc(100% - 48px),
            var(--container)
        );

    margin:
        0 auto;

}


/* =====================================================
   LOADER
===================================================== */

.loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background:
        #040404;

    transition:
        opacity .65s ease,
        visibility .65s ease;

}


.loader.hidden {

    opacity: 0;

    visibility: hidden;

}


.loader img {

    width: 160px;

    animation:
        loaderLogo
        1.2s ease-in-out
        infinite alternate;

}


.loader-track {

    width: 155px;
    height: 1px;

    margin-top: 24px;

    overflow: hidden;

    background:
        rgba(255,255,255,.12);

}


.loader-track span {

    display: block;

    width: 42%;
    height: 100%;

    background:
        var(--gold);

    animation:
        loaderTrack
        1s ease-in-out
        infinite;

}


@keyframes loaderLogo {

    from {
        opacity: .5;
        transform: scale(.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}


@keyframes loaderTrack {

    from {
        transform: translateX(-130%);
    }

    to {
        transform: translateX(300%);
    }

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: fixed;

    z-index: 9000;

    top: 0;
    left: 0;

    width: 100%;

    pointer-events: none;

}


.header-inner {

    width:
        min(
            calc(100% - 70px),
            1320px
        );

    min-height: 96px;

    margin:
        0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =====================================================
   LOGO
===================================================== */

.brand {

    pointer-events: auto;

    width: 148px;

    opacity: 1;

    transform:
        translateY(0);

    filter:
        drop-shadow(
            0 5px 15px
            rgba(0,0,0,.45)
        );

    transition:
        opacity .55s ease,
        transform .55s
        cubic-bezier(.2,.75,.2,1);

}


.header.logo-hidden .brand {

    opacity: 0;

    transform:
        translateY(-22px);

    pointer-events: none;

}


/* =====================================================
   NAV
===================================================== */

.desktop-nav {

    position: relative;

    pointer-events: auto;

    display: flex;

    align-items: center;

    gap: 4px;

    padding: 7px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 19px;

    background:
        rgba(6,6,6,.24);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 12px 40px
        rgba(0,0,0,.18);

}


.nav-indicator {

    position: absolute;

    z-index: 0;

    top: 7px;
    left: 7px;

    height:
        calc(100% - 14px);

    border:
        1px solid
        rgba(239,208,138,.68);

    border-radius:
        13px;

    background:
        rgba(201,163,94,.075);

    pointer-events: none;

    transition:
        transform .55s
        cubic-bezier(.2,.8,.2,1),
        width .55s
        cubic-bezier(.2,.8,.2,1);

}


.desktop-nav a {

    position: relative;

    z-index: 1;

    padding:
        13px 21px;

    color:
        rgba(255,255,255,.88);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.15px;

    text-transform: uppercase;

    text-shadow:
        0 2px 12px
        rgba(0,0,0,.75);

    transition:
        color .3s ease;

}


.desktop-nav a:hover,
.desktop-nav a.active {

    color:
        var(--gold-light);

}


/* =====================================================
   MOBILE NAV
===================================================== */

.menu-button {

    display: none;

    pointer-events: auto;

    width: 44px;
    height: 42px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 13px;

    background:
        rgba(8,8,8,.35);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

}


.menu-button span {

    display: block;

    width: 24px;
    height: 2px;

    margin:
        5px auto;

    background:
        #fff;

    transition:
        transform .3s ease,
        opacity .3s ease;

}


.mobile-nav {

    display: none;

}


/* =====================================================
   HERO
===================================================== */

.hero-scroll {

    position: relative;

    height: 225vh;

    background:
        #050505;

}


.hero-sticky {

    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;

    min-height: 620px;

    overflow: hidden;

    background:
        #050505;

}


.hero-layer {

    position: absolute;

    inset: 0;

    pointer-events: none;

}


.hero-layer img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transform-origin:
        center center;

    will-change:
        transform;

}


/* =====================================================
   LIGHT
===================================================== */

.hero-light {

    position: absolute;

    z-index: 20;

    border-radius: 50%;

    pointer-events: none;

    filter:
        blur(125px);

}


.hero-light-one {

    width: 720px;
    height: 720px;

    left: -320px;
    bottom: -310px;

    background:
        rgba(206,163,88,.11);

}


.hero-light-two {

    width: 540px;
    height: 540px;

    right: -270px;
    top: -270px;

    background:
        rgba(226,193,127,.07);

}


/* =====================================================
   HERO OVERLAY
===================================================== */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 30;

    pointer-events: none;

    background:

        linear-gradient(
            90deg,
            rgba(3,3,3,.66),
            rgba(3,3,3,.28) 39%,
            rgba(3,3,3,.02) 74%
        ),

        linear-gradient(
            0deg,
            rgba(3,3,3,.42),
            rgba(3,3,3,0) 47%
        );

}


/* =====================================================
   HERO COPY
===================================================== */

.hero-copy {

    position: absolute;

    z-index: 100;

    left:
        max(
            6vw,
            calc(
                (100vw - 1240px) / 2
            )
        );

    top: 50%;

    width:
        min(
            680px,
            82vw
        );

    transform:
        translateY(-50%);

    will-change:
        opacity,
        transform;

}


.hero-eyebrow {

    margin-bottom: 23px;

    color:
        var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

}


.hero-copy h1 {

    font-size:
        clamp(
            66px,
            7.5vw,
            126px
        );

    font-weight: 300;

    line-height: .88;

    letter-spacing: -6px;

    text-transform: uppercase;

}


.hero-copy h1 span {
    display: block;
}


.hero-copy h1 em {

    display: block;

    margin-top: 8px;

    color:
        var(--gold-light);

    font-family:
        Georgia,
        serif;

    font-size: 1.06em;

    font-weight: 400;

    line-height: .95;

    letter-spacing: -5px;

    text-transform: none;

}


.hero-description {

    max-width: 545px;

    margin-top: 28px;

    color:
        rgba(255,255,255,.80);

    font-size: 15px;

    line-height: 1.8;

}


.hero-description strong {

    display: block;

    margin-top: 8px;

    color:
        rgba(255,255,255,.95);

    font-weight: 500;

}


.hero-button {

    width:
        fit-content;

    min-width:
        230px;

    min-height:
        56px;

    margin-top:
        30px;

    padding:
        0 22px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;

    border:
        1px solid
        rgba(239,208,138,.63);

    border-radius:
        12px;

    color:
        var(--gold-light);

    background:
        rgba(7,7,7,.18);

    backdrop-filter:
        blur(9px);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        1px;

    text-transform:
        uppercase;

    transition:
        transform .35s ease,
        color .35s ease,
        background .35s ease;

}


.hero-button:hover {

    color:
        #17110a;

    background:
        var(--gold-light);

    transform:
        translateY(-4px);

}


/* =====================================================
   SECONDARY HERO
===================================================== */

.hero-secondary {

    position: absolute;

    z-index: 100;

    left: 50%;
    bottom: 12%;

    width:
        min(
            900px,
            calc(100% - 40px)
        );

    transform:
        translate(-50%,30px);

    text-align:
        center;

    opacity:
        0;

    pointer-events:
        none;

}


.hero-secondary p {

    margin-bottom:
        18px;

    color:
        var(--gold-light);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        3px;

}


.hero-secondary h2 {

    font-size:
        clamp(
            42px,
            5vw,
            75px
        );

    font-weight:
        300;

    letter-spacing:
        -3px;

}


.hero-secondary h2 em {

    display:
        block;

    color:
        var(--gold-light);

    font-family:
        Georgia,
        serif;

    font-weight:
        400;

}


/* =====================================================
   SCROLL INDICATOR
===================================================== */

.scroll-indicator {

    position: absolute;

    z-index: 110;

    left: 50%;
    bottom: 28px;

    transform:
        translateX(-50%);

    display:
        flex;

    align-items:
        center;

    gap:
        16px;

    white-space:
        nowrap;

    color:
        rgba(255,255,255,.92);

    font-size:
        12px;

    font-weight:
        700;

    letter-spacing:
        2.2px;

    text-transform:
        uppercase;

    text-shadow:
        0 3px 12px
        rgba(0,0,0,.8);

}


.scroll-line {

    position: relative;

    width: 72px;
    height: 2px;

    overflow: hidden;

    border-radius:
        50px;

    background:
        rgba(255,255,255,.25);

}


.scroll-line span {

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 100%;

    background:
        var(--gold-light);

}


.scroll-indicator b {

    color:
        var(--gold-light);

    font-size:
        17px;

}


/* =====================================================
   CURVE
===================================================== */

.hero-curve {

    position: relative;

    z-index: 100;

    height: 165px;

    margin-top: -165px;

    pointer-events: none;

}


.hero-curve svg {

    display: block;

    width: 100%;
    height: 100%;

}


.hero-curve path {

    fill:
        #f3eee6;

    stroke:
        var(--gold);

    stroke-width:
        2;

    vector-effect:
        non-scaling-stroke;

}


/* =====================================================
   INTRO
===================================================== */

.intro {

    padding:
        88px 0 125px;

    color:
        #1c1915;

    background:
        #f3eee6;

}


.intro-layout {

    display: grid;

    grid-template-columns:
        .65fr 2fr;

    gap: 70px;

}


.section-tag {

    color:
        var(--gold-dark);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        3px;

}


.intro-eyebrow {

    margin-bottom:
        17px;

    color:
        var(--gold-dark);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

}


.intro-content {

    max-width:
        850px;

}


.intro-content h2 {

    margin-bottom:
        32px;

    font-size:
        clamp(
            47px,
            5vw,
            76px
        );

    font-weight:
        300;

    line-height:
        1.03;

    letter-spacing:
        -3px;

}


.intro-content h2 em {

    display:
        block;

    color:
        #8c6936;

    font-family:
        Georgia,
        serif;

    font-weight:
        400;

}


.intro-content > p {

    max-width:
        740px;

    margin-bottom:
        19px;

    color:
        #5c554c;

    font-size:
        17px;

    line-height:
        1.9;

}


.intro-content .intro-lead {

    color:
        #39342d;

    font-size:
        20px;

    line-height:
        1.75;

}


.intro-points {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        14px;

    margin-top:
        45px;

}


.intro-points > div {

    padding:
        24px;

    border:
        1px solid
        rgba(97,73,38,.12);

    border-radius:
        18px;

    background:
        rgba(255,255,255,.38);

}


.intro-points span {

    color:
        var(--gold-dark);

    font-size:
        10px;

    font-weight:
        700;

}


.intro-points h3 {

    margin:
        12px 0 8px;

    color:
        #25211c;

    font-size:
        17px;

    font-weight:
        600;

}


.intro-points p {

    color:
        #6f675d;

    font-size:
        13px;

    line-height:
        1.65;

}


/* =====================================================
   COLLECTIONS
===================================================== */

.collections {

    padding:
        115px 0;

    color:
        #181612;

    background:
        #e9e1d4;

}


.section-heading {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        flex-end;

    gap:
        40px;

    margin-bottom:
        55px;

}


.section-heading h2 {

    margin-top:
        15px;

    font-size:
        clamp(
            45px,
            5vw,
            72px
        );

    font-weight:
        300;

    letter-spacing:
        -3px;

}


.section-heading h2 em {

    color:
        #8c6936;

    font-family:
        Georgia,
        serif;

    font-weight:
        400;

}


.heading-description {

    max-width:
        320px;

    color:
        #615a51;

    font-size:
        15px;

    line-height:
        1.8;

}


.collection-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        20px;

}


.collection-card {

    position:
        relative;

    min-height:
        470px;

    overflow:
        hidden;

    border-radius:
        22px;

    background:
        #111;

    box-shadow:
        0 18px 50px
        rgba(36,27,17,.13);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}


.collection-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 28px 70px
        rgba(36,27,17,.19);

}


.private-jet-card {

    grid-row:
        span 2;

    min-height:
        960px;

}


.collection-card > img {

    position:
        absolute;

    z-index:
        2;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    transition:
        transform .75s ease;

}


.collection-card:hover > img {

    transform:
        scale(1.045);

}


.card-background {

    position:
        absolute;

    inset:
        0;

    z-index:
        1;

}


.jet-card-bg {

    background:
        radial-gradient(
            circle at 64% 30%,
            #88765e,
            #181715 60%
        );

}


.yacht-card-bg {

    background:
        linear-gradient(
            160deg,
            #5c7886,
            #17282e
        );

}


.car-card-bg {

    background:
        radial-gradient(
            circle at 35% 45%,
            #705e49,
            #171615
        );

}


.card-overlay {

    position:
        absolute;

    z-index:
        3;

    inset:
        0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.69) 29%,
            rgba(0,0,0,.04) 68%
        );

}


.card-content {

    position:
        absolute;

    z-index:
        4;

    left:
        31px;

    right:
        31px;

    bottom:
        31px;

    color:
        #fff;

}


.card-number {

    color:
        var(--gold-light);

    font-size:
        10px;

    font-weight:
        700;

}


.dark-number {

    color:
        var(--gold-dark);

}


.card-kicker {

    margin-top:
        9px;

    color:
        rgba(255,255,255,.73);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

}


.card-content h3 {

    margin-top:
        9px;

    font-size:
        35px;

    font-weight:
        400;

    line-height:
        1.1;

}


.card-description {

    max-width:
        360px;

    margin-top:
        12px;

    color:
        rgba(255,255,255,.79);

    font-size:
        14px;

    line-height:
        1.7;

}


.card-actions {

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;

    gap:
        11px;

    margin-top:
        23px;

}


.card-actions a {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    min-width:
        240px;

    color:
        var(--gold-light);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        .7px;

    text-transform:
        uppercase;

    transition:
        color .3s ease,
        gap .3s ease;

}


.card-actions a:hover {

    color:
        #fff;

    gap:
        27px;

}


.card-actions a span {

    font-size:
        16px;

}


/* =====================================================
   COMPARISON CARD
===================================================== */

.comparison-card {

    position:
        relative;

    min-height:
        470px;

    overflow:
        hidden;

    padding:
        34px;

    border:
        1px solid
        rgba(181,135,68,.26);

    border-radius:
        22px;

    background:

        radial-gradient(
            circle at 85% 10%,
            rgba(205,165,95,.11),
            transparent 34%
        ),

        linear-gradient(
            145deg,
            #fffaf1,
            #ded0b8
        );

    box-shadow:
        0 18px 50px
        rgba(36,27,17,.11);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}


.comparison-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 28px 70px
        rgba(36,27,17,.17);

}


.comparison-glow {

    position:
        absolute;

    width:
        240px;

    height:
        240px;

    right:
        -110px;

    top:
        -110px;

    border-radius:
        50%;

    background:
        rgba(209,168,96,.13);

    filter:
        blur(55px);

}


.comparison-top {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

}


.comparison-number,
.comparison-label {

    color:
        var(--gold-dark);

    font-size:
        10px;

    font-weight:
        700;

}


.comparison-label {

    letter-spacing:
        1.8px;

}


.comparison-card h3 {

    position:
        relative;

    z-index:
        2;

    margin-top:
        45px;

    color:
        #252019;

    font-size:
        38px;

    font-weight:
        400;

    line-height:
        1.04;

}


.comparison-card h3 em {

    display:
        block;

    color:
        var(--gold-dark);

    font-family:
        Georgia,
        serif;

    font-weight:
        400;

}


.comparison-description {

    position:
        relative;

    z-index:
        2;

    max-width:
        330px;

    margin-top:
        17px;

    color:
        #645b4f;

    font-size:
        14px;

    line-height:
        1.7;

}


.comparison-features {

    position:
        relative;

    z-index:
        2;

    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        9px;

    margin-top:
        26px;

}


.comparison-features > div {

    padding:
        14px 15px;

    border:
        1px solid
        rgba(105,75,37,.10);

    border-radius:
        13px;

    background:
        rgba(255,255,255,.35);

}


.comparison-features span {

    display:
        block;

    color:
        #817463;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        1.4px;

}


.comparison-features strong {

    display:
        block;

    margin-top:
        6px;

    color:
        #2d2822;

    font-size:
        12px;

}


.comparison-button {

    position:
        relative;

    z-index:
        2;

    width:
        100%;

    margin-top:
        27px;

    padding:
        15px 17px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    border:
        1px solid
        rgba(121,87,42,.32);

    border-radius:
        13px;

    color:
        #715329;

    background:
        rgba(255,255,255,.25);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        .7px;

    text-transform:
        uppercase;

}


/* =====================================================
   TEXT CARDS
===================================================== */

.text-card {

    padding:
        38px;

    display:
        flex;

    align-items:
        flex-end;

    background:

        radial-gradient(
            circle at top right,
            rgba(255,255,255,.47),
            transparent 45%
        ),

        linear-gradient(
            145deg,
            #eee5d6,
            #cbb792
        );

}


.dark-text-card {

    color:
        #fff;

    background:

        radial-gradient(
            circle at 25% 10%,
            #40372c,
            #111 68%
        );

}


.text-card-kicker {

    margin-top:
        11px;

    color:
        var(--gold-dark);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

}


.gold-kicker {

    color:
        var(--gold);

}


.text-card-inner h3 {

    max-width:
        320px;

    margin-top:
        10px;

    font-family:
        Georgia,
        serif;

    font-size:
        39px;

    font-weight:
        400;

    line-height:
        1.12;

}


.text-card-description {

    max-width:
        330px;

    margin-top:
        14px;

    color:
        rgba(30,25,20,.69);

    font-size:
        14px;

    line-height:
        1.7;

}


.light-description {

    color:
        rgba(255,255,255,.72);

}


.dark-actions a {

    color:
        #74562b;

}


/* =====================================================
   DISCOVER
===================================================== */

.statement {

    position:
        relative;

    overflow:
        hidden;

    padding:
        145px 0;

    background:
        #090909;

}


.statement-glow {

    position:
        absolute;

    top:
        -460px;

    left:
        50%;

    width:
        1050px;

    height:
        760px;

    transform:
        translateX(-50%);

    border-radius:
        50%;

    filter:
        blur(60px);

    background:
        rgba(202,161,90,.10);

}


.statement-content {

    position:
        relative;

    max-width:
        950px;

    margin:
        0 auto;

    text-align:
        center;

}


.statement-content .section-tag {

    color:
        var(--gold);

}


.statement-content h2 {

    margin-top:
        26px;

    color:
        rgba(255,255,255,.92);

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            45px,
            5.3vw,
            77px
        );

    font-weight:
        400;

    line-height:
        1.15;

}


.statement-content h2 em {

    display:
        block;

    color:
        var(--gold-light);

}


.statement-content > p:last-child {

    max-width:
        690px;

    margin:
        31px auto 0;

    color:
        rgba(255,255,255,.59);

    font-size:
        15px;

    line-height:
        1.85;

}


/* =====================================================
   LATEST
===================================================== */

.latest {

    padding:
        115px 0;

    color:
        #181612;

    background:
        #f3eee6;

}


.story-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:
        20px;

}


.story-card {

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        #fffdf8;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.075);

}


.story-image {

    position:
        relative;

    height:
        285px;

    overflow:
        hidden;

}


.story-image img {

    position:
        absolute;

    inset:
        0;

    width:
        100%;

    height:
        100%;

    object-fit:
        contain;

    transition:
        transform .55s ease;

}


.story-card:hover .story-image img {

    transform:
        scale(1.055);

}


.aviation-story {

    background:
        linear-gradient(
            160deg,
            #a78e6f,
            #292725
        );

}


.automotive-story {

    background:
        radial-gradient(
            circle at 40% 40%,
            #74624d,
            #191817
        );

}


.yacht-story {

    background:
        linear-gradient(
            160deg,
            #5c7b8c,
            #17292f
        );

}


.story-content {

    padding:
        29px;

}


.story-content p {

    color:
        var(--gold-dark);

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        2px;

}


.story-content h3 {

    min-height:
        90px;

    margin:
        13px 0 22px;

    font-size:
        24px;

    font-weight:
        400;

    line-height:
        1.32;

}


.story-content a {

    color:
        var(--gold-dark);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        .9px;

    text-transform:
        uppercase;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    padding:
        80px 0 27px;

    background:
        #050505;

}


.footer-layout {

    display:
        grid;

    grid-template-columns:
        2.2fr 1fr 1fr;

    gap:
        60px;

    padding-bottom:
        65px;

}


.footer-brand img {

    width:
        155px;

}


.footer-brand h3 {

    margin-top:
        19px;

    color:
        var(--gold-light);

    font-family:
        Georgia,
        serif;

    font-size:
        21px;

    font-weight:
        400;

    font-style:
        italic;

}


.footer-brand p {

    max-width:
        480px;

    margin-top:
        14px;

    color:
        rgba(255,255,255,.46);

    font-size:
        13px;

    line-height:
        1.8;

}


.footer-column {

    display:
        flex;

    flex-direction:
        column;

    gap:
        12px;

}


.footer-column strong {

    margin-bottom:
        11px;

    color:
        var(--gold);

    font-size:
        10px;

    letter-spacing:
        2px;

    text-transform:
        uppercase;

}


.footer-column a {

    color:
        rgba(255,255,255,.57);

    font-size:
        12px;

}


.footer-bottom {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    padding-top:
        25px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.28);

    font-size:
        10px;

    letter-spacing:
        1px;

}


/* =====================================================
   REVEAL
===================================================== */

.reveal {

    opacity:
        0;

    transform:
        translateY(40px);

    transition:
        opacity .9s ease,
        transform .9s
        cubic-bezier(.2,.72,.2,1);

}


.reveal.visible {

    opacity:
        1;

    transform:
        translateY(0);

}


/* =====================================================
   SMALL LAPTOP
   992px - 1199px
===================================================== */

@media
(max-width: 1199px) {

    .header-inner {

        width:
            calc(100% - 48px);

    }


    .desktop-nav a {

        padding:
            12px 16px;

        font-size:
            11px;

    }


    .hero-copy {

        left:
            5vw;

        width:
            620px;

    }


    .hero-copy h1 {

        font-size:
            clamp(
                64px,
                8vw,
                96px
            );

    }


    .intro-layout {

        grid-template-columns:
            .5fr 2fr;

        gap:
            45px;

    }


    .collection-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .private-jet-card {

        grid-row:
            auto;

        min-height:
            560px;

    }


    .comparison-card {

        min-height:
            560px;

    }


    .story-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .story-card:last-child {

        grid-column:
            1 / -1;

    }

}


/* =====================================================
   TABLET
   768px - 991px
===================================================== */

@media
(max-width: 991px) {

    .desktop-nav {

        display:
            none;

    }


    .menu-button {

        display:
            block;

    }


    .mobile-nav {

        pointer-events:
            auto;

        position:
            absolute;

        top:
            82px;

        left:
            24px;

        right:
            24px;

        display:
            flex;

        flex-direction:
            column;

        padding:
            14px 20px;

        border:
            1px solid
            rgba(255,255,255,.11);

        border-radius:
            18px;

        background:
            rgba(6,6,6,.70);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        opacity:
            0;

        visibility:
            hidden;

        transform:
            translateY(-12px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;

    }


    .mobile-nav.open {

        opacity:
            1;

        visibility:
            visible;

        transform:
            translateY(0);

    }


    .mobile-nav a {

        padding:
            16px 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.07);

        color:
            rgba(255,255,255,.9);

        font-size:
            13px;

        font-weight:
            700;

        letter-spacing:
            1.3px;

        text-transform:
            uppercase;

    }


    .mobile-nav a:last-child {

        border-bottom:
            0;

    }


    .menu-button.open span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);

    }


    .menu-button.open span:nth-child(2) {

        opacity:
            0;

    }


    .menu-button.open span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);

    }


    .hero-scroll {

        height:
            215vh;

    }


    .hero-copy {

        left:
            36px;

        width:
            min(
                600px,
                calc(100% - 72px)
            );

    }


    .hero-copy h1 {

        font-size:
            clamp(
                62px,
                10vw,
                88px
            );

    }


    .hero-description {

        max-width:
            500px;

    }


    .intro-layout {

        grid-template-columns:
            1fr;

        gap:
            28px;

    }


    .intro-side {

        padding-bottom:
            6px;

    }


    .intro-points {

        grid-template-columns:
            repeat(3,1fr);

    }


    .collection-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .collection-card,
    .comparison-card,
    .private-jet-card {

        min-height:
            520px;

    }


    .section-heading {

        align-items:
            flex-start;

    }


    .footer-layout {

        grid-template-columns:
            1.6fr 1fr 1fr;

        gap:
            35px;

    }

}


/* =====================================================
   LARGE MOBILE
   480px - 767px
===================================================== */

@media
(max-width: 767px) {

    .container {

        width:
            calc(100% - 32px);

    }


    .header-inner {

        width:
            calc(100% - 32px);

        min-height:
            78px;

    }


    .brand {

        width:
            126px;

    }


    .mobile-nav {

        top:
            78px;

        left:
            16px;

        right:
            16px;

    }


    .hero-scroll {

        height:
            210vh;

    }


    .hero-sticky {

        min-height:
            620px;

    }


    /*
    Mobile hero images remain same full canvas,
    but we shift them slightly to keep the
    important objects visible.
    */

    .hero-layer img {

        object-position:
            54% center;

    }


    .hero-copy {

        left:
            20px;

        top:
            48%;

        width:
            calc(100% - 40px);

    }


    .hero-eyebrow {

        margin-bottom:
            16px;

        font-size:
            9px;

        letter-spacing:
            2.4px;

    }


    .hero-copy h1 {

        max-width:
            500px;

        font-size:
            clamp(
                50px,
                13vw,
                74px
            );

        line-height:
            .93;

        letter-spacing:
            -3.5px;

    }


    .hero-copy h1 em {

        letter-spacing:
            -3px;

    }


    .hero-description {

        max-width:
            390px;

        margin-top:
            20px;

        font-size:
            13px;

        line-height:
            1.65;

    }


    .hero-description strong {

        margin-top:
            6px;

    }


    .hero-button {

        min-width:
            0;

        width:
            min(
                100%,
                290px
            );

        min-height:
            52px;

        margin-top:
            22px;

        padding:
            0 18px;

        font-size:
            10px;

    }


    .hero-secondary {

        bottom:
            12%;

    }


    .hero-secondary p {

        font-size:
            8px;

        letter-spacing:
            1.8px;

    }


    .hero-secondary h2 {

        font-size:
            clamp(
                34px,
                9vw,
                48px
            );

        letter-spacing:
            -2px;

    }


    .scroll-indicator {

        bottom:
            18px;

        gap:
            10px;

        font-size:
            10px;

        letter-spacing:
            1.5px;

    }


    .scroll-line {

        width:
            46px;

    }


    .hero-curve {

        height:
            100px;

        margin-top:
            -100px;

    }


    .intro {

        padding:
            62px 0 80px;

    }


    .intro-content h2 {

        font-size:
            clamp(
                42px,
                11vw,
                58px
            );

        letter-spacing:
            -2px;

    }


    .intro-content .intro-lead {

        font-size:
            17px;

    }


    .intro-content > p {

        font-size:
            15px;

        line-height:
            1.75;

    }


    .intro-points {

        grid-template-columns:
            1fr;

    }


    .intro-points > div {

        padding:
            22px;

    }


    .collections,
    .latest {

        padding:
            80px 0;

    }


    .section-heading {

        display:
            block;

        margin-bottom:
            38px;

    }


    .section-heading h2 {

        font-size:
            clamp(
                42px,
                10vw,
                56px
            );

        letter-spacing:
            -2px;

    }


    .heading-description {

        margin-top:
            18px;

        max-width:
            none;

    }


    .collection-grid {

        grid-template-columns:
            1fr;

        gap:
            18px;

    }


    .collection-card,
    .private-jet-card,
    .comparison-card {

        min-height:
            500px;

    }


    .collection-card {

        border-radius:
            18px;

    }


    .card-content {

        left:
            24px;

        right:
            24px;

        bottom:
            24px;

    }


    .card-content h3 {

        font-size:
            31px;

    }


    .card-description {

        font-size:
            13px;

    }


    .card-actions a {

        width:
            100%;

        min-width:
            0;

        max-width:
            280px;

        font-size:
            10px;

    }


    .comparison-card {

        padding:
            26px;

        border-radius:
            18px;

    }


    .comparison-card h3 {

        margin-top:
            32px;

        font-size:
            34px;

    }


    .comparison-description {

        max-width:
            none;

    }


    .comparison-button {

        font-size:
            10px;

    }


    .text-card {

        padding:
            28px;

    }


    .text-card-inner h3 {

        font-size:
            34px;

    }


    .statement {

        padding:
            95px 0;

    }


    .statement-content h2 {

        font-size:
            clamp(
                38px,
                10vw,
                54px
            );

    }


    .statement-content > p:last-child {

        font-size:
            14px;

    }


    .story-grid {

        grid-template-columns:
            1fr;

    }


    .story-card:last-child {

        grid-column:
            auto;

    }


    .story-image {

        height:
            250px;

    }


    .story-content h3 {

        min-height:
            auto;

        font-size:
            22px;

    }


    .footer {

        padding-top:
            65px;

    }


    .footer-layout {

        grid-template-columns:
            1fr;

        gap:
            38px;

    }


    .footer-bottom {

        display:
            block;

    }


    .footer-bottom span {

        display:
            block;

        margin-top:
            7px;

    }

}


/* =====================================================
   SMALL MOBILE
   under 480px
===================================================== */

@media
(max-width: 479px) {

    .header-inner {

        min-height:
            72px;

    }


    .brand {

        width:
            112px;

    }


    .menu-button {

        width:
            40px;

        height:
            38px;

    }


    .mobile-nav {

        top:
            72px;

    }


    .hero-scroll {

        height:
            205vh;

    }


    .hero-sticky {

        min-height:
            600px;

    }


    .hero-layer img {

        object-position:
            57% center;

    }


    .hero-copy {

        left:
            16px;

        top:
            47%;

        width:
            calc(100% - 32px);

    }


    .hero-eyebrow {

        font-size:
            8px;

        letter-spacing:
            1.8px;

    }


    .hero-copy h1 {

        font-size:
            clamp(
                45px,
                14vw,
                62px
            );

        letter-spacing:
            -3px;

    }


    .hero-copy h1 em {

        letter-spacing:
            -2.5px;

    }


    .hero-description {

        font-size:
            12px;

        line-height:
            1.58;

    }


    .hero-button {

        min-height:
            50px;

        font-size:
            9px;

    }


    .hero-secondary {

        bottom:
            13%;

    }


    .hero-secondary p {

        font-size:
            7px;

        letter-spacing:
            1.3px;

    }


    .hero-secondary h2 {

        font-size:
            32px;

    }


    .scroll-indicator {

        bottom:
            14px;

        font-size:
            9px;

        gap:
            8px;

    }


    .scroll-line {

        width:
            34px;

    }


    .scroll-indicator b {

        font-size:
            14px;

    }


    .hero-curve {

        height:
            82px;

        margin-top:
            -82px;

    }


    .intro {

        padding:
            48px 0 70px;

    }


    .section-tag {

        font-size:
            9px;

        letter-spacing:
            2px;

    }


    .intro-eyebrow {

        font-size:
            9px;

        letter-spacing:
            1.4px;

    }


    .intro-content h2 {

        font-size:
            40px;

    }


    .intro-content .intro-lead {

        font-size:
            16px;

    }


    .intro-content > p {

        font-size:
            14px;

    }


    .intro-points > div {

        padding:
            20px;

    }


    .section-heading h2 {

        font-size:
            40px;

    }


    .collection-card,
    .private-jet-card,
    .comparison-card {

        min-height:
            460px;

    }


    .card-content {

        left:
            20px;

        right:
            20px;

        bottom:
            20px;

    }


    .card-content h3 {

        font-size:
            28px;

    }


    .card-description {

        font-size:
            12px;

        line-height:
            1.6;

    }


    .comparison-card {

        padding:
            22px;

    }


    .comparison-top {

        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            7px;

    }


    .comparison-card h3 {

        margin-top:
            24px;

        font-size:
            31px;

    }


    .comparison-features {

        grid-template-columns:
            1fr 1fr;

    }


    .comparison-features > div {

        padding:
            12px;

    }


    .comparison-button {

        padding:
            14px;

        font-size:
            9px;

    }


    .text-card {

        padding:
            24px;

    }


    .text-card-inner h3 {

        font-size:
            31px;

    }


    .statement {

        padding:
            80px 0;

    }


    .statement-content h2 {

        font-size:
            36px;

    }


    .story-image {

        height:
            220px;

    }


    .story-content {

        padding:
            23px;

    }


    .footer-brand img {

        width:
            135px;

    }

}


/* =====================================================
   SHORT SCREEN DEVICES
===================================================== */

@media
(max-height: 720px)
and
(min-width: 768px) {

    .header-inner {

        min-height:
            78px;

    }


    .hero-copy {

        top:
            52%;

    }


    .hero-copy h1 {

        font-size:
            clamp(
                56px,
                7vw,
                84px
            );

    }


    .hero-description {

        margin-top:
            18px;

        line-height:
            1.55;

    }


    .hero-button {

        margin-top:
            18px;

        min-height:
            48px;

    }


    .scroll-indicator {

        bottom:
            14px;

    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media
(prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }


    .reveal {

        opacity:
            1;

        transform:
            none;

    }

}