@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;650;700;800&display=swap");

:root {
    --white: #f7f4ee;
    --muted-white: rgba(247, 244, 238, 0.82);
    --glass: rgba(80, 82, 78, 0.64);
    --glass-border: rgba(255, 255, 255, 0.16);
    --ink: #171814;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* Always reserve scrollbar space so the fixed header stays centered
       identically on tall pages (with scrollbar) and short ones (without). */
    scrollbar-gutter: stable;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--white);
    background: #0f1412;
}

.framer-x7xe2r-container {
    position: fixed;
    z-index: 20;
    inset: 0 0 auto;
    width: 100%;
    height: 73px;
    pointer-events: none;
    transition: top 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.framer-x7xe2r-container.is-scrolled {
    top: 18px;
}

.ssr-variant {
    display: contents;
}

.site-nav {
    width: 100%;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.framer-18csdp0 {
    --header-progress: 0;
    --header-width: 1200px;
    --header-height: 33px;
    --header-pad-left: 0px;
    --header-pad-right: 0px;
    --brand-offset: 34px;
    --actions-offset: 23px;
    --pill-height: 36px;
    --pill-x: 19px;
    width: min(100% - 64px, var(--header-width));
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 0 var(--header-pad-right) 0 var(--header-pad-left);
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(20, 24, 22, 0);
    opacity: 1;
    pointer-events: auto;
    will-change: auto;
    transition:
        width 320ms cubic-bezier(0.4, 0, 0.2, 1),
        height 320ms cubic-bezier(0.4, 0, 0.2, 1),
        padding 320ms cubic-bezier(0.4, 0, 0.2, 1),
        background-color 220ms linear,
        border-color 220ms linear,
        backdrop-filter 220ms linear;
}

.framer-x7xe2r-container.is-scrolled .framer-18csdp0 {
    border-color: rgba(255, 255, 255, 0);
    background-color: rgba(10, 10, 10, 0.24);
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    width: 28px;
    height: 32px;
    margin-left: var(--brand-offset);
    color: var(--white);
    transition: margin-left 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.brand svg {
    width: 28px;
    height: 32px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.nav a,
.contact {
    color: var(--muted-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nav a:hover,
.contact:hover {
    color: var(--white);
}

.nav a[aria-current="page"] {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    margin-right: var(--actions-offset);
    transition: margin-right 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--pill-height);
    padding: 0 var(--pill-x);
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease,
        min-height 320ms cubic-bezier(0.4, 0, 0.2, 1),
        padding 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pill:hover {
    transform: translateY(-1px);
    background: #fff;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.26) 0%, rgba(34, 34, 30, 0.18) 42%, rgba(0, 0, 0, 0.8) 100%),
        url("https://framerusercontent.com/images/EqTvMX987cRyoYGTSVcaTDhwgWM.jpg?scale-down-to=2048&width=4320&height=2430") center top / cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.18), transparent 26%);
    pointer-events: none;
}

.hero-content {
    width: min(100% - 36px, 980px);
    margin-top: 72px;
    text-align: center;
}

h1 {
    max-width: 940px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(58px, 7.1vw, 104px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 10px 44px rgba(0, 0, 0, 0.26);
}

.subtitle {
    max-width: 760px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 650;
    line-height: 1.45;
    text-shadow: 0 5px 22px rgba(0, 0, 0, 0.36);
}

.hero-cta {
    margin-top: 32px;
}

.logo-strip {
    position: absolute;
    left: 50%;
    bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4.5vw, 60px);
    width: min(100% - 36px, 760px);
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.86);
}

.partner {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: clamp(15px, 1.5vw, 22px);
    font-weight: 800;
    white-space: nowrap;
    opacity: 0.92;
}

.partner svg {
    width: 24px;
    height: 24px;
}

.content {
    min-height: 80vh;
    padding: 96px max(24px, calc((100vw - 980px) / 2));
    color: #e7e5db;
    background: #111512;
}

.content h2 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: 0;
}

.content p {
    max-width: 680px;
    margin: 0;
    color: rgba(231, 229, 219, 0.68);
    font-size: 18px;
    line-height: 1.65;
}

@media (max-width: 760px) {
    .framer-x7xe2r-container {
        height: 64px;
    }

    .site-nav {
        height: 64px;
    }

    .framer-18csdp0,
    .framer-x7xe2r-container.is-scrolled .framer-18csdp0 {
        width: min(100% - 24px, 520px);
        height: 44px;
        grid-template-columns: auto 1fr auto;
        gap: 14px;
        padding: 0 9px 0 14px;
        border-color: var(--glass-border);
        background: rgba(62, 64, 61, 0.66);
        backdrop-filter: blur(16px) saturate(130%);
        -webkit-backdrop-filter: blur(16px) saturate(130%);
    }

    .brand {
        width: 32px;
        height: 32px;
    }

    .brand svg {
        width: 25px;
        height: 25px;
    }

    .nav {
        gap: 18px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav a,
    .contact {
        font-size: 12px;
    }

    .contact {
        display: none;
    }

    .header-actions {
        gap: 10px;
    }

    .pill {
        min-height: 34px;
        padding-inline: 14px;
        font-size: 12px;
    }

    .hero-content {
        margin-top: 70px;
    }

    .subtitle {
        margin-top: 20px;
    }

    .logo-strip {
        flex-wrap: wrap;
        bottom: 24px;
        gap: 16px 28px;
    }
}

@media (max-width: 520px) {
    .framer-18csdp0 {
        grid-template-columns: auto 1fr;
    }

    .header-actions {
        display: none;
    }

    .nav {
        justify-content: flex-end;
    }

    .nav a:nth-child(3) {
        display: none;
    }

    h1 {
        font-size: clamp(44px, 15vw, 72px);
    }

    .logo-strip {
        display: none;
    }
}
