/*
Theme: LJM Plant Hire
Author: AMB360
Version: 1.0
*/


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

:root {
    --ljm-black: #020202;
    --ljm-black-soft: #050505;
    --ljm-charcoal: #0a0a0a;

    --ljm-white: #ffffff;

    --ljm-silver-light: #f2f2f2;
    --ljm-silver: #c7c7c7;
    --ljm-silver-mid: #929292;
    --ljm-silver-dark: #666666;

    --ljm-gold-light: #ead487;
    --ljm-gold: #c9a646;
    --ljm-gold-mid: #ad872c;
    --ljm-gold-dark: #745516;

    --ljm-border: rgba(255, 255, 255, 0.09);
    --ljm-gold-border: rgba(201, 166, 70, 0.22);

    --ljm-header-height: 118px;
}


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

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

html {
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100%;

    overflow-x: hidden;

    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100%;

    overflow-x: hidden;

    background: var(--ljm-black);
    color: var(--ljm-silver);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.65;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.ljm-menu-open {
    overflow: hidden;
}

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

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;

    font-weight: 700;
    line-height: 1;

    letter-spacing: -0.045em;
}

p {
    margin-top: 0;
}


/* =========================================================
   WORDPRESS BASE
   ========================================================= */

#page,
.site,
.site-content,
.site-main,
#primary {
    width: 100%;
    max-width: none;
    min-height: 0;

    overflow: visible;
}

.ljm-home {
    display: block;

    position: relative;

    width: 100%;

    background: var(--ljm-black);
}


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

.ljm-header {
    position: relative;

    z-index: 10000;

    width: 100%;
    height: var(--ljm-header-height);

    background:
        linear-gradient(
            180deg,
            #080808 0%,
            #030303 55%,
            #020202 100%
        );

    border-bottom:
        1px solid
        rgba(201, 166, 70, 0.18);

    box-shadow:
        0 14px 40px
        rgba(0, 0, 0, 0.35);
}

.ljm-header::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(201, 166, 70, 0.06) 20%,
            rgba(234, 212, 135, 0.42) 50%,
            rgba(201, 166, 70, 0.06) 80%,
            transparent 100%
        );

    pointer-events: none;
}


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

.ljm-header-inner {
    width: 100%;
    height: 100%;

    margin: 0;

    padding-left: clamp(28px, 3vw, 58px);
    padding-right: clamp(28px, 3vw, 58px);

    display: flex;
    align-items: center;

    gap: 48px;
}


/* =========================================================
   LOGO
   ========================================================= */

.ljm-header-logo {
    display: flex;
    align-items: center;

    flex: 0 0 auto;
}

