.home-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: var(--ll-white);
    background: #11120f;
}

.home-hero__media,
.home-hero__shade {
    position: absolute;
    inset: 0;
}

.home-hero__media {
    background-image: url('/imagebank/imgback/home-hero.webp');
    background-position: center;
    background-size: cover;
    transform: scale(1.025);
}

.home-hero__shade {
    background:
        linear-gradient(90deg, rgba(10, 11, 9, .93) 0%, rgba(10, 11, 9, .72) 43%, rgba(10, 11, 9, .18) 76%, rgba(10, 11, 9, .23) 100%),
        linear-gradient(0deg, rgba(10, 11, 9, .55) 0%, rgba(10, 11, 9, 0) 45%);
}

.home-hero__container {
    position: relative;
    z-index: 2;
}

.home-hero__content {
    padding-bottom: 110px;
}

.home-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: var(--ll-serif);
    font-size: clamp(4rem, 7.2vw, 8rem);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .89;
}

.home-hero h1 span {
    display: block;
    color: var(--ll-gold-soft);
    font-style: italic;
}

.home-hero__lead {
    max-width: 700px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.05rem, 1.35vw, 1.27rem);
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.home-hero__scroll {
    position: absolute;
    z-index: 4;
    right: 34px;
    bottom: 34px;
    width: 24px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 20px;
}

.home-hero__scroll span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 3px;
    height: 8px;
    border-radius: 5px;
    background: var(--ll-gold);
    transform: translateX(-50%);
    animation: homeScroll 1.8s infinite;
}

@keyframes homeScroll {
    0% { opacity: 0; transform: translate(-50%, 0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 23px); }
}

.home-intro {
    background: var(--ll-paper);
}

.home-intro__visual {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    margin-top: 90px;
}

.home-intro__image {
    height: 580px;
    overflow: hidden;
}

.home-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.home-intro__visual:hover .home-intro__image img {
    transform: scale(1.025);
}

.home-intro__statement {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 52px;
    color: var(--ll-white);
    background: var(--ll-ink);
}

.home-intro__statement span {
    color: var(--ll-gold-soft);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.home-intro__statement p {
    margin: 0;
    font-family: var(--ll-text);
    font-size: clamp(2rem, 3vw, 3.4rem);
    letter-spacing: -.04em;
    line-height: 1.02;
}

.home-process {
    position: relative;
    overflow: hidden;
}

.home-process::before {
    position: absolute;
    top: -300px;
    right: -250px;
    width: 700px;
    height: 700px;
    border: 1px solid rgba(201, 160, 106, .12);
    border-radius: 50%;
    content: '';
}

.home-process__line {
    position: relative;
    height: 1px;
    margin-bottom: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .11);
}

.home-process__line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--ll-gold);
    transition: width 1.4s cubic-bezier(.2, .7, .2, 1);
}

.home-process.is-visible .home-process__line span {
    width: 100%;
}

.home-process__item {
    position: relative;
    min-height: 390px;
    padding: 48px 48px 36px 0;
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.home-process__item + .home-process__item {
    padding-left: 48px;
}

.home-process__item:last-child {
    border-right: 0;
}

.home-process__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--ll-gold-soft);
    font-size: 1.2rem;
}

.home-process__item h3 {
    margin: 0 0 18px;
    font-family: var(--ll-serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -.035em;
}

.home-process__item p {
    max-width: 340px;
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: .94rem;
}

.home-audiences {
    padding-top: 115px;
    background: var(--ll-paper);
}

.home-audiences__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 590px;
}

.home-audience {
    position: relative;
    display: block;
    min-height: 590px;
    overflow: hidden;
    color: var(--ll-white);
}

.home-audience + .home-audience {
    border-left: 1px solid rgba(255, 255, 255, .24);
}

.home-audience__image,
.home-audience__overlay {
    position: absolute;
    inset: 0;
}

.home-audience__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.65);
    transition: transform 800ms cubic-bezier(.2, .7, .2, 1), filter var(--ll-transition);
}

.home-audience__overlay {
    background: linear-gradient(0deg, rgba(11, 12, 10, .92) 0%, rgba(11, 12, 10, .38) 64%, rgba(11, 12, 10, .12) 100%);
    transition: background var(--ll-transition);
}

