:root {
    --v10-bg: #0b0c0e;
    --v10-bg2: #111216;
    --v10-panel: #17181c;
    --v10-text: #f2efe8;
    --v10-muted: #9b9da2;
    --v10-line: rgba(255, 255, 255, .10);
    --v10-line2: rgba(255, 255, 255, .17);
    --v10-gold: #d8b77c;
    --v10-gold2: #ead1a5;
    --v10-radius: 26px;
    --v10-max: 1280px;
}


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


.v10-page {
    overflow: hidden;
    background:
        radial-gradient(
            900px 520px at 92% 0,
            rgba(216, 183, 124, .09),
            transparent 70%
        ),
        var(--v10-bg);
    color: var(--v10-text);
}


.v10-page .container {
    width: min(
        calc(100% - 48px),
        var(--v10-max)
    );
    margin-inline: auto;
}


.v10-page h1,
.v10-page h2,
.v10-page h3,
.v10-page p {
    margin-top: 0;
}


.v10-page h1,
.v10-page h2,
.v10-page h3 {
    text-wrap: balance;
}


.v10-eyebrow,
.v10-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--v10-gold2);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .14em;
    text-transform: uppercase;
}


.v10-eyebrow::before,
.v10-kicker::before {
    width: 28px;
    height: 1px;
    content: "";
    background: currentColor;
}


.v10-hero {
    padding: 70px 0 96px;
}


.v10-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.04fr)
        minmax(410px, .96fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: center;
}


.v10-hero-copy h1 {
    max-width: 820px;
    margin-bottom: 27px;
    font-size:
        clamp(
            52px,
            6vw,
            88px
        );
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.055em;
}


.v10-hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: #c3c1bd;
    font-size: .62em;
    font-weight: 420;
    line-height: 1.08;
    letter-spacing: -.035em;
}


.v10-lead {
    max-width: 670px;
    margin-bottom: 32px;
    color: #b9babd;
    font-size:
        clamp(
            17px,
            1.45vw,
            21px
        );
    line-height: 1.68;
}


.v10-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 40px;
}


.v10-page .btn {
    min-height: 52px;
    padding-inline: 22px;
}


.v10-proof {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    max-width: 680px;
    border-top:
        1px solid
        var(--v10-line);
}


.v10-proof div {
    padding: 19px 16px 0 0;
}


.v10-proof strong,
.v10-proof span {
    display: block;
}


.v10-proof strong {
    margin-bottom: 5px;
    font-size: 14px;
}


.v10-proof span {
    color: #7f8186;
    font-size: 11px;
    line-height: 1.45;
}


.v10-hero-photo {
    position: relative;
    display: flex;
    min-height: 650px;
    overflow: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px;
    border: 1px solid var(--v10-line);
    border-radius: 32px;
    background:
        linear-gradient(
            180deg,
            rgba(4, 5, 7, .03),
            rgba(4, 5, 7, .86)
        ),
        var(--hero)
        center / cover no-repeat;
    box-shadow:
        0 35px 95px
        rgba(0, 0, 0, .31);
}


.v10-photo-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
}


.v10-photo-top b {
    color: var(--v10-gold2);
}


.v10-glass {
    max-width: 440px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    background: rgba(8, 9, 11, .72);
    backdrop-filter: blur(15px);
}


.v10-glass small {
    display: block;
    margin-bottom: 11px;
    color: var(--v10-gold2);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}


.v10-glass strong {
    display: block;
    margin-bottom: 11px;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.18;
}


.v10-glass p {
    margin: 0;
    color: #aaaeb3;
    font-size: 13px;
    line-height: 1.65;
}


.v10-section {
    padding: 100px 0;
}


.v10-section-soft {
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, .022),
            transparent
        );
}


.v10-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 470px);
    gap: 60px;
    align-items: end;
    margin-bottom: 50px;
}


.v10-heading h2,
.v10-process-copy h2,
.v10-final-card h2 {
    margin: 0;
    font-size:
        clamp(
            38px,
            4vw,
            61px
        );
    font-weight: 470;
    line-height: 1.04;
    letter-spacing: -.045em;
}


.v10-heading p {
    margin-bottom: 13px;
    color: var(--v10-muted);
    font-size: 15px;
    line-height: 1.7;
}


.v10-text-link {
    color: var(--v10-gold2);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


.v10-three {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 14px;
}


.v10-three article {
    min-height: 245px;
    padding: 27px;
    border: 1px solid var(--v10-line);
    border-radius: var(--v10-radius);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .04),
            rgba(255, 255, 255, .012)
        );
}


.v10-three article > span {
    display: block;
    margin-bottom: 67px;
    color: var(--v10-gold);
    font-size: 11px;
    font-weight: 750;
}