.ljm-header-logo img {
    display: block;

    width: auto;
    height: 88px;

    max-width: 310px;

    object-fit: contain;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.ljm-header-logo:hover img {
    transform: translateY(-1px);

    filter:
        brightness(1.08)
        drop-shadow(
            0 5px 15px
            rgba(255, 255, 255, 0.04)
        );
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.ljm-desktop-nav {
    display: flex;
    align-items: center;

    gap: 46px;

    margin-left: auto;
}

.ljm-desktop-nav a {
    position: relative;

    height: var(--ljm-header-height);

    display: inline-flex;
    align-items: center;

    color: #c5c5c5;

    font-size: 14px;
    font-weight: 650;

    line-height: 1;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

@supports (-webkit-background-clip: text) {

    .ljm-desktop-nav a {
        background:
            linear-gradient(
                180deg,
                #eeeeee 0%,
                #c5c5c5 48%,
                #8c8c8c 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}

.ljm-desktop-nav a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 29px;

    width: 0;
    height: 2px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            var(--ljm-gold-dark),
            var(--ljm-gold-light),
            var(--ljm-gold-dark)
        );

    box-shadow:
        0 0 12px
        rgba(201, 166, 70, 0.3);

    transition: width 0.28s ease;
}

.ljm-desktop-nav a:hover,
.ljm-desktop-nav a:focus-visible {
    transform: translateY(-1px);
}

.ljm-desktop-nav a:hover::after,
.ljm-desktop-nav a:focus-visible::after {
    width: 100%;
}

@supports (-webkit-background-clip: text) {

    .ljm-desktop-nav a:hover,
    .ljm-desktop-nav a:focus-visible {
        background:
            linear-gradient(
                180deg,
                #f3dda0 0%,
                #d5b34f 50%,
                #98701e 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}


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

.ljm-header-actions {
    display: flex;
    align-items: center;

    flex: 0 0 auto;

    gap: 28px;

    margin-left: 22px;
}


/* =========================================================
   ACCOUNT LINK
   ========================================================= */

.ljm-account-link {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #c7c7c7;

    font-size: 13px;
    font-weight: 650;

    line-height: 1;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.ljm-account-mark {
    position: relative;

    display: block;

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    border:
        1px solid
        rgba(205, 205, 205, 0.72);

    border-radius: 50%;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.ljm-account-mark::before {
    content: "";

    position: absolute;

    top: 4px;
    left: 50%;

    width: 4px;
    height: 4px;

    transform: translateX(-50%);

    border:
        1px solid
        rgba(205, 205, 205, 0.85);

    border-radius: 50%;
}

.ljm-account-mark::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 3px;

    width: 8px;
    height: 4px;

    transform: translateX(-50%);

    border:
        1px solid
        rgba(205, 205, 205, 0.85);

    border-bottom: 0;

    border-radius: 8px 8px 0 0;
}

.ljm-account-link:hover,
.ljm-account-link:focus-visible {
    color: var(--ljm-gold-light);

    transform: translateY(-1px);
}

.ljm-account-link:hover .ljm-account-mark,
.ljm-account-link:focus-visible .ljm-account-mark {
    border-color: var(--ljm-gold);

    box-shadow:
        0 0 14px
        rgba(201, 166, 70, 0.18);
}


/* =========================================================
   HEADER HIRE BUTTON
   ========================================================= */

.ljm-header-cta {
    position: relative;

    min-width: 104px;
    height: 50px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    color: #070707;

    background:
        linear-gradient(
            135deg,
            #765616 0%,
            #bd9130 25%,
            #e6ca70 48%,
            #b88b2a 73%,
            #725115 100%
        );

    border:
        1px solid
        rgba(238, 210, 126, 0.62);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.38),
        inset 0 -1px 0 rgba(55, 37, 0, 0.3),
        0 8px 24px rgba(0, 0, 0, 0.4);

    font-size: 13px;
    font-weight: 800;

    line-height: 1;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.ljm-header-cta::before {
    content: "";

    position: absolute;

    top: 0;
    left: -80%;

    width: 50%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.55s ease;
}

.ljm-header-cta:hover::before {
    left: 135%;
}

.ljm-header-cta:hover,
.ljm-header-cta:focus-visible {
    transform: translateY(-2px);

    filter: brightness(1.06);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.44),
        0 12px 32px rgba(201, 166, 70, 0.17),
        0 10px 30px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   MOBILE MENU TOGGLE
   ========================================================= */

.ljm-menu-toggle {
    display: none;

    position: relative;

    width: 48px;
    height: 48px;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 7px;

    background:
        linear-gradient(
            180deg,
            #0d0d0d,
            #070707
        );

    border:
        1px solid
        rgba(201, 166, 70, 0.3);
}

.ljm-menu-toggle span {
    display: block;

    width: 21px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #777,
            #eee,
            #777
        );

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.ljm-menu-open .ljm-menu-toggle span:first-child {
    transform:
        translateY(4px)
        rotate(45deg);
}

.ljm-menu-open .ljm-menu-toggle span:last-child {
    transform:
        translateY(-4px)
        rotate(-45deg);
}


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

.ljm-mobile-menu {
    visibility: hidden;
    opacity: 0;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 9998;

    width: 100%;
    height: 100dvh;

    padding-top: var(--ljm-header-height);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.05),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            #070707 0%,
            #020202 100%
        );

    transform: translateY(-12px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

.ljm-menu-open .ljm-mobile-menu {
    visibility: visible;
    opacity: 1;

    transform: translateY(0);
}

.ljm-mobile-menu nav {
    width: min(calc(100% - 48px), 620px);
    height: calc(100% - 30px);

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-bottom: 30px;
}

.ljm-mobile-menu nav > a {
    display: flex;
    align-items: center;

    min-height: 72px;

    color: #d0d0d0;

    font-size: clamp(25px, 7vw, 36px);
    font-weight: 650;

    line-height: 1.1;
    letter-spacing: -0.025em;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);
}

.ljm-mobile-menu nav > a:not(.ljm-mobile-hire)::after {
    content: "→";

    margin-left: auto;

    color: var(--ljm-gold);

    font-size: 18px;

    opacity: 0.55;
}

.ljm-mobile-hire {
    justify-content: center;

    min-height: 60px !important;

    margin-top: 32px;

    color: #070707 !important;

    background:
        linear-gradient(
            135deg,
            #85651d 0%,
            #d3b252 30%,
            #ead17b 50%,
            #bf9430 75%,
            #795716 100%
        );

    border:
        1px solid
        rgba(238, 210, 126, 0.65) !important;

    font-size: 15px !important;
    font-weight: 800 !important;
}


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

.ljm-hero {
    position: relative;

    isolation: isolate;

    width: 100%;

    min-height:
        calc(
            100svh -
            var(--ljm-header-height)
        );

    display: flex;
    align-items: center;

    overflow: hidden;

    background-color: #020202;

    /*
     * IMAGE POSITION LOCKED HERE.
     * This is the version we liked.
     */

    background-image:
        var(--ljm-hero-image);

    background-repeat: no-repeat;

    background-size:
        auto 92%;

    background-position:
        right center;
}


/* =========================================================
   HERO IMAGE BLEND
   ========================================================= */

.ljm-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            #020202 0%,
            #020202 23%,
            rgba(2, 2, 2, 0.99) 31%,
            rgba(2, 2, 2, 0.94) 38%,
            rgba(2, 2, 2, 0.78) 45%,
            rgba(2, 2, 2, 0.50) 53%,
            rgba(2, 2, 2, 0.22) 62%,
            rgba(2, 2, 2, 0.06) 73%,
            transparent 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 2, 2, 0.18) 0%,
            transparent 24%,
            transparent 65%,
            rgba(2, 2, 2, 0.30) 82%,
            #020202 100%
        );

    pointer-events: none;
}


/* =========================================================
   HERO SOFT SHADE
   ========================================================= */

.ljm-hero-shade {
    position: absolute;

    inset: 0;

    z-index: 2;

    background:
        radial-gradient(
            ellipse at 75% 48%,
            transparent 0%,
            transparent 30%,
            rgba(2, 2, 2, 0.03) 43%,
            rgba(2, 2, 2, 0.13) 58%,
            rgba(2, 2, 2, 0.32) 77%,
            rgba(2, 2, 2, 0.55) 100%
        );

    pointer-events: none;
}


/* =========================================================
   HERO BOTTOM LINE
   ========================================================= */

.ljm-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 4;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(201, 166, 70, 0.06) 20%,
            rgba(201, 166, 70, 0.38) 50%,
            rgba(201, 166, 70, 0.06) 80%,
            transparent 100%
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.ljm-hero-content {
    position: relative;

    z-index: 5;

    width: 760px;

    max-width:
        calc(
            53vw -
            70px
        );

    margin-left:
        clamp(
            55px,
            5.5vw,
            105px
        );

    padding:
        clamp(
            75px,
            9vh,
            120px
        )
        0;
}


/* =========================================================
   HERO HEADING
   ========================================================= */

.ljm-hero h1 {
    display: block;

    width: 100%;

    margin: 0 0 24px;

    /*
     * Padding is deliberate.
     * It gives descenders on y / g / p / j room to render.
     */

    padding:
        0.04em
        0
        0.14em;

    overflow: visible;

    color: #e7e7e7;

    font-size:
        clamp(
            52px,
            3.9vw,
            74px
        );

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.055em;
}

.ljm-hero h1 > span {
    display: block;

    width: 100%;

    overflow: visible;

    white-space: normal;
}


/* =========================================================
   METALLIC HERO TEXT
   ========================================================= */

@supports (-webkit-background-clip: text) {

    .ljm-hero h1 {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #f4f4f4 16%,
                #dddddd 37%,
                #b5b5b5 59%,
                #8d8d8d 78%,
                #c8c8c8 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}


/* =========================================================
   GOLD FULL STOP
   ========================================================= */

.ljm-gold-stop {
    color: var(--ljm-gold);

    -webkit-text-fill-color: var(--ljm-gold);
}


/* =========================================================
   HERO PARAGRAPH
   ========================================================= */

.ljm-hero-content > p {
    display: block;

    width: 100%;
    max-width: 575px;

    height: auto;
    max-height: none;

    margin: 0 0 36px;
    padding: 0;

    overflow: visible;

    color: #aaa;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;

    letter-spacing: -0.005em;

    white-space: normal;
}


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

.ljm-hero-buttons {
    display: flex;
    align-items: center;

    gap: 12px;
}

.ljm-button {
    position: relative;

    min-height: 56px;

    padding: 0 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    font-size: 14px;
    font-weight: 750;

    line-height: 1;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


/* =========================================================
   GOLD HERO BUTTON
   ========================================================= */

.ljm-button-gold {
    color: #070707;

    background:
        linear-gradient(
            135deg,
            #765616 0%,
            #bd9130 25%,
            #e6ca70 48%,
            #b88b2a 73%,
            #725115 100%
        );

    border:
        1px solid
        rgba(230, 202, 112, 0.58);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        0 15px 35px rgba(0, 0, 0, 0.35);
}

.ljm-button-gold::before {
    content: "";

    position: absolute;

    top: 0;
    left: -80%;

    width: 50%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.34),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.55s ease;
}

.ljm-button-gold:hover::before {
    left: 135%;
}

.ljm-button-gold:hover,
.ljm-button-gold:focus-visible {
    transform: translateY(-2px);

    filter: brightness(1.07);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 18px 40px rgba(190, 148, 45, 0.15);
}


/* =========================================================
   DARK HERO BUTTON
   ========================================================= */

.ljm-button-dark {
    color: #c8c8c8;

    background:
        rgba(5, 5, 5, 0.48);

    border:
        1px solid
        rgba(210, 210, 210, 0.22);

    backdrop-filter: blur(6px);
}

.ljm-button-dark:hover,
.ljm-button-dark:focus-visible {
    color: var(--ljm-gold-light);

    border-color:
        rgba(198, 158, 53, 0.55);

    background:
        rgba(5, 5, 5, 0.72);

    transform: translateY(-2px);
}


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

.site-footer,
.ljm-footer {
    position: relative;

    width: 100%;

    padding: 80px 0 30px;

    background: #020202;

    color: var(--ljm-silver);

    border-top:
        1px solid
        rgba(201, 166, 70, 0.16);
}


/* =========================================================
   SMALLER DESKTOP
   ========================================================= */

@media (max-width: 1350px) {

    .ljm-desktop-nav {
        gap: 32px;
    }

    .ljm-header-actions {
        gap: 20px;
        margin-left: 12px;
    }

    .ljm-hero {
        background-size: auto 88%;
        background-position: 68% center;
    }

    .ljm-hero-content {
        width: 640px;
        max-width: 49vw;

        margin-left: 48px;
    }

    .ljm-hero h1 {
        font-size:
            clamp(
                48px,
                4vw,
                62px
            );

        line-height: 1.08;
    }

    .ljm-hero-content > p {
        max-width: 520px;

        font-size: 15.5px;
    }
}


/* =========================================================
   TABLET / MOBILE HEADER
   ========================================================= */

@media (max-width: 1050px) {

    :root {
        --ljm-header-height: 94px;
    }

    .ljm-header-inner {
        position: relative;

        z-index: 10000;

        padding-left: 22px;
        padding-right: 22px;

        gap: 20px;
    }

    .ljm-header-logo img {
        height: 69px;
        max-width: 245px;
    }

    .ljm-desktop-nav {
        display: none;
    }

    .ljm-header-actions {
        margin-left: auto;

        gap: 16px;
    }

    .ljm-menu-toggle {
        display: flex;
    }

    .ljm-hero {
        min-height: 800px;

        align-items: flex-start;

        background-size: auto 58%;
        background-position: center bottom;
    }

    .ljm-hero::before {
        background:
            linear-gradient(
                180deg,
                #020202 0%,
                #020202 25%,
                rgba(2, 2, 2, 0.98) 34%,
                rgba(2, 2, 2, 0.82) 44%,
                rgba(2, 2, 2, 0.48) 55%,
                rgba(2, 2, 2, 0.12) 68%,
                #020202 100%
            );
    }

    .ljm-hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(2, 2, 2, 0.22) 0%,
                transparent 44%,
                rgba(2, 2, 2, 0.08) 67%,
                #020202 100%
            );
    }

    .ljm-hero-content {
        width: 100%;
        max-width: 720px;

        margin: 0;

        padding:
            65px 34px
            430px;
    }

    .ljm-hero h1 {
        max-width: 700px;

        font-size:
            clamp(
                50px,
                7vw,
                66px
            );

        line-height: 1.07;
    }

    .ljm-hero-content > p {
        max-width: 580px;

        font-size: 16px;
    }
}


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

@media (max-width: 760px) {

    :root {
        --ljm-header-height: 80px;
    }

    .ljm-header {
        box-shadow:
            0 10px 30px
            rgba(0, 0, 0, 0.4);
    }

    .ljm-header-inner {
        padding-left: 15px;
        padding-right: 15px;

        gap: 10px;
    }

    .ljm-header-logo {
        flex: 1 1 auto;

        min-width: 0;
    }

    .ljm-header-logo img {
        width: auto;
        height: auto;

        max-width: 190px;
        max-height: 60px;
    }

    .ljm-account-link,
    .ljm-header-cta {
        display: none;
    }

    .ljm-menu-toggle {
        display: flex;

        flex: 0 0 46px;

        width: 46px;
        height: 46px;
    }

    .ljm-mobile-menu {
        padding-top: 80px;
    }

    .ljm-mobile-menu nav {
        width: calc(100% - 36px);

        padding-bottom: 22px;
    }

    .ljm-mobile-menu nav > a {
        min-height: 68px;
    }


    /* MOBILE HERO */

    .ljm-hero {
        min-height: 810px;

        align-items: flex-start;

        background-size: auto 48%;
        background-position: center bottom 2%;
    }

    .ljm-hero::before {
        background:
            linear-gradient(
                180deg,
                #020202 0%,
                #020202 24%,
                rgba(2, 2, 2, 0.97) 36%,
                rgba(2, 2, 2, 0.76) 46%,
                rgba(2, 2, 2, 0.38) 57%,
                rgba(2, 2, 2, 0.10) 67%,
                #020202 100%
            );
    }

    .ljm-hero-shade {
        background:
            linear-gradient(
                180deg,
                rgba(2, 2, 2, 0.22),
                transparent 45%,
                rgba(2, 2, 2, 0.08) 68%,
                #020202 100%
            );
    }

    .ljm-hero-content {
        width: 100%;
        max-width: none;

        margin: 0;

        padding:
            46px 20px
            365px;
    }

    .ljm-hero h1 {
        width: 100%;
        max-width: 600px;

        margin-bottom: 22px;

        padding-bottom: 0.14em;

        font-size:
            clamp(
                43px,
                11vw,
                56px
            );

        line-height: 1.07;

        letter-spacing: -0.05em;
    }

    .ljm-hero h1 > span {
        display: block;

        width: 100%;

        white-space: normal;

        overflow: visible;
    }

    .ljm-hero-content > p {
        width: 100%;
        max-width: 500px;

        margin-bottom: 30px;

        font-size: 15px;
        line-height: 1.68;
    }

    .ljm-hero-buttons {
        width: 100%;
        max-width: 500px;
    }

    .ljm-hero-buttons .ljm-button {
        flex: 1;
    }
}


/* =========================================================
   WORDPRESS ADMIN BAR
   ========================================================= */

.admin-bar .ljm-mobile-menu {
    top: 32px;

    height:
        calc(
            100dvh -
            32px
        );
}

@media (max-width: 782px) {

    .admin-bar .ljm-mobile-menu {
        top: 46px;

        height:
            calc(
                100dvh -
                46px
            );
    }
}


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

@media (max-width: 400px) {

    .ljm-header-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ljm-header-logo img {
        max-width: 165px;
        max-height: 55px;
    }

    .ljm-mobile-menu nav {
        width: calc(100% - 30px);
    }

    .ljm-hero {
        min-height: 800px;

        background-size: auto 43%;
    }

    .ljm-hero-content {
        padding:
            40px 16px
            335px;
    }

    .ljm-hero h1 {
        font-size: 41px;

        line-height: 1.07;

        padding-bottom: 0.14em;
    }

    .ljm-hero-content > p {
        font-size: 14.5px;

        line-height: 1.65;
    }

    .ljm-hero-buttons {
        display: block;
    }

    .ljm-hero-buttons .ljm-button {
        width: 100%;
    }

    .ljm-hero-buttons .ljm-button + .ljm-button {
        margin-top: 9px;
    }
}

/* =========================================================
   ABOUT LJM
   ========================================================= */

.ljm-about {
    position: relative;

    width: 100%;

    padding:
        clamp(110px, 10vw, 175px)
        clamp(28px, 5.5vw, 105px);

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 85% 45%,
            rgba(255, 255, 255, 0.025) 0%,
            transparent 42%
        ),
        #020202;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);
}


/* =========================================================
   ABOUT INNER
   ========================================================= */

.ljm-about-inner {
    width: 100%;
    max-width: 1650px;

    margin: 0 auto;

    display: grid;

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

    gap:
        clamp(
            80px,
            9vw,
            170px
        );

    align-items: start;
}


/* =========================================================
   LEFT COPY
   ========================================================= */

.ljm-about-copy {
    max-width: 720px;
}


/* Small metallic label */

.ljm-section-label {
    margin: 0 0 25px;

    color: var(--ljm-gold);

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

    line-height: 1;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* =========================================================
   ABOUT TITLE
   ========================================================= */

.ljm-about h2 {
    margin: 0 0 40px;

    padding-bottom: 0.08em;

    overflow: visible;

    color: #e5e5e5;

    font-size:
        clamp(
            44px,
            4vw,
            72px
        );

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -0.055em;
}


/* Metallic heading */

@supports (-webkit-background-clip: text) {

    .ljm-about h2 {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 22%,
                #cfcfcf 48%,
                #8e8e8e 77%,
                #bdbdbd 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}


/* =========================================================
   ABOUT BODY COPY
   ========================================================= */

.ljm-about-text {
    max-width: 640px;
}

.ljm-about-text p {
    margin: 0 0 22px;

    color: #929292;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.78;

    letter-spacing: -0.005em;
}

.ljm-about-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT TEXT LINK
   ========================================================= */

.ljm-text-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-top: 37px;
    padding-bottom: 7px;

    color: #d2d2d2;

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

    line-height: 1;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.20);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.ljm-text-link span {
    color: var(--ljm-gold);

    transition:
        transform 0.25s ease;
}

.ljm-text-link:hover,
.ljm-text-link:focus-visible {
    color: var(--ljm-gold-light);

    border-color: var(--ljm-gold);
}

.ljm-text-link:hover span,
.ljm-text-link:focus-visible span {
    transform: translateX(5px);
}


/* =========================================================
   RIGHT STATEMENTS
   ========================================================= */

.ljm-about-statements {
    width: 100%;

    border-top:
        1px solid
        rgba(185, 185, 185, 0.22);
}


/* Individual statement */

.ljm-statement {
    position: relative;

    padding:
        clamp(34px, 3.5vw, 54px)
        0;

    border-bottom:
        1px solid
        rgba(185, 185, 185, 0.22);

    transition:
        padding-left 0.32s ease;
}


/*
 * Gold divider overlays the metallic divider
 * and grows across on hover.
 */

.ljm-statement::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--ljm-gold-dark),
            var(--ljm-gold-light),
            var(--ljm-gold)
        );

    box-shadow:
        0 0 14px
        rgba(201, 166, 70, 0.18);

    transition:
        width 0.42s ease;
}

.ljm-statement:hover {
    padding-left: 18px;
}

.ljm-statement:hover::after {
    width: 100%;
}


/* =========================================================
   STATEMENT TITLES
   ========================================================= */

.ljm-statement h3 {
    margin: 0 0 11px;

    padding-bottom: 0.06em;

    overflow: visible;

    color: #d6d6d6;

    font-size:
        clamp(
            27px,
            2.2vw,
            39px
        );

    font-weight: 650;

    line-height: 1.08;

    letter-spacing: -0.04em;

    transition:
        color 0.3s ease;
}

.ljm-statement:hover h3 {
    color: #eeeeee;
}


/* =========================================================
   STATEMENT SUPPORTING COPY
   ========================================================= */

.ljm-statement p {
    margin: 0;

    color: #777;

    font-size: 14px;
    font-weight: 450;

    line-height: 1.55;

    transition:
        color 0.3s ease;
}

.ljm-statement:hover p {
    color: #a7a7a7;
}


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

@media (max-width: 1050px) {

    .ljm-about {
        padding:
            100px
            34px;
    }

    .ljm-about-inner {
        grid-template-columns: 1fr;

        gap: 80px;
    }

    .ljm-about-copy {
        max-width: 760px;
    }

    .ljm-about-text {
        max-width: 680px;
    }

    .ljm-about-statements {
        max-width: 760px;
    }

    .ljm-statement h3 {
        font-size: 34px;
    }
}


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

@media (max-width: 760px) {

    .ljm-about {
        padding:
            82px
            20px;
    }

    .ljm-about-inner {
        gap: 62px;
    }

    .ljm-section-label {
        margin-bottom: 20px;

        font-size: 11px;
    }

    .ljm-about h2 {
        margin-bottom: 31px;

        font-size:
            clamp(
                40px,
                11vw,
                54px
            );

        line-height: 1.05;
    }

    .ljm-about-text p {
        font-size: 15px;

        line-height: 1.72;
    }

    .ljm-text-link {
        margin-top: 31px;
    }

    .ljm-statement {
        padding:
            31px
            0;
    }

    .ljm-statement:hover {
        padding-left: 10px;
    }

    .ljm-statement h3 {
        margin-bottom: 9px;

        font-size:
            clamp(
                27px,
                8vw,
                34px
            );

        line-height: 1.08;
    }

    .ljm-statement p {
        font-size: 14px;
    }
}


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

@media (max-width: 400px) {

    .ljm-about {
        padding:
            70px
            16px;
    }

    .ljm-about-inner {
        gap: 52px;
    }

    .ljm-about h2 {
        font-size: 39px;
    }

    .ljm-statement h3 {
        font-size: 27px;
    }
}

/* =========================================================
   BOOK PLANT
   ========================================================= */

.ljm-fleet {
    position: relative;

    width: 100%;

    padding:
        clamp(110px, 10vw, 170px)
        clamp(28px, 5.5vw, 105px);

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255, 255, 255, 0.035),
            transparent 40%
        ),
        #050505;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);
}