.home-audience__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 42px;
}

.home-audience__content h3 {
    margin: 0 0 16px;
    font-family: var(--ll-serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1;
}

.home-audience__content p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, .67);
    font-size: .92rem;
    transition: color var(--ll-transition);
}

.home-audience__content i {
    position: absolute;
    top: 42px;
    right: 42px;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    transition: background var(--ll-transition), border-color var(--ll-transition), transform var(--ll-transition);
}

.home-audience:hover {
    color: var(--ll-white);
}

.home-audience:hover .home-audience__image img {
    filter: saturate(.9);
    transform: scale(1.045);
}

.home-audience:hover .home-audience__overlay {
    background: linear-gradient(0deg, rgba(11, 12, 10, .95) 0%, rgba(11, 12, 10, .28) 65%, rgba(11, 12, 10, .05) 100%);
}

.home-audience:hover .home-audience__content i {
    border-color: var(--ll-gold);
    background: var(--ll-gold);
    color: var(--ll-ink);
    transform: rotate(45deg);
}

.home-firm__image {
    position: relative;
    min-height: 650px;
}

.home-firm__image img {
    width: calc(100% - 70px);
    height: 650px;
    object-fit: cover;
}

.home-firm__stamp {
    position: absolute;
    right: 0;
    bottom: 60px;
    display: flex;
    width: 170px;
    height: 170px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--ll-ink);
    background: var(--ll-gold);
    font-family: var(--ll-text);
    font-size: 1.15rem;
    line-height: 1.15;
    text-align: center;
}

.home-firm .btn-global {
    margin-top: 8px;
}

.home-cta {
    position: relative;
    overflow: hidden;
    padding: 150px 0 75px;
    color: var(--ll-white);
    background: var(--ll-ink);
}

.home-cta__media,
.home-cta__shade {
    position: absolute;
    inset: 0;
}

.home-cta__media {
    background: url('/imagebank/imgback/home-cta.webp') center/cover no-repeat;
}

.home-cta__shade {
    background: linear-gradient(90deg, rgba(12, 13, 11, .93) 0%, rgba(12, 13, 11, .73) 55%, rgba(12, 13, 11, .35) 100%);
}

.home-cta h2 {
    max-width: 900px;
    margin: 0;
    font-family: var(--ll-serif);
    font-size: clamp(3rem, 5.4vw, 6.2rem);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .95;
}

.home-blog {
    background: var(--ll-paper);
}

.home-blog__featured {
    border: 1px solid var(--ll-line);
}

.home-blog__image {
    min-height: 470px;
    overflow: hidden;
}

.home-blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.home-blog__featured:hover .home-blog__image img {
    transform: scale(1.025);
}

.home-blog__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 80px);
}

.home-blog__meta {
    margin: 0 0 20px;
    color: #8a6d49;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-blog__content h3 {
    margin: 0 0 24px;
    font-family: var(--ll-serif);
    font-size: clamp(2.2rem, 3.5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.home-blog__content > p:not(.home-blog__meta) {
    margin: 0 0 30px;
    color: var(--ll-muted);
}

.home-blog__item {
    position: relative;
    min-height: 245px;
    padding: 38px 92px 38px 38px;
    border-top: 1px solid var(--ll-line);
    border-bottom: 1px solid var(--ll-line);
    transition: background var(--ll-transition);
}

.home-blog__item h3 {
    max-width: 500px;
    margin: 0;
    font-family: var(--ll-serif);
    font-size: clamp(1.75rem, 2.5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 1.05;
}

.home-blog__item > a {
    position: absolute;
    right: 35px;
    bottom: 35px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ll-line);
    border-radius: 50%;
    transition: background var(--ll-transition), color var(--ll-transition), transform var(--ll-transition);
}

.home-blog__item:hover {
    background: var(--ll-cream);
}

.home-blog__item:hover > a {
    color: var(--ll-white);
    background: var(--ll-ink);
    transform: translateX(4px);
}

.home-final {
    padding: 0 0 130px;
    background: var(--ll-paper);
}

.home-final__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
    padding: 75px;
    border-top: 1px solid var(--ll-line);
    background: var(--ll-cream);
}

.home-final__inner .global-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -22px;
}