.v10-three h3 {
    margin-bottom: 9px;
    font-size: 22px;
    font-weight: 500;
}


.v10-three p {
    margin-bottom: 14px;
    color: #92949a;
    line-height: 1.62;
}


.v10-three a {
    color: var(--v10-gold2);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}


.v10-services-grid {
    display: grid;
    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );
    gap: 16px;
}


.v10-service {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--v10-line);
    border-radius: var(--v10-radius);
    background: var(--v10-panel);
    color: inherit;
    text-decoration: none;
    transition:
        transform .28s ease,
        border-color .28s ease;
}


.v10-service:hover {
    border-color:
        rgba(216, 183, 124, .36);
    transform: translateY(-4px);
}


.v10-service-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}


.v10-service-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(5, 6, 8, .61)
        );
}


.v10-service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}


.v10-service:hover
.v10-service-media img {
    transform: scale(1.035);
}


.v10-service-media span {
    position: absolute;
    z-index: 2;
    right: 17px;
    bottom: 15px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
    background: rgba(5, 6, 8, .63);
    font-size: 10px;
    backdrop-filter: blur(8px);
}


.v10-service-body {
    padding: 23px 23px 26px;
}


.v10-service-body small {
    display: block;
    margin-bottom: 9px;
    color: var(--v10-gold);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
}


.v10-service-body h3 {
    margin-bottom: 10px;
    font-size:
        clamp(
            21px,
            2vw,
            27px
        );
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -.025em;
}


.v10-service-body p {
    min-height: 76px;
    margin-bottom: 20px;
    color: #919398;
    font-size: 13px;
    line-height: 1.62;
}


.v10-service-body b {
    color: #ddd9d1;
    font-size: 12px;
}


.v10-work-grid {
    display: grid;
    grid-template-columns:
        repeat(
            12,
            minmax(0, 1fr)
        );
    gap: 16px;
}


.v10-work {
    grid-column: span 4;
    overflow: hidden;
    border: 1px solid var(--v10-line);
    border-radius: var(--v10-radius);
    background: #111216;
    color: inherit;
    text-decoration: none;
    transition:
        transform .28s ease,
        border-color .28s ease;
}


.v10-work-wide {
    grid-column: span 6;
}


.v10-work:hover {
    border-color:
        rgba(216, 183, 124, .31);
    transform: translateY(-3px);
}


.v10-work-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #18191d;
}


.v10-work-wide
.v10-work-media {
    aspect-ratio: 16 / 10;
}


.v10-work-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}


.v10-work:hover
.v10-work-media img {
    transform: scale(1.03);
}


.v10-work-body {
    padding: 21px 23px 25px;
}


.v10-work-body h3 {
    margin-bottom: 9px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.022em;
}


.v10-work-body p {
    min-height: 66px;
    margin-bottom: 18px;
    color: #8e9095;
    font-size: 12px;
    line-height: 1.62;
}


.v10-work-body b {
    color: var(--v10-gold2);
    font-size: 11px;
}


.v10-dark {
    border-top: 1px solid var(--v10-line);
    border-bottom: 1px solid var(--v10-line);
    background:
        radial-gradient(
            700px 500px at 10% 50%,
            rgba(216, 183, 124, .07),
            transparent 70%
        ),
        var(--v10-bg2);
}


.v10-process {
    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(420px, 1.15fr);
    gap: clamp(60px, 9vw, 125px);
}


.v10-process-copy h2 {
    margin-bottom: 23px;
}


.v10-process-copy p {
    max-width: 560px;
    margin-bottom: 28px;
    color: #999ba0;
    font-size: 15px;
    line-height: 1.74;
}


.v10-steps {
    border-top: 1px solid var(--v10-line);
}


.v10-steps article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--v10-line);
}


.v10-steps article > span {
    color: var(--v10-gold);
    font-size: 10px;
    font-weight: 750;
}


.v10-steps h3 {
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 500;
}


.v10-steps p {
    margin: 0;
    color: #898b90;
    line-height: 1.6;
}


.v10-faq {
    max-width: 980px;
    margin-inline: auto;
    border-top: 1px solid var(--v10-line);
}


.v10-faq details {
    border-bottom: 1px solid var(--v10-line);
}


.v10-faq summary {
    position: relative;
    padding: 25px 52px 25px 0;
    cursor: pointer;
    font-size:
        clamp(
            18px,
            1.7vw,
            22px
        );
    font-weight: 500;
    list-style: none;
}


.v10-faq summary::-webkit-details-marker {
    display: none;
}