.ljm-fleet-inner {
    width: 100%;
    max-width: 1650px;

    margin: 0 auto;
}


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

.ljm-fleet-header {
    width: 100%;
    max-width: 760px;

    margin:
        0 auto
        clamp(65px, 7vw, 105px);

    text-align: center;
}

.ljm-fleet-header .ljm-section-label {
    margin-bottom: 22px;
}

.ljm-fleet-header h2 {
    margin: 0 0 27px;

    padding-bottom: 0.08em;

    overflow: visible;

    color: #e7e7e7;

    font-size:
        clamp(
            48px,
            5vw,
            78px
        );

    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -0.055em;
}

@supports (-webkit-background-clip: text) {

    .ljm-fleet-header h2 {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 22%,
                #cfcfcf 48%,
                #8e8e8e 77%,
                #bdbdbd 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}

.ljm-fleet-intro {
    max-width: 680px;

    margin: 0 auto;

    color: #929292;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   FLEET GRID
   ========================================================= */

.ljm-fleet-grid {
    display: grid;

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

    gap: 24px;
}


/* =========================================================
   PLANT CARD
   ========================================================= */

.ljm-plant-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #060606 100%
        );

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

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

.ljm-plant-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(201, 166, 70, 0.38);

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.36);
}


/* Gold top edge */

.ljm-plant-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    z-index: 4;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--ljm-gold-dark),
            var(--ljm-gold-light),
            var(--ljm-gold-dark)
        );

    transition:
        width 0.4s ease;
}

.ljm-plant-card:hover::before {
    width: 100%;
}


/* =========================================================
   PLANT IMAGE
   ========================================================= */

.ljm-plant-image {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #0a0a0a;
}

.ljm-plant-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(5, 5, 5, 0.65) 100%
        );

    pointer-events: none;
}

.ljm-plant-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.ljm-plant-card:hover
.ljm-plant-image img {
    transform: scale(1.025);
}

.ljm-plant-image-empty {
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #151515,
            #070707 70%
        );
}

.ljm-plant-image-empty span {
    color: #555;

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

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


/* =========================================================
   PLANT CARD BODY
   ========================================================= */

.ljm-plant-card-body {
    padding:
        30px
        30px
        28px;
}

.ljm-plant-category {
    margin: 0 0 12px;

    color: var(--ljm-gold);

    font-size: 10px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.ljm-plant-card h3 {
    margin: 0 0 16px;

    padding-bottom: 0.06em;

    overflow: visible;

    color: #dedede;

    font-size:
        clamp(
            26px,
            2vw,
            34px
        );

    font-weight: 650;

    line-height: 1.08;

    letter-spacing: -0.045em;
}

.ljm-plant-description {
    min-height: 52px;

    margin: 0 0 28px;

    color: #808080;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   PRICING
   ========================================================= */

.ljm-plant-rates {
    display: grid;

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

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

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.ljm-rate {
    padding:
        22px
        18px
        22px
        0;
}

.ljm-rate + .ljm-rate {
    padding-left: 22px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.09);
}

.ljm-rate-label {
    display: block;

    margin-bottom: 7px;

    color: #696969;

    font-size: 11px;
    font-weight: 650;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.ljm-rate strong {
    display: block;

    color: #dedede;

    font-size: 24px;
    font-weight: 650;

    line-height: 1;
}

.ljm-rate-main strong {
    color: var(--ljm-gold-light);
}


/* =========================================================
   ADDITIONAL RATES
   ========================================================= */

.ljm-additional-rates {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 22px;

    padding-top: 18px;

    color: #6f6f6f;

    font-size: 12px;
}

.ljm-additional-rates span {
    display: inline-flex;

    gap: 7px;
}

.ljm-additional-rates strong {
    color: #aaa;

    font-weight: 650;
}


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

.ljm-plant-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 27px;
}

.ljm-plant-status {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #777;

    font-size: 11px;
    font-weight: 650;
}

.ljm-status-dot {
    display: block;

    width: 6px;
    height: 6px;

    flex: 0 0 6px;

    border-radius: 50%;

    background: var(--ljm-gold);

    box-shadow:
        0 0 9px
        rgba(201, 166, 70, 0.42);
}

.ljm-plant-book {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #cfcfcf;

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

    transition:
        color 0.25s ease;
}

.ljm-plant-book span {
    color: var(--ljm-gold);

    transition:
        transform 0.25s ease;
}

.ljm-plant-book:hover {
    color: var(--ljm-gold-light);
}

.ljm-plant-book:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FLEET BOTTOM
   ========================================================= */

.ljm-fleet-bottom {
    display: flex;
    justify-content: center;

    margin-top:
        clamp(
            50px,
            6vw,
            80px
        );
}

.ljm-fleet-empty {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;

    color: #888;
}


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

@media (max-width: 1100px) {

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


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

@media (max-width: 700px) {

    .ljm-fleet {
        padding:
            82px
            20px;
    }

    .ljm-fleet-header {
        margin-bottom: 52px;
    }

    .ljm-fleet-header h2 {
        margin-bottom: 22px;

        font-size:
            clamp(
                42px,
                12vw,
                56px
            );
    }

    .ljm-fleet-intro {
        font-size: 15px;

        line-height: 1.7;
    }

    .ljm-fleet-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .ljm-plant-card-body {
        padding:
            25px
            22px
            24px;
    }

    .ljm-plant-card h3 {
        font-size: 29px;
    }

    .ljm-plant-description {
        min-height: 0;
    }

    .ljm-rate {
        padding:
            19px
            14px
            19px
            0;
    }

    .ljm-rate + .ljm-rate {
        padding-left: 18px;
    }

    .ljm-rate strong {
        font-size: 21px;
    }

    .ljm-plant-card-footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .ljm-plant-book {
        font-size: 14px;
    }
}

/* =========================================================
   HIRE JOURNEY
   ========================================================= */

.ljm-journey {
    position: relative;

    width: 100%;

    padding:
        clamp(110px, 10vw, 170px)
        clamp(28px, 5.5vw, 105px)
        clamp(130px, 12vw, 200px);

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 42%,
            rgba(201, 166, 70, 0.035),
            transparent 42%
        ),
        #020202;
}


/* =========================================================
   INTRO
   ========================================================= */

.ljm-journey-intro {
    width: 100%;
    max-width: 760px;

    margin:
        0 auto
        clamp(85px, 9vw, 140px);

    text-align: center;
}

.ljm-journey-intro h2 {
    margin: 0 0 30px;

    padding-bottom: 0.1em;

    overflow: visible;

    color: #e7e7e7;

    font-size:
        clamp(
            48px,
            5vw,
            78px
        );

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -0.055em;
}

@supports (-webkit-background-clip: text) {

    .ljm-journey-intro h2 {
        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 22%,
                #cfcfcf 48%,
                #8e8e8e 77%,
                #bdbdbd 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}

.ljm-journey-intro > p:last-child {
    max-width: 670px;

    margin: 0 auto;

    color: #929292;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   JOURNEY TRACK
   ========================================================= */

.ljm-journey-track {
    position: relative;

    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding:
        35px
        0;
}


/* =========================================================
   CENTRAL LINE
   ========================================================= */

.ljm-journey-line {
    position: absolute;

    top: 0;
    bottom: 0;

    left: 50%;

    width: 1px;

    transform: translateX(-50%);

    overflow: hidden;

    background:
        rgba(180, 180, 180, 0.18);
}

.ljm-journey-line-progress {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 0;

    background:
        linear-gradient(
            180deg,
            #745516 0%,
            #e1c46a 25%,
            #c9a646 70%,
            #745516 100%
        );

    box-shadow:
        0 0 18px
        rgba(201, 166, 70, 0.3);

    transition:
        height 0.1s linear;
}


/* =========================================================
   INDIVIDUAL STEP
   ========================================================= */

.ljm-journey-step {
    position: relative;

    width: 100%;

    min-height: 275px;

    display: flex;

    opacity: 0;

    transform: translateY(55px);

    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.2,.8,.2,1);
}

.ljm-journey-step.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   ALTERNATING POSITIONS
   ========================================================= */

.ljm-journey-left {
    justify-content: flex-start;

    padding-right:
        calc(50% + 58px);
}

.ljm-journey-right {
    justify-content: flex-end;

    padding-left:
        calc(50% + 58px);
}


/* =========================================================
   CONNECTING NODE
   ========================================================= */

.ljm-journey-node {
    position: absolute;

    top: 54px;
    left: 50%;

    z-index: 4;

    width: 18px;
    height: 18px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: #050505;

    border:
        1px solid
        rgba(180, 180, 180, 0.35);

    box-shadow:
        0 0 0 8px
        #020202;

    transition:
        border-color 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.ljm-journey-step.is-visible
.ljm-journey-node {
    border-color:
        var(--ljm-gold);

    background:
        var(--ljm-gold);

    box-shadow:
        0 0 0 8px #020202,
        0 0 22px rgba(201, 166, 70, 0.34);
}


/* =========================================================
   HORIZONTAL CONNECTOR
   ========================================================= */

.ljm-journey-step::after {
    content: "";

    position: absolute;

    top: 62px;

    height: 1px;

    width: 42px;

    background:
        rgba(180, 180, 180, 0.18);

    transition:
        background 0.5s ease;
}

.ljm-journey-left::after {
    right: calc(50% + 9px);
}

.ljm-journey-right::after {
    left: calc(50% + 9px);
}

.ljm-journey-step.is-visible::after {
    background:
        linear-gradient(
            90deg,
            var(--ljm-gold-dark),
            var(--ljm-gold)
        );
}


/* =========================================================
   JOURNEY CARD
   ========================================================= */

.ljm-journey-card {
    position: relative;

    width: 100%;

    padding:
        34px
        36px
        37px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(13, 13, 13, 0.96),
            rgba(5, 5, 5, 0.98)
        );

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

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.24);

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

.ljm-journey-card::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--ljm-gold-dark),
            var(--ljm-gold-light),
            var(--ljm-gold-dark)
        );

    transition:
        width 0.45s ease;
}

.ljm-journey-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(201, 166, 70, 0.32);

    box-shadow:
        0 25px 65px
        rgba(0, 0, 0, 0.4);
}

.ljm-journey-card:hover::after {
    width: 100%;
}


/* =========================================================
   STEP NUMBER
   ========================================================= */

.ljm-journey-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 47px;
    height: 31px;

    margin-bottom: 25px;

    color: #080808;

    background:
        linear-gradient(
            135deg,
            #765616 0%,
            #d0ae4d 40%,
            #ead17b 55%,
            #8b661a 100%
        );

    border:
        1px solid
        rgba(234, 209, 123, 0.45);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.14em;
}