.home-final__inner h2 {
    max-width: 830px;
    margin: 0;
    font-family: var(--ll-serif);
    font-size: clamp(2.6rem, 4.5vw, 5.2rem);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .98;
}

@media (max-width: 1199.98px) {
    .home-hero__content {
        padding-bottom: 105px;
    }

    .home-hero__scroll {
        display: none;
    }

    .home-process__item,
    .home-process__item + .home-process__item {
        padding-right: 34px;
        padding-left: 34px;
    }

    .home-audiences__grid {
        min-height: 520px;
    }

    .home-audience {
        min-height: 520px;
    }
}

@media (max-width: 991.98px) {
    .home-hero__shade {
        background: linear-gradient(90deg, rgba(10, 11, 9, .93), rgba(10, 11, 9, .55));
    }

    .home-hero__content {
        padding-bottom: 105px;
    }

    .home-intro__visual {
        grid-template-columns: 1fr;
    }

    .home-intro__statement {
        min-height: 300px;
    }

    .home-process__item,
    .home-process__item + .home-process__item {
        min-height: auto;
        padding: 42px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
    }

    .home-process__item:last-child {
        border-bottom: 0;
    }

    .home-audiences {
        padding-top: 90px;
    }

    .home-audiences__grid {
        grid-template-columns: 1fr;
    }

    .home-audience,
    .home-audiences__grid {
        min-height: 0;
    }

    .home-audience {
        min-height: 480px;
    }

    .home-audience + .home-audience {
        border-top: 1px solid rgba(255, 255, 255, .24);
        border-left: 0;
    }

    .home-firm__image {
        min-height: 560px;
    }

    .home-firm__image img {
        height: 560px;
    }

    .home-cta .btn-global {
        margin-top: 38px;
    }

    .home-final__inner {
        grid-template-columns: 1fr;
        padding: 55px;
    }

    .home-final__inner .global-eyebrow {
        margin-bottom: -25px;
    }
}

@media (max-width: 767.98px) {
    .home-hero h1 {
        font-size: clamp(3.55rem, 17vw, 5.5rem);
    }

    .home-hero__content {
        padding-bottom: 95px;
    }

    .home-hero__lead {
        margin-top: 25px;
    }

    .home-hero__actions .btn-global {
        width: 100%;
    }

    .home-intro__visual {
        margin-top: 55px;
    }

    .home-intro__image {
        height: 410px;
    }

    .home-intro__statement {
        min-height: 250px;
        padding: 34px;
    }

    .home-audiences {
        padding-top: 78px;
    }

    .home-audience {
        min-height: 430px;
    }

    .home-audience__content {
        padding: 30px;
    }

    .home-audience__content i {
        top: 30px;
        right: 30px;
    }

    .home-firm__image,
    .home-firm__image img {
        height: 460px;
        min-height: 460px;
    }

    .home-firm__image img {
        width: calc(100% - 40px);
    }

    .home-firm__stamp {
        width: 135px;
        height: 135px;
        font-size: .95rem;
    }

    .home-cta {
        padding: 105px 0 60px;
    }

    .home-blog__image {
        min-height: 330px;
    }

    .home-blog__content {
        padding: 36px 28px;
    }

    .home-blog__item {
        min-height: 220px;
        padding: 30px 75px 30px 0;
    }

    .home-blog__item > a {
        right: 5px;
        bottom: 30px;
    }

    .home-final {
        padding-bottom: 88px;
    }

    .home-final__inner {
        gap: 38px;
        padding: 38px 28px;
    }
}


.home-process__icon--image {
    width: var(--ll-illustration-size);
    height: var(--ll-illustration-size);
    justify-content: center;
    border: 0;
}

.home-process__icon img {
    display: block;
    width: var(--ll-illustration-size);
    height: var(--ll-illustration-size);
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .home-process__icon--image,
    .home-process__icon img {
        width: var(--ll-illustration-size-mobile);
        height: var(--ll-illustration-size-mobile);
    }
}