.v10-faq summary::after {
    position: absolute;
    top: 50%;
    right: 3px;
    content: "+";
    color: var(--v10-gold);
    font-size: 24px;
    transform: translateY(-50%);
}


.v10-faq details[open]
summary::after {
    content: "−";
}


.v10-faq p {
    max-width: 760px;
    padding-bottom: 25px;
    margin: 0;
    color: #92949a;
    line-height: 1.72;
}


.v10-final {
    padding: 70px 0 120px;
}


.v10-final-card {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    gap: 60px;
    align-items: end;
    padding:
        clamp(
            34px,
            5vw,
            68px
        );
    border: 1px solid rgba(216, 183, 124, .21);
    border-radius: 32px;
    background:
        radial-gradient(
            650px 300px at 100% 0,
            rgba(216, 183, 124, .14),
            transparent 70%
        ),
        #16171a;
}


.v10-final-card h2 {
    margin-bottom: 17px;
}


.v10-final-card p {
    max-width: 650px;
    margin: 0;
    color: #96989d;
    line-height: 1.7;
}


.v10-final-actions {
    display: flex;
    min-width: 220px;
    flex-direction: column;
    gap: 9px;
}


.v10-page a:focus-visible,
.v10-page summary:focus-visible {
    outline:
        2px solid
        var(--v10-gold);
    outline-offset: 4px;
}


@media (max-width: 1100px) {

    .v10-hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, .85fr);
        gap: 38px;
    }


    .v10-hero-photo {
        min-height: 560px;
    }


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


    .v10-work,
    .v10-work-wide {
        grid-column: span 6;
    }

}


@media (max-width: 850px) {

    .v10-page .container {
        width: calc(100% - 32px);
    }


    .v10-hero {
        padding:
            52px 0
            72px;
    }


    .v10-hero-grid,
    .v10-heading,
    .v10-process,
    .v10-final-card {
        grid-template-columns: 1fr;
    }


    .v10-hero-photo {
        min-height: 510px;
    }


    .v10-heading {
        gap: 18px;
    }


    .v10-three {
        grid-template-columns: 1fr;
    }


    .v10-three article {
        min-height: 0;
    }


    .v10-three article > span {
        margin-bottom: 34px;
    }


    .v10-final-actions {
        width: min(100%, 420px);
    }

}


@media (max-width: 620px) {

    .v10-page .container {
        width: calc(100% - 24px);
    }


    .v10-hero {
        padding:
            36px 0
            58px;
    }


    .v10-hero-copy h1 {
        margin-bottom: 20px;
        font-size:
            clamp(
                40px,
                12vw,
                57px
            );
    }


    .v10-lead {
        font-size: 16px;
    }


    .v10-actions {
        display: grid;
    }


    .v10-page .btn {
        width: 100%;
        justify-content: center;
    }


    .v10-proof {
        grid-template-columns: 1fr;
        border-top: 0;
    }


    .v10-proof div {
        display: grid;
        grid-template-columns:
            92px 1fr;
        gap: 12px;
        padding: 12px 0;
        border-top: 1px solid var(--v10-line);
    }


    .v10-proof strong {
        margin: 0;
    }


    .v10-hero-photo {
        min-height: 455px;
        padding: 17px;
        border-radius: 23px;
    }


    .v10-glass {
        padding: 19px;
    }


    .v10-glass strong {
        font-size: 20px;
    }


    .v10-section {
        padding: 68px 0;
    }


    .v10-heading {
        margin-bottom: 32px;
    }


    .v10-heading h2,
    .v10-process-copy h2,
    .v10-final-card h2 {
        font-size:
            clamp(
                33px,
                10vw,
                44px
            );
    }


    .v10-services-grid {
        grid-template-columns: 1fr;
    }


    .v10-service-body p {
        min-height: 0;
    }


    .v10-work-grid {
        grid-template-columns: 1fr;
    }


    .v10-work,
    .v10-work-wide {
        grid-column: auto;
    }


    .v10-work-media,
    .v10-work-wide
    .v10-work-media {
        aspect-ratio: 4 / 3;
    }


    .v10-work-body p {
        min-height: 0;
    }


    .v10-steps article {
        grid-template-columns:
            46px 1fr;
        gap: 12px;
        padding: 23px 0;
    }


    .v10-final {
        padding-bottom: 82px;
    }


    .v10-final-card {
        gap: 28px;
        padding: 27px 21px;
        border-radius: 23px;
    }


    .v10-final-actions {
        min-width: 0;
    }

}


@media (prefers-reduced-motion: reduce) {

    .v10-page *,
    .v10-page *::before,
    .v10-page *::after {
        transition-duration:
            .001ms !important;
        animation-duration:
            .001ms !important;
        animation-iteration-count:
            1 !important;
    }

}