/* =========================================================
   CARD COPY
   ========================================================= */

.ljm-journey-card h3 {
    margin: 0 0 14px;

    padding-bottom: 0.05em;

    overflow: visible;

    color: #dedede;

    font-size:
        clamp(
            26px,
            2vw,
            34px
        );

    font-weight: 650;

    line-height: 1.08;

    letter-spacing: -0.04em;
}

.ljm-journey-card p {
    margin: 0;

    color: #7f7f7f;

    font-size: 14px;

    line-height: 1.65;
}


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

@media (max-width: 800px) {

    .ljm-journey {
        padding:
            85px
            20px
            110px;
    }

    .ljm-journey-intro {
        margin-bottom: 75px;
    }

    .ljm-journey-intro h2 {
        font-size:
            clamp(
                42px,
                11vw,
                56px
            );
    }

    .ljm-journey-intro > p:last-child {
        font-size: 15px;

        line-height: 1.7;
    }

    .ljm-journey-track {
        padding-left: 34px;
    }

    .ljm-journey-line {
        left: 8px;

        transform: none;
    }

    .ljm-journey-step {
        min-height: auto;

        margin-bottom: 30px;

        padding:
            0
            0
            0
            35px;

        justify-content: flex-start;
    }

    .ljm-journey-step:last-child {
        margin-bottom: 0;
    }

    .ljm-journey-node {
        top: 45px;
        left: -26px;

        transform: none;

        width: 15px;
        height: 15px;
    }

    .ljm-journey-step::after {
        top: 52px;
        left: -11px;
        right: auto;

        width: 46px;
    }

    .ljm-journey-card {
        padding:
            28px
            25px
            30px;
    }

    .ljm-journey-card h3 {
        font-size: 28px;
    }
}

/* =========================================================
   APPLICATIONS
   LEFT COPY / RIGHT STATEMENTS
   ========================================================= */

.ljm-applications {
    position: relative;
    width: 100%;

    padding:
        clamp(110px, 10vw, 170px)
        clamp(28px, 5.5vw, 105px);

    background:
        radial-gradient(
            ellipse at 12% 45%,
            rgba(201, 166, 70, 0.035),
            transparent 34%
        ),
        #050505;

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

.ljm-applications-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    gap: clamp(80px, 10vw, 180px);

    width: 100%;
    max-width: 1550px;

    margin: 0 auto;

    align-items: center;
}

.ljm-applications-copy {
    max-width: 660px;
}

.ljm-applications-copy h2,
.ljm-delivery-copy h2 {
    margin: 0 0 32px;

    padding-bottom: 0.1em;

    overflow: visible;

    color: #e5e5e5;

    font-size: clamp(48px, 4.6vw, 76px);

    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -0.055em;
}

@supports (-webkit-background-clip: text) {

    .ljm-applications-copy h2,
    .ljm-delivery-copy h2 {

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 24%,
                #c7c7c7 52%,
                #8b8b8b 80%,
                #bcbcbc 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}

.ljm-applications-text,
.ljm-delivery-text {
    max-width: 620px;

    margin-bottom: 34px;
}

.ljm-applications-text p,
.ljm-delivery-text p {
    margin: 0 0 18px;

    color: #8d8d8d;

    font-size: 15px;

    line-height: 1.75;
}

.ljm-applications-text p:last-child,
.ljm-delivery-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   APPLICATION LINES
   ========================================================= */

.ljm-application-lines {
    width: 100%;
}

.ljm-application-line {
    position: relative;

    display: grid;
    grid-template-columns: 58px 1fr;

    gap: 24px;

    padding: 30px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.11);
}

.ljm-application-line:first-child {
    border-top:
        1px solid rgba(255,255,255,0.11);
}

.ljm-application-line::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #755617,
            #e4c665,
            #a77c22
        );

    transition: width 0.45s ease;
}

.ljm-application-line:hover::after {
    width: 100%;
}

.ljm-application-number {
    padding-top: 5px;

    color: #6d6d6d;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.14em;

    transition: color 0.3s ease;
}

.ljm-application-line:hover
.ljm-application-number {
    color: var(--ljm-gold);
}

.ljm-application-line h3 {
    margin: 0 0 8px;

    color: #c9c9c9;

    font-size: clamp(23px, 2vw, 31px);

    font-weight: 620;

    line-height: 1.12;

    letter-spacing: -0.035em;

    transition: color 0.3s ease;
}

.ljm-application-line:hover h3 {
    color: #f0f0f0;
}

.ljm-application-line p {
    margin: 0;

    color: #737373;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   DELIVERY
   DETAILS LEFT / COPY RIGHT
   ========================================================= */

.ljm-delivery {
    position: relative;

    width: 100%;

    padding:
        clamp(110px, 10vw, 170px)
        clamp(28px, 5.5vw, 105px);

    background:
        radial-gradient(
            ellipse at 88% 45%,
            rgba(201,166,70,0.045),
            transparent 35%
        ),
        #020202;

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

.ljm-delivery-inner {
    display: grid;

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

    gap: clamp(80px, 10vw, 180px);

    width: 100%;
    max-width: 1550px;

    margin: 0 auto;

    align-items: center;
}


/* Deliberately RIGHT aligned to reverse previous section */

.ljm-delivery-copy {
    max-width: 650px;

    justify-self: end;

    text-align: right;
}

.ljm-delivery-text {
    margin-left: auto;
}

.ljm-delivery-copy
.ljm-text-link {
    justify-content: flex-end;
}


/* =========================================================
   DELIVERY DETAILS
   ========================================================= */

.ljm-delivery-details {
    width: 100%;
}

.ljm-delivery-detail {
    position: relative;

    display: grid;

    grid-template-columns:
        58px 1fr;

    gap: 23px;

    padding: 29px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.1);
}

.ljm-delivery-detail:first-child {
    border-top:
        1px solid rgba(255,255,255,0.1);
}

.ljm-delivery-detail::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            270deg,
            #755617,
            #e4c665,
            #a77c22
        );

    transition:
        width 0.45s ease;
}

.ljm-delivery-detail:hover::after {
    width: 100%;
}

.ljm-delivery-detail > span {
    padding-top: 4px;

    color: #676767;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.14em;

    transition: color 0.3s ease;
}

.ljm-delivery-detail:hover > span {
    color: var(--ljm-gold);
}

.ljm-delivery-detail h3 {
    margin: 0 0 8px;

    color: #c9c9c9;

    font-size: clamp(22px, 1.8vw, 29px);

    font-weight: 620;

    line-height: 1.12;

    letter-spacing: -0.03em;

    transition: color 0.3s ease;
}

.ljm-delivery-detail:hover h3 {
    color: #f0f0f0;
}

.ljm-delivery-detail p {
    max-width: 470px;

    margin: 0;

    color: #727272;

    font-size: 13px;

    line-height: 1.6;
}


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

.ljm-final-cta {
    position: relative;

    width: 100%;

    padding:
        clamp(125px, 12vw, 210px)
        25px;

    overflow: hidden;

    background: #050505;

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

    text-align: center;
}

.ljm-final-cta-glow {
    position: absolute;

    top: 50%;
    left: 50%;

    width: min(900px, 90vw);
    height: 500px;

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            rgba(201,166,70,0.075) 0%,
            rgba(201,166,70,0.025) 38%,
            transparent 70%
        );

    filter: blur(10px);
}

.ljm-final-cta-inner {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;
}

.ljm-final-cta h2 {
    margin: 0 0 30px;

    padding-bottom: 0.1em;

    overflow: visible;

    color: #ededed;

    font-size:
        clamp(
            52px,
            6vw,
            92px
        );

    font-weight: 700;

    line-height: 0.99;

    letter-spacing: -0.06em;
}

@supports (-webkit-background-clip: text) {

    .ljm-final-cta h2 {

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 25%,
                #c6c6c6 52%,
                #888888 80%,
                #bcbcbc 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }
}

.ljm-final-cta-copy {
    max-width: 620px;

    margin:
        0 auto
        37px;

    color: #898989;

    font-size: 16px;

    line-height: 1.75;
}

.ljm-final-cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


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

@media (max-width: 1000px) {

    .ljm-applications-inner,
    .ljm-delivery-inner {
        gap: 65px;
    }
}


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

@media (max-width: 800px) {

    .ljm-applications,
    .ljm-delivery {
        padding:
            85px
            20px;
    }

    .ljm-applications-inner,
    .ljm-delivery-inner {
        grid-template-columns: 1fr;

        gap: 60px;
    }


    /* Applications keeps copy first */

    .ljm-applications-copy {
        max-width: none;
    }


    /*
     * Delivery is the opposite composition.
     * Headline first on mobile, details beneath.
     */

    .ljm-delivery-copy {
        grid-row: 1;

        max-width: none;

        justify-self: stretch;

        text-align: left;
    }

    .ljm-delivery-details {
        grid-row: 2;
    }

    .ljm-delivery-text {
        margin-left: 0;
    }

    .ljm-delivery-copy
    .ljm-text-link {
        justify-content: flex-start;
    }


    .ljm-applications-copy h2,
    .ljm-delivery-copy h2 {
        font-size:
            clamp(
                42px,
                11vw,
                57px
            );
    }

    .ljm-applications-text p,
    .ljm-delivery-text p {
        font-size: 15px;

        line-height: 1.7;
    }

    .ljm-application-line,
    .ljm-delivery-detail {
        grid-template-columns:
            42px 1fr;

        gap: 15px;

        padding:
            25px
            0;
    }

    .ljm-application-line h3,
    .ljm-delivery-detail h3 {
        font-size: 24px;
    }


    /* FINAL CTA */

    .ljm-final-cta {
        padding:
            105px
            20px;
    }

    .ljm-final-cta h2 {
        font-size:
            clamp(
                48px,
                13vw,
                64px
            );

        line-height: 1.01;
    }

    .ljm-final-cta-copy {
        font-size: 15px;

        line-height: 1.7;
    }

    .ljm-final-cta-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 360px;

        margin: 0 auto;
    }

    .ljm-final-cta-buttons
    .ljm-button {
        justify-content: center;

        width: 100%;
    }
}

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

.ljm-footer {
    position: relative;
    width: 100%;

    background:
        radial-gradient(
            ellipse at 10% 10%,
            rgba(201, 166, 70, 0.035),
            transparent 30%
        ),
        #020202;

    border-top: 1px solid rgba(201, 166, 70, 0.16);

    color: #8b8b8b;
}


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

