@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap");

:root {
    --bg: #0a111d;
    --bg-2: #0b1520;
    --text: #f4f7f8;
    --muted: #b8c4cc;
    --brand: #015f59;
    --brand-2: #0b7666;
    --card: #0f2230;
    --border: rgba(255, 255, 255, 0.08);
    --max: 1120px;
}

* {
    font-family: "Montserrat", sans-serif;
    color: white;
}

h1,
h2,
h3,
h4,
h5,
strong {
    font-family: "Playfair", serif;
}

a {
    color: white;
}

a:hover {
    text-decoration: none;
    color: white;
    opacity: 0.4;
}

.navigation {
    position: absolute;
    z-index: 99;
    width: 100%;
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    border-bottom: 1px solid #015f59;
}

.navigation-logo,
.navigation-logo img {
    display: block;
    max-width: 100px;
}

.navigation-left,
.navigation-mid,
.navigation-right {
    min-width: 20%;
}

.navigation-left,
.navigation-right {
    padding-top: 20px;
}

.navigation-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
* {
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    background-color: var(--bg);
    background: var(--bg);
    color: var(--text);
}
a {
    color: inherit;
    text-decoration: none;
}
.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(11, 21, 32, 0.7);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--border);
}
.topbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 64px;
}
.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-right {
    justify-content: flex-end;
}
.brand {
    font-weight: 700;
    letter-spacing: 0.4px;
}
.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}
.btn:hover {
    filter: brightness(0.95);
}
.btn.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}
/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    background-image: url("/assets/brands/llf/images/hero-bg.jpg");
    min-height: 80vh;
    display: grid;
    place-items: center;
    text-align: center;
    background-size: cover;
    background-position: center bottom;
}
.hero::before {
    /* background image placeholder */
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.35;
}
.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.hero .cta {
    margin-top: 10px;
}
.cta .btn {
    padding: 14px 22px;
    font-size: 18px;
}
/* Sections */
section {
    padding: 20px 0 40px 0;
}
.split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
    align-items: center;
    padding-left: 300px;
}
.split img {
    width: 60%;
}
.split div {
    width: 40%;
}
.split.reverse {
    padding-left: 0;
    padding-right: 300px;
}
h2 {
    margin: 0 0 14px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
}
p {
    margin: 0 0 14px;
    color: var(--muted);
}
.img-pill {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
        repeating-linear-gradient(90deg, #0f2530 0 18px, #0d202a 18px 36px);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) inset;
}
/* Trio stack spacing */
.stack {
    display: grid;
    gap: 64px;
    max-width: 100%;
    padding: 0;
}
/* Value prop */
.value {
    background: linear-gradient(180deg, var(--bg) 0, var(--bg-2) 100%);
}
.value .lead {
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 26px;
    line-height: 24px;
}
.value .sub {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}
.center {
    display: flex;
    justify-content: center;
}
/* Footer */
footer {
    background: #0a141b;
    border-top: 1px solid var(--border);
    padding: 36px 0 56px;
    color: #93a4ad;
}
.foot-top {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.foot-brand {
    font-weight: 800;
    color: var(--text);
}
.links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.small {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 18px;
    opacity: 0.85;
}
.prop-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: auto;
}
.prop-container div {
    width: 50%;
}
.prop-container div .sub {
    text-align: left;
    margin-bottom: 0;
}
.prop-container .btn {
    width: 70%;
}

.footer-cont {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

footer {
    background: #015f59;
}

@media screen and (max-width: 768px) {
    br.desktop-only {
        display: none;
    }

    strong {
        font-size: 20px;
    }

    .split {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .split.reverse {
        flex-direction: column;
    }

    .split, .split.reverse {
        padding: 0;
    }

    .split div {
        width: 80%;
    }

    .split img {
        width: 100%;
    }

    .navigation {
        padding: 0 10px 10px 10px;
    }

    .navigation-left {
        font-size: 10px;
    }

    .navigation-link:nth-of-type(1) {
        display: none;
    }

    .prop-container {
        flex-direction: column;
        gap: 40px;
        width: 90%;
    }
    
    .prop-container div {
        width: 100%;
    }

    .footer-cont {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .footer-left, .footer-right {
        width: 90%;
        text-align: center;
    }

    .footer-logo {
        display: block;
        width: 100px;
        margin: auto;
        margin-bottom: 20px;
    }
}