.ljm-footer-main {
    display: grid;

    grid-template-columns:
        minmax(300px, 1.6fr)
        minmax(140px, 0.65fr)
        minmax(140px, 0.7fr)
        minmax(260px, 1fr);

    gap: clamp(55px, 7vw, 120px);

    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    padding:
        clamp(85px, 8vw, 130px)
        clamp(28px, 5.5vw, 90px)
        clamp(75px, 7vw, 110px);
}


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

.ljm-footer-brand {
    max-width: 480px;
}

.ljm-footer-logo {
    display: inline-block;

    margin-bottom: 35px;
}

.ljm-footer-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 245px;
    max-height: 90px;

    object-fit: contain;
}

.ljm-footer-intro {
    max-width: 455px;

    margin: 0 0 30px;

    color: #858585;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   GOLD TEXT LINK
   ========================================================= */

.ljm-footer-primary-link {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding-bottom: 7px;

    color: #c9aa51;

    font-size: 13px;
    font-weight: 650;

    text-decoration: none;

    transition:
        color 0.3s ease;
}

.ljm-footer-primary-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 34px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #84651e,
            #e2c565
        );

    transition:
        width 0.35s ease;
}

.ljm-footer-primary-link:hover {
    color: #e4c665;
}

.ljm-footer-primary-link:hover::after {
    width: 100%;
}

.ljm-footer-primary-link span {
    transition:
        transform 0.3s ease;
}

.ljm-footer-primary-link:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   COLUMNS
   ========================================================= */

.ljm-footer-column {
    min-width: 0;
}

.ljm-footer-heading {
    margin:
        4px
        0
        27px;

    color: #d0d0d0;

    font-size: 11px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.ljm-footer-nav {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 17px;
}

.ljm-footer-nav a {
    position: relative;

    color: #858585;

    font-size: 14px;
    font-weight: 500;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.ljm-footer-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: #c9a646;

    transition:
        width 0.3s ease;
}

.ljm-footer-nav a:hover {
    color: #d8d8d8;

    transform:
        translateX(2px);
}

.ljm-footer-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   CONTACT
   ========================================================= */

.ljm-footer-contact p:not(.ljm-footer-heading) {
    max-width: 350px;

    margin:
        0
        0
        25px;

    color: #7d7d7d;

    font-size: 13px;

    line-height: 1.7;
}

.ljm-footer-contact > a {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    color: #bcbcbc;

    font-size: 14px;
    font-weight: 550;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.ljm-footer-contact > a:hover {
    color: #d4af45;
}


/* =========================================================
   BOTTOM BAR
   ========================================================= */

.ljm-footer-bottom {
    width: 100%;

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

.ljm-footer-bottom-inner {
    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 35px;

    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    padding:
        27px
        clamp(28px, 5.5vw, 90px);
}

.ljm-footer-copyright,
.ljm-footer-credit {
    margin: 0;

    color: #5f5f5f;

    font-size: 11px;

    line-height: 1.5;
}

.ljm-footer-credit {
    justify-self: end;
}

.ljm-footer-credit a {
    color: #8e8e8e;

    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.ljm-footer-credit a:hover {
    color: #d4af45;
}


/* =========================================================
   LEGAL
   ========================================================= */

.ljm-footer-legal {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;
}

.ljm-footer-legal a {
    color: #666;

    font-size: 11px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.ljm-footer-legal a:hover {
    color: #c9a646;
}


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

@media (max-width: 1050px) {

    .ljm-footer-main {
        grid-template-columns:
            1.4fr
            0.7fr
            0.8fr;

        gap:
            65px
            45px;
    }

    .ljm-footer-contact {
        grid-column:
            1 / -1;

        max-width: 600px;

        padding-top: 10px;
    }

}


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

@media (max-width: 720px) {

    .ljm-footer-main {
        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            55px
            30px;

        padding:
            75px
            20px
            65px;
    }

    .ljm-footer-brand {
        grid-column:
            1 / -1;

        max-width: none;
    }

    .ljm-footer-logo {
        margin-bottom: 28px;
    }

    .ljm-footer-logo img {
        max-width: 215px;
    }

    .ljm-footer-intro {
        max-width: 520px;

        font-size: 14px;

        line-height: 1.7;
    }

    .ljm-footer-contact {
        grid-column:
            1 / -1;

        padding-top: 5px;
    }

    .ljm-footer-heading {
        margin-bottom: 22px;
    }

    .ljm-footer-nav {
        gap: 15px;
    }


    /* Bottom bar */

    .ljm-footer-bottom-inner {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding:
            27px
            20px
            32px;
    }

    .ljm-footer-legal {
        justify-content: flex-start;

        flex-wrap: wrap;

        gap:
            10px
            20px;
    }

    .ljm-footer-credit {
        justify-self: auto;
    }

}


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

@media (max-width: 430px) {

    .ljm-footer-main {
        grid-template-columns: 1fr;

        gap: 45px;
    }

       .ljm-footer-brand,
    .ljm-footer-contact {
        grid-column: auto;
    }

} /* CLOSES FOOTER @media (max-width: 430px) */


/* =========================================================
   ABOUT PAGE
   CLEAN REPLACEMENT
   ========================================================= */

.ljm-about-page {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #020202;
}


/* =========================================================
   ABOUT HERO
   Uses GLOBAL homepage .ljm-hero system
   Only image positioning is page-specific
   ========================================================= */

.ljm-about-page .ljm-about-hero {
    background-image: var(--ljm-hero-image);
}


/*
 * Do not resize the hero here.
 * Global .ljm-hero rules control:
 * height
 * heading
 * paragraph
 * buttons
 * left position
 * responsive behaviour
 */

.ljm-about-page .ljm-about-hero {
    background-position: right center;
    background-size: auto 92%;
}


/* =========================================================
   GOLD STOP
   ========================================================= */

.ljm-about-page .ljm-gold-stop {
    color: var(--ljm-gold);

    -webkit-text-fill-color: var(--ljm-gold);
}


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.ljm-about-intro {
    position: relative;

    width: 100%;

    padding:
        clamp(100px, 8vw, 135px)
        clamp(28px, 5.5vw, 105px);

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 12% 42%,
            rgba(201, 166, 70, 0.03),
            transparent 40%
        ),
        #020202;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);
}


.ljm-about-intro-inner {
    width: 100%;
    max-width: 1550px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.94fr)
        minmax(420px, 1.06fr);

    gap:
        clamp(
            70px,
            8vw,
            140px
        );

    align-items: center;
}


/* =========================================================
   INTRO COPY
   ========================================================= */

.ljm-about-intro-copy {
    width: 100%;
    max-width: 650px;
}


.ljm-about-page .ljm-section-label {
    margin:
        0
        0
        22px;

    color: var(--ljm-gold);

    font-size: 11px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}


.ljm-about-intro h2 {
    margin:
        0
        0
        31px;

    padding-bottom: 0.08em;

    overflow: visible;

    color: #e5e5e5;

    font-size:
        clamp(
            44px,
            4vw,
            66px
        );

    font-weight: 700;

    line-height: 1.04;

    letter-spacing: -0.055em;
}


.ljm-about-intro h2 > span {
    display: block;
}


@supports (-webkit-background-clip: text) {

    .ljm-about-intro h2 {

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 22%,
                #cfcfcf 48%,
                #8e8e8e 77%,
                #bdbdbd 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }

}


.ljm-about-intro-copy > p:not(.ljm-section-label) {
    max-width: 630px;

    margin:
        0
        0
        20px;

    color: #929292;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.78;

    letter-spacing: -0.005em;
}


.ljm-about-intro-copy > p:last-of-type {
    margin-bottom: 0;
}


/* =========================================================
   TEXT LINK
   ========================================================= */

.ljm-about-page .ljm-text-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-top: 34px;

    padding-bottom: 7px;

    color: #d2d2d2;

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

    line-height: 1;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.20);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}


.ljm-about-page .ljm-text-link span {
    color: var(--ljm-gold);

    transition:
        transform 0.25s ease;
}


.ljm-about-page .ljm-text-link:hover,
.ljm-about-page .ljm-text-link:focus-visible {
    color: var(--ljm-gold-light);

    border-color: var(--ljm-gold);
}


.ljm-about-page .ljm-text-link:hover span,
.ljm-about-page .ljm-text-link:focus-visible span {
    transform: translateX(5px);
}


/* =========================================================
   INTRO KILLER LINES
   ========================================================= */

.ljm-about-intro-points {
    width: 100%;

    border-top:
        1px solid
        rgba(185, 185, 185, 0.20);
}


.ljm-about-intro-point {
    position: relative;

    width: 100%;

    padding:
        clamp(
            31px,
            3vw,
            44px
        )
        0;

    border-bottom:
        1px solid
        rgba(185, 185, 185, 0.20);
}


.ljm-about-intro-point::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--ljm-gold-dark),
            var(--ljm-gold-light),
            var(--ljm-gold-dark)
        );

    box-shadow:
        0 0 14px
        rgba(201, 166, 70, 0.18);

    transition:
        width 0.42s ease;
}


.ljm-about-intro-point:hover::after {
    width: 100%;
}


.ljm-about-intro-point h3 {
    margin:
        0
        0
        11px;

    padding-bottom: 0.05em;

    overflow: visible;

    color: #d6d6d6;

    font-size:
        clamp(
            25px,
            2vw,
            34px
        );

    font-weight: 650;

    line-height: 1.1;

    letter-spacing: -0.04em;

    transition:
        color 0.3s ease;
}


.ljm-about-intro-point:hover h3 {
    color: #eeeeee;
}


.ljm-about-intro-point p {
    max-width: 620px;

    margin: 0;

    color: #777777;

    font-size: 14px;

    line-height: 1.62;

    transition:
        color 0.3s ease;
}


.ljm-about-intro-point:hover p {
    color: #a0a0a0;
}


/* =========================================================
   CINEMATIC IMAGE
   IMAGE ONLY
   ========================================================= */

.ljm-about-image-break {
    position: relative;

    width: 100%;
    height:
        clamp(
            470px,
            48vw,
            650px
        );

    overflow: hidden;

    background: #030303;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.ljm-about-image-break-media {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center center;

    transform: scale(1.002);

    transition:
        transform
        1.2s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}


.ljm-about-image-break:hover
.ljm-about-image-break-media {
    transform: scale(1.018);
}


/*
 * Very light cinematic treatment.
 * NO text overlay.
 */

.ljm-about-image-break::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(2, 2, 2, 0.10) 0%,
            transparent 28%,
            transparent 70%,
            rgba(2, 2, 2, 0.30) 100%
        );
}


/* =========================================================
   HIRE JOURNEY
   ========================================================= */

.ljm-hire-journey {
    position: relative;

    width: 100%;

    background:
        radial-gradient(
            ellipse at 50% 0%,
            rgba(255, 255, 255, 0.025),
            transparent 34%
        ),
        #050505;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.055);
}


.ljm-hire-journey-inner {
    width:
        min(
            1320px,
            calc(100% - 100px)
        );

    margin: 0 auto;

    padding:
        clamp(
            95px,
            8vw,
            125px
        )
        0
        clamp(
            90px,
            7vw,
            115px
        );
}


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

.ljm-hire-journey-heading {
    width: 100%;
    max-width: 740px;

    margin:
        0
        auto
        72px;

    text-align: center;
}


.ljm-hire-journey-heading h2 {
    margin:
        0
        0
        24px;

    padding-bottom: 0.08em;

    overflow: visible;

    color: #e7e7e7;

    font-size:
        clamp(
            46px,
            4.5vw,
            68px
        );

    font-weight: 700;

    line-height: 1.03;

    letter-spacing: -0.055em;
}


.ljm-hire-journey-heading h2 > span {
    display: block;
}


@supports (-webkit-background-clip: text) {

    .ljm-hire-journey-heading h2 {

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 22%,
                #cfcfcf 48%,
                #8e8e8e 77%,
                #bdbdbd 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }

}


.ljm-hire-journey-heading > p:last-child {
    max-width: 650px;

    margin: 0 auto;

    color: #8b8b8b;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   TIMELINE
   ========================================================= */

.ljm-hire-timeline {
    position: relative;

    width: 100%;
    max-width: 1000px;

    margin: 0 auto;
}


.ljm-hire-timeline::before {
    content: "";

    position: absolute;

    top: 4px;
    bottom: 4px;
    left: 50%;

    width: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            180deg,
            transparent 0%,
            rgba(201, 166, 70, 0.55) 8%,
            rgba(255, 255, 255, 0.13) 50%,
            rgba(201, 166, 70, 0.55) 92%,
            transparent 100%
        );
}


/* =========================================================
   TIMELINE STEPS
   ========================================================= */

.ljm-hire-step {
    position: relative;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    min-height: 185px;
}


.ljm-hire-step-content {
    width:
        calc(
            100% -
            58px
        );

    max-width: 400px;

    padding-bottom: 42px;
}


.ljm-hire-step-left
.ljm-hire-step-content {
    grid-column: 1;

    justify-self: end;

    padding-right: 5px;

    text-align: right;
}


.ljm-hire-step-right
.ljm-hire-step-content {
    grid-column: 2;

    justify-self: start;

    padding-left: 5px;

    text-align: left;
}


.ljm-hire-step-number {
    display: block;

    margin:
        0
        0
        14px;

    color: var(--ljm-gold);

    font-size: 10px;
    font-weight: 750;

    line-height: 1;

    letter-spacing: 0.17em;
}


.ljm-hire-step h3 {
    margin:
        0
        0
        11px;

    padding-bottom: 0.04em;

    color: #dddddd;

    font-size: 24px;
    font-weight: 650;

    line-height: 1.15;

    letter-spacing: -0.035em;
}


.ljm-hire-step p {
    margin: 0;

    color: #7d7d7d;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   TIMELINE DOT
   ========================================================= */

.ljm-hire-step-dot {
    position: absolute;

    top: 5px;
    left: 50%;

    width: 11px;
    height: 11px;

    transform:
        translateX(-50%);

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

    border-radius: 50%;

    background: #050505;

    box-shadow:
        0 0 0 6px
        rgba(201, 166, 70, 0.06);
}


/* =========================================================
   SCROLL REVEAL
   Progressive enhancement:
   content is visible unless JS activates reveal system
   ========================================================= */

.ljm-about-page.js-reveal-ready
.ljm-hire-step.ljm-reveal
.ljm-hire-step-content {
    opacity: 0;

    transition:
        opacity 0.7s ease,
        transform 0.7s
        cubic-bezier(
            0.2,
            0.7,
            0.2,
            1
        );
}


.ljm-about-page.js-reveal-ready
.ljm-hire-step-left.ljm-reveal
.ljm-hire-step-content {
    transform:
        translateX(-30px);
}


.ljm-about-page.js-reveal-ready
.ljm-hire-step-right.ljm-reveal
.ljm-hire-step-content {
    transform:
        translateX(30px);
}


.ljm-about-page.js-reveal-ready
.ljm-hire-step.ljm-reveal.is-visible
.ljm-hire-step-content {
    opacity: 1;

    transform:
        translateX(0);
}


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

.ljm-about-page .ljm-final-cta {
    position: relative;

    width: 100%;

    margin: 0;

    padding: 0;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 50%,
            rgba(201, 166, 70, 0.05),
            transparent 42%
        ),
        #020202;
}


.ljm-about-page .ljm-final-cta-inner {
    width:
        min(
            760px,
            calc(100% - 60px)
        );

    margin: 0 auto;

    padding:
        clamp(
            90px,
            7vw,
            115px
        )
        0;

    text-align: center;
}


.ljm-about-page .ljm-final-cta h2 {
    margin:
        0
        0
        25px;

    padding-bottom: 0.08em;

    overflow: visible;

    color: #eeeeee;

    font-size:
        clamp(
            46px,
            4.5vw,
            68px
        );

    font-weight: 700;

    line-height: 1.02;

    letter-spacing: -0.055em;
}


.ljm-about-page .ljm-final-cta h2 > span {
    display: block;
}


@supports (-webkit-background-clip: text) {

    .ljm-about-page .ljm-final-cta h2 {

        background:
            linear-gradient(
                180deg,
                #ffffff 0%,
                #eeeeee 22%,
                #cfcfcf 48%,
                #8e8e8e 77%,
                #bdbdbd 100%
            );

        -webkit-background-clip: text;
        background-clip: text;

        -webkit-text-fill-color: transparent;
    }

}


.ljm-about-page .ljm-final-cta-copy {
    width: 100%;
    max-width: 640px;

    margin:
        0
        auto
        31px;

    color: #8b8b8b;

    font-size: 15px;

    line-height: 1.75;
}


.ljm-about-page .ljm-final-cta-buttons {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    flex-wrap: wrap;
}


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

@media (max-width: 1050px) {

    /*
     * Hero continues to use the existing global
     * homepage tablet rules.
     */

    .ljm-about-intro {
        padding:
            95px
            34px;
    }


    .ljm-about-intro-inner {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .ljm-about-intro-copy {
        max-width: 720px;
    }


    .ljm-about-intro-points {
        max-width: 800px;
    }


    .ljm-about-image-break {
        height: 540px;
    }


    .ljm-hire-journey-inner {
        width:
            calc(
                100% -
                68px
            );

        padding:
            90px
            0;
    }

}


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

@media (max-width: 760px) {

    /*
     * About hero intentionally inherits the
     * working mobile homepage hero rules.
     */

    .ljm-about-page .ljm-about-hero {
        background-position:
            center
            bottom 2%;

        background-size:
            auto 48%;
    }


    /* INTRO */

    .ljm-about-intro {
        padding:
            78px
            20px;
    }


    .ljm-about-intro-inner {
        gap: 50px;
    }


    .ljm-about-intro h2 {
        margin-bottom: 27px;

        font-size:
            clamp(
                39px,
                10.5vw,
                51px
            );

        line-height: 1.05;
    }


    .ljm-about-intro-copy > p:not(.ljm-section-label) {
        font-size: 15px;

        line-height: 1.72;
    }


    .ljm-about-intro-point {
        padding:
            27px
            0;
    }


    .ljm-about-intro-point h3 {
        font-size:
            clamp(
                24px,
                7vw,
                30px
            );
    }


    /* IMAGE */

    .ljm-about-image-break {
        height: 430px;
    }


    .ljm-about-image-break-media {
        background-position:
            58%
            center;
    }


    /* JOURNEY */

    .ljm-hire-journey-inner {
        width:
            calc(
                100% -
                40px
            );

        padding:
            78px
            0
            74px;
    }


    .ljm-hire-journey-heading {
        margin-bottom: 55px;

        text-align: left;
    }


    .ljm-hire-journey-heading h2 {
        font-size:
            clamp(
                39px,
                10.5vw,
                51px
            );
    }


    .ljm-hire-journey-heading > p:last-child {
        margin-left: 0;

        font-size: 14px;
    }


    /* TIMELINE */

    .ljm-hire-timeline::before {
        left: 5px;

        transform: none;
    }


    .ljm-hire-step {
        display: block;

        min-height: 0;

        padding:
            0
            0
            46px
            36px;
    }


    .ljm-hire-step:last-child {
        padding-bottom: 0;
    }


    .ljm-hire-step-content,
    .ljm-hire-step-left
    .ljm-hire-step-content,
    .ljm-hire-step-right
    .ljm-hire-step-content {
        width: 100%;
        max-width: 620px;

        padding:
            0;

        text-align: left;
    }


    .ljm-hire-step-dot {
        top: 5px;
        left: 5px;

        transform:
            translateX(-50%);
    }


    .ljm-about-page.js-reveal-ready
    .ljm-hire-step-left.ljm-reveal
    .ljm-hire-step-content,
    .ljm-about-page.js-reveal-ready
    .ljm-hire-step-right.ljm-reveal
    .ljm-hire-step-content {
        transform:
            translateY(22px);
    }


    .ljm-about-page.js-reveal-ready
    .ljm-hire-step.ljm-reveal.is-visible
    .ljm-hire-step-content {
        transform:
            translateY(0);
    }


    /* CTA */

    .ljm-about-page .ljm-final-cta-inner {
        width:
            calc(
                100% -
                40px
            );

        padding:
            78px
            0
            82px;
    }


    .ljm-about-page .ljm-final-cta h2 {
        font-size:
            clamp(
                40px,
                10.5vw,
                52px
            );
    }


    .ljm-about-page .ljm-final-cta-copy {
        font-size: 14px;

        line-height: 1.72;
    }


    .ljm-about-page .ljm-final-cta-buttons {
        width: 100%;
        max-width: 360px;

        margin:
            0
            auto;

        flex-direction: column;

        align-items: stretch;
    }


    .ljm-about-page
    .ljm-final-cta-buttons
    .ljm-button {
        width: 100%;
    }

}


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

@media (max-width: 430px) {

    .ljm-about-intro {
        padding:
            68px
            16px;
    }


    .ljm-about-image-break {
        height: 360px;
    }


    .ljm-hire-journey-inner,
    .ljm-about-page .ljm-final-cta-inner {
        width:
            calc(
                100% -
                32px
            );
    }


    .ljm-hire-journey-inner {
        padding:
            68px
            0;
    }


    .ljm-about-page .ljm-final-cta-inner {
        padding:
            70px
            0
            74px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ljm-about-page.js-reveal-ready
    .ljm-hire-step.ljm-reveal
    .ljm-hire-step-content {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .ljm-about-image-break-media {
        transition: none;
    }

}

/* ABOUT SCROLLER STATES ONLY
   Does not alter the existing scroller layout */

.ljm-about-page .ljm-hire-step {
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.ljm-about-page .ljm-hire-step.about-step-upcoming {
    opacity: 0.28;
}

.ljm-about-page .ljm-hire-step.about-step-passed {
    opacity: 0.52;
}

.ljm-about-page .ljm-hire-step.about-step-current {
    opacity: 1;
}

.ljm-about-page .ljm-hire-step:nth-child(odd).about-step-upcoming {
    transform: translateX(-14px);
}

.ljm-about-page .ljm-hire-step:nth-child(even).about-step-upcoming {
    transform: translateX(14px);
}

.ljm-about-page .ljm-hire-step.about-step-current,
.ljm-about-page .ljm-hire-step.about-step-passed {
    transform: translateX(0);
}

@media (max-width: 760px) {

    .ljm-about-page .ljm-hire-step:nth-child(odd).about-step-upcoming,
    .ljm-about-page .ljm-hire-step:nth-child(even).about-step-upcoming {
        transform: translateY(10px);
    }

}

/* =========================================================
   CONTACT PAGE
   Clean authoritative rule set
   ========================================================= */

.ljm-contact-page {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #020202;
}

/* Contact hero uses the global .ljm-hero system */
.ljm-contact-page .ljm-contact-hero {
    background-image: var(--ljm-hero-image);
    background-position: center center;
    background-size: cover;
}

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

/* =========================================================
   CONTACT MAIN
   ========================================================= */

.ljm-contact-main {
    position: relative;
    width: 100%;
    background:
        radial-gradient(ellipse at 82% 20%, rgba(201,166,70,0.045), transparent 32%),
        #050505;
    border-top: 1px solid rgba(255,255,255,0.045);
}

.ljm-contact-main .ljm-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    gap: clamp(70px, 7vw, 120px);
    width: min(1480px, calc(100% - 96px));
    margin: 0 auto;
    padding: clamp(105px, 9vw, 150px) 0 clamp(115px, 10vw, 165px);
}

/* =========================================================
   CONTACT COPY
   ========================================================= */

.ljm-contact-copy {
    min-width: 0;
    width: 100%;
}

.ljm-contact-copy .ljm-section-label {
    margin-bottom: 25px;
}

.ljm-contact-copy h2 {
    margin: 0 0 31px;
    padding-bottom: 0.08em;
    overflow: visible;
    color: #eeeeee;
    font-size: clamp(48px, 4.7vw, 76px);
    font-weight: 700;
    line-height: 1.01;
    letter-spacing: -0.058em;
}

.ljm-contact-copy h2 > span {
    display: block;
}

@supports (-webkit-background-clip: text) {
    .ljm-contact-copy h2 {
        background: linear-gradient(180deg, #ffffff 0%, #eeeeee 23%, #cccccc 50%, #8b8b8b 80%, #bdbdbd 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.ljm-contact-copy > p:not(.ljm-section-label) {
    max-width: 620px;
    margin: 0 0 20px;
    color: #7f7f7f;
    font-size: 15px;
    line-height: 1.78;
}

.ljm-contact-copy > .ljm-contact-lead {
    color: #a0a0a0;
    font-size: 16px;
    line-height: 1.78;
}

.ljm-contact-points {
    max-width: 620px;
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ljm-contact-point {
    padding: 27px 0 29px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ljm-contact-point h3 {
    margin: 0 0 10px;
    color: #dddddd;
    font-size: 22px;
    font-weight: 650;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.ljm-contact-point p {
    max-width: 520px;
    margin: 0;
    color: #747474;
    font-size: 13px;
    line-height: 1.68;
}

/* =========================================================
   FORM PANEL
   ========================================================= */

.ljm-contact-form-wrap {
    min-width: 0;
    width: 100%;
    padding: clamp(38px, 4vw, 58px);
    background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.085);
    box-shadow: 0 28px 80px rgba(0,0,0,0.26);
}

.ljm-contact-form-heading {
    margin-bottom: 39px;
    padding-bottom: 33px;
    border-bottom: 1px solid rgba(255,255,255,0.075);
}

.ljm-form-kicker {
    margin: 0 0 16px;
    color: var(--ljm-gold);
    font-size: 10px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.ljm-contact-form-heading h2 {
    margin: 0 0 17px;
    color: #e8e8e8;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 680;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.ljm-contact-form-heading > p:last-child {
    max-width: 600px;
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   FORM
   ========================================================= */

.ljm-contact-form {
    width: 100%;
    margin: 0;
}

.ljm-contact-form .ljm-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.ljm-contact-form .ljm-form-field {
    min-width: 0;
    margin: 0 0 22px;
}

.ljm-contact-form .ljm-form-field label {
    display: block;
    margin: 0 0 9px;
    color: #b6b6b6;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
    letter-spacing: 0.035em;
}

.ljm-contact-form .ljm-form-field label span {
    color: var(--ljm-gold);
}

.ljm-contact-form input:not([type="hidden"]):not([type="checkbox"]),
.ljm-contact-form select,
.ljm-contact-form textarea {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,0.105);
    border-radius: 0;
    outline: none;
    background: rgba(0,0,0,0.24);
    color: #e2e2e2;
    font: inherit;
    font-size: 14px;
    line-height: 1.45;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ljm-contact-form input:not([type="hidden"]):not([type="checkbox"]),
.ljm-contact-form select {
    min-height: 52px;
}

.ljm-contact-form select {
    padding-right: 46px;
    background-image:
        linear-gradient(45deg, transparent 50%, #8f8f8f 50%),
        linear-gradient(135deg, #8f8f8f 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 14px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.ljm-contact-form textarea {
    min-height: 175px;
    resize: vertical;
}

.ljm-contact-form input::placeholder,
.ljm-contact-form textarea::placeholder {
    color: #5f5f5f;
    opacity: 1;
}

.ljm-contact-form input:focus,
.ljm-contact-form select:focus,
.ljm-contact-form textarea:focus {
    border-color: rgba(201,166,70,0.72);
    background-color: rgba(201,166,70,0.025);
    box-shadow: 0 0 0 3px rgba(201,166,70,0.06);
}

.ljm-contact-form select option {
    background: #111;
    color: #e2e2e2;
}

/* =========================================================
   CONSENT + SUBMIT
   ========================================================= */

.ljm-form-consent {
    margin: 4px 0 29px;
}

.ljm-form-consent > label {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    cursor: pointer;
}

.ljm-form-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 2px 0 0;
    accent-color: var(--ljm-gold);
}

.ljm-form-consent span {
    color: #707070;
    font-size: 12px;
    line-height: 1.6;
}

.ljm-form-consent a {
    color: #bca04d;
    text-decoration: none;
    border-bottom: 1px solid rgba(188,160,77,0.35);
}

.ljm-form-consent a:hover {
    color: #ddc365;
    border-bottom-color: #ddc365;
}

.ljm-form-submit {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 4px;
}

.ljm-form-submit .ljm-button {
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
}

.ljm-form-submit p {
    max-width: 250px;
    margin: 0;
    color: #606060;
    font-size: 11px;
    line-height: 1.55;
}

/* =========================================================
   CONTACT PAGE FINAL CTA
   Keep global CTA visual language but isolate sizing here
   ========================================================= */

.ljm-contact-page .ljm-final-cta {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201,166,70,0.05), transparent 42%),
        #020202;
    border-top: 1px solid rgba(255,255,255,0.055);
}

.ljm-contact-page .ljm-final-cta-inner {
    width: min(760px, calc(100% - 60px));
    margin: 0 auto;
    padding: clamp(90px, 7vw, 115px) 0;
    text-align: center;
}

.ljm-contact-page .ljm-final-cta h2 {
    margin: 0 0 25px;
    padding-bottom: 0.08em;
    overflow: visible;
    color: #eeeeee;
    font-size: clamp(46px, 4.5vw, 68px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.ljm-contact-page .ljm-final-cta h2 > span {
    display: block;
}

@supports (-webkit-background-clip: text) {
    .ljm-contact-page .ljm-final-cta h2 {
        background: linear-gradient(180deg, #ffffff 0%, #eeeeee 22%, #cfcfcf 48%, #8e8e8e 77%, #bdbdbd 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.ljm-contact-page .ljm-final-cta-copy {
    width: 100%;
    max-width: 640px;
    margin: 0 auto 31px;
    color: #8b8b8b;
    font-size: 15px;
    line-height: 1.75;
}

.ljm-contact-page .ljm-final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

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

@media (max-width: 1100px) {
    .ljm-contact-main .ljm-contact-inner {
        width: calc(100% - 64px);
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 58px;
    }

    .ljm-contact-form-wrap {
        padding: 38px;
    }
}

/* =========================================================
   CONTACT STACK
   ========================================================= */

@media (max-width: 900px) {
    .ljm-contact-main .ljm-contact-inner {
        width: calc(100% - 48px);
        grid-template-columns: 1fr;
        gap: 68px;
        padding: 90px 0 100px;
    }

    .ljm-contact-copy,
    .ljm-contact-copy > p:not(.ljm-section-label),
    .ljm-contact-points {
        max-width: 760px;
    }

    .ljm-contact-form-wrap {
        max-width: 820px;
    }
}

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

@media (max-width: 700px) {
    .ljm-contact-page .ljm-contact-hero {
        background-position: center bottom 2%;
        background-size: auto 48%;
    }

    .ljm-contact-main .ljm-contact-inner {
        width: calc(100% - 40px);
        gap: 54px;
        padding: 78px 0 84px;
    }

    .ljm-contact-copy h2 {
        font-size: clamp(40px, 10.5vw, 52px);
        line-height: 1.04;
    }

    .ljm-contact-copy > p:not(.ljm-section-label),
    .ljm-contact-copy > .ljm-contact-lead {
        font-size: 14px;
        line-height: 1.72;
    }

    .ljm-contact-points {
        margin-top: 38px;
    }

    .ljm-contact-point {
        padding: 24px 0 25px;
    }

    .ljm-contact-point h3 {
        font-size: 21px;
    }

    .ljm-contact-form-wrap {
        padding: 30px 24px 32px;
    }

    .ljm-contact-form-heading {
        margin-bottom: 31px;
        padding-bottom: 27px;
    }

    .ljm-contact-form-heading h2 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .ljm-contact-form .ljm-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ljm-form-submit {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .ljm-form-submit .ljm-button {
        width: 100%;
        justify-content: center;
    }

    .ljm-form-submit p {
        max-width: none;
        text-align: center;
    }

    .ljm-contact-page .ljm-final-cta-inner {
        width: calc(100% - 40px);
        padding: 78px 0 82px;
    }

    .ljm-contact-page .ljm-final-cta h2 {
        font-size: clamp(40px, 10.5vw, 52px);
    }

    .ljm-contact-page .ljm-final-cta-copy {
        font-size: 14px;
        line-height: 1.72;
    }

    .ljm-contact-page .ljm-final-cta-buttons {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        flex-direction: column;
        align-items: stretch;
    }

    .ljm-contact-page .ljm-final-cta-buttons .ljm-button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   CONTACT SMALL MOBILE
   ========================================================= */

@media (max-width: 430px) {
    .ljm-contact-main .ljm-contact-inner,
    .ljm-contact-page .ljm-final-cta-inner {
        width: calc(100% - 32px);
    }

    .ljm-contact-main .ljm-contact-inner {
        padding: 68px 0 74px;
    }

    .ljm-contact-form-wrap {
        padding: 27px 18px 29px;
    }
}

/* =========================================================
   LJM LEGAL PAGES
   Privacy / Cookies / Terms
   ========================================================= */

.ljm-legal-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #050505;
    color: #d8d8d5;
}


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

.ljm-legal-hero {
    position: relative;
    width: 100%;
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    padding: 160px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 28%,
            rgba(201, 165, 47, 0.12),
            transparent 28%
        ),
        linear-gradient(
            115deg,
            #050505 0%,
            #090909 55%,
            #10100e 100%
        );
    border-bottom: 1px solid #1d1d1d;
}

.ljm-legal-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 8%;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(201, 165, 47, 0.28),
        transparent
    );
}

.ljm-legal-hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -280px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 165, 47, 0.08);
    border-radius: 50%;
}

.ljm-legal-hero-inner {
    position: relative;
    z-index: 2;
    width: calc(100% - 64px);
    max-width: 1240px;
    margin: 0 auto;
}

.ljm-legal-hero .ljm-section-label {
    margin: 0 0 22px;
    color: #c9a52f;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ljm-legal-hero h1 {
    max-width: 920px;
    margin: 0;
    color: #f7f7f4;
    font-size: clamp(58px, 7vw, 102px);
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: -0.055em;
}

.ljm-legal-hero > .ljm-legal-hero-inner > p:last-child {
    max-width: 680px;
    margin: 34px 0 0;
    color: #a7a7a2;
    font-size: 19px;
    line-height: 1.7;
}


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

.ljm-legal-content {
    width: 100%;
    padding: 100px 0 130px;
    background: #050505;
}

.ljm-legal-inner {
    width: calc(100% - 64px);
    max-width: 920px;
    margin: 0 auto;
}

.ljm-legal-updated {
    display: inline-block;
    margin: 0 0 72px !important;
    padding: 10px 14px;
    border: 1px solid #252525;
    background: #0b0b0b;
    color: #858580 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* HEADINGS
   ========================================================= */

.ljm-legal-inner > h2 {
    position: relative;
    margin: 90px 0 26px;
    padding-top: 30px;
    color: #f4f4f1;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1.08;
    font-weight: 650;
    letter-spacing: -0.035em;
    border-top: 1px solid #202020;
}

.ljm-legal-inner > .ljm-legal-updated + h2 {
    margin-top: 0;
}

.ljm-legal-inner > h2::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 70px;
    height: 2px;
    background: #c9a52f;
}

.ljm-legal-inner h3 {
    margin: 48px 0 16px;
    color: #efefec;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 650;
    letter-spacing: -0.02em;
}


/* COPY
   ========================================================= */

.ljm-legal-inner > p:not(.ljm-legal-updated),
.ljm-legal-inner > ul {
    max-width: 800px;
}

.ljm-legal-inner p {
    margin-top: 0;
    margin-bottom: 20px;
    color: #aaa9a4;
    font-size: 16px;
    line-height: 1.85;
}

.ljm-legal-inner strong {
    color: #f1f1ee;
    font-weight: 650;
}

.ljm-legal-inner a:not(.ljm-button) {
    color: #d6b84d;
    text-decoration: none;
    border-bottom: 1px solid rgba(214, 184, 77, 0.35);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.ljm-legal-inner a:not(.ljm-button):hover {
    color: #f0d267;
    border-color: #f0d267;
}


/* LISTS
   ========================================================= */

.ljm-legal-inner ul {
    list-style: none;
    margin: 30px 0 38px;
    padding: 0;
}

.ljm-legal-inner li {
    position: relative;
    margin: 0;
    padding: 15px 0 15px 28px;
    color: #aaa9a4;
    font-size: 16px;
    line-height: 1.7;
    border-bottom: 1px solid #171717;
}

.ljm-legal-inner li:first-child {
    border-top: 1px solid #171717;
}

.ljm-legal-inner li::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 2px;
    width: 7px;
    height: 7px;
    background: #c9a52f;
}


/* COOKIE SETTINGS SECTION
   ========================================================= */

.ljm-cookie-policy-settings {
    margin: 50px 0 70px;
    padding: 38px 40px;
    border: 1px solid #252525;
    border-top: 2px solid #c9a52f;
    background:
        linear-gradient(
            135deg,
            #0d0d0d 0%,
            #080808 100%
        );
}

.ljm-cookie-policy-settings h3 {
    margin: 0 0 12px;
    color: #f4f4f1;
    font-size: 26px;
}

.ljm-cookie-policy-settings p {
    max-width: 620px;
    margin-bottom: 25px;
}


/* BOTTOM CONTACT / CTA
   ========================================================= */

.ljm-legal-contact {
    position: relative;
    margin: 110px 0 0;
    padding: 58px 60px;
    overflow: hidden;
    border: 1px solid #252525;
    border-top: 2px solid #c9a52f;
    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(201, 165, 47, 0.10),
            transparent 35%
        ),
        #0a0a0a;
}

.ljm-legal-contact::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(201, 165, 47, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.ljm-legal-contact > * {
    position: relative;
    z-index: 2;
}

.ljm-legal-contact .ljm-section-label {
    margin: 0 0 20px;
    color: #c9a52f;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ljm-legal-contact h2 {
    max-width: 700px;
    margin: 0 0 20px;
    color: #f5f5f2;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.045em;
}

.ljm-legal-contact p {
    max-width: 610px;
    margin-bottom: 30px;
}

.ljm-legal-contact .ljm-button {
    display: inline-flex;
    width: auto;
}


/* GOLD STOP
   ========================================================= */

.ljm-legal-page .ljm-gold-stop {
    color: #c9a52f;
}


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

@media (max-width: 900px) {

    .ljm-legal-hero {
        min-height: 420px;
        padding: 140px 0 70px;
    }

    .ljm-legal-hero-inner,
    .ljm-legal-inner {
        width: calc(100% - 48px);
    }

    .ljm-legal-content {
        padding: 80px 0 100px;
    }

    .ljm-legal-inner > h2 {
        margin-top: 75px;
    }

    .ljm-legal-contact {
        margin-top: 90px;
        padding: 48px 44px;
    }

}


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

@media (max-width: 600px) {

    .ljm-legal-hero {
        min-height: 380px;
        padding: 130px 0 54px;
        align-items: flex-end;
    }

    .ljm-legal-hero::before {
        right: 22px;
    }

    .ljm-legal-hero::after {
        width: 380px;
        height: 380px;
        right: -200px;
        bottom: -180px;
    }

    .ljm-legal-hero-inner,
    .ljm-legal-inner {
        width: calc(100% - 32px);
    }

    .ljm-legal-hero .ljm-section-label {
        margin-bottom: 18px;
        font-size: 10px;
    }

    .ljm-legal-hero h1 {
        font-size: clamp(48px, 15vw, 68px);
        line-height: 0.94;
        letter-spacing: -0.05em;
    }

    .ljm-legal-hero > .ljm-legal-hero-inner > p:last-child {
        margin-top: 24px;
        font-size: 16px;
        line-height: 1.65;
    }

    .ljm-legal-content {
        padding: 55px 0 75px;
    }

    .ljm-legal-updated {
        margin-bottom: 48px !important;
        font-size: 10px !important;
    }

    .ljm-legal-inner > h2 {
        margin: 64px 0 22px;
        padding-top: 24px;
        font-size: 31px;
    }

    .ljm-legal-inner h3 {
        margin-top: 38px;
        font-size: 20px;
    }

    .ljm-legal-inner p,
    .ljm-legal-inner li {
        font-size: 15px;
    }

    .ljm-legal-inner li {
        padding: 13px 0 13px 24px;
    }

    .ljm-legal-inner li::before {
        top: 23px;
        width: 6px;
        height: 6px;
    }

    .ljm-cookie-policy-settings {
        margin: 42px 0 55px;
        padding: 28px 22px;
    }

    .ljm-cookie-policy-settings h3 {
        font-size: 23px;
    }

    .ljm-cookie-policy-settings .ljm-button {
        width: 100%;
        justify-content: center;
    }

    .ljm-legal-contact {
        margin-top: 75px;
        padding: 36px 24px;
    }

    .ljm-legal-contact h2 {
        font-size: 38px;
    }

    .ljm-legal-contact .ljm-button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

}

/* =========================================================
   FOOTER LEGAL CONTROLS
   ========================================================= */

.ljm-footer-cookie-settings {
    appearance: none;
    -webkit-appearance: none;
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-decoration: none;
    cursor: pointer;
}

.ljm-footer-cookie-settings:hover {
    color: #c9a52f;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.ljm-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9990;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 54px;
    padding: 0 20px;

    border: 1px solid #292929;
    border-radius: 100px;

    background: #0b0b0b;
    color: #f5f5f2;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

.ljm-whatsapp svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    color: #c9a52f;
}

.ljm-whatsapp:hover {
    transform: translateY(-2px);
    border-color: #c9a52f;
    background: #111;
    color: #fff;
}


/* =========================================================
   COOKIE BANNER
   ========================================================= */

.ljm-cookie-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 10000;

    width: calc(100% - 48px);
    max-width: 560px;

    padding: 34px;

    border: 1px solid #292929;
    border-top: 2px solid #c9a52f;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(201, 165, 47, .10),
            transparent 35%
        ),
        #0a0a0a;

    box-shadow: 0 25px 80px rgba(0, 0, 0, .6);

    color: #f4f4f1;
}

.ljm-cookie-banner[hidden],
.ljm-cookie-modal[hidden] {
    display: none !important;
}

.ljm-cookie-banner-close,
.ljm-cookie-modal-close {
    position: absolute;
    top: 14px;
    right: 17px;

    width: 36px;
    height: 36px;

    border: 0;
    background: transparent;
    color: #777;

    font-size: 29px;
    line-height: 1;

    cursor: pointer;
}

.ljm-cookie-banner-close:hover,
.ljm-cookie-modal-close:hover {
    color: #c9a52f;
}

.ljm-cookie-eyebrow {
    margin: 0 0 13px;
    color: #c9a52f;

    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ljm-cookie-banner h2,
.ljm-cookie-modal-panel h2 {
    margin: 0 0 16px;
    color: #f5f5f2;

    font-size: 38px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.04em;
}

.ljm-cookie-banner-copy > p:not(.ljm-cookie-eyebrow) {
    max-width: 460px;
    margin: 0 0 15px;

    color: #aaa9a4;
    font-size: 14px;
    line-height: 1.7;
}

.ljm-cookie-banner-copy > a {
    color: #d6b84d;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(214, 184, 77, .35);
}

.ljm-cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 27px;
}

.ljm-cookie-action {
    appearance: none;

    min-height: 46px;
    padding: 0 19px;

    border: 1px solid #333;
    background: #111;
    color: #efefec;

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

    cursor: pointer;

    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.ljm-cookie-action:hover {
    border-color: #c9a52f;
}

.ljm-cookie-action-primary {
    border-color: #c9a52f;
    background: #c9a52f;
    color: #080808;
}

.ljm-cookie-action-primary:hover {
    background: #ddbd47;
    color: #080808;
}

.ljm-cookie-action-text {
    border-color: transparent;
    background: transparent;
    color: #aaa9a4;
}


/* =========================================================
   COOKIE MODAL
   ========================================================= */

.ljm-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10020;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;
}

.ljm-cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(5px);
}

.ljm-cookie-modal-panel {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;

    padding: 46px;

    border: 1px solid #292929;
    border-top: 2px solid #c9a52f;

    background: #0a0a0a;
    color: #f4f4f1;

    box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
}

.ljm-cookie-modal-intro {
    max-width: 570px;
    margin: 0 0 34px;

    color: #aaa9a4;
    font-size: 14px;
    line-height: 1.75;
}

.ljm-cookie-preference {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 24px 0;

    border-top: 1px solid #222;
}

.ljm-cookie-preference:last-of-type {
    border-bottom: 1px solid #222;
}

.ljm-cookie-preference-copy {
    max-width: 500px;
}

.ljm-cookie-preference h3 {
    margin: 0 0 8px;
    color: #f1f1ee;
    font-size: 17px;
}

.ljm-cookie-preference p {
    margin: 0;
    color: #858580;
    font-size: 13px;
    line-height: 1.6;
}

.ljm-cookie-always-on {
    flex: 0 0 auto;

    color: #c9a52f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================================================
   COOKIE TOGGLE
   ========================================================= */

.ljm-cookie-switch {
    position: relative;
    flex: 0 0 auto;
    display: block;

    width: 48px;
    height: 26px;

    cursor: pointer;
}

.ljm-cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ljm-cookie-switch-track {
    position: absolute;
    inset: 0;

    border: 1px solid #393939;
    border-radius: 30px;

    background: #171717;

    transition: .2s ease;
}

.ljm-cookie-switch-track::after {
    content: "";

    position: absolute;
    top: 4px;
    left: 4px;

    width: 16px;
    height: 16px;

    border-radius: 50%;
    background: #777;

    transition: .2s ease;
}

.ljm-cookie-switch input:checked + .ljm-cookie-switch-track {
    border-color: #c9a52f;
    background: rgba(201, 165, 47, .14);
}

.ljm-cookie-switch input:checked + .ljm-cookie-switch-track::after {
    left: 26px;
    background: #c9a52f;
}

.ljm-cookie-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}


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

@media (max-width: 600px) {

    .ljm-whatsapp {
        right: 16px;
        bottom: 16px;

        width: 52px;
        height: 52px;
        min-height: 52px;

        padding: 0;
        justify-content: center;
    }

    .ljm-whatsapp span {
        display: none;
    }

    .ljm-cookie-banner {
        left: 12px;
        bottom: 12px;

        width: calc(100% - 24px);
        max-width: none;

        padding: 28px 22px 22px;
    }

    .ljm-cookie-banner h2,
    .ljm-cookie-modal-panel h2 {
        font-size: 33px;
    }

    .ljm-cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ljm-cookie-action {
        width: 100%;
    }

    .ljm-cookie-modal {
        padding: 12px;
    }

    .ljm-cookie-modal-panel {
        max-height: calc(100vh - 24px);
        padding: 35px 22px 24px;
    }

    .ljm-cookie-preference {
        gap: 16px;
    }

    .ljm-cookie-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

}

/* Force Cookie settings to match footer legal links exactly */
.ljm-footer-legal .ljm-footer-cookie-settings {
    appearance: none !important;
    -webkit-appearance: none !important;

    display: inline-flex !important;
    align-items: center !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;

    color: #6f6f6b !important;

    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;

    cursor: pointer !important;
}

.ljm-footer-legal .ljm-footer-cookie-settings:hover {
    color: #c9a52f !important;
    background: none !important;
    transform: none !important;
}
/* =========================================================
   MOBILE HERO SPACING FIX
   Keeps hero copy/buttons clear of the machinery image.
   Desktop hero remains unchanged.
   ========================================================= */

@media (max-width: 760px) {
    .ljm-hero {
        min-height: 900px;
        background-size: auto 43%;
        background-position: center bottom 1%;
    }

    .ljm-hero-content {
        padding: 46px 20px 440px;
    }

    .ljm-hero-buttons {
        position: relative;
        z-index: 6;
    }
}

@media (max-width: 400px) {
    .ljm-hero {
        min-height: 920px;
        background-size: auto 40%;
        background-position: center bottom 1%;
    }

    .ljm-hero-content {
        padding: 40px 16px 430px;
    }
}

/* =========================================================
   ABOUT HERO HEADER JOIN FIX
   Keeps the About hero flush to the bottom of the site header.
   ========================================================= */

.ljm-about-page {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ljm-about-page .ljm-about-hero {
    margin-top: 0 !important;
}
